Gmane
From: Andrew Morton <akpm <at> osdl.org>
Subject: Re: [patch 00/2] improve .text size on gcc 4.0 and newer compilers
Newsgroups: gmane.linux.kernel
Date: 2005-12-29 04:11:50 GMT (3 years, 26 weeks, 5 days, 20 hours and 28 minutes ago)
Ingo Molnar <mingo <at> elte.hu> wrote:
>
> I think gcc should arguably not be forced to inline things when doing 
> -Os, and it's also expected to mess up much less than when optimizing 
> for speed. So maybe forced inlining should be dependent on 
> !CONFIG_CC_OPTIMIZE_FOR_SIZE?

When it comes to inlining I just don't trust gcc as far as I can spit it. 
We're putting the kernel at the mercy of future random brainfarts and bugs
from the gcc guys.  It would be better and safer IMO to continue to force
`inline' to have strict and sane semamtics, and to simply be vigilant about
our use of it.

IOW: I'd prefer that we be the ones who specify which functions are going
to be inlined and which ones are not.

If no-forced-inlining makes the kernel smaller then we probably have (yet
more) incorrect inlining.  We should hunt those down and fix them.  We did
quite a lot of this in 2.5.x/2.6.early.  Didn't someone have a script which
would identify which functions are a candidate for uninlining?