1. 90eb5ff - Fixed memory leak for cython disasm functions by Josh · 10 years ago
  2. 42d11f7 python: fix test_arm.py by Nguyen Anh Quynh · 10 years ago
  3. b3e26fd x86: add prefix constant REPE by Nguyen Anh Quynh · 10 years ago
  4. 993e031 java & ocaml: update these bindings following the addition of lshift field to arm_op_mem of Arm engine by Nguyen Anh Quynh · 10 years ago
  5. 2951e64 Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 10 years ago
  6. 590b1de python: update Python binding for ARM after the latest change in the core by Nguyen Anh Quynh · 10 years ago
  7. 78d6400 cython: fix incomplete array of bytes returned by CsInsn.bytes. bug reported by @secretsquirrel by Nguyen Anh Quynh · 10 years ago
  8. 4de9de6 cython: fix incomplete array of bytes returned by CsInsn.bytes. bug reported by @secretsquirrel by Nguyen Anh Quynh · 10 years ago
  9. 2c24d88 fixed bug that prevented using md.detail = true and md.skipdata = true together by Maciej Szawlowski · 10 years ago
  10. dc101c2 Merge branch 'master' of https://github.com/mszawlow/capstone into next by Nguyen Anh Quynh · 10 years ago
  11. 9b0221f fixed bug that prevented using md.detail = true and md.skipdata = true together by Maciej Szawlowski · 10 years ago
  12. 61ab007 x86: remove dead code & dead SSE_CC constants. issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  13. 1038fdb x86: add new registers DR8-DR15 by Nguyen Anh Quynh · 10 years ago
  14. 59c72af x86: add 3 new undocumented instructions fdisi8087_nop, feni8087_nop & ffreep by Nguyen Anh Quynh · 10 years ago
  15. 534b948 bump version to 4.0 by Nguyen Anh Quynh · 10 years ago
  16. 2537cfd python: fix a memory leak issue when we stop enumeration over the disassembled instructions prematurely. patch by Jan Newger by Nguyen Anh Quynh · 10 years ago
  17. 8ab0136 python: export generic operand types & groups by Nguyen Anh Quynh · 10 years ago
  18. 8946029 python: python2.6 does not understand sys.versionn_info.major by Nguyen Anh Quynh · 10 years ago
  19. 0ea529a java: add close() method to avoid some unknown crash caused by finallize() on Ubuntu 14.04. FIXME by Nguyen Anh Quynh · 10 years ago
  20. 05522dc python: add some missing source files of sdist (setup.py) by Nguyen Anh Quynh · 10 years ago
  21. 4e3b933 python: fix setup.py for possible failure on dir_util.remove_tree() if src/ is not empty by Nguyen Anh Quynh · 10 years ago
  22. 7f6d4a9 python: add Python 3 support into classifiers of setup.py by Nguyen Anh Quynh · 10 years ago
  23. f32d08a Merge branch 'next' into pip by Nguyen Anh Quynh · 10 years ago
  24. faa925a fix bindings (python/java) and tests after the last change on the type of imm of cs_arm64_op by Nguyen Anh Quynh · 10 years ago
  25. 4c1384f Updated setup.py so it can build the capstone library by itself. by Michael Cohen · 10 years ago
  26. ff9a574 ocaml: update Mips modes to CS_MODE_MIPS32 & CS_MODE_MIPS64 by Nguyen Anh Quynh · 10 years ago
  27. e01fdfb java: add comments on hardware modes by Nguyen Anh Quynh · 10 years ago
  28. 75c9b6a python: fix comments on hardware modes by Nguyen Anh Quynh · 10 years ago
  29. 26fd6b1 ocaml: typo (CS_MODE_32) in test_ppc.ml by Nguyen Anh Quynh · 10 years ago
  30. bf4723f java: update Mips modes to CS_MODE_MIPS32 & CS_MODE_MIPS64 by Nguyen Anh Quynh · 10 years ago
  31. 143a494 python: add CS_MODE_MIPS32/64 by Nguyen Anh Quynh · 10 years ago
  32. ec58a02 python: update Mips modes to CS_MODE_MIPS32 & CS_MODE_MIPS64 by Nguyen Anh Quynh · 10 years ago
  33. 7e75ca6 python: CS_MODE_MIPS32R6 is independent from CS_MODE_32 by Nguyen Anh Quynh · 10 years ago
  34. 6782cbf cython: support the newly added field mem_barrier in cs_arm by Nguyen Anh Quynh · 10 years ago
  35. 128124c python: typo on README by Nguyen Anh Quynh · 10 years ago
  36. 6f00a98 Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 10 years ago
  37. 39785fb java: add CS_SUPPORT_X86_REDUCE by Nguyen Anh Quynh · 10 years ago
  38. bd85431 cython: add XCore to debug string by Nguyen Anh Quynh · 10 years ago
  39. 5db983d java: fix a wrong type for memBarrier in Arm.java by Nguyen Anh Quynh · 10 years ago
  40. 7b7d745 ocaml: properly handle newly added mode CS_MODE_V8 & PPC_OP_CRX in test_ppc.ml by Nguyen Anh Quynh · 10 years ago
  41. 9ba1906 python: test_ppc.py prints crx.scale & crx.cond as integers by Nguyen Anh Quynh · 10 years ago
  42. 0b3d95e java/ocaml/python: support the newly added mem_barrier field of cs_arm struct by Nguyen Anh Quynh · 10 years ago
  43. 2e40e69 arm: add sample code for ARM's CS_MODE_MCLASS & CS_MODE_V8 by Nguyen Anh Quynh · 10 years ago
  44. 8e53890 ocaml/java: support CS_MODE_V8 for Arm by Nguyen Anh Quynh · 10 years ago
  45. c942f22 arm: support new mode CS_MODE_V8 for Armv8 A32 encodings by Nguyen Anh Quynh · 10 years ago
  46. 248519e mips: properly handle Mips32R6 mode. bug reported by Jay Oster by Nguyen Anh Quynh · 10 years ago
  47. 2e5c0c7 update bindings/README by Nguyen Anh Quynh · 10 years ago
  48. a65d7ef java/ocaml/python: update bindings after the last change on generic instruction groups by Nguyen Anh Quynh · 10 years ago
  49. 69271dd java/ocaml/python: add the missing generic instruction operand types by Nguyen Anh Quynh · 10 years ago
  50. b0464ef java/python/ocaml: update bindings after the last changes on operand types by Nguyen Anh Quynh · 10 years ago
  51. 5720cb7 tests: add tests for mips's modes: MIPS32R6 & MICRO (C & Python code) by Nguyen Anh Quynh · 10 years ago
  52. 5808634 java/python/ocaml: update after latest changes in x86.h by Nguyen Anh Quynh · 10 years ago
  53. bec9af7 java: update after the latest change on PPC in the core by Nguyen Anh Quynh · 10 years ago
  54. 9dbb2f0 ocaml: update after the latest change on PPC in the core by Nguyen Anh Quynh · 10 years ago
  55. 4d2c362 python: update after the latest change on PPC in the core by Nguyen Anh Quynh · 10 years ago
  56. 79e253c Remove CS_MODE_N64 by Jay Oster · 10 years ago
  57. b10418e java: a call to printf() in TestArm.java is missing a variable by Nguyen Anh Quynh · 10 years ago
  58. db8eaa3 bindings: remove MIPS_REG_PC constant following the change in the core by Nguyen Anh Quynh · 10 years ago
  59. 5be2592 Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 10 years ago
  60. b0cc71d bindings: update java/ocaml/python after the last change in Arm's core by Nguyen Anh Quynh · 10 years ago
  61. fe4822c Ocaml: major update by Nguyen Anh Quynh · 10 years ago
  62. a3f87a5 java: add 'check' target to Makefile by Nguyen Anh Quynh · 10 years ago
  63. 984d450 Makefile: add 'check' target by Nguyen Anh Quynh · 10 years ago
  64. 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
  65. ebeec9d Cython: update installation and tests to v3 by danghvu · 10 years ago
  66. 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
  67. 3671d70 Java binding: fix missing dependency by danghvu · 10 years ago
  68. ed7e43d Merge branch 'v3' of https://github.com/aquynh/capstone into v3 by Nguyen Anh Quynh · 10 years ago
  69. 82354b6 ocaml: rename cs_disasm() back to cs_disasm_quick(), which rightly reflects its nature by Nguyen Anh Quynh · 10 years ago
  70. 2412069 Fix python binding tests by danghvu · 10 years ago
  71. ef92cdb Update java binding to v3 by danghvu · 10 years ago
  72. 53bbee3 Fix java binding tests by danghvu · 10 years ago
  73. 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
  74. bf23075 ocaml: activate test_xcore.ml's non-class test by Nguyen Anh Quynh · 10 years ago
  75. c7fa8fa Merge branch 'v3' of https://github.com/aquynh/capstone into v3 by Nguyen Anh Quynh · 10 years ago
  76. 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
  77. 3f9247d java: add interface for cs_group_name() API by Nguyen Anh Quynh · 10 years ago
  78. 770cf6d cython: update to v3. still need more tests by Nguyen Anh Quynh · 10 years ago
  79. 443af14 ocaml: make some calls on Store_field() in ocaml.c to be in order by Nguyen Anh Quynh · 10 years ago
  80. fbaedfb ocaml: fix an warning on test_arm64.ml by Nguyen Anh Quynh · 10 years ago
  81. 77d93e9 ocaml: update to work with v3 core by Nguyen Anh Quynh · 10 years ago
  82. acbafc6 ocaml/python/java: fix some broken arm64 constants generated by const_generator.py by Nguyen Anh Quynh · 10 years ago
  83. 54f8cef mips: add JR.HB & JALR.HB instructions. also update Ocaml/Python/Java bindings by Nguyen Anh Quynh · 10 years ago
  84. 5691dd4 mips: fixed & added new instructions. also updated Ocaml/Python/Java bindings by Nguyen Anh Quynh · 10 years ago
  85. e483c6e ocaml: update constants by Nguyen Anh Quynh · 10 years ago
  86. 0e755cf Merge branch 'next' into test by Nguyen Anh Quynh · 10 years ago
  87. 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
  88. 586be76 ocaml: separate constants into separate files, which are actually autogen by const_generator.py by Nguyen Anh Quynh · 10 years ago
  89. 7e57e79 ppc: handle branch condition for alias instructions. this also updates Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  90. 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
  91. 7a9d19e python & java: update after the last PPC core update by Nguyen Anh Quynh · 10 years ago
  92. 721d07f ppc: support alias instructions. update Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  93. 25538b0 python: test_arm.py should handle SYSREG operand. issue reported by Ben Nagy by Nguyen Anh Quynh · 10 years ago
  94. 04d9f8e arm: update core with a lot more details provided in detail mode now. update Python & Java bindings to reflect the core's changes by Nguyen Anh Quynh · 10 years ago
  95. 4f0d704 arm64: vector_index = 0 is valid. this changed invalid value of vector_index to -1 by Nguyen Anh Quynh · 10 years ago
  96. 0beb0d4 api: get back the old API cs_disasm() & mark cs_disasm_ex() deprecated. cs_disasm_ex() will be removed in the future by Nguyen Anh Quynh · 10 years ago
  97. 934e180 x86: more update to the core by Nguyen Anh Quynh · 10 years ago
  98. a7792ae systemz: update core. also update Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  99. 212a017 java: update after the latest changes in the core on arm64 by Nguyen Anh Quynh · 10 years ago
  100. 5166236 python: update after the latest changes in the core on arm64 by Nguyen Anh Quynh · 10 years ago