/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | pass.h | 246 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 D | state_split_linearizer.h | 31 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 D | induction_variable_analysis.h | 26 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 D | number_speculative_runner.h | 27 NumberSpeculativeRunner(Circuit *circuit, bool enableLog, bool enableArrayBoundsCheckElimination, in NumberSpeculativeRunner() argument 29 : circuit_(circuit), acc_(circuit), enableLog_(enableLog), in NumberSpeculativeRunner()
|
H A D | precompile_checker.h | 25 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 D | useless_gate_elimination.h | 26 UselessGateElimination(Circuit* circuit, bool enableLog, std::string name) in UselessGateElimination() argument 27 : enableLog_(enableLog), methodName_(name), circuit_(circuit), in UselessGateElimination()
|
H A D | value_numbering.h | 27 ValueNumbering(Circuit *circuit, RPOVisitor *visitor, Chunk* chunk, bool useNewGVN, bool enableLog) in ValueNumbering() argument 29 enableLog_(enableLog) {} in ValueNumbering()
|
H A D | async_function_lowering.h | 27 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 D | loop_peeling.h | 30 LoopPeeling(BytecodeCircuitBuilder* bcBuilder, Circuit *circuit, bool enableLog, in LoopPeeling() argument 32 : bcBuilder_(bcBuilder), circuit_(circuit), acc_(circuit), enableLog_(enableLog), in LoopPeeling()
|
H A D | verifier.cpp | 479 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 D | stub_compiler.cpp | 82 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 D | constant_folding.h | 31 ConstantFolding(Circuit *circuit, RPOVisitor* visitor, CompilationConfig *cmpCfg, bool enableLog, in ConstantFolding() argument 34 enableLog_(enableLog), methodName_(name) {} in ConstantFolding()
|
H A D | ts_hcr_opt_pass.h | 31 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 D | array_bounds_check_elimination.h | 29 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 D | instruction_combine.h | 29 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 D | lexical_env_specialization_pass.h | 28 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 D | ntype_bytecode_lowering.h | 26 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 D | post_schedule.h | 29 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 D | string_builder_optimizer.h | 29 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 D | graph_editor.h | 34 static void EliminateRedundantPhi(Circuit* circuit, bool enableLog, const std::string& methodName);
|
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/ |
H A D | litecg_codegen.h | 41 LiteCGIRGeneratorImpl(LMIRModule *module, bool enableLog) : module_(module), enableLog_(enableLog) {} in LiteCGIRGeneratorImpl() argument
|
/arkcompiler/ets_runtime/ecmascript/stackmap/llvm/ |
H A D | llvm_stackmap_parser.h | 50 LLVMStackMapParser(LLVMStackMapInfo &stackMapInfo, bool enableLog = false) in LLVMStackMapParser() 52 enableLog_(enableLog) in LLVMStackMapParser()
|
/arkcompiler/ets_runtime/ecmascript/stackmap/ |
H A D | ark_stackmap_parser.h | 32 explicit ArkStackMapParser(bool enableLog = false) in ArkStackMapParser() 34 enableLog_ = enableLog; in ArkStackMapParser()
|
/arkcompiler/ets_runtime/ecmascript/compiler/type_inference/ |
H A D | pgo_type_infer.h | 27 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 D | llvm_codegen.h | 131 LLVMIRGeneratorImpl(LLVMModule *module, bool enableLog)
in LLVMIRGeneratorImpl() argument 132 : module_(module), enableLog_(enableLog) {}
in LLVMIRGeneratorImpl()
|