Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 1 | //===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===// |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 2 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file was developed by the LLVM research group and is distributed under |
| 6 | // the University of Illinois Open Source License. See LICENSE.TXT for details. |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 7 | // |
John Criswell | b576c94 | 2003-10-20 19:43:21 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 10 | // This tool implements a just-in-time compiler for LLVM, allowing direct |
| 11 | // execution of LLVM bytecode in an efficient manner. |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 15 | #include "JIT.h" |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 16 | #include "llvm/Constants.h" |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 17 | #include "llvm/DerivedTypes.h" |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 18 | #include "llvm/Function.h" |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 19 | #include "llvm/GlobalVariable.h" |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 20 | #include "llvm/Instructions.h" |
Misha Brukman | 0f4f7d9 | 2003-10-16 21:19:34 +0000 | [diff] [blame] | 21 | #include "llvm/ModuleProvider.h" |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 22 | #include "llvm/CodeGen/MachineCodeEmitter.h" |
| 23 | #include "llvm/CodeGen/MachineFunction.h" |
Brian Gaeke | 9722294 | 2003-09-05 19:39:22 +0000 | [diff] [blame] | 24 | #include "llvm/ExecutionEngine/GenericValue.h" |
Chris Lattner | e7fd553 | 2006-05-08 22:00:52 +0000 | [diff] [blame] | 25 | #include "llvm/Support/MutexGuard.h" |
Reid Spencer | df5a37e | 2004-11-29 14:11:29 +0000 | [diff] [blame] | 26 | #include "llvm/System/DynamicLibrary.h" |
Owen Anderson | 07000c6 | 2006-05-12 06:33:49 +0000 | [diff] [blame] | 27 | #include "llvm/Target/TargetData.h" |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 28 | #include "llvm/Target/TargetMachine.h" |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 29 | #include "llvm/Target/TargetJITInfo.h" |
Chris Lattner | c19aade | 2003-12-08 08:06:28 +0000 | [diff] [blame] | 30 | using namespace llvm; |
Misha Brukman | abb027c | 2003-05-27 21:40:39 +0000 | [diff] [blame] | 31 | |
Nate Begeman | b76ea74 | 2006-07-22 16:59:38 +0000 | [diff] [blame] | 32 | #ifdef __APPLE__ |
| 33 | #include <AvailabilityMacros.h> |
Chris Lattner | c1f400c | 2006-12-17 21:04:02 +0000 | [diff] [blame] | 34 | #if defined(MAC_OS_X_VERSION_10_4) && \ |
| 35 | ((MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_4) || \ |
| 36 | (MAC_OS_X_VERSION_MIN_REQUIRED == MAC_OS_X_VERSION_10_4 && \ |
| 37 | __APPLE_CC__ >= 5330)) |
Evan Cheng | 5f42c55 | 2006-07-21 23:06:20 +0000 | [diff] [blame] | 38 | // __dso_handle is resolved by Mac OS X dynamic linker. |
| 39 | extern void *__dso_handle __attribute__ ((__visibility__ ("hidden"))); |
| 40 | #endif |
Nate Begeman | b76ea74 | 2006-07-22 16:59:38 +0000 | [diff] [blame] | 41 | #endif |
Evan Cheng | 5f42c55 | 2006-07-21 23:06:20 +0000 | [diff] [blame] | 42 | |
Chris Lattner | 2fe4bb0 | 2006-03-22 06:07:50 +0000 | [diff] [blame] | 43 | static struct RegisterJIT { |
| 44 | RegisterJIT() { JIT::Register(); } |
| 45 | } JITRegistrator; |
| 46 | |
Jeff Cohen | 2f51914 | 2006-03-24 02:53:49 +0000 | [diff] [blame] | 47 | namespace llvm { |
| 48 | void LinkInJIT() { |
| 49 | } |
| 50 | } |
| 51 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 52 | JIT::JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji) |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 53 | : ExecutionEngine(MP), TM(tm), TJI(tji), state(MP) { |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 54 | setTargetData(TM.getTargetData()); |
Misha Brukman | abb027c | 2003-05-27 21:40:39 +0000 | [diff] [blame] | 55 | |
| 56 | // Initialize MCE |
Misha Brukman | 906f5fa | 2003-06-02 03:23:16 +0000 | [diff] [blame] | 57 | MCE = createEmitter(*this); |
Misha Brukman | f976c85 | 2005-04-21 22:55:34 +0000 | [diff] [blame] | 58 | |
Brian Gaeke | 50872d5 | 2004-04-14 17:45:52 +0000 | [diff] [blame] | 59 | // Add target data |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 60 | MutexGuard locked(lock); |
Chris Lattner | 1911fd4 | 2006-09-04 04:14:57 +0000 | [diff] [blame] | 61 | FunctionPassManager &PM = state.getPM(locked); |
Chris Lattner | b93b034 | 2006-05-04 21:18:40 +0000 | [diff] [blame] | 62 | PM.add(new TargetData(*TM.getTargetData())); |
Brian Gaeke | 50872d5 | 2004-04-14 17:45:52 +0000 | [diff] [blame] | 63 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 64 | // Turn the machine code intermediate representation into bytes in memory that |
| 65 | // may be executed. |
Chris Lattner | 1911fd4 | 2006-09-04 04:14:57 +0000 | [diff] [blame] | 66 | if (TM.addPassesToEmitMachineCode(PM, *MCE, false /*fast*/)) { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 67 | cerr << "Target does not support machine code emission!\n"; |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 68 | abort(); |
| 69 | } |
Chris Lattner | 1911fd4 | 2006-09-04 04:14:57 +0000 | [diff] [blame] | 70 | |
| 71 | // Initialize passes. |
| 72 | PM.doInitialization(); |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 73 | } |
| 74 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 75 | JIT::~JIT() { |
| 76 | delete MCE; |
| 77 | delete &TM; |
| 78 | } |
| 79 | |
Brian Gaeke | 70975ee | 2003-09-05 18:42:01 +0000 | [diff] [blame] | 80 | /// run - Start execution with the specified function and arguments. |
Chris Lattner | 05a1a30 | 2003-08-21 21:32:12 +0000 | [diff] [blame] | 81 | /// |
Chris Lattner | ff0f1bb | 2003-12-26 06:13:47 +0000 | [diff] [blame] | 82 | GenericValue JIT::runFunction(Function *F, |
| 83 | const std::vector<GenericValue> &ArgValues) { |
Chris Lattner | b47130c | 2004-08-15 23:29:50 +0000 | [diff] [blame] | 84 | assert(F && "Function *F was null at entry to run()"); |
Chris Lattner | b47130c | 2004-08-15 23:29:50 +0000 | [diff] [blame] | 85 | |
| 86 | void *FPtr = getPointerToFunction(F); |
Chris Lattner | 7c45d78 | 2004-08-15 23:31:43 +0000 | [diff] [blame] | 87 | assert(FPtr && "Pointer to fn's code was null after getPointerToFunction"); |
Chris Lattner | f7bedf4 | 2004-08-15 23:39:59 +0000 | [diff] [blame] | 88 | const FunctionType *FTy = F->getFunctionType(); |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 89 | const Type *RetTy = FTy->getReturnType(); |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 90 | |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 91 | assert((FTy->getNumParams() <= ArgValues.size() || FTy->isVarArg()) && |
| 92 | "Too many arguments passed into function!"); |
| 93 | assert(FTy->getNumParams() == ArgValues.size() && |
| 94 | "This doesn't support passing arguments through varargs (yet)!"); |
| 95 | |
Misha Brukman | ec84302 | 2004-10-22 23:35:57 +0000 | [diff] [blame] | 96 | // Handle some common cases first. These cases correspond to common `main' |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 97 | // prototypes. |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 98 | if (RetTy == Type::Int32Ty || RetTy == Type::Int32Ty || RetTy == Type::VoidTy) { |
Chris Lattner | f7bedf4 | 2004-08-15 23:39:59 +0000 | [diff] [blame] | 99 | switch (ArgValues.size()) { |
| 100 | case 3: |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 101 | if ((FTy->getParamType(0) == Type::Int32Ty || |
| 102 | FTy->getParamType(0) == Type::Int32Ty) && |
Chris Lattner | f7bedf4 | 2004-08-15 23:39:59 +0000 | [diff] [blame] | 103 | isa<PointerType>(FTy->getParamType(1)) && |
| 104 | isa<PointerType>(FTy->getParamType(2))) { |
| 105 | int (*PF)(int, char **, const char **) = |
Chris Lattner | 870286a | 2006-06-01 17:29:22 +0000 | [diff] [blame] | 106 | (int(*)(int, char **, const char **))(intptr_t)FPtr; |
Misha Brukman | ec84302 | 2004-10-22 23:35:57 +0000 | [diff] [blame] | 107 | |
Chris Lattner | f7bedf4 | 2004-08-15 23:39:59 +0000 | [diff] [blame] | 108 | // Call the function. |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 109 | GenericValue rv; |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 110 | rv.Int32Val = PF(ArgValues[0].Int32Val, (char **)GVTOP(ArgValues[1]), |
Chris Lattner | f7bedf4 | 2004-08-15 23:39:59 +0000 | [diff] [blame] | 111 | (const char **)GVTOP(ArgValues[2])); |
| 112 | return rv; |
| 113 | } |
| 114 | break; |
Chris Lattner | 174f226 | 2004-08-16 01:07:04 +0000 | [diff] [blame] | 115 | case 2: |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 116 | if ((FTy->getParamType(0) == Type::Int32Ty || |
| 117 | FTy->getParamType(0) == Type::Int32Ty) && |
Chris Lattner | 174f226 | 2004-08-16 01:07:04 +0000 | [diff] [blame] | 118 | isa<PointerType>(FTy->getParamType(1))) { |
Chris Lattner | 870286a | 2006-06-01 17:29:22 +0000 | [diff] [blame] | 119 | int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr; |
Misha Brukman | ec84302 | 2004-10-22 23:35:57 +0000 | [diff] [blame] | 120 | |
Chris Lattner | 174f226 | 2004-08-16 01:07:04 +0000 | [diff] [blame] | 121 | // Call the function. |
| 122 | GenericValue rv; |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 123 | rv.Int32Val = PF(ArgValues[0].Int32Val, (char **)GVTOP(ArgValues[1])); |
Chris Lattner | 174f226 | 2004-08-16 01:07:04 +0000 | [diff] [blame] | 124 | return rv; |
| 125 | } |
| 126 | break; |
Chris Lattner | f7bedf4 | 2004-08-15 23:39:59 +0000 | [diff] [blame] | 127 | case 1: |
| 128 | if (FTy->getNumParams() == 1 && |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 129 | (FTy->getParamType(0) == Type::Int32Ty || |
| 130 | FTy->getParamType(0) == Type::Int32Ty)) { |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 131 | GenericValue rv; |
Chris Lattner | 870286a | 2006-06-01 17:29:22 +0000 | [diff] [blame] | 132 | int (*PF)(int) = (int(*)(int))(intptr_t)FPtr; |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 133 | rv.Int32Val = PF(ArgValues[0].Int32Val); |
Chris Lattner | f7bedf4 | 2004-08-15 23:39:59 +0000 | [diff] [blame] | 134 | return rv; |
| 135 | } |
| 136 | break; |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 137 | } |
| 138 | } |
| 139 | |
| 140 | // Handle cases where no arguments are passed first. |
| 141 | if (ArgValues.empty()) { |
| 142 | GenericValue rv; |
| 143 | switch (RetTy->getTypeID()) { |
| 144 | default: assert(0 && "Unknown return type for function call!"); |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 145 | case Type::IntegerTyID: { |
| 146 | unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth(); |
| 147 | if (BitWidth == 1) |
| 148 | rv.Int1Val = ((bool(*)())(intptr_t)FPtr)(); |
| 149 | else if (BitWidth <= 8) |
| 150 | rv.Int8Val = ((char(*)())(intptr_t)FPtr)(); |
| 151 | else if (BitWidth <= 16) |
| 152 | rv.Int16Val = ((short(*)())(intptr_t)FPtr)(); |
| 153 | else if (BitWidth <= 32) |
| 154 | rv.Int32Val = ((int(*)())(intptr_t)FPtr)(); |
| 155 | else if (BitWidth <= 64) |
| 156 | rv.Int64Val = ((int64_t(*)())(intptr_t)FPtr)(); |
| 157 | else |
| 158 | assert(0 && "Integer types > 64 bits not supported"); |
Chris Lattner | d297aea | 2004-08-15 23:34:48 +0000 | [diff] [blame] | 159 | return rv; |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 160 | } |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 161 | case Type::VoidTyID: |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 162 | rv.Int32Val = ((int(*)())(intptr_t)FPtr)(); |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 163 | return rv; |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 164 | case Type::FloatTyID: |
Chris Lattner | 870286a | 2006-06-01 17:29:22 +0000 | [diff] [blame] | 165 | rv.FloatVal = ((float(*)())(intptr_t)FPtr)(); |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 166 | return rv; |
| 167 | case Type::DoubleTyID: |
Chris Lattner | 870286a | 2006-06-01 17:29:22 +0000 | [diff] [blame] | 168 | rv.DoubleVal = ((double(*)())(intptr_t)FPtr)(); |
Chris Lattner | e5eab14 | 2004-08-15 23:53:06 +0000 | [diff] [blame] | 169 | return rv; |
| 170 | case Type::PointerTyID: |
Chris Lattner | 870286a | 2006-06-01 17:29:22 +0000 | [diff] [blame] | 171 | return PTOGV(((void*(*)())(intptr_t)FPtr)()); |
Chris Lattner | d297aea | 2004-08-15 23:34:48 +0000 | [diff] [blame] | 172 | } |
Chris Lattner | ff0f1bb | 2003-12-26 06:13:47 +0000 | [diff] [blame] | 173 | } |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 174 | |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 175 | // Okay, this is not one of our quick and easy cases. Because we don't have a |
| 176 | // full FFI, we have to codegen a nullary stub function that just calls the |
| 177 | // function we are interested in, passing in constants for all of the |
| 178 | // arguments. Make this function and return. |
| 179 | |
| 180 | // First, create the function. |
| 181 | FunctionType *STy=FunctionType::get(RetTy, std::vector<const Type*>(), false); |
| 182 | Function *Stub = new Function(STy, Function::InternalLinkage, "", |
| 183 | F->getParent()); |
| 184 | |
| 185 | // Insert a basic block. |
| 186 | BasicBlock *StubBB = new BasicBlock("", Stub); |
| 187 | |
| 188 | // Convert all of the GenericValue arguments over to constants. Note that we |
| 189 | // currently don't support varargs. |
| 190 | std::vector<Value*> Args; |
| 191 | for (unsigned i = 0, e = ArgValues.size(); i != e; ++i) { |
| 192 | Constant *C = 0; |
| 193 | const Type *ArgTy = FTy->getParamType(i); |
| 194 | const GenericValue &AV = ArgValues[i]; |
| 195 | switch (ArgTy->getTypeID()) { |
| 196 | default: assert(0 && "Unknown argument type for function call!"); |
Reid Spencer | a54b7cb | 2007-01-12 07:05:14 +0000 | [diff] [blame] | 197 | case Type::IntegerTyID: { |
| 198 | unsigned BitWidth = cast<IntegerType>(ArgTy)->getBitWidth(); |
| 199 | if (BitWidth == 1) |
| 200 | C = ConstantInt::get(ArgTy, AV.Int1Val); |
| 201 | else if (BitWidth <= 8) |
| 202 | C = ConstantInt::get(ArgTy, AV.Int8Val); |
| 203 | else if (BitWidth <= 16) |
| 204 | C = ConstantInt::get(ArgTy, AV.Int16Val); |
| 205 | else if (BitWidth <= 32) |
| 206 | C = ConstantInt::get(ArgTy, AV.Int32Val); |
| 207 | else if (BitWidth <= 64) |
| 208 | C = ConstantInt::get(ArgTy, AV.Int64Val); |
| 209 | else |
| 210 | assert(0 && "Integer types > 64 bits not supported"); |
| 211 | break; |
| 212 | } |
Reid Spencer | b83eb64 | 2006-10-20 07:07:24 +0000 | [diff] [blame] | 213 | case Type::FloatTyID: C = ConstantFP ::get(ArgTy, AV.FloatVal); break; |
| 214 | case Type::DoubleTyID: C = ConstantFP ::get(ArgTy, AV.DoubleVal); break; |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 215 | case Type::PointerTyID: |
| 216 | void *ArgPtr = GVTOP(AV); |
| 217 | if (sizeof(void*) == 4) { |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 218 | C = ConstantInt::get(Type::Int32Ty, (int)(intptr_t)ArgPtr); |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 219 | } else { |
Reid Spencer | e49661b | 2006-12-31 05:51:36 +0000 | [diff] [blame] | 220 | C = ConstantInt::get(Type::Int64Ty, (intptr_t)ArgPtr); |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 221 | } |
Reid Spencer | 15f46d6 | 2006-12-12 01:17:41 +0000 | [diff] [blame] | 222 | C = ConstantExpr::getIntToPtr(C, ArgTy); // Cast the integer to pointer |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 223 | break; |
| 224 | } |
| 225 | Args.push_back(C); |
| 226 | } |
| 227 | |
Chris Lattner | a471e04 | 2005-05-06 06:48:54 +0000 | [diff] [blame] | 228 | CallInst *TheCall = new CallInst(F, Args, "", StubBB); |
| 229 | TheCall->setTailCall(); |
Chris Lattner | cc22e9f | 2004-08-16 00:14:18 +0000 | [diff] [blame] | 230 | if (TheCall->getType() != Type::VoidTy) |
| 231 | new ReturnInst(TheCall, StubBB); // Return result of the call. |
| 232 | else |
| 233 | new ReturnInst(StubBB); // Just return void. |
| 234 | |
| 235 | // Finally, return the value returned by our nullary stub function. |
| 236 | return runFunction(Stub, std::vector<GenericValue>()); |
Chris Lattner | bd199fb | 2002-12-24 00:01:05 +0000 | [diff] [blame] | 237 | } |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 238 | |
| 239 | /// runJITOnFunction - Run the FunctionPassManager full of |
| 240 | /// just-in-time compilation passes on F, hopefully filling in |
| 241 | /// GlobalAddress[F] with the address of F's machine code. |
| 242 | /// |
| 243 | void JIT::runJITOnFunction(Function *F) { |
| 244 | static bool isAlreadyCodeGenerating = false; |
| 245 | assert(!isAlreadyCodeGenerating && "Error: Recursive compilation detected!"); |
Jeff Cohen | 00b16889 | 2005-07-27 06:12:32 +0000 | [diff] [blame] | 246 | |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 247 | MutexGuard locked(lock); |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 248 | |
| 249 | // JIT the function |
| 250 | isAlreadyCodeGenerating = true; |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 251 | state.getPM(locked).run(*F); |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 252 | isAlreadyCodeGenerating = false; |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 253 | |
| 254 | // If the function referred to a global variable that had not yet been |
| 255 | // emitted, it allocates memory for the global, but doesn't emit it yet. Emit |
| 256 | // all of these globals now. |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 257 | while (!state.getPendingGlobals(locked).empty()) { |
| 258 | const GlobalVariable *GV = state.getPendingGlobals(locked).back(); |
| 259 | state.getPendingGlobals(locked).pop_back(); |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 260 | EmitGlobalVariable(GV); |
| 261 | } |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | /// getPointerToFunction - This method is used to get the address of the |
| 265 | /// specified function, compiling it if neccesary. |
| 266 | /// |
| 267 | void *JIT::getPointerToFunction(Function *F) { |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 268 | MutexGuard locked(lock); |
| 269 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 270 | if (void *Addr = getPointerToGlobalIfAvailable(F)) |
| 271 | return Addr; // Check if function already code gen'd |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 272 | |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 273 | // Make sure we read in the function if it exists in this Module. |
Chris Lattner | 5c72a3a | 2006-07-07 17:18:09 +0000 | [diff] [blame] | 274 | if (F->hasNotBeenReadFromBytecode()) { |
Chris Lattner | fe85403 | 2006-08-16 01:24:12 +0000 | [diff] [blame] | 275 | // Determine the module provider this function is provided by. |
| 276 | Module *M = F->getParent(); |
| 277 | ModuleProvider *MP = 0; |
| 278 | for (unsigned i = 0, e = Modules.size(); i != e; ++i) { |
| 279 | if (Modules[i]->getModule() == M) { |
| 280 | MP = Modules[i]; |
| 281 | break; |
| 282 | } |
| 283 | } |
| 284 | assert(MP && "Function isn't in a module we know about!"); |
| 285 | |
Chris Lattner | 5c72a3a | 2006-07-07 17:18:09 +0000 | [diff] [blame] | 286 | std::string ErrorMsg; |
| 287 | if (MP->materializeFunction(F, &ErrorMsg)) { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 288 | cerr << "Error reading function '" << F->getName() |
| 289 | << "' from bytecode file: " << ErrorMsg << "\n"; |
Chris Lattner | 0050ef8 | 2004-11-15 23:18:09 +0000 | [diff] [blame] | 290 | abort(); |
| 291 | } |
Chris Lattner | 5c72a3a | 2006-07-07 17:18:09 +0000 | [diff] [blame] | 292 | } |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 293 | |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 294 | if (F->isDeclaration()) { |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 295 | void *Addr = getPointerToNamedFunction(F->getName()); |
| 296 | addGlobalMapping(F, Addr); |
| 297 | return Addr; |
| 298 | } |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 299 | |
| 300 | runJITOnFunction(F); |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 301 | |
| 302 | void *Addr = getPointerToGlobalIfAvailable(F); |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 303 | assert(Addr && "Code generation didn't add function to GlobalAddress table!"); |
| 304 | return Addr; |
| 305 | } |
| 306 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 307 | /// getOrEmitGlobalVariable - Return the address of the specified global |
| 308 | /// variable, possibly emitting it to memory if needed. This is used by the |
| 309 | /// Emitter. |
| 310 | void *JIT::getOrEmitGlobalVariable(const GlobalVariable *GV) { |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 311 | MutexGuard locked(lock); |
| 312 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 313 | void *Ptr = getPointerToGlobalIfAvailable(GV); |
| 314 | if (Ptr) return Ptr; |
| 315 | |
| 316 | // If the global is external, just remember the address. |
Reid Spencer | 5cbf985 | 2007-01-30 20:08:39 +0000 | [diff] [blame] | 317 | if (GV->isDeclaration()) { |
Chris Lattner | c1f400c | 2006-12-17 21:04:02 +0000 | [diff] [blame] | 318 | #if defined(__APPLE__) && defined(MAC_OS_X_VERSION_10_4) && \ |
| 319 | ((MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_4) || \ |
| 320 | (MAC_OS_X_VERSION_MIN_REQUIRED == MAC_OS_X_VERSION_10_4 && \ |
| 321 | __APPLE_CC__ >= 5330)) |
Evan Cheng | fb9c0d7 | 2006-09-01 07:09:56 +0000 | [diff] [blame] | 322 | // Apple gcc defaults to -fuse-cxa-atexit (i.e. calls __cxa_atexit instead |
| 323 | // of atexit). It passes the address of linker generated symbol __dso_handle |
| 324 | // to the function. |
| 325 | // This configuration change happened at version 5330. |
Evan Cheng | 5f42c55 | 2006-07-21 23:06:20 +0000 | [diff] [blame] | 326 | if (GV->getName() == "__dso_handle") |
| 327 | return (void*)&__dso_handle; |
Evan Cheng | b82ab94 | 2006-07-22 00:42:03 +0000 | [diff] [blame] | 328 | #endif |
Reid Spencer | df5a37e | 2004-11-29 14:11:29 +0000 | [diff] [blame] | 329 | Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(GV->getName().c_str()); |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 330 | if (Ptr == 0) { |
Bill Wendling | 832171c | 2006-12-07 20:04:42 +0000 | [diff] [blame] | 331 | cerr << "Could not resolve external global address: " |
| 332 | << GV->getName() << "\n"; |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 333 | abort(); |
| 334 | } |
| 335 | } else { |
| 336 | // If the global hasn't been emitted to memory yet, allocate space. We will |
| 337 | // actually initialize the global after current function has finished |
| 338 | // compilation. |
Chris Lattner | f5d438c | 2006-05-02 21:57:51 +0000 | [diff] [blame] | 339 | const Type *GlobalType = GV->getType()->getElementType(); |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 340 | size_t S = getTargetData()->getTypeSize(GlobalType); |
Chris Lattner | 58092e3 | 2007-01-20 22:35:55 +0000 | [diff] [blame] | 341 | size_t A = getTargetData()->getTypeAlignmentPref(GlobalType); |
Chris Lattner | f5d438c | 2006-05-02 21:57:51 +0000 | [diff] [blame] | 342 | if (A <= 8) { |
| 343 | Ptr = malloc(S); |
| 344 | } else { |
| 345 | // Allocate S+A bytes of memory, then use an aligned pointer within that |
| 346 | // space. |
| 347 | Ptr = malloc(S+A); |
| 348 | unsigned MisAligned = ((intptr_t)Ptr & (A-1)); |
Chris Lattner | 21c39a6 | 2006-07-12 00:31:47 +0000 | [diff] [blame] | 349 | Ptr = (char*)Ptr + (MisAligned ? (A-MisAligned) : 0); |
Chris Lattner | f5d438c | 2006-05-02 21:57:51 +0000 | [diff] [blame] | 350 | } |
Reid Spencer | ee44863 | 2005-07-12 15:51:55 +0000 | [diff] [blame] | 351 | state.getPendingGlobals(locked).push_back(GV); |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 352 | } |
| 353 | addGlobalMapping(GV, Ptr); |
| 354 | return Ptr; |
| 355 | } |
| 356 | |
| 357 | |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 358 | /// recompileAndRelinkFunction - This method is used to force a function |
| 359 | /// which has already been compiled, to be compiled again, possibly |
| 360 | /// after it has been modified. Then the entry to the old copy is overwritten |
| 361 | /// with a branch to the new copy. If there was no old copy, this acts |
| 362 | /// just like JIT::getPointerToFunction(). |
| 363 | /// |
| 364 | void *JIT::recompileAndRelinkFunction(Function *F) { |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 365 | void *OldAddr = getPointerToGlobalIfAvailable(F); |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 366 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 367 | // If it's not already compiled there is no reason to patch it up. |
| 368 | if (OldAddr == 0) { return getPointerToFunction(F); } |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 369 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 370 | // Delete the old function mapping. |
| 371 | addGlobalMapping(F, 0); |
| 372 | |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 373 | // Recodegen the function |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 374 | runJITOnFunction(F); |
Chris Lattner | c07ed13 | 2003-12-20 03:36:47 +0000 | [diff] [blame] | 375 | |
| 376 | // Update state, forward the old function to the new function. |
| 377 | void *Addr = getPointerToGlobalIfAvailable(F); |
Chris Lattner | 4d326fa | 2003-12-20 01:46:27 +0000 | [diff] [blame] | 378 | assert(Addr && "Code generation didn't add function to GlobalAddress table!"); |
| 379 | TJI.replaceMachineCodeForFunction(OldAddr, Addr); |
| 380 | return Addr; |
| 381 | } |
Misha Brukman | 895eddf | 2004-11-07 23:58:46 +0000 | [diff] [blame] | 382 | |