/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | pass.h | 245 TimeScope timescope("PreCompileCheckPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 260 TimeScope timescope("PGOTypeInferPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 277 TimeScope timescope("EscapeAnalysisPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 303 TimeScope timescope("InductionVariableAnalysisPass", data->GetMethodName(), in Run() 324 TimeScope timescope("TypeBytecodeLoweringPass", data->GetMethodName(), in Run() 361 TimeScope timescope("NTypeBytecodeLoweringPass", data->GetMethodName(), in Run() 384 TimeScope timescope("StringOptimizationPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 406 TimeScope timescope("TypeHCRLoweringPass", data->GetMethodName(), data->GetMethodOffset(), data->GetLog()); in Run() 422 TimeScope timescope("TypedNativeInlineLoweringPass", data->GetMethodName(), data->GetMethodOffset(), in Run() 449 TimeScope timescop in Run() [all...] |
H A D | compiler_log.h | 183 class TimeScope : public ClockScope {
class 185 TimeScope(std::string name, std::string methodName, uint32_t methodOffset, CompilerLog* log);
186 TimeScope(std::string name, CompilerLog* log);
187 ~TimeScope();
|
H A D | compiler_log.cpp | 88 TimeScope::TimeScope(std::string name, std::string methodName, uint32_t methodOffset, CompilerLog* log) in TimeScope() function in panda::ecmascript::kungfu::TimeScope 99 TimeScope::TimeScope(std::string name, CompilerLog* log) in TimeScope() function in panda::ecmascript::kungfu::TimeScope 110 TimeScope::~TimeScope() in ~TimeScope() 125 const std::string TimeScope::GetShortName(const std::string& methodName) in GetShortName()
|
H A D | pass_manager.cpp | 133 TimeScope timeScope("BytecodeToCircuit", methodName, methodOffset, log_); in Compile() 312 TimeScope timeScope("BytecodeToCircuit", methodName, methodOffset, log_);
|
H A D | file_generators.cpp | 593 TimeScope timescope("LLVMIROpt", const_cast<CompilerLog *>(log_)); in CompileLatestModuleThenDestroy() 598 TimeScope timescope("LLVMCodeGen", const_cast<CompilerLog *>(log_)); in CompileLatestModuleThenDestroy() 787 TimeScope timescope("LLVMCodeGenPass-AI", const_cast<CompilerLog *>(log_)); in SaveSnapshotFile()
|
H A D | ts_inline_lowering.cpp | 235 TimeScope timeScope("BytecodeToCircuit", methodName, method->GetMethodId().GetOffset(), log); in InlineCall()
|
/arkcompiler/ets_runtime/ecmascript/jit/ |
H A D | jit.h | 126 class TimeScope : public ClockScope { class in panda::ecmascript::Jit 128 explicit TimeScope(EcmaVM *vm, CString message, CompilerTier tier = CompilerTier::FAST, bool outPutLog = true, in TimeScope() function in panda::ecmascript::Jit::TimeScope 131 explicit TimeScope(EcmaVM *vm) in TimeScope() function in panda::ecmascript::Jit::TimeScope 133 PUBLIC_API ~TimeScope(); 182 TimeScope scope_;
|
H A D | jit.cpp | 387 TimeScope scope(vm, msg, tier, true, true); in Compile() 616 Jit::TimeScope::~TimeScope() in ~TimeScope()
|
H A D | jit_task.cpp | 408 Jit::TimeScope scope(jitTask_->GetHostThread()->GetEcmaVM(), info, jitTask_->GetCompilerTier()); in Run()
|