On 01/21/2015 06:16 PM, Richard Henderson wrote:
If you are talking about the PSW flags, they are computed in their respective functions: gen_mul_i32s andOn 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?
gen_mul_i64s.
Cheers, Bastian
r~