1. f2b699a Don't add cr0 to the operand list as it's not displayed by the disassembly by kratolp · 10 years ago
  2. e96935e ppc: remove duplicate op_addReg() in printAliasInstrEx() by Nguyen Anh Quynh · 10 years ago
  3. 48eb13c ppc: add detail for alias instructions introduced in the latest change by @kratolp by Nguyen Anh Quynh · 10 years ago
  4. 6b731a0 fix conflicts when merging by Nguyen Anh Quynh · 10 years ago
  5. 630bcd6 ppc: c99 by Nguyen Anh Quynh · 10 years ago
  6. 70fa90f ppc: coding style by Nguyen Anh Quynh · 10 years ago
  7. 7383510 Merge branch 'next' of https://github.com/aquynh/capstone into next by kratolp · 10 years ago
  8. a3f0aef PPC: Fix absolute/relative offset for branch instruction by kratolp · 10 years ago
  9. e135056 fix a negative array index read in PPC_alias_insn(). issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  10. 7e644f0 ppc: initialize needComma to false. issue reported by Coverity by Nguyen Anh Quynh · 10 years ago
  11. 6756edd ppc: alias instructions handled by printAliasInstrEx() miss CR* registers in detail mode. fixed by Nguyen Anh Quynh · 10 years ago
  12. ca44c48 ppc: coding style for PPCInstPrinter.c by Nguyen Anh Quynh · 10 years ago
  13. 27767e8 merge PR of @kratolp by Nguyen Anh Quynh · 10 years ago
  14. 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
  15. f0221a2 * Fix pcc branch offset in a better way by kratolp · 10 years ago
  16. ced9d24 Workaround missing <inttypes.h> on MSVC 2010 by Yegor Derevenets · 10 years ago
  17. 7e57e79 ppc: handle branch condition for alias instructions. this also updates Python & Java bindings by Nguyen Anh Quynh · 10 years ago
  18. 9d63839 ppc: move our own alias instructions to PPCInstPrinter.c to isolate them from auto-gen code of LLVM by Nguyen Anh Quynh · 10 years ago
  19. d37b0df merge PR of @kratolp by Nguyen Anh Quynh · 10 years ago
  20. 05d4b83 Extend sign of the branch destination operand by kratolp · 10 years ago
  21. 87736c1 Update alias of PPC branch instructions by kratolp · 10 years ago
  22. eaecfa4 ppc: add PPC_INS_BNE for alias instruction BNE by Nguyen Anh Quynh · 10 years ago
  23. f46ef2e ppc: alias instruction for 'gBC 4, 2, target' to 'bne target'. issue reported by @kratolp by Nguyen Anh Quynh · 10 years ago
  24. 721d07f ppc: support alias instructions. update Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  25. 0c07cc9 zero-out instruction details, mnemonic & op_str so cs_insn doesnt have garbage in Diet mode by Nguyen Anh Quynh · 10 years ago
  26. 4c95022 fix warnings on unused variables when compiling in Diet mode by Nguyen Anh Quynh · 10 years ago
  27. f41dc32 Merge branch 'v3' of https://github.com/aquynh/capstone into v3 by Nguyen Anh Quynh · 10 years ago
  28. 14b684e last commit missed a check by Nguyen Anh Quynh · 10 years ago
  29. 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
  30. 1ce5dea ppc: fix an unused variable warning by Nguyen Anh Quynh · 10 years ago
  31. 159ddbd ppc: add new groups to group_name_maps[] by Nguyen Anh Quynh · 10 years ago
  32. 91a6477 ppc: fix a mistake on interpreting CR registers by deleting CR8 -> CR31 by Nguyen Anh Quynh · 10 years ago
  33. dd3deec ppc: update core. this added new instructions, groups & registers. updated Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
  34. 5d80678 Merge branch 'next' of https://github.com/flyingsymbols/capstone into arm by Nguyen Anh Quynh · 10 years ago
  35. 298d413 * added a test file to suite for testing invalid and valid instruction sequences by flyingsymbols · 10 years ago
  36. 650f96c add new API cs_group_name() to return group name in string, given the group id by Nguyen Anh Quynh · 10 years ago
  37. cae09bf replace offset_of with offsetof from stddef.h by Nguyen Anh Quynh · 10 years ago
  38. 215e76b ppc: use MCInst_insert0() instead of MCInst_insert() to avoid malloc/free by Nguyen Anh Quynh · 10 years ago
  39. 7f945d3 ppc: use CreateImm0() & CreateReg0() to create MCOperand* to avoid using malloc/free by Nguyen Anh Quynh · 10 years ago
  40. 7f15f67 ppc: use SStream_concat0() instead of SStream_concat() for simple string processing whenever possible by Nguyen Anh Quynh · 10 years ago
  41. 69582d7 initialize cs_insn.detail by properly zero-out right members for each arch by Nguyen Anh Quynh · 10 years ago
  42. 29fd0f6 fix all the code in other non-X86 archs after the change made by commit 5329a6ffd485ce4b06305c1b104df5a0adab57e6 by Nguyen Anh Quynh · 10 years ago
  43. 2c20a1b ppc: wrong comparison in printOperand(). bug found by Coverity by Nguyen Anh Quynh · 10 years ago
  44. f721e31 Disassembler -> Disassembly by Nguyen Anh Quynh · 10 years ago
  45. 04f2ec6 cleanup redundant headers included 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. 8598a21 enable arch code from source with CAPSTONE_HAS_* for MSVC to pick up by Nguyen Anh Quynh · 10 years ago
  48. 043702e more fixes for warnings reported by MSVC by Nguyen Anh Quynh · 10 years ago
  49. 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
  50. 42706a3 indentation with tab by Nguyen Anh Quynh · 10 years ago
  51. 779d4c7 first changes to get a successfully compiled version of capstone on VS2012 by Axel 0vercl0k Souchet · 10 years ago
  52. 958927e clean up after the last removal of SubtargetFeature.h by Nguyen Anh Quynh · 10 years ago
  53. a5ffdc3 x86: properly handle LOCK/REP in the core, so remove buch of hacks by Nguyen Anh Quynh · 10 years ago
  54. 2cff6f6 x86: handle instructions with LOCK/REP/REPNE prefix after other prefixes. bear with this until we have a better approach by Nguyen Anh Quynh · 10 years ago
  55. 2eb37ee ppc: disable some redundant functions when Diet option is enable by Nguyen Anh Quynh · 10 years ago
  56. f6c7cbc core: fix some warnings by Nguyen Anh Quynh · 10 years ago
  57. 1514d5c ppc: cleaning up by Nguyen Anh Quynh · 11 years ago
  58. 1c68ab9 cleaning up unused code by Nguyen Anh Quynh · 11 years ago
  59. ca9a7ab ppc: fix a segfault in Diet mode by Nguyen Anh Quynh · 11 years ago
  60. fc83a43 add diet compile option (CAPSTONE_DIET option in config.mk). This reduces binary size by around 40% by Nguyen Anh Quynh · 11 years ago
  61. 8b915ed ppc: update core by Nguyen Anh Quynh · 11 years ago
  62. 585018f ppc & arm: remove functions *_get_insn_id2() by Nguyen Anh Quynh · 11 years ago
  63. a82a089 more more fixes on C coding style by Nguyen Anh Quynh · 11 years ago
  64. b57c90d fix some issues introduced by MSVC port by Nguyen Anh Quynh · 11 years ago
  65. b8a57fe Additional MSVC fixes, including to fixed tables (temporary so Quynh can see what to do). by Alex Ionescu · 11 years ago
  66. 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
  67. 53fc5c1 cs_open() should return error on invalid mode by Nguyen Anh Quynh · 11 years ago
  68. 3732725 rename mapping.c, mapping.h, module.c to have arch prefix. suggested by Alex Ionescu by Nguyen Anh Quynh · 11 years ago
  69. c272e9d do not use constructor to enable archs, so code is more portable. suggested by Alex Ionescu by Nguyen Anh Quynh · 11 years ago
  70. a9ffb44 replace strdup() with our cs_strdup(), which call cs_mem_malloc() internally by Nguyen Anh Quynh · 11 years ago
  71. 57c50d4 ppc: replace constant subtarget numbers with macros by Nguyen Anh Quynh · 11 years ago
  72. e51e227 ppc & x86: add third dummy MRI argument to printInstruction() to make it consistent with other archs by Nguyen Anh Quynh · 11 years ago
  73. 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
  74. 701b850 Fix: bug that static link does not know constructor by danghvu · 11 years ago
  75. 9fac512 no longer need to free insn_cache for each arch: simply do it from cs_close() by Nguyen Anh Quynh · 11 years ago
  76. 1acfd0b move insn_cache into cs_struct to gurantee thread-safe by Nguyen Anh Quynh · 11 years ago
  77. c740407 move internal memory management declarations from utils.h to cs_priv.h by Nguyen Anh Quynh · 11 years ago
  78. 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
  79. 2b14fcd ppc: update ppc.bh in post-printer by Nguyen Anh Quynh · 11 years ago
  80. f1d489b ppc: support details information by Nguyen Anh Quynh · 11 years ago
  81. b265406 cache insns for fast lookup in mapping.c. based on the idea of Dang Hoang Vu by Nguyen Anh Quynh · 11 years ago
  82. 5f1f90c fix for the last commit, and make the test code no longer specify ppc code as 64bit by Nguyen Anh Quynh · 11 years ago
  83. 5742b1b ppc: support for PPC32 was already in by Nguyen Anh Quynh · 11 years ago
  84. cef6b27 remove -x from PPC files by Nguyen Anh Quynh · 11 years ago
  85. 19b0de3 moving static doing_mem variable into cs_struct to guarantee thread-safe when handling memory operands by Nguyen Anh Quynh · 11 years ago
  86. 4d22779 add the missing include/ppc.h by Nguyen Anh Quynh · 11 years ago
  87. ec79f40 ppc: rename PPC_getFeatureBits() to getFeatureBits() by Nguyen Anh Quynh · 11 years ago
  88. 9c5b328 ppc: rename ppc_cc to ppc_bc by Nguyen Anh Quynh · 11 years ago
  89. bacf4c8 add the missing arch/PowerPC directory by Nguyen Anh Quynh · 11 years ago