- 11b0519 reset prev_prefix at the entry of cs_disasm_ex(). this fixes a nasty segfault bug by Nguyen Anh Quynh · 11 years ago
- 9162aa1 suite: cleanup benchmark.py by Nguyen Anh Quynh · 11 years ago
- 2b25445 update README by Nguyen Anh Quynh · 11 years ago
- 04f4da1 update COMPILE.TXT by Nguyen Anh Quynh · 11 years ago
- c34959b x86: proper calculation for the trailing instruction in total cache. issue reported by Pancake by Nguyen Anh Quynh · 11 years ago
- 06b3c05 cs_open() should return error on invalid mode by Nguyen Anh Quynh · 11 years ago
- 1031048 correct usage instruction of make.sh by Nguyen Anh Quynh · 11 years ago
- 9a291bd x86: do not use non-standard strlcat & strlcpy by Nguyen Anh Quynh · 11 years ago
- 4a4028d Merge branch 'prefix' into next by Nguyen Anh Quynh · 11 years ago
- 66c8d5d suite: add test_all.sh by Nguyen Anh Quynh · 11 years ago
- dc8c346 Merge branch 'prefix' into next by Nguyen Anh Quynh · 11 years ago
- 7772d85 x86: fix known issue with prefix by combining with previous prefix instruction. this is not perfect, but good enough for now by Nguyen Anh Quynh · 11 years ago
- 3732725 rename mapping.c, mapping.h, module.c to have arch prefix. suggested by Alex Ionescu by Nguyen Anh Quynh · 11 years ago
- f328f30 rename mapping.c, mapping.h, module.c to have arch prefix. suggested by Alex Ionescu by Nguyen Anh Quynh · 11 years ago
- dd40750 change header guards to have CAPSTONE_ as prefix. suggested by Markus Elfring by Nguyen Anh Quynh · 11 years ago
- 747c4ef change header guards to have CAPSTONE_ as prefix. suggested by Markus Elfring by Nguyen Anh Quynh · 11 years ago
- 5d1244d java: update X86_const.java after last update to x86 core by Nguyen Anh Quynh · 11 years ago
- f46713b python: update x86_const.py after last update to x86 core by Nguyen Anh Quynh · 11 years ago
- d68a30f x86: remove 'opaque' in the output of some instructions by Nguyen Anh Quynh · 11 years ago
- 9dfdae6 x86: add new instructions: FSETPM, SALC, GETSEC & INT1. bug reported by Pancake by Nguyen Anh Quynh · 11 years ago
- 38c1322 x86: remove 'opaque' in the output of some instructions by Nguyen Anh Quynh · 11 years ago
- ceae16d tests: report error when cs_open() failure by Nguyen Anh Quynh · 11 years ago
- c272e9d do not use constructor to enable archs, so code is more portable. suggested by Alex Ionescu by Nguyen Anh Quynh · 11 years ago
- a580d92 make dist should distribute all source, and accept tagname (so we can do 'make dist TAG=2.0-rc1' by Nguyen Anh Quynh · 11 years ago
- 35cef7f add 'dist' make target by pancake · 11 years ago
- 92c1750 update README on PPC & Solaris support by Nguyen Anh Quynh · 11 years ago
- fe5e7f3 some minor fixes for COMPILE.TXT by Nguyen Anh Quynh · 11 years ago
- 4b3b8bb make.sh: fix usage instruction by Nguyen Anh Quynh · 11 years ago
- c466057 remove compile.sh by Nguyen Anh Quynh · 11 years ago
- dba00f8 make.sh: fix instructions in COMPILE.TXT to switch to use make.sh by Nguyen Anh Quynh · 11 years ago
- f63db27 simplify build & install for *BSD by Nguyen Anh Quynh · 11 years ago
- d3b3071 simplify build & install for Solaris by Nguyen Anh Quynh · 11 years ago
- 64d4083 add solaris support, and add make.sh by Nguyen Anh Quynh · 11 years ago
- d80cede last change to support BSD broke cross-comple. fix Makefile so cross-compile work again by Nguyen Anh Quynh · 11 years ago
- 6e2c075 info: update COMPILE.TXT related to bsd target by Oliver Pinter · 11 years ago
- 73b6068 build: switch from hardcoded gcc to default c compiler by opn · 11 years ago
- 22062e0 build: update compile.sh to support bsd systems by Oliver Pinter · 11 years ago
- bdd1e34 remove 'restrict' keyword in the definition of cs_vsnprintf(). also compile tests/* with -L option by Nguyen Anh Quynh · 11 years ago
- 24e1227 cs_op_count() & cs_op_index() report CS_ERR_DETAIL when detail = OFF by Nguyen Anh Quynh · 11 years ago
- 56aba59 correct some comments on CS_OPT_MEM option by Nguyen Anh Quynh · 11 years ago
- 8282dc6 add ChangeLog file, and rename some documentation files by Nguyen Anh Quynh · 11 years ago
- edeeb04 make vsnprintf() user-defined function pointer, which is passed in via the same CS_OPT_MEM option like malloc/calloc etc by Nguyen Anh Quynh · 11 years ago
- a9ffb44 replace strdup() with our cs_strdup(), which call cs_mem_malloc() internally by Nguyen Anh Quynh · 11 years ago
- fc947e0 python: update Cython for the change on @op_str in the core by Nguyen Anh Quynh · 11 years ago
- 9eb9f53 python & java: update following the last change to @op_str by Nguyen Anh Quynh · 11 years ago
- 0636f68 increase size of @op_str to 160 to contain long operand string of some Neon Arm instructions by Nguyen Anh Quynh · 11 years ago
- 57c50d4 ppc: replace constant subtarget numbers with macros by Nguyen Anh Quynh · 11 years ago
- 136e2df x86: some arithmetic instructions should not update accumulate registers by Nguyen Anh Quynh · 11 years ago
- 9cc56a3 arm: update core by Nguyen Anh Quynh · 11 years ago
- d8029ae suite: make all tests consistenly run from inside suite/ by Nguyen Anh Quynh · 11 years ago
- cbb10ba arm64: update core by Nguyen Anh Quynh · 11 years ago
- 2f05ab2 add some comments on the availability of some APIs relying on detail = ON by Nguyen Anh Quynh · 11 years ago
- 0941042 java: update Mips constants following the change in Mips' core by Nguyen Anh Quynh · 11 years ago
- a4e6e2a python: update Mips constants following the change in Mips' core by Nguyen Anh Quynh · 11 years ago
- 75ef242 mips: update core by Nguyen Anh Quynh · 11 years ago
- 44cebf2 python & java: pump API to 2.0 by Nguyen Anh Quynh · 11 years ago
- 9c2d029 x86: few more SUB insn should not affect accumulate register by Nguyen Anh Quynh · 11 years ago
- 3d56b82 extend @op_str of cs_insn_flat following the core change by Nguyen Anh Quynh · 11 years ago
- 22800aa x86: some ADD & SUB insn should not affect accumulate registers. bug reported by Bleh by Nguyen Anh Quynh · 11 years ago
- 7900458 python: fix Cython binding following the latest core change on @op_str by Nguyen Anh Quynh · 11 years ago
- a71a299 java: update @opStr & ARM's @Operands following the changes in core by Nguyen Anh Quynh · 11 years ago
- e03da92 python: update @op_str & ARM's @operands following the changes in core by Nguyen Anh Quynh · 11 years ago
- b99aec8 increase sizes of @op_str & ARM @operands to contain some ARM instructions with super long list of registers. issue reported by Deroko of ARTeam by Nguyen Anh Quynh · 11 years ago
- a84fe66 python: indentation for cython code. also added author credits to these new files by Nguyen Anh Quynh · 11 years ago
- aaaf345 python: update clean target for *.pyx files by Nguyen Anh Quynh · 11 years ago
- 2fcfeac update .gitignore for new *.pyx files generated by cython by Nguyen Anh Quynh · 11 years ago
- e61c504 Clean up addition cython code by danghvu · 11 years ago
- cfd41dd Improve cython by using CCsInsn when possible by danghvu · 11 years ago
- f48a879 suite: benchmark.py can benchmark specific archs, rather than all archs like before by Nguyen Anh Quynh · 11 years ago
- 783e6c0 suite: benchmark.py now exercises all archs by Nguyen Anh Quynh · 11 years ago
- ff93d75 suite: excercise benchmark.py 5 times more by Nguyen Anh Quynh · 11 years ago
- 34474f8 suite: benchmark.py get disasm code from binary file (python itself) rather than randomize data - this stablizes results, and can be compared with other bindings by Nguyen Anh Quynh · 11 years ago
- e14556a python: generator yields nothing rather than [] on failure by Nguyen Anh Quynh · 11 years ago
- cf4df4b some minor fixes for config.mk by Nguyen Anh Quynh · 11 years ago
- e51e227 ppc & x86: add third dummy MRI argument to printInstruction() to make it consistent with other archs by Nguyen Anh Quynh · 11 years ago
- 56774a1 mips: printInstruction() is static function. add dummy third argument MRI to be consistent with other archs by Nguyen Anh Quynh · 11 years ago
- dcbe0f8 arm64: find alias insn after the main isnn name mapping. by Nguyen Anh Quynh · 11 years ago
- dc6b957 arm64: more changes to make code closer to llvm by Nguyen Anh Quynh · 11 years ago
- 1265077 arm64: make the code closer to llvm code by Nguyen Anh Quynh · 11 years ago
- 3f2fb5f Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 11 years ago
- a8eb7a5 rename memory function pointer types to have cs_ prefix. also rename internal function pointers my_* to have cs_mem_ prefix - suggested by Pancake by Nguyen Anh Quynh · 11 years ago
- 377bced python: correct comment on default value of @detail by Nguyen Anh Quynh · 11 years ago
- 92f8296 python: turn off detail by default, and raise CS_ERR_DETAIL when detail is OFF by Nguyen Anh Quynh · 11 years ago
- 4c009c7 python: instructions on installing Cython as dependency by Nguyen Anh Quynh · 11 years ago
- d0f201c python: update .gitignore to ignore *.c generated by Cython by Nguyen Anh Quynh · 11 years ago
- d35416a python: add instructions on Cython-based binding to README by Nguyen Anh Quynh · 11 years ago
- 5dba289 python: revert the directory name change, so rename 'cython' back to 'pyx' by Nguyen Anh Quynh · 11 years ago
- b49764d Merge branch 'cython' into next by Nguyen Anh Quynh · 11 years ago
- f042e57 python: rename pyx/ to cython/ by Nguyen Anh Quynh · 11 years ago
- d159a03 tests: proper extensions for newly added static executables by Nguyen Anh Quynh · 11 years ago
- b49f80d python: make install is the preferred way to install python binding by Nguyen Anh Quynh · 11 years ago
- 625b5bc comment for the trick to enable constructors in static lib & fix coding style by Nguyen Anh Quynh · 11 years ago
- e94bf72 gitignore: add tests/*.static by Nguyen Anh Quynh · 11 years ago
- b33bd2c Update static fix: no need to call dummy function by danghvu · 11 years ago
- ad44e81 Minor bug by danghvu · 11 years ago
- 7864786 Add test binary for static link by danghvu · 11 years ago
- 701b850 Fix: bug that static link does not know constructor by danghvu · 11 years ago
- 5696d98 Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 11 years ago
- d63ddac Makefile: delete capstone.pc for clean target by Nguyen Anh Quynh · 11 years ago
- 71fe283 python: make clean should not remove everything in pyx/ by Nguyen Anh Quynh · 11 years ago