summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/jit
diff options
context:
space:
mode:
authorBalazs Kilvady <kilvadyb@homejinni.com>2014-08-25 15:33:09 +0200
committerJulien Brianceau <jbriance@cisco.com>2014-08-25 17:24:46 +0200
commitdc6883639e9d5955b9d69560f9e64e6e12a5e8b9 (patch)
treed97b90a91a7e6545507170c18df66c496d32c7ab /Source/JavaScriptCore/jit
parent5f97dc40ec224e2a940e32501977ea7726323a77 (diff)
downloadqtwebkit-dc6883639e9d5955b9d69560f9e64e6e12a5e8b9.tar.gz
[mips] Use shorter j <address> jump in MacroAssembler::replaceWithJump
Patch taken from https://bugs.webkit.org/show_bug.cgi?id=125920 Change-Id: I6583ea37e00f4dff80971bd44906936229540171 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'Source/JavaScriptCore/jit')
-rw-r--r--Source/JavaScriptCore/jit/ExecutableAllocator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/JavaScriptCore/jit/ExecutableAllocator.h b/Source/JavaScriptCore/jit/ExecutableAllocator.h
index 0ec4668fd..42e1f9594 100644
--- a/Source/JavaScriptCore/jit/ExecutableAllocator.h
+++ b/Source/JavaScriptCore/jit/ExecutableAllocator.h
@@ -102,7 +102,7 @@ class DemandExecutableAllocator;
#endif
#if ENABLE(EXECUTABLE_ALLOCATOR_FIXED)
-#if CPU(ARM)
+#if CPU(ARM) || CPU(MIPS)
static const size_t fixedExecutableMemoryPoolSize = 16 * 1024 * 1024;
#elif CPU(X86_64) && !CPU(X32)
static const size_t fixedExecutableMemoryPoolSize = 1024 * 1024 * 1024;