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