HomeSort by relevance Sort by last modified time
    Searched defs:method_idx (Results 1 - 17 of 17) sorted by null

  /art/runtime/
dex_method_iterator_test.cc 41 uint32_t method_idx = it.GetMemberIndex(); local
43 LOG(INFO) << invoke_type << " " << PrettyMethod(method_idx, dex_file);
dex_instruction.cc 246 uint32_t method_idx = VRegB_21c(); local
247 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << PrettyMethod(method_idx, *file, true)
248 << " // method@" << method_idx;
405 uint32_t method_idx = VRegB_35c(); local
412 os << "}, " << PrettyMethod(method_idx, *file) << " // method@" << method_idx;
419 uint32_t method_idx = VRegB_35c(); local
426 os << "}, // vtable@" << method_idx; local
445 uint32_t method_idx = VRegB_3rc(); local
447 << PrettyMethod(method_idx, *file) << " // method@" << method_idx
453 uint32_t method_idx = VRegB_3rc(); local
    [all...]
profiler.cc 535 uint32_t method_idx = method->GetDexMethodIndex(); local
537 MethodReference method_ref(dex_file, method_idx);
utils.cc 376 std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature) {
377 if (method_idx >= dex_file.NumMethodIds()) {
378 return StringPrintf("<<invalid-method-idx-%d>>", method_idx);
380 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
1833 uint32_t method_idx = it.GetMemberIndex(); local
    [all...]
class_linker.cc 5797 size_t method_idx = local_method->GetMethodIndexDuringLinking(); local
    [all...]
  /art/compiler/dex/
dex_to_dex_compiler.cc 279 uint32_t method_idx = is_range ? inst->VRegB_3rc() : inst->VRegB_35c(); local
280 MethodReference target_method(&GetDexFile(), method_idx); local
296 << "(" << PrettyMethod(method_idx, GetDexFile(), true) << ")"
298 << " by replacing method index " << method_idx
310 quickened_info_.push_back(QuickenedInfo(dex_pc, method_idx));
321 uint32_t method_idx,
336 method_idx,
338 driver->GetVerifiedMethod(&dex_file, method_idx),
  /art/runtime/mirror/
dex_cache-inl.h 79 inline ArtMethod* DexCache::GetResolvedMethod(uint32_t method_idx, size_t ptr_size) {
81 DCHECK_LT(method_idx, NumResolvedMethods()); // NOTE: Unchecked, i.e. not throwing AIOOB.
82 ArtMethod* method = GetElementPtrSize<ArtMethod*>(GetResolvedMethods(), method_idx, ptr_size);
91 inline void DexCache::SetResolvedMethod(uint32_t method_idx, ArtMethod* method, size_t ptr_size) {
93 DCHECK_LT(method_idx, NumResolvedMethods()); // NOTE: Unchecked, i.e. not throwing AIOOB.
94 SetElementPtrSize(GetResolvedMethods(), method_idx, method, ptr_size); local
  /art/compiler/dex/quick/
dex_file_method_inliner.cc 822 uint32_t method_idx = FindMethodIndex(dex_file, &cache, def.method_def); local
    [all...]
  /art/compiler/utils/
test_dex_file_builder.h 147 uint32_t method_idx = 0u; local
149 entry.second = method_idx;
150 method_idx += 1u;
  /art/runtime/jit/
offline_profiling_info.cc 268 uint16_t method_idx) {
273 data->method_set.insert(method_idx);
294 uint16_t method_idx = line_buffer.ReadUintAndAdvance<uint16_t>(); local
295 if (!AddMethodIndex(dex_location, checksum, method_idx)) {
  /art/runtime/interpreter/
interpreter_common.h 226 const uint32_t method_idx = inst->VRegB_21c(); local
230 method_idx, &receiver, sf_method, self);
630 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
635 method_idx, &receiver, sf_method, self);
    [all...]
  /art/runtime/native/
dalvik_system_VMRuntime.cc 357 static void PreloadDexCachesResolveMethod(Handle<mirror::DexCache> dex_cache, uint32_t method_idx,
360 ArtMethod* method = dex_cache->GetResolvedMethod(method_idx, sizeof(void*));
365 const DexFile::MethodId& method_id = dex_file->GetMethodId(method_idx);
373 method = klass->FindDirectMethod(dex_cache.Get(), method_idx, sizeof(void*));
376 method = klass->FindInterfaceMethod(dex_cache.Get(), method_idx, sizeof(void*));
380 method = klass->FindVirtualMethod(dex_cache.Get(), method_idx, sizeof(void*));
390 dex_cache->SetResolvedMethod(method_idx, method, sizeof(void*));
540 uint32_t method_idx = it.GetMemberIndex(); local
542 PreloadDexCachesResolveMethod(dex_cache, method_idx, invoke_type);
545 uint32_t method_idx = it.GetMemberIndex() local
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 84 uint32_t method_idx = 2u; local
91 AddCompiledMethod(MethodRef(method_idx), ArrayRef<const uint8_t>(gap_code),
93 method_idx += 1u;
97 AddCompiledMethod(MethodRef(method_idx), ArrayRef<const uint8_t>(gap_code),
99 method_idx += 1u;
102 AddCompiledMethod(MethodRef(method_idx), last_method_code, last_method_patches);
107 auto last_result = method_offset_map_.FindMethodOffset(MethodRef(method_idx));
115 return method_idx;
118 uint32_t GetMethodOffset(uint32_t method_idx) {
119 auto result = method_offset_map_.FindMethodOffset(MethodRef(method_idx));
    [all...]
  /art/compiler/optimizing/
optimizing_compiler.cc 262 bool CanCompileMethod(uint32_t method_idx, const DexFile& dex_file) const OVERRIDE;
268 uint32_t method_idx,
274 uint32_t method_idx,
276 return ArtQuickJniCompileMethod(GetCompilerDriver(), access_flags, method_idx, dex_file);
320 uint32_t method_idx,
366 bool OptimizingCompiler::CanCompileMethod(uint32_t method_idx ATTRIBUTE_UNUSED,
614 uint32_t method_idx,
642 if (Compiler::IsPathologicalCase(*code_item, method_idx, dex_file)) {
663 method_idx,
676 method_idx,
882 const uint32_t method_idx = method->GetDexMethodIndex(); local
    [all...]
instruction_builder.cc 668 ArtMethod* HInstructionBuilder::ResolveMethod(uint16_t method_idx, InvokeType invoke_type) {
677 // at method_idx), as `CanAccessResolvedMethod` expects it be be in the dex cache.
679 method_idx, dex_compilation_unit_->GetDexCache(), class_loader)));
689 method_idx,
710 method_idx)) {
769 uint32_t method_idx,
775 const char* descriptor = dex_file_->GetMethodShorty(method_idx);
785 MethodReference target_method(dex_file_, method_idx);
1846 uint16_t method_idx; local
1871 uint16_t method_idx; local
    [all...]
  /art/compiler/driver/
compiler_driver.cc 566 uint32_t method_idx,
576 MethodReference method_ref(&dex_file, method_idx);
582 if (driver->GetCurrentDexToDexMethods()->IsBitSet(method_idx)) {
593 method_idx,
606 compiled_method = driver->GetCompiler()->JniCompile(access_flags, method_idx, dex_file);
631 class_def_idx, method_idx, class_loader,
644 LOG(WARNING) << "Compilation of " << PrettyMethod(method_idx, dex_file)
666 LOG(FATAL) << "Unexpected exception compiling: " << PrettyMethod(method_idx, dex_file) << "\n"
676 uint32_t method_idx = method->GetDexMethodIndex(); local
717 method_idx,
853 uint32_t method_idx = it.GetMemberIndex(); local
867 uint32_t method_idx = it.GetMemberIndex(); local
1785 uint32_t method_idx = target_method->dex_method_index; local
2666 uint32_t method_idx = it.GetMemberIndex(); variable
2683 uint32_t method_idx = it.GetMemberIndex(); variable
    [all...]
  /art/runtime/verifier/
method_verifier.cc 208 uint32_t method_idx = it->GetMemberIndex();
209 if (method_idx == previous_method_idx) {
210 // smali can create dex files with two encoded_methods sharing the same method_idx
215 previous_method_idx = method_idx;
218 *dex_file, method_idx, dex_cache, class_loader, nullptr, type);
229 method_idx,
353 uint32_t method_idx,
375 method_idx,
396 << PrettyMethod(method_idx, *dex_file) << "\n");
427 << PrettyMethod(method_idx, *dex_file) << "\n")
2855 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
2877 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
2954 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
3008 uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
3910 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
3932 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
4019 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
4056 const uint32_t method_idx = (is_range) ? inst->VRegB_3rc() : inst->VRegB_35c(); local
    [all...]

Completed in 548 milliseconds