Home | History | Annotate | Download | only in linker

Lines Matching defs:quick_code

3373   const uint8_t* quick_code;
3378 quick_code = reinterpret_cast<const uint8_t*>(quick_oat_entry_point);
3381 quick_code = GetOatAddressForOffset(quick_oat_code_offset, image_info);
3385 if (quick_code != nullptr && (!method->IsStatic() || method->IsConstructor() ||
3388 } else if (quick_code == nullptr && method->IsNative() &&
3391 quick_code = GetOatAddress(StubType::kQuickGenericJNITrampoline);
3392 } else if (quick_code == nullptr && !method->IsNative()) {
3394 quick_code = GetOatAddress(StubType::kQuickToInterpreterBridge);
3400 quick_code = GetOatAddress(StubType::kQuickResolutionTrampoline);
3402 if (!IsInBootOatFile(quick_code)) {
3403 // DCHECK_GE(quick_code, oat_data_begin_);
3405 return quick_code;
3431 const void* quick_code;
3436 quick_code = GetOatAddress(StubType::kQuickIMTConflictTrampoline);
3439 quick_code = GetOatAddress(StubType::kQuickResolutionTrampoline);
3452 quick_code = nullptr;
3459 quick_code = GetOatAddress(StubType::kQuickToInterpreterBridge);
3463 quick_code = GetQuickCode(orig, image_info, &quick_is_interpreted);
3476 if (quick_code != nullptr) {
3477 copy->SetEntryPointFromQuickCompiledCodePtrSize(quick_code, target_ptr_size_);