Home
last modified time | relevance | path

Searched refs:logOpt (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dcompiler_log.cpp19 CompilerLog::CompilerLog(const std::string &logOpt) in CompilerLog() argument
21 … outputCIR_ = (logOpt.find("cir") != std::string::npos) || (logOpt.find("0") != std::string::npos); in CompilerLog()
22 …outputLLIR_ = (logOpt.find("llir") != std::string::npos) || (logOpt.find("1") != std::string::npos… in CompilerLog()
23 … outputASM_ = (logOpt.find("asm") != std::string::npos) || (logOpt.find("2") != std::string::npos); in CompilerLog()
24 …outputType_ = (logOpt.find("type") != std::string::npos) || (logOpt.find("3") != std::string::npos… in CompilerLog()
25 allMethod_ = logOpt.find("all") != std::string::npos; in CompilerLog()
26 …cerMethod_ = (logOpt.find("all") == std::string::npos) && (logOpt.find("cer") != std::string::npos… in CompilerLog()
27 …noneMethod_ = (logOpt.find("all") == std::string::npos) && (logOpt.find("cer") == std::string::npo… in CompilerLog()
Dstub_compiler.cpp186 panda::ecmascript::kungfu::CompilerLog logOpt(logOption); in main() local
188 …panda::ecmascript::kungfu::StubCompiler compiler(triple, stubFile, optLevel, relocMode, &logOpt, &… in main()
Dcompiler_log.h40 explicit CompilerLog(const std::string &logOpt);