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
@@ -1,7 +0,0 @@
|
|
1
|
-
# CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
|
2
|
-
0x81,0xa8,0x0a,0x24 = fcmps %f0, %f4
|
3
|
-
0x81,0xa8,0x0a,0x44 = fcmpd %f0, %f4
|
4
|
-
0x81,0xa8,0x0a,0x64 = fcmpq %f0, %f4
|
5
|
-
0x81,0xa8,0x0a,0xa4 = fcmpes %f0, %f4
|
6
|
-
0x81,0xa8,0x0a,0xc4 = fcmped %f0, %f4
|
7
|
-
0x81,0xa8,0x0a,0xe4 = fcmpeq %f0, %f4
|
@@ -1 +0,0 @@
|
|
1
|
-
# CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
|
@@ -1,589 +0,0 @@
|
|
1
|
-
# CS_ARCH_SYSZ, 0, None
|
2
|
-
0xec,0x00,0x80,0x00,0x00,0xd9 = aghik %r0, %r0, -32768
|
3
|
-
0xec,0x00,0xff,0xff,0x00,0xd9 = aghik %r0, %r0, -1
|
4
|
-
0xec,0x00,0x00,0x00,0x00,0xd9 = aghik %r0, %r0, 0
|
5
|
-
0xec,0x00,0x00,0x01,0x00,0xd9 = aghik %r0, %r0, 1
|
6
|
-
0xec,0x00,0x7f,0xff,0x00,0xd9 = aghik %r0, %r0, 32767
|
7
|
-
0xec,0x0f,0x00,0x00,0x00,0xd9 = aghik %r0, %r15, 0
|
8
|
-
0xec,0xf0,0x00,0x00,0x00,0xd9 = aghik %r15, %r0, 0
|
9
|
-
0xec,0x78,0xff,0xf0,0x00,0xd9 = aghik %r7, %r8, -16
|
10
|
-
0xb9,0xe8,0x00,0x00 = agrk %r0, %r0, %r0
|
11
|
-
0xb9,0xe8,0xf0,0x00 = agrk %r0, %r0, %r15
|
12
|
-
0xb9,0xe8,0x00,0x0f = agrk %r0, %r15, %r0
|
13
|
-
0xb9,0xe8,0x00,0xf0 = agrk %r15, %r0, %r0
|
14
|
-
0xb9,0xe8,0x90,0x78 = agrk %r7, %r8, %r9
|
15
|
-
0xec,0x00,0x80,0x00,0x00,0xd8 = ahik %r0, %r0, -32768
|
16
|
-
0xec,0x00,0xff,0xff,0x00,0xd8 = ahik %r0, %r0, -1
|
17
|
-
0xec,0x00,0x00,0x00,0x00,0xd8 = ahik %r0, %r0, 0
|
18
|
-
0xec,0x00,0x00,0x01,0x00,0xd8 = ahik %r0, %r0, 1
|
19
|
-
0xec,0x00,0x7f,0xff,0x00,0xd8 = ahik %r0, %r0, 32767
|
20
|
-
0xec,0x0f,0x00,0x00,0x00,0xd8 = ahik %r0, %r15, 0
|
21
|
-
0xec,0xf0,0x00,0x00,0x00,0xd8 = ahik %r15, %r0, 0
|
22
|
-
0xec,0x78,0xff,0xf0,0x00,0xd8 = ahik %r7, %r8, -16
|
23
|
-
0xcc,0x08,0x80,0x00,0x00,0x00 = aih %r0, -2147483648
|
24
|
-
0xcc,0x08,0xff,0xff,0xff,0xff = aih %r0, -1
|
25
|
-
0xcc,0x08,0x00,0x00,0x00,0x00 = aih %r0, 0
|
26
|
-
0xcc,0x08,0x00,0x00,0x00,0x01 = aih %r0, 1
|
27
|
-
0xcc,0x08,0x7f,0xff,0xff,0xff = aih %r0, 2147483647
|
28
|
-
0xcc,0xf8,0x00,0x00,0x00,0x00 = aih %r15, 0
|
29
|
-
0xec,0x00,0x80,0x00,0x00,0xdb = alghsik %r0, %r0, -32768
|
30
|
-
0xec,0x00,0xff,0xff,0x00,0xdb = alghsik %r0, %r0, -1
|
31
|
-
0xec,0x00,0x00,0x00,0x00,0xdb = alghsik %r0, %r0, 0
|
32
|
-
0xec,0x00,0x00,0x01,0x00,0xdb = alghsik %r0, %r0, 1
|
33
|
-
0xec,0x00,0x7f,0xff,0x00,0xdb = alghsik %r0, %r0, 32767
|
34
|
-
0xec,0x0f,0x00,0x00,0x00,0xdb = alghsik %r0, %r15, 0
|
35
|
-
0xec,0xf0,0x00,0x00,0x00,0xdb = alghsik %r15, %r0, 0
|
36
|
-
0xec,0x78,0xff,0xf0,0x00,0xdb = alghsik %r7, %r8, -16
|
37
|
-
0xb9,0xea,0x00,0x00 = algrk %r0, %r0, %r0
|
38
|
-
0xb9,0xea,0xf0,0x00 = algrk %r0, %r0, %r15
|
39
|
-
0xb9,0xea,0x00,0x0f = algrk %r0, %r15, %r0
|
40
|
-
0xb9,0xea,0x00,0xf0 = algrk %r15, %r0, %r0
|
41
|
-
0xb9,0xea,0x90,0x78 = algrk %r7, %r8, %r9
|
42
|
-
0xec,0x00,0x80,0x00,0x00,0xda = alhsik %r0, %r0, -32768
|
43
|
-
0xec,0x00,0xff,0xff,0x00,0xda = alhsik %r0, %r0, -1
|
44
|
-
0xec,0x00,0x00,0x00,0x00,0xda = alhsik %r0, %r0, 0
|
45
|
-
0xec,0x00,0x00,0x01,0x00,0xda = alhsik %r0, %r0, 1
|
46
|
-
0xec,0x00,0x7f,0xff,0x00,0xda = alhsik %r0, %r0, 32767
|
47
|
-
0xec,0x0f,0x00,0x00,0x00,0xda = alhsik %r0, %r15, 0
|
48
|
-
0xec,0xf0,0x00,0x00,0x00,0xda = alhsik %r15, %r0, 0
|
49
|
-
0xec,0x78,0xff,0xf0,0x00,0xda = alhsik %r7, %r8, -16
|
50
|
-
0xb9,0xfa,0x00,0x00 = alrk %r0, %r0, %r0
|
51
|
-
0xb9,0xfa,0xf0,0x00 = alrk %r0, %r0, %r15
|
52
|
-
0xb9,0xfa,0x00,0x0f = alrk %r0, %r15, %r0
|
53
|
-
0xb9,0xfa,0x00,0xf0 = alrk %r15, %r0, %r0
|
54
|
-
0xb9,0xfa,0x90,0x78 = alrk %r7, %r8, %r9
|
55
|
-
0xb9,0xf8,0x00,0x00 = ark %r0, %r0, %r0
|
56
|
-
0xb9,0xf8,0xf0,0x00 = ark %r0, %r0, %r15
|
57
|
-
0xb9,0xf8,0x00,0x0f = ark %r0, %r15, %r0
|
58
|
-
0xb9,0xf8,0x00,0xf0 = ark %r15, %r0, %r0
|
59
|
-
0xb9,0xf8,0x90,0x78 = ark %r7, %r8, %r9
|
60
|
-
0xb3,0x91,0x00,0x00 = cdlfbr %f0, 0, %r0, 0
|
61
|
-
0xb3,0x91,0x0f,0x00 = cdlfbr %f0, 0, %r0, 15
|
62
|
-
0xb3,0x91,0x00,0x0f = cdlfbr %f0, 0, %r15, 0
|
63
|
-
0xb3,0x91,0xf0,0x00 = cdlfbr %f0, 15, %r0, 0
|
64
|
-
0xb3,0x91,0x57,0x46 = cdlfbr %f4, 5, %r6, 7
|
65
|
-
0xb3,0x91,0x00,0xf0 = cdlfbr %f15, 0, %r0, 0
|
66
|
-
0xb3,0xa1,0x00,0x00 = cdlgbr %f0, 0, %r0, 0
|
67
|
-
0xb3,0xa1,0x0f,0x00 = cdlgbr %f0, 0, %r0, 15
|
68
|
-
0xb3,0xa1,0x00,0x0f = cdlgbr %f0, 0, %r15, 0
|
69
|
-
0xb3,0xa1,0xf0,0x00 = cdlgbr %f0, 15, %r0, 0
|
70
|
-
0xb3,0xa1,0x57,0x46 = cdlgbr %f4, 5, %r6, 7
|
71
|
-
0xb3,0xa1,0x00,0xf0 = cdlgbr %f15, 0, %r0, 0
|
72
|
-
0xb3,0x90,0x00,0x00 = celfbr %f0, 0, %r0, 0
|
73
|
-
0xb3,0x90,0x0f,0x00 = celfbr %f0, 0, %r0, 15
|
74
|
-
0xb3,0x90,0x00,0x0f = celfbr %f0, 0, %r15, 0
|
75
|
-
0xb3,0x90,0xf0,0x00 = celfbr %f0, 15, %r0, 0
|
76
|
-
0xb3,0x90,0x57,0x46 = celfbr %f4, 5, %r6, 7
|
77
|
-
0xb3,0x90,0x00,0xf0 = celfbr %f15, 0, %r0, 0
|
78
|
-
0xb3,0xa0,0x00,0x00 = celgbr %f0, 0, %r0, 0
|
79
|
-
0xb3,0xa0,0x0f,0x00 = celgbr %f0, 0, %r0, 15
|
80
|
-
0xb3,0xa0,0x00,0x0f = celgbr %f0, 0, %r15, 0
|
81
|
-
0xb3,0xa0,0xf0,0x00 = celgbr %f0, 15, %r0, 0
|
82
|
-
0xb3,0xa0,0x57,0x46 = celgbr %f4, 5, %r6, 7
|
83
|
-
0xb3,0xa0,0x00,0xf0 = celgbr %f15, 0, %r0, 0
|
84
|
-
0xe3,0x00,0x00,0x00,0x80,0xcd = chf %r0, -524288
|
85
|
-
0xe3,0x00,0x0f,0xff,0xff,0xcd = chf %r0, -1
|
86
|
-
0xe3,0x00,0x00,0x00,0x00,0xcd = chf %r0, 0
|
87
|
-
0xe3,0x00,0x00,0x01,0x00,0xcd = chf %r0, 1
|
88
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xcd = chf %r0, 524287
|
89
|
-
0xe3,0x00,0x10,0x00,0x00,0xcd = chf %r0, 0(%r1)
|
90
|
-
0xe3,0x00,0xf0,0x00,0x00,0xcd = chf %r0, 0(%r15)
|
91
|
-
0xe3,0x01,0xff,0xff,0x7f,0xcd = chf %r0, 524287(%r1,%r15)
|
92
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xcd = chf %r0, 524287(%r15,%r1)
|
93
|
-
0xe3,0xf0,0x00,0x00,0x00,0xcd = chf %r15, 0
|
94
|
-
0xcc,0x0d,0x80,0x00,0x00,0x00 = cih %r0, -2147483648
|
95
|
-
0xcc,0x0d,0xff,0xff,0xff,0xff = cih %r0, -1
|
96
|
-
0xcc,0x0d,0x00,0x00,0x00,0x00 = cih %r0, 0
|
97
|
-
0xcc,0x0d,0x00,0x00,0x00,0x01 = cih %r0, 1
|
98
|
-
0xcc,0x0d,0x7f,0xff,0xff,0xff = cih %r0, 2147483647
|
99
|
-
0xcc,0xfd,0x00,0x00,0x00,0x00 = cih %r15, 0
|
100
|
-
0xb3,0x9d,0x00,0x00 = clfdbr %r0, 0, %f0, 0
|
101
|
-
0xb3,0x9d,0x0f,0x00 = clfdbr %r0, 0, %f0, 15
|
102
|
-
0xb3,0x9d,0x00,0x0f = clfdbr %r0, 0, %f15, 0
|
103
|
-
0xb3,0x9d,0xf0,0x00 = clfdbr %r0, 15, %f0, 0
|
104
|
-
0xb3,0x9d,0x57,0x46 = clfdbr %r4, 5, %f6, 7
|
105
|
-
0xb3,0x9d,0x00,0xf0 = clfdbr %r15, 0, %f0, 0
|
106
|
-
0xb3,0x9c,0x00,0x00 = clfebr %r0, 0, %f0, 0
|
107
|
-
0xb3,0x9c,0x0f,0x00 = clfebr %r0, 0, %f0, 15
|
108
|
-
0xb3,0x9c,0x00,0x0f = clfebr %r0, 0, %f15, 0
|
109
|
-
0xb3,0x9c,0xf0,0x00 = clfebr %r0, 15, %f0, 0
|
110
|
-
0xb3,0x9c,0x57,0x46 = clfebr %r4, 5, %f6, 7
|
111
|
-
0xb3,0x9c,0x00,0xf0 = clfebr %r15, 0, %f0, 0
|
112
|
-
0xb3,0x9e,0x00,0x00 = clfxbr %r0, 0, %f0, 0
|
113
|
-
0xb3,0x9e,0x0f,0x00 = clfxbr %r0, 0, %f0, 15
|
114
|
-
0xb3,0x9e,0x00,0x0d = clfxbr %r0, 0, %f13, 0
|
115
|
-
0xb3,0x9e,0xf0,0x00 = clfxbr %r0, 15, %f0, 0
|
116
|
-
0xb3,0x9e,0x59,0x78 = clfxbr %r7, 5, %f8, 9
|
117
|
-
0xb3,0x9e,0x00,0xf0 = clfxbr %r15, 0, %f0, 0
|
118
|
-
0xb3,0xad,0x00,0x00 = clgdbr %r0, 0, %f0, 0
|
119
|
-
0xb3,0xad,0x0f,0x00 = clgdbr %r0, 0, %f0, 15
|
120
|
-
0xb3,0xad,0x00,0x0f = clgdbr %r0, 0, %f15, 0
|
121
|
-
0xb3,0xad,0xf0,0x00 = clgdbr %r0, 15, %f0, 0
|
122
|
-
0xb3,0xad,0x57,0x46 = clgdbr %r4, 5, %f6, 7
|
123
|
-
0xb3,0xad,0x00,0xf0 = clgdbr %r15, 0, %f0, 0
|
124
|
-
0xb3,0xac,0x00,0x00 = clgebr %r0, 0, %f0, 0
|
125
|
-
0xb3,0xac,0x0f,0x00 = clgebr %r0, 0, %f0, 15
|
126
|
-
0xb3,0xac,0x00,0x0f = clgebr %r0, 0, %f15, 0
|
127
|
-
0xb3,0xac,0xf0,0x00 = clgebr %r0, 15, %f0, 0
|
128
|
-
0xb3,0xac,0x57,0x46 = clgebr %r4, 5, %f6, 7
|
129
|
-
0xb3,0xac,0x00,0xf0 = clgebr %r15, 0, %f0, 0
|
130
|
-
0xb3,0xae,0x00,0x00 = clgxbr %r0, 0, %f0, 0
|
131
|
-
0xb3,0xae,0x0f,0x00 = clgxbr %r0, 0, %f0, 15
|
132
|
-
0xb3,0xae,0x00,0x0d = clgxbr %r0, 0, %f13, 0
|
133
|
-
0xb3,0xae,0xf0,0x00 = clgxbr %r0, 15, %f0, 0
|
134
|
-
0xb3,0xae,0x59,0x78 = clgxbr %r7, 5, %f8, 9
|
135
|
-
0xb3,0xae,0x00,0xf0 = clgxbr %r15, 0, %f0, 0
|
136
|
-
0xe3,0x00,0x00,0x00,0x80,0xcf = clhf %r0, -524288
|
137
|
-
0xe3,0x00,0x0f,0xff,0xff,0xcf = clhf %r0, -1
|
138
|
-
0xe3,0x00,0x00,0x00,0x00,0xcf = clhf %r0, 0
|
139
|
-
0xe3,0x00,0x00,0x01,0x00,0xcf = clhf %r0, 1
|
140
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xcf = clhf %r0, 524287
|
141
|
-
0xe3,0x00,0x10,0x00,0x00,0xcf = clhf %r0, 0(%r1)
|
142
|
-
0xe3,0x00,0xf0,0x00,0x00,0xcf = clhf %r0, 0(%r15)
|
143
|
-
0xe3,0x01,0xff,0xff,0x7f,0xcf = clhf %r0, 524287(%r1,%r15)
|
144
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xcf = clhf %r0, 524287(%r15,%r1)
|
145
|
-
0xe3,0xf0,0x00,0x00,0x00,0xcf = clhf %r15, 0
|
146
|
-
0xcc,0x0f,0x00,0x00,0x00,0x00 = clih %r0, 0
|
147
|
-
0xcc,0x0f,0x00,0x00,0x00,0x01 = clih %r0, 1
|
148
|
-
0xcc,0x0f,0xff,0xff,0xff,0xff = clih %r0, 4294967295
|
149
|
-
0xcc,0xff,0x00,0x00,0x00,0x00 = clih %r15, 0
|
150
|
-
0xb3,0x92,0x00,0x00 = cxlfbr %f0, 0, %r0, 0
|
151
|
-
0xb3,0x92,0x0f,0x00 = cxlfbr %f0, 0, %r0, 15
|
152
|
-
0xb3,0x92,0x00,0x0f = cxlfbr %f0, 0, %r15, 0
|
153
|
-
0xb3,0x92,0xf0,0x00 = cxlfbr %f0, 15, %r0, 0
|
154
|
-
0xb3,0x92,0x5a,0x49 = cxlfbr %f4, 5, %r9, 10
|
155
|
-
0xb3,0x92,0x00,0xd0 = cxlfbr %f13, 0, %r0, 0
|
156
|
-
0xb3,0xa2,0x00,0x00 = cxlgbr %f0, 0, %r0, 0
|
157
|
-
0xb3,0xa2,0x0f,0x00 = cxlgbr %f0, 0, %r0, 15
|
158
|
-
0xb3,0xa2,0x00,0x0f = cxlgbr %f0, 0, %r15, 0
|
159
|
-
0xb3,0xa2,0xf0,0x00 = cxlgbr %f0, 15, %r0, 0
|
160
|
-
0xb3,0xa2,0x5a,0x49 = cxlgbr %f4, 5, %r9, 10
|
161
|
-
0xb3,0xa2,0x00,0xd0 = cxlgbr %f13, 0, %r0, 0
|
162
|
-
0xb3,0x5f,0x00,0x00 = fidbra %f0, 0, %f0, 0
|
163
|
-
0xb3,0x5f,0x0f,0x00 = fidbra %f0, 0, %f0, 15
|
164
|
-
0xb3,0x5f,0x00,0x0f = fidbra %f0, 0, %f15, 0
|
165
|
-
0xb3,0x5f,0xf0,0x00 = fidbra %f0, 15, %f0, 0
|
166
|
-
0xb3,0x5f,0x57,0x46 = fidbra %f4, 5, %f6, 7
|
167
|
-
0xb3,0x5f,0x00,0xf0 = fidbra %f15, 0, %f0, 0
|
168
|
-
0xb3,0x57,0x00,0x00 = fiebra %f0, 0, %f0, 0
|
169
|
-
0xb3,0x57,0x0f,0x00 = fiebra %f0, 0, %f0, 15
|
170
|
-
0xb3,0x57,0x00,0x0f = fiebra %f0, 0, %f15, 0
|
171
|
-
0xb3,0x57,0xf0,0x00 = fiebra %f0, 15, %f0, 0
|
172
|
-
0xb3,0x57,0x57,0x46 = fiebra %f4, 5, %f6, 7
|
173
|
-
0xb3,0x57,0x00,0xf0 = fiebra %f15, 0, %f0, 0
|
174
|
-
0xb3,0x47,0x00,0x00 = fixbra %f0, 0, %f0, 0
|
175
|
-
0xb3,0x47,0x0f,0x00 = fixbra %f0, 0, %f0, 15
|
176
|
-
0xb3,0x47,0x00,0x0d = fixbra %f0, 0, %f13, 0
|
177
|
-
0xb3,0x47,0xf0,0x00 = fixbra %f0, 15, %f0, 0
|
178
|
-
0xb3,0x47,0x59,0x48 = fixbra %f4, 5, %f8, 9
|
179
|
-
0xb3,0x47,0x00,0xd0 = fixbra %f13, 0, %f0, 0
|
180
|
-
0xeb,0x00,0x00,0x00,0x80,0xf8 = laa %r0, %r0, -524288
|
181
|
-
0xeb,0x00,0x0f,0xff,0xff,0xf8 = laa %r0, %r0, -1
|
182
|
-
0xeb,0x00,0x00,0x00,0x00,0xf8 = laa %r0, %r0, 0
|
183
|
-
0xeb,0x00,0x00,0x01,0x00,0xf8 = laa %r0, %r0, 1
|
184
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xf8 = laa %r0, %r0, 524287
|
185
|
-
0xeb,0x00,0x10,0x00,0x00,0xf8 = laa %r0, %r0, 0(%r1)
|
186
|
-
0xeb,0x00,0xf0,0x00,0x00,0xf8 = laa %r0, %r0, 0(%r15)
|
187
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xf8 = laa %r0, %r0, 524287(%r1)
|
188
|
-
0xeb,0x00,0xff,0xff,0x7f,0xf8 = laa %r0, %r0, 524287(%r15)
|
189
|
-
0xeb,0x0f,0x00,0x00,0x00,0xf8 = laa %r0, %r15, 0
|
190
|
-
0xeb,0xf0,0x00,0x00,0x00,0xf8 = laa %r15, %r0, 0
|
191
|
-
0xeb,0x00,0x00,0x00,0x80,0xe8 = laag %r0, %r0, -524288
|
192
|
-
0xeb,0x00,0x0f,0xff,0xff,0xe8 = laag %r0, %r0, -1
|
193
|
-
0xeb,0x00,0x00,0x00,0x00,0xe8 = laag %r0, %r0, 0
|
194
|
-
0xeb,0x00,0x00,0x01,0x00,0xe8 = laag %r0, %r0, 1
|
195
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xe8 = laag %r0, %r0, 524287
|
196
|
-
0xeb,0x00,0x10,0x00,0x00,0xe8 = laag %r0, %r0, 0(%r1)
|
197
|
-
0xeb,0x00,0xf0,0x00,0x00,0xe8 = laag %r0, %r0, 0(%r15)
|
198
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xe8 = laag %r0, %r0, 524287(%r1)
|
199
|
-
0xeb,0x00,0xff,0xff,0x7f,0xe8 = laag %r0, %r0, 524287(%r15)
|
200
|
-
0xeb,0x0f,0x00,0x00,0x00,0xe8 = laag %r0, %r15, 0
|
201
|
-
0xeb,0xf0,0x00,0x00,0x00,0xe8 = laag %r15, %r0, 0
|
202
|
-
0xeb,0x00,0x00,0x00,0x80,0xfa = laal %r0, %r0, -524288
|
203
|
-
0xeb,0x00,0x0f,0xff,0xff,0xfa = laal %r0, %r0, -1
|
204
|
-
0xeb,0x00,0x00,0x00,0x00,0xfa = laal %r0, %r0, 0
|
205
|
-
0xeb,0x00,0x00,0x01,0x00,0xfa = laal %r0, %r0, 1
|
206
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xfa = laal %r0, %r0, 524287
|
207
|
-
0xeb,0x00,0x10,0x00,0x00,0xfa = laal %r0, %r0, 0(%r1)
|
208
|
-
0xeb,0x00,0xf0,0x00,0x00,0xfa = laal %r0, %r0, 0(%r15)
|
209
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xfa = laal %r0, %r0, 524287(%r1)
|
210
|
-
0xeb,0x00,0xff,0xff,0x7f,0xfa = laal %r0, %r0, 524287(%r15)
|
211
|
-
0xeb,0x0f,0x00,0x00,0x00,0xfa = laal %r0, %r15, 0
|
212
|
-
0xeb,0xf0,0x00,0x00,0x00,0xfa = laal %r15, %r0, 0
|
213
|
-
0xeb,0x00,0x00,0x00,0x80,0xea = laalg %r0, %r0, -524288
|
214
|
-
0xeb,0x00,0x0f,0xff,0xff,0xea = laalg %r0, %r0, -1
|
215
|
-
0xeb,0x00,0x00,0x00,0x00,0xea = laalg %r0, %r0, 0
|
216
|
-
0xeb,0x00,0x00,0x01,0x00,0xea = laalg %r0, %r0, 1
|
217
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xea = laalg %r0, %r0, 524287
|
218
|
-
0xeb,0x00,0x10,0x00,0x00,0xea = laalg %r0, %r0, 0(%r1)
|
219
|
-
0xeb,0x00,0xf0,0x00,0x00,0xea = laalg %r0, %r0, 0(%r15)
|
220
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xea = laalg %r0, %r0, 524287(%r1)
|
221
|
-
0xeb,0x00,0xff,0xff,0x7f,0xea = laalg %r0, %r0, 524287(%r15)
|
222
|
-
0xeb,0x0f,0x00,0x00,0x00,0xea = laalg %r0, %r15, 0
|
223
|
-
0xeb,0xf0,0x00,0x00,0x00,0xea = laalg %r15, %r0, 0
|
224
|
-
0xeb,0x00,0x00,0x00,0x80,0xf4 = lan %r0, %r0, -524288
|
225
|
-
0xeb,0x00,0x0f,0xff,0xff,0xf4 = lan %r0, %r0, -1
|
226
|
-
0xeb,0x00,0x00,0x00,0x00,0xf4 = lan %r0, %r0, 0
|
227
|
-
0xeb,0x00,0x00,0x01,0x00,0xf4 = lan %r0, %r0, 1
|
228
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xf4 = lan %r0, %r0, 524287
|
229
|
-
0xeb,0x00,0x10,0x00,0x00,0xf4 = lan %r0, %r0, 0(%r1)
|
230
|
-
0xeb,0x00,0xf0,0x00,0x00,0xf4 = lan %r0, %r0, 0(%r15)
|
231
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xf4 = lan %r0, %r0, 524287(%r1)
|
232
|
-
0xeb,0x00,0xff,0xff,0x7f,0xf4 = lan %r0, %r0, 524287(%r15)
|
233
|
-
0xeb,0x0f,0x00,0x00,0x00,0xf4 = lan %r0, %r15, 0
|
234
|
-
0xeb,0xf0,0x00,0x00,0x00,0xf4 = lan %r15, %r0, 0
|
235
|
-
0xeb,0x00,0x00,0x00,0x80,0xe4 = lang %r0, %r0, -524288
|
236
|
-
0xeb,0x00,0x0f,0xff,0xff,0xe4 = lang %r0, %r0, -1
|
237
|
-
0xeb,0x00,0x00,0x00,0x00,0xe4 = lang %r0, %r0, 0
|
238
|
-
0xeb,0x00,0x00,0x01,0x00,0xe4 = lang %r0, %r0, 1
|
239
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xe4 = lang %r0, %r0, 524287
|
240
|
-
0xeb,0x00,0x10,0x00,0x00,0xe4 = lang %r0, %r0, 0(%r1)
|
241
|
-
0xeb,0x00,0xf0,0x00,0x00,0xe4 = lang %r0, %r0, 0(%r15)
|
242
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xe4 = lang %r0, %r0, 524287(%r1)
|
243
|
-
0xeb,0x00,0xff,0xff,0x7f,0xe4 = lang %r0, %r0, 524287(%r15)
|
244
|
-
0xeb,0x0f,0x00,0x00,0x00,0xe4 = lang %r0, %r15, 0
|
245
|
-
0xeb,0xf0,0x00,0x00,0x00,0xe4 = lang %r15, %r0, 0
|
246
|
-
0xeb,0x00,0x00,0x00,0x80,0xf6 = lao %r0, %r0, -524288
|
247
|
-
0xeb,0x00,0x0f,0xff,0xff,0xf6 = lao %r0, %r0, -1
|
248
|
-
0xeb,0x00,0x00,0x00,0x00,0xf6 = lao %r0, %r0, 0
|
249
|
-
0xeb,0x00,0x00,0x01,0x00,0xf6 = lao %r0, %r0, 1
|
250
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xf6 = lao %r0, %r0, 524287
|
251
|
-
0xeb,0x00,0x10,0x00,0x00,0xf6 = lao %r0, %r0, 0(%r1)
|
252
|
-
0xeb,0x00,0xf0,0x00,0x00,0xf6 = lao %r0, %r0, 0(%r15)
|
253
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xf6 = lao %r0, %r0, 524287(%r1)
|
254
|
-
0xeb,0x00,0xff,0xff,0x7f,0xf6 = lao %r0, %r0, 524287(%r15)
|
255
|
-
0xeb,0x0f,0x00,0x00,0x00,0xf6 = lao %r0, %r15, 0
|
256
|
-
0xeb,0xf0,0x00,0x00,0x00,0xf6 = lao %r15, %r0, 0
|
257
|
-
0xeb,0x00,0x00,0x00,0x80,0xe6 = laog %r0, %r0, -524288
|
258
|
-
0xeb,0x00,0x0f,0xff,0xff,0xe6 = laog %r0, %r0, -1
|
259
|
-
0xeb,0x00,0x00,0x00,0x00,0xe6 = laog %r0, %r0, 0
|
260
|
-
0xeb,0x00,0x00,0x01,0x00,0xe6 = laog %r0, %r0, 1
|
261
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xe6 = laog %r0, %r0, 524287
|
262
|
-
0xeb,0x00,0x10,0x00,0x00,0xe6 = laog %r0, %r0, 0(%r1)
|
263
|
-
0xeb,0x00,0xf0,0x00,0x00,0xe6 = laog %r0, %r0, 0(%r15)
|
264
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xe6 = laog %r0, %r0, 524287(%r1)
|
265
|
-
0xeb,0x00,0xff,0xff,0x7f,0xe6 = laog %r0, %r0, 524287(%r15)
|
266
|
-
0xeb,0x0f,0x00,0x00,0x00,0xe6 = laog %r0, %r15, 0
|
267
|
-
0xeb,0xf0,0x00,0x00,0x00,0xe6 = laog %r15, %r0, 0
|
268
|
-
0xeb,0x00,0x00,0x00,0x80,0xf7 = lax %r0, %r0, -524288
|
269
|
-
0xeb,0x00,0x0f,0xff,0xff,0xf7 = lax %r0, %r0, -1
|
270
|
-
0xeb,0x00,0x00,0x00,0x00,0xf7 = lax %r0, %r0, 0
|
271
|
-
0xeb,0x00,0x00,0x01,0x00,0xf7 = lax %r0, %r0, 1
|
272
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xf7 = lax %r0, %r0, 524287
|
273
|
-
0xeb,0x00,0x10,0x00,0x00,0xf7 = lax %r0, %r0, 0(%r1)
|
274
|
-
0xeb,0x00,0xf0,0x00,0x00,0xf7 = lax %r0, %r0, 0(%r15)
|
275
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xf7 = lax %r0, %r0, 524287(%r1)
|
276
|
-
0xeb,0x00,0xff,0xff,0x7f,0xf7 = lax %r0, %r0, 524287(%r15)
|
277
|
-
0xeb,0x0f,0x00,0x00,0x00,0xf7 = lax %r0, %r15, 0
|
278
|
-
0xeb,0xf0,0x00,0x00,0x00,0xf7 = lax %r15, %r0, 0
|
279
|
-
0xeb,0x00,0x00,0x00,0x80,0xe7 = laxg %r0, %r0, -524288
|
280
|
-
0xeb,0x00,0x0f,0xff,0xff,0xe7 = laxg %r0, %r0, -1
|
281
|
-
0xeb,0x00,0x00,0x00,0x00,0xe7 = laxg %r0, %r0, 0
|
282
|
-
0xeb,0x00,0x00,0x01,0x00,0xe7 = laxg %r0, %r0, 1
|
283
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287
|
284
|
-
0xeb,0x00,0x10,0x00,0x00,0xe7 = laxg %r0, %r0, 0(%r1)
|
285
|
-
0xeb,0x00,0xf0,0x00,0x00,0xe7 = laxg %r0, %r0, 0(%r15)
|
286
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287(%r1)
|
287
|
-
0xeb,0x00,0xff,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287(%r15)
|
288
|
-
0xeb,0x0f,0x00,0x00,0x00,0xe7 = laxg %r0, %r15, 0
|
289
|
-
0xeb,0xf0,0x00,0x00,0x00,0xe7 = laxg %r15, %r0, 0
|
290
|
-
0xe3,0x00,0x00,0x00,0x80,0xc0 = lbh %r0, -524288
|
291
|
-
0xe3,0x00,0x0f,0xff,0xff,0xc0 = lbh %r0, -1
|
292
|
-
0xe3,0x00,0x00,0x00,0x00,0xc0 = lbh %r0, 0
|
293
|
-
0xe3,0x00,0x00,0x01,0x00,0xc0 = lbh %r0, 1
|
294
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xc0 = lbh %r0, 524287
|
295
|
-
0xe3,0x00,0x10,0x00,0x00,0xc0 = lbh %r0, 0(%r1)
|
296
|
-
0xe3,0x00,0xf0,0x00,0x00,0xc0 = lbh %r0, 0(%r15)
|
297
|
-
0xe3,0x01,0xff,0xff,0x7f,0xc0 = lbh %r0, 524287(%r1,%r15)
|
298
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xc0 = lbh %r0, 524287(%r15,%r1)
|
299
|
-
0xe3,0xf0,0x00,0x00,0x00,0xc0 = lbh %r15, 0
|
300
|
-
0xe3,0x00,0x00,0x00,0x80,0xca = lfh %r0, -524288
|
301
|
-
0xe3,0x00,0x0f,0xff,0xff,0xca = lfh %r0, -1
|
302
|
-
0xe3,0x00,0x00,0x00,0x00,0xca = lfh %r0, 0
|
303
|
-
0xe3,0x00,0x00,0x01,0x00,0xca = lfh %r0, 1
|
304
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xca = lfh %r0, 524287
|
305
|
-
0xe3,0x00,0x10,0x00,0x00,0xca = lfh %r0, 0(%r1)
|
306
|
-
0xe3,0x00,0xf0,0x00,0x00,0xca = lfh %r0, 0(%r15)
|
307
|
-
0xe3,0x01,0xff,0xff,0x7f,0xca = lfh %r0, 524287(%r1,%r15)
|
308
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xca = lfh %r0, 524287(%r15,%r1)
|
309
|
-
0xe3,0xf0,0x00,0x00,0x00,0xca = lfh %r15, 0
|
310
|
-
0xe3,0x00,0x00,0x00,0x80,0xc4 = lhh %r0, -524288
|
311
|
-
0xe3,0x00,0x0f,0xff,0xff,0xc4 = lhh %r0, -1
|
312
|
-
0xe3,0x00,0x00,0x00,0x00,0xc4 = lhh %r0, 0
|
313
|
-
0xe3,0x00,0x00,0x01,0x00,0xc4 = lhh %r0, 1
|
314
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xc4 = lhh %r0, 524287
|
315
|
-
0xe3,0x00,0x10,0x00,0x00,0xc4 = lhh %r0, 0(%r1)
|
316
|
-
0xe3,0x00,0xf0,0x00,0x00,0xc4 = lhh %r0, 0(%r15)
|
317
|
-
0xe3,0x01,0xff,0xff,0x7f,0xc4 = lhh %r0, 524287(%r1,%r15)
|
318
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xc4 = lhh %r0, 524287(%r15,%r1)
|
319
|
-
0xe3,0xf0,0x00,0x00,0x00,0xc4 = lhh %r15, 0
|
320
|
-
0xe3,0x00,0x00,0x00,0x80,0xc2 = llch %r0, -524288
|
321
|
-
0xe3,0x00,0x0f,0xff,0xff,0xc2 = llch %r0, -1
|
322
|
-
0xe3,0x00,0x00,0x00,0x00,0xc2 = llch %r0, 0
|
323
|
-
0xe3,0x00,0x00,0x01,0x00,0xc2 = llch %r0, 1
|
324
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xc2 = llch %r0, 524287
|
325
|
-
0xe3,0x00,0x10,0x00,0x00,0xc2 = llch %r0, 0(%r1)
|
326
|
-
0xe3,0x00,0xf0,0x00,0x00,0xc2 = llch %r0, 0(%r15)
|
327
|
-
0xe3,0x01,0xff,0xff,0x7f,0xc2 = llch %r0, 524287(%r1,%r15)
|
328
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xc2 = llch %r0, 524287(%r15,%r1)
|
329
|
-
0xe3,0xf0,0x00,0x00,0x00,0xc2 = llch %r15, 0
|
330
|
-
0xe3,0x00,0x00,0x00,0x80,0xc6 = llhh %r0, -524288
|
331
|
-
0xe3,0x00,0x0f,0xff,0xff,0xc6 = llhh %r0, -1
|
332
|
-
0xe3,0x00,0x00,0x00,0x00,0xc6 = llhh %r0, 0
|
333
|
-
0xe3,0x00,0x00,0x01,0x00,0xc6 = llhh %r0, 1
|
334
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xc6 = llhh %r0, 524287
|
335
|
-
0xe3,0x00,0x10,0x00,0x00,0xc6 = llhh %r0, 0(%r1)
|
336
|
-
0xe3,0x00,0xf0,0x00,0x00,0xc6 = llhh %r0, 0(%r15)
|
337
|
-
0xe3,0x01,0xff,0xff,0x7f,0xc6 = llhh %r0, 524287(%r1,%r15)
|
338
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xc6 = llhh %r0, 524287(%r15,%r1)
|
339
|
-
0xe3,0xf0,0x00,0x00,0x00,0xc6 = llhh %r15, 0
|
340
|
-
0xeb,0x00,0x00,0x00,0x00,0xf2 = loc %r0, 0, 0
|
341
|
-
0xeb,0x0f,0x00,0x00,0x00,0xf2 = loc %r0, 0, 15
|
342
|
-
0xeb,0x00,0x00,0x00,0x80,0xf2 = loc %r0, -524288, 0
|
343
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xf2 = loc %r0, 524287, 0
|
344
|
-
0xeb,0x00,0x10,0x00,0x00,0xf2 = loc %r0, 0(%r1), 0
|
345
|
-
0xeb,0x00,0xf0,0x00,0x00,0xf2 = loc %r0, 0(%r15), 0
|
346
|
-
0xeb,0xf0,0x00,0x00,0x00,0xf2 = loc %r15, 0, 0
|
347
|
-
0xeb,0x13,0x2f,0xff,0x00,0xf2 = loc %r1, 4095(%r2), 3
|
348
|
-
0xeb,0x11,0x30,0x02,0x00,0xf2 = loco %r1, 2(%r3)
|
349
|
-
0xeb,0x12,0x30,0x02,0x00,0xf2 = loch %r1, 2(%r3)
|
350
|
-
0xeb,0x13,0x30,0x02,0x00,0xf2 = locnle %r1, 2(%r3)
|
351
|
-
0xeb,0x14,0x30,0x02,0x00,0xf2 = locl %r1, 2(%r3)
|
352
|
-
0xeb,0x15,0x30,0x02,0x00,0xf2 = locnhe %r1, 2(%r3)
|
353
|
-
0xeb,0x16,0x30,0x02,0x00,0xf2 = loclh %r1, 2(%r3)
|
354
|
-
0xeb,0x17,0x30,0x02,0x00,0xf2 = locne %r1, 2(%r3)
|
355
|
-
0xeb,0x18,0x30,0x02,0x00,0xf2 = loce %r1, 2(%r3)
|
356
|
-
0xeb,0x19,0x30,0x02,0x00,0xf2 = locnlh %r1, 2(%r3)
|
357
|
-
0xeb,0x1a,0x30,0x02,0x00,0xf2 = loche %r1, 2(%r3)
|
358
|
-
0xeb,0x1b,0x30,0x02,0x00,0xf2 = locnl %r1, 2(%r3)
|
359
|
-
0xeb,0x1c,0x30,0x02,0x00,0xf2 = locle %r1, 2(%r3)
|
360
|
-
0xeb,0x1d,0x30,0x02,0x00,0xf2 = locnh %r1, 2(%r3)
|
361
|
-
0xeb,0x1e,0x30,0x02,0x00,0xf2 = locno %r1, 2(%r3)
|
362
|
-
0xeb,0x00,0x00,0x00,0x00,0xe2 = locg %r0, 0, 0
|
363
|
-
0xeb,0x0f,0x00,0x00,0x00,0xe2 = locg %r0, 0, 15
|
364
|
-
0xeb,0x00,0x00,0x00,0x80,0xe2 = locg %r0, -524288, 0
|
365
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xe2 = locg %r0, 524287, 0
|
366
|
-
0xeb,0x00,0x10,0x00,0x00,0xe2 = locg %r0, 0(%r1), 0
|
367
|
-
0xeb,0x00,0xf0,0x00,0x00,0xe2 = locg %r0, 0(%r15), 0
|
368
|
-
0xeb,0xf0,0x00,0x00,0x00,0xe2 = locg %r15, 0, 0
|
369
|
-
0xeb,0x13,0x2f,0xff,0x00,0xe2 = locg %r1, 4095(%r2), 3
|
370
|
-
0xeb,0x11,0x30,0x02,0x00,0xe2 = locgo %r1, 2(%r3)
|
371
|
-
0xeb,0x12,0x30,0x02,0x00,0xe2 = locgh %r1, 2(%r3)
|
372
|
-
0xeb,0x13,0x30,0x02,0x00,0xe2 = locgnle %r1, 2(%r3)
|
373
|
-
0xeb,0x14,0x30,0x02,0x00,0xe2 = locgl %r1, 2(%r3)
|
374
|
-
0xeb,0x15,0x30,0x02,0x00,0xe2 = locgnhe %r1, 2(%r3)
|
375
|
-
0xeb,0x16,0x30,0x02,0x00,0xe2 = locglh %r1, 2(%r3)
|
376
|
-
0xeb,0x17,0x30,0x02,0x00,0xe2 = locgne %r1, 2(%r3)
|
377
|
-
0xeb,0x18,0x30,0x02,0x00,0xe2 = locge %r1, 2(%r3)
|
378
|
-
0xeb,0x19,0x30,0x02,0x00,0xe2 = locgnlh %r1, 2(%r3)
|
379
|
-
0xeb,0x1a,0x30,0x02,0x00,0xe2 = locghe %r1, 2(%r3)
|
380
|
-
0xeb,0x1b,0x30,0x02,0x00,0xe2 = locgnl %r1, 2(%r3)
|
381
|
-
0xeb,0x1c,0x30,0x02,0x00,0xe2 = locgle %r1, 2(%r3)
|
382
|
-
0xeb,0x1d,0x30,0x02,0x00,0xe2 = locgnh %r1, 2(%r3)
|
383
|
-
0xeb,0x1e,0x30,0x02,0x00,0xe2 = locgno %r1, 2(%r3)
|
384
|
-
0xb9,0xe2,0x00,0x12 = locgr %r1, %r2, 0
|
385
|
-
0xb9,0xe2,0xf0,0x12 = locgr %r1, %r2, 15
|
386
|
-
0xb9,0xe2,0x10,0x13 = locgro %r1, %r3
|
387
|
-
0xb9,0xe2,0x20,0x13 = locgrh %r1, %r3
|
388
|
-
0xb9,0xe2,0x30,0x13 = locgrnle %r1, %r3
|
389
|
-
0xb9,0xe2,0x40,0x13 = locgrl %r1, %r3
|
390
|
-
0xb9,0xe2,0x50,0x13 = locgrnhe %r1, %r3
|
391
|
-
0xb9,0xe2,0x60,0x13 = locgrlh %r1, %r3
|
392
|
-
0xb9,0xe2,0x70,0x13 = locgrne %r1, %r3
|
393
|
-
0xb9,0xe2,0x80,0x13 = locgre %r1, %r3
|
394
|
-
0xb9,0xe2,0x90,0x13 = locgrnlh %r1, %r3
|
395
|
-
0xb9,0xe2,0xa0,0x13 = locgrhe %r1, %r3
|
396
|
-
0xb9,0xe2,0xb0,0x13 = locgrnl %r1, %r3
|
397
|
-
0xb9,0xe2,0xc0,0x13 = locgrle %r1, %r3
|
398
|
-
0xb9,0xe2,0xd0,0x13 = locgrnh %r1, %r3
|
399
|
-
0xb9,0xe2,0xe0,0x13 = locgrno %r1, %r3
|
400
|
-
0xb9,0xf2,0x00,0x12 = locr %r1, %r2, 0
|
401
|
-
0xb9,0xf2,0xf0,0x12 = locr %r1, %r2, 15
|
402
|
-
0xb9,0xf2,0x10,0x13 = locro %r1, %r3
|
403
|
-
0xb9,0xf2,0x20,0x13 = locrh %r1, %r3
|
404
|
-
0xb9,0xf2,0x30,0x13 = locrnle %r1, %r3
|
405
|
-
0xb9,0xf2,0x40,0x13 = locrl %r1, %r3
|
406
|
-
0xb9,0xf2,0x50,0x13 = locrnhe %r1, %r3
|
407
|
-
0xb9,0xf2,0x60,0x13 = locrlh %r1, %r3
|
408
|
-
0xb9,0xf2,0x70,0x13 = locrne %r1, %r3
|
409
|
-
0xb9,0xf2,0x80,0x13 = locre %r1, %r3
|
410
|
-
0xb9,0xf2,0x90,0x13 = locrnlh %r1, %r3
|
411
|
-
0xb9,0xf2,0xa0,0x13 = locrhe %r1, %r3
|
412
|
-
0xb9,0xf2,0xb0,0x13 = locrnl %r1, %r3
|
413
|
-
0xb9,0xf2,0xc0,0x13 = locrle %r1, %r3
|
414
|
-
0xb9,0xf2,0xd0,0x13 = locrnh %r1, %r3
|
415
|
-
0xb9,0xf2,0xe0,0x13 = locrno %r1, %r3
|
416
|
-
0xb9,0xe4,0x00,0x00 = ngrk %r0, %r0, %r0
|
417
|
-
0xb9,0xe4,0xf0,0x00 = ngrk %r0, %r0, %r15
|
418
|
-
0xb9,0xe4,0x00,0x0f = ngrk %r0, %r15, %r0
|
419
|
-
0xb9,0xe4,0x00,0xf0 = ngrk %r15, %r0, %r0
|
420
|
-
0xb9,0xe4,0x90,0x78 = ngrk %r7, %r8, %r9
|
421
|
-
0xb9,0xf4,0x00,0x00 = nrk %r0, %r0, %r0
|
422
|
-
0xb9,0xf4,0xf0,0x00 = nrk %r0, %r0, %r15
|
423
|
-
0xb9,0xf4,0x00,0x0f = nrk %r0, %r15, %r0
|
424
|
-
0xb9,0xf4,0x00,0xf0 = nrk %r15, %r0, %r0
|
425
|
-
0xb9,0xf4,0x90,0x78 = nrk %r7, %r8, %r9
|
426
|
-
0xb9,0xe6,0x00,0x00 = ogrk %r0, %r0, %r0
|
427
|
-
0xb9,0xe6,0xf0,0x00 = ogrk %r0, %r0, %r15
|
428
|
-
0xb9,0xe6,0x00,0x0f = ogrk %r0, %r15, %r0
|
429
|
-
0xb9,0xe6,0x00,0xf0 = ogrk %r15, %r0, %r0
|
430
|
-
0xb9,0xe6,0x90,0x78 = ogrk %r7, %r8, %r9
|
431
|
-
0xb9,0xf6,0x00,0x00 = ork %r0, %r0, %r0
|
432
|
-
0xb9,0xf6,0xf0,0x00 = ork %r0, %r0, %r15
|
433
|
-
0xb9,0xf6,0x00,0x0f = ork %r0, %r15, %r0
|
434
|
-
0xb9,0xf6,0x00,0xf0 = ork %r15, %r0, %r0
|
435
|
-
0xb9,0xf6,0x90,0x78 = ork %r7, %r8, %r9
|
436
|
-
0xec,0x00,0x00,0x00,0x00,0x5d = risbhg %r0, %r0, 0, 0, 0
|
437
|
-
0xec,0x00,0x00,0x00,0x3f,0x5d = risbhg %r0, %r0, 0, 0, 63
|
438
|
-
0xec,0x00,0x00,0xff,0x00,0x5d = risbhg %r0, %r0, 0, 255, 0
|
439
|
-
0xec,0x00,0xff,0x00,0x00,0x5d = risbhg %r0, %r0, 255, 0, 0
|
440
|
-
0xec,0x0f,0x00,0x00,0x00,0x5d = risbhg %r0, %r15, 0, 0, 0
|
441
|
-
0xec,0xf0,0x00,0x00,0x00,0x5d = risbhg %r15, %r0, 0, 0, 0
|
442
|
-
0xec,0x45,0x06,0x07,0x08,0x5d = risbhg %r4, %r5, 6, 7, 8
|
443
|
-
0xec,0x00,0x00,0x00,0x00,0x51 = risblg %r0, %r0, 0, 0, 0
|
444
|
-
0xec,0x00,0x00,0x00,0x3f,0x51 = risblg %r0, %r0, 0, 0, 63
|
445
|
-
0xec,0x00,0x00,0xff,0x00,0x51 = risblg %r0, %r0, 0, 255, 0
|
446
|
-
0xec,0x00,0xff,0x00,0x00,0x51 = risblg %r0, %r0, 255, 0, 0
|
447
|
-
0xec,0x0f,0x00,0x00,0x00,0x51 = risblg %r0, %r15, 0, 0, 0
|
448
|
-
0xec,0xf0,0x00,0x00,0x00,0x51 = risblg %r15, %r0, 0, 0, 0
|
449
|
-
0xec,0x45,0x06,0x07,0x08,0x51 = risblg %r4, %r5, 6, 7, 8
|
450
|
-
0xb9,0xe9,0x00,0x00 = sgrk %r0, %r0, %r0
|
451
|
-
0xb9,0xe9,0xf0,0x00 = sgrk %r0, %r0, %r15
|
452
|
-
0xb9,0xe9,0x00,0x0f = sgrk %r0, %r15, %r0
|
453
|
-
0xb9,0xe9,0x00,0xf0 = sgrk %r15, %r0, %r0
|
454
|
-
0xb9,0xe9,0x90,0x78 = sgrk %r7, %r8, %r9
|
455
|
-
0xb9,0xeb,0x00,0x00 = slgrk %r0, %r0, %r0
|
456
|
-
0xb9,0xeb,0xf0,0x00 = slgrk %r0, %r0, %r15
|
457
|
-
0xb9,0xeb,0x00,0x0f = slgrk %r0, %r15, %r0
|
458
|
-
0xb9,0xeb,0x00,0xf0 = slgrk %r15, %r0, %r0
|
459
|
-
0xb9,0xeb,0x90,0x78 = slgrk %r7, %r8, %r9
|
460
|
-
0xb9,0xfb,0x00,0x00 = slrk %r0, %r0, %r0
|
461
|
-
0xb9,0xfb,0xf0,0x00 = slrk %r0, %r0, %r15
|
462
|
-
0xb9,0xfb,0x00,0x0f = slrk %r0, %r15, %r0
|
463
|
-
0xb9,0xfb,0x00,0xf0 = slrk %r15, %r0, %r0
|
464
|
-
0xb9,0xfb,0x90,0x78 = slrk %r7, %r8, %r9
|
465
|
-
0xeb,0x00,0x00,0x00,0x00,0xdf = sllk %r0, %r0, 0
|
466
|
-
0xeb,0xf1,0x00,0x00,0x00,0xdf = sllk %r15, %r1, 0
|
467
|
-
0xeb,0x1f,0x00,0x00,0x00,0xdf = sllk %r1, %r15, 0
|
468
|
-
0xeb,0xff,0x00,0x00,0x00,0xdf = sllk %r15, %r15, 0
|
469
|
-
0xeb,0x00,0x00,0x00,0x80,0xdf = sllk %r0, %r0, -524288
|
470
|
-
0xeb,0x00,0x0f,0xff,0xff,0xdf = sllk %r0, %r0, -1
|
471
|
-
0xeb,0x00,0x00,0x01,0x00,0xdf = sllk %r0, %r0, 1
|
472
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xdf = sllk %r0, %r0, 524287
|
473
|
-
0xeb,0x00,0x10,0x00,0x00,0xdf = sllk %r0, %r0, 0(%r1)
|
474
|
-
0xeb,0x00,0xf0,0x00,0x00,0xdf = sllk %r0, %r0, 0(%r15)
|
475
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xdf = sllk %r0, %r0, 524287(%r1)
|
476
|
-
0xeb,0x00,0xff,0xff,0x7f,0xdf = sllk %r0, %r0, 524287(%r15)
|
477
|
-
0xeb,0x00,0x00,0x00,0x00,0xdc = srak %r0, %r0, 0
|
478
|
-
0xeb,0xf1,0x00,0x00,0x00,0xdc = srak %r15, %r1, 0
|
479
|
-
0xeb,0x1f,0x00,0x00,0x00,0xdc = srak %r1, %r15, 0
|
480
|
-
0xeb,0xff,0x00,0x00,0x00,0xdc = srak %r15, %r15, 0
|
481
|
-
0xeb,0x00,0x00,0x00,0x80,0xdc = srak %r0, %r0, -524288
|
482
|
-
0xeb,0x00,0x0f,0xff,0xff,0xdc = srak %r0, %r0, -1
|
483
|
-
0xeb,0x00,0x00,0x01,0x00,0xdc = srak %r0, %r0, 1
|
484
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xdc = srak %r0, %r0, 524287
|
485
|
-
0xeb,0x00,0x10,0x00,0x00,0xdc = srak %r0, %r0, 0(%r1)
|
486
|
-
0xeb,0x00,0xf0,0x00,0x00,0xdc = srak %r0, %r0, 0(%r15)
|
487
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xdc = srak %r0, %r0, 524287(%r1)
|
488
|
-
0xeb,0x00,0xff,0xff,0x7f,0xdc = srak %r0, %r0, 524287(%r15)
|
489
|
-
0xb9,0xf9,0x00,0x00 = srk %r0, %r0, %r0
|
490
|
-
0xb9,0xf9,0xf0,0x00 = srk %r0, %r0, %r15
|
491
|
-
0xb9,0xf9,0x00,0x0f = srk %r0, %r15, %r0
|
492
|
-
0xb9,0xf9,0x00,0xf0 = srk %r15, %r0, %r0
|
493
|
-
0xb9,0xf9,0x90,0x78 = srk %r7, %r8, %r9
|
494
|
-
0xeb,0x00,0x00,0x00,0x00,0xde = srlk %r0, %r0, 0
|
495
|
-
0xeb,0xf1,0x00,0x00,0x00,0xde = srlk %r15, %r1, 0
|
496
|
-
0xeb,0x1f,0x00,0x00,0x00,0xde = srlk %r1, %r15, 0
|
497
|
-
0xeb,0xff,0x00,0x00,0x00,0xde = srlk %r15, %r15, 0
|
498
|
-
0xeb,0x00,0x00,0x00,0x80,0xde = srlk %r0, %r0, -524288
|
499
|
-
0xeb,0x00,0x0f,0xff,0xff,0xde = srlk %r0, %r0, -1
|
500
|
-
0xeb,0x00,0x00,0x01,0x00,0xde = srlk %r0, %r0, 1
|
501
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xde = srlk %r0, %r0, 524287
|
502
|
-
0xeb,0x00,0x10,0x00,0x00,0xde = srlk %r0, %r0, 0(%r1)
|
503
|
-
0xeb,0x00,0xf0,0x00,0x00,0xde = srlk %r0, %r0, 0(%r15)
|
504
|
-
0xeb,0x00,0x1f,0xff,0x7f,0xde = srlk %r0, %r0, 524287(%r1)
|
505
|
-
0xeb,0x00,0xff,0xff,0x7f,0xde = srlk %r0, %r0, 524287(%r15)
|
506
|
-
0xe3,0x00,0x00,0x00,0x80,0xc3 = stch %r0, -524288
|
507
|
-
0xe3,0x00,0x0f,0xff,0xff,0xc3 = stch %r0, -1
|
508
|
-
0xe3,0x00,0x00,0x00,0x00,0xc3 = stch %r0, 0
|
509
|
-
0xe3,0x00,0x00,0x01,0x00,0xc3 = stch %r0, 1
|
510
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xc3 = stch %r0, 524287
|
511
|
-
0xe3,0x00,0x10,0x00,0x00,0xc3 = stch %r0, 0(%r1)
|
512
|
-
0xe3,0x00,0xf0,0x00,0x00,0xc3 = stch %r0, 0(%r15)
|
513
|
-
0xe3,0x01,0xff,0xff,0x7f,0xc3 = stch %r0, 524287(%r1,%r15)
|
514
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xc3 = stch %r0, 524287(%r15,%r1)
|
515
|
-
0xe3,0xf0,0x00,0x00,0x00,0xc3 = stch %r15, 0
|
516
|
-
0xe3,0x00,0x00,0x00,0x80,0xc7 = sthh %r0, -524288
|
517
|
-
0xe3,0x00,0x0f,0xff,0xff,0xc7 = sthh %r0, -1
|
518
|
-
0xe3,0x00,0x00,0x00,0x00,0xc7 = sthh %r0, 0
|
519
|
-
0xe3,0x00,0x00,0x01,0x00,0xc7 = sthh %r0, 1
|
520
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xc7 = sthh %r0, 524287
|
521
|
-
0xe3,0x00,0x10,0x00,0x00,0xc7 = sthh %r0, 0(%r1)
|
522
|
-
0xe3,0x00,0xf0,0x00,0x00,0xc7 = sthh %r0, 0(%r15)
|
523
|
-
0xe3,0x01,0xff,0xff,0x7f,0xc7 = sthh %r0, 524287(%r1,%r15)
|
524
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xc7 = sthh %r0, 524287(%r15,%r1)
|
525
|
-
0xe3,0xf0,0x00,0x00,0x00,0xc7 = sthh %r15, 0
|
526
|
-
0xe3,0x00,0x00,0x00,0x80,0xcb = stfh %r0, -524288
|
527
|
-
0xe3,0x00,0x0f,0xff,0xff,0xcb = stfh %r0, -1
|
528
|
-
0xe3,0x00,0x00,0x00,0x00,0xcb = stfh %r0, 0
|
529
|
-
0xe3,0x00,0x00,0x01,0x00,0xcb = stfh %r0, 1
|
530
|
-
0xe3,0x00,0x0f,0xff,0x7f,0xcb = stfh %r0, 524287
|
531
|
-
0xe3,0x00,0x10,0x00,0x00,0xcb = stfh %r0, 0(%r1)
|
532
|
-
0xe3,0x00,0xf0,0x00,0x00,0xcb = stfh %r0, 0(%r15)
|
533
|
-
0xe3,0x01,0xff,0xff,0x7f,0xcb = stfh %r0, 524287(%r1,%r15)
|
534
|
-
0xe3,0x0f,0x1f,0xff,0x7f,0xcb = stfh %r0, 524287(%r15,%r1)
|
535
|
-
0xe3,0xf0,0x00,0x00,0x00,0xcb = stfh %r15, 0
|
536
|
-
0xeb,0x00,0x00,0x00,0x00,0xf3 = stoc %r0, 0, 0
|
537
|
-
0xeb,0x0f,0x00,0x00,0x00,0xf3 = stoc %r0, 0, 15
|
538
|
-
0xeb,0x00,0x00,0x00,0x80,0xf3 = stoc %r0, -524288, 0
|
539
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xf3 = stoc %r0, 524287, 0
|
540
|
-
0xeb,0x00,0x10,0x00,0x00,0xf3 = stoc %r0, 0(%r1), 0
|
541
|
-
0xeb,0x00,0xf0,0x00,0x00,0xf3 = stoc %r0, 0(%r15), 0
|
542
|
-
0xeb,0xf0,0x00,0x00,0x00,0xf3 = stoc %r15, 0, 0
|
543
|
-
0xeb,0x13,0x2f,0xff,0x00,0xf3 = stoc %r1, 4095(%r2), 3
|
544
|
-
0xeb,0x11,0x30,0x02,0x00,0xf3 = stoco %r1, 2(%r3)
|
545
|
-
0xeb,0x12,0x30,0x02,0x00,0xf3 = stoch %r1, 2(%r3)
|
546
|
-
0xeb,0x13,0x30,0x02,0x00,0xf3 = stocnle %r1, 2(%r3)
|
547
|
-
0xeb,0x14,0x30,0x02,0x00,0xf3 = stocl %r1, 2(%r3)
|
548
|
-
0xeb,0x15,0x30,0x02,0x00,0xf3 = stocnhe %r1, 2(%r3)
|
549
|
-
0xeb,0x16,0x30,0x02,0x00,0xf3 = stoclh %r1, 2(%r3)
|
550
|
-
0xeb,0x17,0x30,0x02,0x00,0xf3 = stocne %r1, 2(%r3)
|
551
|
-
0xeb,0x18,0x30,0x02,0x00,0xf3 = stoce %r1, 2(%r3)
|
552
|
-
0xeb,0x19,0x30,0x02,0x00,0xf3 = stocnlh %r1, 2(%r3)
|
553
|
-
0xeb,0x1a,0x30,0x02,0x00,0xf3 = stoche %r1, 2(%r3)
|
554
|
-
0xeb,0x1b,0x30,0x02,0x00,0xf3 = stocnl %r1, 2(%r3)
|
555
|
-
0xeb,0x1c,0x30,0x02,0x00,0xf3 = stocle %r1, 2(%r3)
|
556
|
-
0xeb,0x1d,0x30,0x02,0x00,0xf3 = stocnh %r1, 2(%r3)
|
557
|
-
0xeb,0x1e,0x30,0x02,0x00,0xf3 = stocno %r1, 2(%r3)
|
558
|
-
0xeb,0x00,0x00,0x00,0x00,0xe3 = stocg %r0, 0, 0
|
559
|
-
0xeb,0x0f,0x00,0x00,0x00,0xe3 = stocg %r0, 0, 15
|
560
|
-
0xeb,0x00,0x00,0x00,0x80,0xe3 = stocg %r0, -524288, 0
|
561
|
-
0xeb,0x00,0x0f,0xff,0x7f,0xe3 = stocg %r0, 524287, 0
|
562
|
-
0xeb,0x00,0x10,0x00,0x00,0xe3 = stocg %r0, 0(%r1), 0
|
563
|
-
0xeb,0x00,0xf0,0x00,0x00,0xe3 = stocg %r0, 0(%r15), 0
|
564
|
-
0xeb,0xf0,0x00,0x00,0x00,0xe3 = stocg %r15, 0, 0
|
565
|
-
0xeb,0x13,0x2f,0xff,0x00,0xe3 = stocg %r1, 4095(%r2), 3
|
566
|
-
0xeb,0x11,0x30,0x02,0x00,0xe3 = stocgo %r1, 2(%r3)
|
567
|
-
0xeb,0x12,0x30,0x02,0x00,0xe3 = stocgh %r1, 2(%r3)
|
568
|
-
0xeb,0x13,0x30,0x02,0x00,0xe3 = stocgnle %r1, 2(%r3)
|
569
|
-
0xeb,0x14,0x30,0x02,0x00,0xe3 = stocgl %r1, 2(%r3)
|
570
|
-
0xeb,0x15,0x30,0x02,0x00,0xe3 = stocgnhe %r1, 2(%r3)
|
571
|
-
0xeb,0x16,0x30,0x02,0x00,0xe3 = stocglh %r1, 2(%r3)
|
572
|
-
0xeb,0x17,0x30,0x02,0x00,0xe3 = stocgne %r1, 2(%r3)
|
573
|
-
0xeb,0x18,0x30,0x02,0x00,0xe3 = stocge %r1, 2(%r3)
|
574
|
-
0xeb,0x19,0x30,0x02,0x00,0xe3 = stocgnlh %r1, 2(%r3)
|
575
|
-
0xeb,0x1a,0x30,0x02,0x00,0xe3 = stocghe %r1, 2(%r3)
|
576
|
-
0xeb,0x1b,0x30,0x02,0x00,0xe3 = stocgnl %r1, 2(%r3)
|
577
|
-
0xeb,0x1c,0x30,0x02,0x00,0xe3 = stocgle %r1, 2(%r3)
|
578
|
-
0xeb,0x1d,0x30,0x02,0x00,0xe3 = stocgnh %r1, 2(%r3)
|
579
|
-
0xeb,0x1e,0x30,0x02,0x00,0xe3 = stocgno %r1, 2(%r3)
|
580
|
-
0xb9,0xe7,0x00,0x00 = xgrk %r0, %r0, %r0
|
581
|
-
0xb9,0xe7,0xf0,0x00 = xgrk %r0, %r0, %r15
|
582
|
-
0xb9,0xe7,0x00,0x0f = xgrk %r0, %r15, %r0
|
583
|
-
0xb9,0xe7,0x00,0xf0 = xgrk %r15, %r0, %r0
|
584
|
-
0xb9,0xe7,0x90,0x78 = xgrk %r7, %r8, %r9
|
585
|
-
0xb9,0xf7,0x00,0x00 = xrk %r0, %r0, %r0
|
586
|
-
0xb9,0xf7,0xf0,0x00 = xrk %r0, %r0, %r15
|
587
|
-
0xb9,0xf7,0x00,0x0f = xrk %r0, %r15, %r0
|
588
|
-
0xb9,0xf7,0x00,0xf0 = xrk %r15, %r0, %r0
|
589
|
-
0xb9,0xf7,0x90,0x78 = xrk %r7, %r8, %r9
|