diff options
author | Masami Hiramatsu <mhiramat@redhat.com> | 2009-11-16 18:06:24 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-11-17 01:16:50 -0500 |
commit | 35039eb6b199749943547c8572be6604edf00229 (patch) | |
tree | 32a425f542169fa581b18ec0af5e787ac6ab3385 /arch/x86/tools | |
parent | d65ff75fbe6f8ac7c17f18e4108521898468822c (diff) |
x86: Show symbol name if insn decoder test failed
Show symbol name if insn decoder test find a difference.
This will help us to find out where the issue is.
Signed-off-by: Masami Hiramatsu <mhiramat@redhat.com>
Cc: systemtap <systemtap@sources.redhat.com>
Cc: DLE <dle-develop@lists.sourceforge.net>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Randy Dunlap <rdunlap@xenotime.net>
Cc: Jim Keniston <jkenisto@us.ibm.com>
Cc: Stephen Rothwell <sfr@canb.auug.org.au>
LKML-Reference: <20091116230624.5250.49813.stgit@harusame>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/tools')
-rw-r--r-- | arch/x86/tools/distill.awk | 5 | ||||
-rw-r--r-- | arch/x86/tools/test_get_len.c | 10 |
2 files changed, 14 insertions, 1 deletions
diff --git a/arch/x86/tools/distill.awk b/arch/x86/tools/distill.awk index d433619bb866..c13c0ee48ab4 100644 --- a/arch/x86/tools/distill.awk +++ b/arch/x86/tools/distill.awk | |||
@@ -15,6 +15,11 @@ BEGIN { | |||
15 | fwait_str="9b\tfwait" | 15 | fwait_str="9b\tfwait" |
16 | } | 16 | } |
17 | 17 | ||
18 | /^ *[0-9a-f]+ <[^>]*>:/ { | ||
19 | # Symbol entry | ||
20 | printf("%s%s\n", $2, $1) | ||
21 | } | ||
22 | |||
18 | /^ *[0-9a-f]+:/ { | 23 | /^ *[0-9a-f]+:/ { |
19 | if (split($0, field, "\t") < 3) { | 24 | if (split($0, field, "\t") < 3) { |
20 | # This is a continuation of the same insn. | 25 | # This is a continuation of the same insn. |
diff --git a/arch/x86/tools/test_get_len.c b/arch/x86/tools/test_get_len.c index 5743e5128d35..af75e07217ba 100644 --- a/arch/x86/tools/test_get_len.c +++ b/arch/x86/tools/test_get_len.c | |||
@@ -110,7 +110,7 @@ static void parse_args(int argc, char **argv) | |||
110 | 110 | ||
111 | int main(int argc, char **argv) | 111 | int main(int argc, char **argv) |
112 | { | 112 | { |
113 | char line[BUFSIZE]; | 113 | char line[BUFSIZE], sym[BUFSIZE] = "<unknown>"; |
114 | unsigned char insn_buf[16]; | 114 | unsigned char insn_buf[16]; |
115 | struct insn insn; | 115 | struct insn insn; |
116 | int insns = 0, c; | 116 | int insns = 0, c; |
@@ -122,6 +122,12 @@ int main(int argc, char **argv) | |||
122 | int nb = 0; | 122 | int nb = 0; |
123 | unsigned int b; | 123 | unsigned int b; |
124 | 124 | ||
125 | if (line[0] == '<') { | ||
126 | /* Symbol line */ | ||
127 | strcpy(sym, line); | ||
128 | continue; | ||
129 | } | ||
130 | |||
125 | insns++; | 131 | insns++; |
126 | memset(insn_buf, 0, 16); | 132 | memset(insn_buf, 0, 16); |
127 | strcpy(copy, line); | 133 | strcpy(copy, line); |
@@ -145,6 +151,8 @@ int main(int argc, char **argv) | |||
145 | insn_init(&insn, insn_buf, x86_64); | 151 | insn_init(&insn, insn_buf, x86_64); |
146 | insn_get_length(&insn); | 152 | insn_get_length(&insn); |
147 | if (insn.length != nb) { | 153 | if (insn.length != nb) { |
154 | fprintf(stderr, "Error: %s found a difference at %s\n", | ||
155 | prog, sym); | ||
148 | fprintf(stderr, "Error: %s", line); | 156 | fprintf(stderr, "Error: %s", line); |
149 | fprintf(stderr, "Error: objdump says %d bytes, but " | 157 | fprintf(stderr, "Error: objdump says %d bytes, but " |
150 | "insn_get_length() says %d\n", nb, | 158 | "insn_get_length() says %d\n", nb, |