From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57181) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wrl2z-0002aE-PY for qemu-devel@nongnu.org; Tue, 03 Jun 2014 05:30:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wrl2t-0001lU-E5 for qemu-devel@nongnu.org; Tue, 03 Jun 2014 05:30:21 -0400 Received: from mailapp01.imgtec.com ([195.59.15.196]:61794) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wrl2t-0001ky-8p for qemu-devel@nongnu.org; Tue, 03 Jun 2014 05:30:15 -0400 Message-ID: <538D9589.1080609@imgtec.com> Date: Tue, 3 Jun 2014 10:29:45 +0100 From: Leon Alrae MIME-Version: 1.0 References: <1401461279-59617-1-git-send-email-leon.alrae@imgtec.com> <1401461279-59617-14-git-send-email-leon.alrae@imgtec.com> <20140602191612.GA4278@ohm.rr44.fr> In-Reply-To: <20140602191612.GA4278@ohm.rr44.fr> Content-Type: text/plain; charset="ISO-8859-15" Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 13/21] target-mips: add Compact Branches List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Aurelien Jarno Cc: yongbok.kim@imgtec.com, cristian.cuna@imgtec.com, qemu-devel@nongnu.org On 02/06/14 20:16, Aurelien Jarno wrote: >> - case OPC_DADDI: >> + case OPC_DADDI: /* OPC_BNVC, OPC_BNEZALC, OPC_BNEC */ >> + if (ctx->insn_flags & ISA_MIPS32R6) { >> + /* OPC_BNVC, OPC_BNEZALC, OPC_BNEC */ >> + gen_compute_compact_branch(ctx, op, rs, rt, imm << 2); >> + } else { >> + /* OPC_DADDI */ >> + check_insn(ctx, ISA_MIPS3); >> + check_mips_64(ctx); >> + gen_arith_imm(ctx, op, rt, rs, imm); >> + } >> + break; >> case OPC_DADDIU: >> check_insn(ctx, ISA_MIPS3); >> check_mips_64(ctx); >> gen_arith_imm(ctx, op, rt, rs, imm); >> break; >> +#else >> + case OPC_BNVC: /* OPC_BNEZALC, OPC_BNEC */ >> + if (ctx->insn_flags & ISA_MIPS32R6) { >> + gen_compute_compact_branch(ctx, op, rs, rt, imm << 2); >> + } else { >> + MIPS_INVAL("major opcode"); >> + generate_exception(ctx, EXCP_RI); >> + } >> + break; > > Why is that introduced only in the MIPS32 case, but not in the MIPS64 > case. Do you mean BNVC, BNEZALC and BNEC instructions? They are introduced in MIPS64 as well, you'll find them in OPC_DADDI case. OPC_DADDI was removed in R6 and its encoding has been reused for those instructions. There's quite a number of good findings. Thanks for the comments and suggestions. Leon