LLVM 24.0.0git
ReOptimizeLayer.cpp
Go to the documentation of this file.
5
6using namespace llvm;
7using namespace orc;
8
9bool ReOptimizeLayer::ReOptMaterializationUnitState::tryStartReoptimize() {
10 std::unique_lock<std::mutex> Lock(Mutex);
11 if (Reoptimizing)
12 return false;
13
14 Reoptimizing = true;
15 return true;
16}
17
18void ReOptimizeLayer::ReOptMaterializationUnitState::reoptimizeSucceeded() {
19 std::unique_lock<std::mutex> Lock(Mutex);
20 assert(Reoptimizing && "Tried to mark unstarted reoptimization as done");
21 Reoptimizing = false;
22 CurVersion++;
23}
24
25void ReOptimizeLayer::ReOptMaterializationUnitState::reoptimizeFailed() {
26 std::unique_lock<std::mutex> Lock(Mutex);
27 assert(Reoptimizing && "Tried to mark unstarted reoptimization as done");
28 Reoptimizing = false;
29}
30
32 shared::CWrapperFunctionBuffer (*JITDispatch)(void *Ctx, void *Tag,
33 const char *Data,
34 size_t Size),
35 void *JITDispatchCtx, void *Tag, uint64_t MUID, uint32_t CurVersion) {
36 // Serialize the arguments into a WrapperFunctionBuffer and call dispatch.
38 auto ArgBytes =
39 shared::WrapperFunctionBuffer::allocate(SPSArgs::size(MUID, CurVersion));
40 shared::SPSOutputBuffer OB(ArgBytes.data(), ArgBytes.size());
41 if (!SPSArgs::serialize(OB, MUID, CurVersion)) {
42 errs()
43 << "Reoptimization error: could not serialize reoptimization arguments";
44 abort();
45 }
47 JITDispatch(JITDispatchCtx, Tag, ArgBytes.data(), ArgBytes.size())};
48
49 if (const char *ErrMsg = Buf.getOutOfBandError()) {
50 errs() << "Reoptimization error: " << ErrMsg << "\naborting.\n";
51 abort();
52 }
53}
54
56 const DataLayout &DL) {
57 auto Ctx = std::make_unique<LLVMContext>();
58 auto Mod = std::make_unique<Module>("orc-rt-lite-reoptimize.ll", *Ctx);
59 Mod->setDataLayout(DL);
60
61 IRBuilder<> Builder(*Ctx);
62
63 // Create basic types portably
64 Type *VoidTy = Type::getVoidTy(*Ctx);
65 Type *Int8Ty = Type::getInt8Ty(*Ctx);
66 Type *Int32Ty = Type::getInt32Ty(*Ctx);
67 Type *Int64Ty = Type::getInt64Ty(*Ctx);
68 Type *VoidPtrTy = PointerType::getUnqual(*Ctx);
69
70 // Helper function type: void (void*, void*, void*, uint64_t, uint32_t)
71 FunctionType *HelperFnTy = FunctionType::get(
72 VoidTy, {VoidPtrTy, VoidPtrTy, VoidPtrTy, Int64Ty, Int32Ty}, false);
73
74 // Define ReoptimizeTag with initializer = 0
75 GlobalVariable *ReoptimizeTag = new GlobalVariable(
76 *Mod, Int8Ty, false, GlobalValue::ExternalLinkage,
77 ConstantInt::get(Int8Ty, 0), "__orc_rt_reoptimize_tag");
78
79 // Define orc_rt_lite_reoptimize function: void (uint64_t, uint32_t)
80 FunctionType *ReOptimizeFnTy =
81 FunctionType::get(VoidTy, {Int64Ty, Int32Ty}, false);
82
83 Function *ReOptimizeFn =
85 "__orc_rt_reoptimize", Mod.get());
86
87 // Set parameter names
88 auto ArgIt = ReOptimizeFn->arg_begin();
89 Value *MUID = &*ArgIt++;
90 MUID->setName("MUID");
91 Value *CurVersion = &*ArgIt;
92 CurVersion->setName("CurVersion");
93
94 // Build function body
95 BasicBlock *Entry = BasicBlock::Create(*Ctx, "entry", ReOptimizeFn);
96 Builder.SetInsertPoint(Entry);
97
98 ExecutorAddr JITDispatchSym, JITDispatchCtxSym;
99 if (auto Err = lookupAndRecordAddrs(
101 makeJITDylibSearchOrder(&ES.getBootstrapJITDylib()),
102 {{ES.intern(rt::DispatchName), &JITDispatchSym},
103 {ES.intern(rt::DispatchCtxName), &JITDispatchCtxSym}}))
104 return Err;
105
106 Type *IntPtrTy = DL.getIntPtrType(*Ctx);
107 Constant *JITDispatchPtr = ConstantExpr::getIntToPtr(
108 ConstantInt::get(IntPtrTy, JITDispatchSym.getValue()), VoidPtrTy);
109 Constant *JITDispatchCtxPtr = ConstantExpr::getIntToPtr(
110 ConstantInt::get(IntPtrTy, JITDispatchCtxSym.getValue()), VoidPtrTy);
111 Constant *HelperFnAddr = ConstantExpr::getIntToPtr(
112 ConstantInt::get(IntPtrTy, reinterpret_cast<uintptr_t>(
115
116 // Cast ReoptimizeTag to void*
117 Value *ReoptimizeTagPtr = Builder.CreatePointerCast(ReoptimizeTag, VoidPtrTy);
118
119 // Call the helper function
120 Builder.CreateCall(
121 HelperFnTy, HelperFnAddr,
122 {JITDispatchPtr, JITDispatchCtxPtr, ReoptimizeTagPtr, MUID, CurVersion});
123
124 // Return void
125 Builder.CreateRetVoid();
126
127 return BaseLayer.add(PlatformJD,
128 ThreadSafeModule(std::move(Mod), std::move(Ctx)));
129}
130
133 using ReoptimizeSPSSig = shared::SPSError(uint64_t, uint32_t);
134 WFs[Mangle("__orc_rt_reoptimize_tag")] =
135 ES.wrapAsyncWithSPS<ReoptimizeSPSSig>(this,
136 &ReOptimizeLayer::rt_reoptimize);
137 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs));
138}
139
140void ReOptimizeLayer::emit(std::unique_ptr<MaterializationResponsibility> R,
141 ThreadSafeModule TSM) {
142 auto &JD = R->getTargetJITDylib();
143
144 bool HasNonCallable = false;
145 for (auto &KV : R->getSymbols()) {
146 auto &Flags = KV.second;
147 if (!Flags.isCallable())
148 HasNonCallable = true;
149 }
150
151 if (HasNonCallable) {
152 BaseLayer.emit(std::move(R), std::move(TSM));
153 return;
154 }
155
156 auto &MUState = createMaterializationUnitState(TSM);
157
158 if (auto Err = R->withResourceKeyDo([&](ResourceKey Key) {
159 registerMaterializationUnitResource(Key, MUState);
160 })) {
161 ES.reportError(std::move(Err));
162 R->failMaterialization();
163 return;
164 }
165
166 if (auto Err =
167 ProfilerFunc(*this, MUState.getID(), MUState.getCurVersion(), TSM)) {
168 ES.reportError(std::move(Err));
169 R->failMaterialization();
170 return;
171 }
172
173 auto InitialDests =
174 emitMUImplSymbols(MUState, MUState.getCurVersion(), JD, std::move(TSM));
175 if (!InitialDests) {
176 ES.reportError(InitialDests.takeError());
177 R->failMaterialization();
178 return;
179 }
180
181 RSManager.emitRedirectableSymbols(std::move(R), std::move(*InitialDests));
182}
183
186 unsigned CurVersion,
187 ThreadSafeModule &TSM) {
188 return TSM.withModuleDo([&](Module &M) -> Error {
189 Type *I64Ty = Type::getInt64Ty(M.getContext());
190 GlobalVariable *Counter = new GlobalVariable(
191 M, I64Ty, false, GlobalValue::InternalLinkage,
192 Constant::getNullValue(I64Ty), "__orc_reopt_counter");
193 for (auto &F : M) {
194 if (F.isDeclaration())
195 continue;
196 auto &BB = F.getEntryBlock();
197 auto *IP = &*BB.getFirstInsertionPt();
198 IRBuilder<> IRB(IP);
199 Value *Threshold = ConstantInt::get(I64Ty, CallCountThreshold, true);
200 Value *Cnt = IRB.CreateLoad(I64Ty, Counter);
201 // Use EQ to prevent further reoptimize calls.
202 Value *Cmp = IRB.CreateICmpEQ(Cnt, Threshold);
203 Value *Added = IRB.CreateAdd(Cnt, ConstantInt::get(I64Ty, 1));
204 (void)IRB.CreateStore(Added, Counter);
205 Instruction *SplitTerminator = SplitBlockAndInsertIfThen(Cmp, IP, false);
206 createReoptimizeCall(M, *SplitTerminator, MUID, CurVersion);
207 }
208 return Error::success();
209 });
210}
211
213ReOptimizeLayer::emitMUImplSymbols(ReOptMaterializationUnitState &MUState,
215 ThreadSafeModule TSM) {
217 cantFail(TSM.withModuleDo([&](Module &M) -> Error {
218 MangleAndInterner Mangle(ES, M.getDataLayout());
219 for (auto &F : M)
220 if (!F.isDeclaration()) {
221 std::string NewName =
222 (F.getName() + ".__def__." + Twine(Version)).str();
223 RenamedMap[Mangle(F.getName())] = Mangle(NewName);
224 F.setName(NewName);
225 }
226 return Error::success();
227 }));
228
229 auto RT = JD.createResourceTracker();
230 if (auto Err =
231 JD.define(std::make_unique<BasicIRLayerMaterializationUnit>(
232 BaseLayer, *getManglingOptions(), std::move(TSM)),
233 RT))
234 return Err;
235 MUState.setResourceTracker(RT);
236
237 SymbolLookupSet LookupSymbols;
238 for (auto [K, V] : RenamedMap)
239 LookupSymbols.add(V);
240
241 auto ImplSymbols =
242 ES.lookup({{&JD, JITDylibLookupFlags::MatchAllSymbols}}, LookupSymbols,
244 if (auto Err = ImplSymbols.takeError())
245 return Err;
246
248 for (auto [K, V] : RenamedMap)
249 Result[K] = (*ImplSymbols)[V];
250
251 return Result;
252}
253
254void ReOptimizeLayer::rt_reoptimize(SendErrorFn SendResult,
256 uint32_t CurVersion) {
257 auto &MUState = getMaterializationUnitState(MUID);
258 if (CurVersion < MUState.getCurVersion() || !MUState.tryStartReoptimize()) {
259 SendResult(Error::success());
260 return;
261 }
262
263 ThreadSafeModule TSM = cloneToNewContext(MUState.getThreadSafeModule());
264 auto OldRT = MUState.getResourceTracker();
265 auto &JD = OldRT->getJITDylib();
266
267 if (auto Err = ReOptFunc(*this, MUID, CurVersion + 1, OldRT, TSM)) {
268 ES.reportError(std::move(Err));
269 MUState.reoptimizeFailed();
270 SendResult(Error::success());
271 return;
272 }
273
274 auto SymbolDests =
275 emitMUImplSymbols(MUState, CurVersion + 1, JD, std::move(TSM));
276 if (!SymbolDests) {
277 ES.reportError(SymbolDests.takeError());
278 MUState.reoptimizeFailed();
279 SendResult(Error::success());
280 return;
281 }
282
283 if (auto Err = RSManager.redirect(JD, std::move(*SymbolDests))) {
284 ES.reportError(std::move(Err));
285 MUState.reoptimizeFailed();
286 SendResult(Error::success());
287 return;
288 }
289
290 MUState.reoptimizeSucceeded();
291 SendResult(Error::success());
292}
293
296 uint32_t CurVersion) {
297 Type *MUIDTy = IntegerType::get(M.getContext(), 64);
298 Type *VersionTy = IntegerType::get(M.getContext(), 32);
299 Function *ReoptimizeFunc = M.getFunction("__orc_rt_reoptimize");
300 if (!ReoptimizeFunc) {
301 std::vector<Type *> ArgTys = {MUIDTy, VersionTy};
302 FunctionType *FuncTy =
303 FunctionType::get(Type::getVoidTy(M.getContext()), ArgTys, false);
304 ReoptimizeFunc = Function::Create(FuncTy, GlobalValue::ExternalLinkage,
305 "__orc_rt_reoptimize", &M);
306 }
307 Constant *MUIDArg = ConstantInt::get(MUIDTy, MUID, false);
308 Constant *CurVersionArg = ConstantInt::get(VersionTy, CurVersion, false);
309 IRBuilder<> IRB(&IP);
310 (void)IRB.CreateCall(ReoptimizeFunc, {MUIDArg, CurVersionArg});
311}
312
313ReOptimizeLayer::ReOptMaterializationUnitState &
314ReOptimizeLayer::createMaterializationUnitState(const ThreadSafeModule &TSM) {
315 std::unique_lock<std::mutex> Lock(Mutex);
316 ReOptMaterializationUnitID MUID = NextID;
317 MUStates.emplace(MUID,
318 ReOptMaterializationUnitState(MUID, cloneToNewContext(TSM)));
319 ++NextID;
320 return MUStates.at(MUID);
321}
322
323ReOptimizeLayer::ReOptMaterializationUnitState &
324ReOptimizeLayer::getMaterializationUnitState(ReOptMaterializationUnitID MUID) {
325 std::unique_lock<std::mutex> Lock(Mutex);
326 return MUStates.at(MUID);
327}
328
329void ReOptimizeLayer::registerMaterializationUnitResource(
330 ResourceKey Key, ReOptMaterializationUnitState &State) {
331 std::unique_lock<std::mutex> Lock(Mutex);
332 MUResources[Key].insert(State.getID());
333}
334
336 std::unique_lock<std::mutex> Lock(Mutex);
337 for (auto MUID : MUResources[K])
338 MUStates.erase(MUID);
339
340 MUResources.erase(K);
341 return Error::success();
342}
343
345 ResourceKey SrcK) {
346 std::unique_lock<std::mutex> Lock(Mutex);
347 MUResources[DstK].insert_range(MUResources[SrcK]);
348 MUResources.erase(SrcK);
349}
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
#define F(x, y, z)
Definition MD5.cpp:54
static void orc_rt_lite_reoptimize_helper(shared::CWrapperFunctionBuffer(*JITDispatch)(void *Ctx, void *Tag, const char *Data, size_t Size), void *JITDispatchCtx, void *Tag, uint64_t MUID, uint32_t CurVersion)
LLVM Basic Block Representation.
Definition BasicBlock.h:62
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
Definition BasicBlock.h:206
static LLVM_ABI Constant * getIntToPtr(Constant *C, Type *Ty, bool OnlyIfReduced=false)
This is an important base class in LLVM.
Definition Constant.h:43
static LLVM_ABI Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
A parsed version of the target data layout string in and methods for querying it.
Definition DataLayout.h:64
Lightweight error class with error context and mandatory checking.
Definition Error.h:159
static ErrorSuccess success()
Create a success value.
Definition Error.h:336
Tagged union holding either a T or a Error.
Definition Error.h:485
Class to represent function types.
static LLVM_ABI FunctionType * get(Type *Result, ArrayRef< Type * > Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
static Function * Create(FunctionType *Ty, LinkageTypes Linkage, unsigned AddrSpace, const Twine &N="", Module *M=nullptr)
Definition Function.h:168
const Function & getFunction() const
Definition Function.h:166
@ InternalLinkage
Rename collisions when linking (static functions).
Definition GlobalValue.h:60
@ ExternalLinkage
Externally visible function.
Definition GlobalValue.h:53
Value * CreateICmpEQ(Value *LHS, Value *RHS, const Twine &Name="")
Definition IRBuilder.h:2375
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
Definition IRBuilder.h:1906
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Definition IRBuilder.h:1925
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Definition IRBuilder.h:1422
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args={}, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition IRBuilder.h:2554
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
Definition IRBuilder.h:2893
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition Type.cpp:348
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
static PointerType * getUnqual(LLVMContext &C)
This constructs an opaque pointer to an object in the default address space (address space zero).
The instances of the Type class are immutable: once they are created, they are never changed.
Definition Type.h:46
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
Definition Type.cpp:310
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
Definition Type.cpp:309
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
Definition Type.cpp:282
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
Definition Type.cpp:307
LLVM Value Representation.
Definition Value.h:75
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
Definition Value.cpp:394
LLVM_ABI void lookup(LookupKind K, const JITDylibSearchOrder &SearchOrder, SymbolLookupSet Symbols, SymbolState RequiredState, SymbolsResolvedCallback NotifyComplete, RegisterDependenciesFunction RegisterDependencies)
Search the given JITDylibs for the given symbols.
Definition Core.cpp:1764
DenseMap< SymbolStringPtr, JITDispatchHandlerFunction > JITDispatchHandlerAssociationMap
A map associating tag names with asynchronous wrapper function implementations in the JIT.
Definition Core.h:1134
Represents an address in the executor process.
virtual Error add(ResourceTrackerSP RT, ThreadSafeModule TSM)
Add a MaterializatinoUnit representing the given IR to the JITDylib targeted by the given tracker.
Definition Layer.cpp:24
const IRSymbolMapper::ManglingOptions *& getManglingOptions() const
Get the mangling options for this layer.
Definition Layer.h:79
Represents a JIT'd dynamic library.
Definition Core.h:675
Error registerRuntimeFunctions(JITDylib &PlatformJD)
Registers reoptimize runtime dispatch handlers to given PlatformJD.
ReOptimizeLayer(ExecutionSession &ES, DataLayout &DL, IRLayer &BaseLayer, RedirectableSymbolManager &RM)
void emit(std::unique_ptr< MaterializationResponsibility > R, ThreadSafeModule TSM) override
Emits the given module.
static void createReoptimizeCall(Module &M, Instruction &IP, ReOptMaterializationUnitID MUID, unsigned CurVersion)
void handleTransferResources(JITDylib &JD, ResourceKey DstK, ResourceKey SrcK) override
This function will be called inside the session lock.
Error addOrcRTLiteSupport(JITDylib &PlatformJD, const DataLayout &DL)
Add ORC Runtime-lite support for reoptimization to PlatformJD.
static Error reoptimizeIfCallFrequent(ReOptimizeLayer &Parent, ReOptMaterializationUnitID MUID, unsigned CurVersion, ThreadSafeModule &TSM)
Basic AddProfilerFunc that reoptimizes the function when the call count exceeds CallCountThreshold.
Error handleRemoveResources(JITDylib &JD, ResourceKey K) override
This function will be called outside the session lock.
static const uint64_t CallCountThreshold
A set of symbols to look up, each associated with a SymbolLookupFlags value.
SymbolLookupSet & add(SymbolStringPtr Name, SymbolLookupFlags Flags=SymbolLookupFlags::RequiredSymbol)
Add an element to the set.
An LLVM Module together with a shared ThreadSafeContext.
decltype(auto) withModuleDo(Func &&F)
Locks the associated ThreadSafeContext and calls the given function on the contained Module.
A utility class for serializing to a blob from a variadic list.
Output char buffer with overflow check.
C++ wrapper function buffer: Same as CWrapperFunctionBuffer but auto-releases memory.
const char * getOutOfBandError() const
If this value is an out-of-band error then this returns the error message, otherwise returns nullptr.
static WrapperFunctionBuffer allocate(size_t Size)
Create a WrapperFunctionBuffer with the given size and return a pointer to the underlying memory.
JITDylibSearchOrder makeJITDylibSearchOrder(ArrayRef< JITDylib * > JDs, JITDylibLookupFlags Flags=JITDylibLookupFlags::MatchExportedSymbolsOnly)
Convenience function for creating a search order from an ArrayRef of JITDylib*, all with the same fla...
Definition Core.h:153
uintptr_t ResourceKey
Definition Core.h:60
LLVM_ABI void lookupAndRecordAddrs(unique_function< void(Error)> OnRecorded, ExecutionSession &ES, LookupKind K, const JITDylibSearchOrder &SearchOrder, std::vector< std::pair< SymbolStringPtr, ExecutorAddr * > > Pairs, SymbolLookupFlags LookupFlags=SymbolLookupFlags::RequiredSymbol)
Record addresses of the given symbols in the given ExecutorAddrs.
DenseMap< SymbolStringPtr, ExecutorSymbolDef > SymbolMap
A map from symbol names (as SymbolStringPtrs) to JITSymbols (address/flags pairs).
LLVM_ABI ThreadSafeModule cloneToNewContext(const ThreadSafeModule &TSMW, GVPredicate ShouldCloneDef=GVPredicate(), GVModifier UpdateClonedDefSource=GVModifier())
Clones the given module on to a new context.
@ Resolved
Queried, materialization begun.
Definition Core.h:549
SmartMutex< false > Mutex
Mutex - A standard, always enforced mutex.
Definition Mutex.h:66
This is an optimization pass for GlobalISel generic memory operations.
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
LLVM_ABI raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.
@ Mod
The access may modify the value stored in memory.
Definition ModRef.h:34
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
Definition Error.h:769
IntPtrTy
Definition InstrProf.h:82
LLVM_ABI Instruction * SplitBlockAndInsertIfThen(Value *Cond, BasicBlock::iterator SplitBefore, bool Unreachable, MDNode *BranchWeights=nullptr, DomTreeUpdater *DTU=nullptr, LoopInfo *LI=nullptr, BasicBlock *ThenBlock=nullptr)
Split the containing block at the specified instruction - everything before SplitBefore stays in the ...