1. e4c0f6c CMake: bump version to 3.0.1 by Nguyen Anh Quynh · 9 years ago
  2. 4e0d2f3 update CREDITS.TXT by Nguyen Anh Quynh · 9 years ago
  3. 84fc740 python: port some old fixes from setup.py on pypi branch to v3 branch by Nguyen Anh Quynh · 9 years ago
  4. ce10b01 python: fix setup.py, so we only copy the core with sdist, thus normal build/compile process does not build the core by Nguyen Anh Quynh · 9 years ago
  5. 19af3ec Makefile: rename BUILD_CORE_ONLY to CAPSTONE_BUILD_CORE_ONLY for consistency by Nguyen Anh Quynh · 9 years ago
  6. 08a21a6 python: fix README (libcapstone.dll -> capstone.dll) by Nguyen Anh Quynh · 9 years ago
  7. 1b8cc8d reverse -b option in Makefile; parse parameters with parse_known_args to ignore error when passing extra options; fixbug python3: use print statement by Nguyen Tan Cong · 9 years ago
  8. b54c60c Edit Makefile to appropriate with new setup.py by Nguyen Tan Cong · 9 years ago
  9. 60dcfa0 add --do-not-build-core to setup.py to prevent it install core library by Nguyen Tan Cong · 9 years ago
  10. 8b839a2 edit script to create Pypi package by Nguyen Tan Cong · 9 years ago
  11. af19b53 python: make setup.py support other *nix systems (i.e non-Windows) by Nguyen Anh Quynh · 9 years ago
  12. 53e9293 python: build the core with make.sh for all non-Windows system by Nguyen Anh Quynh · 9 years ago
  13. ac0cb81 python: prevent Windows system copying *nix core library to Python library directory by Nguyen Tan Cong · 9 years ago
  14. 3e605a0 python: fix another conflict when merging pypi to v3 by Nguyen Tan Cong · 9 years ago
  15. 8d4a78c python: setup.py should not install the core, and no need to put BUILD_CORE_ONLY into config.mk by Nguyen Anh Quynh · 9 years ago
  16. 243d41e fix BUILD_CORE_ONLY option of Makefile, so we can do 'BUILD_CORE_ONLY=yes make.sh' by Nguyen Anh Quynh · 9 years ago
  17. 3d6e56a python: fix conflict when merging pypi branch to v3 branch by Nguyen Tan Cong · 9 years ago
  18. 30f0858 fixbug: wrong library extension on Mac OS X by Nguyen Tan Cong · 10 years ago
  19. f051e8f python: another conflict on API version between pypi & v3 branch by Michael Cohen · 10 years ago
  20. aac18de python: fix a conflict when cherry-pick code from old pypi branch by Michael Cohen · 10 years ago
  21. 18ee47b Updated setup.py so it can build the capstone library by itself. by Michael Cohen · 10 years ago
  22. e26d559 Merge branch 'master' into v3 by Nguyen Anh Quynh · 10 years ago
  23. 9426ad5 arm: add few more post-indexed instructions doing writeback by Nguyen Anh Quynh · 10 years ago
  24. 7bbb433 arm: fix a bug in the last commit by Nguyen Anh Quynh · 10 years ago
  25. e19490e arm: some load/store instructions writeback without bang letter. bug reported by @jabba2989 by Nguyen Anh Quynh · 10 years ago
  26. b449e54 Set _detail in a dummy Cs, closes #251 by Aidan Hobson Sayers · 10 years ago
  27. b238628 Merge pull request #252 from aidanhs/aphs-fix-dummy-cs by Nguyen Anh Quynh · 10 years ago
  28. dbeeaf7 Set _detail in a dummy Cs, closes #251 by Aidan Hobson Sayers · 10 years ago
  29. 50c3823 - Fixed memory leak for cython disasm functions by Josh · 10 years ago
  30. f2157de arm: in Thumb mode, ADC & SBC do not update flags. bug reported by @jabba2989 by Nguyen Anh Quynh · 10 years ago
  31. e95a766 x86: remove some instructions unsupported in 3.x version by Nguyen Anh Quynh · 10 years ago
  32. 273c6f4 arm64 & sparc: fix some warnings reported by MSVC by Nguyen Anh Quynh · 10 years ago
  33. 9a1238d suite: fix an compilation warning reported by MSVC on test_arm_regression.c by Nguyen Anh Quynh · 10 years ago
  34. 25525fb x86: remove some instructions irrelevant for LOCK prefix in invalidPrefix() by Nguyen Anh Quynh · 10 years ago
  35. 7de172d x86: properly handle REP, REPNE & REPNZ prefixes by Nguyen Anh Quynh · 10 years ago
  36. 29f41da x86: add more valid instructions for LOCK prefix by Andrew Wesie · 10 years ago
  37. 5323128 x86: check for invalid instructions with LOCK prefix by Nguyen Anh Quynh · 10 years ago
  38. 18dfc19 Merge branch 'v3' of https://github.com/aquynh/capstone into v3 by Nguyen Anh Quynh · 10 years ago
  39. 0c30daf arm64: BL & BLR do not read SP register by Nguyen Anh Quynh · 10 years ago
  40. 78d6400 cython: fix incomplete array of bytes returned by CsInsn.bytes. bug reported by @secretsquirrel by Nguyen Anh Quynh · 10 years ago
  41. 599b559 x86: fix some compilation issues about missing instructions on CAPSTONE_X86_REDUCE setup by Nguyen Anh Quynh · 10 years ago
  42. 2c24d88 fixed bug that prevented using md.detail = true and md.skipdata = true together by Maciej Szawlowski · 10 years ago
  43. 07526e9 arm: Thumb BL & BLX read ARM_REG_PC instead of ARM_REG_SP. by derrek · 10 years ago
  44. c51e04f x86: support CR9-CR15 registers by Nguyen Anh Quynh · 10 years ago
  45. db684b2 arm: BL & BLX do not read SP, but PC register. issue reported by Der Rek by Nguyen Anh Quynh · 10 years ago
  46. 7ca66a4 bump package version to 3.0.1 by Nguyen Anh Quynh · 10 years ago
  47. 9f694cc x86: handle undocumented immediates for (v)cmpps/pd/ss/sd instructions by Nguyen Anh Quynh · 10 years ago
  48. d319c11 x86: more encodings for FXCH & FCOMP. also print LJUMP without * as prefix for Intel syntax. handle BOUND & FARCALL better by Nguyen Anh Quynh · 10 years ago
  49. 5f8c423 x86: add missing CR8-CR15 registers to arch/X86/X86DisassemblerDecoder.h by Nguyen Anh Quynh · 10 years ago
  50. 2ac7941 x86: handle REX properly for segment related instructions by ignoring REX.r entirely by Nguyen Anh Quynh · 10 years ago
  51. 80959c9 code style by Nguyen Anh Quynh · 10 years ago
  52. 0948114 x86: handle REX properly for x64 MMX related instructions by ignoring REX.b & REX.w entirely by Nguyen Anh Quynh · 10 years ago
  53. c9c3fdc arm64: print ADR with absolute address. bug reported by blackboxer123 by Nguyen Anh Quynh · 10 years ago
  54. 5175423 x86: check instruction size <=15 as soon as possible by Nguyen Anh Quynh · 10 years ago
  55. 3539595 x86: instruction length must be <= 15 by Nguyen Anh Quynh · 10 years ago
  56. a3d689d x86: allow to mix REX & legacy prefix repeatedly in any order by Nguyen Anh Quynh · 10 years ago
  57. 674db4c ppc: fix some compilation bugs when DIET mode is enable by Nguyen Anh Quynh · 10 years ago
  58. 10ecdae x86: support some new instructions or new encodings of some new instructions: MOVSXD, FXCH, FCOM, FCOMP, FSTP, FSTPNCE, NOP by Nguyen Anh Quynh · 10 years ago
  59. 145efa5 Merge branch 'next' into rex by Nguyen Anh Quynh · 10 years ago
  60. 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
  61. 58831e8 Merge branch 'next' into rex by Nguyen Anh Quynh · 10 years ago
  62. 611b0c5 code style by Nguyen Anh Quynh · 10 years ago
  63. dfde75c Merge branch 'out_of_mem_fix' of https://github.com/nedwill/capstone into next by Nguyen Anh Quynh · 10 years ago
  64. f1e4975 check malloc return value by Edward Williamson · 10 years ago
  65. 1016d32 x86: only eliminate REX prefixes if next byte is not a legacy prefix by Nguyen Anh Quynh · 10 years ago
  66. 1cbc222 x86: eliminate redundant REX prefixes in front of x86_64 instruction. bug reported by Aurélien Wailly by Nguyen Anh Quynh · 10 years ago
  67. 03a1836 arm64: set absolute (rather than relative) address B/BL. issue reported by Pancake by Nguyen Anh Quynh · 10 years ago
  68. c2925e9 x86: accept more than one REX prefix for x86_64. bug reported by Aurélien Wailly. thanks Ange Albertini for help by Nguyen Anh Quynh · 10 years ago
  69. 073a3dd package: update Brew formula (copied from Homebrew repo) by Nguyen Anh Quynh · 10 years ago
  70. 03fb6f3 x86: MOV32sm should reference word rather than dword. bug reported by Andrew Wesie by Nguyen Anh Quynh · 10 years ago
  71. 1befd75 x86: reverse the order of operands for alias instruction IMUL in Intel syntax. bug reported by Andrew Wesie by Nguyen Anh Quynh · 10 years ago
  72. 9578185 x86: add missing operands in detail mode for 'IN/OUT reg, reg' instructions. bug reported by Andrew Wesie by Nguyen Anh Quynh · 10 years ago
  73. 2ce4da3 x86: fix the last bug on PUSH/POP <segment> for ATT syntax by Nguyen Anh Quynh · 10 years ago
  74. b32515d x86: add missing operands in detail mode for PUSH/POP <segment> instructions. bug reported by Andrew Wesie by Nguyen Anh Quynh · 10 years ago
  75. 5b981a4 x86: also fix AT&T syntax for the last MOV32ms bug by Nguyen Anh Quynh · 10 years ago
  76. 344d5e2 Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 10 years ago
  77. ba31f26 x86: MOV32ms should reference word rather than dword. bug reported by Gabriel Quadros by Nguyen Anh Quynh · 10 years ago
  78. 3caf837 arm: alias LDR instruction with operands '[sp], 4' to POP. suggested by Pancake by Nguyen Anh Quynh · 10 years ago
  79. a2934a7 arm: print immediate op of MVN instruction in positive hexadecimal form. issue reported by Pancake by Nguyen Anh Quynh · 10 years ago
  80. 4e732c7 Populate PowerPC slwi/srwi instruction details with SH operand. by Peter Mackay · 10 years ago
  81. c00bc2e fix the left-over C89 issues introduced by Pedro by Nguyen Anh Quynh · 10 years ago
  82. 07532bd Merge branch 'master' of https://github.com/gdbinit/capstone into fix by Nguyen Anh Quynh · 10 years ago
  83. 68197d9 Make it C89 compatible. by reverser · 10 years ago
  84. 202da41 Fix compiler warnings about different sizes and sign. by reverser · 10 years ago
  85. 8ab0136 python: export generic operand types & groups by Nguyen Anh Quynh · 10 years ago
  86. b53a59a update ChangeLog for 3.0 by Nguyen Anh Quynh · 10 years ago
  87. 8122218 merge next branch by Nguyen Anh Quynh · 10 years ago
  88. 8946029 python: python2.6 does not understand sys.versionn_info.major by Nguyen Anh Quynh · 10 years ago
  89. 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
  90. fadbddc update ChangeLog for 3.0 by Nguyen Anh Quynh · 10 years ago
  91. 22278ec mips & xcore: some safety guards to make sure printOperand() do not overflow Operands[] for some unknown reasons by Nguyen Anh Quynh · 10 years ago
  92. d83c8c7 suite: change CS_MODE_32 -> CS_MODE_MIPS32, CS_MODE_64 -> CS_MODE_MIPS64 for fuzz.py & benchmark.py by Nguyen Anh Quynh · 10 years ago
  93. 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
  94. 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
  95. aa50c64 arm64: fix ADRP (relative offset). bug reported by @shadymallow by Nguyen Anh Quynh · 10 years ago
  96. 57a902d suite: add crc32 instruction to x86odd.py by Nguyen Anh Quynh · 10 years ago
  97. b008229 suite: add some tricky x86 code to x86odd.py by Nguyen Anh Quynh · 10 years ago
  98. bb77154 Merge branch 'next' of https://github.com/aquynh/capstone into next by Nguyen Anh Quynh · 10 years ago
  99. 2328095 arm64: cleanup by Nguyen Anh Quynh · 10 years ago
  100. 736762d update COMPILE.TXT to add more bindings by Nguyen Anh Quynh · 10 years ago