HomeSort by: relevance | last modified time | path
    Searched refs:LazyFunctionCreator (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 385 // If a LazyFunctionCreator is installed, use it to get/create the function.
387 if (LazyFunctionCreator) {
389 reinterpret_cast<uintptr_t>(LazyFunctionCreator(Name)));
626 /// If a LazyFunctionCreator is installed, use it to get/create the function.
627 if (LazyFunctionCreator)
628 if (void *RP = LazyFunctionCreator(std::string(Name)))
  /src/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 148 /// LazyFunctionCreator - If an unknown function is needed, this function
151 FunctionCreator LazyFunctionCreator;
501 LazyFunctionCreator = std::move(C);
  /src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 81 : DL(M->getDataLayout()), LazyFunctionCreator(nullptr) {
86 : DL(std::move(DL)), LazyFunctionCreator(nullptr) {

Completed in 29 milliseconds