Home
last modified time | relevance | path

Searched refs:method_ (Results 1 – 24 of 24) sorted by relevance

/art/runtime/openjdkjvmti/
Dti_breakpoint.h59 return method_ == other.method_ && location_ == other.location_;
63 return method_; in GetMethod()
71 art::ArtMethod* method_;
Dti_breakpoint.cc55 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/
Dshadow_frame.h271 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/
Dallocation_record.h46 : 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;
Dallocation_record.cc34 DCHECK(method_ != nullptr); in ComputeLineNumber()
35 return method_->GetLineNumFromDexPC(dex_pc_); in ComputeLineNumber()
/art/runtime/
Dgc_root.h156 : 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
Dinstrumentation.cc265 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()
Ddex_file_annotations.cc74 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
Ddebugger.h98 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
Ddex_file.h1407 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
Dinstrumentation.h663 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id), in InstrumentationStackFrame()
670 ArtMethod* method_; member
Dmonitor.cc232 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()
Ddex_file.cc1431 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()
Dstack.cc840 CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(), in WalkStack()
843 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod()) in WalkStack()
Ddebugger.cc87 : 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()
Dthread.cc3129 method_(nullptr), in CurrentMethodVisitor()
3141 method_ = m; in VisitFrame()
3146 ArtMethod* method_; member
3162 return visitor.method_; in GetCurrentMethod()
Dclass_linker.cc9012 : 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/
Dprofiling_info.h73 return method_; in GetMethod()
141 ArtMethod* method_; variable
Dprofiling_info.cc30 method_(method), in ProfilingInfo()
86 LOG(FATAL) << "No inline cache found for " << ArtMethod::PrettyMethod(method_) << "@" << dex_pc; in GetInlineCache()
Djit.cc598 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
Djit_code_cache.cc795 info->method_ = new_method; in MoveObsoleteMethod()
/art/test/ti-stress/
Dstress.cc200 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/
Dinliner.cc310 : 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
Dnodes.h1786 method_(method), in HEnvironment()
1850 return method_; in GetMethod()
1866 ArtMethod* method_; variable