Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDoug Schaefer2007-02-06 22:05:56 +0000
committerDoug Schaefer2007-02-06 22:05:56 +0000
commitcc9b9dcd8b7b3579bdef0acb0322bc0dcdd981cf (patch)
tree869580499c9461e5c77ae5060e7352732f352191
parent0850a4cb23216f96df916062723f620f4b3fa215 (diff)
downloadorg.eclipse.cdt-cc9b9dcd8b7b3579bdef0acb0322bc0dcdd981cf.tar.gz
org.eclipse.cdt-cc9b9dcd8b7b3579bdef0acb0322bc0dcdd981cf.tar.xz
org.eclipse.cdt-cc9b9dcd8b7b3579bdef0acb0322bc0dcdd981cf.zip
Instead of locking on the database, the toc access operations now lock on the lruMutex, which was used by the lru algorithm. This reduced the number of mutexes that needed to be locked/released by half.
-rw-r--r--core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/db/Database.java86
1 files changed, 43 insertions, 43 deletions
diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/db/Database.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/db/Database.java
index d4a43752459..8900bfacf38 100644
--- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/db/Database.java
+++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/internal/core/pdom/db/Database.java
@@ -79,7 +79,7 @@ public class Database {
* Empty the contents of the Database, make it ready to start again
* @throws CoreException
*/
- public synchronized void clear(int version) throws CoreException {
+ public void clear(int version) throws CoreException {
// Clear out the data area and reset the version
Chunk chunk = getChunk(0);
chunk.putInt(0, version);
@@ -106,21 +106,23 @@ public class Database {
int index = offset / CHUNK_SIZE;
Chunk chunk;
boolean isNew;
- synchronized (this) {
+ synchronized (lruMutex) {
chunk = toc[index];
isNew = false;
if (chunk == null) {
chunk = toc[index] = new Chunk(this, index);
isNew = true;
}
+ Database.lruPutFirst(chunk, isNew);
}
- Database.lruPutFirst(chunk, isNew);
return chunk;
}
// Called by the chunk to set itself free
- synchronized void freeChunk(int index) {
- toc[index] = null;
+ void freeChunk(int index) {
+ synchronized (lruMutex) {
+ toc[index] = null;
+ }
}
/**
@@ -153,7 +155,7 @@ public class Database {
Chunk chunk;
if (freeblock == 0) {
// Out of memory, allocate a new chunk
- synchronized (this) {
+ synchronized (lruMutex) {
Chunk[] oldtoc = toc;
int n = oldtoc.length;
freeblock = n * CHUNK_SIZE;
@@ -167,8 +169,8 @@ public class Database {
toc = new Chunk[n + 1];
System.arraycopy(oldtoc, 0, toc, 0, n);
toc[n] = chunk = new Chunk(this, n);
+ Database.lruPutFirst(chunk, true);
}
- Database.lruPutFirst(chunk, true);
} else {
chunk = getChunk(freeblock);
removeBlock(chunk, blocksize, freeblock);
@@ -317,43 +319,41 @@ public class Database {
}
static private final void lruPutFirst(Chunk chunk, boolean isNew) throws CoreException {
- synchronized (lruMutex) {
- // If this chunk is already first, we're good
- if (chunk == lruFirst)
- return;
-
- if (!isNew) {
- // Remove from current position in cache
- if (chunk.lruPrev != null) {
- chunk.lruPrev.lruNext = chunk.lruNext;
- }
- if (chunk.lruNext != null) {
- chunk.lruNext.lruPrev = chunk.lruPrev;
- } else {
- // No next => New last
- lruLast = chunk.lruPrev;
- }
+ // If this chunk is already first, we're good
+ if (chunk == lruFirst)
+ return;
+
+ if (!isNew) {
+ // Remove from current position in cache
+ if (chunk.lruPrev != null) {
+ chunk.lruPrev.lruNext = chunk.lruNext;
}
-
- // Insert at front of cache
- chunk.lruNext = lruFirst;
- chunk.lruPrev = null;
- if (lruFirst != null)
- lruFirst.lruPrev = chunk;
- lruFirst = chunk;
- if (lruLast == null)
- lruLast = chunk;
-
- if (isNew) {
- // New chunk, see if we need to release one
- if (lruSize == lruMax) {
- Chunk last = lruLast;
- lruLast = last.lruPrev;
- lruLast.lruNext = null;
- last.free();
- } else {
- ++lruSize;
- }
+ if (chunk.lruNext != null) {
+ chunk.lruNext.lruPrev = chunk.lruPrev;
+ } else {
+ // No next => New last
+ lruLast = chunk.lruPrev;
+ }
+ }
+
+ // Insert at front of cache
+ chunk.lruNext = lruFirst;
+ chunk.lruPrev = null;
+ if (lruFirst != null)
+ lruFirst.lruPrev = chunk;
+ lruFirst = chunk;
+ if (lruLast == null)
+ lruLast = chunk;
+
+ if (isNew) {
+ // New chunk, see if we need to release one
+ if (lruSize == lruMax) {
+ Chunk last = lruLast;
+ lruLast = last.lruPrev;
+ lruLast.lruNext = null;
+ last.free();
+ } else {
+ ++lruSize;
}
}
}

Back to the top