public inbox for gcc@gcc.gnu.org
 help / color / mirror / Atom feed
From: "Martin Liška" <mliska@suse.cz>
To: Richard Biener <richard.guenther@gmail.com>
Cc: Jan Hubicka <hubicka@ucw.cz>,
	Thomas Koenig <tkoenig@netcologne.de>,
	Andrew Pinski <pinskia@gmail.com>, Jeff Law <law@redhat.com>,
	GCC Development <gcc@gcc.gnu.org>,
	GCC Patches <gcc-patches@gcc.gnu.org>
Subject: Re: [PATCH] Add .gnu.lto_.meta section.
Date: Tue, 25 Jun 2019 08:14:00 -0000	[thread overview]
Message-ID: <06d3a9f1-2d2a-8138-99d1-c6ad4fc4c020@suse.cz> (raw)
In-Reply-To: <CAFiYyc0hG0b6SJcj7YQ23D_17JAj4HD_bdBvU4FUrEm0T8EQ5w@mail.gmail.com>

On 6/24/19 8:05 PM, Richard Biener wrote:
> On Mon, Jun 24, 2019 at 3:31 PM Martin Liška <mliska@suse.cz> wrote:
>>
>> On 6/24/19 2:44 PM, Richard Biener wrote:
>>> On Mon, Jun 24, 2019 at 2:12 PM Martin Liška <mliska@suse.cz> wrote:
>>>>
>>>> On 6/24/19 2:02 PM, Richard Biener wrote:
>>>>> On Fri, Jun 21, 2019 at 4:01 PM Martin Liška <mliska@suse.cz> wrote:
>>>>>>
>>>>>> On 6/21/19 2:57 PM, Jan Hubicka wrote:
>>>>>>> This looks like good step (and please stream it in host independent
>>>>>>> way). I suppose all these issues can be done one-by-one.
>>>>>>
>>>>>> So there's a working patch for that. However one will see following errors
>>>>>> when using an older compiler or older LTO bytecode:
>>>>>>
>>>>>> $ gcc main9.o -flto
>>>>>> lto1: fatal error: bytecode stream in file ‘main9.o’ generated with LTO version -25480.4493 instead of the expected 9.0
>>>>>>
>>>>>> $ gcc main.o
>>>>>> lto1: internal compiler error: compressed stream: data error
>>>>>
>>>>> This is because of your change to bitfields or because with the old
>>>>> scheme the header with the
>>>>> version is compressed (is it?).
>>>>
>>>> Because currently also the header is compressed.
>>>
>>> That was it, yeah :/  Stupid decisions in the past.
>>>
>>> I guess we have to bite the bullet and do this kind of incompatible
>>> change, accepting
>>> the odd error message above.
>>>
>>>>> I'd simply avoid any layout changes
>>>>> in the version check range.
>>>>
>>>> Well, then we have to find out how to distinguish between compression algorithms.
>>>>
>>>>>
>>>>>> To be honest, I would prefer the new .gnu.lto_.meta section.
>>>>>> Richi why is that so ugly?
>>>>>
>>>>> Because it's a change in the wrong direction and doesn't solve the
>>>>> issue we already
>>>>> have (cannot determine if a section is compressed or not).
>>>>
>>>> That's not true, the .gnu.lto_.meta section will be always uncompressed and we can
>>>> also backport changes to older compiler that can read it and print a proper error
>>>> message about LTO bytecode version mismatch.
>>>
>>> We can always backport changes, yes, but I don't see why we have to.
>>
>> I'm fine with the backward compatibility break. But we should also consider lto-plugin.c
>> that is parsing following 2 sections:
>>
>>     91  #define LTO_SECTION_PREFIX      ".gnu.lto_.symtab"
>>     92  #define LTO_SECTION_PREFIX_LEN  (sizeof (LTO_SECTION_PREFIX) - 1)
>>     93  #define OFFLOAD_SECTION         ".gnu.offload_lto_.opts"
>>     94  #define OFFLOAD_SECTION_LEN     (sizeof (OFFLOAD_SECTION) - 1)
> 
> Yeah, I know.  And BFD and gold hard-coded those __gnu_lto_{v1,slim} symbols...

Yep, they do, 'nm' is also using that.

> 
>>>
>>>>> ELF section overhead
>>>>> is quite big if you have lots of small functions.
>>>>
>>>> My patch is actually shrinking space as I'm suggesting to add _one_ extra ELF section
>>>> and remove the section header from all other LTO sections. That will save space
>>>> for all function sections.
>>>
>>> But we want the header there to at least say if the section is
>>> compressed or not.
>>> The fact that we have so many ELF section means we have the redundant version
>>> info everywhere.
>>>
>>> We should have a single .gnu.lto_ section (and also get rid of those
>>> __gnu_lto_v1 and __gnu_lto_slim COMMON symbols - checking for
>>> existence of a symbol is more expensive compared to existence
>>> of a section).
>>
>> I like removal of the 2 aforementioned sections. To be honest I would recommend to
>> add a new .gnu.lto_.meta section.
> 
> Why .meta?  Why not just .gnu.lto_?

Works for me.

> 
>> We can use it instead of __gnu_lto_v1 and we can
>> have a flag there instead of __gnu_lto_slim. As a second step, I'm willing to concatenate all
>>
>>   LTO_section_function_body,
>>   LTO_section_static_initializer
>>
>> sections into a single one. That will require an index that will have to be created. I can discuss
>> that with Honza as he suggested using something smarter than function names.
> 
> I think the index belongs to symtab?
> 
> Let's properly do it if we want to change it.  Removing of
> __gnu_lto_v1/slim is going to be
> the most intrusive change btw. and orthogonal to the section changes.

I'm fine with a proper change. So do I understand that correctly that:
- we'll come up with .gnu.lto_ section that will be used by bfd, gold and nm
  to detect LTO objects
- for some time, we'll keep __gnu_lto_v1 and __gnu_lto_slim for backward
  compatibility with older binutils tool
- in couple of year, the legacy support will be removed

?

Martin

> 
> Richard.
> 
>>
>> Thoughts?
>> Martin
>>
>>>
>>> Richard.
>>>
>>>> Martin
>>>>
>>>>>
>>>>> Richard.
>>>>>
>>>>>>
>>>>>> Martin
>>>>
>>

  reply	other threads:[~2019-06-25  8:14 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-19  9:21 [RFC] zstd as a compression algorithm for LTO Martin Liška
2019-06-19 16:03 ` Jeff Law
2019-06-19 18:55   ` Richard Biener
2019-06-19 19:26     ` Andrew Pinski
2019-06-19 19:29       ` Jan Hubicka
2019-06-19 19:34         ` Andrew Pinski
2019-06-20  9:08           ` Martin Liška
2019-06-20 10:59             ` Thomas Koenig
2019-06-20 11:42               ` Martin Liška
2019-06-20 12:02                 ` Jan Hubicka
2019-06-21 10:20                   ` [PATCH] Add .gnu.lto_.meta section Martin Liška
2019-06-21 12:34                     ` Richard Biener
2019-06-21 12:49                       ` Martin Liška
2019-06-21 12:57                         ` Jan Hubicka
2019-06-21 14:01                           ` Martin Liška
2019-06-24 12:02                             ` Richard Biener
2019-06-24 12:12                               ` Martin Liška
2019-06-24 12:44                                 ` Richard Biener
2019-06-24 13:31                                   ` Martin Liška
2019-06-24 14:25                                     ` Iain Sandoe
2019-06-24 18:05                                     ` Richard Biener
2019-06-25  8:14                                       ` Martin Liška [this message]
2019-06-25 14:15                                         ` Richard Biener
2019-06-27 12:28                                           ` [PATCH] Add .gnu.lto_.lto section Martin Liška
2019-07-01 10:59                                             ` Martin Liška
2019-07-01 11:01                                               ` [PATCH 2/2] Add zstd support for LTO bytecode compression Martin Liška
2019-07-02 20:50                                                 ` Jeff Law
2019-07-02 20:49                                               ` [PATCH] Add .gnu.lto_.lto section Jeff Law
2019-06-20 12:12                 ` [RFC] zstd as a compression algorithm for LTO Thomas Koenig
2019-06-20 17:02             ` Joseph Myers
2019-06-20 10:46         ` Segher Boessenkool
2019-06-20 11:44           ` Martin Liška

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=06d3a9f1-2d2a-8138-99d1-c6ad4fc4c020@suse.cz \
    --to=mliska@suse.cz \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=gcc@gcc.gnu.org \
    --cc=hubicka@ucw.cz \
    --cc=law@redhat.com \
    --cc=pinskia@gmail.com \
    --cc=richard.guenther@gmail.com \
    --cc=tkoenig@netcologne.de \
    /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).