Lines Matching refs:Compiler
118 const char *Compiler::GetErrorString(enum ErrorCode pErrCode) { in GetErrorString()
161 Compiler::Compiler() : mTarget(nullptr), mEnableOpt(true) { in Compiler() function in Compiler
165 Compiler::Compiler(const CompilerConfig &pConfig) : mTarget(nullptr), in Compiler() function in Compiler
179 enum Compiler::ErrorCode Compiler::config(const CompilerConfig &pConfig) { in config()
214 Compiler::~Compiler() { in ~Compiler()
221 enum Compiler::ErrorCode Compiler::runPasses(Script &script, in runPasses()
301 enum Compiler::ErrorCode Compiler::compile(Script &script, in compile()
368 bool Compiler::addInternalizeSymbolsPass(Script &script, llvm::legacy::PassManager &pPM) { in addInternalizeSymbolsPass()
458 void Compiler::addInvokeHelperPass(llvm::legacy::PassManager &pPM) { in addInvokeHelperPass()
465 void Compiler::addDebugInfoPass(Script &script, llvm::legacy::PassManager &pPM) { in addDebugInfoPass()
470 void Compiler::addExpandKernelPass(llvm::legacy::PassManager &pPM) { in addExpandKernelPass()
476 void Compiler::addGlobalInfoPass(Script &script, llvm::legacy::PassManager &pPM) { in addGlobalInfoPass()
483 void Compiler::addInvariantPass(llvm::legacy::PassManager &pPM) { in addInvariantPass()
489 enum Compiler::ErrorCode Compiler::screenGlobalFunctions(Script &script) { in screenGlobalFunctions()
513 void Compiler::translateGEPs(Script &script) { in translateGEPs()