1. 4e20e8e x86: 0x66 & 0x67 cannot be anywhere. this fixes CRC32 instruction by Nguyen Anh Quynh · 10 years ago
  2. 19c63bc x86: hacky temporarily fix for FEMMS instruction (3DNow). bug reported by Ben Nagy by Nguyen Anh Quynh · 10 years ago
  3. 9cc8787 x86: RET imm16 comes with positive number by Nguyen Anh Quynh · 10 years ago
  4. ff7bba3 x86: print out immediate as positive number for logic arithmetic operations: AND, OR, XOR. only works for x86 Intel syntax so far. issue reported by Pancake by Nguyen Anh Quynh · 10 years ago
  5. b87f855 x86: print negative number in memory reference address (more friendly). issue reported by @pancake by Nguyen Anh Quynh · 10 years ago
  6. c2ea812 fix cs_group_name() after the change on generic group ids by Nguyen Anh Quynh · 10 years ago
  7. 85cfb18 x86: get rid of redundant X86_INS_LOCK/REP/RENE. issue reported by Pancake by Nguyen Anh Quynh · 10 years ago
  8. a90b047 x86: simplify printPCRelImm() in calculating absolute address. also fix the issue on AT&T syntax by Nguyen Anh Quynh · 10 years ago
  9. ea3c089 some simple optimizations for speed. this improves performance about 5% by Nguyen Anh Quynh · 10 years ago
  10. a92d2cb x86: properly calculate absolute addresses of relative CALL & JMP. thanks Pedro for valuable helps by Nguyen Anh Quynh · 10 years ago
  11. c96f1b0 x86: fix Out-of-bounds read error in is16BitEquivalent(). issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  12. 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
  13. a4da895 x86: relative CALL should print out absolute addresses. bug reported by @acez by Nguyen Anh Quynh · 10 years ago
  14. ced9d24 Workaround missing <inttypes.h> on MSVC 2010 by Yegor Derevenets · 10 years ago
  15. 41de05c x86: correct x86_16_bit_eq_tbl[] & x86_16_bit_eq_lookup[]. idea & code provided by @obs1dium by Nguyen Anh Quynh · 10 years ago
  16. 72bbcac x86: temporarily solve conflicts caused by the last merge by Nguyen Anh Quynh · 10 years ago
  17. 1f196d1 x86: CALLpcrel32 should be outputed as 'callq' in 64bit mode in AT&T syntax. ported from upstream by Nguyen Anh Quynh · 10 years ago
  18. 9728200 x86: cpuid, xsetbv, xgetbv involve 32bit registers, not 64bit registers. by Nguyen Anh Quynh · 10 years ago
  19. 934e180 x86: more update to the core by Nguyen Anh Quynh · 10 years ago
  20. c44aced x86: properly zero-out x86.operands[] by Nguyen Anh Quynh · 10 years ago
  21. 14b684e last commit missed a check by Nguyen Anh Quynh · 10 years ago
  22. b1e87e3 arm, mips, ppc, spac, x86: printAliasInstr() should handle \t (besides space) as separate char between mnemonic & operands by Nguyen Anh Quynh · 10 years ago
  23. c286b34 Merge branch 'arm64' into v3 by Nguyen Anh Quynh · 10 years ago
  24. 0efef5d solve some conflicts when merging -next into -v3 by Nguyen Anh Quynh · 10 years ago
  25. ffb6b23 x86: add SMAP group for CLAC/STAC instructions by Nguyen Anh Quynh · 10 years ago
  26. 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
  27. a65e77b Merge branch 'no_att' of https://github.com/obs1dium/capstone into next by Nguyen Anh Quynh · 10 years ago
  28. 2725a3f X86GenInstrInfo size reduction by obs · 10 years ago
  29. b7e2ff4 x86.operands array wasn't fully cleared by obs · 10 years ago
  30. 86e8450 renamed CAPSTONE_NO_ATT to CAPSTONE_X86_ATT_DISABLE, added options to makefile, cmake, compile.txt by baguette · 10 years ago
  31. 4f412c4 Selectively disable AT&T syntax in non-diet mode to reduce library size by baguette · 10 years ago
  32. 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
  33. 48eb7a6 x86: INTO is invalid in 64bit mode. bug reported by Pancake & Ange Albertini by Nguyen Anh Quynh · 10 years ago
  34. 650f96c add new API cs_group_name() to return group name in string, given the group id by Nguyen Anh Quynh · 10 years ago
  35. bb8bbaa x86: test reg, [mem] -> test [mem], reg. bug reported by Gabriel Quadros by Nguyen Anh Quynh · 10 years ago
  36. dbdb61a x86: regs_write[] of RDTSC & RDTSCP depend on @mode by Nguyen Anh Quynh · 10 years ago
  37. 9f6ed71 x86: add @rex to cs_x86 struct. updated python & java binding for this change by Nguyen Anh Quynh · 10 years ago
  38. 32e2c6c x86: address-size prefix should override RIP relative address in x64 mode. bug reported by @hlide by Nguyen Anh Quynh · 10 years ago
  39. ed6b8c5 x86: address-size prefix should override RIP relative address in x64 mode. bug reported by @hlide by Nguyen Anh Quynh · 10 years ago
  40. 656ebc9 x86: handle RIP relative addressing in 64bit mode properly. bug reported by @hlide by Nguyen Anh Quynh · 10 years ago
  41. af6db2a x86: handle RIP relative addressing in 64bit mode properly. bug reported by @hlide by Nguyen Anh Quynh · 10 years ago
  42. 7ef3700 x86: SHL reg, 1 has one too many operands. bug reported by Sean Heelan by Nguyen Anh Quynh · 10 years ago
  43. 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
  44. 12e6e31 x86: rename zero_opmask of cs_x86_op to avx_zero_opmask by Nguyen Anh Quynh · 10 years ago
  45. 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
  46. f1ec526 x86: provide size for X86_OP_IMM operand. thank Gabriel Quadros for some suggestions by Nguyen Anh Quynh · 10 years ago
  47. e1aba17 x86: fix all {cc} instructions to have correct instruction ID by Nguyen Anh Quynh · 10 years ago
  48. 4c5eabc x86: support SSE_CC & AVX_CC in cs_x86 struct. this also updates Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  49. 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
  50. 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
  51. 15b746f x86: op_addReg() & op_addImm() only work when detail mode is ON by Nguyen Anh Quynh · 10 years ago
  52. c74ec28 x86: LEA for 16bit register should have pointer size of word, not dword. bug reported by Gabriel Quadros by Nguyen Anh Quynh · 10 years ago
  53. 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
  54. eb2f3fb x86: properly reset prefixPresent for prefix0/1 group by Nguyen Anh Quynh · 10 years ago
  55. 1e688d4 x86: do not use markup in AT&T syntax by Nguyen Anh Quynh · 10 years ago
  56. 44db3c3 x86: support CS_OPT_MODE for dynamically changing mode at run-time by Nguyen Anh Quynh · 10 years ago
  57. 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
  58. cae09bf replace offset_of with offsetof from stddef.h by Nguyen Anh Quynh · 10 years ago
  59. 9cf8811 x86: InternalInstruction@xAcquireRelease should be initialized to 0 (FALSE) by Nguyen Anh Quynh · 10 years ago
  60. 69582d7 initialize cs_insn.detail by properly zero-out right members for each arch by Nguyen Anh Quynh · 10 years ago
  61. 5329a6f directly update cs_insn from MCInst interface to avoid multiple memcpy() by Nguyen Anh Quynh · 10 years ago
  62. 8cae86c x86: copy prefix back after updating it in X86_lockrep() by Nguyen Anh Quynh · 10 years ago
  63. 22a5a76 x86: simplify byteReader_t by Nguyen Anh Quynh · 10 years ago
  64. 5474d87 x86: optimize struct InternalInstruction for memset(). this improve performance by around 4% by Nguyen Anh Quynh · 10 years ago
  65. 0ad226e x86: fix a conflict when merging -next to -optimize branch by Nguyen Anh Quynh · 10 years ago
  66. cf08138 x86: more simplification on managing MCOperand. this also fixes a bug in handling memory reference instructions by Nguyen Anh Quynh · 10 years ago
  67. 0e534bf x86: correct the related comment of the last commit by Nguyen Anh Quynh · 10 years ago
  68. 9417ad6 x86: printDstIdx() should only print segment in non-64bit mode. bug reported by Filipe Cabecinhas (@filcab) by Nguyen Anh Quynh · 10 years ago
  69. e70a043 x86: more simplification for better performance by Nguyen Anh Quynh · 10 years ago
  70. 937e483 x86: avoid malloc/free MCOperand with new API of MCInst: MCInst_addOperand0, MCInst_CreateReg0, MCInst_CreateImm0 by Nguyen Anh Quynh · 10 years ago
  71. a62b9a0 x86: use SStream_concat0() where possible to improve performance - for AT&T and X86_REDUCE by Nguyen Anh Quynh · 10 years ago
  72. 46b6693 x86: save prefixes to avoid expensive copying loop. based on idea of Dang Hoang Vu by Nguyen Anh Quynh · 10 years ago
  73. b76233c avoid using vsnprintf when possible for SStream_concat() to improve performance. based on the idea of Dang Hoang Vu. by Nguyen Anh Quynh · 10 years ago
  74. 368c45b x86 instruction groups: Add SYSEXIT and SYSRET to the X86_GRP_IRET group by Jay Oster · 10 years ago
  75. a19d3f0 Merge branch 'feature/x86-groups' of https://github.com/parasyte/capstone into test by Nguyen Anh Quynh · 10 years ago
  76. 6b00344 x86 instruction groups: Fix RET/IRET mapping. by Jay Oster · 10 years ago
  77. 0577bb7 x86: ATT syntax does not print word size pointer like Intel syntax by Nguyen Anh Quynh · 10 years ago
  78. 6f74ccc Add new x86 instruction groups by Jay Oster · 10 years ago
  79. b70e121 x86: FP instructions are only available when X86_REDUCE mode is off by Nguyen Anh Quynh · 10 years ago
  80. 0150f06 x86: fix a warning on Diet mode by Nguyen Anh Quynh · 10 years ago
  81. d69f9de x86: delete dead code by Nguyen Anh Quynh · 10 years ago
  82. f721e31 Disassembler -> Disassembly by Nguyen Anh Quynh · 10 years ago
  83. 8f50ba8 Merge branch 'next' into xcore by Nguyen Anh Quynh · 10 years ago
  84. 04f2ec6 cleanup redundant headers included by Nguyen Anh Quynh · 10 years ago
  85. 2cf9c52 x86: MOV64rr belongs to GRP_MODE64 group. bug reported by Jason Oster by Nguyen Anh Quynh · 10 years ago
  86. 4ebd062 x86: cleanup unused code by Nguyen Anh Quynh · 10 years ago
  87. fed098f x86: eliminate irrelevant prefixes in x86.prefix[] - such as f2/f3 prefixed irrelevant instructions by Nguyen Anh Quynh · 10 years ago
  88. 1e93adf x86: add CL operand into details for 'SHL *, CL' instruction by Nguyen Anh Quynh · 10 years ago
  89. 7a65ad7 x86: detail operands for 'fstpnce st(0), st(0)' & 'fstpst(7), st(0)' by Nguyen Anh Quynh · 10 years ago
  90. b6e3f01 x86: handle REP MOVSD/CMPSD/SCASD/LODSD/STOSD properly (due to confused 128bit media instructions having the same mnemonics) by Nguyen Anh Quynh · 10 years ago
  91. 3a86d92 x86: correct instructions related to REP prefix by Nguyen Anh Quynh · 10 years ago
  92. 1d6f7ee x86: prefix REP/REPNE are only relevant for MOVS/CMPS/SCAS/LDOS/STOS/INS/OUTS instructions by Nguyen Anh Quynh · 10 years ago
  93. 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
  94. f338657 x86: set syntax variable when changing syntax with cs_option() by Nguyen Anh Quynh · 10 years ago
  95. c5cad6c avoid using stdbool.h to support compilers without C99 support by Nguyen Anh Quynh · 10 years ago
  96. 7bab8dc x86: AT&T syntax is irrelevant in Diet mode, so setting this syntax should return CS_ERR_DIET error by Nguyen Anh Quynh · 10 years ago
  97. f785026 x86: enable AT&T code only when DIET mode is off by Nguyen Anh Quynh · 10 years ago
  98. 0ffd811 merge next branch by Nguyen Anh Quynh · 10 years ago
  99. 5068908 x86: assembly syntax is irrelevant in Diet mode. this optimization reduces library size to only 180KB on OSX by Nguyen Anh Quynh · 10 years ago
  100. 8598a21 enable arch code from source with CAPSTONE_HAS_* for MSVC to pick up by Nguyen Anh Quynh · 10 years ago