1. 43efc45 code style by Nguyen Anh Quynh · 10 years ago
  2. 0a2eca7 modify API cs_disasm_iter() and add new API cs_malloc(). also adds sample code test_iter.c by Nguyen Anh Quynh · 10 years ago
  3. 993f362 New API: cs_disasm_iter by hlide · 10 years ago
  4. 1b7ccbf Merge pull request #1 from aquynh/next by hlide · 10 years ago
  5. fe4822c Ocaml: major update by Nguyen Anh Quynh · 10 years ago
  6. f2b699a Don't add cr0 to the operand list as it's not displayed by the disassembly by kratolp · 10 years ago
  7. 4d3ccf4 simplify the way to calculate insn_cache in cs_disasm(). suggested by @hlide by Nguyen Anh Quynh · 10 years ago
  8. 5267baf fix conflicts by Nguyen Anh Quynh · 10 years ago
  9. 2fb7c8e Fix a bug with previous patch by danghvu · 10 years ago
  10. e96935e ppc: remove duplicate op_addReg() in printAliasInstrEx() by Nguyen Anh Quynh · 10 years ago
  11. cd18208 package: update Macports & Homebrew by Nguyen Anh Quynh · 10 years ago
  12. fff1307 Makefile: simplify generate-pkgcfg by using INCDIR. reviewed by Pancake by Nguyen Anh Quynh · 10 years ago
  13. e702b55 Makefile: do not remove old libs in install 'target' by Nguyen Anh Quynh · 10 years ago
  14. ffe4435 package: update FreeBSD package by Nguyen Anh Quynh · 10 years ago
  15. 910a4df tests: compile without -O3 flag. this is to make it easier to maintain FreeBSD package by Nguyen Anh Quynh · 10 years ago
  16. f9d8a89 correct some comments in cs_disasm() by Nguyen Anh Quynh · 10 years ago
  17. 0d1aad1 Increase cache size by golden ratio by danghvu · 10 years ago
  18. a90b047 x86: simplify printPCRelImm() in calculating absolute address. also fix the issue on AT&T syntax by Nguyen Anh Quynh · 10 years ago
  19. 27a4a08 fix a double-free bug introduced by the last change in cs_disasm() by Nguyen Anh Quynh · 10 years ago
  20. ea3c089 some simple optimizations for speed. this improves performance about 5% by Nguyen Anh Quynh · 10 years ago
  21. 16f330c cs_disasm(): properly resize the cache when count in range [2, INSN_CACHE_SIZE] by Nguyen Anh Quynh · 10 years ago
  22. bff4fbd x86: properly calculate absolute addresses for relative CALL & JMP - for AT&T syntax. thanks Perdo, again by Nguyen Anh Quynh · 10 years ago
  23. a92d2cb x86: properly calculate absolute addresses of relative CALL & JMP. thanks Pedro for valuable helps by Nguyen Anh Quynh · 10 years ago
  24. df92a7f mips: BC0F is relative branch instruction. bug reported by Pancake by Nguyen Anh Quynh · 10 years ago
  25. 48eb13c ppc: add detail for alias instructions introduced in the latest change by @kratolp by Nguyen Anh Quynh · 10 years ago
  26. 6b731a0 fix conflicts when merging by Nguyen Anh Quynh · 10 years ago
  27. 630bcd6 ppc: c99 by Nguyen Anh Quynh · 10 years ago
  28. 70fa90f ppc: coding style by Nguyen Anh Quynh · 10 years ago
  29. 147035e suite: chmod +x ppcbranch.py by Nguyen Anh Quynh · 10 years ago
  30. 7383510 Merge branch 'next' of https://github.com/aquynh/capstone into next by kratolp · 10 years ago
  31. a3f0aef PPC: Fix absolute/relative offset for branch instruction by kratolp · 10 years ago
  32. a3f87a5 java: add 'check' target to Makefile by Nguyen Anh Quynh · 10 years ago
  33. 984d450 Makefile: add 'check' target by Nguyen Anh Quynh · 10 years ago
  34. 711fd8e update RELEASE_NOTES by Nguyen Anh Quynh · 10 years ago
  35. a2c5e4c TODO: Ocaml binding is working now (though still incomplete) by Nguyen Anh Quynh · 10 years ago
  36. c96f1b0 x86: fix Out-of-bounds read error in is16BitEquivalent(). issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  37. 9bf1b87 mips: fix out-of-bounds read error in Mips_reg_name(). issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  38. e135056 fix a negative array index read in PPC_alias_insn(). issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  39. 9d54544 mips: verify if RegDecoder can get NULL value. issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  40. 7e644f0 ppc: initialize needComma to false. issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  41. 839890b tests: use cs_group_name() to print out group names in test_detail.c & test_detail.py by Nguyen Anh Quynh · 10 years ago
  42. 523ca99 cs_disasm(): make sure cache_size is smaller than INSN_CACHE_SIZE to avoid integer overflow in malloc() by Nguyen Anh Quynh · 10 years ago
  43. 50eeba2 avoid setting instruction cache size to @count when Capstone uses user-customized memory management, which might fail in resource scarce env such as kernel by Nguyen Anh Quynh · 10 years ago
  44. ac98ca0 set buffer size for instruction cache in cs_disasm() to @count if @count > 0. this avoids realloc() in cases where @count is pre-determined. thanks Dang Hoang Vu for the idea by Nguyen Anh Quynh · 10 years ago
  45. 39eb84a merge v3 by Nguyen Anh Quynh · 10 years ago
  46. 9235fdc arm: The Thumb2 ldrexd and strexd instructions are not defined for M-class architectures by Nguyen Anh Quynh · 10 years ago
  47. 187a1ae Merge pull request #187 from danghvu/v3 by Nguyen Anh Quynh · 10 years ago
  48. ebeec9d Cython: update installation and tests to v3 by danghvu · 10 years ago
  49. 6756edd ppc: alias instructions handled by printAliasInstrEx() miss CR* registers in detail mode. fixed by Nguyen Anh Quynh · 10 years ago
  50. ca44c48 ppc: coding style for PPCInstPrinter.c by Nguyen Anh Quynh · 10 years ago
  51. 27767e8 merge PR of @kratolp by Nguyen Anh Quynh · 10 years ago
  52. d7e42b7 rename all the constants marking ending from _MAX to _ENDING. this also updates Java/Python/Ocaml bindings accordingly by Nguyen Anh Quynh · 10 years ago
  53. 39a6529 Add ppc branch test suite by kratolp · 10 years ago
  54. f0221a2 * Fix pcc branch offset in a better way by kratolp · 10 years ago
  55. 0b702b8 suite: add input files for systematic testing assembly instructions across all archs (MC) by Nguyen Anh Quynh · 10 years ago
  56. e4d1f4d Merge pull request #185 from danghvu/v3 by Nguyen Anh Quynh · 10 years ago
  57. 3671d70 Java binding: fix missing dependency by danghvu · 10 years ago
  58. ed7e43d Merge branch 'v3' of https://github.com/aquynh/capstone into v3 by Nguyen Anh Quynh · 10 years ago
  59. 82354b6 ocaml: rename cs_disasm() back to cs_disasm_quick(), which rightly reflects its nature by Nguyen Anh Quynh · 10 years ago
  60. b69cb94 Merge pull request #184 from danghvu/v3 by Nguyen Anh Quynh · 10 years ago
  61. 2412069 Fix python binding tests by danghvu · 10 years ago
  62. ef92cdb Update java binding to v3 by danghvu · 10 years ago
  63. 53bbee3 Fix java binding tests by danghvu · 10 years ago
  64. 6dc1dd5 ocaml: remove fields regs_read_count, regs_write_count, groups_count, as they can be derived from the lengths of related arrays by Nguyen Anh Quynh · 10 years ago
  65. bf23075 ocaml: activate test_xcore.ml's non-class test by Nguyen Anh Quynh · 10 years ago
  66. c7fa8fa Merge branch 'v3' of https://github.com/aquynh/capstone into v3 by Nguyen Anh Quynh · 10 years ago
  67. 81a97c6 ocaml: ocaml.c is wrongly implemented in various places. this fixes all the issues, and all test_<arch> works as expected now by Nguyen Anh Quynh · 10 years ago
  68. 3f9247d java: add interface for cs_group_name() API by Nguyen Anh Quynh · 10 years ago
  69. 770cf6d cython: update to v3. still need more tests by Nguyen Anh Quynh · 10 years ago
  70. d442fbc arm: t2BXJ also belongs to groups ARM_GRP_NOTMCLASS & ARM_GRP_PREV8 by Nguyen Anh Quynh · 10 years ago
  71. 443af14 ocaml: make some calls on Store_field() in ocaml.c to be in order by Nguyen Anh Quynh · 10 years ago
  72. fbaedfb ocaml: fix an warning on test_arm64.ml by Nguyen Anh Quynh · 10 years ago
  73. 77d93e9 ocaml: update to work with v3 core by Nguyen Anh Quynh · 10 years ago
  74. aa58f7f typo fix for capstone.h by Nguyen Anh Quynh · 10 years ago
  75. acbafc6 ocaml/python/java: fix some broken arm64 constants generated by const_generator.py by Nguyen Anh Quynh · 10 years ago
  76. 54f8cef mips: add JR.HB & JALR.HB instructions. also update Ocaml/Python/Java bindings by Nguyen Anh Quynh · 10 years ago
  77. 7ac7d4e mips: on BEQZL, printAlias() should return instruction string. also cleanup some redundant code by Nguyen Anh Quynh · 10 years ago
  78. 240e1c7 mips: print absolute target address for relative branch instructions: BEQL, BGEZALL, BGEZL, BGTZL, BLEZL, BLTZALL, BLTZL, BNEL, BNEZL, BEQZL, BC1F, BC1FL, BC1TL by Nguyen Anh Quynh · 10 years ago
  79. 5691dd4 mips: fixed & added new instructions. also updated Ocaml/Python/Java bindings by Nguyen Anh Quynh · 10 years ago
  80. 4e87675 arm: relative branch should not be negative. bug reported by @acez by Nguyen Anh Quynh · 10 years ago
  81. a4da895 x86: relative CALL should print out absolute addresses. bug reported by @acez by Nguyen Anh Quynh · 10 years ago
  82. b339297 Merge pull request #181 from yegord/v3 by Nguyen Anh Quynh · 10 years ago
  83. ebc4ced Fixed a typo in a CMake option name by Yegor Derevenets · 10 years ago
  84. e483c6e ocaml: update constants by Nguyen Anh Quynh · 10 years ago
  85. 7e181fb merge PR of @yegord by Nguyen Anh Quynh · 10 years ago
  86. a301cad Merge branch 'v3' of https://github.com/aquynh/capstone into v3 by Nguyen Anh Quynh · 10 years ago
  87. 0e755cf Merge branch 'next' into test by Nguyen Anh Quynh · 10 years ago
  88. a22d300 ocaml: add missing ARM64 instructions to arm64_const.ml. also handle arithmetic operations |, << properly for Ocaml in const_generator.py by Nguyen Anh Quynh · 10 years ago
  89. ced9d24 Workaround missing <inttypes.h> on MSVC 2010 by Yegor Derevenets · 10 years ago
  90. 586be76 ocaml: separate constants into separate files, which are actually autogen by const_generator.py by Nguyen Anh Quynh · 10 years ago
  91. 3231146 Merge pull request #178 from yegord/install-platform-h by Nguyen Anh Quynh · 10 years ago
  92. 17176cd platform.h must be also installed by Yegor Derevenets · 10 years ago
  93. 7e57e79 ppc: handle branch condition for alias instructions. this also updates Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  94. 9d63839 ppc: move our own alias instructions to PPCInstPrinter.c to isolate them from auto-gen code of LLVM by Nguyen Anh Quynh · 10 years ago
  95. d37b0df merge PR of @kratolp by Nguyen Anh Quynh · 10 years ago
  96. 9cb4d8b correct COMPILE_CMAKE.TXT after the last change to names of CMake options by Nguyen Anh Quynh · 10 years ago
  97. 8f67ec2 Added CAPSTONE prefix to CMake options by Nguyen Anh Quynh · 10 years ago
  98. b4d78d9 Added CAPSTONE prefix to CMake options by Yegor Derevenets · 10 years ago
  99. 1738a3e sparc: handle some alias instructions & more details for some special instructions. update Python & Java bindings accordingly with new instructions & registers by Nguyen Anh Quynh · 10 years ago
  100. 7a9d19e python & java: update after the last PPC core update by Nguyen Anh Quynh · 10 years ago