From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6205 invoked by alias); 29 Mar 2003 23:16:41 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 6197 invoked from network); 29 Mar 2003 23:16:37 -0000 Received: from unknown (HELO localhost.redhat.com) (24.157.166.107) by sources.redhat.com with SMTP; 29 Mar 2003 23:16:37 -0000 Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id BD8E92B23; Sat, 29 Mar 2003 18:16:31 -0500 (EST) Message-ID: <3E86294F.7000700@redhat.com> Date: Sat, 29 Mar 2003 23:16:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.2) Gecko/20030223 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Richard.Earnshaw@arm.com Cc: gdb-patches@sources.redhat.com Subject: Re: PATCH ARM arm_push_arguemntes->arm_push_dummy_call References: <200303291711.h2THB7h04595@pc960.cambridge.arm.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2003-03/txt/msg00583.txt.bz2 > This patch implements the new arm_push_dummy_call function and thus > removes the deprecated arm_push_arguments and arm_store_struct_return > functions. > > R. > > 2003-03-29 Richard Earnshaw > > * arm-tdep.c (arm_push_arguments): Delete. > (struct stack_item): New type. > (push_stack_item, pop_stack_item, arm_push_dummy_call): New functions. > (arm_store_struct_return): Delete. > (arm_gdbarch_init): Register arm_push_dummy_call. Don't register > arm_push_arguments or arm_store_struct_return. Nice! You might want to eventually look at all the arm code related to call_dummy_words and fix_call_dummy. While the arm code is present, I don't think it is used - instead ARM is using a breakpoint at the entry point. Note thought, that I'm still going through and eliminating the need to define much of this. Andrew