capstone/suite
Rot127 3fc2d57e48
v6 Alpha4 update (#2670)
* Fix wrong version requirement of tricore instructions: (#2620)

crc32.b
crc32b.w
crc32l.w
crcn
popcnt.w
shuffle

Remove invalid instruction:
BISR_rc_v161

Learn up misconfigure of nor and not

* Switch to ubuntu-24.04-arm runner image (#2625)

* Build Tarball before DEB/RPM package. (#2627)

Because it was run after the RPM/DEB package build it contained the 'build' directory
with all its files. Which made it way too big.

* Add aliases mapping for MIPS & test for id, alias_id (#2635)

* Add checks for MIPS details on cstest_py (#2640)

* Give the user some guidance where to add missing enumeration values. (#2639)

* - Added missing files for sdist archive (#2624)

* cmake: Fix building capstone as sub-project (#2629)

* cmake: Use PROJECT_SOURCE_DIR instead of CMAKE_SOURCE_DIR

capstone can be built as sub-project through cmake's fetch_content
mechanism. In this case, `CMAKE_SOURCE_DIR` refers to the parent project
(that has nothing to do with capstone), while `PROJECT_SOURCE_DIR` refers
to the root of the capstone source tree.

Recently introduced changes to enable CPack (#2590) are using the wrong
variable and are hence breaking builds that use capstone through
fetch_content. Use the correct variable to fix this issue.

* cmake: Only include cpack in top-level builds

Do not include cpack in builds where capstone is used through
fetch_content.

* Update operand type enums of all arch modules to the one in `capstone.h` (#2633)

* Set all operand types to the main CS_OP_ types from capstone.h.

* Add test cases from issue.

* Enhance shift value and types of shift instructions. (#2638)

* Enhance shift value and types of shift instructions.

Shifts via registers now save the register id in cs_arch64_op.shift.value
and set the shift type accordingly.

* Sort table

* Fix build for compilers requiring explicit static for inline functions.. (#2645)

* Tms32c64x Little Endian (#2648)

* Add little endian support for TMS320c64x.
This requires now to initialize TMS320c64x with the
CS_MODE_BIG_ENDIAN flag.

* Fix typo

* Add Call group to svc, smc and hvc. (#2651)

* Decode BH field in print_insn_detail_ppc (#2662)

---------

Co-authored-by: Changqing  Jing <changqing.jing@bmw.com>
Co-authored-by: @Antelox <anteloxrce@gmail.com>
Co-authored-by: Giovanni <561184+wargio@users.noreply.github.com>
Co-authored-by: Philipp Wagner <mail@philipp-wagner.com>
Co-authored-by: Tim Haines <thaines.astro@gmail.com>
2025-04-02 11:26:42 +08:00
..
MC Rebased #2570 (#2614) 2025-01-28 22:34:24 +08:00
auto-sync v6 Alpha4 update (#2670) 2025-04-02 11:26:42 +08:00
benchmark update .gitignore 2022-01-04 23:47:08 +08:00
cstest v6 Alpha4 update (#2670) 2025-04-02 11:26:42 +08:00
fuzz Add tricore tc1.8 instructions (#2595) 2025-01-28 20:50:43 +08:00
synctools chore: fix some comments (#2432) 2024-08-12 12:01:22 +08:00
x86 suite: add some tools to verify X86 machine code 2015-01-06 13:11:04 +07:00
README Modern Testing (#2456) 2024-08-31 21:33:38 +08:00
autogen_x86imm.py fix typos (#2344) 2024-04-30 10:37:53 +08:00
benchmark.py Architecture updater (auto-sync) - Updating AArch64 (#2026) 2023-11-15 12:12:14 +08:00
capstone_get_setup.c Rebased #2570 (#2614) 2025-01-28 22:34:24 +08:00
check_wheel_bin_arch.py [next] Wheel build fixes: manylinux1, trigger upload on release, Linux AArch64... (#2444) 2024-08-19 16:33:08 +08:00
fuzz.py SystemZ Auto-Sync refactor (#2462) 2024-09-14 16:57:54 +08:00
patch_major_os_version.py Use python3 as default interpreter for all python scripts (#2390) 2024-06-19 18:52:51 +08:00
ppcbranch.py Use python3 as default interpreter for all python scripts (#2390) 2024-06-19 18:52:51 +08:00
python_capstone_setup.py suite: add python_capstone_setup.py 2015-06-07 15:55:05 +08:00
regress.py Use python3 as default interpreter for all python scripts (#2390) 2024-06-19 18:52:51 +08:00
run_invalid_cstool.sh Add test with ASAN enabled. (#2313) 2024-06-10 10:01:00 +08:00
run_tests.py Python package building rework (#2538) 2024-11-18 19:10:27 +08:00
test_corpus3.py Rebased #2570 (#2614) 2025-01-28 22:34:24 +08:00
x86odd.py Use python3 as default interpreter for all python scripts (#2390) 2024-06-19 18:52:51 +08:00

README

This directory contains some tools used by developers of Capstone project.
Average users should ignore all the contents here.


- benchmark.py
	This script benchmarks Python binding by disassembling some random code.

- compile_all.sh
	Compile Capstone for all platforms (*nix32, clang, cygwin, cross-compile) &
	report the result as pass or fail.

- fuzz.py
	This simple script disassembles random code for all archs (or selected arch)
	in order to find segfaults.

- x86odd.py
	Test some tricky X86 instructions.

- ppcbranch.py
	Test some tricky branch PPC instructions.