* Re: [PATCH] Built kernel without -O2 option [not found] ` <20101129081619.GD5218@cr0.nay.redhat.com> @ 2010-11-29 9:44 ` Christian Borntraeger 2010-11-29 11:12 ` Segher Boessenkool 2010-12-01 12:18 ` Hui Zhu 0 siblings, 2 replies; 5+ messages in thread From: Christian Borntraeger @ 2010-11-29 9:44 UTC (permalink / raw) To: Américo Wang; +Cc: Hui Zhu, linux-kernel, gdb, hellogcc, linux-kbuild Am 29.11.2010 09:16, schrieb Américo Wang: > On Mon, Nov 29, 2010 at 11:56:15AM +0800, Hui Zhu wrote: >> Hi, >> >> Now, there are a lot of ways to debug the Linux kernel with GDB, like >> qemu, kgtp or kgdb and so on. >> But the developer more like add a printk. It have a lot of reason, a big one is: >> (gdb) p ret >> $3 = <value optimized out> >> And the code execution order is not right. >> >> This is becuase the Kernel is bult with gcc -O2. Gcc will not >> generate enough debug message with file with -O2. >> So GDB cannot work very well with Linux kernel. >> >> So I make a patch that add a option in "Kernel hacking" called "Close >> GCC optimization". It will make kernel be built without -O2. >> >> I built and use it in i386 and x86_64. I will try to make it OK in other arch. >> > > The problem is that some functions _have to_ be inlined and gcc without -O2 > doesn't inline them. Have check all the cases? I doubt. In essence -O2 just tells gcc to activate a list of optimizations gcc -Q -O2 --help=optimizers tells you what. So what about making this patch much smaller by explicitely using the optimizations that are absolutely necessary? e.g: -finline-small-functions -finline-functions-called-once (what else do we need?) We might even be able to collapse this with the optimize for size option, by providing a Kconfig entry that allows to choose between -O0 -finline-small-functions -finline-functions-called-once -O1 -finline-small-functions -finline-functions-called-once -Os -O2 -O3 Christian ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Built kernel without -O2 option 2010-11-29 9:44 ` [PATCH] Built kernel without -O2 option Christian Borntraeger @ 2010-11-29 11:12 ` Segher Boessenkool 2010-11-29 11:17 ` Christian Borntraeger 2010-12-01 12:18 ` Hui Zhu 1 sibling, 1 reply; 5+ messages in thread From: Segher Boessenkool @ 2010-11-29 11:12 UTC (permalink / raw) To: Christian Borntraeger Cc: Américo Wang, Hui Zhu, linux-kernel, gdb, hellogcc, linux-kbuild > In essence -O2 just tells gcc to activate a list of optimizations > gcc -Q -O2 --help=optimizers > tells you what. Not quite; see http://gcc.gnu.org/wiki/FAQ#optimization-options . Segher ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Built kernel without -O2 option 2010-11-29 11:12 ` Segher Boessenkool @ 2010-11-29 11:17 ` Christian Borntraeger 2010-11-29 11:57 ` Nicholas Mc Guire 0 siblings, 1 reply; 5+ messages in thread From: Christian Borntraeger @ 2010-11-29 11:17 UTC (permalink / raw) To: Segher Boessenkool Cc: Américo Wang, Hui Zhu, linux-kernel, gdb, hellogcc, linux-kbuild Am 29.11.2010 12:12, schrieb Segher Boessenkool: >> In essence -O2 just tells gcc to activate a list of optimizations >> gcc -Q -O2 --help=optimizers >> tells you what. > > Not quite; see http://gcc.gnu.org/wiki/FAQ#optimization-options . > Erm...right. Thank you. ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Built kernel without -O2 option 2010-11-29 11:17 ` Christian Borntraeger @ 2010-11-29 11:57 ` Nicholas Mc Guire 0 siblings, 0 replies; 5+ messages in thread From: Nicholas Mc Guire @ 2010-11-29 11:57 UTC (permalink / raw) To: Christian Borntraeger Cc: Segher Boessenkool, Am?rico Wang, Hui Zhu, linux-kernel, gdb, hellogcc, linux-kbuild On Mon, 29 Nov 2010, Christian Borntraeger wrote: > Am 29.11.2010 12:12, schrieb Segher Boessenkool: > >> In essence -O2 just tells gcc to activate a list of optimizations > >> gcc -Q -O2 --help=optimizers I think for completness you would need to pass gcc -Wextra -Q -O2 --help=optimizers or you could miss some options > >> tells you what. > > > > Not quite; see http://gcc.gnu.org/wiki/FAQ#optimization-options . > > > > Erm...right. Thank you. well I guess you always could explicidly turn off all optioins with -fnoWHATEVER you want to disable and thus remove all unwanted flags - admitedly a bit painfull though. hofrat ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Built kernel without -O2 option 2010-11-29 9:44 ` [PATCH] Built kernel without -O2 option Christian Borntraeger 2010-11-29 11:12 ` Segher Boessenkool @ 2010-12-01 12:18 ` Hui Zhu 1 sibling, 0 replies; 5+ messages in thread From: Hui Zhu @ 2010-12-01 12:18 UTC (permalink / raw) To: Christian Borntraeger Cc: Américo Wang, linux-kernel, gdb, hellogcc, linux-kbuild On Mon, Nov 29, 2010 at 17:44, Christian Borntraeger <borntraeger@de.ibm.com> wrote: > Am 29.11.2010 09:16, schrieb Américo Wang: >> On Mon, Nov 29, 2010 at 11:56:15AM +0800, Hui Zhu wrote: >>> Hi, >>> >>> Now, there are a lot of ways to debug the Linux kernel with GDB, like >>> qemu, kgtp or kgdb and so on. >>> But the developer more like add a printk. It have a lot of reason, a big one is: >>> (gdb) p ret >>> $3 = <value optimized out> >>> And the code execution order is not right. >>> >>> This is becuase the Kernel is bult with gcc -O2. Gcc will not >>> generate enough debug message with file with -O2. >>> So GDB cannot work very well with Linux kernel. >>> >>> So I make a patch that add a option in "Kernel hacking" called "Close >>> GCC optimization". It will make kernel be built without -O2. >>> >>> I built and use it in i386 and x86_64. I will try to make it OK in other arch. >>> >> >> The problem is that some functions _have to_ be inlined and gcc without -O2 >> doesn't inline them. Have check all the cases? I doubt. > > In essence -O2 just tells gcc to activate a list of optimizations > gcc -Q -O2 --help=optimizers > tells you what. > > So what about making this patch much smaller by explicitely using the optimizations > that are absolutely necessary? > e.g: > -finline-small-functions -finline-functions-called-once > (what else do we need?) > > We might even be able to collapse this with the optimize for size option, > by providing a Kconfig entry that allows to choose between > > -O0 -finline-small-functions -finline-functions-called-once > -O1 -finline-small-functions -finline-functions-called-once > -Os > -O2 > -O3 > > Christian > Hi Christian. If we can build without any optimization options just set some file to O2. I think keep it it will better than add some optimization options to all files, right? But make for this file that I add O2 to them, I can change them to to some others options like "-O0 -finline-small-functions -finline-functions-called-once". Thanks, Hui ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2010-12-01 12:18 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <AANLkTimewZ4QhxzL2vOYYV85pegy8Fu6Rb4XUAPqGUXS@mail.gmail.com>
[not found] ` <20101129081619.GD5218@cr0.nay.redhat.com>
2010-11-29 9:44 ` [PATCH] Built kernel without -O2 option Christian Borntraeger
2010-11-29 11:12 ` Segher Boessenkool
2010-11-29 11:17 ` Christian Borntraeger
2010-11-29 11:57 ` Nicholas Mc Guire
2010-12-01 12:18 ` Hui Zhu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox