1. 8b012d5 arm: fix issue #459 reported by Ahmed Garhy by Nguyen Anh Quynh · 9 years ago
  2. ded1577 arm: fix an warning on conversion from uint64_t to bool. issue reported by @yegord by Nguyen Anh Quynh · 9 years ago
  3. 9d60607 inttypes.h fix by Cr4sh · 9 years ago
  4. b756aed arm: fix some warnings reported by MSVC by Nguyen Anh Quynh · 9 years ago
  5. 5598301 Correct printAM3PreOrOffsetIndexOp disp value by pzread · 9 years ago
  6. 9426ad5 arm: add few more post-indexed instructions doing writeback by Nguyen Anh Quynh · 10 years ago
  7. 7bbb433 arm: fix a bug in the last commit by Nguyen Anh Quynh · 10 years ago
  8. e19490e arm: some load/store instructions writeback without bang letter. bug reported by @jabba2989 by Nguyen Anh Quynh · 10 years ago
  9. 3caf837 arm: alias LDR instruction with operands '[sp], 4' to POP. suggested by Pancake by Nguyen Anh Quynh · 10 years ago
  10. a2934a7 arm: print immediate op of MVN instruction in positive hexadecimal form. issue reported by Pancake by Nguyen Anh Quynh · 10 years ago
  11. 1ffc1b2 arm: fix printMemBOption() that was wrongly fixed in 51888c3e0824dfcc7571d84fda303a8504763e2d by Nguyen Anh Quynh · 10 years ago
  12. 51888c3 arm: fix some bugs reported by VS2010. thanks Axel for testing by Nguyen Anh Quynh · 10 years ago
  13. 8cdafda arm: add new field mem_barrier to cs_arm struct. this requires changes in bindings by Nguyen Anh Quynh · 10 years ago
  14. 278e727 arm: print immediate in positive form for AND/ORR/EOR/BIC instructions by Nguyen Anh Quynh · 10 years ago
  15. 2ac5d79 arm: print floating point number in %e format by Nguyen Anh Quynh · 10 years ago
  16. 6acaaa5 arm: printAddrMode5Operand() is wrong on calculating subtracted variable by Nguyen Anh Quynh · 10 years ago
  17. d865f39 arm: use lowercase for special registers by Nguyen Anh Quynh · 10 years ago
  18. 2593e22 arm: support V8 as a mode for A32 encodings by Nguyen Anh Quynh · 10 years ago
  19. 8bf5fa6 arm: remove dead code by Nguyen Anh Quynh · 10 years ago
  20. b0cc71d bindings: update java/ocaml/python after the last change in Arm's core by Nguyen Anh Quynh · 10 years ago
  21. 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
  22. 4e87675 arm: relative branch should not be negative. bug reported by @acez by Nguyen Anh Quynh · 10 years ago
  23. ced9d24 Workaround missing <inttypes.h> on MSVC 2010 by Yegor Derevenets · 10 years ago
  24. 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
  25. 07c92ec fix warnings reported by MSVC by Nguyen Anh Quynh · 10 years ago
  26. b52f11f arm: update core. this added a new instruction UDF. also updated Python+Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  27. 0c235e1 arm: some simple improvements & cleanups by Nguyen Anh Quynh · 10 years ago
  28. 26dfbc6 fix indentation introduced by the latest merge. also move test_arm_regression.c into suite/arm/ and add Makefile for it by Nguyen Anh Quynh · 10 years ago
  29. 298d413 * added a test file to suite for testing invalid and valid instruction sequences by flyingsymbols · 10 years ago
  30. 73eb5d5 arm: op_addImm() is called only when detail mode is ON by Nguyen Anh Quynh · 10 years ago
  31. ebe2443 arm: some special instructions need to have numerical operand added manually in printInstruction() by Nguyen Anh Quynh · 10 years ago
  32. 8693fcd arm: correct operand setup for REG type in printAddrMode3OffsetOperand() by Nguyen Anh Quynh · 10 years ago
  33. 495295e MCInst_Init() is arch-independent by Nguyen Anh Quynh · 10 years ago
  34. 9678705 arm: convert MCOperand_CreateReg() to MCOperand_CreateReg0() to avoid malloc/free by Nguyen Anh Quynh · 10 years ago
  35. 8c1104b arm: do not use markup by Nguyen Anh Quynh · 10 years ago
  36. dd9225b arm: use SStream_concat0() for SStream_concat() whereever possible for better performance by Nguyen Anh Quynh · 10 years ago
  37. 29fd0f6 fix all the code in other non-X86 archs after the change made by commit 5329a6ffd485ce4b06305c1b104df5a0adab57e6 by Nguyen Anh Quynh · 10 years ago
  38. 30c0659 optimize memset() of MCInst_Init() by Nguyen Anh Quynh · 10 years ago
  39. c70442e arm: shift info associates with the right op in LDR instruction. bug reported by Daniel Colascione by Nguyen Anh Quynh · 10 years ago
  40. a04ee4f arm: add missing the check for detail mode in the last commit by Nguyen Anh Quynh · 10 years ago
  41. b79d915 arm: add missing operand info for Thumb instruction vldr. bug reported by Daniel Colascione by Nguyen Anh Quynh · 10 years ago
  42. bb71c13 arm: add missing operand info for Thumb instruction LDR involving label. bug reported by Daniel Colascione by Nguyen Anh Quynh · 10 years ago
  43. 6eb55cf arm: add operand details for 'mov pc, lr'. bug reported by Daniel Colascione by Nguyen Anh Quynh · 10 years ago
  44. 48b6cb4 arm: CC_AL is the default code condition for instructions without CC. bug reported by Daniel Colascione by Nguyen Anh Quynh · 10 years ago
  45. 5e2e660 fix some warnings reported by Coverity by Nguyen Anh Quynh · 10 years ago
  46. 6456481 x86: add immediate operand (1) for SHL/SHR/ROR/ROL/SAR/SAL in detail mode & Intel syntax by Nguyen Anh Quynh · 10 years ago
  47. c5cad6c avoid using stdbool.h to support compilers without C99 support by Nguyen Anh Quynh · 10 years ago
  48. 8598a21 enable arch code from source with CAPSTONE_HAS_* for MSVC to pick up by Nguyen Anh Quynh · 10 years ago
  49. 638835a fix some warnings reported by MSVC by Nguyen Anh Quynh · 10 years ago
  50. bb0744d do not initialize some local vars unnecessarily. this problem was introduced when we fixed C89 issues for MSVC by Nguyen Anh Quynh · 10 years ago
  51. b5e7db5 Merge branch 'next' into msvc2 by Nguyen Anh Quynh · 10 years ago
  52. bc80b3d arm: fix some more Thumb relative branch instructions. bug reported by Giovanni Nanomad Condello by Nguyen Anh Quynh · 10 years ago
  53. 42706a3 indentation with tab by Nguyen Anh Quynh · 10 years ago
  54. 779d4c7 first changes to get a successfully compiled version of capstone on VS2012 by Axel 0vercl0k Souchet · 10 years ago
  55. 79e1dcb arm: update target branch having relative offset. issue reported by Giovanni Condello by Nguyen Anh Quynh · 10 years ago
  56. a247dc1 arm: print address Imm without prefix 0x for Imm >= -9 by Nguyen Anh Quynh · 10 years ago
  57. 40f72fd arm: do not update target branch with relative offset by Nguyen Anh Quynh · 10 years ago
  58. ffff756 arm: more fix to print negative numbers in more friendly way by Nguyen Anh Quynh · 10 years ago
  59. f6c7cbc core: fix some warnings by Nguyen Anh Quynh · 10 years ago
  60. 2ff665a arm: support asm syntax CS_OPT_SYNTAX_NOREGNAME to print out registers with numbers (ex: 'r11' rather than 'fp') by Nguyen Anh Quynh · 10 years ago
  61. 43befa0 arm: no longer rely on information from @groups to verify relative instructions by Nguyen Anh Quynh · 10 years ago
  62. aa078a1 more fixes on C coding style by Nguyen Anh Quynh · 11 years ago
  63. 46018db Initial set of changes to support building with MSVC 2013. Right now there's a bunch fo assumptions in the .vcxproj file and some things are not as clean as they should be, but it does build a full build and works (at least the x86 side). The point of this initial checkpoint is to make sure that nothing breaks on the GCC side, that everyone is ok with the changes to the source (or if better fixes/typing can be done). by Alex Ionescu · 11 years ago
  64. 3732725 rename mapping.c, mapping.h, module.c to have arch prefix. suggested by Alex Ionescu by Nguyen Anh Quynh · 11 years ago
  65. 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
  66. 1acfd0b move insn_cache into cs_struct to gurantee thread-safe by Nguyen Anh Quynh · 11 years ago
  67. c740407 move internal memory management declarations from utils.h to cs_priv.h by Nguyen Anh Quynh · 11 years ago
  68. 24bf0d9 add new option CS_OPT_MEM for cs_option(): this enable user-defined dynamic memory management. idea proposed by Pancake by Nguyen Anh Quynh · 11 years ago
  69. 5ef633c arm64 & arm: do not update details when detail option is off. bug reported by Pancake. by Nguyen Anh Quynh · 11 years ago
  70. 19b0de3 moving static doing_mem variable into cs_struct to guarantee thread-safe when handling memory operands by Nguyen Anh Quynh · 11 years ago
  71. 04ac9c3 arm,arm64,mips,x86: rename PPC_getFeatureBits() to getFeatureBits() by Nguyen Anh Quynh · 11 years ago
  72. 42c6b1a initial support for PPC by Nguyen Anh Quynh · 11 years ago
  73. 4fe224b change API cs_disasm_dyn(): break cs_insn into 2 structures, and put all details into new structure cs_detail. this break API compatibility by Nguyen Anh Quynh · 11 years ago
  74. 3d5930f arm: fix some int types and string specifiers by Nguyen Anh Quynh · 11 years ago
  75. 4d3e852 detail option: provide instruction id even when detail option is OFF by Nguyen Anh Quynh · 11 years ago
  76. a209e67 support to turn on/off building instruction details by Nguyen Anh Quynh · 11 years ago
  77. a01d154 x86: handle outs instruction in 16bit mode by Nguyen Anh Quynh · 11 years ago
  78. f0e4eed Use const on all read-only buffers by pancake · 11 years ago
  79. 462f291 ARM: Fix bunch of issues by Nguyen Anh Quynh · 11 years ago
  80. 6677b99 arm: fix a wrong calculation on sign of .disp value in mem reference by Nguyen Anh Quynh · 11 years ago
  81. 173ed2b arm: upgrade core engine by Nguyen Anh Quynh · 11 years ago
  82. b42a657 change cs_disasm() and cs_disasm_dyn() to be portable API. fix related code using these API by Nguyen Anh Quynh · 11 years ago
  83. 741a9de arm: print immediate as 32bit rather than 64bit number. fix the bug reported by LongLD by Nguyen Anh Quynh · 11 years ago
  84. 26ee41a initial import by Nguyen Anh Quynh · 11 years ago