From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:60168) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPYgI-00064T-2R for qemu-devel@nongnu.org; Fri, 27 Sep 2013 10:06:14 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VPYg6-0002Zv-EZ for qemu-devel@nongnu.org; Fri, 27 Sep 2013 10:06:06 -0400 Received: from mail-pa0-x231.google.com ([2607:f8b0:400e:c03::231]:43347) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VPYg6-0002Zh-6r for qemu-devel@nongnu.org; Fri, 27 Sep 2013 10:05:54 -0400 Received: by mail-pa0-f49.google.com with SMTP id ld10so2805077pab.8 for ; Fri, 27 Sep 2013 07:05:52 -0700 (PDT) Sender: Richard Henderson Message-ID: <524590BC.3050004@twiddle.net> Date: Fri, 27 Sep 2013 07:05:48 -0700 From: Richard Henderson MIME-Version: 1.0 References: <1380242934-20953-1-git-send-email-agraf@suse.de> <1380242934-20953-4-git-send-email-agraf@suse.de> In-Reply-To: <1380242934-20953-4-git-send-email-agraf@suse.de> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 03/60] arm: Split VFP cmp from FPSCR setting List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Alexander Graf Cc: Peter Maydell , Michael Matz , qemu-devel@nongnu.org, C Fontana , Dirk Mueller , Laurent Desnogues , Christoffer Dall On 09/26/2013 05:47 PM, Alexander Graf wrote: > -DEF_HELPER_3(vfp_cmps, void, f32, f32, env) > -DEF_HELPER_3(vfp_cmpd, void, f64, f64, env) > -DEF_HELPER_3(vfp_cmpes, void, f32, f32, env) > -DEF_HELPER_3(vfp_cmped, void, f64, f64, env) > +DEF_HELPER_3(vfp_fpscr_cmps, void, f32, f32, env) > +DEF_HELPER_3(vfp_fpscr_cmpd, void, f64, f64, env) > +DEF_HELPER_3(vfp_fpscr_cmpes, void, f32, f32, env) > +DEF_HELPER_3(vfp_fpscr_cmped, void, f64, f64, env) > +DEF_HELPER_3(vfp_cmps, i32, f32, f32, env) > +DEF_HELPER_3(vfp_cmpd, i32, f64, f64, env) > +DEF_HELPER_3(vfp_cmpes, i32, f32, f32, env) > +DEF_HELPER_3(vfp_cmped, i32, f64, f64, env) While you're changing these, please change them to use DEF_HELPER_FLAGS_*. For the fpscr helpers, TCG_CALL_NO_RWG (since they have the side effect of setting the fpscr); for the new helpers, TCG_CALL_NO_RWG_SE since there are no side effects at all. r~