9bool ReOptimizeLayer::ReOptMaterializationUnitState::tryStartReoptimize() {
10 std::unique_lock<std::mutex> Lock(Mutex);
18void ReOptimizeLayer::ReOptMaterializationUnitState::reoptimizeSucceeded() {
19 std::unique_lock<std::mutex> Lock(Mutex);
20 assert(Reoptimizing &&
"Tried to mark unstarted reoptimization as done");
25void ReOptimizeLayer::ReOptMaterializationUnitState::reoptimizeFailed() {
26 std::unique_lock<std::mutex> Lock(Mutex);
27 assert(Reoptimizing &&
"Tried to mark unstarted reoptimization as done");
41 if (!SPSArgs::serialize(OB, MUID, CurVersion)) {
43 <<
"Reoptimization error: could not serialize reoptimization arguments";
47 JITDispatch(JITDispatchCtx, Tag, ArgBytes.data(), ArgBytes.size())};
50 errs() <<
"Reoptimization error: " << ErrMsg <<
"\naborting.\n";
57 auto Ctx = std::make_unique<LLVMContext>();
58 auto Mod = std::make_unique<Module>(
"orc-rt-lite-reoptimize.ll", *Ctx);
59 Mod->setDataLayout(
DL);
72 VoidTy, {VoidPtrTy, VoidPtrTy, VoidPtrTy, Int64Ty, Int32Ty},
false);
77 ConstantInt::get(Int8Ty, 0),
"__orc_rt_reoptimize_tag");
85 "__orc_rt_reoptimize",
Mod.get());
88 auto ArgIt = ReOptimizeFn->arg_begin();
89 Value *MUID = &*ArgIt++;
91 Value *CurVersion = &*ArgIt;
92 CurVersion->
setName(
"CurVersion");
96 Builder.SetInsertPoint(Entry);
101 {recordAddr(rt::DispatchName, &JITDispatchSym),
102 recordAddr(rt::DispatchCtxName, &JITDispatchCtxSym)}))
116 Value *ReoptimizeTagPtr = Builder.CreatePointerCast(ReoptimizeTag, VoidPtrTy);
120 HelperFnTy, HelperFnAddr,
121 {JITDispatchPtr, JITDispatchCtxPtr, ReoptimizeTagPtr, MUID, CurVersion});
124 Builder.CreateRetVoid();
126 return BaseLayer.add(PlatformJD,
132 using ReoptimizeSPSSig = shared::SPSError(uint64_t,
uint32_t);
133 WFs[Mangle(
"__orc_rt_reoptimize_tag")] =
134 ES.wrapAsyncWithSPS<ReoptimizeSPSSig>(
this,
135 &ReOptimizeLayer::rt_reoptimize);
136 return ES.registerJITDispatchHandlers(PlatformJD, std::move(WFs));
141 auto &JD = R->getTargetJITDylib();
143 bool HasNonCallable =
false;
144 for (
auto &KV : R->getSymbols()) {
145 auto &Flags = KV.second;
146 if (!Flags.isCallable())
147 HasNonCallable =
true;
150 if (HasNonCallable) {
151 BaseLayer.emit(std::move(R), std::move(TSM));
155 auto &MUState = createMaterializationUnitState(TSM);
158 registerMaterializationUnitResource(Key, MUState);
160 ES.reportError(std::move(Err));
161 R->failMaterialization();
166 ProfilerFunc(*
this, MUState.getID(), MUState.getCurVersion(), TSM)) {
167 ES.reportError(std::move(Err));
168 R->failMaterialization();
173 emitMUImplSymbols(MUState, MUState.getCurVersion(), JD, std::move(TSM));
175 ES.reportError(InitialDests.takeError());
176 R->failMaterialization();
180 RSManager.emitRedirectableSymbols(std::move(R), std::move(*InitialDests));
193 if (
F.isDeclaration())
195 auto &BB =
F.getEntryBlock();
196 auto *IP = &*BB.getFirstInsertionPt();
212ReOptimizeLayer::emitMUImplSymbols(ReOptMaterializationUnitState &MUState,
217 MangleAndInterner Mangle(ES, M.getDataLayout());
219 if (!F.isDeclaration()) {
220 std::string NewName =
221 (F.getName() +
".__def__." + Twine(Version)).str();
222 RenamedMap[Mangle(F.getName())] = Mangle(NewName);
228 auto RT = JD.createResourceTracker();
230 JD.define(std::make_unique<BasicIRLayerMaterializationUnit>(
234 MUState.setResourceTracker(RT);
237 for (
auto [K, V] : RenamedMap)
238 LookupSymbols.
add(V);
243 if (
auto Err = ImplSymbols.takeError())
247 for (
auto [K, V] : RenamedMap)
253void ReOptimizeLayer::rt_reoptimize(SendErrorFn SendResult,
255 uint32_t CurVersion) {
256 auto &MUState = getMaterializationUnitState(MUID);
257 if (CurVersion < MUState.getCurVersion() || !MUState.tryStartReoptimize()) {
263 auto OldRT = MUState.getResourceTracker();
264 auto &JD = OldRT->getJITDylib();
266 if (
auto Err = ReOptFunc(*
this, MUID, CurVersion + 1, OldRT, TSM)) {
267 ES.reportError(std::move(Err));
268 MUState.reoptimizeFailed();
274 emitMUImplSymbols(MUState, CurVersion + 1, JD, std::move(TSM));
276 ES.reportError(SymbolDests.takeError());
277 MUState.reoptimizeFailed();
282 if (
auto Err = RSManager.redirect(JD, std::move(*SymbolDests))) {
283 ES.reportError(std::move(Err));
284 MUState.reoptimizeFailed();
289 MUState.reoptimizeSucceeded();
299 if (!ReoptimizeFunc) {
300 std::vector<Type *> ArgTys = {MUIDTy, VersionTy};
304 "__orc_rt_reoptimize", &M);
306 Constant *MUIDArg = ConstantInt::get(MUIDTy, MUID,
false);
307 Constant *CurVersionArg = ConstantInt::get(VersionTy, CurVersion,
false);
309 (void)IRB.
CreateCall(ReoptimizeFunc, {MUIDArg, CurVersionArg});
312ReOptimizeLayer::ReOptMaterializationUnitState &
313ReOptimizeLayer::createMaterializationUnitState(
const ThreadSafeModule &TSM) {
314 std::unique_lock<std::mutex> Lock(
Mutex);
316 MUStates.emplace(MUID,
319 return MUStates.at(MUID);
322ReOptimizeLayer::ReOptMaterializationUnitState &
324 std::unique_lock<std::mutex> Lock(
Mutex);
325 return MUStates.at(MUID);
328void ReOptimizeLayer::registerMaterializationUnitResource(
330 std::unique_lock<std::mutex> Lock(
Mutex);
331 MUResources[
Key].insert(State.getID());
335 std::unique_lock<std::mutex> Lock(Mutex);
336 for (
auto MUID : MUResources[K])
337 MUStates.erase(MUID);
339 MUResources.erase(K);
345 std::unique_lock<std::mutex> Lock(Mutex);
346 MUResources[DstK].insert_range(MUResources[SrcK]);
347 MUResources.erase(SrcK);
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
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.
static BasicBlock * Create(LLVMContext &Context, const Twine &Name="", Function *Parent=nullptr, BasicBlock *InsertBefore=nullptr)
Creates a new BasicBlock.
static LLVM_ABI Constant * getIntToPtr(Constant *C, Type *Ty, bool OnlyIfReduced=false)
This is an important base class in LLVM.
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.
Lightweight error class with error context and mandatory checking.
static ErrorSuccess success()
Create a success value.
Tagged union holding either a T or a Error.
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)
const Function & getFunction() const
@ InternalLinkage
Rename collisions when linking (static functions).
@ ExternalLinkage
Externally visible function.
Value * CreateICmpEQ(Value *LHS, Value *RHS, const Twine &Name="")
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args={}, const Twine &Name="", MDNode *FPMathTag=nullptr)
This provides a uniform API for creating instructions and inserting them into a basic block: either a...
static LLVM_ABI IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
A Module instance is used to store all the information related to an LLVM module.
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.
static LLVM_ABI IntegerType * getInt64Ty(LLVMContext &C)
static LLVM_ABI IntegerType * getInt32Ty(LLVMContext &C)
static LLVM_ABI Type * getVoidTy(LLVMContext &C)
static LLVM_ABI IntegerType * getInt8Ty(LLVMContext &C)
LLVM Value Representation.
LLVM_ABI void setName(const Twine &Name)
Change the name of the value.
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.
DenseMap< SymbolStringPtr, JITDispatchHandlerFunction > JITDispatchHandlerAssociationMap
A map associating tag names with asynchronous wrapper function implementations in the JIT.
Represents an address in the executor process.
uint64_t getValue() const
const IRSymbolMapper::ManglingOptions *& getManglingOptions() const
Get the mangling options for this layer.
Represents a JIT'd dynamic library.
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)
uint64_t ReOptMaterializationUnitID
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.
DenseMap< SymbolStringPtr, ExecutorSymbolDef > SymbolMap
A map from symbol names (as SymbolStringPtrs) to JITSymbols (address/flags pairs).
LLVM_ABI void lookupAndApply(unique_function< void(Error)> OnApplied, ExecutionSession &ES, LookupKind K, const JITDylibSearchOrder &SearchOrder, ArrayRef< LookupPrepareFn > PrepareFns)
Resolve the symbols contributed by every prepare function with a single lookup, then let each of thei...
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.
SmartMutex< false > Mutex
Mutex - A standard, always enforced mutex.
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.
void cantFail(Error Err, const char *Msg=nullptr)
Report a fatal error if Err is a failure value.
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 ...