From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.0 required=5.0 tests=SPF_HELO_PASS,SPF_PASS autolearn=ham autolearn_force=no version=3.4.6 Received: from 1wt.eu (wtarreau.pck.nerim.net [62.212.114.60]) by gnuweeb.org (Postfix) with ESMTP id 382417E2FC for ; Tue, 22 Mar 2022 13:41:14 +0000 (UTC) Received: (from willy@localhost) by pcw.home.local (8.15.2/8.15.2/Submit) id 22MDf0De011046; Tue, 22 Mar 2022 14:41:00 +0100 Date: Tue, 22 Mar 2022 14:41:00 +0100 From: Willy Tarreau To: David Laight Cc: "'Ammar Faizi'" , "Paul E. McKenney" , Alviro Iskandar Setiawan , Nugraha , Linux Kernel Mailing List , GNU/Weeb Mailing List , "x86@kernel.org" , "llvm@lists.linux.dev" Subject: Re: [RFC PATCH v2 3/8] tools/nolibc: i386: Implement syscall with 6 arguments Message-ID: <20220322134100.GH10306@1wt.eu> References: <20220322102115.186179-1-ammarfaizi2@gnuweeb.org> <20220322102115.186179-4-ammarfaizi2@gnuweeb.org> <8653f6784a9b4272a59a75a530663567@AcuMS.aculab.com> <20220322121338.GD10306@1wt.eu> <81569a1c-a6d3-ceb2-a1f1-f229a024d684@gnuweeb.org> <20220322133413.GG10306@1wt.eu> <58cb5455-d065-b508-b328-20b57c3a67a7@gnuweeb.org> <3b8984ecfbcd4c93aeb468d01728cd74@AcuMS.aculab.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3b8984ecfbcd4c93aeb468d01728cd74@AcuMS.aculab.com> User-Agent: Mutt/1.10.1 (2018-07-13) List-Id: On Tue, Mar 22, 2022 at 01:39:41PM +0000, David Laight wrote: > From: Ammar Faizi > > Sent: 22 March 2022 13:37 > > > > On 3/22/22 8:34 PM, Willy Tarreau wrote: > > >> I turned out GCC refuses to use "rm" if we compile without -fomit-frame-pointer > > >> (e.g. without optimization / -O0). So I will still use "m" here. > > > > > > OK that's fine. then you can probably simplify it like this: > > > > > > long _arg6 = (long)(arg6); /* Might be in memory */ \ > > > \ > > > asm volatile ( \ > > > "pushl %%ebp\n\t" \ > > > "movl %[_arg6], %%ebp\n\t" \ > > > "int $0x80\n\t" \ > > > "popl %%ebp\n\t" \ > > > : "=a"(_ret) \ > > > : "r"(_num), "r"(_arg1), "r"(_arg2), "r"(_arg3), \ > > > "r"(_arg4),"r"(_arg5), [_arg6]"m"(_arg6) \ > > > : "memory", "cc" \ > > > ); \ > > > > > > See ? no more push, no more addl, direct load from memory. > > > > Uggh... I crafted the same code like you suggested before, but then > > I realized it's buggy, it's buggy because %[_arg6] may live in N(%esp). > > > > When you pushl %ebp, the %esp changes, N(%esp) no longer points to the > > 6-th argument. > > Yep - that is why I wrote the 'push arg6'. Got it and you're right indeed, sorry for the noise :-) Willy