From: Sergey Kaplun via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: Sergey Ostanevich <sergos@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: Re: [Tarantool-patches] [PATCH luajit] core: fix cdata decrementing Date: Thu, 4 Mar 2021 16:35:12 +0300 [thread overview] Message-ID: <20210304133512.GF6842@root> (raw) In-Reply-To: <790A703F-AB21-4C0C-8178-DC85E8336B2A@tarantool.org> Hi, Sergos! Thanks for the review! Added your tag: | Reviewed-by: Sergey Ostanevich <sergos@tarantool.org> On 02.03.21, Sergey Ostanevich wrote: > Hi! > > Thanks for the patch! > LGTM on the changes, still I can see a number of places you do not > collect information about GC objects being created, although > they all about function parsing/creating. > > Are we intentionally not looking into these? I've checked these chunks again: | $ grep lj_mem_newgco -R ../src | grep GC | grep -v -e ircall -e FASTCALL | ../src/lj_parse.c: pt = (GCproto *)lj_mem_newgco(L, (MSize)sizept); | ../src/lj_bcread.c: pt = (GCproto *)lj_mem_newgco(ls->L, (MSize)sizept); | ../src/lj_tab.c: t = (GCtab *)lj_mem_newgco(L, sizetabcolo(asize)); | ../src/lj_func.c: GCupval *uv = (GCupval *)lj_mem_newgco(L, sizeof(GCupval)); | ../src/lj_func.c: GCfunc *fn = (GCfunc *)lj_mem_newgco(L, sizeCfunc(nelems)); | ../src/lj_func.c: GCfunc *fn = (GCfunc *)lj_mem_newgco(L, sizeLfunc((MSize)pt->sizeuv)); | ../src/lj_cdata.h: cd = (GCcdata *)lj_mem_newgco(cts->L, sizeof(GCcdata) + sz); | ../src/lj_cdata.h: GCcdata *cd = (GCcdata *)lj_mem_newgco(L, sizeof(GCcdata) + sz); We count tabs and cdata correctly. As for prototypes, upvalues and functions counters -- they are not reported by design for now. > > regards, > Sergos > <snipped> -- Best regards, Sergey Kaplun
next prev parent reply other threads:[~2021-03-04 13:36 UTC|newest] Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top 2021-02-16 20:10 Sergey Kaplun via Tarantool-patches 2021-02-26 22:07 ` Igor Munkin via Tarantool-patches 2021-03-02 9:27 ` Sergey Ostanevich via Tarantool-patches 2021-03-04 13:35 ` Sergey Kaplun via Tarantool-patches [this message] 2021-03-04 13:28 ` Sergey Kaplun via Tarantool-patches 2021-03-04 22:04 ` Igor Munkin via Tarantool-patches 2021-03-04 22:04 ` 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=20210304133512.GF6842@root \ --to=tarantool-patches@dev.tarantool.org \ --cc=sergos@tarantool.org \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit] core: fix cdata decrementing' \ /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