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.cc1872 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize); in InvalidateCompiledCodeFor() local
1874 if ((profiling_info != nullptr) && in InvalidateCompiledCodeFor()
1875 (profiling_info->GetSavedEntryPoint() == header->GetEntryPoint())) { in InvalidateCompiledCodeFor()
1877 method_entrypoint = profiling_info->GetSavedEntryPoint(); in InvalidateCompiledCodeFor()
1879 profiling_info->SetSavedEntryPoint(nullptr); in InvalidateCompiledCodeFor()
1889 ClearMethodCounter(method, /*was_warm=*/ profiling_info != nullptr); in InvalidateCompiledCodeFor()
Djit.cc1646 ProfilingInfo* profiling_info = method->GetProfilingInfo(kRuntimePointerSize); in MethodEntered() local
1650 if ((profiling_info != nullptr) && in MethodEntered()
1651 (profiling_info->GetSavedEntryPoint() != nullptr) && in MethodEntered()
1654 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.bp153 "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.cc682 ProfilingInfo* profiling_info = spiis.GetProfilingInfo(); in GetInlineCacheJIT() local
684 if (profiling_info == nullptr) { in GetInlineCacheJIT()
694 *profiling_info->GetInlineCache(invoke_instruction->GetDexPc()), in GetInlineCacheJIT()