Home
last modified time | relevance | path

Searched refs:StubIndexes (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DIndirectionUtils.h406 auto I = StubIndexes.find(Name); in findStub()
407 if (I == StubIndexes.end()) in findStub()
421 auto I = StubIndexes.find(Name); in findPointer()
422 if (I == StubIndexes.end()) in findPointer()
435 auto I = StubIndexes.find(Name); in updatePointer()
436 assert(I != StubIndexes.end() && "No stub pointer for symbol"); in updatePointer()
467 StubIndexes[StubName] = std::make_pair(Key, StubFlags); in createStubInternal()
475 StringMap<std::pair<StubKey, JITSymbolFlags>> StubIndexes; variable