Searched refs:LazyFunctionCreator (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp379 // If a LazyFunctionCreator is installed, use it to get/create the function.
381 if (LazyFunctionCreator) {
383 reinterpret_cast<uintptr_t>(LazyFunctionCreator(Name)));
620 /// If a LazyFunctionCreator is installed, use it to get/create the function.
621 if (LazyFunctionCreator)
622 if (void *RP = LazyFunctionCreator(Name))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h153 /// LazyFunctionCreator - If an unknown function is needed, this function
156 FunctionCreator LazyFunctionCreator; member in class:llvm::ExecutionEngine
492 LazyFunctionCreator = std::move(C);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp84 : DL(M->getDataLayout()), LazyFunctionCreator(nullptr) {
89 : DL(std::move(DL)), LazyFunctionCreator(nullptr) {

Completed in 127 milliseconds