]> rtime.felk.cvut.cz Git - linux-imx.git/commit
powerpc: Avoid load of static chain register when calling nested functions through...
authorAnton Blanchard <anton@samba.org>
Wed, 12 Dec 2012 14:43:12 +0000 (14:43 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Thu, 10 Jan 2013 06:01:27 +0000 (17:01 +1100)
commit98679fb0927cee2084caddc5277326f18642a58b
tree497bd3575f1fdc07257e0012b80a688ab96797e6
parent0b9fd94a1cc814a07f1ce7f439b7ab718228b7c7
powerpc: Avoid load of static chain register when calling nested functions through a pointer on 64bit

The ppc64 ABI has a static chain register (r11) which is only used
when calling nested functions through a pointer. Considering that
we take a dim view of nested functions in the kernel, we have a lot
of unnecessary overhead here.

gcc 4.7 has an option to disable loading of r11 so lets use it.

If hell freezes over and hipsters manage to litter the kernel
with nested functions, gcc will give us an error message and
won't simply compile bad code:

    You cannot take the address of a nested function if you use
    the -mno-pointers-to-nested-functions option.

Furthermore our kernel module trampolines don't setup the static
chain register so adding this option and forcing gcc to error out
makes even more sense.

Signed-off-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
arch/powerpc/Makefile