[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 15/38] target/ppc: Use aesdec_ISB_ISR_AK
From: |
Richard Henderson |
Subject: |
[PATCH v2 15/38] target/ppc: Use aesdec_ISB_ISR_AK |
Date: |
Thu, 8 Jun 2023 19:23:38 -0700 |
This implements the VNCIPHERLAST instruction.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
target/ppc/int_helper.c | 8 +-------
1 file changed, 1 insertion(+), 7 deletions(-)
diff --git a/target/ppc/int_helper.c b/target/ppc/int_helper.c
index 34257e9d76..15f07fca2b 100644
--- a/target/ppc/int_helper.c
+++ b/target/ppc/int_helper.c
@@ -2973,13 +2973,7 @@ void helper_vncipher(ppc_avr_t *r, ppc_avr_t *a,
ppc_avr_t *b)
void helper_vncipherlast(ppc_avr_t *r, ppc_avr_t *a, ppc_avr_t *b)
{
- ppc_avr_t result;
- int i;
-
- VECTOR_FOR_INORDER_I(i, u8) {
- result.VsrB(i) = b->VsrB(i) ^ (AES_isbox[a->VsrB(AES_ishifts[i])]);
- }
- *r = result;
+ aesdec_ISB_ISR_AK((AESState *)r, (AESState *)a, (AESState *)b, true);
}
void helper_vshasigmaw(ppc_avr_t *r, ppc_avr_t *a, uint32_t st_six)
--
2.34.1
- Re: [PATCH v2 07/38] target/i386: Use aesenc_SB_SR_AK, (continued)
- [PATCH v2 10/38] target/ppc: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 09/38] target/arm: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 03/38] tests/multiarch: Add test-aes, Richard Henderson, 2023/06/08
- [PATCH v2 08/38] target/arm: Demultiplex AESE and AESMC, Richard Henderson, 2023/06/08
- [PATCH v2 11/38] target/riscv: Use aesenc_SB_SR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 15/38] target/ppc: Use aesdec_ISB_ISR_AK,
Richard Henderson <=
- [PATCH v2 13/38] target/i386: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 16/38] target/riscv: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 14/38] target/arm: Use aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 17/38] crypto: Add aesenc_MC, Richard Henderson, 2023/06/08
- [PATCH v2 12/38] crypto: Add aesdec_ISB_ISR_AK, Richard Henderson, 2023/06/08
- [PATCH v2 18/38] target/arm: Use aesenc_MC, Richard Henderson, 2023/06/08
- [PATCH v2 21/38] target/arm: Use aesdec_IMC, Richard Henderson, 2023/06/08