Searched defs:InterpCtor (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/ExecutionEngine/
H A DExecutionEngine.h126 friend class EngineBuilder; // To allow access to JITCtor and InterpCtor.
149 static ExecutionEngine *(*InterpCtor)(std::unique_ptr<Module> M, member in class:llvm::ExecutionEngine
/external/swiftshader/third_party/LLVM/include/llvm/ExecutionEngine/
H A DExecutionEngine.h116 friend class EngineBuilder; // To allow access to JITCtor and InterpCtor.
145 static ExecutionEngine *(*InterpCtor)(Module *M, std::string *ErrorStr); member in class:llvm::ExecutionEngine
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngine.cpp59 ExecutionEngine *(*ExecutionEngine::InterpCtor)(std::unique_ptr<Module> M, variable
557 if (ExecutionEngine::InterpCtor)
558 return ExecutionEngine::InterpCtor(std::move(M), ErrorStr);
/external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
H A DExecutionEngine.cpp54 ExecutionEngine *(*ExecutionEngine::InterpCtor)(Module *M, variable
488 if (ExecutionEngine::InterpCtor)
489 return ExecutionEngine::InterpCtor(M, ErrorStr);

Completed in 152 milliseconds