* [PATCH] x86: Fix kprobes build with non-gawk awk
@ 2009-12-13 22:04 Jonathan Nieder
2009-12-14 14:17 ` Masami Hiramatsu
2009-12-15 20:30 ` [tip:x86/urgent] " tip-bot for Jonathan Nieder
0 siblings, 2 replies; 4+ messages in thread
From: Jonathan Nieder @ 2009-12-13 22:04 UTC (permalink / raw)
To: linux-kernel; +Cc: Masami Hiramatsu, Jim Keniston, Frederic Weisbecker, x86
The instruction attribute table generator fails when run by mawk
or original-awk:
$ mawk -f arch/x86/tools/gen-insn-attr-x86.awk \
arch/x86/lib/x86-opcode-map.txt > /dev/null
Semantic error at 240: Second IMM error
$ echo $?
1
Line 240 contains "c8: ENTER Iw,Ib", which indicates that this
instruction has two immediate operands, the second of which is
one byte. The script loops through the immediate operands using
a for loop.
Unfortunately, there is no guarantee in awk that a for (variable
in array) loop will return the indices in increasing order.
Internally, both original-awk and mawk iterate over a hash table
for this purpose, and both implementations happen to produce the
index 2 before 1. The supposed second immediate operand is more
than one byte wide, producing the error.
So loop over the indices in increasing order instead. As a
side-effect, with mawk this means the silly two-entry hash table
never has to be built.
Cc: Masami Hiramatsu <mhiramat@redhat.com>
Cc: Jim Keniston <jkenisto@us.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: x86@kernel.org
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
---
arch/x86/tools/gen-insn-attr-x86.awk | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/x86/tools/gen-insn-attr-x86.awk b/arch/x86/tools/gen-insn-attr-x86.awk
index e34e92a..7a68506 100644
--- a/arch/x86/tools/gen-insn-attr-x86.awk
+++ b/arch/x86/tools/gen-insn-attr-x86.awk
@@ -226,12 +226,12 @@ function add_flags(old,new) {
}
# convert operands to flags.
-function convert_operands(opnd, i,imm,mod)
+function convert_operands(count,opnd, i,j,imm,mod)
{
imm = null
mod = null
- for (i in opnd) {
- i = opnd[i]
+ for (j = 1; j <= count; j++) {
+ i = opnd[j]
if (match(i, imm_expr) == 1) {
if (!imm_flag[i])
semantic_error("Unknown imm opnd: " i)
@@ -282,8 +282,8 @@ function convert_operands(opnd, i,imm,mod)
# parse one opcode
if (match($i, opnd_expr)) {
opnd = $i
- split($(i++), opnds, ",")
- flags = convert_operands(opnds)
+ count = split($(i++), opnds, ",")
+ flags = convert_operands(count, opnds)
}
if (match($i, ext_expr))
ext = $(i++)
--
1.6.5.4
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] x86: Fix kprobes build with non-gawk awk
2009-12-13 22:04 [PATCH] x86: Fix kprobes build with non-gawk awk Jonathan Nieder
@ 2009-12-14 14:17 ` Masami Hiramatsu
2009-12-15 23:51 ` Jonathan Nieder
2009-12-15 20:30 ` [tip:x86/urgent] " tip-bot for Jonathan Nieder
1 sibling, 1 reply; 4+ messages in thread
From: Masami Hiramatsu @ 2009-12-14 14:17 UTC (permalink / raw)
To: Jonathan Nieder; +Cc: linux-kernel, Jim Keniston, Frederic Weisbecker, x86
Hi Jonathan,
Jonathan Nieder wrote:
> The instruction attribute table generator fails when run by mawk
> or original-awk:
>
> $ mawk -f arch/x86/tools/gen-insn-attr-x86.awk \
> arch/x86/lib/x86-opcode-map.txt > /dev/null
> Semantic error at 240: Second IMM error
> $ echo $?
> 1
>
> Line 240 contains "c8: ENTER Iw,Ib", which indicates that this
> instruction has two immediate operands, the second of which is
> one byte. The script loops through the immediate operands using
> a for loop.
>
> Unfortunately, there is no guarantee in awk that a for (variable
> in array) loop will return the indices in increasing order.
> Internally, both original-awk and mawk iterate over a hash table
> for this purpose, and both implementations happen to produce the
> index 2 before 1. The supposed second immediate operand is more
> than one byte wide, producing the error.
Oh, I see.
>
> So loop over the indices in increasing order instead. As a
> side-effect, with mawk this means the silly two-entry hash table
> never has to be built.
Thank you for fixing it!
Acked-by: Masami Hiramatsu <mhiramat@redhat.com>
>
> Cc: Masami Hiramatsu <mhiramat@redhat.com>
> Cc: Jim Keniston <jkenisto@us.ibm.com>
> Cc: Frederic Weisbecker <fweisbec@gmail.com>
> Cc: x86@kernel.org
> Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
> ---
> arch/x86/tools/gen-insn-attr-x86.awk | 10 +++++-----
> 1 files changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/arch/x86/tools/gen-insn-attr-x86.awk b/arch/x86/tools/gen-insn-attr-x86.awk
> index e34e92a..7a68506 100644
> --- a/arch/x86/tools/gen-insn-attr-x86.awk
> +++ b/arch/x86/tools/gen-insn-attr-x86.awk
> @@ -226,12 +226,12 @@ function add_flags(old,new) {
> }
>
> # convert operands to flags.
> -function convert_operands(opnd, i,imm,mod)
> +function convert_operands(count,opnd, i,j,imm,mod)
> {
> imm = null
> mod = null
> - for (i in opnd) {
> - i = opnd[i]
> + for (j = 1; j <= count; j++) {
> + i = opnd[j]
> if (match(i, imm_expr) == 1) {
> if (!imm_flag[i])
> semantic_error("Unknown imm opnd: " i)
> @@ -282,8 +282,8 @@ function convert_operands(opnd, i,imm,mod)
> # parse one opcode
> if (match($i, opnd_expr)) {
> opnd = $i
> - split($(i++), opnds, ",")
> - flags = convert_operands(opnds)
> + count = split($(i++), opnds, ",")
> + flags = convert_operands(count, opnds)
> }
> if (match($i, ext_expr))
> ext = $(i++)
--
Masami Hiramatsu
Software Engineer
Hitachi Computer Products (America), Inc.
Software Solutions Division
e-mail: mhiramat@redhat.com
^ permalink raw reply [flat|nested] 4+ messages in thread
* [tip:x86/urgent] x86: Fix kprobes build with non-gawk awk
2009-12-13 22:04 [PATCH] x86: Fix kprobes build with non-gawk awk Jonathan Nieder
2009-12-14 14:17 ` Masami Hiramatsu
@ 2009-12-15 20:30 ` tip-bot for Jonathan Nieder
1 sibling, 0 replies; 4+ messages in thread
From: tip-bot for Jonathan Nieder @ 2009-12-15 20:30 UTC (permalink / raw)
To: linux-tip-commits
Cc: linux-kernel, hpa, mingo, fweisbec, jkenisto, jrnieder, tglx,
mingo
Commit-ID: 23637568ad0c9b5ab0ad27d2f2f26d1e9282c527
Gitweb: http://git.kernel.org/tip/23637568ad0c9b5ab0ad27d2f2f26d1e9282c527
Author: Jonathan Nieder <jrnieder@gmail.com>
AuthorDate: Sun, 13 Dec 2009 16:04:38 -0600
Committer: Ingo Molnar <mingo@elte.hu>
CommitDate: Tue, 15 Dec 2009 20:35:49 +0100
x86: Fix kprobes build with non-gawk awk
The instruction attribute table generator fails when run by mawk
or original-awk:
$ mawk -f arch/x86/tools/gen-insn-attr-x86.awk \
arch/x86/lib/x86-opcode-map.txt > /dev/null
Semantic error at 240: Second IMM error
$ echo $?
1
Line 240 contains "c8: ENTER Iw,Ib", which indicates that this
instruction has two immediate operands, the second of which is
one byte. The script loops through the immediate operands using
a for loop.
Unfortunately, there is no guarantee in awk that a for (variable
in array) loop will return the indices in increasing order.
Internally, both original-awk and mawk iterate over a hash table
for this purpose, and both implementations happen to produce the
index 2 before 1. The supposed second immediate operand is more
than one byte wide, producing the error.
So loop over the indices in increasing order instead. As a
side-effect, with mawk this means the silly two-entry hash table
never has to be built.
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Acked-by Masami Hiramatsu <mhiramat@redhat.com>
Cc: Jim Keniston <jkenisto@us.ibm.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
LKML-Reference: <20091213220437.GA27718@progeny.tock>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
---
arch/x86/tools/gen-insn-attr-x86.awk | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/arch/x86/tools/gen-insn-attr-x86.awk b/arch/x86/tools/gen-insn-attr-x86.awk
index e34e92a..7a68506 100644
--- a/arch/x86/tools/gen-insn-attr-x86.awk
+++ b/arch/x86/tools/gen-insn-attr-x86.awk
@@ -226,12 +226,12 @@ function add_flags(old,new) {
}
# convert operands to flags.
-function convert_operands(opnd, i,imm,mod)
+function convert_operands(count,opnd, i,j,imm,mod)
{
imm = null
mod = null
- for (i in opnd) {
- i = opnd[i]
+ for (j = 1; j <= count; j++) {
+ i = opnd[j]
if (match(i, imm_expr) == 1) {
if (!imm_flag[i])
semantic_error("Unknown imm opnd: " i)
@@ -282,8 +282,8 @@ function convert_operands(opnd, i,imm,mod)
# parse one opcode
if (match($i, opnd_expr)) {
opnd = $i
- split($(i++), opnds, ",")
- flags = convert_operands(opnds)
+ count = split($(i++), opnds, ",")
+ flags = convert_operands(count, opnds)
}
if (match($i, ext_expr))
ext = $(i++)
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] x86: Fix kprobes build with non-gawk awk
2009-12-14 14:17 ` Masami Hiramatsu
@ 2009-12-15 23:51 ` Jonathan Nieder
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Nieder @ 2009-12-15 23:51 UTC (permalink / raw)
To: Masami Hiramatsu; +Cc: linux-kernel, Jim Keniston, Frederic Weisbecker, x86
Masami Hiramatsu wrote:
> Thank you for fixing it!
No problem. Thanks for looking it over.
Regards,
Jonathan
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2009-12-15 23:37 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-13 22:04 [PATCH] x86: Fix kprobes build with non-gawk awk Jonathan Nieder
2009-12-14 14:17 ` Masami Hiramatsu
2009-12-15 23:51 ` Jonathan Nieder
2009-12-15 20:30 ` [tip:x86/urgent] " tip-bot for Jonathan Nieder
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox