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.h108 void ResolveMethodCalls(uint32_t quick_code_offset, MethodReference method_ref);
Drelative_patcher_arm_base.cc458 void ArmBaseRelativePatcher::ResolveMethodCalls(uint32_t quick_code_offset, in ResolveMethodCalls() argument
475 DCHECK_GT(quick_code_offset, patch_offset); in ResolveMethodCalls()
476 if (quick_code_offset - patch_offset > max_positive_displacement) { in ResolveMethodCalls()
/art/compiler/linker/
Drelative_patcher_test.h115 uint32_t quick_code_offset = offset + compiled_method->CodeDelta(); in Link() local
119 method_offset_map_.map.Put(compiled_method_refs_[idx], quick_code_offset); in Link()
/art/compiler/linker/arm64/
Drelative_patcher_arm64.cc132 uint32_t quick_code_offset = compiled_method->AlignCode(offset + sizeof(OatQuickMethodHeader)); in ReserveSpace() local
133 uint32_t thunk_offset = compiled_method->AlignCode(quick_code_offset + code.size()); in ReserveSpace()
137 uint32_t patch_offset = quick_code_offset + patch.LiteralOffset(); in ReserveSpace()
/art/dex2oat/linker/
Doat_writer.cc1262 uint32_t quick_code_offset = 0; in VisitMethod() local
1271 quick_code_offset = relative_patcher_->GetOffset(method_ref); in VisitMethod()
1272 if (quick_code_offset != 0u) { in VisitMethod()
1276 quick_code_offset = NewQuickCodeOffset(compiled_method, method_ref, thumb_offset); in VisitMethod()
1280 quick_code_offset = dedupe_map_.GetOrCreate( in VisitMethod()
1294 << " " << quick_code_offset; in VisitMethod()
1296 relative_patcher_->SetOffset(method_ref, quick_code_offset); in VisitMethod()
1307 uint32_t code_offset = quick_code_offset - thumb_offset; in VisitMethod()
1374 offsets->code_offset_ = quick_code_offset; in VisitMethod()