Searched defs:current_method (Results 1 - 5 of 5) sorted by relevance

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

Completed in 334 milliseconds