• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..07-May-2022-

MC/H14-Dec-2021-19,66318,189

arm/H14-Dec-2021-408319

benchmark/H14-Dec-2021-11468

cstest/H14-Dec-2021-3,6732,946

fuzz/H03-May-2022-1,4841,206

regress/H14-Dec-2021-9269

synctools/H14-Dec-2021-250,359222,192

x86/H14-Dec-2021-53

READMEH A D14-Dec-20211 KiB3625

autogen_x86imm.pyH A D14-Dec-20213.4 KiB9177

benchmark.pyH A D14-Dec-20213.6 KiB13077

capstone_get_setup.cH A D14-Dec-20211.5 KiB7761

compile_all.shH A D14-Dec-2021545 3121

disasm_mc.pyH A D14-Dec-20217.6 KiB194152

disasm_mc.shH A D14-Dec-2021315 121

fuzz.pyH A D14-Dec-20213.9 KiB12779

patch_major_os_version.pyH A D14-Dec-2021790 3015

ppcbranch.pyH A D14-Dec-20211.7 KiB5440

python_capstone_setup.pyH A D14-Dec-2021127 51

regress.pyH A D14-Dec-202180.6 KiB751715

test_all.shH A D14-Dec-2021202 102

test_c.shH A D14-Dec-2021586 1913

test_corpus.pyH A D14-Dec-20215.5 KiB139116

test_group_name.pyH A D14-Dec-20217.2 KiB271242

test_mc.pyH A D14-Dec-202110.5 KiB268207

test_mc.shH A D14-Dec-2021599 161

test_python.shH A D14-Dec-2021531 148

x86odd.pyH A D14-Dec-20213.7 KiB10778

README

1This directory contains some tools used by developers of Capstone project.
2Average users should ignore all the contents here.
3
4
5- arm/
6	Test some ARM's special input.
7
8- MC/
9	Input used to test various architectures & modes.
10
11- benchmark.py
12	This script benchmarks Python binding by disassembling some random code.
13
14- test_*.sh
15	Run all the tests and send the output to external file to be compared later.
16	This is useful when we want to verify if a commit (wrongly) changes
17	the disassemble result.
18
19- compile_all.sh
20	Compile Capstone for all platforms (*nix32, clang, cygwin, cross-compile) &
21	report the result as pass or fail.
22
23- fuzz.py
24	This simple script disassembles random code for all archs (or selected arch)
25	in order to find segfaults.
26
27- test_mc.sh
28    This script compares the output of Capstone with LLVM's llvm-mc with the
29	input coming from MC/. This relies on test_mc.py to do all the hard works.
30
31- x86odd.py
32	Test some tricky X86 instructions.
33
34- ppcbranch.py
35	Test some tricky branch PPC instructions.
36