Searched defs:method_index (Results 1 - 9 of 9) sorted by relevance

/art/compiler/
H A Doat_test.cc172 size_t method_index = 0; local
173 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
175 oat_class.GetOatMethod(method_index), dex_file);
177 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
179 oat_class.GetOatMethod(method_index), dex_file);
/art/compiler/optimizing/
H A Dstack_map_stream.h65 uint32_t method_index; member in struct:art::StackMapStream::InlineInfoEntry
98 void AddInlineInfoEntry(uint32_t method_index) { argument
100 entry.method_index = method_index;
191 inline_info.SetMethodReferenceIndexAtDepth(i, inline_entry.method_index);
/art/runtime/mirror/
H A Dart_method.cc131 uint16_t method_index = GetMethodIndex(); local
135 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
136 result = super_class->GetVTableEntry(method_index);
H A Dart_method-inl.h92 inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index) { argument
93 ArtMethod* method = GetDexCacheResolvedMethods()->Get(method_index);
/art/compiler/dex/quick/
H A Ddex_file_method_inliner.cc413 bool DexFileMethodInliner::IsIntrinsic(uint32_t method_index, InlineMethod* intrinsic) { argument
415 auto it = inline_methods_.find(method_index);
510 bool DexFileMethodInliner::IsSpecial(uint32_t method_index) { argument
512 auto it = inline_methods_.find(method_index);
/art/compiler/dex/
H A Dmir_optimization.cc1195 uint32_t method_index = invoke->meta.method_lowering_info; local
1196 if (temp_bit_vector_->IsBitSet(method_index)) {
1197 iget_or_iput->meta.ifield_lowering_info = temp_insn_data_[method_index];
1214 temp_bit_vector_->SetBit(method_index);
1215 temp_insn_data_[method_index] = field_info_index;
/art/oatdump/
H A Doatdump.cc286 size_t method_index = m->GetMethodIndex(); local
287 return oat_class.GetOatMethod(method_index).GetQuickCode();
/art/runtime/entrypoints/quick/
H A Dquick_trampoline_entrypoints.cc802 uint32_t method_index = mh.FindDexMethodIndexInOtherDexFile(*dex_file, dex_method_idx); local
803 if (method_index != DexFile::kDexNoIndex) {
804 caller->SetDexCacheResolvedMethod(method_index, called);
/art/runtime/
H A Dclass_linker.cc2540 for (size_t method_index = 0; it.HasNextDirectMethod(); ++method_index, it.Next()) {
2541 mirror::ArtMethod* method = klass->GetDirectMethod(method_index);
2549 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index);
2593 uint32_t method_index) {
2606 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index);
2591 LinkCode(Handle<mirror::ArtMethod> method, const OatFile::OatClass* oat_class, const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index) argument

Completed in 4241 milliseconds