Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
From: Andrew Cagney <cagney@gnu.org>
To: gdb-patches@sources.redhat.com
Cc: Mark Kettenis <kettenis@chello.nl>, Eli Zaretskii <eliz@is.elta.co.il>
Subject: Re: [patch/rfc] Separate gdbarch_data_register_pre_init
Date: Mon, 15 Mar 2004 20:44:00 -0000	[thread overview]
Message-ID: <4056159B.5020500@gnu.org> (raw)
In-Reply-To: <404CC940.70805@gnu.org>

I've checked this part in, still working on the doco tweaks.

> 2004-03-07  Andrew Cagney  <cagney@redhat.com>
> 
> 	* gdbarch.sh (gdbarch_data_pre_init_fytpe)
> 	(gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
> 	(gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
> 	and register_gdbarch_data.
> 	(deprecated_set_gdbarch_data): Rename set_gdbarch_data.
> 	(struct gdbarch_data): Replace "init" by "pre_init" and
> 	"post_init".
> 	* gdbarch.h, gdbarch.c: Re-generate.
> 	* dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
> 	with"obstack", use OBSTACK_ZALLOC.
> 	(dwarf2_frame_ops): Delete.
> 	(dwarf2_frame_set_init_reg): Use gdbarch_data.
> 	(dwarf2_frame_init_reg): Use gdbarch_data.
> 	(_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
> 	* solib-svr4.c (set_solib_svr4_fetch_link_map_offsets) 
> 	(_initialize_svr4_solib): Update.
> 	* user-regs.c (_initialize_user_regs): Update.
> 	* reggroups.c (_initialize_reggroup): Update.
> 	* regcache.c (_initialize_regcache): Update.
> 	* mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
> 	* libunwind-frame.c (_initialize_libunwind_frame): Update.
> 	* gnu-v3-abi.c (init_gnuv3_ops): Update.
> 	* frame-unwind.c (_initialize_frame_unwind): Update.
> 	* frame-base.c (_initialize_frame_base): Update.
> 	* user-regs.c (user_reg_add): Update.
> 	* reggroups.c (reggroup_add): Update.
> 	* mips-linux-tdep.c (set_mips_linux_register_addr): Update.
> 	* libunwind-frame.c (libunwind_frame_set_descr): Update.
> 	* frame-unwind.c (frame_unwind_append_sniffer): Update.
> 	* frame-base.c (frame_base_table): Update.
> 	* remote.c (_initialize_remote): Update.
> 	* gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
> 	



WARNING: multiple messages have this Message-ID
From: Andrew Cagney <cagney@gnu.org>
To: gdb-patches@sources.redhat.com
Cc: Mark Kettenis <kettenis@chello.nl>, Eli Zaretskii <eliz@is.elta.co.il>
Subject: Re: [patch/rfc] Separate gdbarch_data_register_pre_init
Date: Fri, 19 Mar 2004 00:09:00 -0000	[thread overview]
Message-ID: <4056159B.5020500@gnu.org> (raw)
Message-ID: <20040319000900.uv2heU0ZHEfeDSvblQG3LMkmWBFs3F9wUVs6rkrCKIE@z> (raw)
In-Reply-To: <404CC940.70805@gnu.org>

I've checked this part in, still working on the doco tweaks.

> 2004-03-07  Andrew Cagney  <cagney@redhat.com>
> 
> 	* gdbarch.sh (gdbarch_data_pre_init_fytpe)
> 	(gdbarch_data_register_pre_init, gdbarch_data_post_init_fytpe)
> 	(gdbarch_data_register_post_init): Replace gdbarch_data_init_ftype
> 	and register_gdbarch_data.
> 	(deprecated_set_gdbarch_data): Rename set_gdbarch_data.
> 	(struct gdbarch_data): Replace "init" by "pre_init" and
> 	"post_init".
> 	* gdbarch.h, gdbarch.c: Re-generate.
> 	* dwarf2-frame.c (dwarf2_frame_init): Replace "gdbarch" paramter
> 	with"obstack", use OBSTACK_ZALLOC.
> 	(dwarf2_frame_ops): Delete.
> 	(dwarf2_frame_set_init_reg): Use gdbarch_data.
> 	(dwarf2_frame_init_reg): Use gdbarch_data.
> 	(_initialize_dwarf2_frame): Use gdbarch_data_register_pre_init.
> 	* solib-svr4.c (set_solib_svr4_fetch_link_map_offsets) 
> 	(_initialize_svr4_solib): Update.
> 	* user-regs.c (_initialize_user_regs): Update.
> 	* reggroups.c (_initialize_reggroup): Update.
> 	* regcache.c (_initialize_regcache): Update.
> 	* mips-linux-tdep.c (_initialize_mips_linux_tdep): Update.
> 	* libunwind-frame.c (_initialize_libunwind_frame): Update.
> 	* gnu-v3-abi.c (init_gnuv3_ops): Update.
> 	* frame-unwind.c (_initialize_frame_unwind): Update.
> 	* frame-base.c (_initialize_frame_base): Update.
> 	* user-regs.c (user_reg_add): Update.
> 	* reggroups.c (reggroup_add): Update.
> 	* mips-linux-tdep.c (set_mips_linux_register_addr): Update.
> 	* libunwind-frame.c (libunwind_frame_set_descr): Update.
> 	* frame-unwind.c (frame_unwind_append_sniffer): Update.
> 	* frame-base.c (frame_base_table): Update.
> 	* remote.c (_initialize_remote): Update.
> 	* gdb_obstack.h (OBSTACK_ZALLOC, OBSTACK_CALLOC): Define.
> 	



  parent reply	other threads:[~2004-03-15 20:44 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-03-08 19:28 Andrew Cagney
2004-03-08 22:41 ` Mark Kettenis
2004-03-19  0:09   ` Andrew Cagney
2004-03-08 23:51     ` Andrew Cagney
2004-03-19  0:09   ` Mark Kettenis
2004-03-15 20:44 ` Andrew Cagney [this message]
2004-03-19  0:09   ` Andrew Cagney
2004-03-19  0:09 ` Andrew Cagney
2004-03-15 17:21   ` Andrew Cagney
2004-03-15 19:55   ` Eli Zaretskii
2004-03-15 21:13     ` Andrew Cagney
2004-03-17 11:30       ` Eli Zaretskii
2004-03-19  0:09         ` Andrew Cagney
2004-03-19  0:09         ` Eli Zaretskii
2004-03-19  0:09       ` Andrew Cagney
2004-03-15 21:18         ` Andrew Cagney
2004-03-19  0:09       ` Andrew Cagney
2004-03-19  0:09     ` Eli Zaretskii
2004-03-19  0:09 ` Andrew Cagney

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4056159B.5020500@gnu.org \
    --to=cagney@gnu.org \
    --cc=eliz@is.elta.co.il \
    --cc=gdb-patches@sources.redhat.com \
    --cc=kettenis@chello.nl \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox