aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/ifuzz/arm64/gen
Commit message (Collapse)AuthorAgeFilesLines
* pkg/ifuzz: fix generate/buildDmitry Vyukov2025-04-031-4/+10
| | | | | | | Currently the commands we have in go:generate first create an empty file and then write final contents. This breaks any parallel builds of the source. Even running go generate ./... does not work. Write output files atomically.
* pkg/ifuzz/arm64: add arm64 supportAlexander Potapenko2024-04-244-0/+1385
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.