From: lin zuojian <manjian2006@gmail.com>
To: gdb-patches@sourceware.org
Subject: [PATCH] Adding bit position to ptype
Date: Wed, 18 Jun 2014 03:13:00 -0000 [thread overview]
Message-ID: <20140618031308.GA7252@ubuntu> (raw)
Hi, I am having trouble looking up field offsets when reading disassembled text.
So I add an extra field to ptype:
(gdb) ptype WebCore::FrameLoader
type = class WebCore::FrameLoader {
private:
WebCore::Frame *m_frame bitpos: 0;
WebCore::FrameLoaderClient *m_client bitpos: 32;
WebCore::PolicyChecker m_policyChecker bitpos: 64;
WebCore::HistoryController m_history bitpos: 3264;
WebCore::ResourceLoadNotifier m_notifer bitpos: 3552;
WebCore::SubframeLoader m_subframeLoader bitpos: 3584;
WebCore::FrameLoaderStateMachine m_stateMachine bitpos: 3680;
WebCore::IconController m_icon bitpos: 3712;
...
That helps me a lot to understand what "ldr r0, [r4, #408]" means.
---
gdb/c-typeprint.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/gdb/c-typeprint.c b/gdb/c-typeprint.c
index 4edc9ec..9fbbc36 100644
--- a/gdb/c-typeprint.c
+++ b/gdb/c-typeprint.c
@@ -1110,6 +1110,12 @@ c_type_print_base (struct type *type, struct ui_file *stream,
fprintf_filtered (stream, " : %d",
TYPE_FIELD_BITSIZE (type, i));
}
+ else if (!field_is_static (&TYPE_FIELD (type, i)))
+ {
+ /* print the bit pos. */
+ fprintf_filtered (stream, " bitpos: %d",
+ TYPE_FIELD_BITPOS (type, i));
+ }
fprintf_filtered (stream, ";\n");
}
--
1.9.1
next reply other threads:[~2014-06-18 3:13 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-18 3:13 lin zuojian [this message]
2014-06-18 14:31 ` Tom Tromey
2014-07-01 9:34 ` lin zuojian
2014-07-01 16:29 ` Tom Tromey
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=20140618031308.GA7252@ubuntu \
--to=manjian2006@gmail.com \
--cc=gdb-patches@sourceware.org \
/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