Searched refs:method_ (Results 1 - 21 of 21) sorted by relevance

/art/runtime/jit/
H A Dprofiling_info.h73 return method_;
141 ArtMethod* method_; member in class:art::ProfilingInfo
H A Dprofiling_info.cc30 method_(method),
86 LOG(FATAL) << "No inline cache found for " << ArtMethod::PrettyMethod(method_) << "@" << dex_pc;
H A Djit.cc572 JitCompileTask(ArtMethod* method, TaskKind kind) : method_(method), kind_(kind) {
575 klass_ = soa.Vm()->AddGlobalRef(soa.Self(), method_->GetDeclaringClass());
587 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ false);
589 Runtime::Current()->GetJit()->CompileMethod(method_, self, /* osr */ true);
592 if (ProfilingInfo::Create(self, method_, /* retry_allocation */ true)) {
593 VLOG(jit) << "Start profiling " << ArtMethod::PrettyMethod(method_);
604 ArtMethod* const method_; member in class:art::jit::FINAL
H A Djit_code_cache.cc725 info->method_ = new_method;
853 // The 'method_' in InstrumentationStackFrame is the one that has return_pc_ in
/art/runtime/gc/
H A Dallocation_record.h46 : method_(method),
50 return method_;
54 method_ = m;
66 return method_ == other.method_ && dex_pc_ == other.dex_pc_;
70 ArtMethod* method_ = nullptr; member in class:art::gc::AllocRecordStackTraceElement
H A Dallocation_record.cc33 DCHECK(method_ != nullptr);
34 return method_->GetLineNumFromDexPC(dex_pc_);
/art/runtime/
H A Dgc_root.h156 : field_(nullptr), method_(nullptr) {
159 : field_(field), method_(nullptr) {
162 : field_(nullptr), method_(method) {
168 return method_;
174 return method_ != nullptr;
179 ArtMethod* const method_; member in class:art::GcRootSource
H A Dinstrumentation.cc238 CHECK_EQ(m, frame.method_) << "Expected " << ArtMethod::PrettyMethod(m)
239 << ", Found " << ArtMethod::PrettyMethod(frame.method_);
300 instrumentation->MethodEnterEvent(thread, (*ssi).this_object_, (*ssi).method_, 0);
306 instrumentation->MethodEnterEvent(thread, (*isi).this_object_, (*isi).method_, dex_pc);
362 CHECK(m == instrumentation_frame.method_) << ArtMethod::PrettyMethod(m);
1082 ArtMethod* method = instrumentation_frame.method_;
1099 MethodExitEvent(self, this_object, instrumentation_frame.method_, dex_pc, return_value);
1147 ArtMethod* method = instrumentation_frame.method_;
1168 os << "Frame " << frame_id_ << " " << ArtMethod::PrettyMethod(method_) << ":"
H A Dstack.h337 DCHECK(method_ != nullptr);
338 method_ = method;
342 DCHECK(method_ != nullptr);
343 return method_;
374 return OFFSETOF_MEMBER(ShadowFrame, method_);
434 method_(method),
464 ArtMethod* method_; member in class:art::ShadowFrame
H A Ddex_file_annotations.cc74 if (method_ != nullptr) {
75 return method_->GetDexCache();
82 if (method_ != nullptr) {
83 return method_->GetDeclaringClass()->GetClassLoader();
90 if (method_ != nullptr) {
91 return method_->GetDeclaringClass();
103 method_(method),
106 DCHECK((method_ == nullptr) || real_klass_.IsNull());
110 ArtMethod* method_; member in class:art::__anon49::ClassData
H A Ddebugger.h98 stack_depth_(stack_depth), method_(method) {
114 return method_;
139 ArtMethod* method_; member in class:art::SingleStepControl
159 DeoptimizationRequest() : kind_(kNothing), instrumentation_event_(0), method_(nullptr) {}
200 jmethodID method_; member in class:art::DeoptimizationRequest
H A Ddex_file.h1380 return last_idx_ + method_.method_idx_delta_;
1388 return method_.access_flags_;
1422 return dex_file_.GetCodeItem(method_.code_off_);
1425 return method_.code_off_;
1485 ClassDataMethod method_; member in class:art::DexFile::ClassDataItemIterator
H A Dinstrumentation.h613 : this_object_(this_object), method_(method), return_pc_(return_pc), frame_id_(frame_id),
620 ArtMethod* method_; member in struct:art::instrumentation::InstrumentationStackFrame
H A Dmonitor.cc227 method_(nullptr),
240 method_ = m;
250 ArtMethod* method_; member in struct:art::FINAL
276 TranslateLocation(visitor.method_, visitor.dex_pc_, &filename, &line_number);
H A Ddex_file.cc1410 method_.method_idx_delta_ = DecodeUnsignedLeb128(&ptr_pos_);
1411 method_.access_flags_ = DecodeUnsignedLeb128(&ptr_pos_);
1412 method_.code_off_ = DecodeUnsignedLeb128(&ptr_pos_);
1413 if (last_idx_ != 0 && method_.method_idx_delta_ == 0) {
H A Dstack.cc884 CHECK_EQ(instrumentation_frame.method_->GetNonObsoleteMethod(),
887 << ArtMethod::PrettyMethod(instrumentation_frame.method_->GetNonObsoleteMethod())
H A Ddebugger.cc98 : method_(GetCanonicalMethod(method)),
107 : method_(other.method_),
114 return method_;
128 return method_ == GetCanonicalMethod(m);
133 ArtMethod* method_; member in class:art::Breakpoint
5135 return jni::DecodeArtMethod(method_);
5139 method_ = jni::EncodeArtMethod(m);
H A Dthread.cc3053 method_(nullptr),
3065 method_ = m;
3070 ArtMethod* method_; member in struct:art::FINAL
3086 return visitor.method_;
H A Dclass_linker.cc8971 : method_(method),
8975 if (klass->GetVirtualMethodsSliceUnchecked(pointer_size_).Contains(method_)) {
8983 const ArtMethod* const method_; member in class:ClassLinker::FindVirtualMethodHolderVisitor
/art/compiler/optimizing/
H A Dinliner.cc299 : method_(method),
310 DCHECK_EQ(profiling_info_, method_->GetProfilingInfo(pointer_size));
311 Runtime::Current()->GetJit()->GetCodeCache()->DoneCompilerUse(method_, self_);
318 ArtMethod* const method_; member in class:art::ScopedProfilingInfoInlineUse
H A Dnodes.h1782 method_(method),
1841 return method_;
1857 ArtMethod* method_; member in class:art::HEnvironment

Completed in 187 milliseconds