Searched defs:method_offset (Results 1 - 6 of 6) sorted by relevance

/art/compiler/linker/arm64/
H A Drelative_patcher_arm64_test.cc216 uint32_t method_offset,
224 CHECK_ALIGNED(method_offset, 4u);
226 uint32_t adrp_offset = method_offset + num_nops * 4u;
249 uint32_t method_offset,
251 return GenNopsAndAdrpAndUse(num_nops, method_offset, target_offset, kLdrWInsn);
275 uint32_t method_offset,
277 return GenNopsAndAdrpAndUse(num_nops, method_offset, target_offset, kAddXInsn);
215 GenNopsAndAdrpAndUse(size_t num_nops, uint32_t method_offset, uint32_t target_offset, uint32_t use_insn) argument
248 GenNopsAndAdrpLdr(size_t num_nops, uint32_t method_offset, uint32_t target_offset) argument
274 GenNopsAndAdrpAdd(size_t num_nops, uint32_t method_offset, uint32_t target_offset) argument
/art/compiler/optimizing/
H A Dcode_generator_arm64.cc4374 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( local
4376 // temp = temp->GetImtEntryAt(method_offset);
4377 __ Ldr(temp, MemOperand(temp, method_offset));
4519 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
4540 // temp = temp->GetMethodAt(method_offset);
4541 __ Ldr(temp, MemOperand(temp, method_offset));
6470 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
6473 MemOperand(XRegisterFrom(locations->InAt(0)), method_offset));
6475 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
6480 MemOperand(XRegisterFrom(locations->Out()), method_offset));
[all...]
H A Dcode_generator_arm_vixl.cc3637 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( local
3639 // temp = temp->GetImtEntryAt(method_offset);
3640 GetAssembler()->LoadFromOffset(kLoadWord, temp, temp, method_offset);
8955 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
8983 // temp = temp->GetMethodAt(method_offset);
8986 GetAssembler()->LoadFromOffset(kLoadWord, temp, temp, method_offset);
9307 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
9312 method_offset);
9314 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
9323 method_offset);
[all...]
H A Dcode_generator_mips.cc7656 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( local
7658 // temp = temp->GetImtEntryAt(method_offset);
7659 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
7901 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
7917 // temp = temp->GetMethodAt(method_offset);
7918 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
9526 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
9531 method_offset);
9533 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( local
9542 method_offset);
[all...]
H A Dcode_generator_x86.cc2291 // temp = temp->GetImtEntryAt(method_offset);
2292 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( local
2294 __ movl(temp, Address(temp, method_offset));
4266 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
4269 Address(locations->InAt(0).AsRegister<Register>(), method_offset));
4271 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( local
4276 // temp = temp->GetImtEntryAt(method_offset);
4278 Address(locations->Out().AsRegister<Register>(), method_offset));
4569 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
4590 // temp = temp->GetMethodAt(method_offset);
[all...]
H A Dcode_generator_x86_64.cc1032 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
1054 // temp = temp->GetMethodAt(method_offset);
1055 __ movq(temp, Address(temp, method_offset));
2464 // temp = temp->GetImtEntryAt(method_offset);
2465 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement( local
2467 // temp = temp->GetImtEntryAt(method_offset);
2468 __ movq(temp, Address(temp, method_offset));
4115 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
4118 Address(locations->InAt(0).AsRegister<CpuRegister>(), method_offset));
4120 uint32_t method_offset local
[all...]

Completed in 166 milliseconds