]> git.proxmox.com Git - mirror_qemu.git/commitdiff
target/i386: Use aesdec_ISB_ISR_IMC_AK
authorRichard Henderson <richard.henderson@linaro.org>
Fri, 2 Jun 2023 22:29:28 +0000 (15:29 -0700)
committerRichard Henderson <richard.henderson@linaro.org>
Sat, 8 Jul 2023 06:30:18 +0000 (07:30 +0100)
This implements the AESDEC instruction.

Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
target/i386/ops_sse.h

index 93a4e0cf164a12b1f9e034d2f94893bfdfbe2600..a0e425733f109e34848171023bd51dbadc1cd87a 100644 (file)
@@ -2162,16 +2162,12 @@ void glue(helper_pclmulqdq, SUFFIX)(CPUX86State *env, Reg *d, Reg *v, Reg *s,
 
 void glue(helper_aesdec, SUFFIX)(CPUX86State *env, Reg *d, Reg *v, Reg *s)
 {
-    int i;
-    Reg st = *v;
-    Reg rk = *s;
-
-    for (i = 0 ; i < 2 << SHIFT ; i++) {
-        int j = i & 3;
-        d->L(i) = rk.L(i) ^ bswap32(AES_Td0[st.B(AES_ishifts[4 * j + 0])] ^
-                                    AES_Td1[st.B(AES_ishifts[4 * j + 1])] ^
-                                    AES_Td2[st.B(AES_ishifts[4 * j + 2])] ^
-                                    AES_Td3[st.B(AES_ishifts[4 * j + 3])]);
+    for (int i = 0; i < SHIFT; i++) {
+        AESState *ad = (AESState *)&d->ZMM_X(i);
+        AESState *st = (AESState *)&v->ZMM_X(i);
+        AESState *rk = (AESState *)&s->ZMM_X(i);
+
+        aesdec_ISB_ISR_IMC_AK(ad, st, rk, false);
     }
 }