From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59211) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEIGC-0006c0-Eg for qemu-devel@nongnu.org; Thu, 22 Jan 2015 08:57:25 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1YEIG8-0006DS-E8 for qemu-devel@nongnu.org; Thu, 22 Jan 2015 08:57:24 -0500 Received: from mail.uni-paderborn.de ([131.234.142.9]:37861) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1YEIG8-0006DO-7F for qemu-devel@nongnu.org; Thu, 22 Jan 2015 08:57:20 -0500 Message-ID: <54C11006.3020700@mail.uni-paderborn.de> Date: Thu, 22 Jan 2015 14:58:14 +0000 From: Bastian Koppelmann MIME-Version: 1.0 References: <1421863489-7716-1-git-send-email-kbastian@mail.uni-paderborn.de> <1421863489-7716-3-git-send-email-kbastian@mail.uni-paderborn.de> <54BFECF6.2030700@twiddle.net> In-Reply-To: <54BFECF6.2030700@twiddle.net> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 2/4] target-tricore: Add instructions of RR2 opcode format List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson , qemu-devel@nongnu.org On 01/21/2015 06:16 PM, Richard Henderson wrote: > On 01/21/2015 10:04 AM, Bastian Koppelmann wrote: >> + case OPC2_32_RR2_MUL_32: >> + gen_mul_i32s(cpu_gpr_d[r3], cpu_gpr_d[r1], cpu_gpr_d[r2]); >> + break; >> + case OPC2_32_RR2_MUL_64: >> + gen_mul_i64s(cpu_gpr_d[r3], cpu_gpr_d[r3+1], cpu_gpr_d[r1], >> + cpu_gpr_d[r2]); >> + break; > What happend to flags computation? If you are talking about the PSW flags, they are computed in their respective functions: gen_mul_i32s and gen_mul_i64s. Cheers, Bastian > > r~