From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38876) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZkEYc-0002ys-7C for qemu-devel@nongnu.org; Thu, 08 Oct 2015 13:01:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZkEXd-0006KG-Ks for qemu-devel@nongnu.org; Thu, 08 Oct 2015 13:00:42 -0400 Received: from hall.aurel32.net ([2001:bc8:30d7:100::1]:53611) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZkEXd-0006BS-Ak for qemu-devel@nongnu.org; Thu, 08 Oct 2015 12:59:41 -0400 Date: Thu, 8 Oct 2015 18:12:42 +0200 From: Aurelien Jarno Message-ID: <20151008161242.GA7277@aurel32.net> References: <1443788657-14537-1-git-send-email-james.hogan@imgtec.com> <1443788657-14537-4-git-send-email-james.hogan@imgtec.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1443788657-14537-4-git-send-email-james.hogan@imgtec.com> Subject: Re: [Qemu-devel] [PATCH v3 3/6] tcg/mips: Add use_mips32r6_instructions definition List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: James Hogan Cc: Leon Alrae , qemu-devel@nongnu.org, Richard Henderson On 2015-10-02 13:24, James Hogan wrote: > Add definition use_mips32r6_instructions to the MIPS TCG backend which > is constant 1 when built for MIPS release 6. This will be used to decide > between pre-R6 and R6 instruction encodings. > > Signed-off-by: James Hogan > Reviewed-by: Richard Henderson > Cc: Aurelien Jarno > --- > tcg/mips/tcg-target.h | 7 +++++++ > 1 file changed, 7 insertions(+) Reviewed-by: Aurelien Jarno > diff --git a/tcg/mips/tcg-target.h b/tcg/mips/tcg-target.h > index f5ba52cacfe5..e579c10b9aaa 100644 > --- a/tcg/mips/tcg-target.h > +++ b/tcg/mips/tcg-target.h > @@ -96,6 +96,13 @@ extern bool use_mips32_instructions; > extern bool use_mips32r2_instructions; > #endif > > +/* MIPS32R6 instruction set detection */ > +#if defined(__mips_isa_rev) && (__mips_isa_rev >= 6) > +#define use_mips32r6_instructions 1 > +#else > +#define use_mips32r6_instructions 0 > +#endif > + > /* optional instructions */ > #define TCG_TARGET_HAS_div_i32 1 > #define TCG_TARGET_HAS_rem_i32 1 > -- > 2.4.9 > > -- Aurelien Jarno GPG: 4096R/1DDD8C9B aurelien@aurel32.net http://www.aurel32.net