Allow more than one stub to be being generated at the same time.
[oota-llvm.git] / lib / ExecutionEngine / JIT / JITEmitter.cpp
1 //===-- JITEmitter.cpp - Write machine code to executable memory ----------===//
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 file defines a MachineCodeEmitter object that is used by the JIT to
11 // write machine code to memory and remember where relocatable values are.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #define DEBUG_TYPE "jit"
16 #include "JIT.h"
17 #include "JITDebugRegisterer.h"
18 #include "JITDwarfEmitter.h"
19 #include "llvm/ADT/OwningPtr.h"
20 #include "llvm/Constants.h"
21 #include "llvm/Module.h"
22 #include "llvm/DerivedTypes.h"
23 #include "llvm/CodeGen/JITCodeEmitter.h"
24 #include "llvm/CodeGen/MachineFunction.h"
25 #include "llvm/CodeGen/MachineConstantPool.h"
26 #include "llvm/CodeGen/MachineJumpTableInfo.h"
27 #include "llvm/CodeGen/MachineModuleInfo.h"
28 #include "llvm/CodeGen/MachineRelocation.h"
29 #include "llvm/ExecutionEngine/GenericValue.h"
30 #include "llvm/ExecutionEngine/JITEventListener.h"
31 #include "llvm/ExecutionEngine/JITMemoryManager.h"
32 #include "llvm/CodeGen/MachineCodeInfo.h"
33 #include "llvm/Target/TargetData.h"
34 #include "llvm/Target/TargetJITInfo.h"
35 #include "llvm/Target/TargetMachine.h"
36 #include "llvm/Target/TargetOptions.h"
37 #include "llvm/Support/Debug.h"
38 #include "llvm/Support/ErrorHandling.h"
39 #include "llvm/Support/MutexGuard.h"
40 #include "llvm/Support/ValueHandle.h"
41 #include "llvm/Support/raw_ostream.h"
42 #include "llvm/System/Disassembler.h"
43 #include "llvm/System/Memory.h"
44 #include "llvm/Target/TargetInstrInfo.h"
45 #include "llvm/ADT/DenseMap.h"
46 #include "llvm/ADT/SmallPtrSet.h"
47 #include "llvm/ADT/SmallVector.h"
48 #include "llvm/ADT/Statistic.h"
49 #include "llvm/ADT/ValueMap.h"
50 #include <algorithm>
51 #ifndef NDEBUG
52 #include <iomanip>
53 #endif
54 using namespace llvm;
55
56 STATISTIC(NumBytes, "Number of bytes of machine code compiled");
57 STATISTIC(NumRelos, "Number of relocations applied");
58 STATISTIC(NumRetries, "Number of retries with more memory");
59 static JIT *TheJIT = 0;
60
61
62 //===----------------------------------------------------------------------===//
63 // JIT lazy compilation code.
64 //
65 namespace {
66   class JITEmitter;
67   class JITResolverState;
68
69   template<typename ValueTy>
70   struct NoRAUWValueMapConfig : public ValueMapConfig<ValueTy> {
71     typedef JITResolverState *ExtraData;
72     static void onRAUW(JITResolverState *, Value *Old, Value *New) {
73       assert(false && "The JIT doesn't know how to handle a"
74              " RAUW on a value it has emitted.");
75     }
76   };
77
78   struct CallSiteValueMapConfig : public NoRAUWValueMapConfig<Function*> {
79     typedef JITResolverState *ExtraData;
80     static void onDelete(JITResolverState *JRS, Function *F);
81   };
82
83   class JITResolverState {
84   public:
85     typedef ValueMap<Function*, void*, NoRAUWValueMapConfig<Function*> >
86       FunctionToStubMapTy;
87     typedef std::map<void*, AssertingVH<Function> > CallSiteToFunctionMapTy;
88     typedef ValueMap<Function *, SmallPtrSet<void*, 1>,
89                      CallSiteValueMapConfig> FunctionToCallSitesMapTy;
90     typedef std::map<AssertingVH<GlobalValue>, void*> GlobalToIndirectSymMapTy;
91   private:
92     /// FunctionToStubMap - Keep track of the stub created for a particular
93     /// function so that we can reuse them if necessary.
94     FunctionToStubMapTy FunctionToStubMap;
95
96     /// CallSiteToFunctionMap - Keep track of the function that each lazy call
97     /// site corresponds to, and vice versa.
98     CallSiteToFunctionMapTy CallSiteToFunctionMap;
99     FunctionToCallSitesMapTy FunctionToCallSitesMap;
100
101     /// GlobalToIndirectSymMap - Keep track of the indirect symbol created for a
102     /// particular GlobalVariable so that we can reuse them if necessary.
103     GlobalToIndirectSymMapTy GlobalToIndirectSymMap;
104
105   public:
106     JITResolverState() : FunctionToStubMap(this),
107                          FunctionToCallSitesMap(this) {}
108
109     FunctionToStubMapTy& getFunctionToStubMap(const MutexGuard& locked) {
110       assert(locked.holds(TheJIT->lock));
111       return FunctionToStubMap;
112     }
113
114     GlobalToIndirectSymMapTy& getGlobalToIndirectSymMap(const MutexGuard& locked) {
115       assert(locked.holds(TheJIT->lock));
116       return GlobalToIndirectSymMap;
117     }
118
119     pair<void *, Function *> LookupFunctionFromCallSite(
120         const MutexGuard &locked, void *CallSite) const {
121       assert(locked.holds(TheJIT->lock));
122
123       // The address given to us for the stub may not be exactly right, it might be
124       // a little bit after the stub.  As such, use upper_bound to find it.
125       CallSiteToFunctionMapTy::const_iterator I =
126         CallSiteToFunctionMap.upper_bound(CallSite);
127       assert(I != CallSiteToFunctionMap.begin() &&
128              "This is not a known call site!");
129       --I;
130       return *I;
131     }
132
133     void AddCallSite(const MutexGuard &locked, void *CallSite, Function *F) {
134       assert(locked.holds(TheJIT->lock));
135
136       bool Inserted = CallSiteToFunctionMap.insert(
137           std::make_pair(CallSite, F)).second;
138       (void)Inserted;
139       assert(Inserted && "Pair was already in CallSiteToFunctionMap");
140       FunctionToCallSitesMap[F].insert(CallSite);
141     }
142
143     // Returns the Function of the stub if a stub was erased, or NULL if there
144     // was no stub.  This function uses the call-site->function map to find a
145     // relevant function, but asserts that only stubs and not other call sites
146     // will be passed in.
147     Function *EraseStub(const MutexGuard &locked, void *Stub) {
148       CallSiteToFunctionMapTy::iterator C2F_I =
149         CallSiteToFunctionMap.find(Stub);
150       if (C2F_I == CallSiteToFunctionMap.end()) {
151         // Not a stub.
152         return NULL;
153       }
154
155       Function *const F = C2F_I->second;
156 #ifndef NDEBUG
157       void *RealStub = FunctionToStubMap.lookup(F);
158       assert(RealStub == Stub &&
159              "Call-site that wasn't a stub pass in to EraseStub");
160 #endif
161       FunctionToStubMap.erase(F);
162       CallSiteToFunctionMap.erase(C2F_I);
163
164       // Remove the stub from the function->call-sites map, and remove the whole
165       // entry from the map if that was the last call site.
166       FunctionToCallSitesMapTy::iterator F2C_I = FunctionToCallSitesMap.find(F);
167       assert(F2C_I != FunctionToCallSitesMap.end() &&
168              "FunctionToCallSitesMap broken");
169       bool Erased = F2C_I->second.erase(Stub);
170       (void)Erased;
171       assert(Erased && "FunctionToCallSitesMap broken");
172       if (F2C_I->second.empty())
173         FunctionToCallSitesMap.erase(F2C_I);
174
175       return F;
176     }
177
178     void EraseAllCallSites(const MutexGuard &locked, Function *F) {
179       assert(locked.holds(TheJIT->lock));
180       EraseAllCallSitesPrelocked(F);
181     }
182     void EraseAllCallSitesPrelocked(Function *F) {
183       FunctionToCallSitesMapTy::iterator F2C = FunctionToCallSitesMap.find(F);
184       if (F2C == FunctionToCallSitesMap.end())
185         return;
186       for (SmallPtrSet<void*, 1>::const_iterator I = F2C->second.begin(),
187              E = F2C->second.end(); I != E; ++I) {
188         bool Erased = CallSiteToFunctionMap.erase(*I);
189         (void)Erased;
190         assert(Erased && "Missing call site->function mapping");
191       }
192       FunctionToCallSitesMap.erase(F2C);
193     }
194   };
195
196   /// JITResolver - Keep track of, and resolve, call sites for functions that
197   /// have not yet been compiled.
198   class JITResolver {
199     typedef JITResolverState::FunctionToStubMapTy FunctionToStubMapTy;
200     typedef JITResolverState::CallSiteToFunctionMapTy CallSiteToFunctionMapTy;
201     typedef JITResolverState::GlobalToIndirectSymMapTy GlobalToIndirectSymMapTy;
202
203     /// LazyResolverFn - The target lazy resolver function that we actually
204     /// rewrite instructions to use.
205     TargetJITInfo::LazyResolverFn LazyResolverFn;
206
207     JITResolverState state;
208
209     /// ExternalFnToStubMap - This is the equivalent of FunctionToStubMap for
210     /// external functions.
211     std::map<void*, void*> ExternalFnToStubMap;
212
213     /// revGOTMap - map addresses to indexes in the GOT
214     std::map<void*, unsigned> revGOTMap;
215     unsigned nextGOTIndex;
216
217     JITEmitter &JE;
218
219     static JITResolver *TheJITResolver;
220   public:
221     explicit JITResolver(JIT &jit, JITEmitter &je) : nextGOTIndex(0), JE(je) {
222       TheJIT = &jit;
223
224       LazyResolverFn = jit.getJITInfo().getLazyResolverFunction(JITCompilerFn);
225       assert(TheJITResolver == 0 && "Multiple JIT resolvers?");
226       TheJITResolver = this;
227     }
228
229     ~JITResolver() {
230       TheJITResolver = 0;
231     }
232
233     /// getFunctionStubIfAvailable - This returns a pointer to a function stub
234     /// if it has already been created.
235     void *getFunctionStubIfAvailable(Function *F);
236
237     /// getFunctionStub - This returns a pointer to a function stub, creating
238     /// one on demand as needed.  If empty is true, create a function stub
239     /// pointing at address 0, to be filled in later.
240     void *getFunctionStub(Function *F);
241
242     /// getExternalFunctionStub - Return a stub for the function at the
243     /// specified address, created lazily on demand.
244     void *getExternalFunctionStub(void *FnAddr);
245
246     /// getGlobalValueIndirectSym - Return an indirect symbol containing the
247     /// specified GV address.
248     void *getGlobalValueIndirectSym(GlobalValue *V, void *GVAddress);
249
250     void getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
251                            SmallVectorImpl<void*> &Ptrs);
252
253     GlobalValue *invalidateStub(void *Stub);
254
255     /// getGOTIndexForAddress - Return a new or existing index in the GOT for
256     /// an address.  This function only manages slots, it does not manage the
257     /// contents of the slots or the memory associated with the GOT.
258     unsigned getGOTIndexForAddr(void *addr);
259
260     /// JITCompilerFn - This function is called to resolve a stub to a compiled
261     /// address.  If the LLVM Function corresponding to the stub has not yet
262     /// been compiled, this function compiles it first.
263     static void *JITCompilerFn(void *Stub);
264   };
265
266   /// JITEmitter - The JIT implementation of the MachineCodeEmitter, which is
267   /// used to output functions to memory for execution.
268   class JITEmitter : public JITCodeEmitter {
269     JITMemoryManager *MemMgr;
270
271     // When reattempting to JIT a function after running out of space, we store
272     // the estimated size of the function we're trying to JIT here, so we can
273     // ask the memory manager for at least this much space.  When we
274     // successfully emit the function, we reset this back to zero.
275     uintptr_t SizeEstimate;
276
277     /// Relocations - These are the relocations that the function needs, as
278     /// emitted.
279     std::vector<MachineRelocation> Relocations;
280
281     /// MBBLocations - This vector is a mapping from MBB ID's to their address.
282     /// It is filled in by the StartMachineBasicBlock callback and queried by
283     /// the getMachineBasicBlockAddress callback.
284     std::vector<uintptr_t> MBBLocations;
285
286     /// ConstantPool - The constant pool for the current function.
287     ///
288     MachineConstantPool *ConstantPool;
289
290     /// ConstantPoolBase - A pointer to the first entry in the constant pool.
291     ///
292     void *ConstantPoolBase;
293
294     /// ConstPoolAddresses - Addresses of individual constant pool entries.
295     ///
296     SmallVector<uintptr_t, 8> ConstPoolAddresses;
297
298     /// JumpTable - The jump tables for the current function.
299     ///
300     MachineJumpTableInfo *JumpTable;
301
302     /// JumpTableBase - A pointer to the first entry in the jump table.
303     ///
304     void *JumpTableBase;
305
306     /// Resolver - This contains info about the currently resolved functions.
307     JITResolver Resolver;
308
309     /// DE - The dwarf emitter for the jit.
310     OwningPtr<JITDwarfEmitter> DE;
311
312     /// DR - The debug registerer for the jit.
313     OwningPtr<JITDebugRegisterer> DR;
314
315     /// LabelLocations - This vector is a mapping from Label ID's to their
316     /// address.
317     std::vector<uintptr_t> LabelLocations;
318
319     /// MMI - Machine module info for exception informations
320     MachineModuleInfo* MMI;
321
322     // GVSet - a set to keep track of which globals have been seen
323     SmallPtrSet<const GlobalVariable*, 8> GVSet;
324
325     // CurFn - The llvm function being emitted.  Only valid during
326     // finishFunction().
327     const Function *CurFn;
328
329     /// Information about emitted code, which is passed to the
330     /// JITEventListeners.  This is reset in startFunction and used in
331     /// finishFunction.
332     JITEvent_EmittedFunctionDetails EmissionDetails;
333
334     struct EmittedCode {
335       void *FunctionBody;  // Beginning of the function's allocation.
336       void *Code;  // The address the function's code actually starts at.
337       void *ExceptionTable;
338       EmittedCode() : FunctionBody(0), Code(0), ExceptionTable(0) {}
339     };
340     struct EmittedFunctionConfig : public ValueMapConfig<const Function*> {
341       typedef JITEmitter *ExtraData;
342       static void onDelete(JITEmitter *, const Function*);
343       static void onRAUW(JITEmitter *, const Function*, const Function*);
344     };
345     ValueMap<const Function *, EmittedCode,
346              EmittedFunctionConfig> EmittedFunctions;
347
348     // CurFnStubUses - For a given Function, a vector of stubs that it
349     // references.  This facilitates the JIT detecting that a stub is no
350     // longer used, so that it may be deallocated.
351     DenseMap<AssertingVH<const Function>, SmallVector<void*, 1> > CurFnStubUses;
352
353     // StubFnRefs - For a given pointer to a stub, a set of Functions which
354     // reference the stub.  When the count of a stub's references drops to zero,
355     // the stub is unused.
356     DenseMap<void *, SmallPtrSet<const Function*, 1> > StubFnRefs;
357
358     DebugLocTuple PrevDLT;
359
360   public:
361     JITEmitter(JIT &jit, JITMemoryManager *JMM, TargetMachine &TM)
362       : SizeEstimate(0), Resolver(jit, *this), MMI(0), CurFn(0),
363           EmittedFunctions(this) {
364       MemMgr = JMM ? JMM : JITMemoryManager::CreateDefaultMemManager();
365       if (jit.getJITInfo().needsGOT()) {
366         MemMgr->AllocateGOT();
367         DEBUG(errs() << "JIT is managing a GOT\n");
368       }
369
370       if (DwarfExceptionHandling || JITEmitDebugInfo) {
371         DE.reset(new JITDwarfEmitter(jit));
372       }
373       if (JITEmitDebugInfo) {
374         DR.reset(new JITDebugRegisterer(TM));
375       }
376     }
377     ~JITEmitter() {
378       delete MemMgr;
379     }
380
381     /// classof - Methods for support type inquiry through isa, cast, and
382     /// dyn_cast:
383     ///
384     static inline bool classof(const JITEmitter*) { return true; }
385     static inline bool classof(const MachineCodeEmitter*) { return true; }
386
387     JITResolver &getJITResolver() { return Resolver; }
388
389     virtual void startFunction(MachineFunction &F);
390     virtual bool finishFunction(MachineFunction &F);
391
392     void emitConstantPool(MachineConstantPool *MCP);
393     void initJumpTableInfo(MachineJumpTableInfo *MJTI);
394     void emitJumpTableInfo(MachineJumpTableInfo *MJTI);
395
396     virtual void startGVStub(BufferState &BS, const GlobalValue* GV,
397                              unsigned StubSize, unsigned Alignment = 1);
398     virtual void startGVStub(BufferState &BS, void *Buffer,
399                              unsigned StubSize);
400     virtual void* finishGVStub(BufferState &BS);
401
402     /// allocateSpace - Reserves space in the current block if any, or
403     /// allocate a new one of the given size.
404     virtual void *allocateSpace(uintptr_t Size, unsigned Alignment);
405
406     /// allocateGlobal - Allocate memory for a global.  Unlike allocateSpace,
407     /// this method does not allocate memory in the current output buffer,
408     /// because a global may live longer than the current function.
409     virtual void *allocateGlobal(uintptr_t Size, unsigned Alignment);
410
411     virtual void addRelocation(const MachineRelocation &MR) {
412       Relocations.push_back(MR);
413     }
414
415     virtual void StartMachineBasicBlock(MachineBasicBlock *MBB) {
416       if (MBBLocations.size() <= (unsigned)MBB->getNumber())
417         MBBLocations.resize((MBB->getNumber()+1)*2);
418       MBBLocations[MBB->getNumber()] = getCurrentPCValue();
419       DEBUG(errs() << "JIT: Emitting BB" << MBB->getNumber() << " at ["
420                    << (void*) getCurrentPCValue() << "]\n");
421     }
422
423     virtual uintptr_t getConstantPoolEntryAddress(unsigned Entry) const;
424     virtual uintptr_t getJumpTableEntryAddress(unsigned Entry) const;
425
426     virtual uintptr_t getMachineBasicBlockAddress(MachineBasicBlock *MBB) const {
427       assert(MBBLocations.size() > (unsigned)MBB->getNumber() &&
428              MBBLocations[MBB->getNumber()] && "MBB not emitted!");
429       return MBBLocations[MBB->getNumber()];
430     }
431
432     /// retryWithMoreMemory - Log a retry and deallocate all memory for the
433     /// given function.  Increase the minimum allocation size so that we get
434     /// more memory next time.
435     void retryWithMoreMemory(MachineFunction &F);
436
437     /// deallocateMemForFunction - Deallocate all memory for the specified
438     /// function body.
439     void deallocateMemForFunction(const Function *F);
440
441     /// AddStubToCurrentFunction - Mark the current function being JIT'd as
442     /// using the stub at the specified address. Allows
443     /// deallocateMemForFunction to also remove stubs no longer referenced.
444     void AddStubToCurrentFunction(void *Stub);
445
446     virtual void processDebugLoc(DebugLoc DL, bool BeforePrintingInsn);
447
448     virtual void emitLabel(uint64_t LabelID) {
449       if (LabelLocations.size() <= LabelID)
450         LabelLocations.resize((LabelID+1)*2);
451       LabelLocations[LabelID] = getCurrentPCValue();
452     }
453
454     virtual uintptr_t getLabelAddress(uint64_t LabelID) const {
455       assert(LabelLocations.size() > (unsigned)LabelID &&
456              LabelLocations[LabelID] && "Label not emitted!");
457       return LabelLocations[LabelID];
458     }
459
460     virtual void setModuleInfo(MachineModuleInfo* Info) {
461       MMI = Info;
462       if (DE.get()) DE->setModuleInfo(Info);
463     }
464
465     void setMemoryExecutable() {
466       MemMgr->setMemoryExecutable();
467     }
468
469     JITMemoryManager *getMemMgr() const { return MemMgr; }
470
471   private:
472     void *getPointerToGlobal(GlobalValue *GV, void *Reference,
473                              bool MayNeedFarStub);
474     void *getPointerToGVIndirectSym(GlobalValue *V, void *Reference);
475     unsigned addSizeOfGlobal(const GlobalVariable *GV, unsigned Size);
476     unsigned addSizeOfGlobalsInConstantVal(const Constant *C, unsigned Size);
477     unsigned addSizeOfGlobalsInInitializer(const Constant *Init, unsigned Size);
478     unsigned GetSizeOfGlobalsInBytes(MachineFunction &MF);
479   };
480 }
481
482 JITResolver *JITResolver::TheJITResolver = 0;
483
484 void CallSiteValueMapConfig::onDelete(JITResolverState *JRS, Function *F) {
485   JRS->EraseAllCallSitesPrelocked(F);
486 }
487
488 /// getFunctionStubIfAvailable - This returns a pointer to a function stub
489 /// if it has already been created.
490 void *JITResolver::getFunctionStubIfAvailable(Function *F) {
491   MutexGuard locked(TheJIT->lock);
492
493   // If we already have a stub for this function, recycle it.
494   return state.getFunctionToStubMap(locked).lookup(F);
495 }
496
497 /// getFunctionStub - This returns a pointer to a function stub, creating
498 /// one on demand as needed.
499 void *JITResolver::getFunctionStub(Function *F) {
500   MutexGuard locked(TheJIT->lock);
501
502   // If we already have a stub for this function, recycle it.
503   void *&Stub = state.getFunctionToStubMap(locked)[F];
504   if (Stub) return Stub;
505
506   // Call the lazy resolver function if we are JIT'ing lazily.  Otherwise we
507   // must resolve the symbol now.
508   void *Actual = TheJIT->isCompilingLazily()
509     ? (void *)(intptr_t)LazyResolverFn : (void *)0;
510
511   // If this is an external declaration, attempt to resolve the address now
512   // to place in the stub.
513   if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode()) {
514     Actual = TheJIT->getPointerToFunction(F);
515
516     // If we resolved the symbol to a null address (eg. a weak external)
517     // don't emit a stub. Return a null pointer to the application.
518     if (!Actual) return 0;
519   }
520
521   // Codegen a new stub, calling the lazy resolver or the actual address of the
522   // external function, if it was resolved.
523   Stub = TheJIT->getJITInfo().emitFunctionStub(F, Actual, JE);
524
525   if (Actual != (void*)(intptr_t)LazyResolverFn) {
526     // If we are getting the stub for an external function, we really want the
527     // address of the stub in the GlobalAddressMap for the JIT, not the address
528     // of the external function.
529     TheJIT->updateGlobalMapping(F, Stub);
530   }
531
532   DEBUG(errs() << "JIT: Stub emitted at [" << Stub << "] for function '"
533         << F->getName() << "'\n");
534
535   // Finally, keep track of the stub-to-Function mapping so that the
536   // JITCompilerFn knows which function to compile!
537   state.AddCallSite(locked, Stub, F);
538
539   // If we are JIT'ing non-lazily but need to call a function that does not
540   // exist yet, add it to the JIT's work list so that we can fill in the stub
541   // address later.
542   if (!Actual && !TheJIT->isCompilingLazily())
543     if (!F->isDeclaration() || F->hasNotBeenReadFromBitcode())
544       TheJIT->addPendingFunction(F);
545
546   return Stub;
547 }
548
549 /// getGlobalValueIndirectSym - Return a lazy pointer containing the specified
550 /// GV address.
551 void *JITResolver::getGlobalValueIndirectSym(GlobalValue *GV, void *GVAddress) {
552   MutexGuard locked(TheJIT->lock);
553
554   // If we already have a stub for this global variable, recycle it.
555   void *&IndirectSym = state.getGlobalToIndirectSymMap(locked)[GV];
556   if (IndirectSym) return IndirectSym;
557
558   // Otherwise, codegen a new indirect symbol.
559   IndirectSym = TheJIT->getJITInfo().emitGlobalValueIndirectSym(GV, GVAddress,
560                                                                 JE);
561
562   DEBUG(errs() << "JIT: Indirect symbol emitted at [" << IndirectSym
563         << "] for GV '" << GV->getName() << "'\n");
564
565   return IndirectSym;
566 }
567
568 /// getExternalFunctionStub - Return a stub for the function at the
569 /// specified address, created lazily on demand.
570 void *JITResolver::getExternalFunctionStub(void *FnAddr) {
571   // If we already have a stub for this function, recycle it.
572   void *&Stub = ExternalFnToStubMap[FnAddr];
573   if (Stub) return Stub;
574
575   Stub = TheJIT->getJITInfo().emitFunctionStub(0, FnAddr, JE);
576
577   DEBUG(errs() << "JIT: Stub emitted at [" << Stub
578                << "] for external function at '" << FnAddr << "'\n");
579   return Stub;
580 }
581
582 unsigned JITResolver::getGOTIndexForAddr(void* addr) {
583   unsigned idx = revGOTMap[addr];
584   if (!idx) {
585     idx = ++nextGOTIndex;
586     revGOTMap[addr] = idx;
587     DEBUG(errs() << "JIT: Adding GOT entry " << idx << " for addr ["
588                  << addr << "]\n");
589   }
590   return idx;
591 }
592
593 void JITResolver::getRelocatableGVs(SmallVectorImpl<GlobalValue*> &GVs,
594                                     SmallVectorImpl<void*> &Ptrs) {
595   MutexGuard locked(TheJIT->lock);
596
597   const FunctionToStubMapTy &FM = state.getFunctionToStubMap(locked);
598   GlobalToIndirectSymMapTy &GM = state.getGlobalToIndirectSymMap(locked);
599
600   for (FunctionToStubMapTy::const_iterator i = FM.begin(), e = FM.end();
601        i != e; ++i){
602     Function *F = i->first;
603     if (F->isDeclaration() && F->hasExternalLinkage()) {
604       GVs.push_back(i->first);
605       Ptrs.push_back(i->second);
606     }
607   }
608   for (GlobalToIndirectSymMapTy::iterator i = GM.begin(), e = GM.end();
609        i != e; ++i) {
610     GVs.push_back(i->first);
611     Ptrs.push_back(i->second);
612   }
613 }
614
615 GlobalValue *JITResolver::invalidateStub(void *Stub) {
616   MutexGuard locked(TheJIT->lock);
617
618   GlobalToIndirectSymMapTy &GM = state.getGlobalToIndirectSymMap(locked);
619
620   // Look up the cheap way first, to see if it's a function stub we are
621   // invalidating.  If so, remove it from both the forward and reverse maps.
622   if (Function *F = state.EraseStub(locked, Stub)) {
623     return F;
624   }
625
626   // Otherwise, it might be an indirect symbol stub.  Find it and remove it.
627   for (GlobalToIndirectSymMapTy::iterator i = GM.begin(), e = GM.end();
628        i != e; ++i) {
629     if (i->second != Stub)
630       continue;
631     GlobalValue *GV = i->first;
632     GM.erase(i);
633     return GV;
634   }
635
636   // Lastly, check to see if it's in the ExternalFnToStubMap.
637   for (std::map<void *, void *>::iterator i = ExternalFnToStubMap.begin(),
638        e = ExternalFnToStubMap.end(); i != e; ++i) {
639     if (i->second != Stub)
640       continue;
641     ExternalFnToStubMap.erase(i);
642     break;
643   }
644
645   return 0;
646 }
647
648 /// JITCompilerFn - This function is called when a lazy compilation stub has
649 /// been entered.  It looks up which function this stub corresponds to, compiles
650 /// it if necessary, then returns the resultant function pointer.
651 void *JITResolver::JITCompilerFn(void *Stub) {
652   JITResolver &JR = *TheJITResolver;
653
654   Function* F = 0;
655   void* ActualPtr = 0;
656
657   {
658     // Only lock for getting the Function. The call getPointerToFunction made
659     // in this function might trigger function materializing, which requires
660     // JIT lock to be unlocked.
661     MutexGuard locked(TheJIT->lock);
662
663     // The address given to us for the stub may not be exactly right, it might
664     // be a little bit after the stub.  As such, use upper_bound to find it.
665     pair<void*, Function*> I =
666       JR.state.LookupFunctionFromCallSite(locked, Stub);
667     F = I.second;
668     ActualPtr = I.first;
669   }
670
671   // If we have already code generated the function, just return the address.
672   void *Result = TheJIT->getPointerToGlobalIfAvailable(F);
673
674   if (!Result) {
675     // Otherwise we don't have it, do lazy compilation now.
676
677     // If lazy compilation is disabled, emit a useful error message and abort.
678     if (!TheJIT->isCompilingLazily()) {
679       llvm_report_error("LLVM JIT requested to do lazy compilation of function '"
680                         + F->getName() + "' when lazy compiles are disabled!");
681     }
682
683     DEBUG(errs() << "JIT: Lazily resolving function '" << F->getName()
684           << "' In stub ptr = " << Stub << " actual ptr = "
685           << ActualPtr << "\n");
686
687     Result = TheJIT->getPointerToFunction(F);
688   }
689
690   // Reacquire the lock to update the GOT map.
691   MutexGuard locked(TheJIT->lock);
692
693   // We might like to remove the call site from the CallSiteToFunction map, but
694   // we can't do that! Multiple threads could be stuck, waiting to acquire the
695   // lock above. As soon as the 1st function finishes compiling the function,
696   // the next one will be released, and needs to be able to find the function it
697   // needs to call.
698
699   // FIXME: We could rewrite all references to this stub if we knew them.
700
701   // What we will do is set the compiled function address to map to the
702   // same GOT entry as the stub so that later clients may update the GOT
703   // if they see it still using the stub address.
704   // Note: this is done so the Resolver doesn't have to manage GOT memory
705   // Do this without allocating map space if the target isn't using a GOT
706   if(JR.revGOTMap.find(Stub) != JR.revGOTMap.end())
707     JR.revGOTMap[Result] = JR.revGOTMap[Stub];
708
709   return Result;
710 }
711
712 //===----------------------------------------------------------------------===//
713 // JITEmitter code.
714 //
715 void *JITEmitter::getPointerToGlobal(GlobalValue *V, void *Reference,
716                                      bool MayNeedFarStub) {
717   if (GlobalVariable *GV = dyn_cast<GlobalVariable>(V))
718     return TheJIT->getOrEmitGlobalVariable(GV);
719
720   if (GlobalAlias *GA = dyn_cast<GlobalAlias>(V))
721     return TheJIT->getPointerToGlobal(GA->resolveAliasedGlobal(false));
722
723   // If we have already compiled the function, return a pointer to its body.
724   Function *F = cast<Function>(V);
725
726   void *FnStub = Resolver.getFunctionStubIfAvailable(F);
727   if (FnStub) {
728     // Return the function stub if it's already created.  We do this first
729     // so that we're returning the same address for the function as any
730     // previous call.
731     AddStubToCurrentFunction(FnStub);
732     return FnStub;
733   }
734
735   // If we know the target can handle arbitrary-distance calls, try to
736   // return a direct pointer.
737   if (!MayNeedFarStub) {
738     // If we have code, go ahead and return that.
739     void *ResultPtr = TheJIT->getPointerToGlobalIfAvailable(F);
740     if (ResultPtr) return ResultPtr;
741
742     // If this is an external function pointer, we can force the JIT to
743     // 'compile' it, which really just adds it to the map.
744     if (F->isDeclaration() && !F->hasNotBeenReadFromBitcode())
745       return TheJIT->getPointerToFunction(F);
746   }
747
748   // Otherwise, we may need a to emit a stub, and, conservatively, we
749   // always do so.
750   void *StubAddr = Resolver.getFunctionStub(F);
751
752   // Add the stub to the current function's list of referenced stubs, so we can
753   // deallocate them if the current function is ever freed.  It's possible to
754   // return null from getFunctionStub in the case of a weak extern that fails
755   // to resolve.
756   if (StubAddr)
757     AddStubToCurrentFunction(StubAddr);
758
759   return StubAddr;
760 }
761
762 void *JITEmitter::getPointerToGVIndirectSym(GlobalValue *V, void *Reference) {
763   // Make sure GV is emitted first, and create a stub containing the fully
764   // resolved address.
765   void *GVAddress = getPointerToGlobal(V, Reference, false);
766   void *StubAddr = Resolver.getGlobalValueIndirectSym(V, GVAddress);
767
768   // Add the stub to the current function's list of referenced stubs, so we can
769   // deallocate them if the current function is ever freed.
770   AddStubToCurrentFunction(StubAddr);
771
772   return StubAddr;
773 }
774
775 void JITEmitter::AddStubToCurrentFunction(void *StubAddr) {
776   assert(CurFn && "Stub added to current function, but current function is 0!");
777
778   SmallVectorImpl<void*> &StubsUsed = CurFnStubUses[CurFn];
779   StubsUsed.push_back(StubAddr);
780
781   SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[StubAddr];
782   FnRefs.insert(CurFn);
783 }
784
785 void JITEmitter::processDebugLoc(DebugLoc DL, bool BeforePrintingInsn) {
786   if (!DL.isUnknown()) {
787     DebugLocTuple CurDLT = EmissionDetails.MF->getDebugLocTuple(DL);
788
789     if (BeforePrintingInsn) {
790       if (CurDLT.Scope != 0 && PrevDLT != CurDLT) {
791         JITEvent_EmittedFunctionDetails::LineStart NextLine;
792         NextLine.Address = getCurrentPCValue();
793         NextLine.Loc = DL;
794         EmissionDetails.LineStarts.push_back(NextLine);
795       }
796
797       PrevDLT = CurDLT;
798     }
799   }
800 }
801
802 static unsigned GetConstantPoolSizeInBytes(MachineConstantPool *MCP,
803                                            const TargetData *TD) {
804   const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
805   if (Constants.empty()) return 0;
806
807   unsigned Size = 0;
808   for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
809     MachineConstantPoolEntry CPE = Constants[i];
810     unsigned AlignMask = CPE.getAlignment() - 1;
811     Size = (Size + AlignMask) & ~AlignMask;
812     const Type *Ty = CPE.getType();
813     Size += TD->getTypeAllocSize(Ty);
814   }
815   return Size;
816 }
817
818 static unsigned GetJumpTableSizeInBytes(MachineJumpTableInfo *MJTI) {
819   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
820   if (JT.empty()) return 0;
821
822   unsigned NumEntries = 0;
823   for (unsigned i = 0, e = JT.size(); i != e; ++i)
824     NumEntries += JT[i].MBBs.size();
825
826   unsigned EntrySize = MJTI->getEntrySize();
827
828   return NumEntries * EntrySize;
829 }
830
831 static uintptr_t RoundUpToAlign(uintptr_t Size, unsigned Alignment) {
832   if (Alignment == 0) Alignment = 1;
833   // Since we do not know where the buffer will be allocated, be pessimistic.
834   return Size + Alignment;
835 }
836
837 /// addSizeOfGlobal - add the size of the global (plus any alignment padding)
838 /// into the running total Size.
839
840 unsigned JITEmitter::addSizeOfGlobal(const GlobalVariable *GV, unsigned Size) {
841   const Type *ElTy = GV->getType()->getElementType();
842   size_t GVSize = (size_t)TheJIT->getTargetData()->getTypeAllocSize(ElTy);
843   size_t GVAlign =
844       (size_t)TheJIT->getTargetData()->getPreferredAlignment(GV);
845   DEBUG(errs() << "JIT: Adding in size " << GVSize << " alignment " << GVAlign);
846   DEBUG(GV->dump());
847   // Assume code section ends with worst possible alignment, so first
848   // variable needs maximal padding.
849   if (Size==0)
850     Size = 1;
851   Size = ((Size+GVAlign-1)/GVAlign)*GVAlign;
852   Size += GVSize;
853   return Size;
854 }
855
856 /// addSizeOfGlobalsInConstantVal - find any globals that we haven't seen yet
857 /// but are referenced from the constant; put them in GVSet and add their
858 /// size into the running total Size.
859
860 unsigned JITEmitter::addSizeOfGlobalsInConstantVal(const Constant *C,
861                                               unsigned Size) {
862   // If its undefined, return the garbage.
863   if (isa<UndefValue>(C))
864     return Size;
865
866   // If the value is a ConstantExpr
867   if (const ConstantExpr *CE = dyn_cast<ConstantExpr>(C)) {
868     Constant *Op0 = CE->getOperand(0);
869     switch (CE->getOpcode()) {
870     case Instruction::GetElementPtr:
871     case Instruction::Trunc:
872     case Instruction::ZExt:
873     case Instruction::SExt:
874     case Instruction::FPTrunc:
875     case Instruction::FPExt:
876     case Instruction::UIToFP:
877     case Instruction::SIToFP:
878     case Instruction::FPToUI:
879     case Instruction::FPToSI:
880     case Instruction::PtrToInt:
881     case Instruction::IntToPtr:
882     case Instruction::BitCast: {
883       Size = addSizeOfGlobalsInConstantVal(Op0, Size);
884       break;
885     }
886     case Instruction::Add:
887     case Instruction::FAdd:
888     case Instruction::Sub:
889     case Instruction::FSub:
890     case Instruction::Mul:
891     case Instruction::FMul:
892     case Instruction::UDiv:
893     case Instruction::SDiv:
894     case Instruction::URem:
895     case Instruction::SRem:
896     case Instruction::And:
897     case Instruction::Or:
898     case Instruction::Xor: {
899       Size = addSizeOfGlobalsInConstantVal(Op0, Size);
900       Size = addSizeOfGlobalsInConstantVal(CE->getOperand(1), Size);
901       break;
902     }
903     default: {
904        std::string msg;
905        raw_string_ostream Msg(msg);
906        Msg << "ConstantExpr not handled: " << *CE;
907        llvm_report_error(Msg.str());
908     }
909     }
910   }
911
912   if (C->getType()->getTypeID() == Type::PointerTyID)
913     if (const GlobalVariable* GV = dyn_cast<GlobalVariable>(C))
914       if (GVSet.insert(GV))
915         Size = addSizeOfGlobal(GV, Size);
916
917   return Size;
918 }
919
920 /// addSizeOfGLobalsInInitializer - handle any globals that we haven't seen yet
921 /// but are referenced from the given initializer.
922
923 unsigned JITEmitter::addSizeOfGlobalsInInitializer(const Constant *Init,
924                                               unsigned Size) {
925   if (!isa<UndefValue>(Init) &&
926       !isa<ConstantVector>(Init) &&
927       !isa<ConstantAggregateZero>(Init) &&
928       !isa<ConstantArray>(Init) &&
929       !isa<ConstantStruct>(Init) &&
930       Init->getType()->isFirstClassType())
931     Size = addSizeOfGlobalsInConstantVal(Init, Size);
932   return Size;
933 }
934
935 /// GetSizeOfGlobalsInBytes - walk the code for the function, looking for
936 /// globals; then walk the initializers of those globals looking for more.
937 /// If their size has not been considered yet, add it into the running total
938 /// Size.
939
940 unsigned JITEmitter::GetSizeOfGlobalsInBytes(MachineFunction &MF) {
941   unsigned Size = 0;
942   GVSet.clear();
943
944   for (MachineFunction::iterator MBB = MF.begin(), E = MF.end();
945        MBB != E; ++MBB) {
946     for (MachineBasicBlock::const_iterator I = MBB->begin(), E = MBB->end();
947          I != E; ++I) {
948       const TargetInstrDesc &Desc = I->getDesc();
949       const MachineInstr &MI = *I;
950       unsigned NumOps = Desc.getNumOperands();
951       for (unsigned CurOp = 0; CurOp < NumOps; CurOp++) {
952         const MachineOperand &MO = MI.getOperand(CurOp);
953         if (MO.isGlobal()) {
954           GlobalValue* V = MO.getGlobal();
955           const GlobalVariable *GV = dyn_cast<const GlobalVariable>(V);
956           if (!GV)
957             continue;
958           // If seen in previous function, it will have an entry here.
959           if (TheJIT->getPointerToGlobalIfAvailable(GV))
960             continue;
961           // If seen earlier in this function, it will have an entry here.
962           // FIXME: it should be possible to combine these tables, by
963           // assuming the addresses of the new globals in this module
964           // start at 0 (or something) and adjusting them after codegen
965           // complete.  Another possibility is to grab a marker bit in GV.
966           if (GVSet.insert(GV))
967             // A variable as yet unseen.  Add in its size.
968             Size = addSizeOfGlobal(GV, Size);
969         }
970       }
971     }
972   }
973   DEBUG(errs() << "JIT: About to look through initializers\n");
974   // Look for more globals that are referenced only from initializers.
975   // GVSet.end is computed each time because the set can grow as we go.
976   for (SmallPtrSet<const GlobalVariable *, 8>::iterator I = GVSet.begin();
977        I != GVSet.end(); I++) {
978     const GlobalVariable* GV = *I;
979     if (GV->hasInitializer())
980       Size = addSizeOfGlobalsInInitializer(GV->getInitializer(), Size);
981   }
982
983   return Size;
984 }
985
986 void JITEmitter::startFunction(MachineFunction &F) {
987   DEBUG(errs() << "JIT: Starting CodeGen of Function "
988         << F.getFunction()->getName() << "\n");
989
990   uintptr_t ActualSize = 0;
991   // Set the memory writable, if it's not already
992   MemMgr->setMemoryWritable();
993   if (MemMgr->NeedsExactSize()) {
994     DEBUG(errs() << "JIT: ExactSize\n");
995     const TargetInstrInfo* TII = F.getTarget().getInstrInfo();
996     MachineJumpTableInfo *MJTI = F.getJumpTableInfo();
997     MachineConstantPool *MCP = F.getConstantPool();
998
999     // Ensure the constant pool/jump table info is at least 4-byte aligned.
1000     ActualSize = RoundUpToAlign(ActualSize, 16);
1001
1002     // Add the alignment of the constant pool
1003     ActualSize = RoundUpToAlign(ActualSize, MCP->getConstantPoolAlignment());
1004
1005     // Add the constant pool size
1006     ActualSize += GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData());
1007
1008     // Add the aligment of the jump table info
1009     ActualSize = RoundUpToAlign(ActualSize, MJTI->getAlignment());
1010
1011     // Add the jump table size
1012     ActualSize += GetJumpTableSizeInBytes(MJTI);
1013
1014     // Add the alignment for the function
1015     ActualSize = RoundUpToAlign(ActualSize,
1016                                 std::max(F.getFunction()->getAlignment(), 8U));
1017
1018     // Add the function size
1019     ActualSize += TII->GetFunctionSizeInBytes(F);
1020
1021     DEBUG(errs() << "JIT: ActualSize before globals " << ActualSize << "\n");
1022     // Add the size of the globals that will be allocated after this function.
1023     // These are all the ones referenced from this function that were not
1024     // previously allocated.
1025     ActualSize += GetSizeOfGlobalsInBytes(F);
1026     DEBUG(errs() << "JIT: ActualSize after globals " << ActualSize << "\n");
1027   } else if (SizeEstimate > 0) {
1028     // SizeEstimate will be non-zero on reallocation attempts.
1029     ActualSize = SizeEstimate;
1030   }
1031
1032   BufferBegin = CurBufferPtr = MemMgr->startFunctionBody(F.getFunction(),
1033                                                          ActualSize);
1034   BufferEnd = BufferBegin+ActualSize;
1035   EmittedFunctions[F.getFunction()].FunctionBody = BufferBegin;
1036
1037   // Ensure the constant pool/jump table info is at least 4-byte aligned.
1038   emitAlignment(16);
1039
1040   emitConstantPool(F.getConstantPool());
1041   initJumpTableInfo(F.getJumpTableInfo());
1042
1043   // About to start emitting the machine code for the function.
1044   emitAlignment(std::max(F.getFunction()->getAlignment(), 8U));
1045   TheJIT->updateGlobalMapping(F.getFunction(), CurBufferPtr);
1046   EmittedFunctions[F.getFunction()].Code = CurBufferPtr;
1047
1048   MBBLocations.clear();
1049
1050   EmissionDetails.MF = &F;
1051   EmissionDetails.LineStarts.clear();
1052 }
1053
1054 bool JITEmitter::finishFunction(MachineFunction &F) {
1055   if (CurBufferPtr == BufferEnd) {
1056     // We must call endFunctionBody before retrying, because
1057     // deallocateMemForFunction requires it.
1058     MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
1059     retryWithMoreMemory(F);
1060     return true;
1061   }
1062
1063   emitJumpTableInfo(F.getJumpTableInfo());
1064
1065   // FnStart is the start of the text, not the start of the constant pool and
1066   // other per-function data.
1067   uint8_t *FnStart =
1068     (uint8_t *)TheJIT->getPointerToGlobalIfAvailable(F.getFunction());
1069
1070   // FnEnd is the end of the function's machine code.
1071   uint8_t *FnEnd = CurBufferPtr;
1072
1073   if (!Relocations.empty()) {
1074     CurFn = F.getFunction();
1075     NumRelos += Relocations.size();
1076
1077     // Resolve the relocations to concrete pointers.
1078     for (unsigned i = 0, e = Relocations.size(); i != e; ++i) {
1079       MachineRelocation &MR = Relocations[i];
1080       void *ResultPtr = 0;
1081       if (!MR.letTargetResolve()) {
1082         if (MR.isExternalSymbol()) {
1083           ResultPtr = TheJIT->getPointerToNamedFunction(MR.getExternalSymbol(),
1084                                                         false);
1085           DEBUG(errs() << "JIT: Map \'" << MR.getExternalSymbol() << "\' to ["
1086                        << ResultPtr << "]\n");
1087
1088           // If the target REALLY wants a stub for this function, emit it now.
1089           if (MR.mayNeedFarStub()) {
1090             ResultPtr = Resolver.getExternalFunctionStub(ResultPtr);
1091           }
1092         } else if (MR.isGlobalValue()) {
1093           ResultPtr = getPointerToGlobal(MR.getGlobalValue(),
1094                                          BufferBegin+MR.getMachineCodeOffset(),
1095                                          MR.mayNeedFarStub());
1096         } else if (MR.isIndirectSymbol()) {
1097           ResultPtr = getPointerToGVIndirectSym(
1098               MR.getGlobalValue(), BufferBegin+MR.getMachineCodeOffset());
1099         } else if (MR.isBasicBlock()) {
1100           ResultPtr = (void*)getMachineBasicBlockAddress(MR.getBasicBlock());
1101         } else if (MR.isConstantPoolIndex()) {
1102           ResultPtr = (void*)getConstantPoolEntryAddress(MR.getConstantPoolIndex());
1103         } else {
1104           assert(MR.isJumpTableIndex());
1105           ResultPtr=(void*)getJumpTableEntryAddress(MR.getJumpTableIndex());
1106         }
1107
1108         MR.setResultPointer(ResultPtr);
1109       }
1110
1111       // if we are managing the GOT and the relocation wants an index,
1112       // give it one
1113       if (MR.isGOTRelative() && MemMgr->isManagingGOT()) {
1114         unsigned idx = Resolver.getGOTIndexForAddr(ResultPtr);
1115         MR.setGOTIndex(idx);
1116         if (((void**)MemMgr->getGOTBase())[idx] != ResultPtr) {
1117           DEBUG(errs() << "JIT: GOT was out of date for " << ResultPtr
1118                        << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
1119                        << "\n");
1120           ((void**)MemMgr->getGOTBase())[idx] = ResultPtr;
1121         }
1122       }
1123     }
1124
1125     CurFn = 0;
1126     TheJIT->getJITInfo().relocate(BufferBegin, &Relocations[0],
1127                                   Relocations.size(), MemMgr->getGOTBase());
1128   }
1129
1130   // Update the GOT entry for F to point to the new code.
1131   if (MemMgr->isManagingGOT()) {
1132     unsigned idx = Resolver.getGOTIndexForAddr((void*)BufferBegin);
1133     if (((void**)MemMgr->getGOTBase())[idx] != (void*)BufferBegin) {
1134       DEBUG(errs() << "JIT: GOT was out of date for " << (void*)BufferBegin
1135                    << " pointing at " << ((void**)MemMgr->getGOTBase())[idx]
1136                    << "\n");
1137       ((void**)MemMgr->getGOTBase())[idx] = (void*)BufferBegin;
1138     }
1139   }
1140
1141   // CurBufferPtr may have moved beyond FnEnd, due to memory allocation for
1142   // global variables that were referenced in the relocations.
1143   MemMgr->endFunctionBody(F.getFunction(), BufferBegin, CurBufferPtr);
1144
1145   if (CurBufferPtr == BufferEnd) {
1146     retryWithMoreMemory(F);
1147     return true;
1148   } else {
1149     // Now that we've succeeded in emitting the function, reset the
1150     // SizeEstimate back down to zero.
1151     SizeEstimate = 0;
1152   }
1153
1154   BufferBegin = CurBufferPtr = 0;
1155   NumBytes += FnEnd-FnStart;
1156
1157   // Invalidate the icache if necessary.
1158   sys::Memory::InvalidateInstructionCache(FnStart, FnEnd-FnStart);
1159
1160   TheJIT->NotifyFunctionEmitted(*F.getFunction(), FnStart, FnEnd-FnStart,
1161                                 EmissionDetails);
1162
1163   DEBUG(errs() << "JIT: Finished CodeGen of [" << (void*)FnStart
1164         << "] Function: " << F.getFunction()->getName()
1165         << ": " << (FnEnd-FnStart) << " bytes of text, "
1166         << Relocations.size() << " relocations\n");
1167
1168   Relocations.clear();
1169   ConstPoolAddresses.clear();
1170
1171   // Mark code region readable and executable if it's not so already.
1172   MemMgr->setMemoryExecutable();
1173
1174   DEBUG(
1175     if (sys::hasDisassembler()) {
1176       errs() << "JIT: Disassembled code:\n";
1177       errs() << sys::disassembleBuffer(FnStart, FnEnd-FnStart,
1178                                        (uintptr_t)FnStart);
1179     } else {
1180       errs() << "JIT: Binary code:\n";
1181       uint8_t* q = FnStart;
1182       for (int i = 0; q < FnEnd; q += 4, ++i) {
1183         if (i == 4)
1184           i = 0;
1185         if (i == 0)
1186           errs() << "JIT: " << (long)(q - FnStart) << ": ";
1187         bool Done = false;
1188         for (int j = 3; j >= 0; --j) {
1189           if (q + j >= FnEnd)
1190             Done = true;
1191           else
1192             errs() << (unsigned short)q[j];
1193         }
1194         if (Done)
1195           break;
1196         errs() << ' ';
1197         if (i == 3)
1198           errs() << '\n';
1199       }
1200       errs()<< '\n';
1201     }
1202         );
1203
1204   if (DwarfExceptionHandling || JITEmitDebugInfo) {
1205     uintptr_t ActualSize = 0;
1206     BufferState BS;
1207     SaveStateTo(BS);
1208
1209     if (MemMgr->NeedsExactSize()) {
1210       ActualSize = DE->GetDwarfTableSizeInBytes(F, *this, FnStart, FnEnd);
1211     }
1212
1213     BufferBegin = CurBufferPtr = MemMgr->startExceptionTable(F.getFunction(),
1214                                                              ActualSize);
1215     BufferEnd = BufferBegin+ActualSize;
1216     EmittedFunctions[F.getFunction()].ExceptionTable = BufferBegin;
1217     uint8_t *EhStart;
1218     uint8_t *FrameRegister = DE->EmitDwarfTable(F, *this, FnStart, FnEnd,
1219                                                 EhStart);
1220     MemMgr->endExceptionTable(F.getFunction(), BufferBegin, CurBufferPtr,
1221                               FrameRegister);
1222     uint8_t *EhEnd = CurBufferPtr;
1223     RestoreStateFrom(BS);
1224
1225     if (DwarfExceptionHandling) {
1226       TheJIT->RegisterTable(FrameRegister);
1227     }
1228
1229     if (JITEmitDebugInfo) {
1230       DebugInfo I;
1231       I.FnStart = FnStart;
1232       I.FnEnd = FnEnd;
1233       I.EhStart = EhStart;
1234       I.EhEnd = EhEnd;
1235       DR->RegisterFunction(F.getFunction(), I);
1236     }
1237   }
1238
1239   if (MMI)
1240     MMI->EndFunction();
1241
1242   return false;
1243 }
1244
1245 void JITEmitter::retryWithMoreMemory(MachineFunction &F) {
1246   DEBUG(errs() << "JIT: Ran out of space for native code.  Reattempting.\n");
1247   Relocations.clear();  // Clear the old relocations or we'll reapply them.
1248   ConstPoolAddresses.clear();
1249   ++NumRetries;
1250   deallocateMemForFunction(F.getFunction());
1251   // Try again with at least twice as much free space.
1252   SizeEstimate = (uintptr_t)(2 * (BufferEnd - BufferBegin));
1253 }
1254
1255 /// deallocateMemForFunction - Deallocate all memory for the specified
1256 /// function body.  Also drop any references the function has to stubs.
1257 /// May be called while the Function is being destroyed inside ~Value().
1258 void JITEmitter::deallocateMemForFunction(const Function *F) {
1259   ValueMap<const Function *, EmittedCode, EmittedFunctionConfig>::iterator
1260     Emitted = EmittedFunctions.find(F);
1261   if (Emitted != EmittedFunctions.end()) {
1262     MemMgr->deallocateFunctionBody(Emitted->second.FunctionBody);
1263     MemMgr->deallocateExceptionTable(Emitted->second.ExceptionTable);
1264     TheJIT->NotifyFreeingMachineCode(Emitted->second.Code);
1265
1266     EmittedFunctions.erase(Emitted);
1267   }
1268
1269   // TODO: Do we need to unregister exception handling information from libgcc
1270   // here?
1271
1272   if (JITEmitDebugInfo) {
1273     DR->UnregisterFunction(F);
1274   }
1275
1276   // If the function did not reference any stubs, return.
1277   if (CurFnStubUses.find(F) == CurFnStubUses.end())
1278     return;
1279
1280   // For each referenced stub, erase the reference to this function, and then
1281   // erase the list of referenced stubs.
1282   SmallVectorImpl<void *> &StubList = CurFnStubUses[F];
1283   for (unsigned i = 0, e = StubList.size(); i != e; ++i) {
1284     void *Stub = StubList[i];
1285
1286     // If we already invalidated this stub for this function, continue.
1287     if (StubFnRefs.count(Stub) == 0)
1288       continue;
1289
1290     SmallPtrSet<const Function *, 1> &FnRefs = StubFnRefs[Stub];
1291     FnRefs.erase(F);
1292
1293     // If this function was the last reference to the stub, invalidate the stub
1294     // in the JITResolver.  Were there a memory manager deallocateStub routine,
1295     // we could call that at this point too.
1296     if (FnRefs.empty()) {
1297       DEBUG(errs() << "\nJIT: Invalidated Stub at [" << Stub << "]\n");
1298       StubFnRefs.erase(Stub);
1299
1300       // Invalidate the stub.  If it is a GV stub, update the JIT's global
1301       // mapping for that GV to zero.
1302       GlobalValue *GV = Resolver.invalidateStub(Stub);
1303       if (GV) {
1304         TheJIT->updateGlobalMapping(GV, 0);
1305       }
1306     }
1307   }
1308   CurFnStubUses.erase(F);
1309 }
1310
1311
1312 void* JITEmitter::allocateSpace(uintptr_t Size, unsigned Alignment) {
1313   if (BufferBegin)
1314     return JITCodeEmitter::allocateSpace(Size, Alignment);
1315
1316   // create a new memory block if there is no active one.
1317   // care must be taken so that BufferBegin is invalidated when a
1318   // block is trimmed
1319   BufferBegin = CurBufferPtr = MemMgr->allocateSpace(Size, Alignment);
1320   BufferEnd = BufferBegin+Size;
1321   return CurBufferPtr;
1322 }
1323
1324 void* JITEmitter::allocateGlobal(uintptr_t Size, unsigned Alignment) {
1325   // Delegate this call through the memory manager.
1326   return MemMgr->allocateGlobal(Size, Alignment);
1327 }
1328
1329 void JITEmitter::emitConstantPool(MachineConstantPool *MCP) {
1330   if (TheJIT->getJITInfo().hasCustomConstantPool())
1331     return;
1332
1333   const std::vector<MachineConstantPoolEntry> &Constants = MCP->getConstants();
1334   if (Constants.empty()) return;
1335
1336   unsigned Size = GetConstantPoolSizeInBytes(MCP, TheJIT->getTargetData());
1337   unsigned Align = MCP->getConstantPoolAlignment();
1338   ConstantPoolBase = allocateSpace(Size, Align);
1339   ConstantPool = MCP;
1340
1341   if (ConstantPoolBase == 0) return;  // Buffer overflow.
1342
1343   DEBUG(errs() << "JIT: Emitted constant pool at [" << ConstantPoolBase
1344                << "] (size: " << Size << ", alignment: " << Align << ")\n");
1345
1346   // Initialize the memory for all of the constant pool entries.
1347   unsigned Offset = 0;
1348   for (unsigned i = 0, e = Constants.size(); i != e; ++i) {
1349     MachineConstantPoolEntry CPE = Constants[i];
1350     unsigned AlignMask = CPE.getAlignment() - 1;
1351     Offset = (Offset + AlignMask) & ~AlignMask;
1352
1353     uintptr_t CAddr = (uintptr_t)ConstantPoolBase + Offset;
1354     ConstPoolAddresses.push_back(CAddr);
1355     if (CPE.isMachineConstantPoolEntry()) {
1356       // FIXME: add support to lower machine constant pool values into bytes!
1357       llvm_report_error("Initialize memory with machine specific constant pool"
1358                         "entry has not been implemented!");
1359     }
1360     TheJIT->InitializeMemory(CPE.Val.ConstVal, (void*)CAddr);
1361     DEBUG(errs() << "JIT:   CP" << i << " at [0x";
1362           errs().write_hex(CAddr) << "]\n");
1363
1364     const Type *Ty = CPE.Val.ConstVal->getType();
1365     Offset += TheJIT->getTargetData()->getTypeAllocSize(Ty);
1366   }
1367 }
1368
1369 void JITEmitter::initJumpTableInfo(MachineJumpTableInfo *MJTI) {
1370   if (TheJIT->getJITInfo().hasCustomJumpTables())
1371     return;
1372
1373   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1374   if (JT.empty()) return;
1375
1376   unsigned NumEntries = 0;
1377   for (unsigned i = 0, e = JT.size(); i != e; ++i)
1378     NumEntries += JT[i].MBBs.size();
1379
1380   unsigned EntrySize = MJTI->getEntrySize();
1381
1382   // Just allocate space for all the jump tables now.  We will fix up the actual
1383   // MBB entries in the tables after we emit the code for each block, since then
1384   // we will know the final locations of the MBBs in memory.
1385   JumpTable = MJTI;
1386   JumpTableBase = allocateSpace(NumEntries * EntrySize, MJTI->getAlignment());
1387 }
1388
1389 void JITEmitter::emitJumpTableInfo(MachineJumpTableInfo *MJTI) {
1390   if (TheJIT->getJITInfo().hasCustomJumpTables())
1391     return;
1392
1393   const std::vector<MachineJumpTableEntry> &JT = MJTI->getJumpTables();
1394   if (JT.empty() || JumpTableBase == 0) return;
1395
1396   if (TargetMachine::getRelocationModel() == Reloc::PIC_) {
1397     assert(MJTI->getEntrySize() == 4 && "Cross JIT'ing?");
1398     // For each jump table, place the offset from the beginning of the table
1399     // to the target address.
1400     int *SlotPtr = (int*)JumpTableBase;
1401
1402     for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1403       const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1404       // Store the offset of the basic block for this jump table slot in the
1405       // memory we allocated for the jump table in 'initJumpTableInfo'
1406       uintptr_t Base = (uintptr_t)SlotPtr;
1407       for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi) {
1408         uintptr_t MBBAddr = getMachineBasicBlockAddress(MBBs[mi]);
1409         *SlotPtr++ = TheJIT->getJITInfo().getPICJumpTableEntry(MBBAddr, Base);
1410       }
1411     }
1412   } else {
1413     assert(MJTI->getEntrySize() == sizeof(void*) && "Cross JIT'ing?");
1414
1415     // For each jump table, map each target in the jump table to the address of
1416     // an emitted MachineBasicBlock.
1417     intptr_t *SlotPtr = (intptr_t*)JumpTableBase;
1418
1419     for (unsigned i = 0, e = JT.size(); i != e; ++i) {
1420       const std::vector<MachineBasicBlock*> &MBBs = JT[i].MBBs;
1421       // Store the address of the basic block for this jump table slot in the
1422       // memory we allocated for the jump table in 'initJumpTableInfo'
1423       for (unsigned mi = 0, me = MBBs.size(); mi != me; ++mi)
1424         *SlotPtr++ = getMachineBasicBlockAddress(MBBs[mi]);
1425     }
1426   }
1427 }
1428
1429 void JITEmitter::startGVStub(BufferState &BS, const GlobalValue* GV,
1430                              unsigned StubSize, unsigned Alignment) {
1431   SaveStateTo(BS);
1432
1433   BufferBegin = CurBufferPtr = MemMgr->allocateStub(GV, StubSize, Alignment);
1434   BufferEnd = BufferBegin+StubSize+1;
1435 }
1436
1437 void JITEmitter::startGVStub(BufferState &BS, void *Buffer, unsigned StubSize) {
1438   SaveStateTo(BS);
1439
1440   BufferBegin = CurBufferPtr = (uint8_t *)Buffer;
1441   BufferEnd = BufferBegin+StubSize+1;
1442 }
1443
1444 void *JITEmitter::finishGVStub(BufferState &BS) {
1445   NumBytes += getCurrentPCOffset();
1446   void *Result = BufferBegin;
1447   RestoreStateFrom(BS);
1448   return Result;
1449 }
1450
1451 // getConstantPoolEntryAddress - Return the address of the 'ConstantNum' entry
1452 // in the constant pool that was last emitted with the 'emitConstantPool'
1453 // method.
1454 //
1455 uintptr_t JITEmitter::getConstantPoolEntryAddress(unsigned ConstantNum) const {
1456   assert(ConstantNum < ConstantPool->getConstants().size() &&
1457          "Invalid ConstantPoolIndex!");
1458   return ConstPoolAddresses[ConstantNum];
1459 }
1460
1461 // getJumpTableEntryAddress - Return the address of the JumpTable with index
1462 // 'Index' in the jumpp table that was last initialized with 'initJumpTableInfo'
1463 //
1464 uintptr_t JITEmitter::getJumpTableEntryAddress(unsigned Index) const {
1465   const std::vector<MachineJumpTableEntry> &JT = JumpTable->getJumpTables();
1466   assert(Index < JT.size() && "Invalid jump table index!");
1467
1468   unsigned Offset = 0;
1469   unsigned EntrySize = JumpTable->getEntrySize();
1470
1471   for (unsigned i = 0; i < Index; ++i)
1472     Offset += JT[i].MBBs.size();
1473
1474    Offset *= EntrySize;
1475
1476   return (uintptr_t)((char *)JumpTableBase + Offset);
1477 }
1478
1479 void JITEmitter::EmittedFunctionConfig::onDelete(
1480   JITEmitter *Emitter, const Function *F) {
1481   Emitter->deallocateMemForFunction(F);
1482 }
1483 void JITEmitter::EmittedFunctionConfig::onRAUW(
1484   JITEmitter *, const Function*, const Function*) {
1485   llvm_unreachable("The JIT doesn't know how to handle a"
1486                    " RAUW on a value it has emitted.");
1487 }
1488
1489
1490 //===----------------------------------------------------------------------===//
1491 //  Public interface to this file
1492 //===----------------------------------------------------------------------===//
1493
1494 JITCodeEmitter *JIT::createEmitter(JIT &jit, JITMemoryManager *JMM,
1495                                    TargetMachine &tm) {
1496   return new JITEmitter(jit, JMM, tm);
1497 }
1498
1499 // getPointerToNamedFunction - This function is used as a global wrapper to
1500 // JIT::getPointerToNamedFunction for the purpose of resolving symbols when
1501 // bugpoint is debugging the JIT. In that scenario, we are loading an .so and
1502 // need to resolve function(s) that are being mis-codegenerated, so we need to
1503 // resolve their addresses at runtime, and this is the way to do it.
1504 extern "C" {
1505   void *getPointerToNamedFunction(const char *Name) {
1506     if (Function *F = TheJIT->FindFunctionNamed(Name))
1507       return TheJIT->getPointerToFunction(F);
1508     return TheJIT->getPointerToNamedFunction(Name);
1509   }
1510 }
1511
1512 // getPointerToFunctionOrStub - If the specified function has been
1513 // code-gen'd, return a pointer to the function.  If not, compile it, or use
1514 // a stub to implement lazy compilation if available.
1515 //
1516 void *JIT::getPointerToFunctionOrStub(Function *F) {
1517   // If we have already code generated the function, just return the address.
1518   if (void *Addr = getPointerToGlobalIfAvailable(F))
1519     return Addr;
1520
1521   // Get a stub if the target supports it.
1522   assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
1523   JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
1524   return JE->getJITResolver().getFunctionStub(F);
1525 }
1526
1527 void JIT::updateFunctionStub(Function *F) {
1528   // Get the empty stub we generated earlier.
1529   assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
1530   JITEmitter *JE = cast<JITEmitter>(getCodeEmitter());
1531   void *Stub = JE->getJITResolver().getFunctionStub(F);
1532
1533   // Tell the target jit info to rewrite the stub at the specified address,
1534   // rather than creating a new one.
1535   void *Addr = getPointerToGlobalIfAvailable(F);
1536   getJITInfo().emitFunctionStubAtAddr(F, Addr, Stub, *getCodeEmitter());
1537 }
1538
1539 /// freeMachineCodeForFunction - release machine code memory for given Function.
1540 ///
1541 void JIT::freeMachineCodeForFunction(Function *F) {
1542   // Delete translation for this from the ExecutionEngine, so it will get
1543   // retranslated next time it is used.
1544   updateGlobalMapping(F, 0);
1545
1546   // Free the actual memory for the function body and related stuff.
1547   assert(isa<JITEmitter>(JCE) && "Unexpected MCE?");
1548   cast<JITEmitter>(JCE)->deallocateMemForFunction(F);
1549 }