Lines Matching refs:quick_code
2413 const uint8_t* quick_code;
2418 quick_code = reinterpret_cast<const uint8_t*>(quick_oat_entry_point);
2421 quick_code = GetOatAddressForOffset(quick_oat_code_offset, image_info);
2425 if (quick_code != nullptr && (!method->IsStatic() || method->IsConstructor() ||
2428 } else if (quick_code == nullptr && method->IsNative() &&
2431 quick_code = GetOatAddress(kOatAddressQuickGenericJNITrampoline);
2432 } else if (quick_code == nullptr && !method->IsNative()) {
2434 quick_code = GetOatAddress(kOatAddressQuickToInterpreterBridge);
2440 quick_code = GetOatAddress(kOatAddressQuickResolutionTrampoline);
2442 if (!IsInBootOatFile(quick_code)) {
2443 // DCHECK_GE(quick_code, oat_data_begin_);
2445 return quick_code;
2504 const uint8_t* quick_code = GetQuickCode(orig, image_info, &quick_is_interpreted);
2505 copy->SetEntryPointFromQuickCompiledCodePtrSize(quick_code, target_ptr_size_);