Home
last modified time | relevance | path

Searched refs:Fixup (Results 1 – 11 of 11) sorted by relevance

/art/compiler/
Delf_writer.cc55 bool ElfWriter::Fixup(File* file, uintptr_t oat_data_begin) { in Fixup() function in art::ElfWriter
64 return elf_file->Fixup(base_address); in Fixup()
Delf_writer.h47 static bool Fixup(File* file, uintptr_t oat_data_begin);
Dimage_test.cc101 bool success_fixup = ElfWriter::Fixup(dup_oat.get(), writer->GetOatDataBegin()); in TEST_F()
/art/runtime/mirror/
Ddex_cache.cc54 Fixup(runtime->GetResolutionMethod(), pointer_size); in Init()
58 void DexCache::Fixup(ArtMethod* trampoline, size_t pointer_size) { in Fixup() function in art::mirror::DexCache
Ddex_cache.h53 void Fixup(ArtMethod* trampoline, size_t pointer_size)
/art/runtime/
Delf_file.h77 static bool Fixup(File* file, uint64_t oat_data_begin);
79 bool Fixup(uint64_t base_address);
Delf_file_impl.h116 bool Fixup(Elf_Addr base_address);
Delf_file.cc1602 bool ElfFileImpl<ElfTypes>::Fixup(Elf_Addr base_address) { in Fixup() function in art::ElfFileImpl
1923 bool ElfFile::Fixup(uint64_t base_address) { in Fixup() function in art::ElfFile
1925 return elf64_->Fixup(static_cast<Elf64_Addr>(base_address)); in Fixup()
1929 return elf32_->Fixup(static_cast<Elf32_Addr>(base_address)); in Fixup()
1931 DELEGATE_TO_IMPL(Fixup, base_address); in Fixup()
Dclass_linker.cc2548 dex_cache.Read()->Fixup(resolution_method, image_pointer_size_); in FixupDexCaches()
/art/runtime/arch/arm/
Dasm_support_arm.S43 add \rDest, pc @ Fixup GOT address.
/art/dex2oat/
Ddex2oat.cc1742 if (!ElfWriter::Fixup(oat_file.get(), oat_data_begin)) { in CreateImageFile()