public inbox for linux-ia64@vger.kernel.org
 help / color / mirror / Atom feed
* [Linux-ia64] ia64 objdump bug for brl instruction
@ 2002-11-21 19:20 Chen, Kenneth W
  2002-11-25 20:00 ` Jim Wilson
  0 siblings, 1 reply; 2+ messages in thread
From: Chen, Kenneth W @ 2002-11-21 19:20 UTC (permalink / raw)
  To: linux-ia64

We found a bug in ia64 objdump that brl instruction was decoded incorrectly.  The issue is that the mid 39 bit for the long immediate was incorrectly positioned and resulting in incorrect target branch address for branch long instruction.  This bug is on ia64 only.  The following patch fixes the issue. (note, it also fixes a spelling error as well :-).

- Ken

--- opcodes/ia64-dis.c.orig	Tue Mar 13 14:58:35 2001
+++ opcodes/ia64-dis.c	Thu Nov 21 11:16:43 2002
@@ -167,10 +167,10 @@
         }
       else if (odesc - elf64_ia64_operands == IA64_OPND_TGT64)
 	{
-	  /* 60-bit immedate for long branches.  */
+	  /* 60-bit immediate for long branches. */
 	  value = (((insn >> 13) & 0xfffff)
 		   | (((insn >> 36) & 1) << 59)
-		   | (slot[1] << 20)) << 4;
+		   | (((slot[1] >> 2) & 0x7fffffffffLL) << 20)) << 4;
 	}
       else
 	{



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

end of thread, other threads:[~2002-11-25 20:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-21 19:20 [Linux-ia64] ia64 objdump bug for brl instruction Chen, Kenneth W
2002-11-25 20:00 ` Jim Wilson

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