diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2023-06-10 21:51:35 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-11 00:51:35 +0000 |
| commit | 193ca3c9a28b63613407c2923f5903e1dd33fdce (patch) | |
| tree | c0ce3f32dc145bb98312afdf7538995538fa0d5c /src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs | |
| parent | eb0bb36bbfc3a4f5f2ac1c8721e192239f899a1d (diff) | |
Implement fast path for AES crypto instructions on Arm64 (#5281)
* Implement fast path for AES crypto instructions on Arm64
* PPTC version bump
* Use AES HW feature check
Diffstat (limited to 'src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs')
| -rw-r--r-- | src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs b/src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs index 6ea9d239..74f80e0f 100644 --- a/src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs +++ b/src/ARMeilleure/CodeGen/Arm64/PreAllocator.cs @@ -746,6 +746,7 @@ namespace ARMeilleure.CodeGen.Arm64 info.Type == IntrinsicType.ScalarTernaryFPRdByElem || info.Type == IntrinsicType.ScalarTernaryShlRd || info.Type == IntrinsicType.ScalarTernaryShrRd || + info.Type == IntrinsicType.Vector128BinaryRd || info.Type == IntrinsicType.VectorBinaryRd || info.Type == IntrinsicType.VectorInsertByElem || info.Type == IntrinsicType.VectorTernaryRd || |
