Félix Cloutier
|
073086b78e
|
Removing schema files since they are normally not committed
|
10 years ago |
Félix Cloutier
|
0c6c6222b2
|
Readded targets because I screwed up
|
10 years ago |
Félix Cloutier
|
1b994ffa35
|
Added test targets, made sure that tests run
|
10 years ago |
kratolp
|
f2b699a716
|
Don't add cr0 to the operand list as it's not displayed by the disassembly
|
10 years ago |
Félix Cloutier
|
1e97886ca6
|
Xcode project now builds
|
10 years ago |
Nguyen Anh Quynh
|
4d3ccf46fd
|
simplify the way to calculate insn_cache in cs_disasm(). suggested by @hlide
|
10 years ago |
Nguyen Anh Quynh
|
5267baf1f1
|
fix conflicts
|
10 years ago |
danghvu
|
2fb7c8e46a
|
Fix a bug with previous patch
|
10 years ago |
Nguyen Anh Quynh
|
e96935ed68
|
ppc: remove duplicate op_addReg() in printAliasInstrEx()
|
10 years ago |
Nguyen Anh Quynh
|
cd18208f49
|
package: update Macports & Homebrew
|
10 years ago |
Nguyen Anh Quynh
|
fff1307980
|
Makefile: simplify generate-pkgcfg by using INCDIR. reviewed by Pancake
|
10 years ago |
Nguyen Anh Quynh
|
e702b55507
|
Makefile: do not remove old libs in install 'target'
|
10 years ago |
Nguyen Anh Quynh
|
ffe4435bb4
|
package: update FreeBSD package
|
10 years ago |
Nguyen Anh Quynh
|
910a4df9a3
|
tests: compile without -O3 flag. this is to make it easier to maintain FreeBSD package
|
10 years ago |
Nguyen Anh Quynh
|
f9d8a89c24
|
correct some comments in cs_disasm()
|
10 years ago |
danghvu
|
0d1aad1e9f
|
Increase cache size by golden ratio
|
10 years ago |
Nguyen Anh Quynh
|
a90b047d9f
|
x86: simplify printPCRelImm() in calculating absolute address. also fix the issue on AT&T syntax
|
10 years ago |
Nguyen Anh Quynh
|
27a4a08bb2
|
fix a double-free bug introduced by the last change in cs_disasm()
|
10 years ago |
Nguyen Anh Quynh
|
ea3c089591
|
some simple optimizations for speed. this improves performance about 5%
|
10 years ago |
Nguyen Anh Quynh
|
16f330c37a
|
cs_disasm(): properly resize the cache when count in range [2, INSN_CACHE_SIZE]
|
10 years ago |
Nguyen Anh Quynh
|
bff4fbd544
|
x86: properly calculate absolute addresses for relative CALL & JMP - for AT&T syntax. thanks Perdo, again
|
10 years ago |
Nguyen Anh Quynh
|
a92d2cba1d
|
x86: properly calculate absolute addresses of relative CALL & JMP. thanks Pedro for valuable helps
|
10 years ago |
Nguyen Anh Quynh
|
df92a7f346
|
mips: BC0F is relative branch instruction. bug reported by Pancake
|
10 years ago |
Nguyen Anh Quynh
|
48eb13c33c
|
ppc: add detail for alias instructions introduced in the latest change by @kratolp
|
10 years ago |
Nguyen Anh Quynh
|
6b731a097f
|
fix conflicts when merging
|
10 years ago |
Nguyen Anh Quynh
|
630bcd6d4e
|
ppc: c99
|
10 years ago |
Nguyen Anh Quynh
|
70fa90fbfe
|
ppc: coding style
|
10 years ago |
Nguyen Anh Quynh
|
147035ed62
|
suite: chmod +x ppcbranch.py
|
10 years ago |
kratolp
|
73835104a4
|
Merge branch 'next' of https://github.com/aquynh/capstone into next
Conflicts:
arch/PowerPC/PPCInstPrinter.c
|
10 years ago |
kratolp
|
a3f0aef79a
|
PPC: Fix absolute/relative offset for branch instruction
PPC: Fix non handling of bc instruction that uses the CTR
|
10 years ago |
Nguyen Anh Quynh
|
a3f87a54d9
|
java: add 'check' target to Makefile
|
10 years ago |
Nguyen Anh Quynh
|
984d45068c
|
Makefile: add 'check' target
|
10 years ago |
Nguyen Anh Quynh
|
711fd8e3ed
|
update RELEASE_NOTES
|
10 years ago |
Nguyen Anh Quynh
|
a2c5e4c7ef
|
TODO: Ocaml binding is working now (though still incomplete)
|
10 years ago |
Nguyen Anh Quynh
|
c96f1b06b2
|
x86: fix Out-of-bounds read error in is16BitEquivalent(). issue reported by Coverity
|
10 years ago |
Nguyen Anh Quynh
|
9bf1b87a66
|
mips: fix out-of-bounds read error in Mips_reg_name(). issue reported by Coverity
|
10 years ago |
Nguyen Anh Quynh
|
e135056f17
|
fix a negative array index read in PPC_alias_insn(). issue reported by Coverity
|
10 years ago |
Nguyen Anh Quynh
|
9d54544288
|
mips: verify if RegDecoder can get NULL value. issue reported by Coverity
|
10 years ago |
Nguyen Anh Quynh
|
7e644f0fea
|
ppc: initialize needComma to false. issue reported by Coverity
|
10 years ago |
Nguyen Anh Quynh
|
839890b83a
|
tests: use cs_group_name() to print out group names in test_detail.c & test_detail.py
|
10 years ago |
Nguyen Anh Quynh
|
523ca99087
|
cs_disasm(): make sure cache_size is smaller than INSN_CACHE_SIZE to avoid integer overflow in malloc()
|
10 years ago |
Nguyen Anh Quynh
|
50eeba2a86
|
avoid setting instruction cache size to @count when Capstone uses user-customized memory management, which might fail in resource scarce env such as kernel
|
10 years ago |
Nguyen Anh Quynh
|
ac98ca0129
|
set buffer size for instruction cache in cs_disasm() to @count if @count > 0. this avoids realloc() in cases where @count is pre-determined. thanks Dang Hoang Vu for the idea
|
10 years ago |
Nguyen Anh Quynh
|
39eb84a9b1
|
merge v3
|
10 years ago |
Nguyen Anh Quynh
|
9235fdc504
|
arm: The Thumb2 ldrexd and strexd instructions are not defined for M-class architectures
|
10 years ago |
Nguyen Anh Quynh
|
187a1aead9
|
Merge pull request #187 from danghvu/v3
Cython: update installation and tests to v3
|
10 years ago |
danghvu
|
ebeec9d9c2
|
Cython: update installation and tests to v3
|
10 years ago |
Nguyen Anh Quynh
|
6756eddee5
|
ppc: alias instructions handled by printAliasInstrEx() miss CR* registers in detail mode. fixed
|
10 years ago |
Nguyen Anh Quynh
|
ca44c4897d
|
ppc: coding style for PPCInstPrinter.c
|
10 years ago |
Nguyen Anh Quynh
|
27767e8c08
|
merge PR of @kratolp
|
10 years ago |