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.h191 const void* GetQuickCode() const;
Dart_method.cc656 const void* oat_entry_point = oat_method.GetQuickCode(); in GetOatQuickMethodHeader()
680 return oat_method.GetQuickCode(); in GetOatMethodQuickCode()
Dclass_linker.cc3573 quick_code = oat_method.GetQuickCode(); in FixupStaticTrampolines()
3640 quick_code = oat_method.GetQuickCode(); in LinkCode()
/art/compiler/driver/
Dcompiled_method_storage_test.cc86 ASSERT_EQ(same_code, lhs->GetQuickCode().data() == rhs->GetQuickCode().data()) in TEST()
/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/dex2oat/linker/
Drelative_patcher_test.h136 const auto code = compiled_method->GetQuickCode(); in Link()
167 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in Link()
226 CHECK_EQ(compiled_methods_[idx]->GetQuickCode().size(), expected_code.size()); in CheckLinkedMethod()
Doat_writer_test.cc70 EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << method->PrettyMethod() << " " in CheckMethod()
71 << oat_method.GetQuickCode(); in CheckMethod()
76 const void* quick_oat_code = oat_method.GetQuickCode(); in CheckMethod()
80 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in CheckMethod()
Doat_writer.cc873 return method != nullptr && !method->GetQuickCode().empty(); in HasCompiledCode()
879 return method != nullptr && method->GetQuickCode().empty() && !method->GetVmapTable().empty(); in HasQuickeningInfo()
1195 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
1307 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
1350 CHECK(!compiled_method->GetQuickCode().empty()); in VisitMethod()
1422 if (lhs->GetQuickCode().data() != rhs->GetQuickCode().data()) { in operator ()()
1423 return lhs->GetQuickCode().data() < rhs->GetQuickCode().data(); in operator ()()
1603 compiled_method->GetQuickCode().size() != 0) { in VisitMethod()
1718 ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode(); in VisitMethod()
Dimage_writer.h543 const uint8_t* GetQuickCode(ArtMethod* method, const ImageInfo& image_info)
Dimage_writer.cc3364 const uint8_t* ImageWriter::GetQuickCode(ArtMethod* method, const ImageInfo& image_info) { in GetQuickCode() function in art::linker::ImageWriter
3457 quick_code = GetQuickCode(orig, image_info); in CopyAndFixupMethod()
/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc125 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode(); in ReserveSpace()
Drelative_patcher_arm64_test.cc392 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.cc738 return oat_class.GetOatMethod(oat_method_index).GetQuickCode(); in GetQuickOatCode()
1267 const void* code = oat_method.GetQuickCode(); in DumpOatMethod()
1477 return oat_method.GetQuickCode() != nullptr && in IsMethodGeneratedByOptimizingCompiler()
1490 return oat_method.GetQuickCode() == nullptr && in IsMethodGeneratedByDexToDexCompiler()
1608 const void* quick_code = oat_method.GetQuickCode(); in DumpCode()