Home
last modified time | relevance | path

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

/external/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
DLLJIT.h131 Expected<JITEvaluatedSymbol> lookup(JITDylib &JD, StringRef UnmangledName) { in lookup() argument
132 return lookupLinkerMangled(JD, mangle(UnmangledName)); in lookup()
136 Expected<JITEvaluatedSymbol> 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()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DLLJIT.h102 Expected<JITEvaluatedSymbol> lookup(JITDylib &JD, StringRef UnmangledName) { in lookup() argument
103 return lookupLinkerMangled(JD, mangle(UnmangledName)); in lookup()
107 Expected<JITEvaluatedSymbol> lookup(StringRef UnmangledName) { in lookup() argument
108 return lookup(Main, UnmangledName); in lookup()
133 std::string mangle(StringRef UnmangledName);
/external/llvm-project/llvm/examples/SpeculativeJIT/
DSpeculativeJIT.cpp84 Expected<JITEvaluatedSymbol> lookup(StringRef UnmangledName) { in lookup() argument
85 return ES->lookup({&MainJD}, Mangle(UnmangledName)); in lookup()
/external/llvm-project/llvm/include/llvm-c/
DLLJIT.h149 LLVMOrcLLJITMangleAndIntern(LLVMOrcLLJITRef J, const char *UnmangledName);
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DLLJIT.cpp169 std::string LLJIT::mangle(StringRef UnmangledName) { in mangle() argument
173 Mangler::getNameWithPrefix(MangledNameStream, UnmangledName, DL); in mangle()
/external/llvm-project/llvm/lib/ExecutionEngine/Orc/
DOrcV2CBindings.cpp465 LLVMOrcLLJITMangleAndIntern(LLVMOrcLLJITRef J, const char *UnmangledName) { in LLVMOrcLLJITMangleAndIntern() argument
467 unwrap(J)->mangleAndIntern(UnmangledName))); in LLVMOrcLLJITMangleAndIntern()
DLLJIT.cpp1120 std::string LLJIT::mangle(StringRef UnmangledName) const { in mangle()
1124 Mangler::getNameWithPrefix(MangledNameStream, UnmangledName, DL); in mangle()