From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 18134 invoked by alias); 22 May 2002 09:52:11 -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 18099 invoked from network); 22 May 2002 09:52:06 -0000 Received: from unknown (HELO fw-cam.cambridge.arm.com) (193.131.176.3) by sources.redhat.com with SMTP; 22 May 2002 09:52:06 -0000 Received: by fw-cam.cambridge.arm.com; id NAA20343; Tue, 21 May 2002 13:37:50 +0100 (BST) Received: from unknown(172.16.1.2) by fw-cam.cambridge.arm.com via smap (V5.5) id xma018865; Tue, 21 May 02 13:37:00 +0100 Received: from cam-mail2.cambridge.arm.com (cam-mail2.cambridge.arm.com [172.16.1.91]) by cam-admin0.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id NAA06293; Tue, 21 May 2002 13:37:00 +0100 (BST) Received: from sun18.cambridge.arm.com (sun18.cambridge.arm.com [172.16.2.18]) by cam-mail2.cambridge.arm.com (8.9.3/8.9.3) with ESMTP id NAA05469; Tue, 21 May 2002 13:36:59 +0100 (BST) Message-Id: <200205211236.NAA05469@cam-mail2.cambridge.arm.com> To: Jason R Thorpe cc: gdb-patches@sources.redhat.com, Richard.Earnshaw@arm.com Reply-To: Richard.Earnshaw@arm.com Organization: ARM Ltd. X-Telephone: +44 1223 400569 (direct+voicemail), +44 1223 400400 (switchbd) X-Fax: +44 1223 400410 X-Address: ARM Ltd., 110 Fulbourn Road, Cherry Hinton, Cambridge CB1 9NJ. X-Url: http://www.arm.com/ Subject: Re: [PATCH/RFA] Updated: Generic OS ABI handling In-reply-to: Your message of "Fri, 17 May 2002 13:02:00 PDT." <20020517130200.G14437@dr-evil.shagadelic.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 22 May 2002 02:53:00 -0000 From: Richard Earnshaw X-SW-Source: 2002-05/txt/msg00853.txt.bz2 thorpej@wasabisystems.com said: > Changes from the last: > * Notion of "generic" and "specific" sniffers, and a > "specific" sniffer added for ARM ELF. > * Docs updated to reflect above, plus other comments from > Eli. > OK to commit? > * Makefile.in (SFILES): Add osabi.c. > (COMMON_OBS): Add osabi.o. > (osabi.o): New dependency list. > * osabi.c: New file. > * osabi.h: New file. > * doc/gdbint.texinfo: Document new generic OS ABI framework. > * Makefile.in (alpha_tdep_h): Define and use instead of > alpha-tdep.h. > * alpha-tdep.c (alpha_abi_names, process_note_abi_tag_sections, > > get_elfosabi, alpha_abi_handler_list, alpha_gdbarch_register_os > _abi): > Remove. > (alpha_gdbarch_init, alpha_dump_tdep): Use generic OS ABI > framework. > * alpha-tdep.h: Include osabi.h. > (alpha_abi): Remove. > (gdbarch_tdep): Use generic OS ABI framework. > * alpha-linux-tdep.c (_initialize_alpha_linux_tdep): Use > gdbarch_register_osabi. > * alpha-osf1-tdep.c (_initialize_alpha_osf1_tdep): Likewise. > * alphafbsd-tdep.c (_initialize_alphafbsd_tdep): Likewise. > * alphanbsd-tdep.c (_initialize_alphanbsd_tdep): Likewise. > * Makefile.in (sh_tdep_h): Add osabi.h. > * sh-tdep.h (sh_osabi): Remove. > (gdbarch_tdep): Use generic OS ABI framework. > * sh-tdep.c (sh_osabi_names, process_note_abi_tag_sections, > sh_osabi_handler_list, sh_gdbarch_register_os_abi): Remove. > (sh_gdbarch_init, sh_dump_tdep): Use generic OS ABI framework. > * shnbsd-tdep.c (_initialize_shnbsd_tdep): Use > gdbarch_register_osabi. > * Makefile.in (arm_tdep_h): Define and use instead of > arm-tdep.h. > * arm-linux-tdep.c (_initialize_arm_linux_tdep): Use > gdbarch_register_osabi. > * arm-tdep.c (arm_abi_names, process_note_abi_tag_sections, > arm_abi_handler_list, arm_gdbarch_register_os_abi): Remove. > (get_elfosabi): Rename to... > (arm_elf_osabi_sniffer): ...this. Adjust to use generic OS > ABI framework support routines. > (arm_gdbarch_init): Use generic OS ABI framework. > (arm_dump_tdep): Likewise. > (_initialize_arm_tdep): Likewise. > * arm-tdep.h: Include osabi.h. > (arm_abi): Remove. > (gdbarch_tdep): Remove arm_abi and abi_name members. Add > osabi member. > (arm_gdbarch_register_os_abi): Remove prototype. > * armnbsd-tdep.c (arm_netbsd_aout_osabi_sniffer): New > function. > (_initialize_arm_netbsd_tdep): Use gdbarch_register_osabi. > * Makefile.in (mips-tdep.o): Add osabi.h to dependency list. > * mips-tdep.c: Include osabi.h. > (gdbarch_tdep, mips_gdbarch_init, mips_dump_tdep): Use generic > OS ABI framework. Yes, I think the ARM bits are OK now (though patch is doing its utmost here to make it hard to be sure ;-) R.