Lines Matching defs:method
145 UNIMPLEMENTED(ERROR) << "Failed to determine this object of abstract or proxy method: "
152 // We currently always guarantee the `this` object is live throughout the method.
609 ArtMethod* method = GetMethod();
610 if (method != nullptr && !method->IsRuntimeMethod()) {
612 next_method_ = method;
614 return false; // End stack walk once next method is found.
650 std::string result("Visiting method '");
671 ArtMethod* method = GetMethod();
672 auto* declaring_class = method->GetDeclaringClass();
674 if (!method->IsRuntimeMethod()) {
683 if (!la->Contains(method)) {
691 if (methods->Contains(reinterpret_cast<const uint8_t*>(method) - image_space->Begin())) {
697 CHECK(in_image) << PrettyMethod(method) << " not in linear alloc or image";
700 method->AssertPcIsWithinQuickCode(cur_quick_frame_pc_);
702 size_t frame_size = method->GetFrameSizeInBytes();
713 size_t return_pc_offset = method->GetReturnPcOffset().SizeValue();
734 ArtMethod* method = *cur_quick_frame_;
735 while (method != nullptr) {
745 size_t frame_size = method->GetFrameSizeInBytes();
747 size_t return_pc_offset = method->GetReturnPcOffset(frame_size).SizeValue();
782 LOG(INFO) << PrettyMethod(method) << "@" << method << " size=" << frame_size
783 << " optimized=" << method->IsOptimized(sizeof(void*))
784 << " native=" << method->IsNative()
785 << " entrypoints=" << method->GetEntryPointFromQuickCompiledCode()
786 << "," << method->GetEntryPointFromJni()
787 << "," << method
792 method = *cur_quick_frame_;
844 // The current method pointer corresponds to special location on stack.
851 int temps_start = code_item->outs_size_ * sizeof(uint32_t) + pointer_size /* art method */;
859 return frame_size + ((reg - num_regs) * sizeof(uint32_t)) + pointer_size /* art method */;