From d2dfc9628d2f7de0e446814291c9196ba24d5157 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Fri, 15 Aug 2003 18:03:06 +0000 Subject: [PATCH] Now that the JIT memory manager allocates as many bytes as necessary rather than rounding up to a page, we need to request (num instrs * 4) bytes. However, I think that 64 bytes is overkill for the stub function. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7888 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SparcV9/SparcV9CodeEmitter.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp index 82868827c3f..51254e21c9d 100644 --- a/lib/Target/SparcV9/SparcV9CodeEmitter.cpp +++ b/lib/Target/SparcV9/SparcV9CodeEmitter.cpp @@ -373,7 +373,8 @@ uint64_t JITResolver::CompilationCallback() { /// directly. /// uint64_t JITResolver::emitStubForFunction(Function *F) { - MCE.startFunctionStub(*F, 20); + // FIXME: 40 is not enough... but should be + MCE.startFunctionStub(*F, 64); DEBUG(std::cerr << "Emitting stub at addr: 0x" << std::hex << MCE.getCurrentPCValue() << "\n");