HomeSort by relevance Sort by last modified time
    Searched refs:LazyFunctionCreator (Results 1 - 4 of 4) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
ExecutionEngine.h 151 /// LazyFunctionCreator - If an unknown function is needed, this function
154 void *(*LazyFunctionCreator)(const std::string &);
435 LazyFunctionCreator = P;
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 337 /// If a LazyFunctionCreator is installed, use it to get/create the function.
338 if (LazyFunctionCreator)
339 if (void *RP = LazyFunctionCreator(Name))
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 731 /// If a LazyFunctionCreator is installed, use it to get/create the function.
732 if (LazyFunctionCreator)
733 if (void *RP = LazyFunctionCreator(Name))
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 59 LazyFunctionCreator(0),
    [all...]

Completed in 1275 milliseconds