* [PATCH bpf-next] bpf, docs: clarify sign extension of 64-bit use of 32-bit imm
@ 2024-05-17 16:16 Dave Thaler
2024-05-17 16:16 ` [Bpf] " Dave Thaler
2024-05-20 20:08 ` Yonghong Song
0 siblings, 2 replies; 4+ messages in thread
From: Dave Thaler @ 2024-05-17 16:16 UTC (permalink / raw)
To: bpf; +Cc: bpf, Dave Thaler, Dave Thaler
imm is defined as a 32-bit signed integer.
{MOV, K, ALU64} says it does "dst = src" (where src is 'imm') but it does
not sign extend, but instead does dst = (u32)src. The "Jump instructions"
section has "unsigned" by some instructions, but the "Arithmetic instructions"
section has no such note about the MOV instruction, so added an example to
make this more clear.
{JLE, K, JMP} says it does "PC += offset if dst <= src" (where src is 'imm',
and the comparison is unsigned). This was apparently ambiguous to some
readers as to whether the comparison was "dst <= (u64)(u32)imm" or
"dst <= (u64)(s64)imm", since the correct assumption would be the latter
except that the MOV instruction doesn't follow that, so added an example
to make this more clear.
Signed-off-by: Dave Thaler <dthaler1968@googlemail.com>
---
.../bpf/standardization/instruction-set.rst | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/Documentation/bpf/standardization/instruction-set.rst b/Documentation/bpf/standardization/instruction-set.rst
index 997560aba..f96ebb169 100644
--- a/Documentation/bpf/standardization/instruction-set.rst
+++ b/Documentation/bpf/standardization/instruction-set.rst
@@ -378,13 +378,22 @@ etc. This specification requires that signed modulo use truncated division
a % n = a - n * trunc(a / n)
-The ``MOVSX`` instruction does a move operation with sign extension.
+The ``MOV`` instruction does a move operation without sign extension, whereas
+the ``MOVSX`` instruction does a move operation with sign extension.
``{MOVSX, X, ALU}`` :term:`sign extends<Sign Extend>` 8-bit and 16-bit operands into
32-bit operands, and zeroes the remaining upper 32 bits.
``{MOVSX, X, ALU64}`` :term:`sign extends<Sign Extend>` 8-bit, 16-bit, and 32-bit
operands into 64-bit operands. Unlike other arithmetic instructions,
``MOVSX`` is only defined for register source operands (``X``).
+``{MOV, K, ALU}`` means::
+
+ dst = (u32) imm
+
+``{MOVSX, X, ALU}`` with 'offset' 32 means::
+
+ dst = (s32) src
+
The ``NEG`` instruction is only defined when the source bit is clear
(``K``).
@@ -486,6 +495,10 @@ Example:
where 's>=' indicates a signed '>=' comparison.
+``{JLE, K, JMP}`` means::
+
+ if dst <= (u64)(s64)imm goto +offset
+
``{JA, K, JMP32}`` means::
gotol +imm
--
2.40.1
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Bpf] [PATCH bpf-next] bpf, docs: clarify sign extension of 64-bit use of 32-bit imm
2024-05-17 16:16 [PATCH bpf-next] bpf, docs: clarify sign extension of 64-bit use of 32-bit imm Dave Thaler
@ 2024-05-17 16:16 ` Dave Thaler
2024-05-20 20:08 ` Yonghong Song
1 sibling, 0 replies; 4+ messages in thread
From: Dave Thaler @ 2024-05-17 16:16 UTC (permalink / raw)
To: bpf; +Cc: bpf, Dave Thaler, Dave Thaler
imm is defined as a 32-bit signed integer.
{MOV, K, ALU64} says it does "dst = src" (where src is 'imm') but it does
not sign extend, but instead does dst = (u32)src. The "Jump instructions"
section has "unsigned" by some instructions, but the "Arithmetic instructions"
section has no such note about the MOV instruction, so added an example to
make this more clear.
{JLE, K, JMP} says it does "PC += offset if dst <= src" (where src is 'imm',
and the comparison is unsigned). This was apparently ambiguous to some
readers as to whether the comparison was "dst <= (u64)(u32)imm" or
"dst <= (u64)(s64)imm", since the correct assumption would be the latter
except that the MOV instruction doesn't follow that, so added an example
to make this more clear.
Signed-off-by: Dave Thaler <dthaler1968@googlemail.com>
---
.../bpf/standardization/instruction-set.rst | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/Documentation/bpf/standardization/instruction-set.rst b/Documentation/bpf/standardization/instruction-set.rst
index 997560aba..f96ebb169 100644
--- a/Documentation/bpf/standardization/instruction-set.rst
+++ b/Documentation/bpf/standardization/instruction-set.rst
@@ -378,13 +378,22 @@ etc. This specification requires that signed modulo use truncated division
a % n = a - n * trunc(a / n)
-The ``MOVSX`` instruction does a move operation with sign extension.
+The ``MOV`` instruction does a move operation without sign extension, whereas
+the ``MOVSX`` instruction does a move operation with sign extension.
``{MOVSX, X, ALU}`` :term:`sign extends<Sign Extend>` 8-bit and 16-bit operands into
32-bit operands, and zeroes the remaining upper 32 bits.
``{MOVSX, X, ALU64}`` :term:`sign extends<Sign Extend>` 8-bit, 16-bit, and 32-bit
operands into 64-bit operands. Unlike other arithmetic instructions,
``MOVSX`` is only defined for register source operands (``X``).
+``{MOV, K, ALU}`` means::
+
+ dst = (u32) imm
+
+``{MOVSX, X, ALU}`` with 'offset' 32 means::
+
+ dst = (s32) src
+
The ``NEG`` instruction is only defined when the source bit is clear
(``K``).
@@ -486,6 +495,10 @@ Example:
where 's>=' indicates a signed '>=' comparison.
+``{JLE, K, JMP}`` means::
+
+ if dst <= (u64)(s64)imm goto +offset
+
``{JA, K, JMP32}`` means::
gotol +imm
--
2.40.1
--
Bpf mailing list -- bpf@ietf.org
To unsubscribe send an email to bpf-leave@ietf.org
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH bpf-next] bpf, docs: clarify sign extension of 64-bit use of 32-bit imm
2024-05-17 16:16 [PATCH bpf-next] bpf, docs: clarify sign extension of 64-bit use of 32-bit imm Dave Thaler
2024-05-17 16:16 ` [Bpf] " Dave Thaler
@ 2024-05-20 20:08 ` Yonghong Song
2024-05-20 20:08 ` [Bpf] " Yonghong Song
1 sibling, 1 reply; 4+ messages in thread
From: Yonghong Song @ 2024-05-20 20:08 UTC (permalink / raw)
To: Dave Thaler, bpf; +Cc: bpf, Dave Thaler
On 5/17/24 10:16 AM, Dave Thaler wrote:
> imm is defined as a 32-bit signed integer.
>
> {MOV, K, ALU64} says it does "dst = src" (where src is 'imm') but it does
> not sign extend, but instead does dst = (u32)src. The "Jump instructions"
I am not sure about this. In kernel/bpf/core.c, we have
ALU64_MOV_K:
DST = IMM;
CONT;
here DST is u64 and IMM is s32. IIUC, IMM needs to extend to s64 and then
convert to u64.
> section has "unsigned" by some instructions, but the "Arithmetic instructions"
> section has no such note about the MOV instruction, so added an example to
> make this more clear.
>
> {JLE, K, JMP} says it does "PC += offset if dst <= src" (where src is 'imm',
> and the comparison is unsigned). This was apparently ambiguous to some
> readers as to whether the comparison was "dst <= (u64)(u32)imm" or
> "dst <= (u64)(s64)imm", since the correct assumption would be the latter
> except that the MOV instruction doesn't follow that, so added an example
> to make this more clear.
>
> Signed-off-by: Dave Thaler <dthaler1968@googlemail.com>
> ---
> .../bpf/standardization/instruction-set.rst | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/bpf/standardization/instruction-set.rst b/Documentation/bpf/standardization/instruction-set.rst
> index 997560aba..f96ebb169 100644
> --- a/Documentation/bpf/standardization/instruction-set.rst
> +++ b/Documentation/bpf/standardization/instruction-set.rst
> @@ -378,13 +378,22 @@ etc. This specification requires that signed modulo use truncated division
>
> a % n = a - n * trunc(a / n)
>
> -The ``MOVSX`` instruction does a move operation with sign extension.
> +The ``MOV`` instruction does a move operation without sign extension, whereas
> +the ``MOVSX`` instruction does a move operation with sign extension.
> ``{MOVSX, X, ALU}`` :term:`sign extends<Sign Extend>` 8-bit and 16-bit operands into
> 32-bit operands, and zeroes the remaining upper 32 bits.
> ``{MOVSX, X, ALU64}`` :term:`sign extends<Sign Extend>` 8-bit, 16-bit, and 32-bit
> operands into 64-bit operands. Unlike other arithmetic instructions,
> ``MOVSX`` is only defined for register source operands (``X``).
>
> +``{MOV, K, ALU}`` means::
> +
> + dst = (u32) imm
> +
> +``{MOVSX, X, ALU}`` with 'offset' 32 means::
> +
> + dst = (s32) src
For {MOVSX, X, ALU}, offset 32 is not supported. The correct offset value
is 8 and 16. For example for offset 8, we have dst = (u32)(s8)src.
> +
> The ``NEG`` instruction is only defined when the source bit is clear
> (``K``).
>
> @@ -486,6 +495,10 @@ Example:
>
> where 's>=' indicates a signed '>=' comparison.
>
> +``{JLE, K, JMP}`` means::
> +
> + if dst <= (u64)(s64)imm goto +offset
> +
> ``{JA, K, JMP32}`` means::
>
> gotol +imm
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Bpf] Re: [PATCH bpf-next] bpf, docs: clarify sign extension of 64-bit use of 32-bit imm
2024-05-20 20:08 ` Yonghong Song
@ 2024-05-20 20:08 ` Yonghong Song
0 siblings, 0 replies; 4+ messages in thread
From: Yonghong Song @ 2024-05-20 20:08 UTC (permalink / raw)
To: Dave Thaler, bpf; +Cc: bpf, Dave Thaler
On 5/17/24 10:16 AM, Dave Thaler wrote:
> imm is defined as a 32-bit signed integer.
>
> {MOV, K, ALU64} says it does "dst = src" (where src is 'imm') but it does
> not sign extend, but instead does dst = (u32)src. The "Jump instructions"
I am not sure about this. In kernel/bpf/core.c, we have
ALU64_MOV_K:
DST = IMM;
CONT;
here DST is u64 and IMM is s32. IIUC, IMM needs to extend to s64 and then
convert to u64.
> section has "unsigned" by some instructions, but the "Arithmetic instructions"
> section has no such note about the MOV instruction, so added an example to
> make this more clear.
>
> {JLE, K, JMP} says it does "PC += offset if dst <= src" (where src is 'imm',
> and the comparison is unsigned). This was apparently ambiguous to some
> readers as to whether the comparison was "dst <= (u64)(u32)imm" or
> "dst <= (u64)(s64)imm", since the correct assumption would be the latter
> except that the MOV instruction doesn't follow that, so added an example
> to make this more clear.
>
> Signed-off-by: Dave Thaler <dthaler1968@googlemail.com>
> ---
> .../bpf/standardization/instruction-set.rst | 15 ++++++++++++++-
> 1 file changed, 14 insertions(+), 1 deletion(-)
>
> diff --git a/Documentation/bpf/standardization/instruction-set.rst b/Documentation/bpf/standardization/instruction-set.rst
> index 997560aba..f96ebb169 100644
> --- a/Documentation/bpf/standardization/instruction-set.rst
> +++ b/Documentation/bpf/standardization/instruction-set.rst
> @@ -378,13 +378,22 @@ etc. This specification requires that signed modulo use truncated division
>
> a % n = a - n * trunc(a / n)
>
> -The ``MOVSX`` instruction does a move operation with sign extension.
> +The ``MOV`` instruction does a move operation without sign extension, whereas
> +the ``MOVSX`` instruction does a move operation with sign extension.
> ``{MOVSX, X, ALU}`` :term:`sign extends<Sign Extend>` 8-bit and 16-bit operands into
> 32-bit operands, and zeroes the remaining upper 32 bits.
> ``{MOVSX, X, ALU64}`` :term:`sign extends<Sign Extend>` 8-bit, 16-bit, and 32-bit
> operands into 64-bit operands. Unlike other arithmetic instructions,
> ``MOVSX`` is only defined for register source operands (``X``).
>
> +``{MOV, K, ALU}`` means::
> +
> + dst = (u32) imm
> +
> +``{MOVSX, X, ALU}`` with 'offset' 32 means::
> +
> + dst = (s32) src
For {MOVSX, X, ALU}, offset 32 is not supported. The correct offset value
is 8 and 16. For example for offset 8, we have dst = (u32)(s8)src.
> +
> The ``NEG`` instruction is only defined when the source bit is clear
> (``K``).
>
> @@ -486,6 +495,10 @@ Example:
>
> where 's>=' indicates a signed '>=' comparison.
>
> +``{JLE, K, JMP}`` means::
> +
> + if dst <= (u64)(s64)imm goto +offset
> +
> ``{JA, K, JMP32}`` means::
>
> gotol +imm
--
Bpf mailing list -- bpf@ietf.org
To unsubscribe send an email to bpf-leave@ietf.org
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-05-20 20:08 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-17 16:16 [PATCH bpf-next] bpf, docs: clarify sign extension of 64-bit use of 32-bit imm Dave Thaler
2024-05-17 16:16 ` [Bpf] " Dave Thaler
2024-05-20 20:08 ` Yonghong Song
2024-05-20 20:08 ` [Bpf] " Yonghong Song
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).