Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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()
/llvm-project-15.0.7/lldb/unittests/Core/
H A DMangledTest.cpp100 ConstString UnmangledName("puts"); in TEST() local
101 Mangled TheMangled(UnmangledName); in TEST()
/llvm-project-15.0.7/llvm/examples/SpeculativeJIT/
H A DSpeculativeJIT.cpp88 Expected<JITEvaluatedSymbol> lookup(StringRef UnmangledName) { in lookup() argument
89 return ES->lookup({&MainJD}, Mangle(UnmangledName)); in lookup()
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DLLJIT.h159 LLVMOrcLLJITMangleAndIntern(LLVMOrcLLJITRef J, const char *UnmangledName);
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp855 std::string LLJIT::mangle(StringRef UnmangledName) const { in mangle()
859 Mangler::getNameWithPrefix(MangledNameStream, UnmangledName, DL); in mangle()
H A DOrcV2CBindings.cpp1003 LLVMOrcLLJITMangleAndIntern(LLVMOrcLLJITRef J, const char *UnmangledName) { in LLVMOrcLLJITMangleAndIntern() argument
1005 unwrap(J)->mangleAndIntern(UnmangledName))); in LLVMOrcLLJITMangleAndIntern()