Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/ExecutionEngine/Orc/
H A DLLJIT.h131 Expected<ExecutorAddr> lookup(JITDylib &JD, StringRef UnmangledName) { in lookup() argument
132 return lookupLinkerMangled(JD, mangle(UnmangledName)); in lookup()
136 Expected<ExecutorAddr> lookup(StringRef UnmangledName) { in lookup() argument
137 return lookup(*Main, UnmangledName); in lookup()
181 std::string mangle(StringRef UnmangledName) const;
184 SymbolStringPtr mangleAndIntern(StringRef UnmangledName) const { in mangleAndIntern() argument
185 return ES->intern(mangle(UnmangledName)); in mangleAndIntern()
/openbsd-src/gnu/llvm/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp88 Expected<JITEvaluatedSymbol> lookup(StringRef UnmangledName) { in lookup() argument
89 return ES->lookup({&MainJD}, Mangle(UnmangledName)); in lookup()
/openbsd-src/gnu/llvm/llvm/include/llvm-c/
H A DLLJIT.h159 LLVMOrcLLJITMangleAndIntern(LLVMOrcLLJITRef J, const char *UnmangledName);
/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp914 std::string LLJIT::mangle(StringRef UnmangledName) const { in mangle()
918 Mangler::getNameWithPrefix(MangledNameStream, UnmangledName, DL); in mangle()
H A DOrcV2CBindings.cpp1006 LLVMOrcLLJITMangleAndIntern(LLVMOrcLLJITRef J, const char *UnmangledName) { in LLVMOrcLLJITMangleAndIntern() argument
1008 unwrap(J)->mangleAndIntern(UnmangledName))); in LLVMOrcLLJITMangleAndIntern()