From: Vladimir Davydov <vdavydov.dev@gmail.com> To: Georgy Kirichenko <georgy@tarantool.org> Cc: tarantool-patches@freelists.org Subject: Re: [tarantool-patches] [PATCH 1/3] fiber: do not inline coro unwind function Date: Thu, 25 Oct 2018 12:28:29 +0300 [thread overview] Message-ID: <20181025092829.bk2zhtpyeweafal2@esperanza> (raw) In-Reply-To: <ac8500c7cd4c6a84de9bd1801fa7f97daa5fda75.1539189375.git.georgy@tarantool.org> On Wed, Oct 10, 2018 at 07:39:24PM +0300, Georgy Kirichenko wrote: > Call coro_unwcontext via function pointer to protect the > function from inlining. > --- > src/backtrace.cc | 7 ++++++- > 1 file changed, 6 insertions(+), 1 deletion(-) > > diff --git a/src/backtrace.cc b/src/backtrace.cc > index 2512bc045..66dcc0047 100644 > --- a/src/backtrace.cc > +++ b/src/backtrace.cc > @@ -363,12 +363,17 @@ __asm__ volatile( > #endif > } > > +typedef void (*coro_unwcontext_indirect_f)(unw_context_t *unw_context, > + struct coro_context *coro_ctx); > +/* Variable to process coro_unwcontext indirect call to avoid inlining. */ > +static volatile coro_unwcontext_indirect_f coro_unwcontext_indirect = coro_unwcontext; > + Why must not it be inlined? I think it deserves an explanation in the comment. Also, may be we'd better use NOINLINE attribute instead of function pointer? > void > backtrace_foreach(backtrace_cb cb, coro_context *coro_ctx, void *cb_ctx) > { > unw_cursor_t unw_cur; > unw_context_t unw_ctx; > - coro_unwcontext(&unw_ctx, coro_ctx); > + coro_unwcontext_indirect(&unw_ctx, coro_ctx); > unw_init_local(&unw_cur, &unw_ctx); > int frame_no = 0; > unw_word_t sp = 0, old_sp = 0, ip, offset;
next prev parent reply other threads:[~2018-10-25 9:28 UTC|newest] Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top 2018-10-10 16:39 [tarantool-patches] [PATCH v2 0/3] Dump lua frames for a fiber traceback Georgy Kirichenko 2018-10-10 16:39 ` [tarantool-patches] [PATCH 1/3] fiber: do not inline coro unwind function Georgy Kirichenko 2018-10-25 9:28 ` Vladimir Davydov [this message] 2018-10-10 16:39 ` [tarantool-patches] [PATCH 2/3] Proper unwind for currently executing fiber Georgy Kirichenko 2018-10-10 16:39 ` [tarantool-patches] [PATCH 3/3] Show names of Lua functions in backtraces Georgy Kirichenko
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=20181025092829.bk2zhtpyeweafal2@esperanza \ --to=vdavydov.dev@gmail.com \ --cc=georgy@tarantool.org \ --cc=tarantool-patches@freelists.org \ --subject='Re: [tarantool-patches] [PATCH 1/3] fiber: do not inline coro unwind function' \ /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