Home
last modified time | relevance | path

Searched refs:GetQuickCode (Results 1 – 17 of 17) sorted by relevance

/art/runtime/
Doat_file-inl.h53 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFrameSizeInBytes()
61 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetCoreSpillMask()
69 const void* code = EntryPointToCodePointer(GetQuickCode()); in GetFpSpillMask()
113 inline const void* OatFile::OatMethod::GetQuickCode() const { in GetQuickCode() function
Doat_file.h161 const void* GetQuickCode() const;
Dart_method.cc642 const void* oat_entry_point = oat_method.GetQuickCode(); in GetOatQuickMethodHeader()
666 return oat_method.GetQuickCode(); in GetOatMethodQuickCode()
Doat_file.cc2161 method->SetEntryPointFromQuickCompiledCode(GetQuickCode()); in LinkMethod()
/art/compiler/
Dcompiled_method-inl.h28 inline ArrayRef<const uint8_t> CompiledCode::GetQuickCode() const { in GetQuickCode() function
Dcommon_compiler_test.cc53 if (compiled_method != nullptr && compiled_method->GetQuickCode().size() != 0u) { in MakeExecutable()
54 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in MakeExecutable()
Dcompiled_method.h51 ArrayRef<const uint8_t> GetQuickCode() const;
/art/compiler/driver/
Dcompiled_method_storage_test.cc86 ASSERT_EQ(same_code, lhs->GetQuickCode().data() == rhs->GetQuickCode().data()) in TEST()
/art/dex2oat/linker/
Drelative_patcher_test.h137 const auto code = compiled_method->GetQuickCode(); in Link()
168 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in Link()
221 CHECK_EQ(compiled_methods_[idx]->GetQuickCode().size(), expected_code.size()); in CheckLinkedMethod()
Doat_writer_test.cc69 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " " in CheckMethod()
70 << oat_method.GetQuickCode(); in CheckMethod()
75 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod()
79 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in CheckMethod()
Doat_writer.cc857 return method != nullptr && !method->GetQuickCode().empty(); in HasCompiledCode()
863 return method != nullptr && method->GetQuickCode().empty() && !method->GetVmapTable().empty(); in HasQuickeningInfo()
1174 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
1286 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
1329 CHECK(!compiled_method->GetQuickCode().empty()); in VisitMethod()
1401 if (lhs->GetQuickCode().data() != rhs->GetQuickCode().data()) { in operator ()()
1402 return lhs->GetQuickCode().data() < rhs->GetQuickCode().data(); in operator ()()
1581 compiled_method->GetQuickCode().size() != 0) { in VisitMethod()
1695 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
Dimage_writer.h556 const uint8_t* GetQuickCode(ArtMethod* method,
Dimage_writer.cc3358 const uint8_t* ImageWriter::GetQuickCode(ArtMethod* method, in GetQuickCode() function in art::linker::ImageWriter
3463 quick_code = GetQuickCode(orig, image_info, &quick_is_interpreted); in CopyAndFixupMethod()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc124 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in ReserveSpace()
Drelative_patcher_arm64_test.cc391 uint32_t method1_size = compiled_methods_[0]->GetQuickCode().size(); in TestNopsAdrpInsn2AndUseHasThunk()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.cc296 uint32_t max_code_size = compiled_method->GetQuickCode().size() + max_extra_space; in ReserveSpaceInternal()
/art/oatdump/
Doatdump.cc739 return oat_class.GetOatMethod(oat_method_index).GetQuickCode(); in GetQuickOatCode()
1268 const void* code = oat_method.GetQuickCode(); in DumpOatMethod()
1478 return oat_method.GetQuickCode() != nullptr && in IsMethodGeneratedByOptimizingCompiler()
1491 return oat_method.GetQuickCode() == nullptr && in IsMethodGeneratedByDexToDexCompiler()
1609 const void* quick_code = oat_method.GetQuickCode(); in DumpCode()