From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Bronnikov <sergeyb@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit] Check frame size limit before returning to a lower frame. Date: Wed, 13 Mar 2024 15:35:21 +0300 [thread overview] Message-ID: <ZfGdiXrtTqqXBPnD@root> (raw) In-Reply-To: <b4c0db73-dd6a-4567-bd64-6e7181f32a7f@tarantool.org> Sergey, Thanks for the review! Fixed your comment and force-pushed the branch. On 13.03.24, Sergey Bronnikov wrote: > Sergey, > > LGTM with minor comment below. > > On 3/13/24 12:37, Sergey Kaplun wrote: <snipped> > > =================================================================== > > diff --git a/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua b/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua > > index 91e2c603..468462d2 100644 > > --- a/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua > > +++ b/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua > > @@ -44,9 +44,11 @@ local LJ_MAX_JSLOTS = 250 > > -- `maxslot` (the first free slot) to 249. Hence, the JIT slots > > -- are overflowing. > > > > -local chunk = 'local uv = {key = 1}\n' > > -chunk = chunk .. 'return function()\n' > > -chunk = chunk .. 'local r = retf()\n' > > +local chunk = [[ > > +local uv = {key = 1} > > +return function() > > + local r = retf() > > + ]] > > here brackets are on a new line with indentation and below brackets on > the same line with code. > > looks inconsistently. I've used such indentation to create a human-readable chunk: | return function() | local r = retf() | uv.key, ..., uv_key = nil | end Instead of: | return function() | local r = retf() | uv.key, ..., uv_key = nil | end Since nobody wants to read this chunk as is, I've removed 2 spaces to avoid confusion. See the iterative patch below. Branch is force-pushed. =================================================================== diff --git a/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua b/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua index b454003e..cfaecbce 100644 --- a/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua +++ b/test/tarantool-tests/lj-1173-frame-limit-lower-frame.test.lua @@ -51,7 +51,7 @@ local chunk = [[ local uv = {key = 1} return function() local r = retf() - ]] +]] -- Each `UGET` occupies 1 slot, `KNIL` occupies the same amount. -- 1 slot is reserved (`r` variable), 1 pair is set outside the =================================================================== > > > > > -- Each `UGET` occupies 1 slot, `KNIL` occupies the same amount. > > -- 1 slot is reserved (`r` variable), 1 pair is set outside the > > @@ -56,8 +58,8 @@ chunk = chunk .. 'local r = retf()\n' > > for _ = 1, LJ_MAX_JSLOTS / 2 - 2 do > > chunk = chunk .. ('uv.key, ') > > end > > -chunk = chunk .. 'uv.key = nil\n' > > -chunk = chunk .. 'end\n' > > +chunk = chunk .. [[uv.key = nil > > +end]] > > > > local get_func = assert(loadstring(chunk)) > > local function_max_framesize = get_func() > > =================================================================== > > <snipped> -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2024-03-13 12:39 UTC|newest] Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top 2024-03-12 5:26 Sergey Kaplun via Tarantool-patches 2024-03-12 8:01 ` Sergey Bronnikov via Tarantool-patches 2024-03-13 9:37 ` Sergey Kaplun via Tarantool-patches 2024-03-13 11:33 ` Sergey Bronnikov via Tarantool-patches 2024-03-13 12:35 ` Sergey Kaplun via Tarantool-patches [this message] 2024-03-13 13:03 ` Sergey Bronnikov via Tarantool-patches 2024-03-12 12:21 ` Maxim Kokryashkin via Tarantool-patches 2024-03-13 8:35 ` Sergey Kaplun via Tarantool-patches 2024-03-13 8:50 ` Maxim Kokryashkin via Tarantool-patches 2024-03-20 15:07 ` Sergey Kaplun 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=ZfGdiXrtTqqXBPnD@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=sergeyb@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit] Check frame size limit before returning to a lower frame.' \ /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