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,
271 ImageSection& GetImageSection(ImageSections index) { in GetImageSection()
276 const ImageSection& GetImageSection(ImageSections index) const { in GetImageSection()
281 const ImageSection& GetObjectsSection() const { in GetObjectsSection()
285 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.cc38 ImageSection* sections, in ImageHeader()
132 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<()
140 const ImageSection& objects = GetObjectsSection(); in VisitObjects()
Dintern_table-inl.h33 const ImageSection& section = header.GetInternedStringsSection(); in AddImageStringsToTable()
Dstack.cc648 const ImageSection& methods = header.GetMethodsSection(); in SanityCheckFrame()
649 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection(); in SanityCheckFrame()
Dclass_linker.cc1404 const ImageSection& objects_section = image_header.GetObjectsSection(); in VerifyStringInterning()
1562 const ImageSection& sro_section = in UpdateInternStrings()
1936 std::vector<const ImageSection*> method_sections_;
1937 std::vector<const ImageSection*> runtime_method_sections_;
2179 const ImageSection& class_table_section = header.GetClassTableSection(); in AddImageSpace()
/art/dex2oat/linker/
Dimage_writer.cc632 std::vector<ImageSection> image_sections = image_info.CreateImageSections().second; in CopyMetadata()
851 ImageSection& bitmap_section = image_header->GetImageSection(ImageHeader::kSectionImageBitmap); in Write()
854 bitmap_section = ImageSection(out_offset, bitmap_section.Size()); in Write()
2545 std::pair<size_t, std::vector<ImageSection>> ImageWriter::ImageInfo::CreateImageSections() const { in CreateImageSections()
2546 std::vector<ImageSection> sections(ImageHeader::kSectionCount); in CreateImageSections()
2555 ImageSection(0u, image_end_); in CreateImageSections()
2561 ImageSection(GetBinSlotOffset(Bin::kArtField), GetBinSlotSize(Bin::kArtField)); in CreateImageSections()
2567 ImageSection(GetBinSlotOffset(Bin::kArtMethodClean), in CreateImageSections()
2575 ImageSection(GetBinSlotOffset(Bin::kImTable), GetBinSlotSize(Bin::kImTable)); in CreateImageSections()
2581ImageSection(GetBinSlotOffset(Bin::kIMTConflictTable), GetBinSlotSize(Bin::kIMTConflictTable)); in CreateImageSections()
[all …]
Dimage_test.cc75 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F()
Dimage_writer.h297 std::pair<size_t, std::vector<ImageSection>> CreateImageSections() const;
/art/compiler/optimizing/
Dsharpening.cc42 const ImageSection& method_section = image_space->GetImageHeader().GetMethodsSection(); in IsInBootImage()
/art/runtime/gc/collector/
Dimmune_spaces_test.cc113 ImageSection sections[ImageHeader::kSectionCount]; in CreateImageSpace()
/art/runtime/gc/space/
Dimage_space.cc866 const ImageSection& image_objects = image_header->GetObjectsSection(); in Init()
1169 const ImageSection& objects_section = image_header.GetObjectsSection(); in RelocateInPlace()
2378 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()
2395 const ImageSection& metadata = GetImageHeader().GetMetadataSection(); in ReleaseMetadata()