Commit Graph

1714 Commits

Author SHA1 Message Date
Nguyen Anh Quynh
de65619fa8 x86: add prefix constants X86_PREFIX_*. suggested by Pancake 2014-10-18 06:15:49 +08:00
Nguyen Anh Quynh
85cfb1839c x86: get rid of redundant X86_INS_LOCK/REP/RENE. issue reported by Pancake 2014-10-18 05:53:32 +08:00
Nguyen Anh Quynh
bec9af7f6d java: update after the latest change on PPC in the core 2014-10-17 22:30:19 +08:00
Nguyen Anh Quynh
9dbb2f0b32 ocaml: update after the latest change on PPC in the core 2014-10-17 22:27:26 +08:00
Nguyen Anh Quynh
4d2c362aa6 python: update after the latest change on PPC in the core 2014-10-17 21:51:13 +08:00
Nguyen Anh Quynh
aeaff79290 ppc: change type of ppc_op_crx.cond type to ppc_bc 2014-10-17 21:36:38 +08:00
Nguyen Anh Quynh
fcc5673070 ppc.h: add a comment for ppc_op_crx 2014-10-17 21:30:30 +08:00
kratolp
5c0d9a4ade Add '4*cri+cond' to operand list 2014-10-17 14:52:03 +02:00
Nguyen Anh Quynh
ca686e18a5 Merge branch 'xcodeproj' of https://github.com/zneak/capstone into xcode 2014-10-15 20:54:31 +08:00
Nguyen Anh Quynh
7afa741c54 update CREDITS.TXT 2014-10-15 20:54:00 +08:00
Nguyen Anh Quynh
c41da15017 capstone.h: change cs_disasm to cs_disasm_iter in some places 2014-10-15 16:31:35 +08:00
Félix Cloutier
cbfce66e25 Removed xcuserdata files 2014-10-15 03:20:20 -04:00
Félix Cloutier
4a645f6f05 Removed unreferenced CapstoneFrameworkTests files 2014-10-15 03:16:12 -04:00
Félix Cloutier
18d5cb0901 Deleted unreferenced CapstoneFramework file 2014-10-15 03:15:27 -04:00
Félix Cloutier
e16f7b84f1 Added test_iter target 2014-10-15 03:11:01 -04:00
Félix Cloutier
1dcd737f34 Merge branch 'next' of git://github.com/aquynh/capstone into xcodeproj 2014-10-15 03:05:04 -04:00
Félix Cloutier
aaa01ca910 Added missing include path directives. Oops. 2014-10-15 03:04:21 -04:00
Félix Cloutier
e39cd6a1b4 Removed artificial dependency between framework and static lib 2014-10-15 03:04:08 -04:00
Nguyen Anh Quynh
a8fd71f406 CMake: fix option CAPSTONE_X86_ATT_DISABLE. bug reported by Yegor Derevenets 2014-10-14 07:55:30 +08:00
Nguyen Anh Quynh
733cdafe70 Merge branch 'mips' into next 2014-10-13 07:36:38 +08:00
Nguyen Anh Quynh
d463bde653 Merge branch 'next' of https://github.com/aquynh/capstone into next 2014-10-13 07:34:34 +08:00
Nguyen Anh Quynh
8c5c292752 Merge branch 'improvement/remove_mips_n64' of https://github.com/parasyte/capstone into mips 2014-10-13 07:27:50 +08:00
Nguyen Anh Quynh
a91c1994ea docs: add a link to online doc of cs_disasm_iter() 2014-10-13 07:27:16 +08:00
Nguyen Anh Quynh
ab51d8095a Merge pull request #196 from parasyte/bug/ignore_test_iter
Add tests/test_iter to .gitignore
2014-10-13 07:04:21 +08:00
Jay Oster
79e253c516 Remove CS_MODE_N64
- This mode is for the so-called MIPS "N64" ABI; it has nothing to do with the Nintendo 64 game platform.
- N64, O64, et al. are just different ABIs for the 64-bit MIPS architecture, so we replace CS_MODE_N64 with the existing CS_MODE_64
2014-10-12 16:03:12 -07:00
Jay Oster
b1119a39e5 Add tests/test_iter to .gitignore 2014-10-12 15:47:16 -07:00
Nguyen Anh Quynh
9090672e97 clean cs_disasm_iter() 2014-10-12 20:24:33 +08:00
Nguyen Anh Quynh
2c8b2627d1 capstone.h: document that for instruction or when detail mode is OFF, the detail pointer is irrelevant, regardless of its value 2014-10-12 20:23:08 +08:00
Nguyen Anh Quynh
1a83cea5f5 Merge branch 'newapi' into next 2014-10-12 15:31:24 +08:00
Nguyen Anh Quynh
fb429b1eba capstone.h: note that in Skipdata mode, invalid instruction has id = 0 2014-10-12 15:29:12 +08:00
Nguyen Anh Quynh
29ce6c3517 cs_disasm_iter: return false when handle is invalid and do not zero out detail pointer when handling skipdata mode. suggested by @hlide 2014-10-12 15:28:34 +08:00
Nguyen Anh Quynh
ff2939a23c capstone.h: refer to sample code for skipdata option & cs_disasm_iter API 2014-10-12 10:43:02 +08:00
Nguyen Anh Quynh
801ce2b893 detail pointer is irrelevant when in skipdata mode 2014-10-12 10:36:57 +08:00
Nguyen Anh Quynh
f0acace803 Merge branch 'newapi' of https://github.com/aquynh/capstone into next 2014-10-12 10:30:57 +08:00
Nguyen Anh Quynh
542a540360 refine instructions of cs_free() to reflect the newly added API cs_malloc() 2014-10-11 13:12:15 +08:00
Nguyen Anh Quynh
7170cb2ea2 tests: add some comments for test_iter.c 2014-10-11 10:43:27 +08:00
Nguyen Anh Quynh
2d752f9e4e tests: add introductions for test_skipdata.c & test_iter.c to README 2014-10-11 01:33:32 +08:00
Nguyen Anh Quynh
5cb3d6401e refine some API instructions for capstone.h 2014-10-11 01:32:39 +08:00
Nguyen Anh Quynh
43efc45fb8 code style 2014-10-11 00:38:30 +08:00
Nguyen Anh Quynh
0a2eca7c6c modify API cs_disasm_iter() and add new API cs_malloc(). also adds sample code test_iter.c 2014-10-11 00:36:16 +08:00
Nguyen Anh Quynh
b10418e79b java: a call to printf() in TestArm.java is missing a variable 2014-10-10 22:37:49 +08:00
Nguyen Anh Quynh
db8eaa3d0b bindings: remove MIPS_REG_PC constant following the change in the core 2014-10-10 21:13:30 +08:00
Nguyen Anh Quynh
c64d6292fc mips: remove MIPS_REG_PC register. reviewed by Jay Oster 2014-10-10 21:11:50 +08:00
Nguyen Anh Quynh
8bf5fa60ad arm: remove dead code 2014-10-07 07:56:01 +08:00
Nguyen Anh Quynh
e8ffc34a5c update CREDITS 2014-10-07 00:33:35 +08:00
Nguyen Anh Quynh
cdb8da329f update CREDITS 2014-10-07 00:20:42 +08:00
Nguyen Anh Quynh
29d16887b3 update CREDITS.TXT 2014-10-06 23:09:22 +08:00
Nguyen Anh Quynh
cc35100093 link COMPILE.TXT to xcode/README.md 2014-10-06 22:19:10 +08:00
Nguyen Anh Quynh
5be2592a57 Merge branch 'next' of https://github.com/aquynh/capstone into next 2014-10-06 21:02:47 +08:00
Nguyen Anh Quynh
b0cc71da59 bindings: update java/ocaml/python after the last change in Arm's core 2014-10-06 21:01:32 +08:00