Searched defs:Fixup (Results 1 - 5 of 5) sorted by relevance

/art/compiler/
H A Delf_writer.cc50 bool ElfWriter::Fixup(File* file, uintptr_t oat_data_begin) { function in class:art::ElfWriter
59 return elf_file->Fixup(base_address);
/art/runtime/mirror/
H A Ddex_cache.cc213 Fixup(runtime->GetResolutionMethod(), pointer_size);
217 void DexCache::Fixup(ArtMethod* trampoline, PointerSize pointer_size) { function in class:art::mirror::DexCache
218 // Fixup the resolve methods array to contain trampoline for resolution.
H A Darray-inl.h430 inline void PointerArray::Fixup(mirror::PointerArray* dest, function in class:art::mirror::PointerArray
/art/compiler/utils/arm/
H A Dassembler_thumb2.h389 // Fixup: branches and literal pool references.
411 // Fixup. For each unresolved label we keep a singly-linked list of all Fixups pointing
416 class Fixup { class in class:art::arm::FINAL
478 static Fixup Branch(uint32_t location, Type type, Size size = kBranch16Bit,
484 return Fixup(kNoRegister, kNoRegister, kNoSRegister, kNoDRegister,
489 static Fixup CompareAndBranch(uint32_t location, Register rn, Condition cond) {
491 return Fixup(rn, kNoRegister, kNoSRegister, kNoDRegister,
496 static Fixup LoadNarrowLiteral(uint32_t location, Register rt, Size size) {
500 return Fixup(rt, kNoRegister, kNoSRegister, kNoDRegister,
505 static Fixup LoadWideLitera
629 Fixup(Register rn, Register rt2, SRegister sd, DRegister dd, function in class:art::arm::FINAL::Fixup
[all...]
/art/runtime/
H A Delf_file.cc1513 bool ElfFileImpl<ElfTypes>::Fixup(Elf_Addr base_address) { function in class:art::ElfFileImpl
1879 bool ElfFile::Fixup(uint64_t base_address) { function in class:art::ElfFile
1881 return elf64_->Fixup(static_cast<Elf64_Addr>(base_address));
1885 return elf32_->Fixup(static_cast<Elf32_Addr>(base_address));
1887 DELEGATE_TO_IMPL(Fixup, base_address);

Completed in 90 milliseconds