Home
last modified time | relevance | path

Searched refs:current_method (Results 1 – 8 of 8) sorted by relevance

/art/runtime/
Dutils.cc1094 ArtMethod* current_method, void* ucontext_ptr) { in DumpNativeStack() argument
1149 current_method != nullptr && Locks::mutator_lock_->IsSharedHeld(Thread::Current()) && in DumpNativeStack()
1150 current_method->PcIsWithinQuickCode(it->pc)) { in DumpNativeStack()
1151 const void* start_of_code = current_method->GetEntryPointFromQuickCompiledCode(); in DumpNativeStack()
1152 os << JniLongName(current_method) << "+" in DumpNativeStack()
1165 UNUSED(os, tid, prefix, current_method, ucontext_ptr); in DumpNativeStack()
Djava_vm_ext.cc390 ArtMethod* current_method = self->GetCurrentMethod(nullptr); in JniAbort() local
399 if (current_method != nullptr) { in JniAbort()
400 os << "\n from " << PrettyMethod(current_method); in JniAbort()
Dutils.h224 ArtMethod* current_method = nullptr, void* ucontext = nullptr)
Dthread.cc1150 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); in ShouldShowNativeStack() local
1151 return current_method != nullptr && current_method->IsNative(); in ShouldShowNativeStack()
/art/compiler/optimizing/
Dcode_generator_mips64.h272 void LoadCurrentMethod(GpuRegister current_method);
Dcode_generator_arm64.cc968 void CodeGeneratorARM64::LoadCurrentMethod(vixl::Register current_method) { in LoadCurrentMethod() argument
970 CHECK(current_method.IsX()); in LoadCurrentMethod()
971 __ Ldr(current_method, MemOperand(sp, kCurrentMethodStackOffset)); in LoadCurrentMethod()
2298 Register current_method = RegisterFrom(locations->GetTemp(1), Primitive::kPrimLong); in VisitNewArray() local
2299 DCHECK(current_method.Is(x2)); in VisitNewArray()
2300 codegen_->LoadCurrentMethod(current_method.X()); in VisitNewArray()
2324 Register current_method = RegisterFrom(locations->GetTemp(1), Primitive::kPrimNot); in VisitNewInstance() local
2325 DCHECK(current_method.Is(w1)); in VisitNewInstance()
2326 codegen_->LoadCurrentMethod(current_method.X()); in VisitNewInstance()
Dcode_generator_arm64.h327 void LoadCurrentMethod(vixl::Register current_method);
Dcode_generator_mips64.cc950 void CodeGeneratorMIPS64::LoadCurrentMethod(GpuRegister current_method) { in LoadCurrentMethod() argument
952 __ Ld(current_method, SP, kCurrentMethodStackOffset); in LoadCurrentMethod()