Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/OProfileJIT/
DOProfileWrapper.cpp81 DynamicLibrary::SearchForAddressOfSymbol("op_open_agent"); in initialize()
83 DynamicLibrary::SearchForAddressOfSymbol("op_close_agent"); in initialize()
85 DynamicLibrary::SearchForAddressOfSymbol("op_write_native_code"); in initialize()
87 DynamicLibrary::SearchForAddressOfSymbol("op_write_debug_line_info"); in initialize()
89 DynamicLibrary::SearchForAddressOfSymbol("op_unload_native_code"); in initialize()
91 DynamicLibrary::SearchForAddressOfSymbol("op_major_version"); in initialize()
93 DynamicLibrary::SearchForAddressOfSymbol("op_minor_version"); in initialize()
/external/llvm/include/llvm/Support/
DDynamicLibrary.h88 static void *SearchForAddressOfSymbol(const char *symbolName);
91 static void *SearchForAddressOfSymbol(const std::string &symbolName) { in SearchForAddressOfSymbol() function
92 return SearchForAddressOfSymbol(symbolName.c_str()); in SearchForAddressOfSymbol()
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRTDyldMemoryManager.cpp58 llvm::sys::DynamicLibrary::SearchForAddressOfSymbol("__register_frame"); in __register_frame()
70 *(void **)&df = llvm::sys::DynamicLibrary::SearchForAddressOfSymbol( in __deregister_frame()
276 if (void *Ptr = sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr + 1)) in getSymbolAddressInProcess()
281 return (uint64_t)sys::DynamicLibrary::SearchForAddressOfSymbol(NameStr); in getSymbolAddressInProcess()
/external/llvm/lib/Support/
DDynamicLibrary.cpp111 void* DynamicLibrary::SearchForAddressOfSymbol(const char *symbolName) { in SearchForAddressOfSymbol() function in DynamicLibrary
183 return llvm::sys::DynamicLibrary::SearchForAddressOfSymbol(symbolName); in LLVMSearchForAddressOfSymbol()
/external/llvm/unittests/ExecutionEngine/MCJIT/
DMCJITTest.cpp225 llvm::sys::DynamicLibrary::SearchForAddressOfSymbol(str.c_str()); in TEST_F()
265 llvm::sys::DynamicLibrary::SearchForAddressOfSymbol(str.c_str()); in TEST_F()
/external/llvm/lib/Support/Windows/
DDynamicLibrary.inc126 void* DynamicLibrary::SearchForAddressOfSymbol(const char* symbolName) {
178 return SearchForAddressOfSymbol(symbolName);
/external/llvm/lib/ExecutionEngine/Interpreter/
DExternalFunctions.cpp104 FnPtr = (ExFunc)(intptr_t)sys::DynamicLibrary::SearchForAddressOfSymbol( in lookupFunction()
265 sys::DynamicLibrary::SearchForAddressOfSymbol(F->getName()); in callExternalFunction()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp1300 sys::DynamicLibrary::SearchForAddressOfSymbol(GV.getName())) in emitGlobals()