HomeSort by relevance Sort by last modified time
    Searched refs:method_index (Results 1 - 14 of 14) sorted by null

  /art/compiler/optimizing/
stack_map_stream.h 65 uint32_t method_index; member in struct:art::StackMapStream::InlineInfoEntry
98 void AddInlineInfoEntry(uint32_t method_index) {
100 entry.method_index = method_index;
191 inline_info.SetMethodReferenceIndexAtDepth(i, inline_entry.method_index);
  /art/compiler/
oat_test.cc 172 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/runtime/
oat_file.cc 542 uint32_t OatFile::OatClass::GetOatMethodOffsetsOffset(uint32_t method_index) const {
543 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index);
550 const OatMethodOffsets* OatFile::OatClass::GetOatMethodOffsets(uint32_t method_index) const {
551 // NOTE: We don't keep the number of methods and cannot do a bounds check for method_index.
559 methods_pointer_index = method_index;
562 if (!BitVector::IsBitSet(bitmap_, method_index)) {
565 size_t num_set_bits = BitVector::NumSetBits(bitmap_, method_index);
572 const OatFile::OatMethod OatFile::OatClass::GetOatMethod(uint32_t method_index) const {
573 const OatMethodOffsets* oat_method_offsets = GetOatMethodOffsets(method_index);
oat_file.h 187 const OatMethod GetOatMethod(uint32_t method_index) const;
190 // method_index, or nullptr if none is present. Note that most
192 const OatMethodOffsets* GetOatMethodOffsets(uint32_t method_index) const;
195 // OatMethodOffsets for the requested method_index, or 0 if none
197 uint32_t GetOatMethodOffsetsOffset(uint32_t method_index) const;
class_linker.h 560 const DexFile& dex_file, uint32_t dex_method_index, uint32_t method_index)
    [all...]
class_linker.cc     [all...]
  /art/compiler/dex/quick/
dex_file_method_inliner.h 70 bool IsIntrinsic(uint32_t method_index, InlineMethod* intrinsic) LOCKS_EXCLUDED(lock_);
80 bool IsSpecial(uint32_t method_index) LOCKS_EXCLUDED(lock_);
dex_file_method_inliner.cc 413 bool DexFileMethodInliner::IsIntrinsic(uint32_t method_index, InlineMethod* intrinsic) {
415 auto it = inline_methods_.find(method_index);
510 bool DexFileMethodInliner::IsSpecial(uint32_t method_index) {
512 auto it = inline_methods_.find(method_index);
    [all...]
  /art/runtime/mirror/
art_method.cc 110 uint16_t method_index = GetMethodIndex(); local
114 if (super_class->HasVTable() && method_index < super_class->GetVTableLength()) {
115 result = super_class->GetVTableEntry(method_index);
art_method-inl.h 91 inline ArtMethod* ArtMethod::GetDexCacheResolvedMethod(uint16_t method_index) {
92 ArtMethod* method = GetDexCacheResolvedMethods()->Get(method_index);
  /external/chromium_org/skia/ext/
image_operations_unittest.cc 540 for (size_t method_index = 0;
541 method_index < arraysize(tested_methods);
542 ++method_index) {
545 tested_methods[method_index],
  /art/compiler/dex/
mir_optimization.cc 1209 uint32_t method_index = invoke->meta.method_lowering_info; local
    [all...]
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 825 uint32_t method_index = mh.FindDexMethodIndexInOtherDexFile(*dex_file, dex_method_idx); local
    [all...]
  /art/oatdump/
oatdump.cc 293 size_t method_index = m->GetMethodIndex(); local
294 return oat_class.GetOatMethod(method_index).GetQuickCode();
    [all...]

Completed in 197 milliseconds