Home
last modified time | relevance | path

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

/art/dex2oat/linker/arm64/
Drelative_patcher_arm64.cc136 uint32_t quick_code_offset = compiled_method->AlignCode(offset + sizeof(OatQuickMethodHeader)); in ReserveSpace() local
137 uint32_t thunk_offset = compiled_method->AlignCode(quick_code_offset + code.size()); in ReserveSpace()
141 uint32_t patch_offset = quick_code_offset + patch.LiteralOffset(); in ReserveSpace()
/art/dex2oat/linker/arm/
Drelative_patcher_arm_base.h109 void ResolveMethodCalls(uint32_t quick_code_offset, MethodReference method_ref);
Drelative_patcher_arm_base.cc478 void ArmBaseRelativePatcher::ResolveMethodCalls(uint32_t quick_code_offset, in ResolveMethodCalls() argument
495 DCHECK_GT(quick_code_offset, patch_offset); in ResolveMethodCalls()
496 if (quick_code_offset - patch_offset > max_positive_displacement) { in ResolveMethodCalls()
/art/dex2oat/linker/
Drelative_patcher_test.h135 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); in Link() local
139 method_offset_map_.map.Put(compiled_method_refs_[idx], quick_code_offset); in Link()
Doat_writer.cc1325 uint32_t quick_code_offset = 0; in VisitMethod() local
1334 quick_code_offset = relative_patcher_->GetOffset(method_ref); in VisitMethod()
1335 if (quick_code_offset != 0u) { in VisitMethod()
1339 quick_code_offset = NewQuickCodeOffset(compiled_method, method_ref, thumb_offset); in VisitMethod()
1343 quick_code_offset = dedupe_map_.GetOrCreate( in VisitMethod()
1357 << " " << quick_code_offset; in VisitMethod()
1359 relative_patcher_->SetOffset(method_ref, quick_code_offset); in VisitMethod()
1367 uint32_t code_offset = quick_code_offset - thumb_offset; in VisitMethod()
1415 offsets->code_offset_ = quick_code_offset; in VisitMethod()