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

/art/runtime/
H A Dmethod_reference.h28 MethodReference(const DexFile* file, uint32_t index) : dex_file(file), dex_method_index(index) {
31 return dex_file->PrettyMethod(dex_method_index, with_signature);
34 uint32_t dex_method_index; member in struct:art::MethodReference
40 return mr1.dex_method_index < mr2.dex_method_index;
/art/compiler/debug/
H A Dmethod_debug_info.h30 uint32_t dex_method_index; member in struct:art::debug::MethodDebugInfo
/art/compiler/optimizing/
H A Dstack_map_stream.h124 uint32_t dex_method_index; member in struct:art::StackMapStream::StackMapEntry
147 void AddInvoke(InvokeType type, uint32_t dex_method_index);
H A Dstack_map_stream.cc42 current_entry_.dex_method_index = DexFile::kDexNoIndex;
100 void StackMapStream::AddInvoke(InvokeType invoke_type, uint32_t dex_method_index) { argument
102 current_entry_.dex_method_index = dex_method_index;
229 if (entry.dex_method_index != DexFile::kDexNoIndex) {
231 method_index_max = std::max(method_index_max, static_cast<uint16_t>(entry.dex_method_index));
365 if (entry.dex_method_index != DexFile::kDexNoIndex) {
563 const uint32_t method_index = stack_map.dex_method_index;
632 if (entry.dex_method_index != DexFile::kDexNoIndex) {
H A Dinliner.cc1226 uint32_t dex_method_index = FindMethodIndexIn( local
1228 if (dex_method_index == DexFile::kDexNoIndex) {
1236 dex_method_index,
H A Dnodes.h4041 uint32_t dex_method_index,
4052 dex_method_index_(dex_method_index),
4078 uint32_t dex_method_index,
4085 dex_method_index,
4102 uint32_t dex_method_index)
4108 dex_method_index,
4379 uint32_t dex_method_index,
4387 dex_method_index,
4427 uint32_t dex_method_index,
4435 dex_method_index,
4036 HInvoke(ArenaAllocator* arena, uint32_t number_of_arguments, uint32_t number_of_other_inputs, Primitive::Type return_type, uint32_t dex_pc, uint32_t dex_method_index, ArtMethod* resolved_method, InvokeType invoke_type) argument
4074 HInvokeUnresolved(ArenaAllocator* arena, uint32_t number_of_arguments, Primitive::Type return_type, uint32_t dex_pc, uint32_t dex_method_index, InvokeType invoke_type) argument
4098 HInvokePolymorphic(ArenaAllocator* arena, uint32_t number_of_arguments, Primitive::Type return_type, uint32_t dex_pc, uint32_t dex_method_index) argument
4375 HInvokeVirtual(ArenaAllocator* arena, uint32_t number_of_arguments, Primitive::Type return_type, uint32_t dex_pc, uint32_t dex_method_index, ArtMethod* resolved_method, uint32_t vtable_index) argument
4423 HInvokeInterface(ArenaAllocator* arena, uint32_t number_of_arguments, Primitive::Type return_type, uint32_t dex_pc, uint32_t dex_method_index, ArtMethod* resolved_method, uint32_t imt_index) argument
[all...]
/art/runtime/jit/
H A Dprofile_compilation_info.h60 : dex_file(dex), dex_method_index(method_index) {}
65 : dex_file(dex), dex_method_index(method_index), inline_caches(caches) {}
68 const uint32_t dex_method_index; member in struct:art::ProfileMethodInfo
239 uint16_t dex_method_index) const;
364 uint16_t dex_method_index) const;
/art/runtime/verifier/
H A Dverifier_deps.cc133 uint32_t dex_method_index,
141 dex_file.GetMethodId(dex_method_index).class_idx_,
132 GetMethodDeclaringClassStringId(const DexFile& dex_file, uint32_t dex_method_index, ArtMethod* method) argument
/art/oatdump/
H A Doatdump.cc250 uint32_t dex_method_index,
272 info.dex_method_index = dex_method_index;
247 WalkOatMethod(const OatFile::OatMethod& oat_method, const DexFile& dex_file, uint32_t class_def_index, uint32_t dex_method_index, const DexFile::CodeItem* code_item, uint32_t method_access_flags) argument

Completed in 197 milliseconds