/art/runtime/openjdkjvmti/ |
D | ti_breakpoint.h | 59 return method_ == other.method_ && location_ == other.location_; 63 return method_; in GetMethod() 71 art::ArtMethod* method_;
|
D | ti_breakpoint.cc | 55 return std::hash<uintptr_t> {}(reinterpret_cast<uintptr_t>(method_)) in hash() 59 Breakpoint::Breakpoint(art::ArtMethod* m, jlocation loc) : method_(m), location_(loc) { in Breakpoint()
|
/art/runtime/interpreter/ |
D | shadow_frame.h | 271 DCHECK(method_ != nullptr); in SetMethod() 272 method_ = method; in SetMethod() 276 DCHECK(method_ != nullptr); in GetMethod() 277 return method_; in GetMethod() 308 return OFFSETOF_MEMBER(ShadowFrame, method_); in MethodOffset() 368 method_(method), in ShadowFrame() 398 ArtMethod* method_; variable
|
/art/runtime/gc/ |
D | allocation_record.h | 46 : method_(method), in AllocRecordStackTraceElement() 50 return method_; in GetMethod() 54 method_ = m; in SetMethod() 66 return method_ == other.method_ && dex_pc_ == other.dex_pc_; 70 ArtMethod* method_ = nullptr;
|
D | allocation_record.cc | 34 DCHECK(method_ != nullptr); in ComputeLineNumber() 35 return method_->GetLineNumFromDexPC(dex_pc_); in ComputeLineNumber()
|
/art/runtime/ |
D | gc_root.h | 156 : field_(nullptr), method_(nullptr) { in GcRootSource() 159 : field_(field), method_(nullptr) { in GcRootSource() 162 : field_(nullptr), method_(method) { in GcRootSource() 168 return method_; in GetArtMethod() 174 return method_ != nullptr; in HasArtMethod() 179 ArtMethod* const method_; variable
|
D | instrumentation.cc | 265 CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m) in InstrumentationInstallStack() 266 << ", Found " << ArtMethod::PrettyMethod(frame.method_); in InstrumentationInstallStack() 327 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0); in InstrumentationInstallStack() 333 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc); in InstrumentationInstallStack() 389 CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m); in InstrumentationRestoreStack() 1171 ArtMethod* method = instrumentation_frame.method_; in PopInstrumentationStackFrame() 1195 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); in PopInstrumentationStackFrame() 1246 ArtMethod* method = instrumentation_frame.method_; in PopMethodForUnwind() 1264 DCHECK(instrumentation_frame.method_ == stack->front().method_); in PopMethodForUnwind() 1271 os << "Frame " << frame_id_ << " " << ArtMethod::PrettyMethod(method_) << ":" in Dump()
|
D | dex_file_annotations.cc | 74 if (method_ != nullptr) { in GetDexCache() 75 return method_->GetDexCache(); in GetDexCache() 82 if (method_ != nullptr) { in GetClassLoader() 83 return method_->GetDeclaringClass()->GetClassLoader(); in GetClassLoader() 90 if (method_ != nullptr) { in GetRealClass() 91 return method_->GetDeclaringClass(); in GetRealClass() 103 method_(method), in ClassData() 106 DCHECK((method_ == nullptr) || real_klass_.IsNull()); in ClassData() 110 ArtMethod* method_; member in art::__anon607cc5e80111::ClassData
|
D | debugger.h | 98 stack_depth_(stack_depth), method_(method) { in SingleStepControl() 114 return method_; in GetMethod() 139 ArtMethod* method_; variable 159 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {} in DeoptimizationRequest() 200 jmethodID method_; variable
|
D | dex_file.h | 1407 return last_idx_ + method_.method_idx_delta_; in GetMemberIndex() 1415 return method_.access_flags_; in GetRawMemberAccessFlags() 1449 return dex_file_.GetCodeItem(method_.code_off_); in GetMethodCodeItem() 1452 return method_.code_off_; in GetMethodCodeItemOffset() 1512 ClassDataMethod method_; variable
|
D | instrumentation.h | 663 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id), in InstrumentationStackFrame() 670 ArtMethod* method_; member
|
D | monitor.cc | 232 method_(nullptr), in NthCallerWithDexPcVisitor() 245 method_ = m; in VisitFrame() 255 ArtMethod* method_; member 281 TranslateLocation(visitor.method_, visitor.dex_pc_, &filename, &line_number); in AtraceMonitorLockImpl()
|
D | dex_file.cc | 1431 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod() 1432 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod() 1433 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod() 1434 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) { in ReadClassDataMethod()
|
D | stack.cc | 840 CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(), in WalkStack() 843 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod()) in WalkStack()
|
D | debugger.cc | 87 : method_(method->GetCanonicalMethod(kRuntimePointerSize)), in Breakpoint() 96 : method_(other.method_), in REQUIRES_SHARED() 103 return method_; in Method() 117 return method_ == m->GetCanonicalMethod(kRuntimePointerSize); in IsInMethod() 122 ArtMethod* method_; member in art::Breakpoint 5240 return jni::DecodeArtMethod(method_); in Method() 5244 method_ = jni::EncodeArtMethod(m); in SetMethod()
|
D | thread.cc | 3129 method_(nullptr), in CurrentMethodVisitor() 3141 method_ = m; in VisitFrame() 3146 ArtMethod* method_; member 3162 return visitor.method_; in GetCurrentMethod()
|
D | class_linker.cc | 9012 : method_(method), in FindVirtualMethodHolderVisitor() 9016 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) { in operator ()() 9024 const ArtMethod* const method_; member in art::ClassLinker::FindVirtualMethodHolderVisitor
|
/art/runtime/jit/ |
D | profiling_info.h | 73 return method_; in GetMethod() 141 ArtMethod* method_; variable
|
D | profiling_info.cc | 30 method_(method), in ProfilingInfo() 86 LOG(FATAL) << "No inline cache found for " << ArtMethod::PrettyMethod(method_) << "@" << dex_pc; in GetInlineCache()
|
D | jit.cc | 598 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind) { in JitCompileTask() 601 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass()); in JitCompileTask() 613 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ false); in Run() 615 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ true); in Run() 618 if (ProfilingInfo::Create(self, method_, /* retry_allocation */ true)) { in Run() 619 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_); in Run() 630 ArtMethod* const method_; member in art::jit::FINAL
|
D | jit_code_cache.cc | 795 info->method_ = new_method; in MoveObsoleteMethod()
|
/art/test/ti-stress/ |
D | stress.cc | 200 method_(m), in ScopedMethodInfo() 216 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init() 222 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init() 233 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init() 263 jmethodID method_; member in art::ScopedMethodInfo
|
/art/compiler/optimizing/ |
D | inliner.cc | 310 : method_(method), in ScopedProfilingInfoInlineUse() 321 DCHECK_EQ(profiling_info_, method_->GetProfilingInfo(pointer_size)); in ~ScopedProfilingInfoInlineUse() 322 Runtime::Current()->GetJit()->GetCodeCache()->DoneCompilerUse(method_, self_); in ~ScopedProfilingInfoInlineUse() 329 ArtMethod* const method_; member in art::ScopedProfilingInfoInlineUse
|
D | nodes.h | 1786 method_(method), in HEnvironment() 1850 return method_; in GetMethod() 1866 ArtMethod* method_; variable
|