Searched refs:RunningState (Results 1 - 8 of 8) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/tests/ |
H A D | samples_record_test.cpp | 29 std::string AddRunningStateTest(char *functionName, RunningState state, kungfu::DeoptType type) in AddRunningStateTest() 39 void StatisticStateTimeTest(int timeDelta, RunningState state) in StatisticStateTimeTest() 107 std::string result = samplesRecord.AddRunningStateTest(funcName, RunningState::AINT_D, in HWTEST_F_L0() 111 result = samplesRecord.AddRunningStateTest(funcName, RunningState::GC, in HWTEST_F_L0() 115 result = samplesRecord.AddRunningStateTest(funcName, RunningState::CINT, in HWTEST_F_L0() 119 result = samplesRecord.AddRunningStateTest(funcName, RunningState::AINT, in HWTEST_F_L0() 123 result = samplesRecord.AddRunningStateTest(funcName, RunningState::AOT, in HWTEST_F_L0() 127 result = samplesRecord.AddRunningStateTest(funcName, RunningState::BUILTIN, in HWTEST_F_L0() 131 result = samplesRecord.AddRunningStateTest(funcName, RunningState::NAPI, in HWTEST_F_L0() 135 result = samplesRecord.AddRunningStateTest(funcName, RunningState in HWTEST_F_L0() [all...] |
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/ |
H A D | js_stackgetter.cpp | 182 RunningState JsStackGetter::GetRunningState(const FrameIterator &it, const EcmaVM *vm, in GetRunningState() 192 return RunningState::GC; in GetRunningState() 195 return RunningState::RUNTIME; in GetRunningState() 200 return RunningState::NAPI; in GetRunningState() 203 return function->GetNativeFunctionExtraInfo().CheckIsJSNativePointer() ? RunningState::ARKUI_ENGINE : in GetRunningState() 204 RunningState::BUILTIN; in GetRunningState() 207 return RunningState::JIT; in GetRunningState() 210 return RunningState::AOT; in GetRunningState() 217 return RunningState::AINT_D; in GetRunningState() 219 return RunningState in GetRunningState() [all...] |
H A D | js_stackgetter.h | 26 enum class RunningState : size_t { class 42 RunningState state = RunningState::OTHER; 88 static RunningState GetRunningState(const FrameIterator &it, const EcmaVM *vm, bool isNative,
|
/arkcompiler/ets_runtime/ecmascript/dfx/cpu_profiler/ |
H A D | samples_record.cpp | 109 if (timeDelta > static_cast<int>(timeDeltaThreshold_) && previousState_ != RunningState::NAPI) { in AddSample() 114 previousState_ = RunningState::OTHER; in AddSample() 130 if (timeDelta > static_cast<int>(timeDeltaThreshold_) && previousState_ != RunningState::NAPI) { in AddEmptyStackSample() 135 previousState_ = RunningState::OTHER; in AddEmptyStackSample() 139 previousState_ = RunningState::OTHER; in AddEmptyStackSample() 251 std::string SamplesRecord::AddRunningState(char *functionName, RunningState state, kungfu::DeoptType type) in AddRunningState() 255 case RunningState::AINT_D: in AddRunningState() 258 case RunningState::GC: in AddRunningState() 261 case RunningState::CINT: in AddRunningState() 266 case RunningState in AddRunningState() [all...] |
H A D | samples_record.h | 185 std::string AddRunningState(char *functionName, RunningState state, kungfu::DeoptType type);
188 void StatisticStateTime(int timeDelta, RunningState state);
192 RunningState previousState_ = RunningState::OTHER;
|
H A D | cpu_profiler.cpp | 341 methodKey.state = RunningState::NAPI; in GetStackCallNapi()
|
/arkcompiler/ets_runtime/ecmascript/dfx/hprof/ |
H A D | heap_sampling.cpp | 157 std::string HeapSampling::AddRunningState(char *functionName, RunningState state, kungfu::DeoptType type) in AddRunningState() 160 if (state == RunningState::AOT && type != kungfu::DeoptType::NONE) { in AddRunningState() 161 state = RunningState::AINT; in AddRunningState() 163 if (state == RunningState::BUILTIN) { in AddRunningState()
|
H A D | heap_sampling.h | 76 std::string AddRunningState(char *functionName, RunningState state, kungfu::DeoptType type);
|
Completed in 6 milliseconds