From: Sergey Bronnikov via Tarantool-patches <tarantool-patches@dev.tarantool.org>
To: Sergey Kaplun <skaplun@tarantool.org>
Cc: tarantool-patches@dev.tarantool.org
Subject: Re: [Tarantool-patches] [PATCH luajit 2/3] DUALNUM: Fix narrowing of unary minus.
Date: Wed, 4 Mar 2026 10:37:49 +0300 [thread overview]
Message-ID: <4ec5bb78-26ca-4d2b-9d6f-d06c13a513c2@tarantool.org> (raw)
In-Reply-To: <6efe3fc943083c79b3f82b6246f0bd3cfa276d14.1772437706.git.skaplun@tarantool.org>
[-- Attachment #1: Type: text/plain, Size: 3439 bytes --]
Hi, Sergey,
thanks for the patch! See my comments.
Sergey
On 3/2/26 10:52, Sergey Kaplun wrote:
> From: Mike Pall <mike>
>
> Reported by Sergey Kaplun.
>
> (cherry picked from commit b1cd2f83b5d085bb71368b87c91a461be77d4364)
>
> `lj_opt_narrow_unm()` in the DUALNUM mode narrows doubles too
> optimistic, missing 0 check. In that case, the narrowing of 0 is
> incorrect. This leads to the assertion failure in `rec_check_slots()`
> for the string obtained from the corresponding number.
>
> This patch fixes it by restricting the check of the given TValue.
>
> Sergey Kaplun:
> * added the description and the test for the problem
>
> Part of tarantool/tarantool#12134
> ---
> src/lj_opt_narrow.c | 4 +-
> ...lj-1418-dualnum-narrowing-minus-0.test.lua | 49 +++++++++++++++++++
> 2 files changed, 51 insertions(+), 2 deletions(-)
> create mode 100644 test/tarantool-tests/lj-1418-dualnum-narrowing-minus-0.test.lua
>
> diff --git a/src/lj_opt_narrow.c b/src/lj_opt_narrow.c
> index 6b6f20d3..6e3e9533 100644
> --- a/src/lj_opt_narrow.c
> +++ b/src/lj_opt_narrow.c
> @@ -553,9 +553,9 @@ TRef lj_opt_narrow_unm(jit_State *J, TRef rc, TValue *vc)
> rc = conv_str_tonum(J, rc, vc);
> if (tref_isinteger(rc)) {
> uint32_t k = (uint32_t)numberVint(vc);
> - if ((LJ_DUALNUM || k != 0) && k != 0x80000000u) {
> + if ((tvisint(vc) || k != 0) && k != 0x80000000u) {
> TRef zero = lj_ir_kint(J, 0);
> - if (!LJ_DUALNUM)
> + if (!tvisint(vc))
> emitir(IRTGI(IR_NE), rc, zero);
> return emitir(IRTGI(IR_SUBOV), zero, rc);
> }
> diff --git a/test/tarantool-tests/lj-1418-dualnum-narrowing-minus-0.test.lua b/test/tarantool-tests/lj-1418-dualnum-narrowing-minus-0.test.lua
> new file mode 100644
> index 00000000..84f17953
> --- /dev/null
> +++ b/test/tarantool-tests/lj-1418-dualnum-narrowing-minus-0.test.lua
> @@ -0,0 +1,49 @@
> +local tap = require('tap')
> +
> +-- This test demonstrates LuaJIT's incorrect narrowing
> +-- optimization in the DUALNUM mode for 0.
> +-- See alsohttps://github.com/LuaJIT/LuaJIT/issues/1418.
> +
> +local test = tap.test('lj-1418-dualnum-narrowing-minus-0'):skipcond({
> + ['Test requires JIT enabled'] = not jit.status(),
> +})
> +
cannot reproduce an original bug with reverted fix.
CMake configuration: CFLAGS=-DDUALNUM cmake -S . -B build
-DCMAKE_BUILD_TYPE=Debug
> +test:plan(2)
> +
> +local tostring = tostring
> +
> +local function test_const_on_trace(x)
> + local zero = x % 1
> + local mzero = -zero
> + -- Bad IR slot with enabled optimizations.
> + local res = tostring(mzero)
> + return res
> +end
> +
> +local function test_non_const_on_trace(a, b)
> + local mb_zero = a % b
> + -- Too optimistic optimization without check for the 0 corner
> + -- case.
> + local mb_mzero = -mb_zero
> + local res = tostring(mb_mzero)
> + return res
> +end
> +
> +jit.opt.start('hotloop=1')
> +
> +-- Hot trace.
> +test_const_on_trace(1)
> +-- Compile trace.
> +test:is(test_const_on_trace(1), '-0', 'correct const value on trace')
> +
> +-- Reset hotcounts.
> +jit.opt.start('hotloop=1')
> +
> +-- Hot trace.
> +test_non_const_on_trace(2, 3)
> +-- Record trace, use non zero result value to record.
s/non zero/non-zero/
> +test_non_const_on_trace(2, 3)
> +-- Misbehaviour on trace with result zero value.
> +test:is(test_non_const_on_trace(2, 1), '-0', 'correct non-const value on trace')
> +
> +test:done(true)
[-- Attachment #2: Type: text/html, Size: 4265 bytes --]
next prev parent reply other threads:[~2026-03-04 7:37 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-02 7:52 [Tarantool-patches] [PATCH luajit 0/3] Narrowing unary minus dualnum Sergey Kaplun via Tarantool-patches
2026-03-02 7:52 ` [Tarantool-patches] [PATCH luajit 1/3] Add ffi.abi("dualnum") Sergey Kaplun via Tarantool-patches
2026-03-03 18:09 ` Sergey Bronnikov via Tarantool-patches
2026-03-02 7:52 ` [Tarantool-patches] [PATCH luajit 2/3] DUALNUM: Fix narrowing of unary minus Sergey Kaplun via Tarantool-patches
2026-03-04 7:37 ` Sergey Bronnikov via Tarantool-patches [this message]
2026-03-02 7:52 ` [Tarantool-patches] [PATCH luajit 3/3] DUALNUM: Improve/fix edge cases " Sergey Kaplun via Tarantool-patches
2026-03-04 9:27 ` Sergey Bronnikov via Tarantool-patches
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=4ec5bb78-26ca-4d2b-9d6f-d06c13a513c2@tarantool.org \
--to=tarantool-patches@dev.tarantool.org \
--cc=sergeyb@tarantool.org \
--cc=skaplun@tarantool.org \
--subject='Re: [Tarantool-patches] [PATCH luajit 2/3] DUALNUM: Fix narrowing of unary minus.' \
/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
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox