Home
last modified time | relevance | path

Searched refs:quick_code_offset (Results 1 – 5 of 5) sorted by relevance

/art/compiler/linker/arm/
Drelative_patcher_arm_base.cc95 uint32_t quick_code_offset = compiled_method->AlignCode(offset) + sizeof(OatQuickMethodHeader); in ReserveSpaceInternal() local
96 uint32_t next_aligned_offset = compiled_method->AlignCode(quick_code_offset + quick_code_size); in ReserveSpaceInternal()
103 bool needs_thunk = ReserveSpaceProcessPatches(quick_code_offset, in ReserveSpaceInternal()
117 quick_code_offset + patch.LiteralOffset()); in ReserveSpaceInternal()
146 bool ArmBaseRelativePatcher::ReserveSpaceProcessPatches(uint32_t quick_code_offset, in ReserveSpaceProcessPatches() argument
156 DCHECK_GT(quick_code_offset, patch_offset); in ReserveSpaceProcessPatches()
157 if (quick_code_offset - patch_offset > max_positive_displacement_) { in ReserveSpaceProcessPatches()
169 (quick_code_offset == next_aligned_offset); // End of code. in ReserveSpaceProcessPatches()
Drelative_patcher_arm_base.h50 bool ReserveSpaceProcessPatches(uint32_t quick_code_offset, MethodReference method_ref,
/art/compiler/linker/arm64/
Drelative_patcher_arm64.cc86 uint32_t quick_code_offset = compiled_method->AlignCode(offset) + sizeof(OatQuickMethodHeader); in ReserveSpace() local
88 uint32_t thunk_offset = compiled_method->AlignCode(quick_code_offset + code.size()); in ReserveSpace()
92 uint32_t patch_offset = quick_code_offset + patch.LiteralOffset(); in ReserveSpace()
/art/compiler/linker/
Drelative_patcher_test.h114 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); in Link() local
118 method_offset_map_.map.Put(compiled_method_refs_[idx], quick_code_offset); in Link()
/art/compiler/
Doat_writer.cc685 uint32_t quick_code_offset = 0; in VisitMethod() local
695 quick_code_offset = writer_->relative_patcher_->GetOffset(method_ref); in VisitMethod()
696 if (quick_code_offset != 0u) { in VisitMethod()
700 quick_code_offset = NewQuickCodeOffset(compiled_method, it, thumb_offset); in VisitMethod()
704 quick_code_offset = dedupe_map_.GetOrCreate( in VisitMethod()
718 << " " << quick_code_offset; in VisitMethod()
720 writer_->relative_patcher_->SetOffset(method_ref, quick_code_offset); in VisitMethod()
733 uint32_t code_offset = quick_code_offset - thumb_offset; in VisitMethod()
789 offsets->code_offset_ = quick_code_offset; in VisitMethod()