Home
last modified time | relevance | path

Searched refs:ImageSection (Results 1 – 12 of 12) sorted by relevance

/art/runtime/
Dimage.h44 class PACKED(4) ImageSection {
46 ImageSection() : offset_(0), size_(0) { } in ImageSection() function
47 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } in ImageSection() function
48 ImageSection(const ImageSection& section) = default;
49 ImageSection& operator=(const ImageSection& section) = default;
131 ImageSection* sections,
279 ImageSection& GetImageSection(ImageSections index) { in GetImageSection()
284 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection()
289 const ImageSection& GetObjectsSection() const { in GetObjectsSection()
293 const ImageSection& GetFieldsSection() const { in GetFieldsSection()
[all …]
Dimage-inl.h54 const ImageSection& fields = GetFieldsSection(); in VisitPackedArtFields()
70 const ImageSection& methods = GetMethodsSection(); in VisitPackedArtMethods()
78 const ImageSection& runtime_methods = GetRuntimeMethodsSection(); in VisitPackedArtMethods()
90 const ImageSection& section = GetImTablesSection(); in VisitPackedImTables()
108 const ImageSection& section = GetIMTConflictTablesSection(); in VisitPackedImtConflictTables()
Dimage.cc39 ImageSection* sections, in ImageHeader()
152 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<()
160 const ImageSection& objects = GetObjectsSection(); in VisitObjects()
Dintern_table-inl.h83 const ImageSection& section = header.GetInternedStringsSection(); in AddImageStringsToTable()
Dstack.cc721 const ImageSection& methods = header.GetMethodsSection(); in ValidateFrame()
722 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection(); in ValidateFrame()
Dclass_linker.cc1441 const ImageSection& objects_section = image_header.GetObjectsSection(); in CountInternedStringReferences()
1474 const ImageSection& sro_section = in VisitInternedStringReferences()
1515 const ImageSection& section = space->GetImageHeader().GetInternedStringsSection(); in VerifyInternedStringReferences()
1835 std::vector<const ImageSection*> method_sections_;
1836 std::vector<const ImageSection*> runtime_method_sections_;
2026 const ImageSection& class_table_section = header.GetClassTableSection(); in AddImageSpace()
/art/dex2oat/linker/
Dimage_writer.cc314 std::vector<ImageSection> image_sections = image_info.CreateImageSections().second; in CopyMetadata()
533 ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); in Write()
536 bitmap_section = ImageSection(out_offset, bitmap_section.Size()); in Write()
2453 std::pair<size_t, std::vector<ImageSection>> ImageWriter::ImageInfo::CreateImageSections() const { in CreateImageSections()
2454 std::vector<ImageSection> sections(ImageHeader::kSectionCount); in CreateImageSections()
2463 ImageSection(0u, image_end_); in CreateImageSections()
2469 ImageSection(GetBinSlotOffset(Bin::kArtField), GetBinSlotSize(Bin::kArtField)); in CreateImageSections()
2475 ImageSection(GetBinSlotOffset(Bin::kArtMethodClean), in CreateImageSections()
2483 ImageSection(GetBinSlotOffset(Bin::kImTable), GetBinSlotSize(Bin::kImTable)); in CreateImageSections()
2489ImageSection(GetBinSlotOffset(Bin::kIMTConflictTable), GetBinSlotSize(Bin::kIMTConflictTable)); in CreateImageSections()
[all …]
Dimage_test.cc75 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F()
Dimage_writer.h293 std::pair<size_t, std::vector<ImageSection>> CreateImageSections() const;
/art/runtime/jit/
Djit.cc645 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone()
704 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone()
732 const ImageSection& section = header.GetMethodsSection(); in NotifyZygoteCompilationDone()
1095 const ImageSection& section = header.GetMethodsSection(); in MapBootImageMethods()
1226 const ImageSection& section = header.GetMethodsSection(); in CreateThreadPool()
/art/runtime/gc/collector/
Dimmune_spaces_test.cc114 ImageSection sections[ImageHeader::kSectionCount]; in CreateImageSpace()
/art/runtime/gc/space/
Dimage_space.cc714 const ImageSection& image_objects = image_header.GetObjectsSection(); in Init()
775 const ImageSection& new_interns = new_space->GetImageHeader().GetInternedStringsSection(); in RemoveInternTableDuplicates()
781 const ImageSection& old_interns = old_space->GetImageHeader().GetInternedStringsSection(); in RemoveInternTableDuplicates()
1170 const ImageSection& objects_section = image_header->GetObjectsSection(); in RelocateInPlace()
3673 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()
3680 const ImageSection& metadata = GetImageHeader().GetMetadataSection(); in ReleaseMetadata()