Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* [rfc] Replace current_gdbarch in stack.c
@ 2007-11-20 13:33 Markus Deuling
  2007-11-20 22:25 ` Ulrich Weigand
  0 siblings, 1 reply; 3+ messages in thread
From: Markus Deuling @ 2007-11-20 13:33 UTC (permalink / raw)
  To: GDB Patches; +Cc: Ulrich Weigand

[-- Attachment #1: Type: text/plain, Size: 323 bytes --]

Hi,

this patch removes the last occurences of current_gdbarch in stack.c.

Tested on x86. Ok ?

ChangeLog:

	* stack.c (print_args_stub): Use get_frame_arch to get at the current
	architecture and replace current_gdbarch.
	(frame_info): Likewise.

-- 
Markus Deuling
GNU Toolchain for Linux on Cell BE
deuling@de.ibm.com


[-- Attachment #2: diff-stack --]
[-- Type: text/plain, Size: 1800 bytes --]

diff -urpN src/gdb/stack.c dev/gdb/stack.c
--- src/gdb/stack.c	2007-11-09 21:38:58.000000000 +0100
+++ dev/gdb/stack.c	2007-11-20 13:49:32.000000000 +0100
@@ -409,11 +409,12 @@ static int
 print_args_stub (void *args)
 {
   struct print_args_args *p = args;
+  struct gdbarch *gdbarch = get_frame_arch (p->frame);
   int numargs;
 
-  if (gdbarch_frame_num_args_p (current_gdbarch))
+  if (gdbarch_frame_num_args_p (gdbarch))
     {
-      numargs = gdbarch_frame_num_args (current_gdbarch, p->frame);
+      numargs = gdbarch_frame_num_args (gdbarch, p->frame);
       gdb_assert (numargs >= 0);
     }
   else
@@ -893,15 +894,15 @@ frame_info (char *addr_exp, int from_tty
   struct gdbarch *gdbarch;
 
   fi = parse_frame_specification_1 (addr_exp, "No stack.", &selected_frame_p);
+  gdbarch = get_frame_arch (fi);
 
   /* Name of the value returned by get_frame_pc().  Per comments, "pc"
      is not a good name.  */
-  if (gdbarch_pc_regnum (current_gdbarch) >= 0)
+  if (gdbarch_pc_regnum (gdbarch) >= 0)
     /* OK, this is weird.  The gdbarch_pc_regnum hardware register's value can
        easily not match that of the internal value returned by
        get_frame_pc().  */
-    pc_regname = gdbarch_register_name (current_gdbarch,
-					gdbarch_pc_regnum (current_gdbarch));
+    pc_regname = gdbarch_register_name (gdbarch, gdbarch_pc_regnum (gdbarch));
   else
     /* But then, this is weird to.  Even without gdbarch_pc_regnum, an
        architectures will often have a hardware register called "pc",
@@ -910,7 +911,6 @@ frame_info (char *addr_exp, int from_tty
     pc_regname = "pc";
 
   find_frame_sal (fi, &sal);
-  gdbarch = get_frame_arch (fi);
   func = get_frame_function (fi);
   /* FIXME: cagney/2002-11-28: Why bother?  Won't sal.symtab contain
      the same value?  */

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [rfc] Replace current_gdbarch in stack.c
  2007-11-20 13:33 [rfc] Replace current_gdbarch in stack.c Markus Deuling
@ 2007-11-20 22:25 ` Ulrich Weigand
  2007-11-21  6:03   ` Markus Deuling
  0 siblings, 1 reply; 3+ messages in thread
From: Ulrich Weigand @ 2007-11-20 22:25 UTC (permalink / raw)
  To: Markus Deuling; +Cc: GDB Patches

Markus Deuling wrote:

> 	* stack.c (print_args_stub): Use get_frame_arch to get at the current
> 	architecture and replace current_gdbarch.
> 	(frame_info): Likewise.

This is OK.

Thanks,
Ulrich

-- 
  Dr. Ulrich Weigand
  GNU Toolchain for Linux on System z and Cell BE
  Ulrich.Weigand@de.ibm.com


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [rfc] Replace current_gdbarch in stack.c
  2007-11-20 22:25 ` Ulrich Weigand
@ 2007-11-21  6:03   ` Markus Deuling
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Deuling @ 2007-11-21  6:03 UTC (permalink / raw)
  To: GDB Patches; +Cc: Ulrich Weigand

Ulrich Weigand schrieb:
> Markus Deuling wrote:
> 
>> 	* stack.c (print_args_stub): Use get_frame_arch to get at the current
>> 	architecture and replace current_gdbarch.
>> 	(frame_info): Likewise.
> 
> This is OK.
> 
> Thanks,
> Ulrich
> 

Thank you. Committed this one.

-- 
Markus Deuling
GNU Toolchain for Linux on Cell BE
deuling@de.ibm.com


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-11-21  6:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-11-20 13:33 [rfc] Replace current_gdbarch in stack.c Markus Deuling
2007-11-20 22:25 ` Ulrich Weigand
2007-11-21  6:03   ` Markus Deuling

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox