From: Paul Pluzhnikov <ppluzhnikov@gmail.com>
To: gdb-patches ml <gdb-patches@sourceware.org>
Cc: Paul Pluzhnikov <ppluzhnikov@google.com>
Subject: [patch] Fix BZ15121 -- x/a broken for addresses in shared libraries
Date: Sun, 06 Sep 2015 20:03:00 -0000 [thread overview]
Message-ID: <CALoOobP+FH-rRO-HYOFgu0QrfHwgteeu_ufawVDL9zeyef7h7g@mail.gmail.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 509 bytes --]
Greetings,
Attached patch fixes BZ #15121 -- x/a broken for addresses in shared libraries.
Not adding a new test since this is already covered by gdb.base/long_long.exp
Tested on Linux/x86_64, no new failures.
Thanks,
ChangeLog:
2015-09-06 Paul Pluzhnikov <ppluzhnikov@google.com>
[BZ #15121]
* gdb/value.c (unpack_pointer): Don't sign-extend.
testsuite/ChangeLog:
2015-09-06 Paul Pluzhnikov <ppluzhnikov@google.com>
* gdb.base/long_long.exp: Adjust.
--
Paul Pluzhnikov
[-- Attachment #2: gdb-bz15121.20150906.txt --]
[-- Type: text/plain, Size: 2066 bytes --]
diff --git a/gdb/testsuite/gdb.base/long_long.exp b/gdb/testsuite/gdb.base/long_long.exp
index 5eea391..f4f3961 100644
--- a/gdb/testsuite/gdb.base/long_long.exp
+++ b/gdb/testsuite/gdb.base/long_long.exp
@@ -255,7 +255,7 @@ gdb_test "x/2bd b" "1.*-89"
gdb_test "x/2bu b" "1.*167"
gdb_test "x/2bo b" "01.*0247"
gdb_test "x/2bt b" "00000001.*10100111"
-gdb_test_ptr "x/2ba b" "" "" "0x1.*0xffffffa7" "0x1.*0xffffffffffffffa7"
+gdb_test_ptr "x/2ba b" "" "" "0x1.*0xa7" "0x1.*0xa7"
gdb_test "x/2bc b" "1 '.001'.*-89 '.\[0-9\]*'"
gdb_test "x/2bf b" "1.*-89"
@@ -264,7 +264,7 @@ gdb_test "x/2hd h" "291.*-22738"
gdb_test "x/2hu h" "291.*42798"
gdb_test "x/2ho h" "0443.*0123456"
gdb_test "x/2ht h" "0000000100100011.*1010011100101110"
-gdb_test_ptr "x/2ha h" "" "" "0x123.*0xffffa72e" "0x123.*0xffffffffffffa72e"
+gdb_test_ptr "x/2ha h" "" "" "0x123.*0xa72e" "0x123.*0xa72e"
gdb_test "x/2hc h" "35 '.'.*46 '.'"
gdb_test "x/2hf h" "291.*-22738"
@@ -273,7 +273,7 @@ gdb_test "x/2wd w" "19088743.*-1490098887"
gdb_test "x/2wu w" "19088743.*2804868409"
gdb_test "x/2wo w" "0110642547.*024713562471"
gdb_test "x/2wt w" "00000001001000110100010101100111.*10100111001011101110010100111001"
-gdb_test_ptr "x/2wa w" "" "" "0x1234567.*0xa72ee539" "0x1234567.*0xffffffffa72ee539"
+gdb_test_ptr "x/2wa w" "" "" "0x1234567.*0xa72ee539" "0x1234567.*0xa72ee539"
gdb_test "x/2wc w" "103 'g'.*57 '9'"
gdb_test "x/2wf w" "2.99881655e-0?38.*-2.42716126e-0?15"
diff --git a/gdb/value.c b/gdb/value.c
index 91bf49e..0624b90 100644
--- a/gdb/value.c
+++ b/gdb/value.c
@@ -2927,7 +2927,13 @@ unpack_pointer (struct type *type, const gdb_byte *valaddr)
{
/* Assume a CORE_ADDR can fit in a LONGEST (for now). Not sure
whether we want this to be true eventually. */
- return unpack_long (type, valaddr);
+ LONGEST ret = unpack_long (type, valaddr);
+ int len = TYPE_LENGTH (type);
+ if (sizeof (CORE_ADDR) > len && ret < 0) {
+ /* Don't sign-extend 32-bit pointer. BZ 15121. */
+ return ret & ((1UL << (8 * len)) - 1);
+ }
+ return ret;
}
\f
next reply other threads:[~2015-09-06 20:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-06 20:03 Paul Pluzhnikov [this message]
[not found] ` <55F19100.30600@redhat.com>
2015-09-10 14:33 ` Mark Kettenis
2015-09-10 15:00 ` Paul Pluzhnikov
2015-09-10 15:07 ` Pedro Alves
2015-09-10 15:19 ` Maciej W. Rozycki
2015-09-10 15:02 ` Maciej W. Rozycki
2015-09-12 21:41 ` Paul Pluzhnikov
2015-09-12 21:56 ` Maciej W. Rozycki
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=CALoOobP+FH-rRO-HYOFgu0QrfHwgteeu_ufawVDL9zeyef7h7g@mail.gmail.com \
--to=ppluzhnikov@gmail.com \
--cc=gdb-patches@sourceware.org \
--cc=ppluzhnikov@google.com \
/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