capstone/suite/MC
billow 21f7bc85f9
Xtensa Support (#2380)
* Fix leaks

* Remove unnecessary new lines

* Add checks for actual buffer length before attempting reading it.

* Xtensa: add xtensa support

* Xtensa fixes

- fix MCExpr
- fix Xtensa_add_cs_detail
- add `add_cs_detail`
- add `MCExpr *MCOperand_getExpr(const MCOperand *MC)` `void printExpr(const MCExpr *E, SStream *O)`

autosync fix

- fix StreamOperation.py
- replace `report_fatal_error` with `CS_ASSERT`
- fix patch StreamOperation.py
- replace `assert` with `CS_ASSERT`
- fix AddCSDetail.py
- fix QualifiedIdentifier

* Xtensa fix

* Xtensa fix .py

* add Xtensa to the fuzzer

* Xtensa `LITBASE`: add a basic implementation

* Xtensa `LITBASE`: add a integration test

* Xtensa: fix cs_v6_release_guide.md

* Xtensa: fix `XTENSA_OP_GROUP_MEMOPERAND`

* Xtensa: fix

* Xtensa: fix Targets.py

* Use isUint and isInt all over Xtensa

* Add documentation about LITBASE functionality

* Fix typo

* Replace hard with Capstone assert

* Xtensa: fix arch_config.json

* Xtensa: fix

---------

Co-authored-by: Rot127 <unisono@quyllur.org>
2024-09-30 11:35:51 +08:00
..
AArch64 AArch64 update to LLVM 18 (#2298) 2024-07-08 10:28:54 +08:00
Alpha add Alpha big-endian (#2227) 2024-01-02 13:02:38 +09:00
ARM Fix running cstest in CI (#2126) 2023-08-06 18:28:52 +08:00
BPF Merge pull request #1886 from terorie/ebpf-callx 2022-06-09 21:37:40 +08:00
HPPA Add HPPA(PA-RISC) architecture (#2265) 2024-03-26 13:58:56 +08:00
LoongArch Initial auto-sync LoongArch support (#2349) 2024-06-26 14:47:44 +08:00
Mips Auto-Sync Mips (#2410) 2024-09-07 22:30:47 +08:00
PowerPC Add regression tests for QPX (#2169) 2023-09-24 11:09:53 +08:00
RISCV RISCV support ISRV32/ISRV64 (#1401) 2019-03-09 08:41:12 +08:00
Sparc fix MC 2019-02-26 15:41:04 +08:00
SystemZ fix MC 2019-02-26 15:41:04 +08:00
TriCore [TriCore] Replace one- and sign-extend with MathExtra.h functions. (#2212) 2023-12-03 19:15:17 +08:00
X86 x86: fix testcase of MOVSD 2020-05-07 21:51:54 +08:00
Xtensa Xtensa Support (#2380) 2024-09-30 11:35:51 +08:00
README.md Modern Testing (#2456) 2024-08-31 21:33:38 +08:00

Input files for fuzzing input

These files were the legacy test files but replaced. No it only is consumed by test_corpus3.py to generate input cases for the fuzzer.

Test file formatting

Format of input files:

# ARCH, MODE, OPTION
<hexcode> = <assembly-text>

Example

# CS_ARCH_ARM, CS_MODE_ARM+CS_MODE_V8, None
0xa0,0x0b,0x71,0xee = vadd.f64 d16, d17, d16
...