public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug lto/97637] New: Compiling with LTO causes a bigger binary
@ 2020-10-30  7:34 christer.solskogen at gmail dot com
  2020-10-30  8:34 ` [Bug lto/97637] " rguenth at gcc dot gnu.org
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: christer.solskogen at gmail dot com @ 2020-10-30  7:34 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97637

            Bug ID: 97637
           Summary: Compiling with LTO causes a bigger binary
           Product: gcc
           Version: 10.2.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P3
         Component: lto
          Assignee: unassigned at gcc dot gnu.org
          Reporter: christer.solskogen at gmail dot com
                CC: marxin at gcc dot gnu.org
  Target Milestone: ---

I've been experimenting with amiberry
(https://github.com/midwan/amiberry/tree/dev) a Amiga emulator to compile it
with LTO. The emulator requires a ARM machine (Raspberry Pi will do)

The final binary are 0.4MB bigger when compiled with LTO. 
I've added "flto -march=native" to CFLAGS and "flto=$(shell nproc) $(CFLAGS)
-fuse-linker-plugin -fuse-ld=gold -Wl,--sort-common" to LDFLAGS.

I've tried with both gold and ld.bfd.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug lto/97637] Compiling with LTO causes a bigger binary
  2020-10-30  7:34 [Bug lto/97637] New: Compiling with LTO causes a bigger binary christer.solskogen at gmail dot com
@ 2020-10-30  8:34 ` rguenth at gcc dot gnu.org
  2020-10-30  9:13 ` christer.solskogen at gmail dot com
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: rguenth at gcc dot gnu.org @ 2020-10-30  8:34 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97637

Richard Biener <rguenth at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
     Ever confirmed|0                           |1
             Status|UNCONFIRMED                 |WAITING
   Last reconfirmed|                            |2020-10-30

--- Comment #1 from Richard Biener <rguenth at gcc dot gnu.org> ---
You can try lowering the inliner budget via --param inline-unit-growth which
defaults to 40 (a 40% increase due to inlining).  Likely only LTO exposes
inlining opportunities and -O2 is not -Os. (just guessing you use -O2)

The absolute number is also uninteresting - what's the relative change?

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug lto/97637] Compiling with LTO causes a bigger binary
  2020-10-30  7:34 [Bug lto/97637] New: Compiling with LTO causes a bigger binary christer.solskogen at gmail dot com
  2020-10-30  8:34 ` [Bug lto/97637] " rguenth at gcc dot gnu.org
@ 2020-10-30  9:13 ` christer.solskogen at gmail dot com
  2020-10-30  9:33 ` jakub at gcc dot gnu.org
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: christer.solskogen at gmail dot com @ 2020-10-30  9:13 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97637

--- Comment #2 from Christer Solskogen <christer.solskogen at gmail dot com> ---
You are correct. I've replaced Ofast with O2 (but it doesn't seem to matter
that much) - with the default inline-unit-growth the binary gets 5% bigger.

With inline-unit-growth=20 the binary gets 5%~ smaller. So that helped!

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug lto/97637] Compiling with LTO causes a bigger binary
  2020-10-30  7:34 [Bug lto/97637] New: Compiling with LTO causes a bigger binary christer.solskogen at gmail dot com
  2020-10-30  8:34 ` [Bug lto/97637] " rguenth at gcc dot gnu.org
  2020-10-30  9:13 ` christer.solskogen at gmail dot com
@ 2020-10-30  9:33 ` jakub at gcc dot gnu.org
  2020-10-30 10:03 ` christer.solskogen at gmail dot com
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2020-10-30  9:33 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97637

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #3 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Note, the main objectives of -O2 as well as -Ofast are code speed, code size is
only secondary (because making code much larger might make it also slower).
If you care primarily about code size, you should be using -Os.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug lto/97637] Compiling with LTO causes a bigger binary
  2020-10-30  7:34 [Bug lto/97637] New: Compiling with LTO causes a bigger binary christer.solskogen at gmail dot com
                   ` (2 preceding siblings ...)
  2020-10-30  9:33 ` jakub at gcc dot gnu.org
@ 2020-10-30 10:03 ` christer.solskogen at gmail dot com
  2020-10-30 10:06 ` jakub at gcc dot gnu.org
  2023-02-13  8:53 ` christer.solskogen at gmail dot com
  5 siblings, 0 replies; 7+ messages in thread
From: christer.solskogen at gmail dot com @ 2020-10-30 10:03 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97637

--- Comment #4 from Christer Solskogen <christer.solskogen at gmail dot com> ---
Okay, so LTO together with O2/O3 or Ofast will not help code size that much. 
I was worried that something was wrong with how GCC was configured or the
command line parameters I was using since the binary increased in size.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug lto/97637] Compiling with LTO causes a bigger binary
  2020-10-30  7:34 [Bug lto/97637] New: Compiling with LTO causes a bigger binary christer.solskogen at gmail dot com
                   ` (3 preceding siblings ...)
  2020-10-30 10:03 ` christer.solskogen at gmail dot com
@ 2020-10-30 10:06 ` jakub at gcc dot gnu.org
  2023-02-13  8:53 ` christer.solskogen at gmail dot com
  5 siblings, 0 replies; 7+ messages in thread
From: jakub at gcc dot gnu.org @ 2020-10-30 10:06 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97637

--- Comment #5 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Sometimes it may shrink the code a lot, it really depends on the code.  Just
that the question whether a particular transformation will make code faster or
not is the primary question to ask, unless compiling with -Os or unless a
particular code is e.g. through PGO determined to be cold.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* [Bug lto/97637] Compiling with LTO causes a bigger binary
  2020-10-30  7:34 [Bug lto/97637] New: Compiling with LTO causes a bigger binary christer.solskogen at gmail dot com
                   ` (4 preceding siblings ...)
  2020-10-30 10:06 ` jakub at gcc dot gnu.org
@ 2023-02-13  8:53 ` christer.solskogen at gmail dot com
  5 siblings, 0 replies; 7+ messages in thread
From: christer.solskogen at gmail dot com @ 2023-02-13  8:53 UTC (permalink / raw)
  To: gcc-bugs

https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97637

Christer Solskogen <christer.solskogen at gmail dot com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |INVALID
             Status|WAITING                     |RESOLVED

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2023-02-13  8:53 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-30  7:34 [Bug lto/97637] New: Compiling with LTO causes a bigger binary christer.solskogen at gmail dot com
2020-10-30  8:34 ` [Bug lto/97637] " rguenth at gcc dot gnu.org
2020-10-30  9:13 ` christer.solskogen at gmail dot com
2020-10-30  9:33 ` jakub at gcc dot gnu.org
2020-10-30 10:03 ` christer.solskogen at gmail dot com
2020-10-30 10:06 ` jakub at gcc dot gnu.org
2023-02-13  8:53 ` christer.solskogen at gmail dot com

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).