Fix the logic in this assertion to properly validate the number
[oota-llvm.git] / lib / ExecutionEngine / JIT / JIT.cpp
1 //===-- JIT.cpp - LLVM Just in Time Compiler ------------------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This tool implements a just-in-time compiler for LLVM, allowing direct
11 // execution of LLVM bitcode in an efficient manner.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "JIT.h"
16 #include "llvm/Constants.h"
17 #include "llvm/DerivedTypes.h"
18 #include "llvm/Function.h"
19 #include "llvm/GlobalVariable.h"
20 #include "llvm/Instructions.h"
21 #include "llvm/ModuleProvider.h"
22 #include "llvm/CodeGen/MachineCodeEmitter.h"
23 #include "llvm/ExecutionEngine/GenericValue.h"
24 #include "llvm/Support/MutexGuard.h"
25 #include "llvm/System/DynamicLibrary.h"
26 #include "llvm/Target/TargetData.h"
27 #include "llvm/Target/TargetMachine.h"
28 #include "llvm/Target/TargetJITInfo.h"
29
30 #include "llvm/Config/config.h"
31
32 using namespace llvm;
33
34 #ifdef __APPLE__ 
35 // Apple gcc defaults to -fuse-cxa-atexit (i.e. calls __cxa_atexit instead
36 // of atexit). It passes the address of linker generated symbol __dso_handle
37 // to the function.
38 // This configuration change happened at version 5330.
39 # include <AvailabilityMacros.h>
40 # if defined(MAC_OS_X_VERSION_10_4) && \
41      ((MAC_OS_X_VERSION_MIN_REQUIRED > MAC_OS_X_VERSION_10_4) || \
42       (MAC_OS_X_VERSION_MIN_REQUIRED == MAC_OS_X_VERSION_10_4 && \
43        __APPLE_CC__ >= 5330))
44 #  ifndef HAVE___DSO_HANDLE
45 #   define HAVE___DSO_HANDLE 1
46 #  endif
47 # endif
48 #endif
49
50 #if HAVE___DSO_HANDLE
51 extern void *__dso_handle __attribute__ ((__visibility__ ("hidden")));
52 #endif
53
54 namespace {
55
56 static struct RegisterJIT {
57   RegisterJIT() { JIT::Register(); }
58 } JITRegistrator;
59
60 }
61
62 namespace llvm {
63   void LinkInJIT() {
64   }
65 }
66
67
68 #if defined(__GNUC__) && !defined(__ARM__EABI__)
69  
70 // libgcc defines the __register_frame function to dynamically register new
71 // dwarf frames for exception handling. This functionality is not portable
72 // across compilers and is only provided by GCC. We use the __register_frame
73 // function here so that code generated by the JIT cooperates with the unwinding
74 // runtime of libgcc. When JITting with exception handling enable, LLVM
75 // generates dwarf frames and registers it to libgcc with __register_frame.
76 //
77 // The __register_frame function works with Linux.
78 //
79 // Unfortunately, this functionality seems to be in libgcc after the unwinding
80 // library of libgcc for darwin was written. The code for darwin overwrites the
81 // value updated by __register_frame with a value fetched with "keymgr".
82 // "keymgr" is an obsolete functionality, which should be rewritten some day.
83 // In the meantime, since "keymgr" is on all libgccs shipped with apple-gcc, we
84 // need a workaround in LLVM which uses the "keymgr" to dynamically modify the
85 // values of an opaque key, used by libgcc to find dwarf tables.
86
87 extern "C" void __register_frame(void*);
88
89 #if defined(__APPLE__)
90
91 namespace {
92
93 // LibgccObject - This is the structure defined in libgcc. There is no #include
94 // provided for this structure, so we also define it here. libgcc calls it
95 // "struct object". The structure is undocumented in libgcc.
96 struct LibgccObject {
97   void *unused1;
98   void *unused2;
99   void *unused3;
100   
101   /// frame - Pointer to the exception table.
102   void *frame;
103   
104   /// encoding -  The encoding of the object?
105   union {
106     struct {
107       unsigned long sorted : 1;
108       unsigned long from_array : 1;
109       unsigned long mixed_encoding : 1;
110       unsigned long encoding : 8;
111       unsigned long count : 21; 
112     } b;
113     size_t i;
114   } encoding;
115   
116   /// fde_end - libgcc defines this field only if some macro is defined. We
117   /// include this field even if it may not there, to make libgcc happy.
118   char *fde_end;
119   
120   /// next - At least we know it's a chained list!
121   struct LibgccObject *next;
122 };
123
124 // "kemgr" stuff. Apparently, all frame tables are stored there.
125 extern "C" void _keymgr_set_and_unlock_processwide_ptr(int, void *);
126 extern "C" void *_keymgr_get_and_lock_processwide_ptr(int);
127 #define KEYMGR_GCC3_DW2_OBJ_LIST        302     /* Dwarf2 object list  */
128
129 /// LibgccObjectInfo - libgcc defines this struct as km_object_info. It
130 /// probably contains all dwarf tables that are loaded.
131 struct LibgccObjectInfo {
132
133   /// seenObjects - LibgccObjects already parsed by the unwinding runtime.
134   ///
135   struct LibgccObject* seenObjects;
136
137   /// unseenObjects - LibgccObjects not parsed yet by the unwinding runtime.
138   ///
139   struct LibgccObject* unseenObjects;
140   
141   unsigned unused[2];
142 };
143
144 // for DW_EH_PE_omit
145 #include "llvm/Support/Dwarf.h"
146
147 /// darwin_register_frame - Since __register_frame does not work with darwin's
148 /// libgcc,we provide our own function, which "tricks" libgcc by modifying the
149 /// "Dwarf2 object list" key.
150 void DarwinRegisterFrame(void* FrameBegin) {
151   // Get the key.
152   struct LibgccObjectInfo* LOI = (struct LibgccObjectInfo*)
153     _keymgr_get_and_lock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST);
154   
155   // Allocate a new LibgccObject to represent this frame. Deallocation of this
156   // object may be impossible: since darwin code in libgcc was written after
157   // the ability to dynamically register frames, things may crash if we
158   // deallocate it.
159   struct LibgccObject* ob = (struct LibgccObject*)
160     malloc(sizeof(struct LibgccObject));
161   
162   // Do like libgcc for the values of the field.
163   ob->unused1 = (void *)-1;
164   ob->unused2 = 0;
165   ob->unused3 = 0;
166   ob->frame = FrameBegin;
167   ob->encoding.i = 0; 
168   ob->encoding.b.encoding = llvm::dwarf::DW_EH_PE_omit;
169   
170   // Put the info on both places, as libgcc uses the first or the the second
171   // field. Note that we rely on having two pointers here. If fde_end was a
172   // char, things would get complicated.
173   ob->fde_end = (char*)LOI->unseenObjects;
174   ob->next = LOI->unseenObjects;
175   
176   // Update the key's unseenObjects list.
177   LOI->unseenObjects = ob;
178   
179   // Finally update the "key". Apparently, libgcc requires it. 
180   _keymgr_set_and_unlock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST,
181                                          LOI);
182
183 }
184
185 }
186 #endif // __APPLE__
187 #endif // __GNUC__
188
189 /// createJIT - This is the factory method for creating a JIT for the current
190 /// machine, it does not fall back to the interpreter.  This takes ownership
191 /// of the module provider.
192 ExecutionEngine *ExecutionEngine::createJIT(ModuleProvider *MP,
193                                             std::string *ErrorStr,
194                                             JITMemoryManager *JMM,
195                                             bool Fast) {
196   ExecutionEngine *EE = JIT::createJIT(MP, ErrorStr, JMM, Fast);
197   if (!EE) return 0;
198   
199   // Make sure we can resolve symbols in the program as well. The zero arg
200   // to the function tells DynamicLibrary to load the program, not a library.
201   sys::DynamicLibrary::LoadLibraryPermanently(0, ErrorStr);
202   return EE;
203 }
204
205 JIT::JIT(ModuleProvider *MP, TargetMachine &tm, TargetJITInfo &tji,
206          JITMemoryManager *JMM, bool Fast)
207   : ExecutionEngine(MP), TM(tm), TJI(tji) {
208   setTargetData(TM.getTargetData());
209
210   jitstate = new JITState(MP);
211
212   // Initialize MCE
213   MCE = createEmitter(*this, JMM);
214
215   // Add target data
216   MutexGuard locked(lock);
217   FunctionPassManager &PM = jitstate->getPM(locked);
218   PM.add(new TargetData(*TM.getTargetData()));
219
220   // Turn the machine code intermediate representation into bytes in memory that
221   // may be executed.
222   if (TM.addPassesToEmitMachineCode(PM, *MCE, Fast)) {
223     cerr << "Target does not support machine code emission!\n";
224     abort();
225   }
226   
227   // Register routine for informing unwinding runtime about new EH frames
228 #if defined(__GNUC__) && !defined(__ARM_EABI__)
229 #if defined(__APPLE__)
230   struct LibgccObjectInfo* LOI = (struct LibgccObjectInfo*)
231     _keymgr_get_and_lock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST);
232   
233   // The key is created on demand, and libgcc creates it the first time an
234   // exception occurs. Since we need the key to register frames, we create
235   // it now.
236   if (!LOI) {
237     LOI = (LibgccObjectInfo*)malloc(sizeof(struct LibgccObjectInfo)); 
238     _keymgr_set_and_unlock_processwide_ptr(KEYMGR_GCC3_DW2_OBJ_LIST,
239                                            LOI);
240   }
241   InstallExceptionTableRegister(DarwinRegisterFrame);
242 #else
243   InstallExceptionTableRegister(__register_frame);
244 #endif // __APPLE__
245 #endif // __GNUC__
246   
247   // Initialize passes.
248   PM.doInitialization();
249 }
250
251 JIT::~JIT() {
252   delete jitstate;
253   delete MCE;
254   delete &TM;
255 }
256
257 /// addModuleProvider - Add a new ModuleProvider to the JIT.  If we previously
258 /// removed the last ModuleProvider, we need re-initialize jitstate with a valid
259 /// ModuleProvider.
260 void JIT::addModuleProvider(ModuleProvider *MP) {
261   MutexGuard locked(lock);
262
263   if (Modules.empty()) {
264     assert(!jitstate && "jitstate should be NULL if Modules vector is empty!");
265
266     jitstate = new JITState(MP);
267
268     FunctionPassManager &PM = jitstate->getPM(locked);
269     PM.add(new TargetData(*TM.getTargetData()));
270
271     // Turn the machine code intermediate representation into bytes in memory
272     // that may be executed.
273     if (TM.addPassesToEmitMachineCode(PM, *MCE, false /*fast*/)) {
274       cerr << "Target does not support machine code emission!\n";
275       abort();
276     }
277     
278     // Initialize passes.
279     PM.doInitialization();
280   }
281   
282   ExecutionEngine::addModuleProvider(MP);
283 }
284
285 /// removeModuleProvider - If we are removing the last ModuleProvider, 
286 /// invalidate the jitstate since the PassManager it contains references a
287 /// released ModuleProvider.
288 Module *JIT::removeModuleProvider(ModuleProvider *MP, std::string *E) {
289   Module *result = ExecutionEngine::removeModuleProvider(MP, E);
290   
291   MutexGuard locked(lock);
292   
293   if (jitstate->getMP() == MP) {
294     delete jitstate;
295     jitstate = 0;
296   }
297   
298   if (!jitstate && !Modules.empty()) {
299     jitstate = new JITState(Modules[0]);
300
301     FunctionPassManager &PM = jitstate->getPM(locked);
302     PM.add(new TargetData(*TM.getTargetData()));
303     
304     // Turn the machine code intermediate representation into bytes in memory
305     // that may be executed.
306     if (TM.addPassesToEmitMachineCode(PM, *MCE, false /*fast*/)) {
307       cerr << "Target does not support machine code emission!\n";
308       abort();
309     }
310     
311     // Initialize passes.
312     PM.doInitialization();
313   }    
314   return result;
315 }
316
317 /// deleteModuleProvider - Remove a ModuleProvider from the list of modules,
318 /// and deletes the ModuleProvider and owned Module.  Avoids materializing 
319 /// the underlying module.
320 void JIT::deleteModuleProvider(ModuleProvider *MP, std::string *E) {
321   ExecutionEngine::deleteModuleProvider(MP, E);
322   
323   MutexGuard locked(lock);
324   
325   if (jitstate->getMP() == MP) {
326     delete jitstate;
327     jitstate = 0;
328   }
329
330   if (!jitstate && !Modules.empty()) {
331     jitstate = new JITState(Modules[0]);
332     
333     FunctionPassManager &PM = jitstate->getPM(locked);
334     PM.add(new TargetData(*TM.getTargetData()));
335     
336     // Turn the machine code intermediate representation into bytes in memory
337     // that may be executed.
338     if (TM.addPassesToEmitMachineCode(PM, *MCE, false /*fast*/)) {
339       cerr << "Target does not support machine code emission!\n";
340       abort();
341     }
342     
343     // Initialize passes.
344     PM.doInitialization();
345   }    
346 }
347
348 /// run - Start execution with the specified function and arguments.
349 ///
350 GenericValue JIT::runFunction(Function *F,
351                               const std::vector<GenericValue> &ArgValues) {
352   assert(F && "Function *F was null at entry to run()");
353
354   void *FPtr = getPointerToFunction(F);
355   assert(FPtr && "Pointer to fn's code was null after getPointerToFunction");
356   const FunctionType *FTy = F->getFunctionType();
357   const Type *RetTy = FTy->getReturnType();
358
359   assert((FTy->getNumParams() == ArgValues.size() ||
360           (FTy->isVarArg() && FTy->getNumParams() <= ArgValues.size())) &&
361          "Wrong number of arguments passed into function!");
362   assert(FTy->getNumParams() == ArgValues.size() &&
363          "This doesn't support passing arguments through varargs (yet)!");
364
365   // Handle some common cases first.  These cases correspond to common `main'
366   // prototypes.
367   if (RetTy == Type::Int32Ty || RetTy == Type::VoidTy) {
368     switch (ArgValues.size()) {
369     case 3:
370       if (FTy->getParamType(0) == Type::Int32Ty &&
371           isa<PointerType>(FTy->getParamType(1)) &&
372           isa<PointerType>(FTy->getParamType(2))) {
373         int (*PF)(int, char **, const char **) =
374           (int(*)(int, char **, const char **))(intptr_t)FPtr;
375
376         // Call the function.
377         GenericValue rv;
378         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), 
379                                  (char **)GVTOP(ArgValues[1]),
380                                  (const char **)GVTOP(ArgValues[2])));
381         return rv;
382       }
383       break;
384     case 2:
385       if (FTy->getParamType(0) == Type::Int32Ty &&
386           isa<PointerType>(FTy->getParamType(1))) {
387         int (*PF)(int, char **) = (int(*)(int, char **))(intptr_t)FPtr;
388
389         // Call the function.
390         GenericValue rv;
391         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue(), 
392                                  (char **)GVTOP(ArgValues[1])));
393         return rv;
394       }
395       break;
396     case 1:
397       if (FTy->getNumParams() == 1 &&
398           FTy->getParamType(0) == Type::Int32Ty) {
399         GenericValue rv;
400         int (*PF)(int) = (int(*)(int))(intptr_t)FPtr;
401         rv.IntVal = APInt(32, PF(ArgValues[0].IntVal.getZExtValue()));
402         return rv;
403       }
404       break;
405     }
406   }
407
408   // Handle cases where no arguments are passed first.
409   if (ArgValues.empty()) {
410     GenericValue rv;
411     switch (RetTy->getTypeID()) {
412     default: assert(0 && "Unknown return type for function call!");
413     case Type::IntegerTyID: {
414       unsigned BitWidth = cast<IntegerType>(RetTy)->getBitWidth();
415       if (BitWidth == 1)
416         rv.IntVal = APInt(BitWidth, ((bool(*)())(intptr_t)FPtr)());
417       else if (BitWidth <= 8)
418         rv.IntVal = APInt(BitWidth, ((char(*)())(intptr_t)FPtr)());
419       else if (BitWidth <= 16)
420         rv.IntVal = APInt(BitWidth, ((short(*)())(intptr_t)FPtr)());
421       else if (BitWidth <= 32)
422         rv.IntVal = APInt(BitWidth, ((int(*)())(intptr_t)FPtr)());
423       else if (BitWidth <= 64)
424         rv.IntVal = APInt(BitWidth, ((int64_t(*)())(intptr_t)FPtr)());
425       else 
426         assert(0 && "Integer types > 64 bits not supported");
427       return rv;
428     }
429     case Type::VoidTyID:
430       rv.IntVal = APInt(32, ((int(*)())(intptr_t)FPtr)());
431       return rv;
432     case Type::FloatTyID:
433       rv.FloatVal = ((float(*)())(intptr_t)FPtr)();
434       return rv;
435     case Type::DoubleTyID:
436       rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
437       return rv;
438     case Type::X86_FP80TyID:
439     case Type::FP128TyID:
440     case Type::PPC_FP128TyID:
441       assert(0 && "long double not supported yet");
442       return rv;
443     case Type::PointerTyID:
444       return PTOGV(((void*(*)())(intptr_t)FPtr)());
445     }
446   }
447
448   // Okay, this is not one of our quick and easy cases.  Because we don't have a
449   // full FFI, we have to codegen a nullary stub function that just calls the
450   // function we are interested in, passing in constants for all of the
451   // arguments.  Make this function and return.
452
453   // First, create the function.
454   FunctionType *STy=FunctionType::get(RetTy, std::vector<const Type*>(), false);
455   Function *Stub = Function::Create(STy, Function::InternalLinkage, "",
456                                     F->getParent());
457
458   // Insert a basic block.
459   BasicBlock *StubBB = BasicBlock::Create("", Stub);
460
461   // Convert all of the GenericValue arguments over to constants.  Note that we
462   // currently don't support varargs.
463   SmallVector<Value*, 8> Args;
464   for (unsigned i = 0, e = ArgValues.size(); i != e; ++i) {
465     Constant *C = 0;
466     const Type *ArgTy = FTy->getParamType(i);
467     const GenericValue &AV = ArgValues[i];
468     switch (ArgTy->getTypeID()) {
469     default: assert(0 && "Unknown argument type for function call!");
470     case Type::IntegerTyID:
471         C = ConstantInt::get(AV.IntVal);
472         break;
473     case Type::FloatTyID:
474         C = ConstantFP::get(APFloat(AV.FloatVal));
475         break;
476     case Type::DoubleTyID:
477         C = ConstantFP::get(APFloat(AV.DoubleVal));
478         break;
479     case Type::PPC_FP128TyID:
480     case Type::X86_FP80TyID:
481     case Type::FP128TyID:
482         C = ConstantFP::get(APFloat(AV.IntVal));
483         break;
484     case Type::PointerTyID:
485       void *ArgPtr = GVTOP(AV);
486       if (sizeof(void*) == 4)
487         C = ConstantInt::get(Type::Int32Ty, (int)(intptr_t)ArgPtr);
488       else
489         C = ConstantInt::get(Type::Int64Ty, (intptr_t)ArgPtr);
490       C = ConstantExpr::getIntToPtr(C, ArgTy);  // Cast the integer to pointer
491       break;
492     }
493     Args.push_back(C);
494   }
495
496   CallInst *TheCall = CallInst::Create(F, Args.begin(), Args.end(),
497                                        "", StubBB);
498   TheCall->setCallingConv(F->getCallingConv());
499   TheCall->setTailCall();
500   if (TheCall->getType() != Type::VoidTy)
501     ReturnInst::Create(TheCall, StubBB);    // Return result of the call.
502   else
503     ReturnInst::Create(StubBB);             // Just return void.
504
505   // Finally, return the value returned by our nullary stub function.
506   return runFunction(Stub, std::vector<GenericValue>());
507 }
508
509 /// runJITOnFunction - Run the FunctionPassManager full of
510 /// just-in-time compilation passes on F, hopefully filling in
511 /// GlobalAddress[F] with the address of F's machine code.
512 ///
513 void JIT::runJITOnFunction(Function *F) {
514   MutexGuard locked(lock);
515   runJITOnFunctionUnlocked(F, locked);
516 }
517
518 void JIT::runJITOnFunctionUnlocked(Function *F, const MutexGuard &locked) {
519   static bool isAlreadyCodeGenerating = false;
520   assert(!isAlreadyCodeGenerating && "Error: Recursive compilation detected!");
521
522   // JIT the function
523   isAlreadyCodeGenerating = true;
524   jitstate->getPM(locked).run(*F);
525   isAlreadyCodeGenerating = false;
526
527   // If the function referred to another function that had not yet been
528   // read from bitcode, but we are jitting non-lazily, emit it now.
529   while (!jitstate->getPendingFunctions(locked).empty()) {
530     Function *PF = jitstate->getPendingFunctions(locked).back();
531     jitstate->getPendingFunctions(locked).pop_back();
532
533     // JIT the function
534     isAlreadyCodeGenerating = true;
535     jitstate->getPM(locked).run(*PF);
536     isAlreadyCodeGenerating = false;
537     
538     // Now that the function has been jitted, ask the JITEmitter to rewrite
539     // the stub with real address of the function.
540     updateFunctionStub(PF);
541   }
542   
543   // If the JIT is configured to emit info so that dlsym can be used to
544   // rewrite stubs to external globals, do so now.
545   if (areDlsymStubsEnabled() && isLazyCompilationDisabled())
546     updateDlsymStubTable();
547 }
548
549 /// getPointerToFunction - This method is used to get the address of the
550 /// specified function, compiling it if neccesary.
551 ///
552 void *JIT::getPointerToFunction(Function *F) {
553
554   if (void *Addr = getPointerToGlobalIfAvailable(F))
555     return Addr;   // Check if function already code gen'd
556
557   MutexGuard locked(lock);
558
559   // Make sure we read in the function if it exists in this Module.
560   if (F->hasNotBeenReadFromBitcode()) {
561     // Determine the module provider this function is provided by.
562     Module *M = F->getParent();
563     ModuleProvider *MP = 0;
564     for (unsigned i = 0, e = Modules.size(); i != e; ++i) {
565       if (Modules[i]->getModule() == M) {
566         MP = Modules[i];
567         break;
568       }
569     }
570     assert(MP && "Function isn't in a module we know about!");
571     
572     std::string ErrorMsg;
573     if (MP->materializeFunction(F, &ErrorMsg)) {
574       cerr << "Error reading function '" << F->getName()
575            << "' from bitcode file: " << ErrorMsg << "\n";
576       abort();
577     }
578
579     // Now retry to get the address.
580     if (void *Addr = getPointerToGlobalIfAvailable(F))
581       return Addr;
582   }
583
584   if (F->isDeclaration()) {
585     bool AbortOnFailure = F->getLinkage() != GlobalValue::ExternalWeakLinkage;
586     void *Addr = getPointerToNamedFunction(F->getName(), AbortOnFailure);
587     addGlobalMapping(F, Addr);
588     return Addr;
589   }
590
591   runJITOnFunctionUnlocked(F, locked);
592
593   void *Addr = getPointerToGlobalIfAvailable(F);
594   assert(Addr && "Code generation didn't add function to GlobalAddress table!");
595   return Addr;
596 }
597
598 /// getOrEmitGlobalVariable - Return the address of the specified global
599 /// variable, possibly emitting it to memory if needed.  This is used by the
600 /// Emitter.
601 void *JIT::getOrEmitGlobalVariable(const GlobalVariable *GV) {
602   MutexGuard locked(lock);
603
604   void *Ptr = getPointerToGlobalIfAvailable(GV);
605   if (Ptr) return Ptr;
606
607   // If the global is external, just remember the address.
608   if (GV->isDeclaration()) {
609 #if HAVE___DSO_HANDLE
610     if (GV->getName() == "__dso_handle")
611       return (void*)&__dso_handle;
612 #endif
613     Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(GV->getName().c_str());
614     if (Ptr == 0) {
615       cerr << "Could not resolve external global address: "
616            << GV->getName() << "\n";
617       abort();
618     addGlobalMapping(GV, Ptr);
619     }
620   } else {
621     // GlobalVariable's which are not "constant" will cause trouble in a server
622     // situation. It's returned in the same block of memory as code which may
623     // not be writable.
624     if (isGVCompilationDisabled() && !GV->isConstant()) {
625       cerr << "Compilation of non-internal GlobalValue is disabled!\n";
626       abort();
627     }
628     // If the global hasn't been emitted to memory yet, allocate space and
629     // emit it into memory.  It goes in the same array as the generated
630     // code, jump tables, etc.
631     const Type *GlobalType = GV->getType()->getElementType();
632     size_t S = getTargetData()->getTypePaddedSize(GlobalType);
633     size_t A = getTargetData()->getPreferredAlignment(GV);
634     if (GV->isThreadLocal()) {
635       MutexGuard locked(lock);
636       Ptr = TJI.allocateThreadLocalMemory(S);
637     } else if (TJI.allocateSeparateGVMemory()) {
638       if (A <= 8) {
639         Ptr = malloc(S);
640       } else {
641         // Allocate S+A bytes of memory, then use an aligned pointer within that
642         // space.
643         Ptr = malloc(S+A);
644         unsigned MisAligned = ((intptr_t)Ptr & (A-1));
645         Ptr = (char*)Ptr + (MisAligned ? (A-MisAligned) : 0);
646       }
647     } else {
648       Ptr = MCE->allocateSpace(S, A);
649     }
650     addGlobalMapping(GV, Ptr);
651     EmitGlobalVariable(GV);
652   }
653   return Ptr;
654 }
655
656 /// recompileAndRelinkFunction - This method is used to force a function
657 /// which has already been compiled, to be compiled again, possibly
658 /// after it has been modified. Then the entry to the old copy is overwritten
659 /// with a branch to the new copy. If there was no old copy, this acts
660 /// just like JIT::getPointerToFunction().
661 ///
662 void *JIT::recompileAndRelinkFunction(Function *F) {
663   void *OldAddr = getPointerToGlobalIfAvailable(F);
664
665   // If it's not already compiled there is no reason to patch it up.
666   if (OldAddr == 0) { return getPointerToFunction(F); }
667
668   // Delete the old function mapping.
669   addGlobalMapping(F, 0);
670
671   // Recodegen the function
672   runJITOnFunction(F);
673
674   // Update state, forward the old function to the new function.
675   void *Addr = getPointerToGlobalIfAvailable(F);
676   assert(Addr && "Code generation didn't add function to GlobalAddress table!");
677   TJI.replaceMachineCodeForFunction(OldAddr, Addr);
678   return Addr;
679 }
680
681 /// getMemoryForGV - This method abstracts memory allocation of global
682 /// variable so that the JIT can allocate thread local variables depending
683 /// on the target.
684 ///
685 char* JIT::getMemoryForGV(const GlobalVariable* GV) {
686   const Type *ElTy = GV->getType()->getElementType();
687   size_t GVSize = (size_t)getTargetData()->getTypePaddedSize(ElTy);
688   if (GV->isThreadLocal()) {
689     MutexGuard locked(lock);
690     return TJI.allocateThreadLocalMemory(GVSize);
691   } else {
692     return new char[GVSize];
693   }
694 }
695
696 void JIT::addPendingFunction(Function *F) {
697   MutexGuard locked(lock);
698   jitstate->getPendingFunctions(locked).push_back(F);
699 }