diff options
| author | Alexander Potapenko <glider@google.com> | 2024-04-16 15:11:22 +0200 |
|---|---|---|
| committer | Alexander Potapenko <glider@google.com> | 2024-04-24 14:58:52 +0000 |
| commit | a604cf376325b5f4d5ead8c2ca50da91330c72c8 (patch) | |
| tree | 982e018b38bca2d41adf53df3a8b579c8aed57a6 /pkg/ifuzz/iset | |
| parent | 21339d7b9986698282dce93709157dc36907fbf8 (diff) | |
pkg/ifuzz/arm64: add arm64 support
This patch adds instruction generator for ARM64 based on the descriptions
provided as part of Go's arm64asm package. It also implements support for
pseudo-instructions for calling ARM64 hypercalls.
Diffstat (limited to 'pkg/ifuzz/iset')
| -rw-r--r-- | pkg/ifuzz/iset/iset.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pkg/ifuzz/iset/iset.go b/pkg/ifuzz/iset/iset.go index 65c79a500..83afe67c1 100644 --- a/pkg/ifuzz/iset/iset.go +++ b/pkg/ifuzz/iset/iset.go @@ -11,6 +11,7 @@ import ( const ( ArchX86 = "x86" ArchPowerPC = "powerpc" + ArchArm64 = "arm64" ) var Arches = make(map[string]InsnSet) |
