Home
last modified time | relevance | path

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

/art/runtime/
Dimage.h52 class PACKED(4) ImageSection {
54 ImageSection() : offset_(0), size_(0) { } in ImageSection() function
55 ImageSection(uint32_t offset, uint32_t size) : offset_(offset), size_(size) { } in ImageSection() function
56 ImageSection(const ImageSection& section) = default;
57 ImageSection& operator=(const ImageSection& section) = default;
113 ImageSection* sections,
224 const ImageSection& GetImageSection(ImageSections index) const;
226 const ImageSection& GetObjectsSection() const { in GetObjectsSection()
230 const ImageSection& GetMethodsSection() const { in GetMethodsSection()
234 const ImageSection& GetRuntimeMethodsSection() const { in GetRuntimeMethodsSection()
[all …]
Dimage.cc33 ImageSection* sections, in ImageHeader()
143 const ImageSection& ImageHeader::GetImageSection(ImageSections index) const { in GetImageSection()
148 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<()
156 const ImageSection& objects = GetObjectsSection(); in VisitObjects()
166 const ImageSection& fields = GetFieldsSection(); in VisitPackedArtFields()
181 const ImageSection& methods = GetMethodsSection(); in VisitPackedArtMethods()
189 const ImageSection& runtime_methods = GetRuntimeMethodsSection(); in VisitPackedArtMethods()
Dimage-inl.h54 const ImageSection& section = GetImageSection(kSectionImTables); in VisitPackedImTables()
72 const ImageSection& section = GetImageSection(kSectionIMTConflictTables); in VisitPackedImtConflictTables()
Dstack.cc664 const ImageSection& methods = header.GetMethodsSection(); in SanityCheckFrame()
665 const ImageSection& runtime_methods = header.GetRuntimeMethodsSection(); in SanityCheckFrame()
Dintern_table.cc185 const ImageSection& section = header->GetImageSection(ImageHeader::kSectionInternedStrings); in AddImagesStringsToTable()
Dclass_linker.cc1528 const ImageSection& objects_section = in Update()
1767 std::vector<const ImageSection*> method_sections_;
1768 std::vector<const ImageSection*> runtime_method_sections_;
1972 const ImageSection& class_table_section = header.GetImageSection(ImageHeader::kSectionClassTable); in AddImageSpace()
2003 const ImageSection& dex_cache_section = header.GetImageSection( in AddImageSpace()
/art/compiler/
Dimage_writer.cc301 const ImageSection& bitmap_section = image_header->GetImageSection( in Write()
691 ImageSection unused_sections[ImageHeader::kSectionCount]; in AllocMemory()
1833 ImageSection unused_sections[ImageHeader::kSectionCount]; in CalculateNewObjectOffsets()
1865 size_t ImageWriter::ImageInfo::CreateImageSections(ImageSection* out_sections) const { in CreateImageSections()
1872 ImageSection* objects_section = &out_sections[ImageHeader::kSectionObjects]; in CreateImageSections()
1873 *objects_section = ImageSection(0u, image_end_); in CreateImageSections()
1876 ImageSection* field_section = &out_sections[ImageHeader::kSectionArtFields]; in CreateImageSections()
1877 *field_section = ImageSection(bin_slot_offsets_[kBinArtField], bin_slot_sizes_[kBinArtField]); in CreateImageSections()
1881 ImageSection* methods_section = &out_sections[ImageHeader::kSectionArtMethods]; in CreateImageSections()
1882 *methods_section = ImageSection( in CreateImageSections()
[all …]
Dimage_test.cc66 ImageSection sections[ImageHeader::kSectionCount]; in TEST_F()
Dimage_writer.h261 size_t CreateImageSections(ImageSection* out_sections) const;
/art/compiler/optimizing/
Dsharpening.cc62 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.cc646 const ImageSection& image_objects = image_header->GetImageSection(ImageHeader::kSectionObjects); in Init()
1221 … const ImageSection& objects_section = image_header.GetImageSection(ImageHeader::kSectionObjects); in RelocateInPlace()
1919 const ImageSection& section = header.GetImageSection(section_type); in DumpSections()