Home
last modified time | relevance | path

Searched refs:current_code (Results 1 – 2 of 2) sorted by relevance

/art/runtime/entrypoints/
Dentrypoint_utils.cc200 const OatQuickMethodHeader* current_code = outer_method->GetOatQuickMethodHeader(caller_pc); in DoGetCalleeSaveMethodCaller() local
201 DCHECK(current_code != nullptr); in DoGetCalleeSaveMethodCaller()
202 DCHECK(current_code->IsOptimized()); in DoGetCalleeSaveMethodCaller()
203 uintptr_t native_pc_offset = current_code->NativeQuickPcOffset(caller_pc); in DoGetCalleeSaveMethodCaller()
204 CodeInfo code_info = current_code->GetOptimizedCodeInfo(); in DoGetCalleeSaveMethodCaller()
205 MethodInfo method_info = current_code->GetOptimizedMethodInfo(); in DoGetCalleeSaveMethodCaller()
/art/runtime/entrypoints/quick/
Dquick_trampoline_entrypoints.cc353 const OatQuickMethodHeader* current_code = (*caller_sp)->GetOatQuickMethodHeader(outer_pc); in GetCallingDexPc() local
354 uintptr_t outer_pc_offset = current_code->NativeQuickPcOffset(outer_pc); in GetCallingDexPc()
356 if (current_code->IsOptimized()) { in GetCallingDexPc()
357 CodeInfo code_info = current_code->GetOptimizedCodeInfo(); in GetCallingDexPc()
369 return current_code->ToDexPc(*caller_sp, outer_pc); in GetCallingDexPc()
381 const OatQuickMethodHeader* current_code = (*caller_sp)->GetOatQuickMethodHeader(outer_pc); in GetInvokeType() local
382 if (!current_code->IsOptimized()) { in GetInvokeType()
385 uintptr_t outer_pc_offset = current_code->NativeQuickPcOffset(outer_pc); in GetInvokeType()
386 CodeInfo code_info = current_code->GetOptimizedCodeInfo(); in GetInvokeType()
388 MethodInfo method_info = current_code->GetOptimizedMethodInfo(); in GetInvokeType()
[all …]