[RFA] fix for intel disassembly, truncated BFD_VMA
H.J. Lu
hjl.tools@gmail.com
Tue Feb 16 00:07:00 GMT 2016
More information about the Binutils mailing list
Tue Feb 16 00:07:00 GMT 2016
- Previous message (by thread): [PATCH] PR ld/19636: pie changes program behavior and generate unnecessary dynamic symbols
- Next message (by thread): [PATCH] remove docs for S_IS_EXTERN()
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Wed, Feb 9, 2011 at 10:43 AM, Michael Snyder <msnyder@vmware.com> wrote: > H.J. Lu wrote: >> >> On Wed, Feb 9, 2011 at 10:36 AM, Michael Snyder <msnyder@vmware.com> >> wrote: >>> >>> This expression needed parentheses. Without them, it was truncating the >>> target address of jumps and calls from BFD_VMA to 32-bits. >>> >>> Disassembly at high addresses is vastly improved. >>> >>> >>> 2011-02-09 Michael Snyder <msnyder@vmware.com> >>> >>> * i386-dis.c (OP_J): Parenthesize expression to prevent >>> truncated addresses. >>> (print_insn): Fix indentation off-by-one. >>> >>> Index: i386-dis.c >>> =================================================================== >>> RCS file: /cvs/src/src/opcodes/i386-dis.c,v >>> retrieving revision 1.257 >>> diff -u -p -u -p -r1.257 i386-dis.c >>> --- i386-dis.c 18 Jan 2011 17:08:13 -0000 1.257 >>> +++ i386-dis.c 9 Feb 2011 18:28:02 -0000 >>> @@ -1,6 +1,6 @@ >>> /* Print i386 instructions for GDB, the GNU debugger. >>> Copyright 1988, 1989, 1991, 1993, 1994, 1995, 1996, 1997, 1998, 1999, >>> - 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 >>> + 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 >>> Free Software Foundation, Inc. >>> >>> This file is part of the GNU opcodes library. >>> @@ -11702,9 +11702,9 @@ print_insn (bfd_vma pc, disassemble_info >>> modrm.rm = *codep & 7; >>> } >>> >>> - need_vex = 0; >>> - need_vex_reg = 0; >>> - vex_w_done = 0; >>> + need_vex = 0; >>> + need_vex_reg = 0; >>> + vex_w_done = 0; >>> >>> if (dp->name == NULL && dp->op[0].bytemode == FLOATCODE) >>> { >>> @@ -13817,7 +13817,7 @@ OP_J (int bytemode, int sizeflag) >>> oappend (INTERNAL_DISASSEMBLER_ERROR); >>> return; >>> } >>> - disp = ((start_pc + codep - start_codep + disp) & mask) | segment; >>> + disp = ((start_pc + (codep - start_codep) + disp) & mask) | segment; >>> set_op (disp, 0); >>> print_operand_value (scratchbuf, 1, disp); >>> oappend (scratchbuf); >>> >>> >> >> OK. > > > Thanks, committed. I got a hit with a similar case. I checked this patch into trunk and 2.26 branch. -- H.J. -------------- next part -------------- A non-text attachment was scrubbed... Name: 0001-Add-parentheses-to-prevent-truncated-addresses.patch Type: text/x-patch Size: 1703 bytes Desc: not available URL: <https://sourceware.org/pipermail/binutils/attachments/20160216/428c0601/attachment.bin>
- Previous message (by thread): [PATCH] PR ld/19636: pie changes program behavior and generate unnecessary dynamic symbols
- Next message (by thread): [PATCH] remove docs for S_IS_EXTERN()
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list