HomeSort by relevance Sort by last modified time
    Searched refs:method_idx (Results 51 - 75 of 82) sorted by null

1 23 4

  /art/compiler/sea_ir/ir/
sea.cc 195 uint32_t method_idx, uint32_t method_access_flags) {
198 method_idx_ = method_idx;
413 uint32_t method_idx, uint32_t method_access_flags, const art::DexFile& dex_file) {
415 BuildMethodSeaGraph(code_item, dex_file, class_def_idx, method_idx, method_access_flags);
  /art/runtime/arch/arm/
entrypoints_init_arm.cc 123 extern "C" void art_quick_throw_no_such_method(int32_t method_idx);
  /art/runtime/arch/arm64/
entrypoints_init_arm64.cc 103 extern "C" void art_quick_throw_no_such_method(int32_t method_idx);
  /art/runtime/arch/mips/
entrypoints_init_mips.cc 126 extern "C" void art_quick_throw_no_such_method(int32_t method_idx);
quick_entrypoints_mips.S 416 jr $t9 # artThrowNoSuchMethodFromCode(method_idx, Thread*, $sp)
423 * the method_idx. This wrapper will save arg1-arg3, load the caller's Method*, align the
447 jal \cxx_name # (method_idx, this, caller, Thread*, $sp)
    [all...]
  /art/runtime/arch/x86/
entrypoints_init_x86.cc 104 extern "C" void art_quick_throw_no_such_method(int32_t method_idx);
  /art/runtime/arch/x86_64/
entrypoints_init_x86_64.cc 105 extern "C" void art_quick_throw_no_such_method(int32_t method_idx);
  /art/compiler/dex/
mir_optimization.cc 569 LOG(WARNING) << "LVN overflow in " << PrettyMethod(cu_->method_idx, *cu_->dex_file);
    [all...]
mir_analysis.cc 961 << PrettyMethod(cu_->method_idx, *cu_->dex_file);
1083 ->IsSpecial(cu_->method_idx)) {
vreg_analysis.cc 367 LOG(WARNING) << PrettyMethod(cu_->method_idx, *cu_->dex_file)
397 << PrettyMethod(cu_->method_idx, *cu_->dex_file);
local_value_numbering.h 106 DCHECK_EQ(map->count(s_reg), 0u) << PrettyMethod(gvn_->cu_->method_idx, *gvn_->cu_->dex_file)
mir_graph.h 561 uint32_t method_idx, jobject class_loader, const DexFile& dex_file);
    [all...]
  /art/runtime/mirror/
art_method-inl.h 101 inline void ArtMethod::SetDexCacheResolvedMethod(uint16_t method_idx, ArtMethod* new_method) {
102 GetDexCacheResolvedMethods()->Set<false>(method_idx, new_method);
art_method.h 219 ArtMethod* GetDexCacheResolvedMethod(uint16_t method_idx)
221 void SetDexCacheResolvedMethod(uint16_t method_idx, ArtMethod* new_method)
class.h 571 DexCache* dex_cache, uint32_t method_idx)
575 uint32_t method_idx)
    [all...]
  /art/runtime/
utils.cc 391 std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature) {
392 if (method_idx >= dex_file.NumMethodIds()) {
393 return StringPrintf("<<invalid-method-idx-%d>>", method_idx);
395 const DexFile::MethodId& method_id = dex_file.GetMethodId(method_idx);
    [all...]
class_linker.cc 3904 uint32_t method_idx = proxy_method->GetDexMethodIndex(); local
    [all...]
utils.h 296 std::string PrettyMethod(uint32_t method_idx, const DexFile& dex_file, bool with_signature = true);
dex_file.h 845 void DecodeDebugInfo(const CodeItem* code_item, bool is_static, uint32_t method_idx,
938 void DecodeDebugInfo0(const CodeItem* code_item, bool is_static, uint32_t method_idx,
    [all...]
profiler.cc 529 uint32_t method_idx = method->GetDexMethodIndex(); local
531 MethodReference method_ref(dex_file, method_idx);
  /art/compiler/dex/quick/
gen_common.cc 354 if (cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx, *dex_file, type_idx)) {
393 if (cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx, *cu_->dex_file,
822 if (!cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx,
    [all...]
gen_invoke.cc 572 uint32_t method_idx, uintptr_t unused, uintptr_t unused2,
588 // Get this->klass_.embedded_vtable[method_idx] [usr kArg0, set kArg0]
590 method_idx * sizeof(mirror::Class::VTableEntry);
614 uint32_t method_idx, uintptr_t unused,
635 (method_idx % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
653 const MethodReference& target_method, uint32_t method_idx) {
    [all...]
  /art/compiler/
oat_writer.cc 293 uint32_t method_idx = it.GetMemberIndex(); local
295 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
    [all...]
  /art/compiler/llvm/
gbc_expander.cc 205 llvm::Value* EmitLoadDexCacheResolvedMethodFieldAddr(uint32_t method_idx);
378 llvm::FunctionType* GetFunctionType(llvm::Type* ret_type, uint32_t method_idx, bool is_static);
730 EmitLoadDexCacheResolvedMethodFieldAddr(uint32_t method_idx) {
734 llvm::Value* method_idx_value = irb_.getPtrEquivInt(method_idx);
    [all...]
  /art/compiler/dex/portable/
mir_to_gbc.cc 473 // Insert the method_idx
    [all...]

Completed in 445 milliseconds

1 23 4