unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
From: "H.J. Lu via Libc-alpha" <libc-alpha@sourceware.org>
To: Florian Weimer <fweimer@redhat.com>
Cc: "H.J. Lu via Libc-alpha" <libc-alpha@sourceware.org>
Subject: Re: [PATCH v2] Place ENTRY_POINT in .text.unlikely section [BZ #28153]
Date: Sat, 31 Jul 2021 10:09:38 -0700	[thread overview]
Message-ID: <CAMe9rOp9tWmu=goE0BooqYo6CG9SZ0xz8PVF_ymktyCAWEb3sw@mail.gmail.com> (raw)
In-Reply-To: <CAMe9rOrE-fcsnXsPP0L8zE_5n=EYHmX4xkKNR7CqxGHQxNkv1Q@mail.gmail.com>

On Sat, Jul 31, 2021 at 10:06 AM H.J. Lu <hjl.tools@gmail.com> wrote:
>
> On Sat, Jul 31, 2021 at 9:36 AM Florian Weimer <fweimer@redhat.com> wrote:
> >
> > * H. J. Lu via Libc-alpha:
> >
> > > diff --git a/sysdeps/aarch64/start.S b/sysdeps/aarch64/start.S
> > > index 417da8802b..e46e01ed0b 100644
> > > --- a/sysdeps/aarch64/start.S
> > > +++ b/sysdeps/aarch64/start.S
> > > @@ -42,7 +42,7 @@
> > >                                       NULL
> > >   */
> > >
> > > -     .text
> > > +     .section .text.unlikely,"ax",%progbits
> > >  ENTRY(_start)
> > >       /* Create an initial frame with 0 LR and FP */
> > >       cfi_undefined (x30)
> >
> > I don't think it's correct to place code that runs during every process
> > start into .text.unlikely.  Surely we can avoid that page fault.
> >
> > Can we fix the ENTRY_POINT assumption in profiling instead?
>
> We can do
>
> diff --git a/csu/gmon-start.c b/csu/gmon-start.c
> index b3432885b3..83322fd586 100644
> --- a/csu/gmon-start.c
> +++ b/csu/gmon-start.c
> @@ -48,7 +48,7 @@
>  #ifdef ENTRY_POINT_DECL
>  ENTRY_POINT_DECL(extern)
>  #else
> -extern char ENTRY_POINT[];
> +extern char entry_point[] asm (__SYMBOL_PREFIX "main");
>  #endif
>  extern char etext[];
>
> @@ -56,7 +56,7 @@ extern char etext[];
>  # ifdef ENTRY_POINT_DECL
>  #  define TEXT_START ENTRY_POINT
>  # else
> -#  define TEXT_START &ENTRY_POINT
> +#  define TEXT_START &entry_point
>  # endif
>  #endif
>
> But this may only work with BFD linker which places .text.startup
> section before .text section.

Another option is to place _start in .text.startup which leaves

    *(.text.unlikely .text.*_unlikely .text.unlikely.*)
    *(.text.exit .text.exit.*)

sections out of profiling records.

-- 
H.J.

  reply	other threads:[~2021-07-31 17:10 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-31 15:13 [PATCH v2] Place ENTRY_POINT in .text.unlikely section [BZ #28153] H.J. Lu via Libc-alpha
2021-07-31 16:36 ` Florian Weimer via Libc-alpha
2021-07-31 17:06   ` H.J. Lu via Libc-alpha
2021-07-31 17:09     ` H.J. Lu via Libc-alpha [this message]
2021-07-31 17:11     ` Florian Weimer via Libc-alpha
2021-07-31 17:34       ` Andreas Schwab
2021-07-31 17:43       ` [PATCH v3] Use __executable_start as the lowest address for profiling " H.J. Lu via Libc-alpha

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

  List information: https://www.gnu.org/software/libc/involved.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAMe9rOp9tWmu=goE0BooqYo6CG9SZ0xz8PVF_ymktyCAWEb3sw@mail.gmail.com' \
    --to=libc-alpha@sourceware.org \
    --cc=fweimer@redhat.com \
    --cc=hjl.tools@gmail.com \
    /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
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).