- ff2939a capstone.h: refer to sample code for skipdata option & cs_disasm_iter API by Nguyen Anh Quynh · 10 years ago
- 801ce2b detail pointer is irrelevant when in skipdata mode by Nguyen Anh Quynh · 10 years ago
- 542a540 refine instructions of cs_free() to reflect the newly added API cs_malloc() by Nguyen Anh Quynh · 10 years ago
- 5cb3d64 refine some API instructions for capstone.h by Nguyen Anh Quynh · 10 years ago
- 43efc45 code style by Nguyen Anh Quynh · 10 years ago
- 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
- 993f362 New API: cs_disasm_iter by hlide · 10 years ago
- aa58f7f typo fix for capstone.h by Nguyen Anh Quynh · 10 years ago
- 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
- 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
- 0efef5d solve some conflicts when merging -next into -v3 by Nguyen Anh Quynh · 10 years ago
- 78c4876 Merge branch 'cs_insn_const' of https://github.com/obs1dium/capstone into next by Nguyen Anh Quynh · 10 years ago
- 876b6b6 use const when passing cs_insn pointers by obs · 10 years ago
- 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
- 0f0eb98 mips: update core. this added bunch of new instructions & groups. updated Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
- 7c089fd arm: add new mode CS_MODE_MCLASS for Cortex-M series. updated Python & Java bindings accordingly by Nguyen Anh Quynh · 10 years ago
- fd0f798 bump API & package version to 3.0 by Nguyen Anh Quynh · 10 years ago
- 027afdc Change the prototype of the callback in SKIPDATA option. Suggested by Ben Nagy. by Nguyen Anh Quynh · 10 years ago
- 0df7e93 Change the prototype of the callback in SKIPDATA option. Suggested by Ben Nagy. by Nguyen Anh Quynh · 10 years ago
- 650f96c add new API cs_group_name() to return group name in string, given the group id by Nguyen Anh Quynh · 10 years ago
- 4aacbea Merge branch 'next' into cmake2 by Nguyen Anh Quynh · 10 years ago
- 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
- 1969b83 windows: expose public APIs with dllimport for user apps by Nguyen Anh Quynh · 10 years ago
- 0ea020e cmake: do not define dllimport by Nguyen Anh Quynh · 10 years ago
- 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
- 4c0ed0b correct capstone.h on the old already-renamed op_info[] arrays by Nguyen Anh Quynh · 10 years ago
- c80d840 add XCore architecture by Nguyen Anh Quynh · 10 years ago
- 171eb75 stdbool.h is only available in C99-supported compiler by Nguyen Anh Quynh · 10 years ago
- e76abf4 move prototype of strcasecmp for MSVC into utils.h, and remove platform.h by Nguyen Anh Quynh · 10 years ago
- 1d2e69b msvc: remove headers/ directory & replace it with include/platform.h by Nguyen Anh Quynh · 10 years ago
- 3878ff0 skipdata: change data type of callback's offset to uint64_t by Nguyen Anh Quynh · 10 years ago
- 7751fbe header files: Disassembler -> Disassembly by Nguyen Anh Quynh · 11 years ago
- 1efa9c1 SKIPDATA: add info about the first argument of callback function by Nguyen Anh Quynh · 11 years ago
- 42288ac SKIPDATA: add 1 more argument to callback function pointing to the input buffer of cs_disasm_ex() by Nguyen Anh Quynh · 11 years ago
- 3d5b6f3 update capstone.h to add some minor details for SKIPDATA mode by Nguyen Anh Quynh · 11 years ago
- 11ec881 core: add CS_ERR_SKIPDATA error code to report when code access irrelevant info in SKIPDATA mode by Nguyen Anh Quynh · 11 years ago
- 07ffd64 SKIPDATA: @offset of callback function should indicate the position of examining byte in input buffer by Nguyen Anh Quynh · 11 years ago
- a89383e number of bytes skipped by SKIPDATA option depends on arch by Nguyen Anh Quynh · 11 years ago
- d3ffe37 API: support SKIPDATA option (off by default) by Nguyen Anh Quynh · 11 years ago
- 901631e remove the useless diet.h by Nguyen Anh Quynh · 11 years ago
- 6d3c711 correct config.mk since X86-reduce now supports VMX/SVM by Nguyen Anh Quynh · 11 years ago
- 59b5489 x86: rename X86_COMPACT to X86_REDUCE. suggested by Pancake by Nguyen Anh Quynh · 11 years ago
- 9518148 add X86_COMPACT option. also add CS_SUPPORT_X86_COMPACT. made Python support this change by Nguyen Anh Quynh · 11 years ago
- 48a14ca add SystemZ arch by Nguyen Anh Quynh · 11 years ago
- 604c45e cleaning capstone.h by Nguyen Anh Quynh · 11 years ago
- 2ff665a arm: support asm syntax CS_OPT_SYNTAX_NOREGNAME to print out registers with numbers (ex: 'r11' rather than 'fp') by Nguyen Anh Quynh · 11 years ago
- 1a39bb5 API: bump to 2.2 after the addition of Sparc support by Nguyen Anh Quynh · 11 years ago
- 05e2713 core: add Sparc arch by Nguyen Anh Quynh · 11 years ago
- c8e0785 add some more comments regarding invalidating @handle of cs_close() by Nguyen Anh Quynh · 11 years ago
- 226d7dc change API cs_close() to take pointer to handle as argument. this lets us invalidate the closed handle by Nguyen Anh Quynh · 11 years ago
- 492b8ed define CS_SUPPORT_DIET with relation to CS_ARCH_ALL for clarification by Nguyen Anh Quynh · 11 years ago
- f7cdbdf add CS_ERR_DIET error code to report information irrelevant in diet engine by Nguyen Anh Quynh · 11 years ago
- 544e0ff explicitly warning about diet mode for some APIs in capstone.h by Nguyen Anh Quynh · 11 years ago
- c70adc3 clarify some comments regarding 'diet' mode in capstone.h by Nguyen Anh Quynh · 11 years ago
- b2870e4 API: extend cs_support() to allow query on diet mode. add CS_SUPPORT_DIET at the same time by Nguyen Anh Quynh · 11 years ago
- 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
- 43a9a9d bump API version from 2.0 to 2.1 for core + Python & Java bindings by Nguyen Anh Quynh · 11 years ago
- a86a127 Merge branch 'msvc0' into next1 by Nguyen Anh Quynh · 11 years ago
- 4f22028 add CS_ERR_VERSION to report error when binding version is different from core's API version by Nguyen Anh Quynh · 11 years ago
- 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
- 06b3c05 cs_open() should return error on invalid mode by Nguyen Anh Quynh · 11 years ago
- 53fc5c1 cs_open() should return error on invalid mode by Nguyen Anh Quynh · 11 years ago
- 64d4083 add solaris support, and add make.sh by Nguyen Anh Quynh · 11 years ago
- bdd1e34 remove 'restrict' keyword in the definition of cs_vsnprintf(). also compile tests/* with -L option by Nguyen Anh Quynh · 11 years ago
- 56aba59 correct some comments on CS_OPT_MEM option by Nguyen Anh Quynh · 11 years ago
- edeeb04 make vsnprintf() user-defined function pointer, which is passed in via the same CS_OPT_MEM option like malloc/calloc etc by Nguyen Anh Quynh · 11 years ago
- 0636f68 increase size of @op_str to 160 to contain long operand string of some Neon Arm instructions by Nguyen Anh Quynh · 11 years ago
- 2f05ab2 add some comments on the availability of some APIs relying on detail = ON by Nguyen Anh Quynh · 11 years ago
- b99aec8 increase sizes of @op_str & ARM @operands to contain some ARM instructions with super long list of registers. issue reported by Deroko of ARTeam by Nguyen Anh Quynh · 11 years ago
- 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
- c263d35 correct comments on CS_OPT_ON/OFF regarding default detail option by Nguyen Anh Quynh · 11 years ago
- cf89cf6 cosmetic fix for capstone.h by Nguyen Anh Quynh · 11 years ago
- c52352d add new error code CS_ERR_MEMSETUP to report error when user-defined dynamic mem management is uninitialized by Nguyen Anh Quynh · 11 years ago
- 57aa8ec change argument type of cs_support() API from cs_arch to int. this is to give us more flexibility to use this API to check other stuffs in future by Nguyen Anh Quynh · 11 years ago
- a60ed8b more instructions on CS_OPT_MEM by Nguyen Anh Quynh · 11 years ago
- ac9c076 minor fix for instruction on CS_OPT_MEM by Nguyen Anh Quynh · 11 years ago
- 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
- af6ca7e ppc: add branch hint support to cs_ppc struct by Nguyen Anh Quynh · 11 years ago
- f1d489b ppc: support details information by Nguyen Anh Quynh · 11 years ago
- 34f9638 add new API: cs_strerror() return a string describing a given error code. this should be used together with cs_errno() by Nguyen Anh Quynh · 11 years ago
- b265406 cache insns for fast lookup in mapping.c. based on the idea of Dang Hoang Vu by Nguyen Anh Quynh · 11 years ago
- ae3649f rename some C header guards to be without _ as prefix to follow naming convention of C language. suggested by Markus Elfring by Nguyen Anh Quynh · 11 years ago
- 42c6b1a initial support for PPC by Nguyen Anh Quynh · 11 years ago
- 0cb3d6c we broke compatibility of bunch of important APIs, so bump API version to 2.0 rather than 1.1 by Nguyen Anh Quynh · 11 years ago
- b90cb99 API cs_version_ex(): since we already broke API compatibility, we are not afraid to break cs_version() too. this replaces cs_version() with cs_version_ex() by Nguyen Anh Quynh · 11 years ago
- 04c19be rename API cs_disasm_dyn() to cs_disasm_ex(), and intentionally breaks compatibility with 1.0 by Nguyen Anh Quynh · 11 years ago
- 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
- 2296d5e add macro CS_MAKE_VERSION, which is handy to create combined version from major & minor version so that can be compared to the result of cs_version_ex() by Nguyen Anh Quynh · 11 years ago
- b880678 old cs_version() and new cs_version() are not compatible, so revert old one, and create new separate API cs_version_ex() by Nguyen Anh Quynh · 11 years ago
- 0877747 cs_version() can accept NULL arguments. this is useful if you dont care about major/minor, but only want to get returned combined version by Nguyen Anh Quynh · 11 years ago
- 39a42ed Change the way of supporting arch modularization by Nguyen Anh Quynh · 11 years ago
- f185180 cleaner implementation for arch modularization by Nguyen Anh Quynh · 11 years ago
- 7008356 change cs_insn struct to follow the commit 18103e4a. fixed Python & Java bindings accordingly. attn: bindings by Nguyen Anh Quynh · 11 years ago
- 1bdb23a add CS_OPT_MODE option. this allows us to change engine's mode at run-time by Nguyen Anh Quynh · 11 years ago
- 46a5afd add comment to clarify which information in cs_insn is available when CS_OPT_DETAIL = OFF by Nguyen Anh Quynh · 11 years ago
- 4994c58 bindings: support new 'detail' option for java & python by Nguyen Anh Quynh · 11 years ago
- 4d3e852 detail option: provide instruction id even when detail option is OFF by Nguyen Anh Quynh · 11 years ago
- a209e67 support to turn on/off building instruction details by Nguyen Anh Quynh · 11 years ago
- f0e4eed Use const on all read-only buffers by pancake · 11 years ago
- 36df4bb revert the cs_version() API by Nguyen Anh Quynh · 11 years ago