Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(155)

Unified Diff: src/store-buffer.h

Issue 7389008: Make Win64 compile. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/gc
Patch Set: Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: src/store-buffer.h
diff --git a/src/store-buffer.h b/src/store-buffer.h
index 3a865185e307d07412671a34e8e9831907c408e5..c354d360a9055276d2be939b93c385022ae0c42f 100644
--- a/src/store-buffer.h
+++ b/src/store-buffer.h
@@ -84,7 +84,7 @@ class StoreBuffer {
static const int kStoreBufferOverflowBit = 1 << 16;
static const int kStoreBufferSize = kStoreBufferOverflowBit;
static const int kStoreBufferLength = kStoreBufferSize / sizeof(Address);
- static const int kOldStoreBufferLength = kStoreBufferLength * 64;
+ static const int kOldStoreBufferLength = kStoreBufferLength * 16;
Erik Corry 2011/07/15 21:37:33 Merge artifact?
Lasse Reichstein 2011/08/01 12:40:33 No, out of memory error with larger value.
static const int kHashMapLengthLog2 = 12;
static const int kHashMapLength = 1 << kHashMapLengthLog2;

Powered by Google App Engine
This is Rietveld 408576698