Home | History | Annotate | Download | only in driver

Lines Matching defs:method_idx

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();
717 method_idx,
735 DCHECK(current_dex_to_dex_methods_->IsBitSet(method_idx));
743 method_idx,
853 uint32_t method_idx = it.GetMemberIndex();
854 if (method_idx == previous_direct_method_idx) {
855 // smali can create dex files with two encoded_methods sharing the same method_idx
860 previous_direct_method_idx = method_idx;
867 uint32_t method_idx = it.GetMemberIndex();
868 if (method_idx == previous_virtual_method_idx) {
869 // smali can create dex files with two encoded_methods sharing the same method_idx
874 previous_virtual_method_idx = method_idx;
1785 uint32_t method_idx = target_method->dex_method_index;
1787 soa, dex_cache, class_loader, mUnit, method_idx, orig_invoke_type);
1832 uint32_t method_idx) const {
1833 MethodReference ref(dex_file, method_idx);
2666 uint32_t method_idx = it.GetMemberIndex();
2667 if (method_idx == previous_direct_method_idx) {
2668 // smali can create dex files with two encoded_methods sharing the same method_idx
2673 previous_direct_method_idx = method_idx;
2676 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2683 uint32_t method_idx = it.GetMemberIndex();
2684 if (method_idx == previous_virtual_method_idx) {
2685 // smali can create dex files with two encoded_methods sharing the same method_idx
2690 previous_virtual_method_idx = method_idx;
2693 method_idx, jclass_loader, dex_file, dex_to_dex_compilation_level,
2793 bool CompilerDriver::IsMethodVerifiedWithoutFailures(uint32_t method_idx,
2796 const VerifiedMethod* verified_method = GetVerifiedMethod(&dex_file, method_idx);