Home
last modified time | relevance | path

Searched refs:profiling_info (Results 1 – 8 of 8) sorted by relevance

/art/tools/cpp-define-generator/
Dprofiling_info.def18 #include "jit/profiling_info.h"
Dasm_defines.def32 #include "profiling_info.def"
/art/runtime/jit/
Djit_code_cache.cc1766 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize); in InvalidateCompiledCodeFor() local
1768 if ((profiling_info != nullptr) && in InvalidateCompiledCodeFor()
1769 (profiling_info->GetSavedEntryPoint() == header->GetEntryPoint())) { in InvalidateCompiledCodeFor()
1771 method_entrypoint = profiling_info->GetSavedEntryPoint(); in InvalidateCompiledCodeFor()
1773 profiling_info->SetSavedEntryPoint(nullptr); in InvalidateCompiledCodeFor()
1783 ClearMethodCounter(method, /*was_warm=*/ profiling_info != nullptr); in InvalidateCompiledCodeFor()
Djit.cc1630 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize); in MethodEntered() local
1634 if ((profiling_info != nullptr) && in MethodEntered()
1635 (profiling_info->GetSavedEntryPoint() != nullptr) && in MethodEntered()
1638 method, profiling_info->GetSavedEntryPoint()); in MethodEntered()
/art/runtime/
Dinstrumentation.cc934 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize); in UpdateMethodsCodeImpl() local
937 if (profiling_info != nullptr) { in UpdateMethodsCodeImpl()
938 profiling_info->SetSavedEntryPoint(quick_code); in UpdateMethodsCodeImpl()
DAndroid.bp146 "jit/profiling_info.cc",
/art/runtime/interpreter/
Dinterpreter_common.cc88 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize); in UseFastInterpreterToInterpreterInvoke() local
89 if ((profiling_info != nullptr) && (profiling_info->GetSavedEntryPoint() != nullptr)) { in UseFastInterpreterToInterpreterInvoke()
/art/compiler/optimizing/
Dinliner.cc675 ProfilingInfo* profiling_info = spiis.GetProfilingInfo(); in GetInlineCacheJIT() local
677 if (profiling_info == nullptr) { in GetInlineCacheJIT()
687 *profiling_info->GetInlineCache(invoke_instruction->GetDexPc()), in GetInlineCacheJIT()