Home
last modified time | relevance | path

Searched refs:InterpCtor (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/Interpreter/
DInterpreter.h106 InterpCtor = create; in Register()
/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h117 InterpCtor = create; in Register()
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
DExecutionEngine.h145 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr); variable
/external/llvm/include/llvm/ExecutionEngine/
DExecutionEngine.h149 static ExecutionEngine *(*InterpCtor)(std::unique_ptr<Module> M, variable
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
DExecutionEngine.cpp54 ExecutionEngine *(*ExecutionEngine::InterpCtor)(Module *M, variable
488 if (ExecutionEngine::InterpCtor) in create()
489 return ExecutionEngine::InterpCtor(M, ErrorStr); in create()
/external/llvm/lib/ExecutionEngine/
DExecutionEngine.cpp59 ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M, variable
557 if (ExecutionEngine::InterpCtor) in create()
558 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr); in create()