diff options
| author | Galen Williamson <galen@vector35.com> | 2025-04-04 22:01:15 -0400 |
|---|---|---|
| committer | Galen Williamson <galen@vector35.com> | 2025-04-08 15:40:49 -0400 |
| commit | e301d99a8df8ed185ffe71dabe915ab55d6fb885 (patch) | |
| tree | 599a48c86f8425b02362e9910b70dd12b954b128 /arch/arm64/test_gen.py | |
| parent | b0b223e9f2379c5d6622dcc082692aa94235cd96 (diff) | |
[aarch64] lift all LD[1-4]R? and ST[1-4] opcodes, lift ST/LDCLR, ST/LDEOR, ST/LDSET, and their variants
Also fixes all outstanding issues in arm64test.py, including intrinsics, dc, at, and tlbi
Diffstat (limited to 'arch/arm64/test_gen.py')
| -rwxr-xr-x | arch/arm64/test_gen.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm64/test_gen.py b/arch/arm64/test_gen.py index 9c07fdea..a4d5866c 100755 --- a/arch/arm64/test_gen.py +++ b/arch/arm64/test_gen.py @@ -151,14 +151,14 @@ def gather_samples(mnems, encodings): if sys.argv[1] == "mnemonic": mnems = sys.argv[2:] for mnem in mnems: - print("searching for mnemonic -%s-" % mnem) + print("searching for mnemonic -%s-" % mnem, file=sys.stderr) gather_samples([mnem], []) # exact match (ignoring case) for encodings elif sys.argv[1] == "encoding": encnames = sys.argv[2:] for encname in encnames: - print("searching for encoding -%s-" % encname) + print("searching for encoding -%s-" % encname, file=sys.stderr) gather_samples([], [encname]) elif sys.argv[1] == "mte": |
