Mirror of the gdb-patches mailing list
 help / color / mirror / Atom feed
* Fix magic number in arm-tdep.c
@ 2011-03-02  7:10 Yao Qi
  2011-03-02 14:12 ` Ulrich Weigand
  0 siblings, 1 reply; 6+ messages in thread
From: Yao Qi @ 2011-03-02  7:10 UTC (permalink / raw)
  To: gdb-patches

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

On 02/18/2011 02:06 PM, Yao Qi wrote:
>>> >> 	(cleanup_branch): Replace magic number by macros.
>> >
>>> >> -      ULONGEST pc = displaced_read_reg (regs, from, 15);
>>> >> -      displaced_write_reg (regs, dsc, 14, pc - 4, CANNOT_WRITE_PC);
>>> >> +      ULONGEST pc = displaced_read_reg (regs, from, ARM_PC_REGNUM);
>>> >> +      displaced_write_reg (regs, dsc, ARM_LR_REGNUM, pc - 4,
CANNOT_WRITE_PC);
>> >
>> > I'm not sure about this change -- other callers just pass in plain
>> > register numbers as well ...  Either those should all be changed,
>> > or none of them.  In any case, this is really an unrelated change,
>> > and should be done -if at all- in a separate patch.
>> >
> I'll remove this chunk from my patch, and create another patch specific
> to this 'magic number' problem separately.

When writing patches for thumb displaced stepping, I find some registers
number are magic numbers.  This patch is to replace them with
corresponding macros.

This change is probably obvious, but, I'd ask for a review.

-- 
Yao (齐尧)

[-- Attachment #2: arm-magic-num-0302.patch --]
[-- Type: text/x-patch, Size: 5127 bytes --]

2011-03-02  Yao Qi  <yao@codesourcery.com>

	* gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
	ARM_PC_REGNUM.
	(thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
	(displaced_write_reg, displaced_read_reg): Likewise.
	(copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
	(cleanup_block_load_pc, copy_block_xfer): Likewise.
	(cleanup_branch): Replace magic number 14 and 15 with
	ARM_LR_REGNUM and ARM_PC_REGNUM respectively.

diff --git a/gdb/arm-tdep.c b/gdb/arm-tdep.c
index 555a6eb..3ac9384 100644
--- a/gdb/arm-tdep.c
+++ b/gdb/arm-tdep.c
@@ -4144,7 +4144,7 @@ shifted_reg_val (struct frame_info *frame, unsigned long inst, int carry,
   else
     shift = bits (inst, 7, 11);
 
-  res = (rm == 15
+  res = (rm == ARM_PC_REGNUM
 	 ? (pc_val + (bit (inst, 4) ? 12 : 8))
 	 : get_frame_register_unsigned (frame, rm));
 
@@ -4498,7 +4498,7 @@ thumb_get_next_pc_raw (struct frame_info *frame, CORE_ADDR pc, int insert_bkpt)
 
 	  rn = bits (inst1, 0, 3);
 	  base = get_frame_register_unsigned (frame, rn);
-	  if (rn == 15)
+	  if (rn == ARM_PC_REGNUM)
 	    {
 	      base = (base + 4) & ~(CORE_ADDR) 0x3;
 	      if (bit (inst1, 7))
@@ -4665,7 +4665,7 @@ arm_get_next_pc_raw (struct frame_info *frame, CORE_ADDR pc, int insert_bkpt)
 		|| bits (this_instr, 4, 27) == 0x12fff3)
 	      {
 		rn = bits (this_instr, 0, 3);
-		nextpc = (rn == 15) ? pc_val + 8
+		nextpc = (rn == ARM_PC_REGNUM) ? pc_val + 8
 				    : get_frame_register_unsigned (frame, rn);
 		return nextpc;
 	      }
@@ -4673,7 +4673,7 @@ arm_get_next_pc_raw (struct frame_info *frame, CORE_ADDR pc, int insert_bkpt)
 	    /* Multiply into PC.  */
 	    c = (status & FLAG_C) ? 1 : 0;
 	    rn = bits (this_instr, 16, 19);
-	    operand1 = (rn == 15) ? pc_val + 8
+	    operand1 = (rn == ARM_PC_REGNUM) ? pc_val + 8
 				  : get_frame_register_unsigned (frame, rn);
 
 	    if (bit (this_instr, 25))
@@ -4774,7 +4774,7 @@ arm_get_next_pc_raw (struct frame_info *frame, CORE_ADDR pc, int insert_bkpt)
 
 		  /* byte write to PC */
 		  rn = bits (this_instr, 16, 19);
-		  base = (rn == 15) ? pc_val + 8
+		  base = (rn == ARM_PC_REGNUM) ? pc_val + 8
 				    : get_frame_register_unsigned (frame, rn);
 		  if (bit (this_instr, 24))
 		    {
@@ -5117,7 +5117,7 @@ displaced_read_reg (struct regcache *regs, CORE_ADDR from, int regno)
 {
   ULONGEST ret;
 
-  if (regno == 15)
+  if (regno == ARM_PC_REGNUM)
     {
       /* Compute pipeline offset:
 	 - When executing an ARM instruction, PC reads as the address of the
@@ -5231,7 +5231,7 @@ void
 displaced_write_reg (struct regcache *regs, struct displaced_step_closure *dsc,
 		     int regno, ULONGEST val, enum pc_write_style write_pc)
 {
-  if (regno == 15)
+  if (regno == ARM_PC_REGNUM)
     {
       if (debug_displaced)
 	fprintf_unfiltered (gdb_stdlog, "displaced: writing pc %.8lx\n",
@@ -5481,11 +5481,11 @@ cleanup_branch (struct gdbarch *gdbarch, struct regcache *regs,
 
   if (dsc->u.branch.link)
     {
-      ULONGEST pc = displaced_read_reg (regs, from, 15);
-      displaced_write_reg (regs, dsc, 14, pc - 4, CANNOT_WRITE_PC);
+      ULONGEST pc = displaced_read_reg (regs, from, ARM_PC_REGNUM);
+      displaced_write_reg (regs, dsc, ARM_LR_REGNUM, pc - 4, CANNOT_WRITE_PC);
     }
 
-  displaced_write_reg (regs, dsc, 15, dsc->u.branch.dest, write_pc);
+  displaced_write_reg (regs, dsc, ARM_PC_REGNUM, dsc->u.branch.dest, write_pc);
 }
 
 /* Copy B/BL/BLX instructions with immediate destinations.  */
@@ -5976,7 +5976,7 @@ copy_ldr_str_ldrb_strb (struct gdbarch *gdbarch, uint32_t insn,
      of this can be found in Section "Saving from r15" in
      http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204g/Cihbjifh.html */
 
-  if (load || rt != 15)
+  if (load || rt != ARM_PC_REGNUM)
     {
       dsc->u.ldst.restore_r4 = 0;
 
@@ -6077,7 +6077,7 @@ cleanup_block_load_all (struct gdbarch *gdbarch, struct regcache *regs,
       uint32_t memword;
 
       if (inc)
-	while (regno <= 15 && (regmask & (1 << regno)) == 0)
+	while (regno <= ARM_PC_REGNUM && (regmask & (1 << regno)) == 0)
 	  regno++;
       else
 	while (regno >= 0 && (regmask & (1 << regno)) == 0)
@@ -6159,7 +6159,7 @@ cleanup_block_load_pc (struct gdbarch *gdbarch,
   ULONGEST from = dsc->insn_addr;
   uint32_t status = displaced_read_reg (regs, from, ARM_PS_REGNUM);
   int load_executed = condition_true (dsc->u.block.cond, status), i;
-  unsigned int mask = dsc->u.block.regmask, write_reg = 15;
+  unsigned int mask = dsc->u.block.regmask, write_reg = ARM_PC_REGNUM;
   unsigned int regs_loaded = bitcount (mask);
   unsigned int num_to_shuffle = regs_loaded, clobbered;
 
@@ -6246,10 +6246,10 @@ copy_block_xfer (struct gdbarch *gdbarch, uint32_t insn, struct regcache *regs,
 
   /* Block transfers which don't mention PC can be run directly
      out-of-line.  */
-  if (rn != 15 && (insn & 0x8000) == 0)
+  if (rn != ARM_PC_REGNUM && (insn & 0x8000) == 0)
     return copy_unmodified (gdbarch, insn, "ldm/stm", dsc);
 
-  if (rn == 15)
+  if (rn == ARM_PC_REGNUM)
     {
       warning (_("displaced: Unpredictable LDM or STM with "
 		 "base register r15"));

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

* Re: Fix magic number in arm-tdep.c
  2011-03-02  7:10 Fix magic number in arm-tdep.c Yao Qi
@ 2011-03-02 14:12 ` Ulrich Weigand
  2011-03-02 18:13   ` Michael Snyder
  2011-03-03  2:20   ` Yao Qi
  0 siblings, 2 replies; 6+ messages in thread
From: Ulrich Weigand @ 2011-03-02 14:12 UTC (permalink / raw)
  To: Yao Qi; +Cc: gdb-patches

Yao Qi wrote:

> 	* gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
> 	ARM_PC_REGNUM.
> 	(thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
> 	(displaced_write_reg, displaced_read_reg): Likewise.
> 	(copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
> 	(cleanup_block_load_pc, copy_block_xfer): Likewise.
> 	(cleanup_branch): Replace magic number 14 and 15 with
> 	ARM_LR_REGNUM and ARM_PC_REGNUM respectively.

This is OK, but please keep the indentation in cases like:

> -		nextpc = (rn == 15) ? pc_val + 8
> +		nextpc = (rn == ARM_PC_REGNUM) ? pc_val + 8
>  				    : get_frame_register_unsigned (frame, rn);

(? and : should remain in the same column).

Bye,
Ulrich

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


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

* Re: Fix magic number in arm-tdep.c
  2011-03-02 14:12 ` Ulrich Weigand
@ 2011-03-02 18:13   ` Michael Snyder
  2011-03-02 18:30     ` Tom Tromey
  2011-03-03  2:20   ` Yao Qi
  1 sibling, 1 reply; 6+ messages in thread
From: Michael Snyder @ 2011-03-02 18:13 UTC (permalink / raw)
  To: Ulrich Weigand; +Cc: Yao Qi, gdb-patches

Ulrich Weigand wrote:
> Yao Qi wrote:
> 
>> 	* gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
>> 	ARM_PC_REGNUM.
>> 	(thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
>> 	(displaced_write_reg, displaced_read_reg): Likewise.
>> 	(copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
>> 	(cleanup_block_load_pc, copy_block_xfer): Likewise.
>> 	(cleanup_branch): Replace magic number 14 and 15 with
>> 	ARM_LR_REGNUM and ARM_PC_REGNUM respectively.
> 
> This is OK, but please keep the indentation in cases like:
> 
>> -		nextpc = (rn == 15) ? pc_val + 8
>> +		nextpc = (rn == ARM_PC_REGNUM) ? pc_val + 8
>>  				    : get_frame_register_unsigned (frame, rn);
> 
> (? and : should remain in the same column).
> 

I don't agree - : is an operator and should be indented by just two 
spaces.  As emacs does by default.



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

* Re: Fix magic number in arm-tdep.c
  2011-03-02 18:13   ` Michael Snyder
@ 2011-03-02 18:30     ` Tom Tromey
  2011-03-02 18:32       ` Michael Snyder
  0 siblings, 1 reply; 6+ messages in thread
From: Tom Tromey @ 2011-03-02 18:30 UTC (permalink / raw)
  To: Michael Snyder; +Cc: Ulrich Weigand, Yao Qi, gdb-patches

>>>>> "Michael" == Michael Snyder <msnyder@vmware.com> writes:

>>> -		nextpc = (rn == 15) ? pc_val + 8
>>> +		nextpc = (rn == ARM_PC_REGNUM) ? pc_val + 8
>>> : get_frame_register_unsigned (frame, rn);
>> 
>> (? and : should remain in the same column).
>> 

Michael> I don't agree - : is an operator and should be indented by just
Michael> two spaces.  As emacs does by default.

You're supposed to add extra parens to make it line up.
See the "Formatting" node in the GNU Standards.

Tom


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

* Re: Fix magic number in arm-tdep.c
  2011-03-02 18:30     ` Tom Tromey
@ 2011-03-02 18:32       ` Michael Snyder
  0 siblings, 0 replies; 6+ messages in thread
From: Michael Snyder @ 2011-03-02 18:32 UTC (permalink / raw)
  To: Tom Tromey; +Cc: Ulrich Weigand, Yao Qi, gdb-patches

Tom Tromey wrote:
>>>>>> "Michael" == Michael Snyder <msnyder@vmware.com> writes:
> 
>>>> -		nextpc = (rn == 15) ? pc_val + 8
>>>> +		nextpc = (rn == ARM_PC_REGNUM) ? pc_val + 8
>>>> : get_frame_register_unsigned (frame, rn);
>>> (? and : should remain in the same column).
>>>
> 
> Michael> I don't agree - : is an operator and should be indented by just
> Michael> two spaces.  As emacs does by default.
> 
> You're supposed to add extra parens to make it line up.
> See the "Formatting" node in the GNU Standards.
> 
> Tom

OK, that would suit me.  ;-)


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

* Re: Fix magic number in arm-tdep.c
  2011-03-02 14:12 ` Ulrich Weigand
  2011-03-02 18:13   ` Michael Snyder
@ 2011-03-03  2:20   ` Yao Qi
  1 sibling, 0 replies; 6+ messages in thread
From: Yao Qi @ 2011-03-03  2:20 UTC (permalink / raw)
  To: gdb-patches

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

On 03/02/2011 10:12 PM, Ulrich Weigand wrote:
> This is OK, but please keep the indentation in cases like:
> 
>> > -		nextpc = (rn == 15) ? pc_val + 8
>> > +		nextpc = (rn == ARM_PC_REGNUM) ? pc_val + 8
>> >  				    : get_frame_register_unsigned (frame, rn);
> (? and : should remain in the same column).

Thanks for the quick review.  Fix the indent and applied.

-- 
Yao (齐尧)

[-- Attachment #2: arm-magic-num-0303.patch --]
[-- Type: text/x-patch, Size: 10960 bytes --]

cvs diff: Diffing .
Index: ChangeLog
===================================================================
RCS file: /cvs/src/src/gdb/ChangeLog,v
retrieving revision 1.12724
diff -u -r1.12724 ChangeLog
--- ChangeLog	3 Mar 2011 01:15:45 -0000	1.12724
+++ ChangeLog	3 Mar 2011 02:16:01 -0000
@@ -1,3 +1,14 @@
+2011-03-03  Yao Qi  <yao@codesourcery.com>
+
+	* gdb/arm-tdep.c (shifted_reg_val): Replace magic number 15 with
+	ARM_PC_REGNUM.
+	(thumb_get_next_pc_raw, arm_get_next_pc_raw): Likewise.
+	(displaced_write_reg, displaced_read_reg): Likewise.
+	(copy_ldr_str_ldrb_strb, cleanup_block_load_all): Likewise.
+	(cleanup_block_load_pc, copy_block_xfer): Likewise.
+	(cleanup_branch): Replace magic number 14 and 15 with
+	ARM_LR_REGNUM and ARM_PC_REGNUM respectively.
+
 2011-03-02  Michael Snyder  <msnyder@vmware.com>
 
 	* maint.c (maintenance_do_deprecate): No need to check for NULL.
Index: arm-tdep.c
===================================================================
RCS file: /cvs/src/src/gdb/arm-tdep.c,v
retrieving revision 1.332
diff -u -r1.332 arm-tdep.c
--- arm-tdep.c	2 Mar 2011 05:33:37 -0000	1.332
+++ arm-tdep.c	3 Mar 2011 02:16:05 -0000
@@ -4144,7 +4144,7 @@
   else
     shift = bits (inst, 7, 11);
 
-  res = (rm == 15
+  res = (rm == ARM_PC_REGNUM
 	 ? (pc_val + (bit (inst, 4) ? 12 : 8))
 	 : get_frame_register_unsigned (frame, rm));
 
@@ -4498,7 +4498,7 @@
 
 	  rn = bits (inst1, 0, 3);
 	  base = get_frame_register_unsigned (frame, rn);
-	  if (rn == 15)
+	  if (rn == ARM_PC_REGNUM)
 	    {
 	      base = (base + 4) & ~(CORE_ADDR) 0x3;
 	      if (bit (inst1, 7))
@@ -4665,16 +4665,19 @@
 		|| bits (this_instr, 4, 27) == 0x12fff3)
 	      {
 		rn = bits (this_instr, 0, 3);
-		nextpc = (rn == 15) ? pc_val + 8
-				    : get_frame_register_unsigned (frame, rn);
+		nextpc = ((rn == ARM_PC_REGNUM)
+			  ? (pc_val + 8)
+			  : get_frame_register_unsigned (frame, rn));
+
 		return nextpc;
 	      }
 
 	    /* Multiply into PC.  */
 	    c = (status & FLAG_C) ? 1 : 0;
 	    rn = bits (this_instr, 16, 19);
-	    operand1 = (rn == 15) ? pc_val + 8
-				  : get_frame_register_unsigned (frame, rn);
+	    operand1 = ((rn == ARM_PC_REGNUM)
+			? (pc_val + 8)
+			: get_frame_register_unsigned (frame, rn));
 
 	    if (bit (this_instr, 25))
 	      {
@@ -4774,8 +4777,10 @@
 
 		  /* byte write to PC */
 		  rn = bits (this_instr, 16, 19);
-		  base = (rn == 15) ? pc_val + 8
-				    : get_frame_register_unsigned (frame, rn);
+		  base = ((rn == ARM_PC_REGNUM)
+			  ? (pc_val + 8)
+			  : get_frame_register_unsigned (frame, rn));
+
 		  if (bit (this_instr, 24))
 		    {
 		      /* pre-indexed */
@@ -5117,7 +5122,7 @@
 {
   ULONGEST ret;
 
-  if (regno == 15)
+  if (regno == ARM_PC_REGNUM)
     {
       /* Compute pipeline offset:
 	 - When executing an ARM instruction, PC reads as the address of the
@@ -5231,7 +5236,7 @@
 displaced_write_reg (struct regcache *regs, struct displaced_step_closure *dsc,
 		     int regno, ULONGEST val, enum pc_write_style write_pc)
 {
-  if (regno == 15)
+  if (regno == ARM_PC_REGNUM)
     {
       if (debug_displaced)
 	fprintf_unfiltered (gdb_stdlog, "displaced: writing pc %.8lx\n",
@@ -5481,11 +5486,11 @@
 
   if (dsc->u.branch.link)
     {
-      ULONGEST pc = displaced_read_reg (regs, from, 15);
-      displaced_write_reg (regs, dsc, 14, pc - 4, CANNOT_WRITE_PC);
+      ULONGEST pc = displaced_read_reg (regs, from, ARM_PC_REGNUM);
+      displaced_write_reg (regs, dsc, ARM_LR_REGNUM, pc - 4, CANNOT_WRITE_PC);
     }
 
-  displaced_write_reg (regs, dsc, 15, dsc->u.branch.dest, write_pc);
+  displaced_write_reg (regs, dsc, ARM_PC_REGNUM, dsc->u.branch.dest, write_pc);
 }
 
 /* Copy B/BL/BLX instructions with immediate destinations.  */
@@ -5976,7 +5981,7 @@
      of this can be found in Section "Saving from r15" in
      http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0204g/Cihbjifh.html */
 
-  if (load || rt != 15)
+  if (load || rt != ARM_PC_REGNUM)
     {
       dsc->u.ldst.restore_r4 = 0;
 
@@ -6077,7 +6082,7 @@
       uint32_t memword;
 
       if (inc)
-	while (regno <= 15 && (regmask & (1 << regno)) == 0)
+	while (regno <= ARM_PC_REGNUM && (regmask & (1 << regno)) == 0)
 	  regno++;
       else
 	while (regno >= 0 && (regmask & (1 << regno)) == 0)
@@ -6159,7 +6164,7 @@
   ULONGEST from = dsc->insn_addr;
   uint32_t status = displaced_read_reg (regs, from, ARM_PS_REGNUM);
   int load_executed = condition_true (dsc->u.block.cond, status), i;
-  unsigned int mask = dsc->u.block.regmask, write_reg = 15;
+  unsigned int mask = dsc->u.block.regmask, write_reg = ARM_PC_REGNUM;
   unsigned int regs_loaded = bitcount (mask);
   unsigned int num_to_shuffle = regs_loaded, clobbered;
 
@@ -6246,10 +6251,10 @@
 
   /* Block transfers which don't mention PC can be run directly
      out-of-line.  */
-  if (rn != 15 && (insn & 0x8000) == 0)
+  if (rn != ARM_PC_REGNUM && (insn & 0x8000) == 0)
     return copy_unmodified (gdbarch, insn, "ldm/stm", dsc);
 
-  if (rn == 15)
+  if (rn == ARM_PC_REGNUM)
     {
       warning (_("displaced: Unpredictable LDM or STM with "
 		 "base register r15"));
cvs diff: Diffing cli
cvs diff: Diffing common
cvs diff: Diffing config
cvs diff: Diffing config/alpha
cvs diff: Diffing config/arm
cvs diff: Diffing config/djgpp
cvs diff: Diffing config/i386
cvs diff: Diffing config/ia64
cvs diff: Diffing config/m32r
cvs diff: Diffing config/m68k
cvs diff: Diffing config/m88k
cvs diff: Diffing config/mips
cvs diff: Diffing config/pa
cvs diff: Diffing config/powerpc
cvs diff: Diffing config/rs6000
cvs diff: Diffing config/s390
cvs diff: Diffing config/sh
cvs diff: Diffing config/sparc
cvs diff: Diffing config/vax
cvs diff: Diffing config/xtensa
cvs diff: Diffing data-directory
cvs diff: Diffing doc
cvs diff: Diffing features
cvs diff: Diffing features/i386
cvs diff: Diffing features/rs6000
cvs diff: Diffing gdbserver
cvs diff: Diffing gdbtk
cvs diff: Diffing gdbtk/generic
cvs diff: Diffing gdbtk/library
cvs diff: Diffing gdbtk/library/help
cvs diff: Diffing gdbtk/library/help/images
cvs diff: Diffing gdbtk/library/help/trace
cvs diff: Diffing gdbtk/library/images
cvs diff: Diffing gdbtk/library/images2
cvs diff: Diffing gdbtk/plugins
cvs diff: Diffing gdbtk/plugins/intel-pentium
cvs diff: Diffing gdbtk/plugins/rhabout
cvs diff: Diffing gnulib
cvs diff: Diffing gnulib/extra
cvs diff: Diffing gnulib/m4
cvs diff: Diffing mi
cvs diff: Diffing osf-share
cvs diff: Diffing osf-share/AT386
cvs diff: Diffing osf-share/HP800
cvs diff: Diffing osf-share/RIOS
cvs diff: Diffing po
cvs diff: Diffing python
cvs diff: Diffing python/lib
cvs diff: Diffing python/lib/gdb
cvs diff: Diffing python/lib/gdb/command
cvs diff: Diffing regformats
cvs diff: Diffing regformats/i386
cvs diff: Diffing regformats/rs6000
cvs diff: Diffing syscalls
cvs diff: Diffing testsuite
cvs diff: Diffing testsuite/config
cvs diff: Diffing testsuite/gdb.ada
cvs diff: Diffing testsuite/gdb.ada/array_bounds
cvs diff: Diffing testsuite/gdb.ada/array_return
cvs diff: Diffing testsuite/gdb.ada/array_subscript_addr
cvs diff: Diffing testsuite/gdb.ada/arrayidx
cvs diff: Diffing testsuite/gdb.ada/arrayparam
cvs diff: Diffing testsuite/gdb.ada/arrayptr
cvs diff: Diffing testsuite/gdb.ada/atomic_enum
cvs diff: Diffing testsuite/gdb.ada/call_pn
cvs diff: Diffing testsuite/gdb.ada/catch_ex
cvs diff: Diffing testsuite/gdb.ada/char_param
cvs diff: Diffing testsuite/gdb.ada/complete
cvs diff: Diffing testsuite/gdb.ada/cond_lang
cvs diff: Diffing testsuite/gdb.ada/dyn_loc
cvs diff: Diffing testsuite/gdb.ada/exec_changed
cvs diff: Diffing testsuite/gdb.ada/exprs
cvs diff: Diffing testsuite/gdb.ada/fixed_cmp
cvs diff: Diffing testsuite/gdb.ada/fixed_points
cvs diff: Diffing testsuite/gdb.ada/formatted_ref
cvs diff: Diffing testsuite/gdb.ada/frame_args
cvs diff: Diffing testsuite/gdb.ada/fun_addr
cvs diff: Diffing testsuite/gdb.ada/fun_in_declare
cvs diff: Diffing testsuite/gdb.ada/funcall_param
cvs diff: Diffing testsuite/gdb.ada/homonym
cvs diff: Diffing testsuite/gdb.ada/int_deref
cvs diff: Diffing testsuite/gdb.ada/interface
cvs diff: Diffing testsuite/gdb.ada/lang_switch
cvs diff: Diffing testsuite/gdb.ada/mod_from_name
cvs diff: Diffing testsuite/gdb.ada/nested
cvs diff: Diffing testsuite/gdb.ada/null_array
cvs diff: Diffing testsuite/gdb.ada/null_record
cvs diff: Diffing testsuite/gdb.ada/packed_array
cvs diff: Diffing testsuite/gdb.ada/packed_tagged
cvs diff: Diffing testsuite/gdb.ada/print_chars
cvs diff: Diffing testsuite/gdb.ada/ptype_field
cvs diff: Diffing testsuite/gdb.ada/ptype_tagged_param
cvs diff: Diffing testsuite/gdb.ada/rec_return
cvs diff: Diffing testsuite/gdb.ada/ref_param
cvs diff: Diffing testsuite/gdb.ada/ref_tick_size
cvs diff: Diffing testsuite/gdb.ada/start
cvs diff: Diffing testsuite/gdb.ada/str_ref_cmp
cvs diff: Diffing testsuite/gdb.ada/sym_print_name
cvs diff: Diffing testsuite/gdb.ada/taft_type
cvs diff: Diffing testsuite/gdb.ada/tagged
cvs diff: Diffing testsuite/gdb.ada/tasks
cvs diff: Diffing testsuite/gdb.ada/tick_last_segv
cvs diff: Diffing testsuite/gdb.ada/type_coercion
cvs diff: Diffing testsuite/gdb.ada/uninitialized_vars
cvs diff: Diffing testsuite/gdb.ada/variant_record_packed_array
cvs diff: Diffing testsuite/gdb.ada/watch_arg
cvs diff: Diffing testsuite/gdb.ada/widewide
cvs diff: Diffing testsuite/gdb.arch
cvs diff: Diffing testsuite/gdb.asm
cvs diff: Diffing testsuite/gdb.base
cvs diff: Diffing testsuite/gdb.base/comp-dir
cvs diff: Diffing testsuite/gdb.base/comp-dir/subdir
cvs diff: Diffing testsuite/gdb.cell
cvs diff: Diffing testsuite/gdb.cp
cvs diff: Diffing testsuite/gdb.disasm
cvs diff: Diffing testsuite/gdb.dwarf2
cvs diff: Diffing testsuite/gdb.fortran
cvs diff: Diffing testsuite/gdb.gdb
cvs diff: Diffing testsuite/gdb.gdbtk
cvs diff: Diffing testsuite/gdb.hp
cvs diff: Diffing testsuite/gdb.hp/gdb.aCC
cvs diff: Diffing testsuite/gdb.hp/gdb.base-hp
cvs diff: Diffing testsuite/gdb.hp/gdb.compat
cvs diff: Diffing testsuite/gdb.hp/gdb.defects
cvs diff: Diffing testsuite/gdb.hp/gdb.objdbg
cvs diff: Diffing testsuite/gdb.hp/gdb.objdbg/objdbg01
cvs diff: Diffing testsuite/gdb.hp/gdb.objdbg/objdbg02
cvs diff: Diffing testsuite/gdb.hp/gdb.objdbg/objdbg03
cvs diff: Diffing testsuite/gdb.hp/gdb.objdbg/objdbg04
cvs diff: Diffing testsuite/gdb.hp/gdb.objdbg/tools
cvs diff: Diffing testsuite/gdb.hp/tools
cvs diff: Diffing testsuite/gdb.java
cvs diff: Diffing testsuite/gdb.mi
cvs diff: Diffing testsuite/gdb.modula2
cvs diff: Diffing testsuite/gdb.multi
cvs diff: Diffing testsuite/gdb.objc
cvs diff: Diffing testsuite/gdb.opencl
cvs diff: Diffing testsuite/gdb.opt
cvs diff: Diffing testsuite/gdb.pascal
cvs diff: Diffing testsuite/gdb.python
cvs diff: Diffing testsuite/gdb.reverse
cvs diff: Diffing testsuite/gdb.server
cvs diff: Diffing testsuite/gdb.stabs
cvs diff: Diffing testsuite/gdb.threads
cvs diff: Diffing testsuite/gdb.trace
cvs diff: Diffing testsuite/gdb.xml
cvs diff: Diffing testsuite/lib
cvs diff: Diffing tui

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

end of thread, other threads:[~2011-03-03  2:20 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-03-02  7:10 Fix magic number in arm-tdep.c Yao Qi
2011-03-02 14:12 ` Ulrich Weigand
2011-03-02 18:13   ` Michael Snyder
2011-03-02 18:30     ` Tom Tromey
2011-03-02 18:32       ` Michael Snyder
2011-03-03  2:20   ` Yao Qi

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