Index: src/globals.h |
diff --git a/src/globals.h b/src/globals.h |
index 00665e3ffdde2dcd3b0b6d16d2d3af4594aaf018..78e1f277bc0fa96205cecf07efcc137854d95fb1 100644 |
--- a/src/globals.h |
+++ b/src/globals.h |
@@ -142,7 +142,11 @@ const int kPointerSizeLog2 = 3; |
const intptr_t kIntptrSignBit = V8_INT64_C(0x8000000000000000); |
const uintptr_t kUintptrAllBitsSet = V8_UINT64_C(0xFFFFFFFFFFFFFFFF); |
const bool kRequiresCodeRange = true; |
+#if V8_TARGET_ARCH_MIPS64 |
jochen (gone - plz use gerrit)
2015/05/26 15:44:35
can you explain why this is needed?
dusmil.imgtec
2015/05/26 16:16:34
Done.
|
+const size_t kMaximalCodeRangeSize = 256 * MB; |
+#else |
const size_t kMaximalCodeRangeSize = 512 * MB; |
+#endif |
#if V8_OS_WIN |
const size_t kMinimumCodeRangeSize = 4 * MB; |
const size_t kReservedCodeRangePages = 1; |