Home | History | Annotate | Download | only in runtime

Lines Matching defs:method

56     ArtMethod* method = GetMethod();
58 if (method == nullptr) {
65 // Report the method that did the down call as the handler.
69 // No next method? Check exception handler is set up for the unhandled exception handler
76 if (method->IsRuntimeMethod()) {
77 // Ignore callee save method.
78 DCHECK(method->IsCalleeSaveMethod());
81 return HandleTryItems(method);
85 bool HandleTryItems(ArtMethod* method)
88 if (!method->IsNative()) {
95 uint32_t found_dex_pc = method->FindCatchBlock(to_find, dex_pc, &clear_exception);
98 exception_handler_->SetHandlerMethod(method);
100 exception_handler_->SetHandlerQuickFramePc(method->ToNativeQuickPc(found_dex_pc));
172 ArtMethod* method = GetMethod();
173 if (method == nullptr) {
185 } else if (method->IsRuntimeMethod()) {
186 // Ignore callee save method.
187 DCHECK(method->IsCalleeSaveMethod());
190 return HandleDeoptimization(method);
204 StackHandleScope<2> hs(self_); // Dex cache, class loader and method.
221 // anymore in the method.