Home
last modified time | relevance | path

Searched refs:GetAddress (Results 1 – 10 of 10) sorted by relevance

/art/compiler/debug/
Delf_symtab_writer.h69 address += info.is_code_address_text_relative ? text->GetAddress() : 0; in WriteDebugSymbols()
98 address += info.is_code_address_text_relative ? text->GetAddress() : 0; in WriteDebugSymbols()
107 uint64_t dex_address = dex->GetAddress() + it.first /* offset within the section */; in WriteDebugSymbols()
Delf_debug_frame_writer.h196 (mi->is_code_address_text_relative ? builder->GetText()->GetAddress() : 0); in WriteCFISection()
Delf_debug_line_writer.h55 ? builder_->GetText()->GetAddress() in WriteCompilationUnit()
Delf_debug_info_writer.h111 ? owner_->builder_->GetText()->GetAddress() in Write()
/art/libelffile/elf/
Delf_builder.h160 Elf_Addr GetAddress() const { in GetAddress() function
370 DCHECK_LE(section->GetAddress(), sym.st_value); in Add()
371 DCHECK_LE(sym.st_value, section->GetAddress() + section->header_.sh_size); in Add()
657 dynsym_.Add(oatdata, &rodata_, rodata_.GetAddress(), rodata_size, STB_GLOBAL, STT_OBJECT); in PrepareDynamicSection()
662 dynsym_.Add(oatexec, &text_, text_.GetAddress(), /* size= */ 0, STB_GLOBAL, STT_OBJECT); in PrepareDynamicSection()
664 Elf_Word oatlastword_address = text_.GetAddress() + text_size - 4; in PrepareDynamicSection()
669 Elf_Word oatlastword_address = rodata_.GetAddress() + rodata_size - 4; in PrepareDynamicSection()
676 data_bimg_rel_ro_.GetAddress(), in PrepareDynamicSection()
682 data_bimg_rel_ro_.GetAddress() + data_bimg_rel_ro_size - 4; in PrepareDynamicSection()
693 dynsym_.Add(oatbss, &bss_, bss_.GetAddress(), bss_roots_offset, STB_GLOBAL, STT_OBJECT); in PrepareDynamicSection()
[all …]
/art/dex2oat/linker/
Delf_writer_quick.cc255 builder_->GetText()->GetAddress(), in PrepareDebugInfo()
257 builder_->GetDex()->Exists() ? builder_->GetDex()->GetAddress() : 0, in PrepareDebugInfo()
/art/dexlayout/
Ddex_verify.cc1036 if (orig_handler->GetAddress() != output_handler->GetAddress()) { in VerifyHandler()
1040 orig_handler->GetAddress(), in VerifyHandler()
1041 output_handler->GetAddress()); in VerifyHandler()
Ddex_writer.cc562 stream->WriteUleb128(handler->GetAddress()); in WriteCodeItemPostInstructionData()
Ddex_ir.h959 uint32_t GetAddress() const { return address_; } in GetAddress() function
Ddexlayout.cc804 fprintf(out_file_, " %s -> 0x%04x\n", descriptor, handler->GetAddress()); in DumpCatches()