Searched refs:Fixup (Results 1 – 11 of 11) sorted by relevance
/art/compiler/ |
D | elf_writer.cc | 55 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()
|
D | elf_writer.h | 47 static bool Fixup(File* file, uintptr_t oat_data_begin);
|
D | image_test.cc | 101 bool success_fixup = ElfWriter::Fixup(dup_oat.get(), writer->GetOatDataBegin()); in TEST_F()
|
/art/runtime/mirror/ |
D | dex_cache.cc | 54 Fixup(runtime->GetResolutionMethod(), pointer_size); in Init() 58 void DexCache::Fixup(ArtMethod* trampoline, size_t pointer_size) { in Fixup() function in art::mirror::DexCache
|
D | dex_cache.h | 53 void Fixup(ArtMethod* trampoline, size_t pointer_size)
|
/art/runtime/ |
D | elf_file.h | 77 static bool Fixup(File* file, uint64_t oat_data_begin); 79 bool Fixup(uint64_t base_address);
|
D | elf_file_impl.h | 116 bool Fixup(Elf_Addr base_address);
|
D | elf_file.cc | 1602 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()
|
D | class_linker.cc | 2548 dex_cache.Read()->Fixup(resolution_method, image_pointer_size_); in FixupDexCaches()
|
/art/runtime/arch/arm/ |
D | asm_support_arm.S | 43 add \rDest, pc @ Fixup GOT address.
|
/art/dex2oat/ |
D | dex2oat.cc | 1742 if (!ElfWriter::Fixup(oat_file.get(), oat_data_begin)) { in CreateImageFile()
|