Searched refs:method_offset (Results 1 - 7 of 7) sorted by relevance

/art/compiler/linker/arm64/
H A Drelative_patcher_arm64_test.cc150 uint32_t method_offset, uint32_t target_offset) {
156 DCHECK_EQ(method_offset & 3u, 0u);
158 uint32_t adrp_offset = method_offset + num_nops * 4u;
149 GenNopsAndAdrpLdr(size_t num_nops, uint32_t method_offset, uint32_t target_offset) argument
/art/compiler/
H A Doat_writer.cc1037 for (uint32_t& method_offset : oat_dex_file->methods_offsets_) {
1039 method_offset = (*oat_class_it)->offset_;
1522 uint32_t method_offset = GetOatMethodOffsetsOffsetFromOatClass(class_def_method_index_); local
1523 if (method_offset == 0) {
1526 return offset_ + method_offset;
/art/compiler/optimizing/
H A Dcode_generator_arm64.cc1943 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset( local
1965 // temp = temp->GetImtEntryAt(method_offset);
1966 __ Ldr(temp, MemOperand(temp, method_offset));
2071 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
2087 // temp = temp->GetMethodAt(method_offset);
2088 __ Ldr(temp, MemOperand(temp, method_offset));
H A Dcode_generator_mips64.cc2326 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset( local
2344 // temp = temp->GetImtEntryAt(method_offset);
2345 __ LoadFromOffset(kLoadDoubleword, temp, temp, method_offset);
2452 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
2466 // temp = temp->GetMethodAt(method_offset);
2467 __ LoadFromOffset(kLoadDoubleword, temp, temp, method_offset);
H A Dcode_generator_arm.cc1315 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
1328 // temp = temp->GetMethodAt(method_offset);
1331 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
1349 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset( local
1367 // temp = temp->GetImtEntryAt(method_offset);
1370 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
H A Dcode_generator_x86.cc1278 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
1291 // temp = temp->GetMethodAt(method_offset);
1292 __ movl(temp, Address(temp, method_offset));
1310 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset( local
1328 // temp = temp->GetImtEntryAt(method_offset);
1329 __ movl(temp, Address(temp, method_offset));
H A Dcode_generator_x86_64.cc1387 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset( local
1400 // temp = temp->GetMethodAt(method_offset);
1401 __ movq(temp, Address(temp, method_offset));
1419 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset( local
1437 // temp = temp->GetImtEntryAt(method_offset);
1438 __ movq(temp, Address(temp, method_offset));

Completed in 139 milliseconds