crabstone 3.0.3 → 4.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGES.md +59 -42
- data/README.md +37 -39
- data/lib/{arch → crabstone/arch/3}/arm.rb +28 -49
- data/lib/crabstone/arch/3/arm64.rb +124 -0
- data/lib/{arch → crabstone/arch/3}/arm64_const.rb +45 -86
- data/lib/{arch → crabstone/arch/3}/arm_const.rb +19 -47
- data/lib/crabstone/arch/3/mips.rb +57 -0
- data/lib/{arch → crabstone/arch/3}/mips_const.rb +18 -38
- data/lib/crabstone/arch/3/ppc.rb +73 -0
- data/lib/{arch → crabstone/arch/3}/ppc_const.rb +27 -43
- data/lib/crabstone/arch/3/sparc.rb +60 -0
- data/lib/{arch → crabstone/arch/3}/sparc_const.rb +49 -67
- data/lib/crabstone/arch/3/sysz.rb +67 -0
- data/lib/{arch → crabstone/arch/3}/sysz_const.rb +11 -25
- data/lib/crabstone/arch/3/x86.rb +82 -0
- data/lib/{arch → crabstone/arch/3}/x86_const.rb +15 -36
- data/lib/crabstone/arch/3/xcore.rb +59 -0
- data/lib/{arch → crabstone/arch/3}/xcore_const.rb +10 -22
- data/lib/crabstone/arch/4/arm.rb +110 -0
- data/lib/crabstone/arch/4/arm64.rb +125 -0
- data/lib/crabstone/arch/4/arm64_const.rb +1016 -0
- data/lib/crabstone/arch/4/arm_const.rb +785 -0
- data/lib/crabstone/arch/4/evm.rb +20 -0
- data/lib/crabstone/arch/4/evm_const.rb +161 -0
- data/lib/crabstone/arch/4/m680x.rb +106 -0
- data/lib/crabstone/arch/4/m680x_const.rb +426 -0
- data/lib/crabstone/arch/4/m68k.rb +129 -0
- data/lib/crabstone/arch/4/m68k_const.rb +496 -0
- data/lib/crabstone/arch/4/mips.rb +57 -0
- data/lib/crabstone/arch/4/mips_const.rb +869 -0
- data/lib/crabstone/arch/4/ppc.rb +73 -0
- data/lib/crabstone/arch/4/ppc_const.rb +1375 -0
- data/lib/crabstone/arch/4/sparc.rb +60 -0
- data/lib/crabstone/arch/4/sparc_const.rb +439 -0
- data/lib/crabstone/arch/4/sysz.rb +67 -0
- data/lib/crabstone/arch/4/sysz_const.rb +763 -0
- data/lib/crabstone/arch/4/tms320c64x.rb +87 -0
- data/lib/crabstone/arch/4/tms320c64x_const.rb +287 -0
- data/lib/crabstone/arch/4/x86.rb +91 -0
- data/lib/crabstone/arch/4/x86_const.rb +1972 -0
- data/lib/crabstone/arch/4/xcore.rb +59 -0
- data/lib/crabstone/arch/4/xcore_const.rb +171 -0
- data/lib/crabstone/arch/extension.rb +27 -0
- data/lib/crabstone/arch/register.rb +34 -0
- data/lib/crabstone/arch.rb +37 -0
- data/lib/crabstone/binding/3/detail.rb +36 -0
- data/lib/crabstone/binding/3/instruction.rb +23 -0
- data/lib/crabstone/binding/4/detail.rb +40 -0
- data/lib/crabstone/binding/4/instruction.rb +23 -0
- data/lib/crabstone/binding/structs.rb +32 -0
- data/lib/crabstone/binding.rb +59 -0
- data/lib/crabstone/constants.rb +110 -0
- data/lib/crabstone/cs_version.rb +57 -0
- data/lib/crabstone/disassembler.rb +147 -0
- data/lib/crabstone/error.rb +74 -0
- data/lib/crabstone/instruction.rb +178 -0
- data/lib/crabstone/version.rb +5 -0
- data/lib/crabstone.rb +5 -557
- metadata +142 -331
- data/MANIFEST +0 -312
- data/Rakefile +0 -27
- data/bin/genconst +0 -66
- data/bin/genreg +0 -99
- data/crabstone.gemspec +0 -27
- data/examples/hello_world.rb +0 -43
- data/lib/arch/arm64.rb +0 -167
- data/lib/arch/arm64_registers.rb +0 -295
- data/lib/arch/arm_registers.rb +0 -149
- data/lib/arch/mips.rb +0 -78
- data/lib/arch/mips_registers.rb +0 -208
- data/lib/arch/ppc.rb +0 -90
- data/lib/arch/ppc_registers.rb +0 -209
- data/lib/arch/sparc.rb +0 -79
- data/lib/arch/sparc_registers.rb +0 -121
- data/lib/arch/systemz.rb +0 -79
- data/lib/arch/sysz_registers.rb +0 -66
- data/lib/arch/x86.rb +0 -107
- data/lib/arch/x86_registers.rb +0 -265
- data/lib/arch/xcore.rb +0 -78
- data/lib/arch/xcore_registers.rb +0 -57
- data/test/MC/AArch64/basic-a64-instructions.s.cs +0 -2014
- data/test/MC/AArch64/gicv3-regs.s.cs +0 -111
- data/test/MC/AArch64/neon-2velem.s.cs +0 -113
- data/test/MC/AArch64/neon-3vdiff.s.cs +0 -143
- data/test/MC/AArch64/neon-aba-abd.s.cs +0 -28
- data/test/MC/AArch64/neon-across.s.cs +0 -40
- data/test/MC/AArch64/neon-add-pairwise.s.cs +0 -11
- data/test/MC/AArch64/neon-add-sub-instructions.s.cs +0 -21
- data/test/MC/AArch64/neon-bitwise-instructions.s.cs +0 -17
- data/test/MC/AArch64/neon-compare-instructions.s.cs +0 -136
- data/test/MC/AArch64/neon-crypto.s.cs +0 -15
- data/test/MC/AArch64/neon-extract.s.cs +0 -3
- data/test/MC/AArch64/neon-facge-facgt.s.cs +0 -13
- data/test/MC/AArch64/neon-frsqrt-frecp.s.cs +0 -7
- data/test/MC/AArch64/neon-halving-add-sub.s.cs +0 -25
- data/test/MC/AArch64/neon-max-min-pairwise.s.cs +0 -37
- data/test/MC/AArch64/neon-max-min.s.cs +0 -37
- data/test/MC/AArch64/neon-mla-mls-instructions.s.cs +0 -19
- data/test/MC/AArch64/neon-mov.s.cs +0 -74
- data/test/MC/AArch64/neon-mul-div-instructions.s.cs +0 -24
- data/test/MC/AArch64/neon-perm.s.cs +0 -43
- data/test/MC/AArch64/neon-rounding-halving-add.s.cs +0 -13
- data/test/MC/AArch64/neon-rounding-shift.s.cs +0 -15
- data/test/MC/AArch64/neon-saturating-add-sub.s.cs +0 -29
- data/test/MC/AArch64/neon-saturating-rounding-shift.s.cs +0 -15
- data/test/MC/AArch64/neon-saturating-shift.s.cs +0 -15
- data/test/MC/AArch64/neon-scalar-abs.s.cs +0 -8
- data/test/MC/AArch64/neon-scalar-add-sub.s.cs +0 -3
- data/test/MC/AArch64/neon-scalar-by-elem-mla.s.cs +0 -13
- data/test/MC/AArch64/neon-scalar-by-elem-mul.s.cs +0 -13
- data/test/MC/AArch64/neon-scalar-by-elem-saturating-mla.s.cs +0 -15
- data/test/MC/AArch64/neon-scalar-by-elem-saturating-mul.s.cs +0 -18
- data/test/MC/AArch64/neon-scalar-compare.s.cs +0 -12
- data/test/MC/AArch64/neon-scalar-cvt.s.cs +0 -34
- data/test/MC/AArch64/neon-scalar-dup.s.cs +0 -23
- data/test/MC/AArch64/neon-scalar-extract-narrow.s.cs +0 -10
- data/test/MC/AArch64/neon-scalar-fp-compare.s.cs +0 -21
- data/test/MC/AArch64/neon-scalar-mul.s.cs +0 -13
- data/test/MC/AArch64/neon-scalar-neg.s.cs +0 -6
- data/test/MC/AArch64/neon-scalar-recip.s.cs +0 -11
- data/test/MC/AArch64/neon-scalar-reduce-pairwise.s.cs +0 -3
- data/test/MC/AArch64/neon-scalar-rounding-shift.s.cs +0 -3
- data/test/MC/AArch64/neon-scalar-saturating-add-sub.s.cs +0 -25
- data/test/MC/AArch64/neon-scalar-saturating-rounding-shift.s.cs +0 -9
- data/test/MC/AArch64/neon-scalar-saturating-shift.s.cs +0 -9
- data/test/MC/AArch64/neon-scalar-shift-imm.s.cs +0 -42
- data/test/MC/AArch64/neon-scalar-shift.s.cs +0 -3
- data/test/MC/AArch64/neon-shift-left-long.s.cs +0 -13
- data/test/MC/AArch64/neon-shift.s.cs +0 -22
- data/test/MC/AArch64/neon-simd-copy.s.cs +0 -42
- data/test/MC/AArch64/neon-simd-ldst-multi-elem.s.cs +0 -197
- data/test/MC/AArch64/neon-simd-ldst-one-elem.s.cs +0 -129
- data/test/MC/AArch64/neon-simd-misc.s.cs +0 -213
- data/test/MC/AArch64/neon-simd-post-ldst-multi-elem.s.cs +0 -107
- data/test/MC/AArch64/neon-simd-shift.s.cs +0 -151
- data/test/MC/AArch64/neon-tbl.s.cs +0 -21
- data/test/MC/AArch64/trace-regs.s.cs +0 -383
- data/test/MC/ARM/arm-aliases.s.cs +0 -7
- data/test/MC/ARM/arm-arithmetic-aliases.s.cs +0 -50
- data/test/MC/ARM/arm-it-block.s.cs +0 -2
- data/test/MC/ARM/arm-memory-instructions.s.cs +0 -138
- data/test/MC/ARM/arm-shift-encoding.s.cs +0 -50
- data/test/MC/ARM/arm-thumb-trustzone.s.cs +0 -3
- data/test/MC/ARM/arm-trustzone.s.cs +0 -3
- data/test/MC/ARM/arm_addrmode2.s.cs +0 -15
- data/test/MC/ARM/arm_addrmode3.s.cs +0 -9
- data/test/MC/ARM/arm_instructions.s.cs +0 -25
- data/test/MC/ARM/basic-arm-instructions-v8.s.cs +0 -10
- data/test/MC/ARM/basic-arm-instructions.s.cs +0 -997
- data/test/MC/ARM/basic-thumb-instructions.s.cs +0 -130
- data/test/MC/ARM/basic-thumb2-instructions-v8.s.cs +0 -1
- data/test/MC/ARM/basic-thumb2-instructions.s.cs +0 -1242
- data/test/MC/ARM/crc32-thumb.s.cs +0 -7
- data/test/MC/ARM/crc32.s.cs +0 -7
- data/test/MC/ARM/dot-req.s.cs +0 -3
- data/test/MC/ARM/fp-armv8.s.cs +0 -52
- data/test/MC/ARM/idiv-thumb.s.cs +0 -3
- data/test/MC/ARM/idiv.s.cs +0 -3
- data/test/MC/ARM/load-store-acquire-release-v8-thumb.s.cs +0 -15
- data/test/MC/ARM/load-store-acquire-release-v8.s.cs +0 -15
- data/test/MC/ARM/mode-switch.s.cs +0 -7
- data/test/MC/ARM/neon-abs-encoding.s.cs +0 -15
- data/test/MC/ARM/neon-absdiff-encoding.s.cs +0 -39
- data/test/MC/ARM/neon-add-encoding.s.cs +0 -119
- data/test/MC/ARM/neon-bitcount-encoding.s.cs +0 -15
- data/test/MC/ARM/neon-bitwise-encoding.s.cs +0 -126
- data/test/MC/ARM/neon-cmp-encoding.s.cs +0 -88
- data/test/MC/ARM/neon-convert-encoding.s.cs +0 -27
- data/test/MC/ARM/neon-crypto.s.cs +0 -16
- data/test/MC/ARM/neon-dup-encoding.s.cs +0 -13
- data/test/MC/ARM/neon-minmax-encoding.s.cs +0 -57
- data/test/MC/ARM/neon-mov-encoding.s.cs +0 -76
- data/test/MC/ARM/neon-mul-accum-encoding.s.cs +0 -39
- data/test/MC/ARM/neon-mul-encoding.s.cs +0 -72
- data/test/MC/ARM/neon-neg-encoding.s.cs +0 -15
- data/test/MC/ARM/neon-pairwise-encoding.s.cs +0 -47
- data/test/MC/ARM/neon-reciprocal-encoding.s.cs +0 -13
- data/test/MC/ARM/neon-reverse-encoding.s.cs +0 -13
- data/test/MC/ARM/neon-satshift-encoding.s.cs +0 -75
- data/test/MC/ARM/neon-shift-encoding.s.cs +0 -238
- data/test/MC/ARM/neon-shiftaccum-encoding.s.cs +0 -97
- data/test/MC/ARM/neon-shuffle-encoding.s.cs +0 -59
- data/test/MC/ARM/neon-sub-encoding.s.cs +0 -82
- data/test/MC/ARM/neon-table-encoding.s.cs +0 -9
- data/test/MC/ARM/neon-v8.s.cs +0 -38
- data/test/MC/ARM/neon-vld-encoding.s.cs +0 -213
- data/test/MC/ARM/neon-vst-encoding.s.cs +0 -120
- data/test/MC/ARM/neon-vswp.s.cs +0 -3
- data/test/MC/ARM/neont2-abs-encoding.s.cs +0 -15
- data/test/MC/ARM/neont2-absdiff-encoding.s.cs +0 -39
- data/test/MC/ARM/neont2-add-encoding.s.cs +0 -65
- data/test/MC/ARM/neont2-bitcount-encoding.s.cs +0 -15
- data/test/MC/ARM/neont2-bitwise-encoding.s.cs +0 -15
- data/test/MC/ARM/neont2-cmp-encoding.s.cs +0 -17
- data/test/MC/ARM/neont2-convert-encoding.s.cs +0 -19
- data/test/MC/ARM/neont2-dup-encoding.s.cs +0 -19
- data/test/MC/ARM/neont2-minmax-encoding.s.cs +0 -57
- data/test/MC/ARM/neont2-mov-encoding.s.cs +0 -58
- data/test/MC/ARM/neont2-mul-accum-encoding.s.cs +0 -41
- data/test/MC/ARM/neont2-mul-encoding.s.cs +0 -31
- data/test/MC/ARM/neont2-neg-encoding.s.cs +0 -15
- data/test/MC/ARM/neont2-pairwise-encoding.s.cs +0 -43
- data/test/MC/ARM/neont2-reciprocal-encoding.s.cs +0 -13
- data/test/MC/ARM/neont2-reverse-encoding.s.cs +0 -13
- data/test/MC/ARM/neont2-satshift-encoding.s.cs +0 -75
- data/test/MC/ARM/neont2-shift-encoding.s.cs +0 -80
- data/test/MC/ARM/neont2-shiftaccum-encoding.s.cs +0 -97
- data/test/MC/ARM/neont2-shuffle-encoding.s.cs +0 -23
- data/test/MC/ARM/neont2-sub-encoding.s.cs +0 -23
- data/test/MC/ARM/neont2-table-encoding.s.cs +0 -9
- data/test/MC/ARM/neont2-vld-encoding.s.cs +0 -51
- data/test/MC/ARM/neont2-vst-encoding.s.cs +0 -48
- data/test/MC/ARM/simple-fp-encoding.s.cs +0 -157
- data/test/MC/ARM/thumb-fp-armv8.s.cs +0 -51
- data/test/MC/ARM/thumb-hints.s.cs +0 -12
- data/test/MC/ARM/thumb-neon-crypto.s.cs +0 -16
- data/test/MC/ARM/thumb-neon-v8.s.cs +0 -38
- data/test/MC/ARM/thumb-shift-encoding.s.cs +0 -19
- data/test/MC/ARM/thumb.s.cs +0 -19
- data/test/MC/ARM/thumb2-b.w-encodingT4.s.cs +0 -2
- data/test/MC/ARM/thumb2-branches.s.cs +0 -85
- data/test/MC/ARM/thumb2-mclass.s.cs +0 -41
- data/test/MC/ARM/thumb2-narrow-dp.ll.cs +0 -379
- data/test/MC/ARM/thumb2-pldw.s.cs +0 -2
- data/test/MC/ARM/vfp4-thumb.s.cs +0 -13
- data/test/MC/ARM/vfp4.s.cs +0 -13
- data/test/MC/ARM/vpush-vpop-thumb.s.cs +0 -9
- data/test/MC/ARM/vpush-vpop.s.cs +0 -9
- data/test/MC/Mips/hilo-addressing.s.cs +0 -4
- data/test/MC/Mips/micromips-alu-instructions-EB.s.cs +0 -33
- data/test/MC/Mips/micromips-alu-instructions.s.cs +0 -33
- data/test/MC/Mips/micromips-branch-instructions-EB.s.cs +0 -11
- data/test/MC/Mips/micromips-branch-instructions.s.cs +0 -11
- data/test/MC/Mips/micromips-expansions.s.cs +0 -20
- data/test/MC/Mips/micromips-jump-instructions-EB.s.cs +0 -5
- data/test/MC/Mips/micromips-jump-instructions.s.cs +0 -6
- data/test/MC/Mips/micromips-loadstore-instructions-EB.s.cs +0 -9
- data/test/MC/Mips/micromips-loadstore-instructions.s.cs +0 -9
- data/test/MC/Mips/micromips-loadstore-unaligned-EB.s.cs +0 -5
- data/test/MC/Mips/micromips-loadstore-unaligned.s.cs +0 -5
- data/test/MC/Mips/micromips-movcond-instructions-EB.s.cs +0 -5
- data/test/MC/Mips/micromips-movcond-instructions.s.cs +0 -5
- data/test/MC/Mips/micromips-multiply-instructions-EB.s.cs +0 -5
- data/test/MC/Mips/micromips-multiply-instructions.s.cs +0 -5
- data/test/MC/Mips/micromips-shift-instructions-EB.s.cs +0 -9
- data/test/MC/Mips/micromips-shift-instructions.s.cs +0 -9
- data/test/MC/Mips/micromips-trap-instructions-EB.s.cs +0 -13
- data/test/MC/Mips/micromips-trap-instructions.s.cs +0 -13
- data/test/MC/Mips/mips-alu-instructions.s.cs +0 -53
- data/test/MC/Mips/mips-control-instructions-64.s.cs +0 -33
- data/test/MC/Mips/mips-control-instructions.s.cs +0 -33
- data/test/MC/Mips/mips-coprocessor-encodings.s.cs +0 -17
- data/test/MC/Mips/mips-dsp-instructions.s.cs +0 -43
- data/test/MC/Mips/mips-expansions.s.cs +0 -20
- data/test/MC/Mips/mips-fpu-instructions.s.cs +0 -93
- data/test/MC/Mips/mips-jump-instructions.s.cs +0 -1
- data/test/MC/Mips/mips-memory-instructions.s.cs +0 -17
- data/test/MC/Mips/mips-register-names.s.cs +0 -33
- data/test/MC/Mips/mips64-alu-instructions.s.cs +0 -47
- data/test/MC/Mips/mips64-instructions.s.cs +0 -3
- data/test/MC/Mips/mips64-register-names.s.cs +0 -33
- data/test/MC/Mips/mips_directives.s.cs +0 -12
- data/test/MC/Mips/nabi-regs.s.cs +0 -12
- data/test/MC/Mips/set-at-directive.s.cs +0 -6
- data/test/MC/Mips/test_2r.s.cs +0 -16
- data/test/MC/Mips/test_2rf.s.cs +0 -33
- data/test/MC/Mips/test_3r.s.cs +0 -243
- data/test/MC/Mips/test_3rf.s.cs +0 -83
- data/test/MC/Mips/test_bit.s.cs +0 -49
- data/test/MC/Mips/test_cbranch.s.cs +0 -11
- data/test/MC/Mips/test_ctrlregs.s.cs +0 -33
- data/test/MC/Mips/test_elm.s.cs +0 -16
- data/test/MC/Mips/test_elm_insert.s.cs +0 -4
- data/test/MC/Mips/test_elm_insve.s.cs +0 -5
- data/test/MC/Mips/test_i10.s.cs +0 -5
- data/test/MC/Mips/test_i5.s.cs +0 -45
- data/test/MC/Mips/test_i8.s.cs +0 -11
- data/test/MC/Mips/test_lsa.s.cs +0 -5
- data/test/MC/Mips/test_mi10.s.cs +0 -24
- data/test/MC/Mips/test_vec.s.cs +0 -8
- data/test/MC/PowerPC/ppc64-encoding-bookII.s.cs +0 -25
- data/test/MC/PowerPC/ppc64-encoding-bookIII.s.cs +0 -35
- data/test/MC/PowerPC/ppc64-encoding-ext.s.cs +0 -535
- data/test/MC/PowerPC/ppc64-encoding-fp.s.cs +0 -110
- data/test/MC/PowerPC/ppc64-encoding-vmx.s.cs +0 -170
- data/test/MC/PowerPC/ppc64-encoding.s.cs +0 -202
- data/test/MC/PowerPC/ppc64-operands.s.cs +0 -32
- data/test/MC/README +0 -6
- data/test/MC/Sparc/sparc-alu-instructions.s.cs +0 -47
- data/test/MC/Sparc/sparc-atomic-instructions.s.cs +0 -7
- data/test/MC/Sparc/sparc-ctrl-instructions.s.cs +0 -11
- data/test/MC/Sparc/sparc-fp-instructions.s.cs +0 -59
- data/test/MC/Sparc/sparc-mem-instructions.s.cs +0 -25
- data/test/MC/Sparc/sparc-vis.s.cs +0 -2
- data/test/MC/Sparc/sparc64-alu-instructions.s.cs +0 -13
- data/test/MC/Sparc/sparc64-ctrl-instructions.s.cs +0 -102
- data/test/MC/Sparc/sparcv8-instructions.s.cs +0 -7
- data/test/MC/Sparc/sparcv9-instructions.s.cs +0 -1
- data/test/MC/SystemZ/insn-good-z196.s.cs +0 -589
- data/test/MC/SystemZ/insn-good.s.cs +0 -2265
- data/test/MC/SystemZ/regs-good.s.cs +0 -45
- data/test/MC/X86/3DNow.s.cs +0 -29
- data/test/MC/X86/address-size.s.cs +0 -5
- data/test/MC/X86/avx512-encodings.s.cs +0 -12
- data/test/MC/X86/intel-syntax-encoding.s.cs +0 -30
- data/test/MC/X86/x86-32-avx.s.cs +0 -833
- data/test/MC/X86/x86-32-fma3.s.cs +0 -169
- data/test/MC/X86/x86-32-ms-inline-asm.s.cs +0 -27
- data/test/MC/X86/x86_64-avx-clmul-encoding.s.cs +0 -11
- data/test/MC/X86/x86_64-avx-encoding.s.cs +0 -1058
- data/test/MC/X86/x86_64-bmi-encoding.s.cs +0 -51
- data/test/MC/X86/x86_64-encoding.s.cs +0 -59
- data/test/MC/X86/x86_64-fma3-encoding.s.cs +0 -169
- data/test/MC/X86/x86_64-fma4-encoding.s.cs +0 -98
- data/test/MC/X86/x86_64-hle-encoding.s.cs +0 -3
- data/test/MC/X86/x86_64-imm-widths.s.cs +0 -27
- data/test/MC/X86/x86_64-rand-encoding.s.cs +0 -13
- data/test/MC/X86/x86_64-rtm-encoding.s.cs +0 -4
- data/test/MC/X86/x86_64-sse4a.s.cs +0 -1
- data/test/MC/X86/x86_64-tbm-encoding.s.cs +0 -40
- data/test/MC/X86/x86_64-xop-encoding.s.cs +0 -152
- data/test/README +0 -6
- data/test/test.rb +0 -205
- data/test/test.rb.SPEC +0 -235
- data/test/test_arm.rb +0 -202
- data/test/test_arm.rb.SPEC +0 -275
- data/test/test_arm64.rb +0 -150
- data/test/test_arm64.rb.SPEC +0 -116
- data/test/test_detail.rb +0 -228
- data/test/test_detail.rb.SPEC +0 -322
- data/test/test_exhaustive.rb +0 -80
- data/test/test_mips.rb +0 -118
- data/test/test_mips.rb.SPEC +0 -91
- data/test/test_ppc.rb +0 -137
- data/test/test_ppc.rb.SPEC +0 -84
- data/test/test_sanity.rb +0 -83
- data/test/test_skipdata.rb +0 -111
- data/test/test_skipdata.rb.SPEC +0 -58
- data/test/test_sparc.rb +0 -113
- data/test/test_sparc.rb.SPEC +0 -116
- data/test/test_sysz.rb +0 -111
- data/test/test_sysz.rb.SPEC +0 -61
- data/test/test_x86.rb +0 -189
- data/test/test_x86.rb.SPEC +0 -579
- data/test/test_xcore.rb +0 -100
- data/test/test_xcore.rb.SPEC +0 -75
data/test/test.rb
DELETED
@@ -1,205 +0,0 @@
|
|
1
|
-
#!/usr/bin/env ruby
|
2
|
-
|
3
|
-
# Library by Nguyen Anh Quynh
|
4
|
-
# Original binding by Nguyen Anh Quynh and Tan Sheng Di
|
5
|
-
# Additional binding work by Ben Nagy
|
6
|
-
# (c) 2013 COSEINC. All Rights Reserved.
|
7
|
-
|
8
|
-
require 'crabstone'
|
9
|
-
require 'stringio'
|
10
|
-
|
11
|
-
module Test
|
12
|
-
|
13
|
-
include Crabstone
|
14
|
-
|
15
|
-
X86_CODE16 = "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
|
16
|
-
X86_CODE32 = "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
|
17
|
-
X86_CODE64 = "\x55\x48\x8b\x05\xb8\x13\x00\x00"
|
18
|
-
ARM_CODE = "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x00\xa0\xe3\x02\x30\xc1\xe7\x00\x00\x53\xe3"
|
19
|
-
ARM_CODE2 = "\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3"
|
20
|
-
ARMV8 = "\xe0\x3b\xb2\xee\x42\x00\x01\xe1\x51\xf0\x7f\xf5"
|
21
|
-
THUMB_MCLASS = "\xef\xf3\x02\x80"
|
22
|
-
THUMB_CODE = "\x70\x47\xeb\x46\x83\xb0\xc9\x68"
|
23
|
-
THUMB_CODE2 = "\x4f\xf0\x00\x01\xbd\xe8\x00\x88\xd1\xe8\x00\xf0"
|
24
|
-
MIPS_CODE = "\x0C\x10\x00\x97\x00\x00\x00\x00\x24\x02\x00\x0c\x8f\xa2\x00\x00\x34\x21\x34\x56"
|
25
|
-
MIPS_CODE2 = "\x56\x34\x21\x34\xc2\x17\x01\x00"
|
26
|
-
MIPS_32R6M = "\x00\x07\x00\x07\x00\x11\x93\x7c\x01\x8c\x8b\x7c\x00\xc7\x48\xd0"
|
27
|
-
MIPS_32R6 = "\xec\x80\x00\x19\x7c\x43\x22\xa0"
|
28
|
-
ARM64_CODE = "\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9"
|
29
|
-
PPC_CODE = "\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\x2d\x03\x00\x80\x7c\x43\x20\x14\x7c\x43\x20\x93\x4f\x20\x00\x21\x4c\xc8\x00\x21"
|
30
|
-
SPARC_CODE = "\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x01\xd5\xf6\x10\x16\x21\x00\x00\x0a\x86\x00\x40\x02\x01\x00\x00\x00\x12\xbf\xff\xff\x10\xbf\xff\xff\xa0\x02\x00\x09\x0d\xbf\xff\xff\xd4\x20\x60\x00\xd4\x4e\x00\x16\x2a\xc2\x80\x03"
|
31
|
-
SPARCV9_CODE = "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0"
|
32
|
-
SYSZ_CODE = "\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\xff\x7f\x57\xe3\x01\xff\xff\x7f\x57\xeb\x00\xf0\x00\x00\x24\xb2\x4f\x00\x78"
|
33
|
-
XCORE_CODE = "\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf2\x45\x5b\xf9\xfa\x02\x06\x1b\x10"
|
34
|
-
|
35
|
-
@platforms = [
|
36
|
-
Hash[
|
37
|
-
'arch' => ARCH_X86,
|
38
|
-
'mode' => MODE_16,
|
39
|
-
'code' => X86_CODE16,
|
40
|
-
'comment' => "X86 16bit (Intel syntax)"
|
41
|
-
],
|
42
|
-
Hash[
|
43
|
-
'arch' => ARCH_X86,
|
44
|
-
'mode' => MODE_32,
|
45
|
-
'code' => X86_CODE32,
|
46
|
-
'comment' => "X86 32bit (ATT syntax)",
|
47
|
-
'syntax' => :att,
|
48
|
-
],
|
49
|
-
Hash[
|
50
|
-
'arch' => ARCH_X86,
|
51
|
-
'mode' => MODE_32,
|
52
|
-
'code' => X86_CODE32,
|
53
|
-
'comment' => "X86 32 (Intel syntax)"
|
54
|
-
],
|
55
|
-
Hash[
|
56
|
-
'arch' => ARCH_X86,
|
57
|
-
'mode' => MODE_64,
|
58
|
-
'code' => X86_CODE64,
|
59
|
-
'comment' => "X86 64 (Intel syntax)"
|
60
|
-
],
|
61
|
-
Hash[
|
62
|
-
'arch' => ARCH_ARM,
|
63
|
-
'mode' => MODE_ARM,
|
64
|
-
'code' => ARM_CODE,
|
65
|
-
'comment' => "ARM"
|
66
|
-
],
|
67
|
-
Hash[
|
68
|
-
'arch' => ARCH_ARM,
|
69
|
-
'mode' => MODE_THUMB,
|
70
|
-
'code' => THUMB_CODE2,
|
71
|
-
'comment' => "THUMB-2"
|
72
|
-
],
|
73
|
-
Hash[
|
74
|
-
'arch' => ARCH_ARM,
|
75
|
-
'mode' => MODE_ARM,
|
76
|
-
'code' => ARM_CODE2,
|
77
|
-
'comment' => "ARM: Cortex-A15 + NEON"
|
78
|
-
],
|
79
|
-
Hash[
|
80
|
-
'arch' => ARCH_ARM,
|
81
|
-
'mode' => MODE_THUMB,
|
82
|
-
'code' => THUMB_CODE,
|
83
|
-
'comment' => "THUMB"
|
84
|
-
],
|
85
|
-
Hash[
|
86
|
-
'arch' => ARCH_ARM,
|
87
|
-
'mode' => MODE_THUMB + MODE_MCLASS,
|
88
|
-
'code' => THUMB_MCLASS,
|
89
|
-
'comment' => "Thumb-MClass"
|
90
|
-
],
|
91
|
-
Hash[
|
92
|
-
'arch' => ARCH_ARM,
|
93
|
-
'mode' => MODE_ARM + MODE_V8,
|
94
|
-
'code' => ARMV8,
|
95
|
-
'comment' => "Arm-V8"
|
96
|
-
],
|
97
|
-
Hash[
|
98
|
-
'arch' => ARCH_MIPS,
|
99
|
-
'mode' => MODE_32 + MODE_BIG_ENDIAN,
|
100
|
-
'code' => MIPS_CODE,
|
101
|
-
'comment' => "MIPS-32 (Big-endian)"
|
102
|
-
],
|
103
|
-
Hash[
|
104
|
-
'arch' => ARCH_MIPS,
|
105
|
-
'mode' => MODE_64 + MODE_LITTLE_ENDIAN,
|
106
|
-
'code' => MIPS_CODE2,
|
107
|
-
'comment' => "MIPS-64-EL (Little-endian)"
|
108
|
-
],
|
109
|
-
Hash[
|
110
|
-
'arch' => ARCH_MIPS,
|
111
|
-
'mode' => MODE_MIPS32R6 + MODE_MICRO + MODE_BIG_ENDIAN,
|
112
|
-
'code' => MIPS_32R6M,
|
113
|
-
'comment' => "MIPS-32R6 | Micro (Big-endian)"
|
114
|
-
],
|
115
|
-
Hash[
|
116
|
-
'arch' => ARCH_MIPS,
|
117
|
-
'mode' => MODE_MIPS32R6 + MODE_BIG_ENDIAN,
|
118
|
-
'code' => MIPS_32R6,
|
119
|
-
'comment' => "MIPS-32R6 (Big-endian)"
|
120
|
-
],
|
121
|
-
Hash[
|
122
|
-
'arch' => ARCH_ARM64,
|
123
|
-
'mode' => MODE_ARM,
|
124
|
-
'code' => ARM64_CODE,
|
125
|
-
'comment' => "ARM-64"
|
126
|
-
],
|
127
|
-
Hash[
|
128
|
-
'arch' => ARCH_PPC,
|
129
|
-
'mode' => MODE_BIG_ENDIAN,
|
130
|
-
'code' => PPC_CODE,
|
131
|
-
'comment' => "PPC-64"
|
132
|
-
],
|
133
|
-
Hash[
|
134
|
-
'arch' => ARCH_PPC,
|
135
|
-
'mode' => MODE_BIG_ENDIAN,
|
136
|
-
'code' => PPC_CODE,
|
137
|
-
'syntax' => :no_regname,
|
138
|
-
'comment' => "PPC-64, print register with number only"
|
139
|
-
],
|
140
|
-
Hash[
|
141
|
-
'arch' => ARCH_SPARC,
|
142
|
-
'mode' => MODE_BIG_ENDIAN,
|
143
|
-
'code' => SPARC_CODE,
|
144
|
-
'comment' => "Sparc"
|
145
|
-
],
|
146
|
-
Hash[
|
147
|
-
'arch' => ARCH_SPARC,
|
148
|
-
'mode' => MODE_BIG_ENDIAN + MODE_V9,
|
149
|
-
'code' => SPARCV9_CODE,
|
150
|
-
'comment' => "SparcV9"
|
151
|
-
],
|
152
|
-
Hash[
|
153
|
-
'arch' => ARCH_SYSZ,
|
154
|
-
'mode' => MODE_BIG_ENDIAN,
|
155
|
-
'code' => SYSZ_CODE,
|
156
|
-
'comment' => "SystemZ"
|
157
|
-
],
|
158
|
-
Hash[
|
159
|
-
'arch' => ARCH_XCORE,
|
160
|
-
'mode' => MODE_BIG_ENDIAN,
|
161
|
-
'code' => XCORE_CODE,
|
162
|
-
'comment' => "XCore"
|
163
|
-
]
|
164
|
-
]
|
165
|
-
|
166
|
-
ours = StringIO.new
|
167
|
-
|
168
|
-
begin
|
169
|
-
cs = Disassembler.new(0,0)
|
170
|
-
puts "Capstone Diet Mode: #{DIET_MODE}"
|
171
|
-
print "Basic Test: Capstone v #{cs.version.join('.')} - "
|
172
|
-
ensure
|
173
|
-
cs.close rescue nil
|
174
|
-
end
|
175
|
-
|
176
|
-
#Test through all modes and architectures
|
177
|
-
@platforms.each do |p|
|
178
|
-
ours.puts "****************"
|
179
|
-
ours.puts "Platform: #{p['comment']}"
|
180
|
-
ours.puts "Code: #{p['code'].bytes.map {|b| "0x%.2x" % b}.join(' ')} "
|
181
|
-
ours.puts "Disasm:"
|
182
|
-
cs = Disassembler.new(p['arch'], p['mode'])
|
183
|
-
if p['syntax']
|
184
|
-
cs.syntax = p['syntax']
|
185
|
-
end
|
186
|
-
cache = nil
|
187
|
-
cs.disasm(p['code'], 0x1000).each {|insn|
|
188
|
-
ours.printf("0x%x:\t%s\t\t%s\n",insn.address, insn.mnemonic, insn.op_str)
|
189
|
-
cache = insn.address + insn.size
|
190
|
-
}
|
191
|
-
ours.printf("0x%x:\n", cache)
|
192
|
-
cs.close
|
193
|
-
ours.puts
|
194
|
-
end
|
195
|
-
|
196
|
-
ours.rewind
|
197
|
-
theirs = File.binread(__FILE__ + ".SPEC")
|
198
|
-
if ours.read == theirs
|
199
|
-
puts "#{__FILE__}: PASS"
|
200
|
-
else
|
201
|
-
ours.rewind
|
202
|
-
puts ours.read
|
203
|
-
puts "#{__FILE__}: FAIL"
|
204
|
-
end
|
205
|
-
end
|
data/test/test.rb.SPEC
DELETED
@@ -1,235 +0,0 @@
|
|
1
|
-
****************
|
2
|
-
Platform: X86 16bit (Intel syntax)
|
3
|
-
Code: 0x8d 0x4c 0x32 0x08 0x01 0xd8 0x81 0xc6 0x34 0x12 0x00 0x00
|
4
|
-
Disasm:
|
5
|
-
0x1000: lea cx, word ptr [si + 0x32]
|
6
|
-
0x1003: or byte ptr [bx + di], al
|
7
|
-
0x1005: fadd dword ptr [bx + di + 0x34c6]
|
8
|
-
0x1009: adc al, byte ptr [bx + si]
|
9
|
-
0x100b:
|
10
|
-
|
11
|
-
****************
|
12
|
-
Platform: X86 32bit (ATT syntax)
|
13
|
-
Code: 0x8d 0x4c 0x32 0x08 0x01 0xd8 0x81 0xc6 0x34 0x12 0x00 0x00
|
14
|
-
Disasm:
|
15
|
-
0x1000: leal 8(%edx, %esi), %ecx
|
16
|
-
0x1004: addl %ebx, %eax
|
17
|
-
0x1006: addl $0x1234, %esi
|
18
|
-
0x100c:
|
19
|
-
|
20
|
-
****************
|
21
|
-
Platform: X86 32 (Intel syntax)
|
22
|
-
Code: 0x8d 0x4c 0x32 0x08 0x01 0xd8 0x81 0xc6 0x34 0x12 0x00 0x00
|
23
|
-
Disasm:
|
24
|
-
0x1000: lea ecx, dword ptr [edx + esi + 8]
|
25
|
-
0x1004: add eax, ebx
|
26
|
-
0x1006: add esi, 0x1234
|
27
|
-
0x100c:
|
28
|
-
|
29
|
-
****************
|
30
|
-
Platform: X86 64 (Intel syntax)
|
31
|
-
Code: 0x55 0x48 0x8b 0x05 0xb8 0x13 0x00 0x00
|
32
|
-
Disasm:
|
33
|
-
0x1000: push rbp
|
34
|
-
0x1001: mov rax, qword ptr [rip + 0x13b8]
|
35
|
-
0x1008:
|
36
|
-
|
37
|
-
****************
|
38
|
-
Platform: ARM
|
39
|
-
Code: 0xed 0xff 0xff 0xeb 0x04 0xe0 0x2d 0xe5 0x00 0x00 0x00 0x00 0xe0 0x83 0x22 0xe5 0xf1 0x02 0x03 0x0e 0x00 0x00 0xa0 0xe3 0x02 0x30 0xc1 0xe7 0x00 0x00 0x53 0xe3
|
40
|
-
Disasm:
|
41
|
-
0x1000: bl #0xfbc
|
42
|
-
0x1004: str lr, [sp, #-4]!
|
43
|
-
0x1008: andeq r0, r0, r0
|
44
|
-
0x100c: str r8, [r2, #-0x3e0]!
|
45
|
-
0x1010: mcreq p2, #0, r0, c3, c1, #7
|
46
|
-
0x1014: mov r0, #0
|
47
|
-
0x1018: strb r3, [r1, r2]
|
48
|
-
0x101c: cmp r3, #0
|
49
|
-
0x1020:
|
50
|
-
|
51
|
-
****************
|
52
|
-
Platform: THUMB-2
|
53
|
-
Code: 0x4f 0xf0 0x00 0x01 0xbd 0xe8 0x00 0x88 0xd1 0xe8 0x00 0xf0
|
54
|
-
Disasm:
|
55
|
-
0x1000: mov.w r1, #0
|
56
|
-
0x1004: pop.w {fp, pc}
|
57
|
-
0x1008: tbb [r1, r0]
|
58
|
-
0x100c:
|
59
|
-
|
60
|
-
****************
|
61
|
-
Platform: ARM: Cortex-A15 + NEON
|
62
|
-
Code: 0x10 0xf1 0x10 0xe7 0x11 0xf2 0x31 0xe7 0xdc 0xa1 0x2e 0xf3 0xe8 0x4e 0x62 0xf3
|
63
|
-
Disasm:
|
64
|
-
0x1000: sdiv r0, r0, r1
|
65
|
-
0x1004: udiv r1, r1, r2
|
66
|
-
0x1008: vbit q5, q15, q6
|
67
|
-
0x100c: vcgt.f32 q10, q9, q12
|
68
|
-
0x1010:
|
69
|
-
|
70
|
-
****************
|
71
|
-
Platform: THUMB
|
72
|
-
Code: 0x70 0x47 0xeb 0x46 0x83 0xb0 0xc9 0x68
|
73
|
-
Disasm:
|
74
|
-
0x1000: bx lr
|
75
|
-
0x1002: mov fp, sp
|
76
|
-
0x1004: sub sp, #0xc
|
77
|
-
0x1006: ldr r1, [r1, #0xc]
|
78
|
-
0x1008:
|
79
|
-
|
80
|
-
****************
|
81
|
-
Platform: Thumb-MClass
|
82
|
-
Code: 0xef 0xf3 0x02 0x80
|
83
|
-
Disasm:
|
84
|
-
0x1000: mrs r0, eapsr
|
85
|
-
0x1004:
|
86
|
-
|
87
|
-
****************
|
88
|
-
Platform: Arm-V8
|
89
|
-
Code: 0xe0 0x3b 0xb2 0xee 0x42 0x00 0x01 0xe1 0x51 0xf0 0x7f 0xf5
|
90
|
-
Disasm:
|
91
|
-
0x1000: vcvtt.f64.f16 d3, s1
|
92
|
-
0x1004: crc32b r0, r1, r2
|
93
|
-
0x1008: dmb oshld
|
94
|
-
0x100c:
|
95
|
-
|
96
|
-
****************
|
97
|
-
Platform: MIPS-32 (Big-endian)
|
98
|
-
Code: 0x0c 0x10 0x00 0x97 0x00 0x00 0x00 0x00 0x24 0x02 0x00 0x0c 0x8f 0xa2 0x00 0x00 0x34 0x21 0x34 0x56
|
99
|
-
Disasm:
|
100
|
-
0x1000: jal 0x40025c
|
101
|
-
0x1004: nop
|
102
|
-
0x1008: addiu $v0, $zero, 0xc
|
103
|
-
0x100c: lw $v0, ($sp)
|
104
|
-
0x1010: ori $at, $at, 0x3456
|
105
|
-
0x1014:
|
106
|
-
|
107
|
-
****************
|
108
|
-
Platform: MIPS-64-EL (Little-endian)
|
109
|
-
Code: 0x56 0x34 0x21 0x34 0xc2 0x17 0x01 0x00
|
110
|
-
Disasm:
|
111
|
-
0x1000: ori $at, $at, 0x3456
|
112
|
-
0x1004: srl $v0, $at, 0x1f
|
113
|
-
0x1008:
|
114
|
-
|
115
|
-
****************
|
116
|
-
Platform: MIPS-32R6 | Micro (Big-endian)
|
117
|
-
Code: 0x00 0x07 0x00 0x07 0x00 0x11 0x93 0x7c 0x01 0x8c 0x8b 0x7c 0x00 0xc7 0x48 0xd0
|
118
|
-
Disasm:
|
119
|
-
0x1000: break 7, 0
|
120
|
-
0x1004: wait 0x11
|
121
|
-
0x1008: syscall 0x18c
|
122
|
-
0x100c: rotrv $t1, $a2, $a3
|
123
|
-
0x1010:
|
124
|
-
|
125
|
-
****************
|
126
|
-
Platform: MIPS-32R6 (Big-endian)
|
127
|
-
Code: 0xec 0x80 0x00 0x19 0x7c 0x43 0x22 0xa0
|
128
|
-
Disasm:
|
129
|
-
0x1000: addiupc $a0, 0x64
|
130
|
-
0x1004: align $a0, $v0, $v1, 2
|
131
|
-
0x1008:
|
132
|
-
|
133
|
-
****************
|
134
|
-
Platform: ARM-64
|
135
|
-
Code: 0x21 0x7c 0x02 0x9b 0x21 0x7c 0x00 0x53 0x00 0x40 0x21 0x4b 0xe1 0x0b 0x40 0xb9
|
136
|
-
Disasm:
|
137
|
-
0x1000: mul x1, x1, x2
|
138
|
-
0x1004: lsr w1, w1, #0
|
139
|
-
0x1008: sub w0, w0, w1, uxtw
|
140
|
-
0x100c: ldr w1, [sp, #8]
|
141
|
-
0x1010:
|
142
|
-
|
143
|
-
****************
|
144
|
-
Platform: PPC-64
|
145
|
-
Code: 0x80 0x20 0x00 0x00 0x80 0x3f 0x00 0x00 0x10 0x43 0x23 0x0e 0xd0 0x44 0x00 0x80 0x4c 0x43 0x22 0x02 0x2d 0x03 0x00 0x80 0x7c 0x43 0x20 0x14 0x7c 0x43 0x20 0x93 0x4f 0x20 0x00 0x21 0x4c 0xc8 0x00 0x21
|
146
|
-
Disasm:
|
147
|
-
0x1000: lwz r1, (0)
|
148
|
-
0x1004: lwz r1, (r31)
|
149
|
-
0x1008: vpkpx v2, v3, v4
|
150
|
-
0x100c: stfs f2, 0x80(r4)
|
151
|
-
0x1010: crand 2, 3, 4
|
152
|
-
0x1014: cmpwi cr2, r3, 0x80
|
153
|
-
0x1018: addc r2, r3, r4
|
154
|
-
0x101c: mulhd. r2, r3, r4
|
155
|
-
0x1020: bdnzlrl+
|
156
|
-
0x1024: bgelrl- cr2
|
157
|
-
0x1028:
|
158
|
-
|
159
|
-
****************
|
160
|
-
Platform: PPC-64, print register with number only
|
161
|
-
Code: 0x80 0x20 0x00 0x00 0x80 0x3f 0x00 0x00 0x10 0x43 0x23 0x0e 0xd0 0x44 0x00 0x80 0x4c 0x43 0x22 0x02 0x2d 0x03 0x00 0x80 0x7c 0x43 0x20 0x14 0x7c 0x43 0x20 0x93 0x4f 0x20 0x00 0x21 0x4c 0xc8 0x00 0x21
|
162
|
-
Disasm:
|
163
|
-
0x1000: lwz 1, (0)
|
164
|
-
0x1004: lwz 1, (31)
|
165
|
-
0x1008: vpkpx 2, 3, 4
|
166
|
-
0x100c: stfs 2, 0x80(4)
|
167
|
-
0x1010: crand 2, 3, 4
|
168
|
-
0x1014: cmpwi 2, 3, 0x80
|
169
|
-
0x1018: addc 2, 3, 4
|
170
|
-
0x101c: mulhd. 2, 3, 4
|
171
|
-
0x1020: bdnzlrl+
|
172
|
-
0x1024: bgelrl- cr2
|
173
|
-
0x1028:
|
174
|
-
|
175
|
-
****************
|
176
|
-
Platform: Sparc
|
177
|
-
Code: 0x80 0xa0 0x40 0x02 0x85 0xc2 0x60 0x08 0x85 0xe8 0x20 0x01 0x81 0xe8 0x00 0x00 0x90 0x10 0x20 0x01 0xd5 0xf6 0x10 0x16 0x21 0x00 0x00 0x0a 0x86 0x00 0x40 0x02 0x01 0x00 0x00 0x00 0x12 0xbf 0xff 0xff 0x10 0xbf 0xff 0xff 0xa0 0x02 0x00 0x09 0x0d 0xbf 0xff 0xff 0xd4 0x20 0x60 0x00 0xd4 0x4e 0x00 0x16 0x2a 0xc2 0x80 0x03
|
178
|
-
Disasm:
|
179
|
-
0x1000: cmp %g1, %g2
|
180
|
-
0x1004: jmpl %o1+8, %g2
|
181
|
-
0x1008: restore %g0, 1, %g2
|
182
|
-
0x100c: restore
|
183
|
-
0x1010: mov 1, %o0
|
184
|
-
0x1014: casx [%i0], %l6, %o2
|
185
|
-
0x1018: sethi 0xa, %l0
|
186
|
-
0x101c: add %g1, %g2, %g3
|
187
|
-
0x1020: nop
|
188
|
-
0x1024: bne 0x1020
|
189
|
-
0x1028: ba 0x1024
|
190
|
-
0x102c: add %o0, %o1, %l0
|
191
|
-
0x1030: fbg 0x102c
|
192
|
-
0x1034: st %o2, [%g1]
|
193
|
-
0x1038: ldsb [%i0+%l6], %o2
|
194
|
-
0x103c: brnz,a,pn %o2, 0x1048
|
195
|
-
0x1040:
|
196
|
-
|
197
|
-
****************
|
198
|
-
Platform: SparcV9
|
199
|
-
Code: 0x81 0xa8 0x0a 0x24 0x89 0xa0 0x10 0x20 0x89 0xa0 0x1a 0x60 0x89 0xa0 0x00 0xe0
|
200
|
-
Disasm:
|
201
|
-
0x1000: fcmps %f0, %f4
|
202
|
-
0x1004: fstox %f0, %f4
|
203
|
-
0x1008: fqtoi %f0, %f4
|
204
|
-
0x100c: fnegq %f0, %f4
|
205
|
-
0x1010:
|
206
|
-
|
207
|
-
****************
|
208
|
-
Platform: SystemZ
|
209
|
-
Code: 0xed 0x00 0x00 0x00 0x00 0x1a 0x5a 0x0f 0x1f 0xff 0xc2 0x09 0x80 0x00 0x00 0x00 0x07 0xf7 0xeb 0x2a 0xff 0xff 0x7f 0x57 0xe3 0x01 0xff 0xff 0x7f 0x57 0xeb 0x00 0xf0 0x00 0x00 0x24 0xb2 0x4f 0x00 0x78
|
210
|
-
Disasm:
|
211
|
-
0x1000: adb %f0, 0
|
212
|
-
0x1006: a %r0, 0xfff(%r15, %r1)
|
213
|
-
0x100a: afi %r0, -0x80000000
|
214
|
-
0x1010: br %r7
|
215
|
-
0x1012: xiy 0x7ffff(%r15), 0x2a
|
216
|
-
0x1018: xy %r0, 0x7ffff(%r1, %r15)
|
217
|
-
0x101e: stmg %r0, %r0, 0(%r15)
|
218
|
-
0x1024: ear %r7, %a8
|
219
|
-
0x1028:
|
220
|
-
|
221
|
-
****************
|
222
|
-
Platform: XCore
|
223
|
-
Code: 0xfe 0x0f 0xfe 0x17 0x13 0x17 0xc6 0xfe 0xec 0x17 0x97 0xf8 0xec 0x4f 0x1f 0xfd 0xec 0x37 0x07 0xf2 0x45 0x5b 0xf9 0xfa 0x02 0x06 0x1b 0x10
|
224
|
-
Disasm:
|
225
|
-
0x1000: get r11, ed
|
226
|
-
0x1002: ldw et, sp[4]
|
227
|
-
0x1004: setd res[r3], r4
|
228
|
-
0x1006: init t[r2]:lr, r1
|
229
|
-
0x100a: divu r9, r1, r3
|
230
|
-
0x100e: lda16 r9, r3[-r11]
|
231
|
-
0x1012: ldw dp, dp[0x81c5]
|
232
|
-
0x1016: lmul r11, r0, r2, r5, r8, r10
|
233
|
-
0x101a: add r1, r2, r3
|
234
|
-
0x101c:
|
235
|
-
|
data/test/test_arm.rb
DELETED
@@ -1,202 +0,0 @@
|
|
1
|
-
#! /usr/bin/env ruby
|
2
|
-
|
3
|
-
# Library by Nguyen Anh Quynh
|
4
|
-
# Original binding by Nguyen Anh Quynh and Tan Sheng Di
|
5
|
-
# Additional binding work by Ben Nagy
|
6
|
-
# (c) 2013 COSEINC. All Rights Reserved.
|
7
|
-
|
8
|
-
require 'crabstone'
|
9
|
-
require 'stringio'
|
10
|
-
|
11
|
-
module TestARM
|
12
|
-
|
13
|
-
include Crabstone
|
14
|
-
include Crabstone::ARM
|
15
|
-
|
16
|
-
ARM_CODE = "\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x00\xa0\xe3\x02\x30\xc1\xe7\x00\x00\x53\xe3\x00\x02\x01\xf1\x05\x40\xd0\xe8\xf4\x80\x00\x00"
|
17
|
-
ARM_CODE2 = "\xd1\xe8\x00\xf0\xf0\x24\x04\x07\x1f\x3c\xf2\xc0\x00\x00\x4f\xf0\x00\x01\x46\x6c"
|
18
|
-
THUMB_CODE = "\x70\x47\xeb\x46\x83\xb0\xc9\x68\x1f\xb1\x30\xbf\xaf\xf3\x20\x84"
|
19
|
-
THUMB_CODE2 = "\x4f\xf0\x00\x01\xbd\xe8\x00\x88\xd1\xe8\x00\xf0\x18\xbf\xad\xbf\xf3\xff\x0b\x0c\x86\xf3\x00\x89\x80\xf3\x00\x8c\x4f\xfa\x99\xf6\xd0\xff\xa2\x01"
|
20
|
-
THUMB_MCLASS = "\xef\xf3\x02\x80"
|
21
|
-
ARMV8 = "\xe0\x3b\xb2\xee\x42\x00\x01\xe1\x51\xf0\x7f\xf5"
|
22
|
-
|
23
|
-
@platforms = [
|
24
|
-
Hash[
|
25
|
-
'arch' => ARCH_ARM,
|
26
|
-
'mode' => MODE_ARM,
|
27
|
-
'code' => ARM_CODE,
|
28
|
-
'comment' => "ARM"
|
29
|
-
],
|
30
|
-
Hash[
|
31
|
-
'arch' => ARCH_ARM,
|
32
|
-
'mode' => MODE_THUMB,
|
33
|
-
'code' => THUMB_CODE,
|
34
|
-
'comment' => "Thumb"
|
35
|
-
],
|
36
|
-
Hash[
|
37
|
-
'arch' => ARCH_ARM,
|
38
|
-
'mode' => MODE_THUMB,
|
39
|
-
'code' => ARM_CODE2,
|
40
|
-
'comment' => "Thumb-mixed"
|
41
|
-
],
|
42
|
-
Hash[
|
43
|
-
'arch' => ARCH_ARM,
|
44
|
-
'mode' => MODE_THUMB,
|
45
|
-
'code' => THUMB_CODE2,
|
46
|
-
'comment' => "Thumb-2 & register named with numbers",
|
47
|
-
'syntax' => :no_regname
|
48
|
-
],
|
49
|
-
Hash[
|
50
|
-
'arch' => ARCH_ARM,
|
51
|
-
'mode' => MODE_THUMB + MODE_MCLASS,
|
52
|
-
'code' => THUMB_MCLASS,
|
53
|
-
'comment' => "Thumb-MClass",
|
54
|
-
'syntax' => :no_regname
|
55
|
-
],
|
56
|
-
Hash[
|
57
|
-
'arch' => ARCH_ARM,
|
58
|
-
'mode' => MODE_ARM + MODE_V8,
|
59
|
-
'code' => ARMV8,
|
60
|
-
'comment' => "Arm-V8",
|
61
|
-
'syntax' => :no_regname
|
62
|
-
],
|
63
|
-
]
|
64
|
-
|
65
|
-
def self.uint32 i
|
66
|
-
Integer(i) & 0xffffffff
|
67
|
-
end
|
68
|
-
|
69
|
-
def self.uint64 i
|
70
|
-
Integer(i) & ((1<<64)-1)
|
71
|
-
end
|
72
|
-
|
73
|
-
def self.print_detail(cs, i, sio)
|
74
|
-
|
75
|
-
# Sanity checks for register equivalency (string, const or numeric literal)
|
76
|
-
if i.reads_reg?( 'sp' ) || i.reads_reg?( 12 ) || i.reads_reg?( REG_SP )
|
77
|
-
unless i.reads_reg?( 'sp' ) && i.reads_reg?( 12 ) && i.reads_reg?( REG_SP )
|
78
|
-
fail "Error in reg read decomposition"
|
79
|
-
end
|
80
|
-
end
|
81
|
-
if i.writes_reg?( 'lr' ) || i.writes_reg?( 10 ) || i.writes_reg?( REG_LR )
|
82
|
-
unless i.writes_reg?( 'lr' ) && i.writes_reg?( 10 ) && i.writes_reg?( REG_LR )
|
83
|
-
fail "Error in reg write decomposition"
|
84
|
-
end
|
85
|
-
end
|
86
|
-
|
87
|
-
if i.op_count > 0 then
|
88
|
-
sio.puts "\top_count: #{i.op_count}"
|
89
|
-
i.operands.each.with_index do |op,idx|
|
90
|
-
|
91
|
-
case op[:type]
|
92
|
-
when OP_REG
|
93
|
-
sio.puts "\t\toperands[#{idx}].type: REG = #{cs.reg_name(op[:value][:reg])}"
|
94
|
-
when OP_IMM
|
95
|
-
sio.puts "\t\toperands[#{idx}].type: IMM = 0x#{self.uint64(op.value).to_s(16)}"
|
96
|
-
when OP_FP
|
97
|
-
sio.puts "\t\toperands[#{idx}].type: FP = 0x#{self.uint32(op[:value][:fp])}"
|
98
|
-
when OP_CIMM
|
99
|
-
sio.puts "\t\toperands[#{idx}].type: C-IMM = #{self.uint32(op[:value][:imm])}"
|
100
|
-
when OP_PIMM
|
101
|
-
sio.puts "\t\toperands[#{idx}].type: P-IMM = #{self.uint32(op[:value][:imm])}"
|
102
|
-
when OP_SETEND
|
103
|
-
if op.value == SETEND_BE
|
104
|
-
sio.puts "\t\toperands[#{idx}].type: SETEND = be"
|
105
|
-
else
|
106
|
-
sio.puts "\t\toperands[#{idx}].type: SETEND = le"
|
107
|
-
end
|
108
|
-
when OP_SYSREG
|
109
|
-
sio.puts "\t\toperands[#{idx}].type: SYSREG = #{op.value}"
|
110
|
-
when OP_MEM
|
111
|
-
sio.puts "\t\toperands[#{idx}].type: MEM"
|
112
|
-
if op[:value][:mem][:base] != 0 then
|
113
|
-
sio.puts "\t\t\toperands[#{idx}].mem.base: REG = %s" % cs.reg_name(op.value[:base])
|
114
|
-
end
|
115
|
-
if op[:value][:mem][:index] != 0 then
|
116
|
-
sio.puts "\t\t\toperands[#{idx}].mem.index: REG = %s" % cs.reg_name(op.value[:index])
|
117
|
-
end
|
118
|
-
if op[:value][:mem][:scale] != 1 then
|
119
|
-
sio.puts "\t\t\toperands[#{idx}].mem.scale = %u" % op[:value][:mem][:scale]
|
120
|
-
end
|
121
|
-
if op[:value][:mem][:disp] != 0 then
|
122
|
-
sio.puts "\t\t\toperands[#{idx}].mem.disp: 0x#{self.uint32(op.value[:disp]).to_s(16)}"
|
123
|
-
end
|
124
|
-
else
|
125
|
-
# unknown type - test will fail anyway
|
126
|
-
end
|
127
|
-
|
128
|
-
if op[:shift][:type].nonzero? && op[:shift][:value]
|
129
|
-
sio.puts "\t\t\tShift: #{op[:shift][:type]} = #{op[:shift][:value]}"
|
130
|
-
end
|
131
|
-
|
132
|
-
if op[:vector_index] != -1
|
133
|
-
sio.puts "\t\toperands[#{idx}].vector_index = #{op[:vector_index]}"
|
134
|
-
end
|
135
|
-
|
136
|
-
if op[:subtracted]
|
137
|
-
sio.puts "\t\tSubtracted: True\n"
|
138
|
-
end
|
139
|
-
|
140
|
-
end
|
141
|
-
end
|
142
|
-
|
143
|
-
if not [CC_AL, CC_INVALID].include? i.cc
|
144
|
-
sio.puts "\tCode condition: #{i.cc}"
|
145
|
-
end
|
146
|
-
sio.puts "\tUpdate-flags: True" if i.update_flags
|
147
|
-
sio.puts "\tWrite-back: True" if i.writeback
|
148
|
-
sio.puts "\tCPSI-mode: #{i.cps_mode}" if i.cps_mode.nonzero?
|
149
|
-
sio.puts "\tCPSI-flag: #{i.cps_flag}" if i.cps_flag.nonzero?
|
150
|
-
sio.puts "\tVector-data: #{i.vector_data}" if i.vector_data.nonzero?
|
151
|
-
sio.puts "\tVector-size: #{i.vector_size}" if i.vector_size.nonzero?
|
152
|
-
sio.puts "\tUser-mode: True" if i.usermode
|
153
|
-
sio.puts "\tMemory-barrier: #{i.mem_barrier}" if i.mem_barrier.nonzero?
|
154
|
-
|
155
|
-
sio.puts
|
156
|
-
|
157
|
-
end
|
158
|
-
|
159
|
-
ours = StringIO.new
|
160
|
-
|
161
|
-
begin
|
162
|
-
cs = Disassembler.new(0,0)
|
163
|
-
print "ARM Test: Capstone v #{cs.version.join('.')} - "
|
164
|
-
ensure
|
165
|
-
cs.close
|
166
|
-
end
|
167
|
-
|
168
|
-
#Test through all modes and architectures
|
169
|
-
@platforms.each do |p|
|
170
|
-
ours.puts "****************"
|
171
|
-
ours.puts "Platform: #{p['comment']}"
|
172
|
-
ours.puts "Code:#{p['code'].bytes.map {|b| "0x%.2x" % b}.join(' ')} "
|
173
|
-
ours.puts "Disasm:"
|
174
|
-
cs = Disassembler.new(p['arch'], p['mode'])
|
175
|
-
|
176
|
-
if p['syntax']
|
177
|
-
cs.syntax = p['syntax']
|
178
|
-
end
|
179
|
-
|
180
|
-
cs.decomposer = true
|
181
|
-
cache = nil
|
182
|
-
cs.disasm(p['code'], 0x1000).each {|insn|
|
183
|
-
ours.puts "0x#{insn.address.to_s(16)}:\t#{insn.mnemonic}\t#{insn.op_str}"
|
184
|
-
self.print_detail(cs, insn, ours)
|
185
|
-
cache = insn.address + insn.size
|
186
|
-
}
|
187
|
-
ours.printf("0x%x:\n", cache)
|
188
|
-
ours.puts
|
189
|
-
|
190
|
-
cs.close
|
191
|
-
end
|
192
|
-
|
193
|
-
ours.rewind
|
194
|
-
theirs = File.binread(__FILE__ + ".SPEC")
|
195
|
-
if ours.read == theirs
|
196
|
-
puts "#{__FILE__}: PASS"
|
197
|
-
else
|
198
|
-
ours.rewind
|
199
|
-
puts ours.read
|
200
|
-
puts "#{__FILE__}: FAIL"
|
201
|
-
end
|
202
|
-
end
|