/arkcompiler/runtime_core/static_core/runtime/bridge/arch/arm/ |
H A D | compiled_code_to_interpreter_bridge_dyn_arm.S | 25 // bool DecrementHotnessCounter(Method*) 26 .extern DecrementHotnessCounter
|
H A D | compiled_code_to_interpreter_bridge_arm.S | 27 // bool DecrementHotnessCounter(Method *method); 28 .extern DecrementHotnessCounter 81 // Before we call DecrementHotnessCounter we should set pointer to C2I frame in the TLS, 88 blx DecrementHotnessCounter
|
H A D | compiled_code_to_interpreter_bridge_armhf.S | 27 // bool DecrementHotnessCounter(Method *method); 28 .extern DecrementHotnessCounter 74 // Before we call DecrementHotnessCounter we should set pointer to C2I frame in the TLS, 83 blx DecrementHotnessCounter
|
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/x86/ |
H A D | compiled_code_to_interpreter_bridge_x86.S | 27 .extern DecrementHotnessCounter 42 calll DecrementHotnessCounter
|
/arkcompiler/runtime_core/static_core/runtime/interpreter/ |
H A D | instruction_handler_base.h | 299 method->DecrementHotnessCounter<IS_CALL>(0, nullptr); in UpdateHotness() 339 method->DecrementHotnessCounter<false>(0, nullptr); in UpdateHotnessOSR() 342 return method->DecrementHotnessCounter<false>(this->GetBytecodeOffset() + offset, &this->GetAcc(), true); in UpdateHotnessOSR()
|
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/amd64/ |
H A D | compiled_code_to_interpreter_bridge_amd64.S | 30 .extern DecrementHotnessCounter 69 // Before we call DecrementHotnessCounter we should set pointer to C2I frame in the TLS, 78 callq DecrementHotnessCounter@plt
|
/arkcompiler/runtime_core/static_core/runtime/bridge/arch/aarch64/ |
H A D | compiled_code_to_interpreter_bridge_aarch64.S | 30 .extern DecrementHotnessCounter 76 // Before we call DecrementHotnessCounter we should set pointer to C2I frame in the TLS, 84 bl DecrementHotnessCounter
|
/arkcompiler/runtime_core/static_core/runtime/include/ |
H A D | method-inl.h | 405 DecrementHotnessCounter<true>(thread, 0, nullptr); in InvokeImpl() 455 inline bool Method::DecrementHotnessCounter(ManagedThread *thread, uintptr_t bytecodeOffset, in DecrementHotnessCounter() function in ark::Method 462 DecrementHotnessCounter(); in DecrementHotnessCounter() 511 DecrementHotnessCounter(); in DecrementHotnessCounter() 534 inline bool Method::DecrementHotnessCounter(uintptr_t bytecodeOffset, AccVRegisterPtrT acc, bool osr, TaggedValue func) in DecrementHotnessCounter() function in ark::Method 536 return DecrementHotnessCounter<IS_CALL>(ManagedThread::GetCurrent(), bytecodeOffset, acc, osr, func); in DecrementHotnessCounter()
|
H A D | method.h | 333 inline NO_THREAD_SANITIZE void DecrementHotnessCounter() in DecrementHotnessCounter() function in ark::Method::VerificationStage 349 NO_THREAD_SANITIZE bool DecrementHotnessCounter(uintptr_t bytecodeOffset, [[maybe_unused]] AccVRegisterPtrT cc, 354 NO_THREAD_SANITIZE bool DecrementHotnessCounter(ManagedThread *thread, uintptr_t bytecodeOffset,
|
/arkcompiler/runtime_core/static_core/runtime/entrypoints/ |
H A D | entrypoints.cpp | 1353 extern "C" bool DecrementHotnessCounter(Method *method, ManagedThread *thread) in DecrementHotnessCounter() function 1355 method->DecrementHotnessCounter<true>(thread, 0, nullptr); in DecrementHotnessCounter() 1364 method->DecrementHotnessCounter<true>(thread, 0, nullptr, false, funcObj); in DecrementHotnessCounterDyn() 1374 method->DecrementHotnessCounter<false>(thread, 0, nullptr); in CallCompilerSlowPath() 1385 return method->DecrementHotnessCounter<false>(thread, insOffset + offset, &frame->GetAcc(), true); in CallCompilerSlowPathOSR() 1388 method->DecrementHotnessCounter<false>(thread, 0, nullptr); in CallCompilerSlowPathOSR()
|