Searched refs:text_size (Results 1 - 8 of 8) sorted by relevance

/art/compiler/
H A Delf_writer.h55 virtual void SetLoadedSectionSizes(size_t rodata_size, size_t text_size, size_t bss_size) = 0;
H A Delf_writer_quick.cc96 void SetLoadedSectionSizes(size_t rodata_size, size_t text_size, size_t bss_size) OVERRIDE;
171 size_t text_size,
176 text_size_ = text_size;
170 SetLoadedSectionSizes(size_t rodata_size, size_t text_size, size_t bss_size) argument
H A Delf_builder.h621 Elf_Word text_size,
636 Elf_Word bss_address = RoundUp(text_address + text_size, kPageSize);
649 if (text_size != 0u) {
652 dynsym_.Add(oatexec, text_index, text_address, text_size, STB_GLOBAL, STT_OBJECT);
654 Elf_Word oatlastword_address = text_address + text_size - 4;
663 Elf_Word bss_index = rodata_index + 1u + (text_size != 0 ? 1u : 0u);
619 PrepareDynamicSection(const std::string& elf_file_path, Elf_Word rodata_size, Elf_Word text_size, Elf_Word bss_size) argument
H A Dimage_test.cc259 size_t text_size = oat_writer->GetSize() - rodata_size; local
260 elf_writer->SetLoadedSectionSizes(rodata_size, text_size, oat_writer->GetBssSize());
H A Doat_test.cc208 size_t text_size = oat_writer.GetSize() - rodata_size; local
209 elf_writer->SetLoadedSectionSizes(rodata_size, text_size, oat_writer.GetBssSize());
/art/compiler/debug/
H A Delf_debug_writer.cc95 size_t text_size,
101 text_size,
107 text_size,
91 MakeMiniDebugInfo( InstructionSet isa, const InstructionSetFeatures* features, size_t rodata_size, size_t text_size, const ArrayRef<const MethodDebugInfo>& method_infos) argument
/art/oatdump/
H A Doatdump.cc137 const size_t text_size = oat_file_->End() - text_begin; local
139 text->WriteNoBitsSection(text_size);
142 text->WriteFully(text_begin, text_size);
154 elf_file->GetPath(), rodata_size, text_size, oat_file_->BssSize());
/art/dex2oat/
H A Ddex2oat.cc1708 size_t text_size = oat_writer->GetSize() - rodata_size; local
1709 elf_writer->SetLoadedSectionSizes(rodata_size, text_size, oat_writer->GetBssSize());

Completed in 79 milliseconds