Searched refs:current_method (Results 1 – 8 of 8) sorted by relevance
/art/runtime/ |
D | utils.cc | 1094 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()
|
D | java_vm_ext.cc | 390 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()
|
D | utils.h | 224 ArtMethod* current_method = nullptr, void* ucontext = nullptr)
|
D | thread.cc | 1164 ArtMethod* current_method = thread->GetCurrentMethod(nullptr); in ShouldShowNativeStack() local 1165 return current_method != nullptr && current_method->IsNative(); in ShouldShowNativeStack()
|
/art/compiler/optimizing/ |
D | code_generator_mips64.h | 272 void LoadCurrentMethod(GpuRegister current_method);
|
D | code_generator_arm64.cc | 968 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()
|
D | code_generator_arm64.h | 327 void LoadCurrentMethod(vixl::Register current_method);
|
D | code_generator_mips64.cc | 950 void CodeGeneratorMIPS64::LoadCurrentMethod(GpuRegister current_method) { in LoadCurrentMethod() argument 952 __ Ld(current_method, SP, kCurrentMethodStackOffset); in LoadCurrentMethod()
|