Tarantool development patches archive
 help / color / mirror / Atom feed
From: sergos 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 1/2] Fix tonumber("-0").
Date: Mon, 27 Jun 2022 23:29:00 +0300	[thread overview]
Message-ID: <E6A67DAF-F573-4FF3-ADEC-1DDD09C6CF53@tarantool.org> (raw)
In-Reply-To: <d5ffce0cfe19d9af66d07da94cd4f70379b6b60b.1643199076.git.skaplun@tarantool.org>

Hi!

Thanks for the patch, LGTM.

Sergos

> On 26 Jan 2022, at 15:19, Sergey Kaplun <skaplun@tarantool.org> wrote:
> 
> From: Mike Pall <mike>
> 
> Reported by bluecheetah001.
> 
> (cherry picked from 45a7e5073ce0a59465fef0b80bb08bd4e76b7979)
> 
> Common case for scanning a string containing a number is a string with a
> decimal number. For this case, a decimal number first casts to int32_t
> and later to double (lua_Number) if necessary. Information about sign of
> 0 is lost during the cast to int32_t. So resulting TValue contains `0.`
> instead of `-0.`.
> 
> This patch removes cast to int32_t for the case when resulting TValue
> contains double value.
> 
> Sergey Kaplun:
> * added the description and the test for the problem
> 
> Part of tarantool/tarantool#6548
> ---
> src/lj_strscan.c                              |  5 ++---
> .../lj-528-tonumber-0.test.lua                | 19 +++++++++++++++++++
> 2 files changed, 21 insertions(+), 3 deletions(-)
> create mode 100644 test/tarantool-tests/lj-528-tonumber-0.test.lua
> 
> diff --git a/src/lj_strscan.c b/src/lj_strscan.c
> index 08f41f19..4e4ef6d3 100644
> --- a/src/lj_strscan.c
> +++ b/src/lj_strscan.c
> @@ -495,12 +495,11 @@ StrScanFmt lj_strscan_scan(const uint8_t *p, MSize len, TValue *o,
>     /* Fast path for decimal 32 bit integers. */
>     if (fmt == STRSCAN_INT && base == 10 &&
> 	(dig < 10 || (dig == 10 && *sp <= '2' && x < 0x80000000u+neg))) {
> -      int32_t y = neg ? -(int32_t)x : (int32_t)x;
>       if ((opt & STRSCAN_OPT_TONUM)) {
> -	o->n = (double)y;
> +	o->n = neg ? -(double)x : (double)x;
> 	return STRSCAN_NUM;
>       } else {
> -	o->i = y;
> +	o->i = neg ? -(int32_t)x : (int32_t)x;
> 	return STRSCAN_INT;
>       }
>     }
> diff --git a/test/tarantool-tests/lj-528-tonumber-0.test.lua b/test/tarantool-tests/lj-528-tonumber-0.test.lua
> new file mode 100644
> index 00000000..03ba2aff
> --- /dev/null
> +++ b/test/tarantool-tests/lj-528-tonumber-0.test.lua
> @@ -0,0 +1,19 @@
> +local tap = require('tap')
> +
> +-- Test disabled for DUALNUM mode default for some arches.
> +-- See also https://github.com/LuaJIT/LuaJIT/pull/787.
> +require("utils").skipcond(
> +  jit.arch ~= "x86" and jit.arch ~= "x64",
> +  jit.arch.." in DUALNUM mode is clumsy for now"
> +)
> +
> +-- Test file to demonstrate LuaJIT `tonumber('-0')` incorrect
> +-- behaviour.
> +-- See also https://github.com/LuaJIT/LuaJIT/issues/528.
> +local test = tap.test('lj-528-tonumber-0')
> +test:plan(1)
> +
> +-- As numbers `-0 == 0`, so convert it back to string.
> +test:ok(tostring(tonumber('-0')) == '-0', 'correct "-0" string parsing')
> +
> +os.exit(test:check() and 0 or 1)
> -- 
> 2.34.1
> 


  parent reply	other threads:[~2022-06-27 20:29 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-26 12:19 [Tarantool-patches] [PATCH luajit 0/2] Fix tonumber("-0") inconsistencies Sergey Kaplun via Tarantool-patches
2022-01-26 12:19 ` [Tarantool-patches] [PATCH luajit 1/2] Fix tonumber("-0") Sergey Kaplun via Tarantool-patches
2022-06-27 13:47   ` Igor Munkin via Tarantool-patches
2022-06-27 20:29   ` sergos via Tarantool-patches [this message]
2022-01-26 12:19 ` [Tarantool-patches] [PATCH luajit 2/2] Fix tonumber("-0") in dual-number mode Sergey Kaplun via Tarantool-patches
2022-01-27  9:50   ` Sergey Kaplun via Tarantool-patches
2022-06-27 13:48   ` Igor Munkin via Tarantool-patches
2022-06-27 15:51   ` sergos via Tarantool-patches
2022-06-30 12:09 ` [Tarantool-patches] [PATCH luajit 0/2] Fix tonumber("-0") inconsistencies Igor Munkin 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=E6A67DAF-F573-4FF3-ADEC-1DDD09C6CF53@tarantool.org \
    --to=tarantool-patches@dev.tarantool.org \
    --cc=sergos@tarantool.org \
    --cc=skaplun@tarantool.org \
    --subject='Re: [Tarantool-patches] [PATCH luajit 1/2] Fix tonumber("-0").' \
    /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