Home | History | Annotate | Download | only in compiler

Lines Matching refs:ImageSection

293     const ImageSection& bitmap_section = image_header->GetImageSection(
659 ImageSection unused_sections[ImageHeader::kSectionCount];
1524 ImageSection unused_sections[ImageHeader::kSectionCount];
1552 size_t ImageWriter::ImageInfo::CreateImageSections(ImageSection* out_sections) const {
1559 ImageSection* objects_section = &out_sections[ImageHeader::kSectionObjects];
1560 *objects_section = ImageSection(0u, image_end_);
1563 ImageSection* field_section = &out_sections[ImageHeader::kSectionArtFields];
1564 *field_section = ImageSection(bin_slot_offsets_[kBinArtField], bin_slot_sizes_[kBinArtField]);
1568 ImageSection* methods_section = &out_sections[ImageHeader::kSectionArtMethods];
1569 *methods_section = ImageSection(
1574 ImageSection* imt_section = &out_sections[ImageHeader::kSectionImTables];
1575 *imt_section = ImageSection(bin_slot_offsets_[kBinImTable], bin_slot_sizes_[kBinImTable]);
1578 ImageSection* imt_conflict_tables_section = &out_sections[ImageHeader::kSectionIMTConflictTables];
1579 *imt_conflict_tables_section = ImageSection(bin_slot_offsets_[kBinIMTConflictTable],
1583 ImageSection* runtime_methods_section = &out_sections[ImageHeader::kSectionRuntimeMethods];
1584 ImageSection(bin_slot_offsets_[kBinRuntimeMethod],
1588 ImageSection* dex_cache_arrays_section = &out_sections[ImageHeader::kSectionDexCacheArrays];
1589 *dex_cache_arrays_section = ImageSection(bin_slot_offsets_[kBinDexCacheArray],
1595 ImageSection* interned_strings_section = &out_sections[ImageHeader::kSectionInternedStrings];
1596 *interned_strings_section = ImageSection(cur_pos, intern_table_bytes_);
1601 ImageSection* class_table_section = &out_sections[ImageHeader::kSectionClassTable];
1602 *class_table_section = ImageSection(cur_pos, class_table_bytes_);
1615 ImageSection sections[ImageHeader::kSectionCount];
1621 *bitmap_section = ImageSection(RoundUp(image_end, kPageSize), RoundUp(bitmap_bytes, kPageSize));
1625 for (const ImageSection& section : sections) {
1794 const ImageSection& intern_table_section = image_header->GetImageSection(
1814 const ImageSection& class_table_section = image_header->GetImageSection(