Home
last modified time | relevance | path

Searched refs:method_ (Results 1 – 25 of 25) 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/interpreter/
Dshadow_frame.h263 DCHECK(method_ != nullptr); in SetMethod()
264 method_ = method; in SetMethod()
268 DCHECK(method_ != nullptr); in GetMethod()
269 return method_; in GetMethod()
300 return OFFSETOF_MEMBER(ShadowFrame, method_); in MethodOffset()
368 method_(method), in ShadowFrame()
399 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.cc35 DCHECK(method_ != nullptr); in ComputeLineNumber()
36 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.cc267 CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m) in InstrumentationInstallStack()
268 << ", Found " << ArtMethod::PrettyMethod(frame.method_); in InstrumentationInstallStack()
352 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0); in InstrumentationInstallStack()
358 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc); in InstrumentationInstallStack()
414 CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m); in InstrumentationRestoreStack()
1318 ArtMethod* method = instrumentation_frame.method_; in PopInstrumentationStackFrame()
1371 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value); in PopInstrumentationStackFrame()
1424 ArtMethod* method = instrumentation_frame.method_; in PopMethodForUnwind()
1444 DCHECK(instrumentation_frame.method_ == stack->front().method_); in PopMethodForUnwind()
1451 os << "Frame " << frame_id_ << " " << ArtMethod::PrettyMethod(method_) << ":" in Dump()
Dmonitor.cc192 method_(nullptr), in Install()
202 method_ = m; in Install()
209 ArtMethod* method_; in Install() member
214 locking_method_ = nmv.method_; in Install()
276 method_(nullptr), in NthCallerWithDexPcVisitor()
289 method_ = m; in VisitFrame()
299 ArtMethod* method_; member
325 TranslateLocation(visitor.method_, visitor.dex_pc_, &filename, &line_number); in AtraceMonitorLockImpl()
Ddebugger.h117 stack_depth_(stack_depth), method_(method) { in SingleStepControl()
133 return method_; in GetMethod()
158 ArtMethod* method_; variable
178 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {} in DeoptimizationRequest()
219 jmethodID method_; variable
Dinstrumentation.h730 method_(method), in InstrumentationStackFrame()
739 ArtMethod* method_; member
Dstack.cc888 CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(), in WalkStack()
891 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod()) in WalkStack()
Ddebugger.cc92 : method_(method->GetCanonicalMethod(kRuntimePointerSize)), in Breakpoint()
101 : method_(other.method_), in REQUIRES_SHARED()
108 return method_; in Method()
122 return method_ == m->GetCanonicalMethod(kRuntimePointerSize); in IsInMethod()
127 ArtMethod* method_; member in art::Breakpoint
5338 return jni::DecodeArtMethod(method_); in Method()
5342 method_ = jni::EncodeArtMethod(m); in SetMethod()
Dthread.cc3415 method_(nullptr), in CurrentMethodVisitor()
3427 method_ = m; in VisitFrame()
3432 ArtMethod* method_; member
3448 return visitor.method_; in GetCurrentMethod()
Dclass_linker.cc9003 : method_(method), in FindVirtualMethodHolderVisitor()
9007 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) { in operator ()()
9015 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()
78 LOG(FATAL) << "No inline cache found for " << ArtMethod::PrettyMethod(method_) << "@" << dex_pc; in GetInlineCache()
Djit.cc604 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind) { in JitCompileTask()
607 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass()); in JitCompileTask()
619 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ false); in Run()
621 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ true); in Run()
624 if (ProfilingInfo::Create(self, method_, /* retry_allocation */ true)) { in Run()
625 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_); in Run()
636 ArtMethod* const method_; member in art::jit::FINAL
Djit_code_cache.cc991 info->method_ = new_method; in MoveObsoleteMethod()
/art/tools/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.cc222 method_(m), in ScopedMethodInfo()
238 if (jvmtienv_->GetMethodDeclaringClass(method_, &declaring_class_) != JVMTI_ERROR_NONE) { in Init()
244 jvmtiError err = jvmtienv_->GetLineNumberTable(method_, &nlines, &lines); in Init()
255 (jvmtienv_->GetMethodName(method_, &name_, &signature_, &generic_) == JVMTI_ERROR_NONE); in Init()
285 jmethodID method_; member in art::ScopedMethodInfo
/art/libdexfile/dex/
Ddex_file.cc714 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod()
715 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod()
716 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_); in ReadClassDataMethod()
717 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) { in ReadClassDataMethod()
Ddex_file.h1277 return last_idx_ + method_.method_idx_delta_; in GetMemberIndex()
1285 return method_.access_flags_; in GetRawMemberAccessFlags()
1308 return dex_file_.GetCodeItem(method_.code_off_); in GetMethodCodeItem()
1311 return method_.code_off_; in GetMethodCodeItemOffset()
1371 ClassDataMethod method_; variable
/art/runtime/dex/
Ddex_file_annotations.cc76 if (method_ != nullptr) { in GetDexCache()
77 return method_->GetDexCache(); in GetDexCache()
84 if (method_ != nullptr) { in GetClassLoader()
85 return method_->GetDeclaringClass()->GetClassLoader(); in GetClassLoader()
92 if (method_ != nullptr) { in GetRealClass()
93 return method_->GetDeclaringClass(); in GetRealClass()
105 method_(method), in ClassData()
108 DCHECK((method_ == nullptr) || real_klass_.IsNull()); in ClassData()
112 ArtMethod* method_; member in art::__anon7a5f28960111::ClassData
/art/compiler/optimizing/
Dinliner.cc311 : method_(method), in ScopedProfilingInfoInlineUse()
322 DCHECK_EQ(profiling_info_, method_->GetProfilingInfo(pointer_size)); in ~ScopedProfilingInfoInlineUse()
323 Runtime::Current()->GetJit()->GetCodeCache()->DoneCompilerUse(method_, self_); in ~ScopedProfilingInfoInlineUse()
330 ArtMethod* const method_; member in art::ScopedProfilingInfoInlineUse
Dnodes.h1860 method_(method), in HEnvironment()
1926 return method_; in GetMethod()
1942 ArtMethod* method_; variable