1. 1b29897 Fix build for cygwin by pancake · 9 years ago
  2. 37590df Fix spelling nits by Taras Tsugrii · 9 years ago
  3. ac9253c Update capstone.h by mrexodia · 9 years ago
  4. fa20d0d Merge branch 'v3' by Nguyen Anh Quynh · 9 years ago
  5. bcf09f4 Add support to embed Capstone into OS X kernel extensions. by reverser · 9 years ago
  6. bc96e36 remove stdio.h from capstone.h. this is to make it possible to embed to OSX kernel. issue reported by Pedro by Nguyen Anh Quynh · 9 years ago
  7. 33dd68b Changed type for cs_x86_op.reg by Jon Erickson · 9 years ago
  8. d83bf84 Limit exported symbols by Hilko Bengen · 9 years ago
  9. 56128da arm64: for operand type IMM, value should have the type int64_t, not int32_t. all bindings should be fixed by Nguyen Anh Quynh · 10 years ago
  10. a7b06fd capstone.h: add comments on some hardware modes by Nguyen Anh Quynh · 10 years ago
  11. 84df600 tests: update Mips modes to CS_MODE_MIPS32 & CS_MODE_MIPS64 by Nguyen Anh Quynh · 10 years ago
  12. d3f0373 add CS_MODE_MIPS32 & CS_MODE_MIPS64. these modes are aliases of CS_MODE_32 & CS_MODE_64, so no old code is broken by Nguyen Anh Quynh · 10 years ago
  13. cc60d10 mips: add comments on mips32 & mips64 to capstone.h by Nguyen Anh Quynh · 10 years ago
  14. 753f44a capstone.h: add comment for CS_ARCH_ALL by Nguyen Anh Quynh · 10 years ago
  15. 8cdafda arm: add new field mem_barrier to cs_arm struct. this requires changes in bindings by Nguyen Anh Quynh · 10 years ago
  16. c942f22 arm: support new mode CS_MODE_V8 for Armv8 A32 encodings by Nguyen Anh Quynh · 10 years ago
  17. 3ab5091 use common instruction groups across all architectures. this adds cs_group_type to capstone.h. suggestion by @zneak by Nguyen Anh Quynh · 10 years ago
  18. c58e704 do not need to explicitly assign values for operand types in the last commit by Nguyen Anh Quynh · 10 years ago
  19. 21ac056 use common operand types across all architectures. this adds cs_op_type to capstone.h. suggestion by @zneak by Nguyen Anh Quynh · 10 years ago
  20. a18abdd capstone.h: coding style by Nguyen Anh Quynh · 10 years ago
  21. 024e55e capstone.h: add notes on cs_disasm() vs cs_disasm_iter() by Nguyen Anh Quynh · 10 years ago
  22. de65619 x86: add prefix constants X86_PREFIX_*. suggested by Pancake by Nguyen Anh Quynh · 10 years ago
  23. 85cfb18 x86: get rid of redundant X86_INS_LOCK/REP/RENE. issue reported by Pancake by Nguyen Anh Quynh · 10 years ago
  24. aeaff79 ppc: change type of ppc_op_crx.cond type to ppc_bc by Nguyen Anh Quynh · 10 years ago
  25. fcc5673 ppc.h: add a comment for ppc_op_crx by Nguyen Anh Quynh · 10 years ago
  26. 5c0d9a4 Add '4*cri+cond' to operand list by kratolp · 10 years ago
  27. c41da15 capstone.h: change cs_disasm to cs_disasm_iter in some places by Nguyen Anh Quynh · 10 years ago
  28. 79e253c Remove CS_MODE_N64 by Jay Oster · 10 years ago
  29. 2c8b262 capstone.h: document that for instruction or when detail mode is OFF, the detail pointer is irrelevant, regardless of its value by Nguyen Anh Quynh · 10 years ago
  30. 1a83cea Merge branch 'newapi' into next by Nguyen Anh Quynh · 10 years ago
  31. fb429b1 capstone.h: note that in Skipdata mode, invalid instruction has id = 0 by Nguyen Anh Quynh · 10 years ago
  32. ff2939a capstone.h: refer to sample code for skipdata option & cs_disasm_iter API by Nguyen Anh Quynh · 10 years ago
  33. 801ce2b detail pointer is irrelevant when in skipdata mode by Nguyen Anh Quynh · 10 years ago
  34. f0acace Merge branch 'newapi' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 10 years ago
  35. 542a540 refine instructions of cs_free() to reflect the newly added API cs_malloc() by Nguyen Anh Quynh · 10 years ago
  36. 5cb3d64 refine some API instructions for capstone.h by Nguyen Anh Quynh · 10 years ago
  37. 43efc45 code style by Nguyen Anh Quynh · 10 years ago
  38. 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
  39. c64d629 mips: remove MIPS_REG_PC register. reviewed by Jay Oster by Nguyen Anh Quynh · 10 years ago
  40. 8fb2eab arm: some operands can get subtracted from base register, thus have '-' sign associated. this adds subtracted field into cs_arm_op to provide this info. issue reported by Yegor Derevenets by Nguyen Anh Quynh · 10 years ago
  41. 993f362 New API: cs_disasm_iter by hlide · 10 years ago
  42. 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
  43. aa58f7f typo fix for capstone.h by Nguyen Anh Quynh · 10 years ago
  44. acbafc6 ocaml/python/java: fix some broken arm64 constants generated by const_generator.py by Nguyen Anh Quynh · 10 years ago
  45. 54f8cef mips: add JR.HB & JALR.HB instructions. also update Ocaml/Python/Java bindings by Nguyen Anh Quynh · 10 years ago
  46. 5691dd4 mips: fixed & added new instructions. also updated Ocaml/Python/Java bindings by Nguyen Anh Quynh · 10 years ago
  47. 7e57e79 ppc: handle branch condition for alias instructions. this also updates Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  48. 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
  49. eaecfa4 ppc: add PPC_INS_BNE for alias instruction BNE by Nguyen Anh Quynh · 10 years ago
  50. 2c425fc correct an incorrect comment on default value of skipdata mnem: .db -> .byte. bug reported by Ben Nagy by Nguyen Anh Quynh · 10 years ago
  51. 721d07f ppc: support alias instructions. update Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  52. 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
  53. 4f0d704 arm64: vector_index = 0 is valid. this changed invalid value of vector_index to -1 by Nguyen Anh Quynh · 10 years ago
  54. 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
  55. 934e180 x86: more update to the core by Nguyen Anh Quynh · 10 years ago
  56. a7792ae systemz: update core. also update Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  57. c286b34 Merge branch 'arm64' into v3 by Nguyen Anh Quynh · 10 years ago
  58. 0efef5d solve some conflicts when merging -next into -v3 by Nguyen Anh Quynh · 10 years ago
  59. 46a74e5 arm64: update core. this added a lot more details to cs_arm64_op struct by Nguyen Anh Quynh · 10 years ago
  60. 78c4876 Merge branch 'cs_insn_const' of https://github.com/obs1dium/capstone into next by Nguyen Anh Quynh · 10 years ago
  61. 876b6b6 use const when passing cs_insn pointers by obs · 10 years ago
  62. 6638294 x86: return proper error if cs_option() enables AT&T syntax but AT&T support is opt-out at compile time by Nguyen Anh Quynh · 10 years ago
  63. a726402 sparc: update core. this added/removed some instructions & groups. updated Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  64. 91a6477 ppc: fix a mistake on interpreting CR registers by deleting CR8 -> CR31 by Nguyen Anh Quynh · 10 years ago
  65. dd3deec ppc: update core. this added new instructions, groups & registers. updated Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  66. 0f0eb98 mips: update core. this added bunch of new instructions & groups. updated Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  67. 7c089fd arm: add new mode CS_MODE_MCLASS for Cortex-M series. updated Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  68. b52f11f arm: update core. this added a new instruction UDF. also updated Python+Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  69. fd0f798 bump API & package version to 3.0 by Nguyen Anh Quynh · 10 years ago
  70. 0b69038 x86: update core with upstream. this added bunch of new instructions & groups. also updated Python & Java bindings after the core change by Nguyen Anh Quynh · 10 years ago
  71. 027afdc Change the prototype of the callback in SKIPDATA option. Suggested by Ben Nagy. by Nguyen Anh Quynh · 10 years ago
  72. 0df7e93 Change the prototype of the callback in SKIPDATA option. Suggested by Ben Nagy. by Nguyen Anh Quynh · 10 years ago
  73. 994f336 ppc: rename PC_BH_NO to PC_BH_INVALID for consistency by Nguyen Anh Quynh · 10 years ago
  74. dfc94e1 ppc: add PPC_BC_INVALID by Nguyen Anh Quynh · 10 years ago
  75. 650f96c add new API cs_group_name() to return group name in string, given the group id by Nguyen Anh Quynh · 10 years ago
  76. e105594 x86: update comments for prefix[] & opcode[] fields of cs_x86 by Nguyen Anh Quynh · 10 years ago
  77. 9f6ed71 x86: add @rex to cs_x86 struct. updated python & java binding for this change by Nguyen Anh Quynh · 10 years ago
  78. 1a66fec x86: support avx_sae & avx_rm in cs_x86 struct. this also updates Python & Java bindings following the core's change by Nguyen Anh Quynh · 10 years ago
  79. 12e6e31 x86: rename zero_opmask of cs_x86_op to avx_zero_opmask by Nguyen Anh Quynh · 10 years ago
  80. 2b338ce x86: update some comments on x86.h by Nguyen Anh Quynh · 10 years ago
  81. 92a3d4c x86: add AVX's zero_opmask to cs_x86_op struct. updated Python & Java bindings for this change by Nguyen Anh Quynh · 10 years ago
  82. 4c5eabc x86: support SSE_CC & AVX_CC in cs_x86 struct. this also updates Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  83. 0d71645 x86: add avx_bcast to cs_x86_op to support AVX512 instructions. this also updates Python & Java binding by Nguyen Anh Quynh · 10 years ago
  84. bb6440c x86: extend cs_x86.opcode to 4 bytes to contain EVEX opcode. this also updates Python binding following this interface change by Nguyen Anh Quynh · 10 years ago
  85. d29aa62 x86: correct comments on x86_op_mem.scale by Nguyen Anh Quynh · 10 years ago
  86. 14ba46b x86: add segment to x86_op_mem struct. this fixes a bug in generating detail for instructions with segment override. bug reported by Sean Heelan. by Nguyen Anh Quynh · 10 years ago
  87. fb15221 x86: cs_x86.prefix[] should have size 4, not 5 by Nguyen Anh Quynh · 10 years ago
  88. 1085073 x86: remove disp_size, imm_size, op_size. add size to each operand. thanks Gabriel Quadros for some nice ideas by Nguyen Anh Quynh · 10 years ago
  89. 73bbbb3 arm: add ASRS, LSRS, VCLE, VCLT instructions. update Python & Java bindings at the same time by Nguyen Anh Quynh · 10 years ago
  90. 3a7c136 Fixed SPARC compilation by schwoop · 10 years ago
  91. 8a26bd3 Fix for GCC MIPS toolchain by schwoop · 10 years ago
  92. 4aacbea Merge branch 'next' into cmake2 by Nguyen Anh Quynh · 10 years ago
  93. a19d3f0 Merge branch 'feature/x86-groups' of https://github.com/parasyte/capstone into test by Nguyen Anh Quynh · 10 years ago
  94. 10053ba Modified CMakeLists.txt to re-enable support for building both static and shared versions of the library. by Ali Rizvi-Santiago · 10 years ago
  95. 1969b83 windows: expose public APIs with dllimport for user apps by Nguyen Anh Quynh · 10 years ago
  96. 0ea020e cmake: do not define dllimport by Nguyen Anh Quynh · 10 years ago
  97. 07c3693 cmake: properly export public APIs in capstone.DLL. thanks to Daniel Pistelli for helping to fix this issue by Nguyen Anh Quynh · 10 years ago
  98. 4c0ed0b correct capstone.h on the old already-renamed op_info[] arrays by Nguyen Anh Quynh · 10 years ago
  99. 6f74ccc Add new x86 instruction groups by Jay Oster · 10 years ago
  100. be2b788 xcore: handle details for some special tricky instructions by Nguyen Anh Quynh · 10 years ago