lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Mon, 20 Apr 2015 14:28:16 +0200
From:	Rasmus Villemoes <linux@...musvillemoes.dk>
To:	Thomas Gleixner <tglx@...utronix.de>,
	Ingo Molnar <mingo@...hat.com>,
	"H. Peter Anvin" <hpa@...or.com>, x86@...nel.org
Cc:	Rasmus Villemoes <linux@...musvillemoes.dk>,
	linux-kernel@...r.kernel.org
Subject: [PATCH] x86_64: use -mskip-rax-setup when available

gcc 5 supports the option -mskip-rax-setup to avoid emitting the
two-byte instruction xor %eax,%eax before a vararg function
call. Clearing %eax is redundant in the kernel, since no callee
expects any floating point arguments, and hence never use the incoming
value of %eax for anything.

For a defconfig kernel, the .text saving is around 26 kB:

$ size /tmp/vmlinux.{old,new}
   text    data     bss     dec     hex filename
12221850        1735352 1077248 15034450         e56852 /tmp/vmlinux.old
12195955        1735352 1077248 15008555         e5032b /tmp/vmlinux.new

Signed-off-by: Rasmus Villemoes <linux@...musvillemoes.dk>
---

Nothing seems to have happened on the kernel side since H.J. Lu
implemented this in December.  Since gcc 5 is officially released
soon, I think it would be nice if this could soak in -next until the
next merge window.

 arch/x86/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/arch/x86/Makefile b/arch/x86/Makefile
index 2fda005bb334..00bc42c4cbd1 100644
--- a/arch/x86/Makefile
+++ b/arch/x86/Makefile
@@ -81,6 +81,8 @@ else
         KBUILD_CFLAGS += $(call cc-option,-mno-80387)
         KBUILD_CFLAGS += $(call cc-option,-mno-fp-ret-in-387)
 
+        KBUILD_CFLAGS += $(call cc-option,-mskip-rax-setup)
+
 	# Use -mpreferred-stack-boundary=3 if supported.
 	KBUILD_CFLAGS += $(call cc-option,-mpreferred-stack-boundary=3)
 
-- 
2.1.3

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists