Home
last modified time | relevance | path

Searched refs:enableLog (Results 1 - 25 of 41) sorted by relevance

12

/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dpass.h246 bool enableLog = data->GetLog()->GetEnableMethodLog() && data->GetLog()->OutputType(); in Run() local
247 PreCompileChecker preCompileChecker(data, data->GetCircuit(), data->GetMethodName(), enableLog); in Run()
261 bool enableLog = data->GetLog()->GetEnableMethodLog() && data->GetLog()->OutputType(); in Run() local
263 PGOTypeInfer pgoTypeInfer(data->GetCircuit(), data->GetBuilder(), data->GetMethodName(), &chunk, enableLog); in Run()
278 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run() local
281 CombinedPassVisitor visitor(data->GetCircuit(), enableLog, data->GetMethodName(), &chunk); in Run()
285 CombinedPassVisitor Editvisitor(data->GetCircuit(), enableLog, data->GetMethodName(), &chunk); in Run()
305 bool enableLog = data->GetLog()->EnableMethodCIRLog(); in Run() local
308 InductionVariableAnalysis inductionVariableAnalysis(data->GetCircuit(), data->GetPassContext(), enableLog, in Run()
326 bool enableLog in Run() local
363 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
385 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
407 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
424 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
450 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
472 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
493 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
532 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
559 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
579 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
598 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
617 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
639 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
655 bool enableLog = data->GetLog()->EnableMethodCIRLog() || data->GetLog()->EnableMethodASMLog(); Run() local
678 bool enableLog = data->GetLog()->EnableMethodCIRLog() || data->GetLog()->EnableMethodASMLog(); Run() local
695 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
713 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
734 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
751 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
770 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
784 bool enableLog = data->GetLog()->EnableMethodCIRLog(); Run() local
796 CreateCodeGen(IRModule *module, bool enableLog) CreateCodeGen() argument
812 bool enableLog = data->GetLog()->EnableMethodCIRLog() || data->GetLog()->EnableMethodASMLog(); Run() local
833 bool enableLog = data->GetLog()->EnableMethodCIRLog() || data->GetLog()->EnableMethodASMLog(); Run() local
[all...]
H A Dstate_split_linearizer.h31 bool enableLog, const std::string& name, Chunk* chunk) in StateSplitLinearizer()
32 : enableLog_(enableLog), methodName_(name), circuit_(circuit), in StateSplitLinearizer()
33 graphLinearizer_(circuit, enableLog, name, chunk, false, true), in StateSplitLinearizer()
30 StateSplitLinearizer(CompilationEnv* env, Circuit *circuit, RPOVisitor *visitor, CompilationConfig *cmpCfg, bool enableLog, const std::string& name, Chunk* chunk) StateSplitLinearizer() argument
H A Dinduction_variable_analysis.h26 InductionVariableAnalysis(Circuit* circuit, PassContext* ctx, bool enableLog, in InductionVariableAnalysis() argument
28 : enableLog_(enableLog), methodName_(name), circuit_(circuit), in InductionVariableAnalysis()
30 graphLinearizer_(circuit, enableLog, name, chunk, false, true), isTraced_(isTraced) {} in InductionVariableAnalysis()
H A Dnumber_speculative_runner.h27 NumberSpeculativeRunner(Circuit *circuit, bool enableLog, bool enableArrayBoundsCheckElimination, in NumberSpeculativeRunner() argument
29 : circuit_(circuit), acc_(circuit), enableLog_(enableLog), in NumberSpeculativeRunner()
H A Dprecompile_checker.h25 PreCompileChecker(PassData* data, Circuit* circuit, const std::string& methodName, bool enableLog) in PreCompileChecker() argument
26 : data_(data), acc_(circuit), methodName_(methodName), enableLog_(enableLog) {} in PreCompileChecker()
H A Duseless_gate_elimination.h26 UselessGateElimination(Circuit* circuit, bool enableLog, std::string name) in UselessGateElimination() argument
27 : enableLog_(enableLog), methodName_(name), circuit_(circuit), in UselessGateElimination()
H A Dvalue_numbering.h27 ValueNumbering(Circuit *circuit, RPOVisitor *visitor, Chunk* chunk, bool useNewGVN, bool enableLog) in ValueNumbering() argument
29 enableLog_(enableLog) {} in ValueNumbering()
H A Dasync_function_lowering.h27 bool enableLog, const std::string& name) in AsyncFunctionLowering()
28 : bcBuilder_(bcBuilder), circuit_(circuit), builder_(circuit, cmpCfg), enableLog_(enableLog), in AsyncFunctionLowering()
26 AsyncFunctionLowering(BytecodeCircuitBuilder *bcBuilder, Circuit *circuit, CompilationConfig *cmpCfg, bool enableLog, const std::string& name) AsyncFunctionLowering() argument
H A Dloop_peeling.h30 LoopPeeling(BytecodeCircuitBuilder* bcBuilder, Circuit *circuit, bool enableLog, in LoopPeeling() argument
32 : bcBuilder_(bcBuilder), circuit_(circuit), acc_(circuit), enableLog_(enableLog), in LoopPeeling()
H A Dverifier.cpp479 bool Verifier::Run(const Circuit *circuit, const std::string& methodName, bool enableLog) in Run() argument
482 if (enableLog) { in Run()
492 if (enableLog) { in Run()
498 if (enableLog) { in Run()
504 if (enableLog) { in Run()
573 if (enableLog) { in Run()
581 if (enableLog) { in Run()
587 if (enableLog) { in Run()
594 if (enableLog) { in Run()
600 if (enableLog) { in Run()
[all...]
H A Dstub_compiler.cpp82 void CreateCodeGen(LLVMModule *module, bool enableLog) in CreateCodeGen() argument
84 llvmImpl_ = std::make_unique<LLVMIRGeneratorImpl>(module, enableLog); in CreateCodeGen()
89 bool enableLog = data->GetLog()->EnableMethodCIRLog() || data->GetLog()->OutputASM(); in Run() local
91 CreateCodeGen(stubModule, enableLog); in Run()
H A Dconstant_folding.h31 ConstantFolding(Circuit *circuit, RPOVisitor* visitor, CompilationConfig *cmpCfg, bool enableLog, in ConstantFolding() argument
34 enableLog_(enableLog), methodName_(name) {} in ConstantFolding()
H A Dts_hcr_opt_pass.h31 bool enableLog, in TSHCROptPass()
36 enableLog_(enableLog), in TSHCROptPass()
27 TSHCROptPass(Circuit* circuit, RPOVisitor *visitor, Chunk* chunk, PassContext *ctx, bool enableLog, const std::string &name) TSHCROptPass() argument
H A Darray_bounds_check_elimination.h29 ArrayBoundsCheckElimination(Circuit *circuit, bool enableLog, const std::string& name, Chunk* chunk) in ArrayBoundsCheckElimination() argument
30 : acc_(circuit), bounds_(chunk), circuit_(circuit), builder_(circuit), chunk_(chunk), enableLog_(enableLog), in ArrayBoundsCheckElimination()
31 graphLinearizer_(circuit, enableLog, name, chunk, true, true), methodName_(name), indexCheckInfo_(chunk) {} in ArrayBoundsCheckElimination()
H A Dinstruction_combine.h29 InstructionCombine(Circuit *circuit, RPOVisitor *visitor, Chunk *chunk, bool enableLog = false) in InstructionCombine()
30 : PassVisitor(circuit, chunk, visitor), builder_(circuit), enableLog_(enableLog) in InstructionCombine()
H A Dlexical_env_specialization_pass.h28 LexicalEnvSpecializationPass(Circuit* circuit, RPOVisitor* visitor, Chunk* chunk, bool enableLog) in LexicalEnvSpecializationPass() argument
30 notdomStlexvar_(chunk), notDomCall_(chunk_), enableLog_(enableLog), acc_(circuit) {} in LexicalEnvSpecializationPass()
H A Dntype_bytecode_lowering.h26 bool enableLog, const std::string& name, const CString& recordName) in NTypeBytecodeLowering()
32 enableLog_(enableLog), in NTypeBytecodeLowering()
25 NTypeBytecodeLowering(Circuit *circuit, PassContext *ctx, bool enableLog, const std::string& name, const CString& recordName) NTypeBytecodeLowering() argument
H A Dpost_schedule.h29 PostSchedule(Circuit *circuit, bool enableLog, const std::string &name, Chunk *chunk, bool fastBarrier = false) in PostSchedule() argument
30 : enableLog_(enableLog), methodName_(name), chunk_(chunk), circuit_(circuit), builder_(circuit), acc_(circuit), in PostSchedule()
H A Dstring_builder_optimizer.h29 bool enableLog, in StringBuilderOptimizer()
36 graphLinearizer_(circuit, enableLog, name, chunk, true, true), in StringBuilderOptimizer()
28 StringBuilderOptimizer(Circuit* circuit, bool enableLog, const std::string& name, CompilationConfig* cmpCfg, Chunk* chunk) StringBuilderOptimizer() argument
H A Dgraph_editor.h34 static void EliminateRedundantPhi(Circuit* circuit, bool enableLog, const std::string& methodName);
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/
H A Dlitecg_codegen.h41 LiteCGIRGeneratorImpl(LMIRModule *module, bool enableLog) : module_(module), enableLog_(enableLog) {} in LiteCGIRGeneratorImpl() argument
/arkcompiler/ets_runtime/ecmascript/stackmap/llvm/
H A Dllvm_stackmap_parser.h50 LLVMStackMapParser(LLVMStackMapInfo &stackMapInfo, bool enableLog = false) in LLVMStackMapParser()
52 enableLog_(enableLog) in LLVMStackMapParser()
/arkcompiler/ets_runtime/ecmascript/stackmap/
H A Dark_stackmap_parser.h32 explicit ArkStackMapParser(bool enableLog = false) in ArkStackMapParser()
34 enableLog_ = enableLog; in ArkStackMapParser()
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/
H A Dpgo_type_infer.h27 Chunk *chunk, bool enableLog) in PGOTypeInfer()
29 enableLog_(enableLog), profiler_(chunk) {} in PGOTypeInfer()
26 PGOTypeInfer(Circuit *circuit, BytecodeCircuitBuilder *builder, const std::string &name, Chunk *chunk, bool enableLog) PGOTypeInfer() argument
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/llvm/
H A Dllvm_codegen.h131 LLVMIRGeneratorImpl(LLVMModule *module, bool enableLog) in LLVMIRGeneratorImpl() argument
132 : module_(module), enableLog_(enableLog) {} in LLVMIRGeneratorImpl()

Completed in 9 milliseconds

12