Home
last modified time | relevance | path

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

/art/openjdkjvmti/
Dti_breakpoint.h59 return method_ == other.method_ && location_ == other.location_;
63 return method_; in GetMethod()
71 art::ArtMethod* method_;
Dti_breakpoint.cc57 return std::hash<uintptr_t> {}(reinterpret_cast<uintptr_t>(method_)) in hash()
61 Breakpoint::Breakpoint(art::ArtMethod* m, jlocation loc) : method_(m), location_(loc) { in Breakpoint()
/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.cc33 DCHECK(method_ != nullptr); in ComputeLineNumber()
34 return method_->GetLineNumFromDexPC(dex_pc_); in ComputeLineNumber()
/art/runtime/
Dgc_root.h157 : field_(nullptr), method_(nullptr) { in GcRootSource()
160 : field_(field), method_(nullptr) { in GcRootSource()
163 : field_(nullptr), method_(method) { in GcRootSource()
169 return method_; in GetArtMethod()
175 return method_ != nullptr; in HasArtMethod()
180 ArtMethod* const method_; variable
Dinstrumentation.cc130 ArtMethod* method = frame.method_; in PopFramesTo()
328 CHECK_EQ(m->GetNonObsoleteMethod(), frame.method_->GetNonObsoleteMethod()) in InstrumentationInstallStack()
330 << ", Found " << ArtMethod::PrettyMethod(frame.method_); in InstrumentationInstallStack()
414 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0); in InstrumentationInstallStack()
419 if (!isi->interpreter_entry_ && !isi->method_->IsRuntimeMethod()) { in InstrumentationInstallStack()
420 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc); in InstrumentationInstallStack()
477 instrumentation_frame.method_->GetNonObsoleteMethod()) in InstrumentationRestoreStack()
1465 ArtMethod* method = instrumentation_frame.method_; in PopInstrumentationStackFrame()
1516 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); in PopInstrumentationStackFrame()
1573 LOG(INFO) << "Popping for deoptimization " << stack->at(i).method_->PrettyMethod(); in PopFramesForDeoptimization()
[all …]
Ddebugger.h127 stack_depth_(stack_depth), method_(method) { in SingleStepControl()
143 return method_; in GetMethod()
168 ArtMethod* method_; variable
188 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {} in DeoptimizationRequest()
229 jmethodID method_; variable
Dinstrumentation.h737 method_(method), in InstrumentationStackFrame()
746 ArtMethod* method_; member
Dmonitor.cc199 method_(nullptr), in Install()
209 method_ = m; in Install()
216 ArtMethod* method_; in Install() member
221 locking_method_ = nmv.method_; in Install()
Dstack.cc874 CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(), in WalkStack()
877 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod()) in WalkStack()
Ddebugger.cc96 : method_(method->GetCanonicalMethod(kRuntimePointerSize)), in Breakpoint()
105 : method_(other.method_), in REQUIRES_SHARED()
112 return method_; in Method()
126 return method_ == m->GetCanonicalMethod(kRuntimePointerSize); in IsInMethod()
131 ArtMethod* method_; member in art::Breakpoint
5196 return jni::DecodeArtMethod(method_); in Method()
5200 method_ = jni::EncodeArtMethod(m); in SetMethod()
Dclass_linker.cc9727 : method_(method), in FindVirtualMethodHolderVisitor()
9731 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) { in operator ()()
9739 const ArtMethod* const method_; member in art::ClassLinker::FindVirtualMethodHolderVisitor
/art/runtime/interpreter/
Dshadow_frame.h260 DCHECK(method_ != nullptr); in SetMethod()
261 method_ = method; in SetMethod()
265 DCHECK(method_ != nullptr); in GetMethod()
266 return method_; in GetMethod()
297 return OFFSETOF_MEMBER(ShadowFrame, method_); in MethodOffset()
392 method_(method), in ShadowFrame()
435 ArtMethod* method_; variable
/art/runtime/jit/
Dprofiling_info.h73 return method_; in GetMethod()
138 ArtMethod* method_; variable
Dprofiling_info.cc29 : method_(method), in ProfilingInfo()
78 LOG(FATAL) << "No inline cache found for " << ArtMethod::PrettyMethod(method_) << "@" << dex_pc; in GetInlineCache()
Djit.cc566 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind), klass_(nullptr) { in JitCompileTask()
571 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass()); in JitCompileTask()
590 method_, in Run()
597 if (ProfilingInfo::Create(self, method_, /* retry_allocation= */ true)) { in Run()
598 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_); in Run()
611 ArtMethod* const method_; member in art::jit::JitCompileTask
Djit_code_cache.cc1300 info->method_ = new_method; in MoveObsoleteMethod()
/art/tools/jvmti-agents/breakpoint-logger/
Dbreakpoint_logger.cc178 method_(method), in ScopedMethodInfo()
194 if (jvmti_env_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
200 jvmtiError err = jvmti_env_->GetLineNumberTable(method_, &nlines, &lines); in Init()
211 (jvmti_env_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
241 jmethodID method_; member in breakpoint_logger::ScopedMethodInfo
/art/test/ti-stress/
Dstress.cc220 method_(m), in ScopedMethodInfo()
234 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
240 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init()
251 (jvmtienv_->GetMethodName(method_, &name_, &signature_, nullptr) == JVMTI_ERROR_NONE); in Init()
277 jmethodID method_; member in art::ScopedMethodInfo
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc239 : jvmtienv_(jvmtienv), env_(env), method_(m) {} in ScopedMethodInfo()
249 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
255 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init()
266 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
296 jmethodID method_; member in tifast::__anon034dbc8c0111::ScopedMethodInfo
/art/runtime/dex/
Ddex_file_annotations.cc94 if (method_ != nullptr) { in GetDexCache()
95 return method_->GetDexCache(); in GetDexCache()
102 if (method_ != nullptr) { in GetClassLoader()
103 return method_->GetDeclaringClass()->GetClassLoader(); in GetClassLoader()
110 if (method_ != nullptr) { in GetRealClass()
111 return method_->GetDeclaringClass(); in GetRealClass()
123 method_(method), in ClassData()
126 DCHECK((method_ == nullptr) || real_klass_.IsNull()); in ClassData()
130 ArtMethod* method_; member in art::__anoncd5616a20111::ClassData
/art/compiler/optimizing/
Dinliner.cc326 : method_(method), in ScopedProfilingInfoInlineUse()
337 DCHECK_EQ(profiling_info_, method_->GetProfilingInfo(pointer_size)); in ~ScopedProfilingInfoInlineUse()
338 Runtime::Current()->GetJit()->GetCodeCache()->DoneCompilerUse(method_, self_); in ~ScopedProfilingInfoInlineUse()
345 ArtMethod* const method_; member in art::ScopedProfilingInfoInlineUse
Dnodes.h1919 method_(method), in HEnvironment()
1990 return method_; in GetMethod()
2006 ArtMethod* method_; variable