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

/freebsd-10.0-release/contrib/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h150 /// LazyFunctionCreator - If an unknown function is needed, this function
153 void *(*LazyFunctionCreator)(const std::string &); member in class:llvm::ExecutionEngine
431 LazyFunctionCreator = P;
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/MCJIT/
H A DMCJIT.cpp337 /// If a LazyFunctionCreator is installed, use it to get/create the function.
338 if (LazyFunctionCreator)
339 if (void *RP = LazyFunctionCreator(Name))
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/JIT/
H A DJIT.cpp731 /// If a LazyFunctionCreator is installed, use it to get/create the function.
732 if (LazyFunctionCreator)
733 if (void *RP = LazyFunctionCreator(Name))
/freebsd-10.0-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp58 LazyFunctionCreator(0),

Completed in 119 milliseconds