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

  /art/runtime/
method_reference.h 28 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/
method_debug_info.h 30 uint32_t dex_method_index; member in struct:art::debug::MethodDebugInfo
elf_symtab_writer.h 72 std::string name = info.dex_file->PrettyMethod(info.dex_method_index, with_signature);
elf_debug_info_writer.h 141 const DexFile::MethodId& dex_method = dex->GetMethodId(mi->dex_method_index);
239 mi->dex_method_index,
  /art/compiler/utils/
atomic_method_ref_map-inl.h 35 return (*array)[ref.dex_method_index].CompareExchangeStrongSequentiallyConsistent(
47 *out = (*array)[ref.dex_method_index].LoadRelaxed();
  /art/runtime/jit/
profile_compilation_info.h 60 : 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;
profile_compilation_info.cc 544 InlineCacheMap* inline_cache = data->FindOrAddMethod(pmi.dex_method_index);
    [all...]
profile_saver.cc 251 profile_methods_for_location.emplace_back(ref.dex_file, ref.dex_method_index);
  /art/compiler/optimizing/
stack_map_stream.cc 42 current_entry_.dex_method_index = DexFile::kDexNoIndex;
100 void StackMapStream::AddInvoke(InvokeType invoke_type, uint32_t dex_method_index) {
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) {
stack_map_stream.h 124 uint32_t dex_method_index; member in struct:art::StackMapStream::StackMapEntry
147 void AddInvoke(InvokeType type, uint32_t dex_method_index);
inliner.cc 1226 uint32_t dex_method_index = FindMethodIndexIn( local
    [all...]
nodes.h     [all...]
optimizing_compiler.cc     [all...]
  /art/compiler/linker/
relative_patcher_test.h 196 ref.dex_method_index == method_ref.dex_method_index) {
multi_oat_relative_patcher_test.cc 28 return lhs.dex_file == rhs.dex_file && lhs.dex_method_index == rhs.dex_method_index;
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc 361 static bool GetInvokeType(ArtMethod** sp, InvokeType* invoke_type, uint32_t* dex_method_index)
379 *dex_method_index = invoke.GetMethodIndex(encoding.invoke_info.encoding, method_info);
    [all...]
  /art/compiler/linker/arm/
relative_patcher_arm_base.cc 400 target_method.dex_method_index == method_ref.dex_method_index) {
  /art/runtime/verifier/
verifier_deps.cc 133 uint32_t dex_method_index,
141 dex_file.GetMethodId(dex_method_index).class_idx_,
    [all...]
  /art/compiler/driver/
compiler_driver.cc     [all...]
  /art/compiler/dex/
inline_method_analyser.cc 510 const DexFile::MethodId& method_id = ref.dex_file->GetMethodId(ref.dex_method_index);
  /art/compiler/
oat_writer.cc 800 << method_ref.dex_file->PrettyMethod(method_ref.dex_method_index)
883 info.dex_method_index = it.GetMemberIndex();
    [all...]
  /art/oatdump/
oatdump.cc 250 uint32_t dex_method_index,
272 info.dex_method_index = dex_method_index;
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 337 CHECK_EQ(compiled_method_refs_[0].dex_method_index, 1u);
    [all...]

Completed in 3958 milliseconds