From: Maxim Kokryashkin via Tarantool-patches <tarantool-patches@dev.tarantool.org> To: tarantool-patches@dev.tarantool.org, imun@tarantool.org, skaplun@tarantool.org Subject: [Tarantool-patches] [PATCH luajit v4 0/7] misc: introduce sysprof Date: Wed, 13 Apr 2022 23:36:06 +0300 [thread overview] Message-ID: <cover.1649881981.git.m.kokryashkin@tarantool.org> (raw) Changes in v4: - Fixed comments as per review by Sergey Maxim Kokryashkin (4): memprof: move symtab to a separate module memprof: add profile common section sysprof: introduce Lua API tools: introduce parsers for sysprof Mikhail Shishatskiy (3): vm: save topframe info into global_State core: separate the profiling timer from lj_profile core: introduce lua and platform profiler .gitignore | 1 + CMakeLists.txt | 6 + src/CMakeLists.txt | 3 + src/Makefile.dep.original | 51 +- src/Makefile.original | 6 +- src/lib_misc.c | 263 ++++++++- src/lj_arch.h | 11 + src/lj_errmsg.h | 2 +- src/lj_mapi.c | 26 + src/lj_memprof.c | 82 +-- src/lj_memprof.h | 49 +- src/lj_obj.h | 1 + src/lj_profile.c | 176 +----- src/lj_profile_timer.c | 133 +++++ src/lj_profile_timer.h | 83 +++ src/lj_state.c | 7 + src/lj_symtab.c | 84 +++ src/lj_symtab.h | 65 +++ src/lj_sysprof.c | 530 ++++++++++++++++++ src/lj_sysprof.h | 93 +++ src/ljamalg.c | 2 + src/lmisclib.h | 95 ++++ src/vm_x64.dasc | 38 +- src/vm_x86.dasc | 41 +- test/tarantool-tests/CMakeLists.txt | 1 + .../misclib-sysprof-capi.test.lua | 52 ++ .../misclib-sysprof-capi/CMakeLists.txt | 1 + .../misclib-sysprof-capi/testsysprof.c | 272 +++++++++ .../misclib-sysprof-lapi.test.lua | 120 ++++ tools/CMakeLists.txt | 83 +++ tools/luajit-parse-sysprof.in | 6 + tools/sysprof.lua | 119 ++++ tools/sysprof/collapse.lua | 113 ++++ tools/sysprof/parse.lua | 188 +++++++ tools/utils/symtab.lua | 2 +- 35 files changed, 2446 insertions(+), 359 deletions(-) create mode 100644 src/lj_profile_timer.c create mode 100644 src/lj_profile_timer.h create mode 100644 src/lj_symtab.c create mode 100644 src/lj_symtab.h create mode 100644 src/lj_sysprof.c create mode 100644 src/lj_sysprof.h create mode 100644 test/tarantool-tests/misclib-sysprof-capi.test.lua create mode 100644 test/tarantool-tests/misclib-sysprof-capi/CMakeLists.txt create mode 100644 test/tarantool-tests/misclib-sysprof-capi/testsysprof.c create mode 100644 test/tarantool-tests/misclib-sysprof-lapi.test.lua create mode 100644 tools/luajit-parse-sysprof.in create mode 100644 tools/sysprof.lua create mode 100755 tools/sysprof/collapse.lua create mode 100755 tools/sysprof/parse.lua -- 2.35.1
next reply other threads:[~2022-04-13 20:36 UTC|newest] Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top 2022-04-13 20:36 Maxim Kokryashkin via Tarantool-patches [this message] 2022-04-13 20:36 ` [Tarantool-patches] [PATCH luajit v4 1/7] vm: save topframe info into global_State Maxim Kokryashkin via Tarantool-patches 2022-04-13 20:36 ` [Tarantool-patches] [PATCH luajit v4 2/7] core: separate the profiling timer from lj_profile Maxim Kokryashkin via Tarantool-patches 2022-04-13 20:36 ` [Tarantool-patches] [PATCH luajit v4 3/7] memprof: move symtab to a separate module Maxim Kokryashkin via Tarantool-patches 2022-04-13 20:36 ` [Tarantool-patches] [PATCH luajit v4 4/7] core: introduce lua and platform profiler Maxim Kokryashkin via Tarantool-patches 2022-04-13 20:36 ` [Tarantool-patches] [PATCH luajit v4 5/7] memprof: add profile common section Maxim Kokryashkin via Tarantool-patches 2022-04-13 20:36 ` [Tarantool-patches] [PATCH luajit v4 6/7] sysprof: introduce Lua API Maxim Kokryashkin via Tarantool-patches 2022-04-13 20:36 ` [Tarantool-patches] [PATCH luajit v4 7/7] tools: introduce parsers for sysprof Maxim Kokryashkin 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=cover.1649881981.git.m.kokryashkin@tarantool.org \ --to=tarantool-patches@dev.tarantool.org \ --cc=imun@tarantool.org \ --cc=max.kokryashkin@gmail.com \ --cc=skaplun@tarantool.org \ --subject='Re: [Tarantool-patches] [PATCH luajit v4 0/7] misc: introduce sysprof' \ /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