qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/4] target-tricore: Add instructions of RR2 opc


From: Bastian Koppelmann
Subject: Re: [Qemu-devel] [PATCH 2/4] target-tricore: Add instructions of RR2 opcode format
Date: Thu, 22 Jan 2015 14:58:14 +0000
User-agent: Mozilla/5.0 (X11; Linux i686; rv:31.0) Gecko/20100101 Thunderbird/31.4.0


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~




reply via email to

[Prev in Thread] Current Thread [Next in Thread]