From: Sergey Kaplun <skaplun@tarantool.org> To: Igor Munkin <imun@tarantool.org>, Sergey Ostanevich <sergos@tarantool.org> Cc: tarantool-patches@dev.tarantool.org Subject: [Tarantool-patches] [PATCH v3 0/2] Implement LuaJIT platform metrics Date: Sun, 20 Sep 2020 20:12:47 +0300 [thread overview] Message-ID: <cover.1600615976.git.skaplun@tarantool.org> (raw) The series consists of 2 patches. The first one adds corresponding counters to LuaJIT internal structures. The second provides C and Lua API using this counters to collect metrics. Branch: https://github.com/tarantool/luajit/tree/skaplun/gh-5187-luajit-metrics Issue: https://github.com/tarantool/tarantool/issues/5187 Changes in v2: - Fixed naming and comments - Fixed padding in struct GCState - Dropped unnecessary initialisations inside lua_newstate() - Avoided flushing any of metrics after each call of luaM_metrics() Changes in v3: - Cleaned up mess in Makefile.dep - Fixed naming and comments - Fixed padding in struct GCState for 64-bit architectures - Fixed counting amount of JIT traces - Fixed objects counting at trace recording - Added counting of colors - Added C and Lua tests Sergey Kaplun (2): core: introduce various platform metrics misc: add C and Lua API for platform metrics Makefile | 2 +- src/Makefile | 5 +- src/Makefile.dep | 14 +- src/lib_init.c | 2 + src/lib_misc.c | 76 +++ src/lj_asm.c | 2 + src/lj_asm_arm.h | 19 + src/lj_asm_arm64.h | 19 + src/lj_asm_mips.h | 10 + src/lj_asm_ppc.h | 9 + src/lj_asm_x86.h | 10 + src/lj_cdata.c | 9 + src/lj_cdata.h | 2 + src/lj_gc.c | 99 +++- src/lj_gc.h | 33 +- src/lj_jit.h | 3 + src/lj_mapi.c | 65 +++ src/lj_obj.h | 31 +- src/lj_snap.c | 1 + src/lj_state.c | 7 +- src/lj_str.c | 5 + src/lj_tab.c | 2 + src/lj_trace.c | 6 +- src/lj_udata.c | 2 + src/ljamalg.c | 2 + src/lmisclib.h | 71 +++ src/luaconf.h | 1 + src/vm_arm.dasc | 6 + src/vm_arm64.dasc | 6 + src/vm_mips.dasc | 6 + src/vm_mips64.dasc | 6 + src/vm_ppc.dasc | 6 + src/vm_x64.dasc | 2 + src/vm_x86.dasc | 2 + test/clib-misclib-getmetrics.test.lua | 188 +++++++ test/clib-misclib-getmetrics/CMakeLists.txt | 1 + test/clib-misclib-getmetrics/testgetmetrics.c | 287 +++++++++++ test/lib-misc-getmetrics.test.lua | 459 ++++++++++++++++++ 38 files changed, 1433 insertions(+), 43 deletions(-) create mode 100644 src/lib_misc.c create mode 100644 src/lj_mapi.c create mode 100644 src/lmisclib.h create mode 100755 test/clib-misclib-getmetrics.test.lua create mode 100644 test/clib-misclib-getmetrics/CMakeLists.txt create mode 100644 test/clib-misclib-getmetrics/testgetmetrics.c create mode 100755 test/lib-misc-getmetrics.test.lua -- 2.28.0
next reply other threads:[~2020-09-20 17:13 UTC|newest] Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2020-09-20 17:12 Sergey Kaplun [this message] 2020-09-20 17:12 ` [Tarantool-patches] [PATCH v3 1/2] core: introduce various " Sergey Kaplun 2020-10-05 6:36 ` Sergey Kaplun 2020-09-20 17:12 ` [Tarantool-patches] [PATCH v3 2/2] misc: add C and Lua API for " Sergey Kaplun 2020-10-05 6:39 ` Sergey Kaplun 2020-09-20 17:13 ` [Tarantool-patches] [RFC v3] rfc: luajit metrics Sergey Kaplun 2020-09-21 15:18 ` Sergey Kaplun 2020-09-21 15:15 ` Sergey Kaplun
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=cover.1600615976.git.skaplun@tarantool.org \ --to=skaplun@tarantool.org \ --cc=imun@tarantool.org \ --cc=sergos@tarantool.org \ --cc=tarantool-patches@dev.tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH v3 0/2] Implement LuaJIT platform metrics' \ /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