From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15875 invoked by alias); 8 May 2002 01:02: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 15852 invoked from network); 8 May 2002 01:02:39 -0000 Received: from unknown (HELO localhost.redhat.com) (24.112.240.27) by sources.redhat.com with SMTP; 8 May 2002 01:02:39 -0000 Received: from cygnus.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 9B9AD3D2B; Tue, 7 May 2002 21:02:40 -0400 (EDT) Message-ID: <3CD87930.6090801@cygnus.com> Date: Tue, 07 May 2002 18:02:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0rc1) Gecko/20020429 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Andrew Cagney Cc: gdb-patches@sources.redhat.com Subject: Re: [rfa] Convert ARM to generic dummy frames References: <3CD3DF51.1020908@cygnus.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-05/txt/msg00188.txt.bz2 > 2002-05-03 Andrew Cagney > > * arm-tdep.c (arm_skip_prologue): Handle generic dummy frames. > (thumb_scan_prologue): Ditto. > (arm_find_callers_reg): Ditto. > (arm_frame_chain): Ditto. > (arm_init_extra_frame_info): Ditto. > (arm_frame_saved_pc): Ditto. > (arm_pop_frame): Ditto. > (arm_push_return_address): New function. > (arm_gdbarch_init): Initialize use_generic_dummy_frames, > call_dummy_location, call_dummy_breakpoint_offset_p, > call_dummy_breakpoint_offset, call_dummy_p, > call_dummy_stack_adjust_p, call_dummy_words, > sizeof_call_dummy_words, call_dummy_start_offset, > call_dummy_length, fix_call_dummy, pc_in_call_dummy, > call_dummy_address, push_return_address and push_dummy_frame for > generic dummy frames. > RichardE gave the ok. I've checked this in with one tweak, > +#if 0 has been changed to: #ifdef OLD_STYLE_ARM_DUMMY_FRAMES and a comment. Andrew