Home
last modified time | relevance | path

Searched refs:section (Results 1 – 22 of 22) sorted by relevance

/art/runtime/
Ddex_file_layout.cc37 for (const DexLayoutSection& section : sections_) { in Madvise() local
40 section.parts_[static_cast<size_t>(LayoutType::kLayoutTypeStartupOnly)].Madvise( in Madvise()
43 section.parts_[static_cast<size_t>(LayoutType::kLayoutTypeHot)].Madvise( in Madvise()
49 section.parts_[static_cast<size_t>(LayoutType::kLayoutTypeStartupOnly)].Madvise( in Madvise()
55 section.parts_[static_cast<size_t>(LayoutType::kLayoutTypeSometimesUsed)].Madvise( in Madvise()
58 section.parts_[static_cast<size_t>(LayoutType::kLayoutTypeUsedOnce)].Madvise( in Madvise()
67 std::ostream& operator<<(std::ostream& os, const DexLayoutSection& section) { in operator <<() argument
69 const DexLayoutSection::Subsection& part = section.parts_[i]; in operator <<()
Dimage-inl.h54 const ImageSection& section = GetImageSection(kSectionImTables); in VisitPackedImTables() local
55 for (size_t pos = 0; pos < section.Size();) { in VisitPackedImTables()
56 ImTable* imt = reinterpret_cast<ImTable*>(base + section.Offset() + pos); in VisitPackedImTables()
72 const ImageSection& section = GetImageSection(kSectionIMTConflictTables); in VisitPackedImtConflictTables() local
73 for (size_t pos = 0; pos < section.Size(); ) { in VisitPackedImtConflictTables()
74 auto* table = reinterpret_cast<ImtConflictTable*>(base + section.Offset() + pos); in VisitPackedImtConflictTables()
Dimage.cc148 std::ostream& operator<<(std::ostream& os, const ImageSection& section) { in operator <<() argument
149 return os << "size=" << section.Size() << " range=" << section.Offset() << "-" << section.End(); in operator <<()
Dimage.h56 ImageSection(const ImageSection& section) = default;
57 ImageSection& operator=(const ImageSection& section) = default;
404 std::ostream& operator<<(std::ostream& os, const ImageHeader::ImageSections& section);
405 std::ostream& operator<<(std::ostream& os, const ImageSection& section);
Ddex_file_layout.h91 std::ostream& operator<<(std::ostream& os, const DexLayoutSection& section);
Dintern_table.cc185 const ImageSection& section = header->GetImageSection(ImageHeader::kSectionInternedStrings); in AddImagesStringsToTable() local
186 if (section.Size() > 0) { in AddImagesStringsToTable()
187 AddTableFromMemoryLocked(image_space->Begin() + section.Offset()); in AddImagesStringsToTable()
/art/tools/ahat/src/
DObjectHandler.java70 doc.section("Object Info"); in handle()
91 doc.section("Object Size"); in handle()
111 doc.section("Fields"); in printClassInstanceFields()
119 doc.section("Array Elements"); in printArrayElements()
204 doc.section("Class Info"); in printClassInfo()
212 doc.section("Static Fields"); in printClassInfo()
220 doc.section("Objects with References to this Object"); in printReferences()
235 doc.section("Objects with Soft References to this Object"); in printReferences()
248 doc.section("Allocation Site"); in printAllocationSite()
257 doc.section("Bitmap Image"); in printBitmap()
[all …]
DSiteHandler.java48 doc.section("Allocation Site"); in handle()
51 doc.section("Sites Called from Here"); in handle()
82 doc.section("Objects Allocated"); in handle()
DOverviewHandler.java41 doc.section("General Information"); in handle()
52 doc.section("Bytes Retained by Heap"); in handle()
DDoc.java38 void section(String title); in section() method
DHtmlDoc.java61 public void section(String title) { in section() method in HtmlDoc
/art/compiler/
Delf_builder.h364 const Section* section, in Add() argument
370 if (section != nullptr) { in Add()
371 DCHECK_LE(section->GetAddress(), addr); in Add()
372 DCHECK_LE(addr, section->GetAddress() + section->GetSize()); in Add()
373 section_index = section->GetSectionIndex(); in Add()
618 for (auto* section : sections_) { in End()
619 section->header_.sh_name = shstrtab_.Write(section->name_); in End()
620 if (section->link_ != nullptr) { in End()
621 section->header_.sh_link = section->link_->GetSectionIndex(); in End()
630 for (auto* section : sections_) { in End()
[all …]
Dimage_writer.cc1937 for (const ImageSection& section : sections) { in CreateHeader() local
1938 LOG(INFO) << static_cast<ImageHeader::ImageSections>(idx) << " " << section; in CreateHeader()
/art/dexlayout/
Ddex_visualize.cc83 uint16_t section = 0; in GetColor() local
86 section = file_section.type; in GetColor()
91 ColorMapType::const_iterator iter = kColorMap.find(section); in GetColor()
310 const dex_ir::DexFileSection& section = sorted_sections.at(i); in FindNextByteAfterSection() local
311 if (section.size != 0) { in FindNextByteAfterSection()
312 return section.offset; in FindNextByteAfterSection()
Ddexdiag.cc178 for (const auto& section : sections) { in FindSectionTypeForPage() local
179 size_t first_page_of_section = section.offset / kPageSize; in FindSectionTypeForPage()
181 if (section.size == 0) { in FindSectionTypeForPage()
186 return section.type; in FindSectionTypeForPage()
241 const dex_ir::DexFileSection& section = sections[i - 1]; in DisplayDexStatistics() local
242 const uint16_t type = section.type; in DisplayDexStatistics()
/art/runtime/arch/arm/
Dinstruction_set_features_assembly_tests.S19 .section .text
/art/patchoat/
Dpatchoat.cc471 const auto& section = image_header->GetImageSection(ImageHeader::kSectionInternedStrings); in PatchInternedStrings() local
476 temp_table.AddTableFromMemory(image_->Begin() + section.Offset()); in PatchInternedStrings()
482 const auto& section = image_header->GetImageSection(ImageHeader::kSectionClassTable); in PatchClassTable() local
483 if (section.Size() == 0) { in PatchClassTable()
491 temp_table.ReadFromMemory(image_->Begin() + section.Offset()); in PatchClassTable()
/art/runtime/gc/space/
Dimage_space.cc574 auto& section = image_header->GetImageSection(section_idx); in Init() local
576 << reinterpret_cast<void*>(image_header->GetImageBegin() + section.Offset()) << " " in Init()
577 << section; in Init()
1919 const ImageSection& section = header.GetImageSection(section_type); in DumpSections() local
1920 os << section_type << " " << reinterpret_cast<const void*>(base + section.Offset()) in DumpSections()
1921 << "-" << reinterpret_cast<const void*>(base + section.End()) << "\n"; in DumpSections()
/art/imgdiag/
Dimgdiag.cc1366 const ImageHeader::ImageSections section = static_cast<ImageHeader::ImageSections>(i); in ComputeDirtyBytes() local
1367 if (image_header_.GetImageSection(section).Contains(offset)) { in ComputeDirtyBytes()
1390 const ImageHeader::ImageSections section = static_cast<ImageHeader::ImageSections>(i); in ComputeDirtyBytes() local
1391 os << section << " " << image_header_.GetImageSection(section) in ComputeDirtyBytes()
/art/
DNOTICE89 (except as stated in this section) patent license to make, have made,
/art/oatdump/
Doatdump.cc1803 auto section = static_cast<ImageHeader::ImageSections>(i); in Dump() local
1804 os << "IMAGE SECTION " << section << ": " << image_header_.GetImageSection(section) << "\n\n"; in Dump()
/art/runtime/arch/arm64/
Dquick_entrypoints_arm64.S2948 ….section .rodata // Place handler table in read-only section away fro…