summaryrefslogtreecommitdiff
path: root/src/cpu/FuncUnit.py
diff options
context:
space:
mode:
authorMatt Horsnell <matt.horsnell@arm.com>2018-05-09 12:40:24 +0100
committerGiacomo Travaglini <giacomo.travaglini@arm.com>2018-10-09 09:12:28 +0000
commitb27545be48f7065aa6561e5d46e8316951f5eeee (patch)
tree185a7657a136fa73dc51cb2dafc5366dd36d496b /src/cpu/FuncUnit.py
parentdd44f6bdff37fbd15a135da4d6a5b0fcf1ef2957 (diff)
downloadgem5-b27545be48f7065aa6561e5d46e8316951f5eeee.tar.xz
arch-arm: AArch32 Crypto AES
This patch implements the AArch32 AES instructions from the Crypto extension. Change-Id: I51e6deda748b0c26135bcfe9d0c7128f3af91f3d Signed-off-by: Giacomo Travaglini <giacomo.travaglini@arm.com> Reviewed-by: Matt Horsnell <matt.horsnell@arm.com> Reviewed-on: https://gem5-review.googlesource.com/c/13248 Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com> Maintainer: Andreas Sandberg <andreas.sandberg@arm.com>
Diffstat (limited to 'src/cpu/FuncUnit.py')
-rw-r--r--src/cpu/FuncUnit.py7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/cpu/FuncUnit.py b/src/cpu/FuncUnit.py
index e985a648a..a408de3ab 100644
--- a/src/cpu/FuncUnit.py
+++ b/src/cpu/FuncUnit.py
@@ -50,9 +50,10 @@ class OpClass(Enum):
'SimdSqrt', 'SimdFloatAdd', 'SimdFloatAlu', 'SimdFloatCmp',
'SimdFloatCvt', 'SimdFloatDiv', 'SimdFloatMisc', 'SimdFloatMult',
'SimdFloatMultAcc', 'SimdFloatSqrt',
- 'SimdSha1Hash', 'SimdSha1Hash2', 'SimdSha256Hash',
- 'SimdSha256Hash2', 'SimdShaSigma2', 'SimdShaSigma3',
- 'MemRead', 'MemWrite', 'FloatMemRead', 'FloatMemWrite',
+ 'SimdAes', 'SimdAesMix', 'SimdSha1Hash', 'SimdSha1Hash2',
+ 'SimdSha256Hash', 'SimdSha256Hash2', 'SimdShaSigma2',
+ 'SimdShaSigma3', 'MemRead', 'MemWrite',
+ 'FloatMemRead', 'FloatMemWrite',
'IprAccess', 'InstPrefetch']
class OpDesc(SimObject):