Re: [PING^2] [PATCH] [NFC] Mark locally used symbols as static.

2021-04-15 Thread Palmer Dabbelt
On Thu, 15 Apr 2021 10:27:42 PDT (-0700), tetra2...@gmail.com wrote: Hi all, This patch makes locally used symbols static to enable more compiler optimizations on them. Some of the symbols turned out to not be used at all so I marked them with ATTRIBUTE_UNUSED (as I wasn't sure if they were ok

Re: [PING^2] [PATCH] [NFC] Mark locally used symbols as static.

2021-04-15 Thread Philippe Mathieu-Daudé
Hi Yuri, On 4/15/21 7:27 PM, Yuri Gribov wrote: > Hi all, > > This patch makes locally used symbols static to enable more compiler > optimizations on them. Some of the symbols turned out to not be used > at all so I marked them with ATTRIBUTE_UNUSED (as I wasn't sure if > they were ok to

[PING^2] [PATCH] [NFC] Mark locally used symbols as static.

2021-04-15 Thread Yuri Gribov
Hi all, This patch makes locally used symbols static to enable more compiler optimizations on them. Some of the symbols turned out to not be used at all so I marked them with ATTRIBUTE_UNUSED (as I wasn't sure if they were ok to delete). The symbols have been identified with a pet project of

[PING] [PATCH] [NFC] Mark locally used symbols as static.

2021-03-30 Thread Yuri Gribov
Hi all, This patch makes locally used symbols static to enable more compiler optimizations on them. Some of the symbols turned out to not be used at all so I marked them with ATTRIBUTE_UNUSED (as I wasn't sure if they were ok to delete). The symbols have been identified with a pet project of

RE: [PATCH] [NFC] Mark locally used symbols as static.

2021-03-23 Thread Taylor Simpson
ini ; Cornelia > Huck ; Max Filippov ; Stefan > Hajnoczi > Subject: [PATCH] [NFC] Mark locally used symbols as static. > > Hi all, > > This patch makes locally used symbols static to enable more compiler > optimizations on them. Some of the symbols turned out to not be used &g

Re: [PATCH] [NFC] Mark locally used symbols as static.

2021-03-23 Thread Stefan Hajnoczi
On Mon, Mar 22, 2021 at 10:55:42PM +0300, Yuri Gribov wrote: > scripts/tracetool/format/c.py | 2 +- My Reviewed-by is specifically for this tracetool file. Stefan signature.asc Description: PGP signature

Re: [PATCH] [NFC] Mark locally used symbols as static.

2021-03-23 Thread Stefan Hajnoczi
On Mon, Mar 22, 2021 at 10:55:42PM +0300, Yuri Gribov wrote: > diff --git a/scripts/tracetool/format/c.py b/scripts/tracetool/format/c.py > index c390c18..7e89ba3 100644 > --- a/scripts/tracetool/format/c.py > +++ b/scripts/tracetool/format/c.py > @@ -49,7 +49,7 @@ def generate(events, backend,

Re: [PATCH] [NFC] Mark locally used symbols as static.

2021-03-22 Thread David Gibson
if > they were ok to delete). > > The symbols have been identified with a pet project of mine: > https://github.com/yugr/Localizer > > >From 07b4f05893b7037e68e5d7bdec5ba8e74e50 Mon Sep 17 00:00:00 2001 > From: Yury Gribov > Date: Sat, 20 Mar 2021 23:39:15 +0300

Re: [PATCH] [NFC] Mark locally used symbols as static.

2021-03-22 Thread Max Filippov
if > they were ok to delete). > > The symbols have been identified with a pet project of mine: > https://github.com/yugr/Localizer > > From 07b4f05893b7037e68e5d7bdec5ba8e74e50 Mon Sep 17 00:00:00 2001 > From: Yury Gribov > Date: Sat, 20 Mar 2021 23:39:15 +0300 > Sub

[PATCH] [NFC] Mark locally used symbols as static.

2021-03-22 Thread Yuri Gribov
of mine: https://github.com/yugr/Localizer >From 07b4f05893b7037e68e5d7bdec5ba8e74e50 Mon Sep 17 00:00:00 2001 From: Yury Gribov Date: Sat, 20 Mar 2021 23:39:15 +0300 Subject: [PATCH] [NFC] Mark locally used symbols as static. Signed-off-by: Yury Gribov --- disas/alph