Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752880AbbBXT4u (ORCPT ); Tue, 24 Feb 2015 14:56:50 -0500 Received: from mail.skyhub.de ([78.46.96.112]:45130 "EHLO mail.skyhub.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751973AbbBXT4s (ORCPT ); Tue, 24 Feb 2015 14:56:48 -0500 Date: Tue, 24 Feb 2015 20:58:01 +0100 From: Borislav Petkov To: Denys Vlasenko Cc: Andy Lutomirski , Linus Torvalds , Steven Rostedt , Ingo Molnar , "H. Peter Anvin" , Oleg Nesterov , Frederic Weisbecker , Alexei Starovoitov , Will Drewry , Kees Cook , x86@kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH 1/4] x86: entry.S: tidy up several suboptimal insns Message-ID: <20150224195801.GM3420@pd.tnic> References: <1424803895-4420-1-git-send-email-dvlasenk@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <1424803895-4420-1-git-send-email-dvlasenk@redhat.com> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1331 Lines: 43 On Tue, Feb 24, 2015 at 07:51:32PM +0100, Denys Vlasenko wrote: > In all three 32-bit entry points, %eax is zero-extended to %rax. > It is safe to do 32-bit compare when checking that syscall# > is not too large. > > The last instance of "mysterious" SS+8 constant is replaced by SIZEOF_PTREGS. > > The $AUDIT_ARCH_X86_64 parameter to syscall_trace_enter_phase1/2 > is a 32-bit constant, loading it with 64-bit MOV produces 10-byte insn > instead of 5-byte one. > > After TEST insn, JE anctually means "jump of zero", > let's use JZ mnemonic instead. Actually, JE == LZ as that's the same opcode for testing ZF=1. And I have to object: testl $3,CS(%rsp) je retint_kernel is much more understandable than testl $3,CS(%rsp) jz retint_kernel It basically says are $3 and CS(%rsp) equal. JZ, on the other hand, not so clear: the TEST ANDed the two operands and set flags accordingly, so JZ is testing the ZF. This means, you actually know what TEST does and you haven't forgotten. -- Regards/Gruss, Boris. ECO tip #101: Trim your mails when you reply. -- -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/