crabstone 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGES.md +61 -0
- data/LICENSE +25 -0
- data/MANIFEST +312 -0
- data/README.md +103 -0
- data/Rakefile +27 -0
- data/bin/genconst +66 -0
- data/bin/genreg +99 -0
- data/crabstone.gemspec +27 -0
- data/examples/hello_world.rb +43 -0
- data/lib/arch/arm.rb +128 -0
- data/lib/arch/arm64.rb +167 -0
- data/lib/arch/arm64_const.rb +1055 -0
- data/lib/arch/arm64_registers.rb +295 -0
- data/lib/arch/arm_const.rb +777 -0
- data/lib/arch/arm_registers.rb +149 -0
- data/lib/arch/mips.rb +78 -0
- data/lib/arch/mips_const.rb +850 -0
- data/lib/arch/mips_registers.rb +208 -0
- data/lib/arch/ppc.rb +90 -0
- data/lib/arch/ppc_const.rb +1181 -0
- data/lib/arch/ppc_registers.rb +209 -0
- data/lib/arch/sparc.rb +79 -0
- data/lib/arch/sparc_const.rb +461 -0
- data/lib/arch/sparc_registers.rb +121 -0
- data/lib/arch/systemz.rb +79 -0
- data/lib/arch/sysz_const.rb +779 -0
- data/lib/arch/sysz_registers.rb +66 -0
- data/lib/arch/x86.rb +107 -0
- data/lib/arch/x86_const.rb +1698 -0
- data/lib/arch/x86_registers.rb +265 -0
- data/lib/arch/xcore.rb +78 -0
- data/lib/arch/xcore_const.rb +185 -0
- data/lib/arch/xcore_registers.rb +57 -0
- data/lib/crabstone.rb +564 -0
- data/test/MC/AArch64/basic-a64-instructions.s.cs +2014 -0
- data/test/MC/AArch64/gicv3-regs.s.cs +111 -0
- data/test/MC/AArch64/neon-2velem.s.cs +113 -0
- data/test/MC/AArch64/neon-3vdiff.s.cs +143 -0
- data/test/MC/AArch64/neon-aba-abd.s.cs +28 -0
- data/test/MC/AArch64/neon-across.s.cs +40 -0
- data/test/MC/AArch64/neon-add-pairwise.s.cs +11 -0
- data/test/MC/AArch64/neon-add-sub-instructions.s.cs +21 -0
- data/test/MC/AArch64/neon-bitwise-instructions.s.cs +17 -0
- data/test/MC/AArch64/neon-compare-instructions.s.cs +136 -0
- data/test/MC/AArch64/neon-crypto.s.cs +15 -0
- data/test/MC/AArch64/neon-extract.s.cs +3 -0
- data/test/MC/AArch64/neon-facge-facgt.s.cs +13 -0
- data/test/MC/AArch64/neon-frsqrt-frecp.s.cs +7 -0
- data/test/MC/AArch64/neon-halving-add-sub.s.cs +25 -0
- data/test/MC/AArch64/neon-max-min-pairwise.s.cs +37 -0
- data/test/MC/AArch64/neon-max-min.s.cs +37 -0
- data/test/MC/AArch64/neon-mla-mls-instructions.s.cs +19 -0
- data/test/MC/AArch64/neon-mov.s.cs +74 -0
- data/test/MC/AArch64/neon-mul-div-instructions.s.cs +24 -0
- data/test/MC/AArch64/neon-perm.s.cs +43 -0
- data/test/MC/AArch64/neon-rounding-halving-add.s.cs +13 -0
- data/test/MC/AArch64/neon-rounding-shift.s.cs +15 -0
- data/test/MC/AArch64/neon-saturating-add-sub.s.cs +29 -0
- data/test/MC/AArch64/neon-saturating-rounding-shift.s.cs +15 -0
- data/test/MC/AArch64/neon-saturating-shift.s.cs +15 -0
- data/test/MC/AArch64/neon-scalar-abs.s.cs +8 -0
- data/test/MC/AArch64/neon-scalar-add-sub.s.cs +3 -0
- data/test/MC/AArch64/neon-scalar-by-elem-mla.s.cs +13 -0
- data/test/MC/AArch64/neon-scalar-by-elem-mul.s.cs +13 -0
- data/test/MC/AArch64/neon-scalar-by-elem-saturating-mla.s.cs +15 -0
- data/test/MC/AArch64/neon-scalar-by-elem-saturating-mul.s.cs +18 -0
- data/test/MC/AArch64/neon-scalar-compare.s.cs +12 -0
- data/test/MC/AArch64/neon-scalar-cvt.s.cs +34 -0
- data/test/MC/AArch64/neon-scalar-dup.s.cs +23 -0
- data/test/MC/AArch64/neon-scalar-extract-narrow.s.cs +10 -0
- data/test/MC/AArch64/neon-scalar-fp-compare.s.cs +21 -0
- data/test/MC/AArch64/neon-scalar-mul.s.cs +13 -0
- data/test/MC/AArch64/neon-scalar-neg.s.cs +6 -0
- data/test/MC/AArch64/neon-scalar-recip.s.cs +11 -0
- data/test/MC/AArch64/neon-scalar-reduce-pairwise.s.cs +3 -0
- data/test/MC/AArch64/neon-scalar-rounding-shift.s.cs +3 -0
- data/test/MC/AArch64/neon-scalar-saturating-add-sub.s.cs +25 -0
- data/test/MC/AArch64/neon-scalar-saturating-rounding-shift.s.cs +9 -0
- data/test/MC/AArch64/neon-scalar-saturating-shift.s.cs +9 -0
- data/test/MC/AArch64/neon-scalar-shift-imm.s.cs +42 -0
- data/test/MC/AArch64/neon-scalar-shift.s.cs +3 -0
- data/test/MC/AArch64/neon-shift-left-long.s.cs +13 -0
- data/test/MC/AArch64/neon-shift.s.cs +22 -0
- data/test/MC/AArch64/neon-simd-copy.s.cs +42 -0
- data/test/MC/AArch64/neon-simd-ldst-multi-elem.s.cs +197 -0
- data/test/MC/AArch64/neon-simd-ldst-one-elem.s.cs +129 -0
- data/test/MC/AArch64/neon-simd-misc.s.cs +213 -0
- data/test/MC/AArch64/neon-simd-post-ldst-multi-elem.s.cs +107 -0
- data/test/MC/AArch64/neon-simd-shift.s.cs +151 -0
- data/test/MC/AArch64/neon-tbl.s.cs +21 -0
- data/test/MC/AArch64/trace-regs.s.cs +383 -0
- data/test/MC/ARM/arm-aliases.s.cs +7 -0
- data/test/MC/ARM/arm-arithmetic-aliases.s.cs +50 -0
- data/test/MC/ARM/arm-it-block.s.cs +2 -0
- data/test/MC/ARM/arm-memory-instructions.s.cs +138 -0
- data/test/MC/ARM/arm-shift-encoding.s.cs +50 -0
- data/test/MC/ARM/arm-thumb-trustzone.s.cs +3 -0
- data/test/MC/ARM/arm-trustzone.s.cs +3 -0
- data/test/MC/ARM/arm_addrmode2.s.cs +15 -0
- data/test/MC/ARM/arm_addrmode3.s.cs +9 -0
- data/test/MC/ARM/arm_instructions.s.cs +25 -0
- data/test/MC/ARM/basic-arm-instructions-v8.s.cs +10 -0
- data/test/MC/ARM/basic-arm-instructions.s.cs +997 -0
- data/test/MC/ARM/basic-thumb-instructions.s.cs +130 -0
- data/test/MC/ARM/basic-thumb2-instructions-v8.s.cs +1 -0
- data/test/MC/ARM/basic-thumb2-instructions.s.cs +1242 -0
- data/test/MC/ARM/crc32-thumb.s.cs +7 -0
- data/test/MC/ARM/crc32.s.cs +7 -0
- data/test/MC/ARM/dot-req.s.cs +3 -0
- data/test/MC/ARM/fp-armv8.s.cs +52 -0
- data/test/MC/ARM/idiv-thumb.s.cs +3 -0
- data/test/MC/ARM/idiv.s.cs +3 -0
- data/test/MC/ARM/load-store-acquire-release-v8-thumb.s.cs +15 -0
- data/test/MC/ARM/load-store-acquire-release-v8.s.cs +15 -0
- data/test/MC/ARM/mode-switch.s.cs +7 -0
- data/test/MC/ARM/neon-abs-encoding.s.cs +15 -0
- data/test/MC/ARM/neon-absdiff-encoding.s.cs +39 -0
- data/test/MC/ARM/neon-add-encoding.s.cs +119 -0
- data/test/MC/ARM/neon-bitcount-encoding.s.cs +15 -0
- data/test/MC/ARM/neon-bitwise-encoding.s.cs +126 -0
- data/test/MC/ARM/neon-cmp-encoding.s.cs +88 -0
- data/test/MC/ARM/neon-convert-encoding.s.cs +27 -0
- data/test/MC/ARM/neon-crypto.s.cs +16 -0
- data/test/MC/ARM/neon-dup-encoding.s.cs +13 -0
- data/test/MC/ARM/neon-minmax-encoding.s.cs +57 -0
- data/test/MC/ARM/neon-mov-encoding.s.cs +76 -0
- data/test/MC/ARM/neon-mul-accum-encoding.s.cs +39 -0
- data/test/MC/ARM/neon-mul-encoding.s.cs +72 -0
- data/test/MC/ARM/neon-neg-encoding.s.cs +15 -0
- data/test/MC/ARM/neon-pairwise-encoding.s.cs +47 -0
- data/test/MC/ARM/neon-reciprocal-encoding.s.cs +13 -0
- data/test/MC/ARM/neon-reverse-encoding.s.cs +13 -0
- data/test/MC/ARM/neon-satshift-encoding.s.cs +75 -0
- data/test/MC/ARM/neon-shift-encoding.s.cs +238 -0
- data/test/MC/ARM/neon-shiftaccum-encoding.s.cs +97 -0
- data/test/MC/ARM/neon-shuffle-encoding.s.cs +59 -0
- data/test/MC/ARM/neon-sub-encoding.s.cs +82 -0
- data/test/MC/ARM/neon-table-encoding.s.cs +9 -0
- data/test/MC/ARM/neon-v8.s.cs +38 -0
- data/test/MC/ARM/neon-vld-encoding.s.cs +213 -0
- data/test/MC/ARM/neon-vst-encoding.s.cs +120 -0
- data/test/MC/ARM/neon-vswp.s.cs +3 -0
- data/test/MC/ARM/neont2-abs-encoding.s.cs +15 -0
- data/test/MC/ARM/neont2-absdiff-encoding.s.cs +39 -0
- data/test/MC/ARM/neont2-add-encoding.s.cs +65 -0
- data/test/MC/ARM/neont2-bitcount-encoding.s.cs +15 -0
- data/test/MC/ARM/neont2-bitwise-encoding.s.cs +15 -0
- data/test/MC/ARM/neont2-cmp-encoding.s.cs +17 -0
- data/test/MC/ARM/neont2-convert-encoding.s.cs +19 -0
- data/test/MC/ARM/neont2-dup-encoding.s.cs +19 -0
- data/test/MC/ARM/neont2-minmax-encoding.s.cs +57 -0
- data/test/MC/ARM/neont2-mov-encoding.s.cs +58 -0
- data/test/MC/ARM/neont2-mul-accum-encoding.s.cs +41 -0
- data/test/MC/ARM/neont2-mul-encoding.s.cs +31 -0
- data/test/MC/ARM/neont2-neg-encoding.s.cs +15 -0
- data/test/MC/ARM/neont2-pairwise-encoding.s.cs +43 -0
- data/test/MC/ARM/neont2-reciprocal-encoding.s.cs +13 -0
- data/test/MC/ARM/neont2-reverse-encoding.s.cs +13 -0
- data/test/MC/ARM/neont2-satshift-encoding.s.cs +75 -0
- data/test/MC/ARM/neont2-shift-encoding.s.cs +80 -0
- data/test/MC/ARM/neont2-shiftaccum-encoding.s.cs +97 -0
- data/test/MC/ARM/neont2-shuffle-encoding.s.cs +23 -0
- data/test/MC/ARM/neont2-sub-encoding.s.cs +23 -0
- data/test/MC/ARM/neont2-table-encoding.s.cs +9 -0
- data/test/MC/ARM/neont2-vld-encoding.s.cs +51 -0
- data/test/MC/ARM/neont2-vst-encoding.s.cs +48 -0
- data/test/MC/ARM/simple-fp-encoding.s.cs +157 -0
- data/test/MC/ARM/thumb-fp-armv8.s.cs +51 -0
- data/test/MC/ARM/thumb-hints.s.cs +12 -0
- data/test/MC/ARM/thumb-neon-crypto.s.cs +16 -0
- data/test/MC/ARM/thumb-neon-v8.s.cs +38 -0
- data/test/MC/ARM/thumb-shift-encoding.s.cs +19 -0
- data/test/MC/ARM/thumb.s.cs +19 -0
- data/test/MC/ARM/thumb2-b.w-encodingT4.s.cs +2 -0
- data/test/MC/ARM/thumb2-branches.s.cs +85 -0
- data/test/MC/ARM/thumb2-mclass.s.cs +41 -0
- data/test/MC/ARM/thumb2-narrow-dp.ll.cs +379 -0
- data/test/MC/ARM/thumb2-pldw.s.cs +2 -0
- data/test/MC/ARM/vfp4-thumb.s.cs +13 -0
- data/test/MC/ARM/vfp4.s.cs +13 -0
- data/test/MC/ARM/vpush-vpop-thumb.s.cs +9 -0
- data/test/MC/ARM/vpush-vpop.s.cs +9 -0
- data/test/MC/Mips/hilo-addressing.s.cs +4 -0
- data/test/MC/Mips/micromips-alu-instructions-EB.s.cs +33 -0
- data/test/MC/Mips/micromips-alu-instructions.s.cs +33 -0
- data/test/MC/Mips/micromips-branch-instructions-EB.s.cs +11 -0
- data/test/MC/Mips/micromips-branch-instructions.s.cs +11 -0
- data/test/MC/Mips/micromips-expansions.s.cs +20 -0
- data/test/MC/Mips/micromips-jump-instructions-EB.s.cs +5 -0
- data/test/MC/Mips/micromips-jump-instructions.s.cs +6 -0
- data/test/MC/Mips/micromips-loadstore-instructions-EB.s.cs +9 -0
- data/test/MC/Mips/micromips-loadstore-instructions.s.cs +9 -0
- data/test/MC/Mips/micromips-loadstore-unaligned-EB.s.cs +5 -0
- data/test/MC/Mips/micromips-loadstore-unaligned.s.cs +5 -0
- data/test/MC/Mips/micromips-movcond-instructions-EB.s.cs +5 -0
- data/test/MC/Mips/micromips-movcond-instructions.s.cs +5 -0
- data/test/MC/Mips/micromips-multiply-instructions-EB.s.cs +5 -0
- data/test/MC/Mips/micromips-multiply-instructions.s.cs +5 -0
- data/test/MC/Mips/micromips-shift-instructions-EB.s.cs +9 -0
- data/test/MC/Mips/micromips-shift-instructions.s.cs +9 -0
- data/test/MC/Mips/micromips-trap-instructions-EB.s.cs +13 -0
- data/test/MC/Mips/micromips-trap-instructions.s.cs +13 -0
- data/test/MC/Mips/mips-alu-instructions.s.cs +53 -0
- data/test/MC/Mips/mips-control-instructions-64.s.cs +33 -0
- data/test/MC/Mips/mips-control-instructions.s.cs +33 -0
- data/test/MC/Mips/mips-coprocessor-encodings.s.cs +17 -0
- data/test/MC/Mips/mips-dsp-instructions.s.cs +43 -0
- data/test/MC/Mips/mips-expansions.s.cs +20 -0
- data/test/MC/Mips/mips-fpu-instructions.s.cs +93 -0
- data/test/MC/Mips/mips-jump-instructions.s.cs +1 -0
- data/test/MC/Mips/mips-memory-instructions.s.cs +17 -0
- data/test/MC/Mips/mips-register-names.s.cs +33 -0
- data/test/MC/Mips/mips64-alu-instructions.s.cs +47 -0
- data/test/MC/Mips/mips64-instructions.s.cs +3 -0
- data/test/MC/Mips/mips64-register-names.s.cs +33 -0
- data/test/MC/Mips/mips_directives.s.cs +12 -0
- data/test/MC/Mips/nabi-regs.s.cs +12 -0
- data/test/MC/Mips/set-at-directive.s.cs +6 -0
- data/test/MC/Mips/test_2r.s.cs +16 -0
- data/test/MC/Mips/test_2rf.s.cs +33 -0
- data/test/MC/Mips/test_3r.s.cs +243 -0
- data/test/MC/Mips/test_3rf.s.cs +83 -0
- data/test/MC/Mips/test_bit.s.cs +49 -0
- data/test/MC/Mips/test_cbranch.s.cs +11 -0
- data/test/MC/Mips/test_ctrlregs.s.cs +33 -0
- data/test/MC/Mips/test_elm.s.cs +16 -0
- data/test/MC/Mips/test_elm_insert.s.cs +4 -0
- data/test/MC/Mips/test_elm_insve.s.cs +5 -0
- data/test/MC/Mips/test_i10.s.cs +5 -0
- data/test/MC/Mips/test_i5.s.cs +45 -0
- data/test/MC/Mips/test_i8.s.cs +11 -0
- data/test/MC/Mips/test_lsa.s.cs +5 -0
- data/test/MC/Mips/test_mi10.s.cs +24 -0
- data/test/MC/Mips/test_vec.s.cs +8 -0
- data/test/MC/PowerPC/ppc64-encoding-bookII.s.cs +25 -0
- data/test/MC/PowerPC/ppc64-encoding-bookIII.s.cs +35 -0
- data/test/MC/PowerPC/ppc64-encoding-ext.s.cs +535 -0
- data/test/MC/PowerPC/ppc64-encoding-fp.s.cs +110 -0
- data/test/MC/PowerPC/ppc64-encoding-vmx.s.cs +170 -0
- data/test/MC/PowerPC/ppc64-encoding.s.cs +202 -0
- data/test/MC/PowerPC/ppc64-operands.s.cs +32 -0
- data/test/MC/README +6 -0
- data/test/MC/Sparc/sparc-alu-instructions.s.cs +47 -0
- data/test/MC/Sparc/sparc-atomic-instructions.s.cs +7 -0
- data/test/MC/Sparc/sparc-ctrl-instructions.s.cs +11 -0
- data/test/MC/Sparc/sparc-fp-instructions.s.cs +59 -0
- data/test/MC/Sparc/sparc-mem-instructions.s.cs +25 -0
- data/test/MC/Sparc/sparc-vis.s.cs +2 -0
- data/test/MC/Sparc/sparc64-alu-instructions.s.cs +13 -0
- data/test/MC/Sparc/sparc64-ctrl-instructions.s.cs +102 -0
- data/test/MC/Sparc/sparcv8-instructions.s.cs +7 -0
- data/test/MC/Sparc/sparcv9-instructions.s.cs +1 -0
- data/test/MC/SystemZ/insn-good-z196.s.cs +589 -0
- data/test/MC/SystemZ/insn-good.s.cs +2265 -0
- data/test/MC/SystemZ/regs-good.s.cs +45 -0
- data/test/MC/X86/3DNow.s.cs +29 -0
- data/test/MC/X86/address-size.s.cs +5 -0
- data/test/MC/X86/avx512-encodings.s.cs +12 -0
- data/test/MC/X86/intel-syntax-encoding.s.cs +30 -0
- data/test/MC/X86/x86-32-avx.s.cs +833 -0
- data/test/MC/X86/x86-32-fma3.s.cs +169 -0
- data/test/MC/X86/x86-32-ms-inline-asm.s.cs +27 -0
- data/test/MC/X86/x86_64-avx-clmul-encoding.s.cs +11 -0
- data/test/MC/X86/x86_64-avx-encoding.s.cs +1058 -0
- data/test/MC/X86/x86_64-bmi-encoding.s.cs +51 -0
- data/test/MC/X86/x86_64-encoding.s.cs +59 -0
- data/test/MC/X86/x86_64-fma3-encoding.s.cs +169 -0
- data/test/MC/X86/x86_64-fma4-encoding.s.cs +98 -0
- data/test/MC/X86/x86_64-hle-encoding.s.cs +3 -0
- data/test/MC/X86/x86_64-imm-widths.s.cs +27 -0
- data/test/MC/X86/x86_64-rand-encoding.s.cs +13 -0
- data/test/MC/X86/x86_64-rtm-encoding.s.cs +4 -0
- data/test/MC/X86/x86_64-sse4a.s.cs +1 -0
- data/test/MC/X86/x86_64-tbm-encoding.s.cs +40 -0
- data/test/MC/X86/x86_64-xop-encoding.s.cs +152 -0
- data/test/README +6 -0
- data/test/test.rb +205 -0
- data/test/test.rb.SPEC +235 -0
- data/test/test_arm.rb +202 -0
- data/test/test_arm.rb.SPEC +275 -0
- data/test/test_arm64.rb +150 -0
- data/test/test_arm64.rb.SPEC +116 -0
- data/test/test_detail.rb +228 -0
- data/test/test_detail.rb.SPEC +322 -0
- data/test/test_exhaustive.rb +80 -0
- data/test/test_mips.rb +118 -0
- data/test/test_mips.rb.SPEC +91 -0
- data/test/test_ppc.rb +137 -0
- data/test/test_ppc.rb.SPEC +84 -0
- data/test/test_sanity.rb +83 -0
- data/test/test_skipdata.rb +111 -0
- data/test/test_skipdata.rb.SPEC +58 -0
- data/test/test_sparc.rb +113 -0
- data/test/test_sparc.rb.SPEC +116 -0
- data/test/test_sysz.rb +111 -0
- data/test/test_sysz.rb.SPEC +61 -0
- data/test/test_x86.rb +189 -0
- data/test/test_x86.rb.SPEC +579 -0
- data/test/test_xcore.rb +100 -0
- data/test/test_xcore.rb.SPEC +75 -0
- metadata +393 -0
@@ -0,0 +1,130 @@
|
|
1
|
+
# CS_ARCH_ARM, CS_MODE_THUMB, None
|
2
|
+
0x74,0x41 = adcs r4, r6
|
3
|
+
0xd1,0x1c = adds r1, r2, #3
|
4
|
+
0x03,0x32 = adds r2, #3
|
5
|
+
0x08,0x32 = adds r2, #8
|
6
|
+
0xd1,0x18 = adds r1, r2, r3
|
7
|
+
0x42,0x44 = add r2, r8
|
8
|
+
0x01,0xb0 = add sp, #4
|
9
|
+
0x7f,0xb0 = add sp, #508
|
10
|
+
0x01,0xb0 = add sp, #4
|
11
|
+
0x02,0xaa = add r2, sp, #8
|
12
|
+
0xff,0xaa = add r2, sp, #1020
|
13
|
+
0x82,0xb0 = sub sp, #8
|
14
|
+
0x82,0xb0 = sub sp, #8
|
15
|
+
0x9d,0x44 = add sp, r3
|
16
|
+
0x6a,0x44 = add r2, sp, r2
|
17
|
+
0x00,0xa5 = adr r5, #0
|
18
|
+
0x01,0xa2 = adr r2, #4
|
19
|
+
0xff,0xa3 = adr r3, #1020
|
20
|
+
0x1a,0x10 = asrs r2, r3, #32
|
21
|
+
0x5a,0x11 = asrs r2, r3, #5
|
22
|
+
0x5a,0x10 = asrs r2, r3, #1
|
23
|
+
0x6d,0x15 = asrs r5, r5, #21
|
24
|
+
0x6d,0x15 = asrs r5, r5, #21
|
25
|
+
0x6b,0x15 = asrs r3, r5, #21
|
26
|
+
0x15,0x41 = asrs r5, r2
|
27
|
+
0x97,0xe3 = b #1838
|
28
|
+
0x2e,0xe7 = b #-420
|
29
|
+
0x80,0xd0 = beq #-256
|
30
|
+
0x50,0xd0 = beq #160
|
31
|
+
0xd8,0xf0,0x20,0xe8 = blx #884800
|
32
|
+
0xb0,0xf1,0x40,0xe8 = blx #1769600
|
33
|
+
0xb1,0x43 = bics r1, r6
|
34
|
+
0x00,0xbe = bkpt #0
|
35
|
+
0xff,0xbe = bkpt #255
|
36
|
+
0xa0,0x47 = blx r4
|
37
|
+
0x10,0x47 = bx r2
|
38
|
+
0xcd,0x42 = cmn r5, r1
|
39
|
+
0x20,0x2e = cmp r6, #32
|
40
|
+
0xa3,0x42 = cmp r3, r4
|
41
|
+
0x88,0x45 = cmp r8, r1
|
42
|
+
0x61,0xb6 = cpsie f
|
43
|
+
0x74,0xb6 = cpsid a
|
44
|
+
0x6c,0x40 = eors r4, r5
|
45
|
+
0xff,0xcb = ldm r3, {r0, r1, r2, r3, r4, r5, r6, r7}
|
46
|
+
0xba,0xca = ldm r2!, {r1, r3, r4, r5, r7}
|
47
|
+
0x02,0xc9 = ldm r1, {r1}
|
48
|
+
0x29,0x68 = ldr r1, [r5]
|
49
|
+
0x32,0x6a = ldr r2, [r6, #32]
|
50
|
+
0xfb,0x6f = ldr r3, [r7, #124]
|
51
|
+
0x00,0x99 = ldr r1, [sp]
|
52
|
+
0x06,0x9a = ldr r2, [sp, #24]
|
53
|
+
0xff,0x9b = ldr r3, [sp, #1020]
|
54
|
+
0x97,0x4b = ldr r3, [pc, #604]
|
55
|
+
0x5c,0x4b = ldr r3, [pc, #368]
|
56
|
+
0xd1,0x58 = ldr r1, [r2, r3]
|
57
|
+
0x1c,0x78 = ldrb r4, [r3]
|
58
|
+
0x35,0x78 = ldrb r5, [r6]
|
59
|
+
0xfe,0x7f = ldrb r6, [r7, #31]
|
60
|
+
0x66,0x5d = ldrb r6, [r4, r5]
|
61
|
+
0x1b,0x88 = ldrh r3, [r3]
|
62
|
+
0x74,0x88 = ldrh r4, [r6, #2]
|
63
|
+
0xfd,0x8f = ldrh r5, [r7, #62]
|
64
|
+
0x96,0x5b = ldrh r6, [r2, r6]
|
65
|
+
0x96,0x57 = ldrsb r6, [r2, r6]
|
66
|
+
0x7b,0x5e = ldrsh r3, [r7, r1]
|
67
|
+
0x2c,0x00 = lsls r4, r5, #0
|
68
|
+
0x2c,0x01 = lsls r4, r5, #4
|
69
|
+
0x1b,0x03 = lsls r3, r3, #12
|
70
|
+
0x1b,0x03 = lsls r3, r3, #12
|
71
|
+
0x19,0x03 = lsls r1, r3, #12
|
72
|
+
0xb2,0x40 = lsls r2, r6
|
73
|
+
0x59,0x08 = lsrs r1, r3, #1
|
74
|
+
0x19,0x08 = lsrs r1, r3, #32
|
75
|
+
0x24,0x0d = lsrs r4, r4, #20
|
76
|
+
0x24,0x0d = lsrs r4, r4, #20
|
77
|
+
0x22,0x0d = lsrs r2, r4, #20
|
78
|
+
0xf2,0x40 = lsrs r2, r6
|
79
|
+
0x00,0x22 = movs r2, #0
|
80
|
+
0xff,0x22 = movs r2, #255
|
81
|
+
0x17,0x22 = movs r2, #23
|
82
|
+
0x23,0x46 = mov r3, r4
|
83
|
+
0x19,0x00 = movs r1, r3
|
84
|
+
0x51,0x43 = muls r1, r2, r1
|
85
|
+
0x5a,0x43 = muls r2, r3, r2
|
86
|
+
0x63,0x43 = muls r3, r4, r3
|
87
|
+
0xde,0x43 = mvns r6, r3
|
88
|
+
0x63,0x42 = rsbs r3, r4, #0
|
89
|
+
0x4c,0xbc = pop {r2, r3, r6}
|
90
|
+
0x86,0xb4 = push {r1, r2, r7}
|
91
|
+
0x1e,0xba = rev r6, r3
|
92
|
+
0x57,0xba = rev16 r7, r2
|
93
|
+
0xcd,0xba = revsh r5, r1
|
94
|
+
0xfa,0x41 = rors r2, r7
|
95
|
+
0x59,0x42 = rsbs r1, r3, #0
|
96
|
+
0x9c,0x41 = sbcs r4, r3
|
97
|
+
0x58,0xb6 = setend be
|
98
|
+
0x50,0xb6 = setend le
|
99
|
+
0x44,0xc1 = stm r1!, {r2, r6}
|
100
|
+
0x8e,0xc1 = stm r1!, {r1, r2, r3, r7}
|
101
|
+
0x3a,0x60 = str r2, [r7]
|
102
|
+
0x3a,0x60 = str r2, [r7]
|
103
|
+
0x4d,0x60 = str r5, [r1, #4]
|
104
|
+
0xfb,0x67 = str r3, [r7, #124]
|
105
|
+
0x00,0x92 = str r2, [sp]
|
106
|
+
0x00,0x93 = str r3, [sp]
|
107
|
+
0x05,0x94 = str r4, [sp, #20]
|
108
|
+
0xff,0x95 = str r5, [sp, #1020]
|
109
|
+
0xfa,0x50 = str r2, [r7, r3]
|
110
|
+
0x1c,0x70 = strb r4, [r3]
|
111
|
+
0x35,0x70 = strb r5, [r6]
|
112
|
+
0xfe,0x77 = strb r6, [r7, #31]
|
113
|
+
0x66,0x55 = strb r6, [r4, r5]
|
114
|
+
0x1b,0x80 = strh r3, [r3]
|
115
|
+
0x74,0x80 = strh r4, [r6, #2]
|
116
|
+
0xfd,0x87 = strh r5, [r7, #62]
|
117
|
+
0x96,0x53 = strh r6, [r2, r6]
|
118
|
+
0xd1,0x1e = subs r1, r2, #3
|
119
|
+
0x03,0x3a = subs r2, #3
|
120
|
+
0x08,0x3a = subs r2, #8
|
121
|
+
0x83,0xb0 = sub sp, #12
|
122
|
+
0xff,0xb0 = sub sp, #508
|
123
|
+
0xd1,0x1a = subs r1, r2, r3
|
124
|
+
0x00,0xdf = svc #0
|
125
|
+
0xff,0xdf = svc #255
|
126
|
+
0x6b,0xb2 = sxtb r3, r5
|
127
|
+
0x2b,0xb2 = sxth r3, r5
|
128
|
+
0x0e,0x42 = tst r6, r1
|
129
|
+
0xd7,0xb2 = uxtb r7, r2
|
130
|
+
0xa1,0xb2 = uxth r1, r4
|
@@ -0,0 +1 @@
|
|
1
|
+
# CS_ARCH_ARM, CS_MODE_THUMB+CS_MODE_V8, None
|
@@ -0,0 +1,1242 @@
|
|
1
|
+
# CS_ARCH_ARM, CS_MODE_THUMB, None
|
2
|
+
0x41,0xf1,0x04,0x00 = adc r0, r1, #4
|
3
|
+
0x51,0xf1,0x00,0x00 = adcs r0, r1, #0
|
4
|
+
0x42,0xf1,0xff,0x01 = adc r1, r2, #255
|
5
|
+
0x47,0xf1,0x55,0x13 = adc r3, r7, #5570645
|
6
|
+
0x4c,0xf1,0xaa,0x28 = adc r8, r12, #2852170240
|
7
|
+
0x47,0xf1,0xa5,0x39 = adc r9, r7, #2779096485
|
8
|
+
0x43,0xf1,0x07,0x45 = adc r5, r3, #2264924160
|
9
|
+
0x42,0xf1,0xff,0x44 = adc r4, r2, #2139095040
|
10
|
+
0x42,0xf5,0xd0,0x64 = adc r4, r2, #1664
|
11
|
+
0x45,0xeb,0x06,0x04 = adc.w r4, r5, r6
|
12
|
+
0x55,0xeb,0x06,0x04 = adcs.w r4, r5, r6
|
13
|
+
0x41,0xeb,0x03,0x09 = adc.w r9, r1, r3
|
14
|
+
0x51,0xeb,0x03,0x09 = adcs.w r9, r1, r3
|
15
|
+
0x41,0xeb,0x33,0x10 = adc.w r0, r1, r3, ror #4
|
16
|
+
0x51,0xeb,0xc3,0x10 = adcs.w r0, r1, r3, lsl #7
|
17
|
+
0x41,0xeb,0xd3,0x70 = adc.w r0, r1, r3, lsr #31
|
18
|
+
0x51,0xeb,0x23,0x00 = adcs.w r0, r1, r3, asr #32
|
19
|
+
0x0d,0xeb,0x0c,0x02 = add.w r2, sp, r12
|
20
|
+
0x0a,0xbf = itet eq
|
21
|
+
0x03,0xf2,0xff,0x35 = addwne r5, r3, #1023
|
22
|
+
0x05,0xf2,0x25,0x14 = addweq r4, r5, #293
|
23
|
+
0x0d,0xf5,0x80,0x62 = add.w r2, sp, #1024
|
24
|
+
0x08,0xf5,0x7f,0x42 = add.w r2, r8, #65280
|
25
|
+
0x03,0xf2,0x01,0x12 = addw r2, r3, #257
|
26
|
+
0x03,0xf2,0x01,0x12 = addw r2, r3, #257
|
27
|
+
0x06,0xf5,0x80,0x7c = add.w r12, r6, #256
|
28
|
+
0x06,0xf2,0x00,0x1c = addw r12, r6, #256
|
29
|
+
0x12,0xf5,0xf8,0x71 = adds.w r1, r2, #496
|
30
|
+
0x02,0xf1,0x01,0x02 = add.w r2, r2, #1
|
31
|
+
0x00,0xf1,0x20,0x00 = add.w r0, r0, #32
|
32
|
+
0x38,0x32 = adds r2, #56
|
33
|
+
0x38,0x32 = adds r2, #56
|
34
|
+
0x07,0xf1,0xcb,0x31 = add.w r1, r7, #3419130827
|
35
|
+
0x0d,0xf1,0xff,0x7d = add.w sp, sp, #33423360
|
36
|
+
0xb2,0xf1,0x10,0x02 = subs.w r2, r2, #16
|
37
|
+
0xb2,0xf1,0x10,0x02 = subs.w r2, r2, #16
|
38
|
+
0xa2,0xf2,0x10,0x02 = subw r2, r2, #16
|
39
|
+
0xa2,0xf2,0x10,0x02 = subw r2, r2, #16
|
40
|
+
0xa2,0xf2,0x10,0x02 = subw r2, r2, #16
|
41
|
+
0x02,0xeb,0x08,0x01 = add.w r1, r2, r8
|
42
|
+
0x09,0xeb,0x22,0x05 = add.w r5, r9, r2, asr #32
|
43
|
+
0x13,0xeb,0xc1,0x77 = adds.w r7, r3, r1, lsl #31
|
44
|
+
0x13,0xeb,0x56,0x60 = adds.w r0, r3, r6, lsr #25
|
45
|
+
0x08,0xeb,0x31,0x34 = add.w r4, r8, r1, ror #12
|
46
|
+
0xc2,0x44 = add r10, r8
|
47
|
+
0xc2,0x44 = add r10, r8
|
48
|
+
0xaf,0xf6,0xc6,0x4b = subw r11, pc, #3270
|
49
|
+
0x0f,0xf2,0x03,0x02 = adr.w r2, #3
|
50
|
+
0xaf,0xf2,0x3a,0x3b = adr.w r11, #-826
|
51
|
+
0xaf,0xf2,0x00,0x01 = adr.w r1, #-0
|
52
|
+
0x05,0xf4,0x7f,0x22 = and r2, r5, #1044480
|
53
|
+
0x1c,0xf0,0x0f,0x03 = ands r3, r12, #15
|
54
|
+
0x01,0xf0,0xff,0x01 = and r1, r1, #255
|
55
|
+
0x01,0xf0,0xff,0x01 = and r1, r1, #255
|
56
|
+
0x04,0xf0,0xff,0x35 = and r5, r4, #4294967295
|
57
|
+
0x19,0xf0,0xff,0x31 = ands r1, r9, #4294967295
|
58
|
+
0x09,0xea,0x08,0x04 = and.w r4, r9, r8
|
59
|
+
0x04,0xea,0xe8,0x01 = and.w r1, r4, r8, asr #3
|
60
|
+
0x11,0xea,0x47,0x02 = ands.w r2, r1, r7, lsl #1
|
61
|
+
0x15,0xea,0x12,0x54 = ands.w r4, r5, r2, lsr #20
|
62
|
+
0x0c,0xea,0x71,0x49 = and.w r9, r12, r1, ror #17
|
63
|
+
0x4f,0xea,0x23,0x32 = asr.w r2, r3, #12
|
64
|
+
0x5f,0xea,0x23,0x08 = asrs.w r8, r3, #32
|
65
|
+
0x5f,0xea,0x63,0x02 = asrs.w r2, r3, #1
|
66
|
+
0x4f,0xea,0x23,0x12 = asr.w r2, r3, #4
|
67
|
+
0x5f,0xea,0xec,0x32 = asrs.w r2, r12, #15
|
68
|
+
0x4f,0xea,0xe3,0x43 = asr.w r3, r3, #19
|
69
|
+
0x5f,0xea,0xa8,0x08 = asrs.w r8, r8, #2
|
70
|
+
0x5f,0xea,0x67,0x17 = asrs.w r7, r7, #5
|
71
|
+
0x4f,0xea,0x6c,0x5c = asr.w r12, r12, #21
|
72
|
+
0x44,0xfa,0x02,0xf3 = asr.w r3, r4, r2
|
73
|
+
0x41,0xfa,0x02,0xf1 = asr.w r1, r1, r2
|
74
|
+
0x54,0xfa,0x08,0xf3 = asrs.w r3, r4, r8
|
75
|
+
0x08,0xbf = it eq
|
76
|
+
0x13,0xf5,0xce,0xa9 = bmi.w #-183396
|
77
|
+
0x6f,0xf3,0xd3,0x05 = bfc r5, #3, #17
|
78
|
+
0x38,0xbf = it lo
|
79
|
+
0x6f,0xf3,0xd3,0x05 = bfclo r5, #3, #17
|
80
|
+
0x62,0xf3,0xd3,0x05 = bfi r5, r2, #3, #17
|
81
|
+
0x18,0xbf = it ne
|
82
|
+
0x62,0xf3,0xd3,0x05 = bfine r5, r2, #3, #17
|
83
|
+
0x21,0xf0,0x0f,0x0a = bic r10, r1, #15
|
84
|
+
0x22,0xf0,0xff,0x35 = bic r5, r2, #4294967295
|
85
|
+
0x3a,0xf0,0xff,0x3b = bics r11, r10, #4294967295
|
86
|
+
0x23,0xea,0x06,0x0c = bic.w r12, r3, r6
|
87
|
+
0x22,0xea,0x06,0x3b = bic.w r11, r2, r6, lsl #12
|
88
|
+
0x24,0xea,0xd1,0x28 = bic.w r8, r4, r1, lsr #11
|
89
|
+
0x25,0xea,0xd7,0x37 = bic.w r7, r5, r7, lsr #15
|
90
|
+
0x27,0xea,0x29,0x06 = bic.w r6, r7, r9, asr #32
|
91
|
+
0x26,0xea,0x78,0x05 = bic.w r5, r6, r8, ror #1
|
92
|
+
0x21,0xf0,0x0f,0x01 = bic r1, r1, #15
|
93
|
+
0x21,0xea,0x01,0x01 = bic.w r1, r1, r1
|
94
|
+
0x24,0xea,0xc2,0x74 = bic.w r4, r4, r2, lsl #31
|
95
|
+
0x26,0xea,0x13,0x36 = bic.w r6, r6, r3, lsr #12
|
96
|
+
0x27,0xea,0xd4,0x17 = bic.w r7, r7, r4, lsr #7
|
97
|
+
0x28,0xea,0xe5,0x38 = bic.w r8, r8, r5, asr #15
|
98
|
+
0x2c,0xea,0x76,0x7c = bic.w r12, r12, r6, ror #29
|
99
|
+
0x58,0xbf = it pl
|
100
|
+
0xea,0xbe = bkpt #234
|
101
|
+
0xc5,0xf3,0x00,0x8f = bxj r5
|
102
|
+
0x18,0xbf = it ne
|
103
|
+
0xc7,0xf3,0x00,0x8f = bxjne r7
|
104
|
+
0x1f,0xb9 = cbnz r7, #6
|
105
|
+
0x37,0xb9 = cbnz r7, #12
|
106
|
+
0x11,0xee,0x81,0x17 = cdp p7, #1, c1, c1, c1, #4
|
107
|
+
0x11,0xfe,0x81,0x17 = cdp2 p7, #1, c1, c1, c1, #4
|
108
|
+
0xbf,0xf3,0x2f,0x8f = clrex
|
109
|
+
0x18,0xbf = it ne
|
110
|
+
0xb2,0xfa,0x82,0xf1 = clz r1, r2
|
111
|
+
0x08,0xbf = it eq
|
112
|
+
0xb2,0xfa,0x82,0xf1 = clzeq r1, r2
|
113
|
+
0x11,0xf1,0x0f,0x0f = cmn.w r1, #15
|
114
|
+
0x18,0xeb,0x06,0x0f = cmn.w r8, r6
|
115
|
+
0x11,0xeb,0x86,0x2f = cmn.w r1, r6, lsl #10
|
116
|
+
0x11,0xeb,0x96,0x2f = cmn.w r1, r6, lsr #10
|
117
|
+
0x1d,0xeb,0x96,0x2f = cmn.w sp, r6, lsr #10
|
118
|
+
0x11,0xeb,0xa6,0x2f = cmn.w r1, r6, asr #10
|
119
|
+
0x11,0xeb,0xb6,0x2f = cmn.w r1, r6, ror #10
|
120
|
+
0xb5,0xf5,0x7f,0x4f = cmp.w r5, #65280
|
121
|
+
0xb4,0xeb,0x0c,0x0f = cmp.w r4, r12
|
122
|
+
0xb9,0xeb,0x06,0x3f = cmp.w r9, r6, lsl #12
|
123
|
+
0xb3,0xeb,0xd7,0x7f = cmp.w r3, r7, lsr #31
|
124
|
+
0xbd,0xeb,0x56,0x0f = cmp.w sp, r6, lsr #1
|
125
|
+
0xb2,0xeb,0x25,0x6f = cmp.w r2, r5, asr #24
|
126
|
+
0xb1,0xeb,0xf4,0x3f = cmp.w r1, r4, ror #15
|
127
|
+
0x12,0xf1,0x02,0x0f = cmn.w r2, #2
|
128
|
+
0xb9,0xf1,0x01,0x0f = cmp.w r9, #1
|
129
|
+
0x61,0xb6 = cpsie f
|
130
|
+
0x74,0xb6 = cpsid a
|
131
|
+
0xaf,0xf3,0x20,0x84 = cpsie.w f
|
132
|
+
0xaf,0xf3,0x80,0x86 = cpsid.w a
|
133
|
+
0xaf,0xf3,0x43,0x85 = cpsie i, #3
|
134
|
+
0xaf,0xf3,0x43,0x85 = cpsie i, #3
|
135
|
+
0xaf,0xf3,0x29,0x87 = cpsid f, #9
|
136
|
+
0xaf,0xf3,0x29,0x87 = cpsid f, #9
|
137
|
+
0xaf,0xf3,0x00,0x81 = cps #0
|
138
|
+
0xaf,0xf3,0x00,0x81 = cps #0
|
139
|
+
0xaf,0xf3,0xf5,0x80 = dbg #5
|
140
|
+
0xaf,0xf3,0xf0,0x80 = dbg #0
|
141
|
+
0xaf,0xf3,0xff,0x80 = dbg #15
|
142
|
+
0xbf,0xf3,0x5f,0x8f = dmb sy
|
143
|
+
0xbf,0xf3,0x5e,0x8f = dmb st
|
144
|
+
0xbf,0xf3,0x5d,0x8f = dmb #0xd
|
145
|
+
0xbf,0xf3,0x5c,0x8f = dmb #0xc
|
146
|
+
0xbf,0xf3,0x5b,0x8f = dmb ish
|
147
|
+
0xbf,0xf3,0x5a,0x8f = dmb ishst
|
148
|
+
0xbf,0xf3,0x59,0x8f = dmb #0x9
|
149
|
+
0xbf,0xf3,0x58,0x8f = dmb #0x8
|
150
|
+
0xbf,0xf3,0x57,0x8f = dmb nsh
|
151
|
+
0xbf,0xf3,0x56,0x8f = dmb nshst
|
152
|
+
0xbf,0xf3,0x55,0x8f = dmb #0x5
|
153
|
+
0xbf,0xf3,0x54,0x8f = dmb #0x4
|
154
|
+
0xbf,0xf3,0x53,0x8f = dmb osh
|
155
|
+
0xbf,0xf3,0x52,0x8f = dmb oshst
|
156
|
+
0xbf,0xf3,0x51,0x8f = dmb #0x1
|
157
|
+
0xbf,0xf3,0x50,0x8f = dmb #0x0
|
158
|
+
0xbf,0xf3,0x5f,0x8f = dmb sy
|
159
|
+
0xbf,0xf3,0x5e,0x8f = dmb st
|
160
|
+
0xbf,0xf3,0x5b,0x8f = dmb ish
|
161
|
+
0xbf,0xf3,0x5b,0x8f = dmb ish
|
162
|
+
0xbf,0xf3,0x5a,0x8f = dmb ishst
|
163
|
+
0xbf,0xf3,0x5a,0x8f = dmb ishst
|
164
|
+
0xbf,0xf3,0x57,0x8f = dmb nsh
|
165
|
+
0xbf,0xf3,0x57,0x8f = dmb nsh
|
166
|
+
0xbf,0xf3,0x56,0x8f = dmb nshst
|
167
|
+
0xbf,0xf3,0x56,0x8f = dmb nshst
|
168
|
+
0xbf,0xf3,0x53,0x8f = dmb osh
|
169
|
+
0xbf,0xf3,0x52,0x8f = dmb oshst
|
170
|
+
0xbf,0xf3,0x5f,0x8f = dmb sy
|
171
|
+
0xbf,0xf3,0x4f,0x8f = dsb sy
|
172
|
+
0xbf,0xf3,0x4e,0x8f = dsb st
|
173
|
+
0xbf,0xf3,0x4d,0x8f = dsb #0xd
|
174
|
+
0xbf,0xf3,0x4c,0x8f = dsb #0xc
|
175
|
+
0xbf,0xf3,0x4b,0x8f = dsb ish
|
176
|
+
0xbf,0xf3,0x4a,0x8f = dsb ishst
|
177
|
+
0xbf,0xf3,0x49,0x8f = dsb #0x9
|
178
|
+
0xbf,0xf3,0x48,0x8f = dsb #0x8
|
179
|
+
0xbf,0xf3,0x47,0x8f = dsb nsh
|
180
|
+
0xbf,0xf3,0x46,0x8f = dsb nshst
|
181
|
+
0xbf,0xf3,0x45,0x8f = dsb #0x5
|
182
|
+
0xbf,0xf3,0x44,0x8f = dsb #0x4
|
183
|
+
0xbf,0xf3,0x43,0x8f = dsb osh
|
184
|
+
0xbf,0xf3,0x42,0x8f = dsb oshst
|
185
|
+
0xbf,0xf3,0x41,0x8f = dsb #0x1
|
186
|
+
0xbf,0xf3,0x40,0x8f = dsb #0x0
|
187
|
+
0xbf,0xf3,0x4f,0x8f = dsb sy
|
188
|
+
0xbf,0xf3,0x4e,0x8f = dsb st
|
189
|
+
0xbf,0xf3,0x4b,0x8f = dsb ish
|
190
|
+
0xbf,0xf3,0x4b,0x8f = dsb ish
|
191
|
+
0xbf,0xf3,0x4a,0x8f = dsb ishst
|
192
|
+
0xbf,0xf3,0x4a,0x8f = dsb ishst
|
193
|
+
0xbf,0xf3,0x47,0x8f = dsb nsh
|
194
|
+
0xbf,0xf3,0x47,0x8f = dsb nsh
|
195
|
+
0xbf,0xf3,0x46,0x8f = dsb nshst
|
196
|
+
0xbf,0xf3,0x46,0x8f = dsb nshst
|
197
|
+
0xbf,0xf3,0x43,0x8f = dsb osh
|
198
|
+
0xbf,0xf3,0x42,0x8f = dsb oshst
|
199
|
+
0xbf,0xf3,0x4f,0x8f = dsb sy
|
200
|
+
0x85,0xf4,0x70,0x44 = eor r4, r5, #61440
|
201
|
+
0x85,0xea,0x06,0x04 = eor.w r4, r5, r6
|
202
|
+
0x85,0xea,0x46,0x14 = eor.w r4, r5, r6, lsl #5
|
203
|
+
0x85,0xea,0x56,0x14 = eor.w r4, r5, r6, lsr #5
|
204
|
+
0x85,0xea,0x56,0x14 = eor.w r4, r5, r6, lsr #5
|
205
|
+
0x85,0xea,0x66,0x14 = eor.w r4, r5, r6, asr #5
|
206
|
+
0x85,0xea,0x76,0x14 = eor.w r4, r5, r6, ror #5
|
207
|
+
0xbf,0xf3,0x6f,0x8f = isb sy
|
208
|
+
0xbf,0xf3,0x6f,0x8f = isb sy
|
209
|
+
0xbf,0xf3,0x6f,0x8f = isb sy
|
210
|
+
0xbf,0xf3,0x61,0x8f = isb #0x1
|
211
|
+
0x0d,0xbf = iteet eq
|
212
|
+
0x88,0x18 = addeq r0, r1, r2
|
213
|
+
0x00,0xbf = nopne
|
214
|
+
0xf5,0x1b = subne r5, r6, r7
|
215
|
+
0x0d,0xbf = iteet eq
|
216
|
+
0x88,0x18 = addeq r0, r1, r2
|
217
|
+
0x00,0xbf = nopne
|
218
|
+
0xf5,0x1b = subne r5, r6, r7
|
219
|
+
0x91,0xfd,0x01,0x80 = ldc2 p0, c8, [r1, #4]
|
220
|
+
0x92,0xfd,0x00,0x71 = ldc2 p1, c7, [r2]
|
221
|
+
0x13,0xfd,0x38,0x62 = ldc2 p2, c6, [r3, #-224]
|
222
|
+
0x34,0xfd,0x1e,0x53 = ldc2 p3, c5, [r4, #-120]!
|
223
|
+
0xb5,0xfc,0x04,0x44 = ldc2 p4, c4, [r5], #16
|
224
|
+
0x36,0xfc,0x12,0x35 = ldc2 p5, c3, [r6], #-72
|
225
|
+
0xd7,0xfd,0x01,0x26 = ldc2l p6, c2, [r7, #4]
|
226
|
+
0xd8,0xfd,0x00,0x17 = ldc2l p7, c1, [r8]
|
227
|
+
0x59,0xfd,0x38,0x08 = ldc2l p8, c0, [r9, #-224]
|
228
|
+
0x7a,0xfd,0x1e,0x19 = ldc2l p9, c1, [r10, #-120]!
|
229
|
+
0xfb,0xfc,0x04,0x20 = ldc2l p0, c2, [r11], #16
|
230
|
+
0x7c,0xfc,0x12,0x31 = ldc2l p1, c3, [r12], #-72
|
231
|
+
0x90,0xed,0x01,0x4c = ldc p12, c4, [r0, #4]
|
232
|
+
0x91,0xed,0x00,0x5d = ldc p13, c5, [r1]
|
233
|
+
0x12,0xed,0x38,0x6e = ldc p14, c6, [r2, #-224]
|
234
|
+
0x33,0xed,0x1e,0x7f = ldc p15, c7, [r3, #-120]!
|
235
|
+
0xb4,0xec,0x04,0x85 = ldc p5, c8, [r4], #16
|
236
|
+
0x35,0xec,0x12,0x94 = ldc p4, c9, [r5], #-72
|
237
|
+
0xd6,0xed,0x01,0xa3 = ldcl p3, c10, [r6, #4]
|
238
|
+
0xd7,0xed,0x00,0xb2 = ldcl p2, c11, [r7]
|
239
|
+
0x58,0xed,0x38,0xc1 = ldcl p1, c12, [r8, #-224]
|
240
|
+
0x79,0xed,0x1e,0xd0 = ldcl p0, c13, [r9, #-120]!
|
241
|
+
0xfa,0xec,0x04,0xe6 = ldcl p6, c14, [r10], #16
|
242
|
+
0x7b,0xec,0x12,0xf7 = ldcl p7, c15, [r11], #-72
|
243
|
+
0x91,0xfc,0x19,0x82 = ldc2 p2, c8, [r1], {25}
|
244
|
+
0x94,0xe8,0x30,0x03 = ldm.w r4, {r4, r5, r8, r9}
|
245
|
+
0x94,0xe8,0x60,0x00 = ldm.w r4, {r5, r6}
|
246
|
+
0xb5,0xe8,0x08,0x01 = ldm.w r5!, {r3, r8}
|
247
|
+
0x94,0xe8,0x30,0x03 = ldm.w r4, {r4, r5, r8, r9}
|
248
|
+
0x94,0xe8,0x60,0x00 = ldm.w r4, {r5, r6}
|
249
|
+
0xb5,0xe8,0x08,0x01 = ldm.w r5!, {r3, r8}
|
250
|
+
0xb5,0xe8,0x06,0x00 = ldm.w r5!, {r1, r2}
|
251
|
+
0x92,0xe8,0x06,0x00 = ldm.w r2, {r1, r2}
|
252
|
+
0x94,0xe8,0x30,0x03 = ldm.w r4, {r4, r5, r8, r9}
|
253
|
+
0x94,0xe8,0x60,0x00 = ldm.w r4, {r5, r6}
|
254
|
+
0xb5,0xe8,0x08,0x01 = ldm.w r5!, {r3, r8}
|
255
|
+
0x94,0xe8,0x30,0x03 = ldm.w r4, {r4, r5, r8, r9}
|
256
|
+
0x94,0xe8,0x60,0x00 = ldm.w r4, {r5, r6}
|
257
|
+
0xb5,0xe8,0x08,0x01 = ldm.w r5!, {r3, r8}
|
258
|
+
0xb5,0xe8,0x08,0x01 = ldm.w r5!, {r3, r8}
|
259
|
+
0xbd,0xe8,0xf0,0x8f = pop.w {r4, r5, r6, r7, r8, r9, r10, r11, pc}
|
260
|
+
0x14,0xe9,0x30,0x03 = ldmdb r4, {r4, r5, r8, r9}
|
261
|
+
0x14,0xe9,0x60,0x00 = ldmdb r4, {r5, r6}
|
262
|
+
0x35,0xe9,0x08,0x01 = ldmdb r5!, {r3, r8}
|
263
|
+
0x35,0xe9,0x08,0x01 = ldmdb r5!, {r3, r8}
|
264
|
+
0x14,0xe9,0x60,0x00 = ldmdb r4, {r5, r6}
|
265
|
+
0x35,0xe9,0x08,0x01 = ldmdb r5!, {r3, r8}
|
266
|
+
0x55,0xf8,0x04,0x5c = ldr r5, [r5, #-4]
|
267
|
+
0x35,0x6a = ldr r5, [r6, #32]
|
268
|
+
0xd6,0xf8,0x21,0x50 = ldr.w r5, [r6, #33]
|
269
|
+
0xd6,0xf8,0x01,0x51 = ldr.w r5, [r6, #257]
|
270
|
+
0xd7,0xf8,0x01,0xf1 = ldr.w pc, [r7, #257]
|
271
|
+
0x54,0xf8,0xff,0x2f = ldr r2, [r4, #255]!
|
272
|
+
0x5d,0xf8,0x04,0x8f = ldr r8, [sp, #4]!
|
273
|
+
0x5d,0xf8,0x04,0xed = ldr lr, [sp, #-4]!
|
274
|
+
0x54,0xf8,0xff,0x2b = ldr r2, [r4], #255
|
275
|
+
0x5d,0xf8,0x04,0x8b = ldr r8, [sp], #4
|
276
|
+
0x5d,0xf8,0x04,0xe9 = ldr lr, [sp], #-4
|
277
|
+
0x02,0x4f = ldr r7, [pc, #8]
|
278
|
+
0x02,0x4f = ldr r7, [pc, #8]
|
279
|
+
0xdf,0xf8,0x08,0x70 = ldr.w r7, [pc, #8]
|
280
|
+
0xff,0x4c = ldr r4, [pc, #1020]
|
281
|
+
0x5f,0xf8,0xfc,0x33 = ldr.w r3, [pc, #-1020]
|
282
|
+
0xdf,0xf8,0x00,0x64 = ldr.w r6, [pc, #1024]
|
283
|
+
0x5f,0xf8,0x00,0x04 = ldr.w r0, [pc, #-1024]
|
284
|
+
0xdf,0xf8,0xff,0x2f = ldr.w r2, [pc, #4095]
|
285
|
+
0x5f,0xf8,0xff,0x1f = ldr.w r1, [pc, #-4095]
|
286
|
+
0xdf,0xf8,0x84,0x80 = ldr.w r8, [pc, #132]
|
287
|
+
0xdf,0xf8,0x00,0xf1 = ldr.w pc, [pc, #256]
|
288
|
+
0x5f,0xf8,0x90,0xf1 = ldr.w pc, [pc, #-400]
|
289
|
+
0x1f,0xf8,0x00,0x90 = ldrb.w r9, [pc, #-0]
|
290
|
+
0x1f,0xf9,0x00,0xb0 = ldrsb.w r11, [pc, #-0]
|
291
|
+
0x3f,0xf8,0x00,0xa0 = ldrh.w r10, [pc, #-0]
|
292
|
+
0x3f,0xf9,0x00,0x10 = ldrsh.w r1, [pc, #-0]
|
293
|
+
0x5f,0xf8,0x00,0x50 = ldr.w r5, [pc, #-0]
|
294
|
+
0x58,0xf8,0x01,0x10 = ldr.w r1, [r8, r1]
|
295
|
+
0x55,0xf8,0x02,0x40 = ldr.w r4, [r5, r2]
|
296
|
+
0x50,0xf8,0x32,0x60 = ldr.w r6, [r0, r2, lsl #3]
|
297
|
+
0x58,0xf8,0x22,0x80 = ldr.w r8, [r8, r2, lsl #2]
|
298
|
+
0x5d,0xf8,0x12,0x70 = ldr.w r7, [sp, r2, lsl #1]
|
299
|
+
0x5d,0xf8,0x02,0x70 = ldr.w r7, [sp, r2]
|
300
|
+
0x15,0xf8,0x04,0x5c = ldrb r5, [r5, #-4]
|
301
|
+
0x96,0xf8,0x20,0x50 = ldrb.w r5, [r6, #32]
|
302
|
+
0x96,0xf8,0x21,0x50 = ldrb.w r5, [r6, #33]
|
303
|
+
0x96,0xf8,0x01,0x51 = ldrb.w r5, [r6, #257]
|
304
|
+
0x97,0xf8,0x01,0xe1 = ldrb.w lr, [r7, #257]
|
305
|
+
0x18,0xf8,0xff,0x5f = ldrb r5, [r8, #255]!
|
306
|
+
0x15,0xf8,0x04,0x2f = ldrb r2, [r5, #4]!
|
307
|
+
0x14,0xf8,0x04,0x1d = ldrb r1, [r4, #-4]!
|
308
|
+
0x13,0xf8,0xff,0xeb = ldrb lr, [r3], #255
|
309
|
+
0x12,0xf8,0x04,0x9b = ldrb r9, [r2], #4
|
310
|
+
0x1d,0xf8,0x04,0x39 = ldrb r3, [sp], #-4
|
311
|
+
0x18,0xf8,0x01,0x10 = ldrb.w r1, [r8, r1]
|
312
|
+
0x15,0xf8,0x02,0x40 = ldrb.w r4, [r5, r2]
|
313
|
+
0x10,0xf8,0x32,0x60 = ldrb.w r6, [r0, r2, lsl #3]
|
314
|
+
0x18,0xf8,0x22,0x80 = ldrb.w r8, [r8, r2, lsl #2]
|
315
|
+
0x1d,0xf8,0x12,0x70 = ldrb.w r7, [sp, r2, lsl #1]
|
316
|
+
0x1d,0xf8,0x02,0x70 = ldrb.w r7, [sp, r2]
|
317
|
+
0x12,0xf8,0x00,0x1e = ldrbt r1, [r2]
|
318
|
+
0x18,0xf8,0x00,0x1e = ldrbt r1, [r8]
|
319
|
+
0x18,0xf8,0x03,0x1e = ldrbt r1, [r8, #3]
|
320
|
+
0x18,0xf8,0xff,0x1e = ldrbt r1, [r8, #255]
|
321
|
+
0xd6,0xe9,0x06,0x35 = ldrd r3, r5, [r6, #24]
|
322
|
+
0xf6,0xe9,0x06,0x35 = ldrd r3, r5, [r6, #24]!
|
323
|
+
0xf6,0xe8,0x01,0x35 = ldrd r3, r5, [r6], #4
|
324
|
+
0x76,0xe8,0x02,0x35 = ldrd r3, r5, [r6], #-8
|
325
|
+
0xd6,0xe9,0x00,0x35 = ldrd r3, r5, [r6]
|
326
|
+
0xd3,0xe9,0x00,0x81 = ldrd r8, r1, [r3]
|
327
|
+
0x52,0xe9,0x00,0x01 = ldrd r0, r1, [r2, #-0]
|
328
|
+
0x72,0xe9,0x00,0x01 = ldrd r0, r1, [r2, #-0]!
|
329
|
+
0x72,0xe8,0x00,0x01 = ldrd r0, r1, [r2], #-0
|
330
|
+
0x54,0xe8,0x00,0x1f = ldrex r1, [r4]
|
331
|
+
0x54,0xe8,0x00,0x8f = ldrex r8, [r4]
|
332
|
+
0x5d,0xe8,0x20,0x2f = ldrex r2, [sp, #128]
|
333
|
+
0xd7,0xe8,0x4f,0x5f = ldrexb r5, [r7]
|
334
|
+
0xdc,0xe8,0x5f,0x9f = ldrexh r9, [r12]
|
335
|
+
0xd4,0xe8,0x7f,0x93 = ldrexd r9, r3, [r4]
|
336
|
+
0x35,0xf8,0x04,0x5c = ldrh r5, [r5, #-4]
|
337
|
+
0x35,0x8c = ldrh r5, [r6, #32]
|
338
|
+
0xb6,0xf8,0x21,0x50 = ldrh.w r5, [r6, #33]
|
339
|
+
0xb6,0xf8,0x01,0x51 = ldrh.w r5, [r6, #257]
|
340
|
+
0xb7,0xf8,0x01,0xe1 = ldrh.w lr, [r7, #257]
|
341
|
+
0x38,0xf8,0xff,0x5f = ldrh r5, [r8, #255]!
|
342
|
+
0x35,0xf8,0x04,0x2f = ldrh r2, [r5, #4]!
|
343
|
+
0x34,0xf8,0x04,0x1d = ldrh r1, [r4, #-4]!
|
344
|
+
0x33,0xf8,0xff,0xeb = ldrh lr, [r3], #255
|
345
|
+
0x32,0xf8,0x04,0x9b = ldrh r9, [r2], #4
|
346
|
+
0x3d,0xf8,0x04,0x39 = ldrh r3, [sp], #-4
|
347
|
+
0x38,0xf8,0x01,0x10 = ldrh.w r1, [r8, r1]
|
348
|
+
0x35,0xf8,0x02,0x40 = ldrh.w r4, [r5, r2]
|
349
|
+
0x30,0xf8,0x32,0x60 = ldrh.w r6, [r0, r2, lsl #3]
|
350
|
+
0x38,0xf8,0x22,0x80 = ldrh.w r8, [r8, r2, lsl #2]
|
351
|
+
0x3d,0xf8,0x12,0x70 = ldrh.w r7, [sp, r2, lsl #1]
|
352
|
+
0x3d,0xf8,0x02,0x70 = ldrh.w r7, [sp, r2]
|
353
|
+
0x32,0xf8,0x00,0x1e = ldrht r1, [r2]
|
354
|
+
0x38,0xf8,0x00,0x1e = ldrht r1, [r8]
|
355
|
+
0x38,0xf8,0x03,0x1e = ldrht r1, [r8, #3]
|
356
|
+
0x38,0xf8,0xff,0x1e = ldrht r1, [r8, #255]
|
357
|
+
0x15,0xf9,0x04,0x5c = ldrsb r5, [r5, #-4]
|
358
|
+
0x96,0xf9,0x20,0x50 = ldrsb.w r5, [r6, #32]
|
359
|
+
0x96,0xf9,0x21,0x50 = ldrsb.w r5, [r6, #33]
|
360
|
+
0x96,0xf9,0x01,0x51 = ldrsb.w r5, [r6, #257]
|
361
|
+
0x97,0xf9,0x01,0xe1 = ldrsb.w lr, [r7, #257]
|
362
|
+
0x18,0xf9,0x01,0x10 = ldrsb.w r1, [r8, r1]
|
363
|
+
0x15,0xf9,0x02,0x40 = ldrsb.w r4, [r5, r2]
|
364
|
+
0x10,0xf9,0x32,0x60 = ldrsb.w r6, [r0, r2, lsl #3]
|
365
|
+
0x18,0xf9,0x22,0x80 = ldrsb.w r8, [r8, r2, lsl #2]
|
366
|
+
0x1d,0xf9,0x12,0x70 = ldrsb.w r7, [sp, r2, lsl #1]
|
367
|
+
0x1d,0xf9,0x02,0x70 = ldrsb.w r7, [sp, r2]
|
368
|
+
0x18,0xf9,0xff,0x5f = ldrsb r5, [r8, #255]!
|
369
|
+
0x15,0xf9,0x04,0x2f = ldrsb r2, [r5, #4]!
|
370
|
+
0x14,0xf9,0x04,0x1d = ldrsb r1, [r4, #-4]!
|
371
|
+
0x13,0xf9,0xff,0xeb = ldrsb lr, [r3], #255
|
372
|
+
0x12,0xf9,0x04,0x9b = ldrsb r9, [r2], #4
|
373
|
+
0x1d,0xf9,0x04,0x39 = ldrsb r3, [sp], #-4
|
374
|
+
0x12,0xf9,0x00,0x1e = ldrsbt r1, [r2]
|
375
|
+
0x18,0xf9,0x00,0x1e = ldrsbt r1, [r8]
|
376
|
+
0x18,0xf9,0x03,0x1e = ldrsbt r1, [r8, #3]
|
377
|
+
0x18,0xf9,0xff,0x1e = ldrsbt r1, [r8, #255]
|
378
|
+
0x35,0xf9,0x04,0x5c = ldrsh r5, [r5, #-4]
|
379
|
+
0xb6,0xf9,0x20,0x50 = ldrsh.w r5, [r6, #32]
|
380
|
+
0xb6,0xf9,0x21,0x50 = ldrsh.w r5, [r6, #33]
|
381
|
+
0xb6,0xf9,0x01,0x51 = ldrsh.w r5, [r6, #257]
|
382
|
+
0xb7,0xf9,0x01,0xe1 = ldrsh.w lr, [r7, #257]
|
383
|
+
0x38,0xf9,0x01,0x10 = ldrsh.w r1, [r8, r1]
|
384
|
+
0x35,0xf9,0x02,0x40 = ldrsh.w r4, [r5, r2]
|
385
|
+
0x30,0xf9,0x32,0x60 = ldrsh.w r6, [r0, r2, lsl #3]
|
386
|
+
0x38,0xf9,0x22,0x80 = ldrsh.w r8, [r8, r2, lsl #2]
|
387
|
+
0x3d,0xf9,0x12,0x70 = ldrsh.w r7, [sp, r2, lsl #1]
|
388
|
+
0x3d,0xf9,0x02,0x70 = ldrsh.w r7, [sp, r2]
|
389
|
+
0x38,0xf9,0xff,0x5f = ldrsh r5, [r8, #255]!
|
390
|
+
0x35,0xf9,0x04,0x2f = ldrsh r2, [r5, #4]!
|
391
|
+
0x34,0xf9,0x04,0x1d = ldrsh r1, [r4, #-4]!
|
392
|
+
0x33,0xf9,0xff,0xeb = ldrsh lr, [r3], #255
|
393
|
+
0x32,0xf9,0x04,0x9b = ldrsh r9, [r2], #4
|
394
|
+
0x3d,0xf9,0x04,0x39 = ldrsh r3, [sp], #-4
|
395
|
+
0x32,0xf9,0x00,0x1e = ldrsht r1, [r2]
|
396
|
+
0x38,0xf9,0x00,0x1e = ldrsht r1, [r8]
|
397
|
+
0x38,0xf9,0x03,0x1e = ldrsht r1, [r8, #3]
|
398
|
+
0x38,0xf9,0xff,0x1e = ldrsht r1, [r8, #255]
|
399
|
+
0x52,0xf8,0x00,0x1e = ldrt r1, [r2]
|
400
|
+
0x56,0xf8,0x00,0x2e = ldrt r2, [r6]
|
401
|
+
0x57,0xf8,0x03,0x3e = ldrt r3, [r7, #3]
|
402
|
+
0x59,0xf8,0xff,0x4e = ldrt r4, [r9, #255]
|
403
|
+
0x4f,0xea,0x03,0x32 = lsl.w r2, r3, #12
|
404
|
+
0x5f,0xea,0xc3,0x78 = lsls.w r8, r3, #31
|
405
|
+
0x5f,0xea,0x43,0x02 = lsls.w r2, r3, #1
|
406
|
+
0x4f,0xea,0x03,0x12 = lsl.w r2, r3, #4
|
407
|
+
0x5f,0xea,0xcc,0x32 = lsls.w r2, r12, #15
|
408
|
+
0x4f,0xea,0xc3,0x43 = lsl.w r3, r3, #19
|
409
|
+
0x5f,0xea,0x88,0x08 = lsls.w r8, r8, #2
|
410
|
+
0x5f,0xea,0x47,0x17 = lsls.w r7, r7, #5
|
411
|
+
0x4f,0xea,0x4c,0x5c = lsl.w r12, r12, #21
|
412
|
+
0x04,0xfa,0x02,0xf3 = lsl.w r3, r4, r2
|
413
|
+
0x01,0xfa,0x02,0xf1 = lsl.w r1, r1, r2
|
414
|
+
0x14,0xfa,0x08,0xf3 = lsls.w r3, r4, r8
|
415
|
+
0x4f,0xea,0x13,0x32 = lsr.w r2, r3, #12
|
416
|
+
0x5f,0xea,0x13,0x08 = lsrs.w r8, r3, #32
|
417
|
+
0x5f,0xea,0x53,0x02 = lsrs.w r2, r3, #1
|
418
|
+
0x4f,0xea,0x13,0x12 = lsr.w r2, r3, #4
|
419
|
+
0x5f,0xea,0xdc,0x32 = lsrs.w r2, r12, #15
|
420
|
+
0x4f,0xea,0xd3,0x43 = lsr.w r3, r3, #19
|
421
|
+
0x5f,0xea,0x98,0x08 = lsrs.w r8, r8, #2
|
422
|
+
0x5f,0xea,0x57,0x17 = lsrs.w r7, r7, #5
|
423
|
+
0x4f,0xea,0x5c,0x5c = lsr.w r12, r12, #21
|
424
|
+
0x24,0xfa,0x02,0xf3 = lsr.w r3, r4, r2
|
425
|
+
0x21,0xfa,0x02,0xf1 = lsr.w r1, r1, r2
|
426
|
+
0x34,0xfa,0x08,0xf3 = lsrs.w r3, r4, r8
|
427
|
+
0x21,0xee,0x91,0x57 = mcr p7, #1, r5, c1, c1, #4
|
428
|
+
0x21,0xfe,0x91,0x57 = mcr2 p7, #1, r5, c1, c1, #4
|
429
|
+
0x00,0xee,0x15,0x4e = mcr p14, #0, r4, c0, c5, #0
|
430
|
+
0x41,0xfe,0x13,0x24 = mcr2 p4, #2, r2, c1, c3, #0
|
431
|
+
0x44,0xec,0xf1,0x57 = mcrr p7, #15, r5, r4, c1
|
432
|
+
0x44,0xfc,0xf1,0x57 = mcrr2 p7, #15, r5, r4, c1
|
433
|
+
0x02,0xfb,0x03,0x41 = mla r1, r2, r3, r4
|
434
|
+
0x02,0xfb,0x13,0x41 = mls r1, r2, r3, r4
|
435
|
+
0x15,0x21 = movs r1, #21
|
436
|
+
0x5f,0xf0,0x15,0x01 = movs.w r1, #21
|
437
|
+
0x5f,0xf0,0x15,0x08 = movs.w r8, #21
|
438
|
+
0x4f,0xf6,0xff,0x70 = movw r0, #65535
|
439
|
+
0x4a,0xf6,0x01,0x31 = movw r1, #43777
|
440
|
+
0x4a,0xf6,0x10,0x31 = movw r1, #43792
|
441
|
+
0x4f,0xf0,0x7f,0x70 = mov.w r0, #66846720
|
442
|
+
0x4f,0xf0,0x7f,0x70 = mov.w r0, #66846720
|
443
|
+
0x5f,0xf0,0x7f,0x70 = movs.w r0, #66846720
|
444
|
+
0x06,0xbf = itte eq
|
445
|
+
0x5f,0xf0,0x0c,0x01 = movseq.w r1, #12
|
446
|
+
0x0c,0x21 = moveq r1, #12
|
447
|
+
0x4f,0xf0,0x0c,0x01 = movne.w r1, #12
|
448
|
+
0x4f,0xf4,0xe1,0x76 = mov.w r6, #450
|
449
|
+
0x38,0xbf = it lo
|
450
|
+
0x4f,0xf0,0xff,0x31 = movlo.w r1, #-1
|
451
|
+
0x6f,0xf0,0x02,0x03 = mvn r3, #2
|
452
|
+
0x4a,0xf6,0xcd,0x3b = movw r11, #43981
|
453
|
+
0x01,0x20 = movs r0, #1
|
454
|
+
0x18,0xbf = it ne
|
455
|
+
0x0f,0x23 = movne r3, #15
|
456
|
+
0x04,0xbf = itt eq
|
457
|
+
0xff,0x20 = moveq r0, #255
|
458
|
+
0x40,0xf2,0x00,0x11 = movweq r1, #256
|
459
|
+
0x4f,0xea,0x02,0x46 = lsl.w r6, r2, #16
|
460
|
+
0x4f,0xea,0x12,0x46 = lsr.w r6, r2, #16
|
461
|
+
0x16,0x10 = asrs r6, r2, #32
|
462
|
+
0x5f,0xea,0x72,0x16 = rors.w r6, r2, #5
|
463
|
+
0xac,0x40 = lsls r4, r5
|
464
|
+
0xec,0x40 = lsrs r4, r5
|
465
|
+
0x2c,0x41 = asrs r4, r5
|
466
|
+
0xec,0x41 = rors r4, r5
|
467
|
+
0x04,0xfa,0x05,0xf4 = lsl.w r4, r4, r5
|
468
|
+
0x74,0xfa,0x08,0xf4 = rors.w r4, r4, r8
|
469
|
+
0x35,0xfa,0x06,0xf4 = lsrs.w r4, r5, r6
|
470
|
+
0x01,0xbf = itttt eq
|
471
|
+
0xac,0x40 = lsleq r4, r5
|
472
|
+
0xec,0x40 = lsreq r4, r5
|
473
|
+
0x2c,0x41 = asreq r4, r5
|
474
|
+
0xec,0x41 = roreq r4, r5
|
475
|
+
0x4f,0xea,0x34,0x04 = rrx r4, r4
|
476
|
+
0xc0,0xf2,0x07,0x03 = movt r3, #7
|
477
|
+
0xcf,0xf6,0xff,0x76 = movt r6, #65535
|
478
|
+
0x08,0xbf = it eq
|
479
|
+
0xc0,0xf6,0xf0,0x74 = movteq r4, #4080
|
480
|
+
0x11,0xee,0x92,0x1e = mrc p14, #0, r1, c1, c2, #4
|
481
|
+
0xff,0xee,0xd6,0xff = mrc p15, #7, apsr_nzcv, c15, c6, #6
|
482
|
+
0x32,0xee,0x12,0x19 = mrc p9, #1, r1, c2, c2, #0
|
483
|
+
0x73,0xfe,0x14,0x3c = mrc2 p12, #3, r3, c3, c4, #0
|
484
|
+
0x11,0xfe,0x92,0x1e = mrc2 p14, #0, r1, c1, c2, #4
|
485
|
+
0xff,0xfe,0x30,0xf8 = mrc2 p8, #7, apsr_nzcv, c15, c0, #1
|
486
|
+
0x54,0xec,0x11,0x57 = mrrc p7, #1, r5, r4, c1
|
487
|
+
0x54,0xfc,0x11,0x57 = mrrc2 p7, #1, r5, r4, c1
|
488
|
+
0xef,0xf3,0x00,0x88 = mrs r8, apsr
|
489
|
+
0xef,0xf3,0x00,0x88 = mrs r8, apsr
|
490
|
+
0xff,0xf3,0x00,0x88 = mrs r8, spsr
|
491
|
+
0x81,0xf3,0x00,0x88 = msr APSR_nzcvq, r1
|
492
|
+
0x82,0xf3,0x00,0x84 = msr APSR_g, r2
|
493
|
+
0x83,0xf3,0x00,0x88 = msr APSR_nzcvq, r3
|
494
|
+
0x84,0xf3,0x00,0x88 = msr APSR_nzcvq, r4
|
495
|
+
0x85,0xf3,0x00,0x8c = msr APSR_nzcvqg, r5
|
496
|
+
0x86,0xf3,0x00,0x89 = msr CPSR_fc, r6
|
497
|
+
0x87,0xf3,0x00,0x81 = msr CPSR_c, r7
|
498
|
+
0x88,0xf3,0x00,0x82 = msr CPSR_x, r8
|
499
|
+
0x89,0xf3,0x00,0x89 = msr CPSR_fc, r9
|
500
|
+
0x8b,0xf3,0x00,0x89 = msr CPSR_fc, r11
|
501
|
+
0x8c,0xf3,0x00,0x8e = msr CPSR_fsx, r12
|
502
|
+
0x90,0xf3,0x00,0x89 = msr SPSR_fc, r0
|
503
|
+
0x95,0xf3,0x00,0x8f = msr SPSR_fsxc, r5
|
504
|
+
0x88,0xf3,0x00,0x8f = msr CPSR_fsxc, r8
|
505
|
+
0x83,0xf3,0x00,0x89 = msr CPSR_fc, r3
|
506
|
+
0x63,0x43 = muls r3, r4, r3
|
507
|
+
0x04,0xfb,0x03,0xf3 = mul r3, r4, r3
|
508
|
+
0x04,0xfb,0x06,0xf3 = mul r3, r4, r6
|
509
|
+
0x08,0xbf = it eq
|
510
|
+
0x04,0xfb,0x05,0xf3 = muleq r3, r4, r5
|
511
|
+
0xd8,0xbf = it le
|
512
|
+
0x04,0xfb,0x08,0xf4 = mulle r4, r4, r8
|
513
|
+
0x06,0xfb,0x05,0xf5 = mul r5, r6, r5
|
514
|
+
0x7f,0xf0,0x15,0x08 = mvns r8, #21
|
515
|
+
0x6f,0xf0,0x7f,0x70 = mvn r0, #66846720
|
516
|
+
0x7f,0xf0,0x7f,0x70 = mvns r0, #66846720
|
517
|
+
0x06,0xbf = itte eq
|
518
|
+
0x7f,0xf0,0x0c,0x01 = mvnseq r1, #12
|
519
|
+
0x6f,0xf0,0x0c,0x01 = mvneq r1, #12
|
520
|
+
0x6f,0xf0,0x0c,0x01 = mvnne r1, #12
|
521
|
+
0x6f,0xea,0x03,0x02 = mvn.w r2, r3
|
522
|
+
0xda,0x43 = mvns r2, r3
|
523
|
+
0x6f,0xea,0xc6,0x45 = mvn.w r5, r6, lsl #19
|
524
|
+
0x6f,0xea,0x56,0x25 = mvn.w r5, r6, lsr #9
|
525
|
+
0x6f,0xea,0x26,0x15 = mvn.w r5, r6, asr #4
|
526
|
+
0x6f,0xea,0xb6,0x15 = mvn.w r5, r6, ror #6
|
527
|
+
0x6f,0xea,0x36,0x05 = mvn.w r5, r6, rrx
|
528
|
+
0x08,0xbf = it eq
|
529
|
+
0xda,0x43 = mvneq r2, r3
|
530
|
+
0xc2,0xf1,0x00,0x05 = rsb.w r5, r2, #0
|
531
|
+
0xc8,0xf1,0x00,0x05 = rsb.w r5, r8, #0
|
532
|
+
0xaf,0xf3,0x00,0x80 = nop.w
|
533
|
+
0x65,0xf4,0x70,0x44 = orn r4, r5, #61440
|
534
|
+
0x65,0xea,0x06,0x04 = orn r4, r5, r6
|
535
|
+
0x75,0xea,0x06,0x04 = orns r4, r5, r6
|
536
|
+
0x65,0xea,0x46,0x14 = orn r4, r5, r6, lsl #5
|
537
|
+
0x75,0xea,0x56,0x14 = orns r4, r5, r6, lsr #5
|
538
|
+
0x65,0xea,0x56,0x14 = orn r4, r5, r6, lsr #5
|
539
|
+
0x75,0xea,0x66,0x14 = orns r4, r5, r6, asr #5
|
540
|
+
0x65,0xea,0x76,0x14 = orn r4, r5, r6, ror #5
|
541
|
+
0x45,0xf4,0x70,0x44 = orr r4, r5, #61440
|
542
|
+
0x45,0xea,0x06,0x04 = orr.w r4, r5, r6
|
543
|
+
0x45,0xea,0x46,0x14 = orr.w r4, r5, r6, lsl #5
|
544
|
+
0x55,0xea,0x56,0x14 = orrs.w r4, r5, r6, lsr #5
|
545
|
+
0x45,0xea,0x56,0x14 = orr.w r4, r5, r6, lsr #5
|
546
|
+
0x55,0xea,0x66,0x14 = orrs.w r4, r5, r6, asr #5
|
547
|
+
0x45,0xea,0x76,0x14 = orr.w r4, r5, r6, ror #5
|
548
|
+
0xc2,0xea,0x03,0x02 = pkhbt r2, r2, r3
|
549
|
+
0xc2,0xea,0xc3,0x72 = pkhbt r2, r2, r3, lsl #31
|
550
|
+
0xc2,0xea,0x03,0x02 = pkhbt r2, r2, r3
|
551
|
+
0xc2,0xea,0xc3,0x32 = pkhbt r2, r2, r3, lsl #15
|
552
|
+
0xc2,0xea,0x03,0x02 = pkhbt r2, r2, r3
|
553
|
+
0xc2,0xea,0xe3,0x72 = pkhtb r2, r2, r3, asr #31
|
554
|
+
0xc2,0xea,0xe3,0x32 = pkhtb r2, r2, r3, asr #15
|
555
|
+
0x15,0xf8,0x04,0xfc = pld [r5, #-4]
|
556
|
+
0x96,0xf8,0x20,0xf0 = pld [r6, #32]
|
557
|
+
0x96,0xf8,0x21,0xf0 = pld [r6, #33]
|
558
|
+
0x96,0xf8,0x01,0xf1 = pld [r6, #257]
|
559
|
+
0x97,0xf8,0x01,0xf1 = pld [r7, #257]
|
560
|
+
0x91,0xf8,0x00,0xf0 = pld [r1]
|
561
|
+
0x11,0xf8,0x00,0xfc = pld [r1, #-0]
|
562
|
+
0x1f,0xf8,0xff,0xff = pld [pc, #-4095]
|
563
|
+
0x18,0xf8,0x01,0xf0 = pld [r8, r1]
|
564
|
+
0x15,0xf8,0x02,0xf0 = pld [r5, r2]
|
565
|
+
0x10,0xf8,0x32,0xf0 = pld [r0, r2, lsl #3]
|
566
|
+
0x18,0xf8,0x22,0xf0 = pld [r8, r2, lsl #2]
|
567
|
+
0x1d,0xf8,0x12,0xf0 = pld [sp, r2, lsl #1]
|
568
|
+
0x1d,0xf8,0x02,0xf0 = pld [sp, r2]
|
569
|
+
0x15,0xf9,0x04,0xfc = pli [r5, #-4]
|
570
|
+
0x96,0xf9,0x20,0xf0 = pli [r6, #32]
|
571
|
+
0x96,0xf9,0x21,0xf0 = pli [r6, #33]
|
572
|
+
0x96,0xf9,0x01,0xf1 = pli [r6, #257]
|
573
|
+
0x97,0xf9,0x01,0xf1 = pli [r7, #257]
|
574
|
+
0x9f,0xf9,0xff,0xff = pli [pc, #4095]
|
575
|
+
0x1f,0xf9,0xff,0xff = pli [pc, #-4095]
|
576
|
+
0x18,0xf9,0x01,0xf0 = pli [r8, r1]
|
577
|
+
0x15,0xf9,0x02,0xf0 = pli [r5, r2]
|
578
|
+
0x10,0xf9,0x32,0xf0 = pli [r0, r2, lsl #3]
|
579
|
+
0x18,0xf9,0x22,0xf0 = pli [r8, r2, lsl #2]
|
580
|
+
0x1d,0xf9,0x12,0xf0 = pli [sp, r2, lsl #1]
|
581
|
+
0x1d,0xf9,0x02,0xf0 = pli [sp, r2]
|
582
|
+
0xbd,0xe8,0x04,0x02 = pop.w {r2, r9}
|
583
|
+
0x2d,0xe9,0x04,0x02 = push.w {r2, r9}
|
584
|
+
0x83,0xfa,0x82,0xf1 = qadd r1, r2, r3
|
585
|
+
0x92,0xfa,0x13,0xf1 = qadd16 r1, r2, r3
|
586
|
+
0x82,0xfa,0x13,0xf1 = qadd8 r1, r2, r3
|
587
|
+
0xc6,0xbf = itte gt
|
588
|
+
0x83,0xfa,0x82,0xf1 = qaddgt r1, r2, r3
|
589
|
+
0x92,0xfa,0x13,0xf1 = qadd16gt r1, r2, r3
|
590
|
+
0x82,0xfa,0x13,0xf1 = qadd8le r1, r2, r3
|
591
|
+
0x88,0xfa,0x97,0xf6 = qdadd r6, r7, r8
|
592
|
+
0x88,0xfa,0xb7,0xf6 = qdsub r6, r7, r8
|
593
|
+
0x84,0xbf = itt hi
|
594
|
+
0x88,0xfa,0x97,0xf6 = qdaddhi r6, r7, r8
|
595
|
+
0x88,0xfa,0xb7,0xf6 = qdsubhi r6, r7, r8
|
596
|
+
0xec,0xfa,0x10,0xf9 = qsax r9, r12, r0
|
597
|
+
0x08,0xbf = it eq
|
598
|
+
0xec,0xfa,0x10,0xf9 = qsaxeq r9, r12, r0
|
599
|
+
0x83,0xfa,0xa2,0xf1 = qsub r1, r2, r3
|
600
|
+
0xd2,0xfa,0x13,0xf1 = qsub16 r1, r2, r3
|
601
|
+
0xc2,0xfa,0x13,0xf1 = qsub8 r1, r2, r3
|
602
|
+
0xd6,0xbf = itet le
|
603
|
+
0x83,0xfa,0xa2,0xf1 = qsuble r1, r2, r3
|
604
|
+
0xd2,0xfa,0x13,0xf1 = qsub16gt r1, r2, r3
|
605
|
+
0xc2,0xfa,0x13,0xf1 = qsub8le r1, r2, r3
|
606
|
+
0x92,0xfa,0xa2,0xf1 = rbit r1, r2
|
607
|
+
0x18,0xbf = it ne
|
608
|
+
0x92,0xfa,0xa2,0xf1 = rbitne r1, r2
|
609
|
+
0x92,0xfa,0x82,0xf1 = rev.w r1, r2
|
610
|
+
0x98,0xfa,0x88,0xf2 = rev.w r2, r8
|
611
|
+
0x1c,0xbf = itt ne
|
612
|
+
0x11,0xba = revne r1, r2
|
613
|
+
0x98,0xfa,0x88,0xf1 = revne.w r1, r8
|
614
|
+
0x92,0xfa,0x92,0xf1 = rev16.w r1, r2
|
615
|
+
0x98,0xfa,0x98,0xf2 = rev16.w r2, r8
|
616
|
+
0x1c,0xbf = itt ne
|
617
|
+
0x51,0xba = rev16ne r1, r2
|
618
|
+
0x98,0xfa,0x98,0xf1 = rev16ne.w r1, r8
|
619
|
+
0x92,0xfa,0xb2,0xf1 = revsh.w r1, r2
|
620
|
+
0x98,0xfa,0xb8,0xf2 = revsh.w r2, r8
|
621
|
+
0x1c,0xbf = itt ne
|
622
|
+
0xd1,0xba = revshne r1, r2
|
623
|
+
0x98,0xfa,0xb8,0xf1 = revshne.w r1, r8
|
624
|
+
0x4f,0xea,0x33,0x32 = ror.w r2, r3, #12
|
625
|
+
0x5f,0xea,0xf3,0x78 = rors.w r8, r3, #31
|
626
|
+
0x5f,0xea,0x73,0x02 = rors.w r2, r3, #1
|
627
|
+
0x4f,0xea,0x33,0x12 = ror.w r2, r3, #4
|
628
|
+
0x5f,0xea,0xfc,0x32 = rors.w r2, r12, #15
|
629
|
+
0x4f,0xea,0xf3,0x43 = ror.w r3, r3, #19
|
630
|
+
0x5f,0xea,0xb8,0x08 = rors.w r8, r8, #2
|
631
|
+
0x5f,0xea,0x77,0x17 = rors.w r7, r7, #5
|
632
|
+
0x4f,0xea,0x7c,0x5c = ror.w r12, r12, #21
|
633
|
+
0x64,0xfa,0x02,0xf3 = ror.w r3, r4, r2
|
634
|
+
0x61,0xfa,0x02,0xf1 = ror.w r1, r1, r2
|
635
|
+
0x74,0xfa,0x08,0xf3 = rors.w r3, r4, r8
|
636
|
+
0x4f,0xea,0x32,0x01 = rrx r1, r2
|
637
|
+
0x5f,0xea,0x32,0x01 = rrxs r1, r2
|
638
|
+
0xb4,0xbf = ite lt
|
639
|
+
0x4f,0xea,0x3c,0x09 = rrxlt r9, r12
|
640
|
+
0x5f,0xea,0x33,0x08 = rrxsge r8, r3
|
641
|
+
0xc5,0xf5,0x7f,0x22 = rsb.w r2, r5, #1044480
|
642
|
+
0xdc,0xf1,0x0f,0x03 = rsbs.w r3, r12, #15
|
643
|
+
0xc1,0xf1,0xff,0x01 = rsb.w r1, r1, #255
|
644
|
+
0xc1,0xf1,0xff,0x01 = rsb.w r1, r1, #255
|
645
|
+
0xcb,0xf1,0x00,0x0b = rsb.w r11, r11, #0
|
646
|
+
0xc9,0xf1,0x00,0x09 = rsb.w r9, r9, #0
|
647
|
+
0x4b,0x42 = rsbs r3, r1, #0
|
648
|
+
0xc1,0xf1,0x00,0x03 = rsb.w r3, r1, #0
|
649
|
+
0xc4,0xeb,0x08,0x04 = rsb r4, r4, r8
|
650
|
+
0xc9,0xeb,0x08,0x04 = rsb r4, r9, r8
|
651
|
+
0xc4,0xeb,0xe8,0x01 = rsb r1, r4, r8, asr #3
|
652
|
+
0xd1,0xeb,0x47,0x02 = rsbs r2, r1, r7, lsl #1
|
653
|
+
0x94,0xfa,0x08,0xf3 = sadd16 r3, r4, r8
|
654
|
+
0x18,0xbf = it ne
|
655
|
+
0x94,0xfa,0x08,0xf3 = sadd16ne r3, r4, r8
|
656
|
+
0x84,0xfa,0x08,0xf3 = sadd8 r3, r4, r8
|
657
|
+
0x18,0xbf = it ne
|
658
|
+
0x84,0xfa,0x08,0xf3 = sadd8ne r3, r4, r8
|
659
|
+
0xa2,0xfa,0x07,0xf9 = sasx r9, r2, r7
|
660
|
+
0x18,0xbf = it ne
|
661
|
+
0xa5,0xfa,0x06,0xf2 = sasxne r2, r5, r6
|
662
|
+
0xa2,0xfa,0x07,0xf9 = sasx r9, r2, r7
|
663
|
+
0x18,0xbf = it ne
|
664
|
+
0xa5,0xfa,0x06,0xf2 = sasxne r2, r5, r6
|
665
|
+
0x61,0xf1,0x04,0x00 = sbc r0, r1, #4
|
666
|
+
0x71,0xf1,0x00,0x00 = sbcs r0, r1, #0
|
667
|
+
0x62,0xf1,0xff,0x01 = sbc r1, r2, #255
|
668
|
+
0x67,0xf1,0x55,0x13 = sbc r3, r7, #5570645
|
669
|
+
0x6c,0xf1,0xaa,0x28 = sbc r8, r12, #2852170240
|
670
|
+
0x67,0xf1,0xa5,0x39 = sbc r9, r7, #2779096485
|
671
|
+
0x63,0xf1,0x07,0x45 = sbc r5, r3, #2264924160
|
672
|
+
0x62,0xf1,0xff,0x44 = sbc r4, r2, #2139095040
|
673
|
+
0x62,0xf5,0xd0,0x64 = sbc r4, r2, #1664
|
674
|
+
0x65,0xeb,0x06,0x04 = sbc.w r4, r5, r6
|
675
|
+
0x75,0xeb,0x06,0x04 = sbcs.w r4, r5, r6
|
676
|
+
0x61,0xeb,0x03,0x09 = sbc.w r9, r1, r3
|
677
|
+
0x71,0xeb,0x03,0x09 = sbcs.w r9, r1, r3
|
678
|
+
0x61,0xeb,0x33,0x10 = sbc.w r0, r1, r3, ror #4
|
679
|
+
0x71,0xeb,0xc3,0x10 = sbcs.w r0, r1, r3, lsl #7
|
680
|
+
0x61,0xeb,0xd3,0x70 = sbc.w r0, r1, r3, lsr #31
|
681
|
+
0x71,0xeb,0x23,0x00 = sbcs.w r0, r1, r3, asr #32
|
682
|
+
0x45,0xf3,0x00,0x44 = sbfx r4, r5, #16, #1
|
683
|
+
0xc8,0xbf = it gt
|
684
|
+
0x45,0xf3,0x0f,0x44 = sbfxgt r4, r5, #16, #16
|
685
|
+
0xa9,0xfa,0x82,0xf5 = sel r5, r9, r2
|
686
|
+
0xd8,0xbf = it le
|
687
|
+
0xa9,0xfa,0x82,0xf5 = selle r5, r9, r2
|
688
|
+
0xaf,0xf3,0x04,0x80 = sev.w
|
689
|
+
0x08,0xbf = it eq
|
690
|
+
0xaf,0xf3,0x04,0x80 = seveq.w
|
691
|
+
0x92,0xfa,0x03,0xf1 = sadd16 r1, r2, r3
|
692
|
+
0x82,0xfa,0x03,0xf1 = sadd8 r1, r2, r3
|
693
|
+
0xcc,0xbf = ite gt
|
694
|
+
0x92,0xfa,0x03,0xf1 = sadd16gt r1, r2, r3
|
695
|
+
0x82,0xfa,0x03,0xf1 = sadd8le r1, r2, r3
|
696
|
+
0xa8,0xfa,0x22,0xf4 = shasx r4, r8, r2
|
697
|
+
0xc8,0xbf = it gt
|
698
|
+
0xa8,0xfa,0x22,0xf4 = shasxgt r4, r8, r2
|
699
|
+
0xa8,0xfa,0x22,0xf4 = shasx r4, r8, r2
|
700
|
+
0xc8,0xbf = it gt
|
701
|
+
0xa8,0xfa,0x22,0xf4 = shasxgt r4, r8, r2
|
702
|
+
0xe8,0xfa,0x22,0xf4 = shsax r4, r8, r2
|
703
|
+
0xc8,0xbf = it gt
|
704
|
+
0xe8,0xfa,0x22,0xf4 = shsaxgt r4, r8, r2
|
705
|
+
0xe8,0xfa,0x22,0xf4 = shsax r4, r8, r2
|
706
|
+
0xc8,0xbf = it gt
|
707
|
+
0xe8,0xfa,0x22,0xf4 = shsaxgt r4, r8, r2
|
708
|
+
0xd8,0xfa,0x22,0xf4 = shsub16 r4, r8, r2
|
709
|
+
0xc8,0xfa,0x22,0xf4 = shsub8 r4, r8, r2
|
710
|
+
0xc4,0xbf = itt gt
|
711
|
+
0xd8,0xfa,0x22,0xf4 = shsub16gt r4, r8, r2
|
712
|
+
0xc8,0xfa,0x22,0xf4 = shsub8gt r4, r8, r2
|
713
|
+
0x11,0xfb,0x09,0x03 = smlabb r3, r1, r9, r0
|
714
|
+
0x16,0xfb,0x14,0x15 = smlabt r5, r6, r4, r1
|
715
|
+
0x12,0xfb,0x23,0x24 = smlatb r4, r2, r3, r2
|
716
|
+
0x13,0xfb,0x38,0x48 = smlatt r8, r3, r8, r4
|
717
|
+
0xcb,0xbf = itete gt
|
718
|
+
0x11,0xfb,0x09,0x03 = smlabbgt r3, r1, r9, r0
|
719
|
+
0x16,0xfb,0x14,0x15 = smlabtle r5, r6, r4, r1
|
720
|
+
0x12,0xfb,0x23,0x24 = smlatbgt r4, r2, r3, r2
|
721
|
+
0x13,0xfb,0x38,0x48 = smlattle r8, r3, r8, r4
|
722
|
+
0x23,0xfb,0x05,0x82 = smlad r2, r3, r5, r8
|
723
|
+
0x23,0xfb,0x15,0x82 = smladx r2, r3, r5, r8
|
724
|
+
0x84,0xbf = itt hi
|
725
|
+
0x23,0xfb,0x05,0x82 = smladhi r2, r3, r5, r8
|
726
|
+
0x23,0xfb,0x15,0x82 = smladxhi r2, r3, r5, r8
|
727
|
+
0xc5,0xfb,0x08,0x23 = smlal r2, r3, r5, r8
|
728
|
+
0x08,0xbf = it eq
|
729
|
+
0xc5,0xfb,0x08,0x23 = smlaleq r2, r3, r5, r8
|
730
|
+
0xc9,0xfb,0x80,0x31 = smlalbb r3, r1, r9, r0
|
731
|
+
0xc4,0xfb,0x91,0x56 = smlalbt r5, r6, r4, r1
|
732
|
+
0xc3,0xfb,0xa2,0x42 = smlaltb r4, r2, r3, r2
|
733
|
+
0xc8,0xfb,0xb4,0x83 = smlaltt r8, r3, r8, r4
|
734
|
+
0xad,0xbf = iteet ge
|
735
|
+
0xc9,0xfb,0x80,0x31 = smlalbbge r3, r1, r9, r0
|
736
|
+
0xc4,0xfb,0x91,0x56 = smlalbtlt r5, r6, r4, r1
|
737
|
+
0xc3,0xfb,0xa2,0x42 = smlaltblt r4, r2, r3, r2
|
738
|
+
0xc8,0xfb,0xb4,0x83 = smlalttge r8, r3, r8, r4
|
739
|
+
0xc5,0xfb,0xc8,0x23 = smlald r2, r3, r5, r8
|
740
|
+
0xc5,0xfb,0xd8,0x23 = smlaldx r2, r3, r5, r8
|
741
|
+
0x0c,0xbf = ite eq
|
742
|
+
0xc5,0xfb,0xc8,0x23 = smlaldeq r2, r3, r5, r8
|
743
|
+
0xc5,0xfb,0xd8,0x23 = smlaldxne r2, r3, r5, r8
|
744
|
+
0x33,0xfb,0x0a,0x82 = smlawb r2, r3, r10, r8
|
745
|
+
0x33,0xfb,0x15,0x98 = smlawt r8, r3, r5, r9
|
746
|
+
0x0c,0xbf = ite eq
|
747
|
+
0x37,0xfb,0x05,0x82 = smlawbeq r2, r7, r5, r8
|
748
|
+
0x33,0xfb,0x10,0x81 = smlawtne r1, r3, r0, r8
|
749
|
+
0x43,0xfb,0x05,0x82 = smlsd r2, r3, r5, r8
|
750
|
+
0x43,0xfb,0x15,0x82 = smlsdx r2, r3, r5, r8
|
751
|
+
0xd4,0xbf = ite le
|
752
|
+
0x43,0xfb,0x05,0x82 = smlsdle r2, r3, r5, r8
|
753
|
+
0x43,0xfb,0x15,0x82 = smlsdxgt r2, r3, r5, r8
|
754
|
+
0xd5,0xfb,0xc1,0x29 = smlsld r2, r9, r5, r1
|
755
|
+
0xd2,0xfb,0xd8,0x4b = smlsldx r4, r11, r2, r8
|
756
|
+
0xac,0xbf = ite ge
|
757
|
+
0xd5,0xfb,0xc6,0x82 = smlsldge r8, r2, r5, r6
|
758
|
+
0xd3,0xfb,0xd8,0x10 = smlsldxlt r1, r0, r3, r8
|
759
|
+
0x52,0xfb,0x03,0x41 = smmla r1, r2, r3, r4
|
760
|
+
0x53,0xfb,0x12,0x14 = smmlar r4, r3, r2, r1
|
761
|
+
0x34,0xbf = ite lo
|
762
|
+
0x52,0xfb,0x03,0x41 = smmlalo r1, r2, r3, r4
|
763
|
+
0x53,0xfb,0x12,0x14 = smmlarhs r4, r3, r2, r1
|
764
|
+
0x62,0xfb,0x03,0x41 = smmls r1, r2, r3, r4
|
765
|
+
0x63,0xfb,0x12,0x14 = smmlsr r4, r3, r2, r1
|
766
|
+
0x34,0xbf = ite lo
|
767
|
+
0x62,0xfb,0x03,0x41 = smmlslo r1, r2, r3, r4
|
768
|
+
0x63,0xfb,0x12,0x14 = smmlsrhs r4, r3, r2, r1
|
769
|
+
0x53,0xfb,0x04,0xf2 = smmul r2, r3, r4
|
770
|
+
0x52,0xfb,0x11,0xf3 = smmulr r3, r2, r1
|
771
|
+
0x34,0xbf = ite lo
|
772
|
+
0x53,0xfb,0x04,0xf2 = smmullo r2, r3, r4
|
773
|
+
0x52,0xfb,0x11,0xf3 = smmulrhs r3, r2, r1
|
774
|
+
0x23,0xfb,0x04,0xf2 = smuad r2, r3, r4
|
775
|
+
0x22,0xfb,0x11,0xf3 = smuadx r3, r2, r1
|
776
|
+
0xb4,0xbf = ite lt
|
777
|
+
0x23,0xfb,0x04,0xf2 = smuadlt r2, r3, r4
|
778
|
+
0x22,0xfb,0x11,0xf3 = smuadxge r3, r2, r1
|
779
|
+
0x19,0xfb,0x00,0xf3 = smulbb r3, r9, r0
|
780
|
+
0x14,0xfb,0x11,0xf5 = smulbt r5, r4, r1
|
781
|
+
0x12,0xfb,0x22,0xf4 = smultb r4, r2, r2
|
782
|
+
0x13,0xfb,0x34,0xf8 = smultt r8, r3, r4
|
783
|
+
0xab,0xbf = itete ge
|
784
|
+
0x19,0xfb,0x00,0xf1 = smulbbge r1, r9, r0
|
785
|
+
0x16,0xfb,0x14,0xf5 = smulbtlt r5, r6, r4
|
786
|
+
0x13,0xfb,0x22,0xf2 = smultbge r2, r3, r2
|
787
|
+
0x13,0xfb,0x34,0xf8 = smulttlt r8, r3, r4
|
788
|
+
0x80,0xfb,0x01,0x39 = smull r3, r9, r0, r1
|
789
|
+
0x08,0xbf = it eq
|
790
|
+
0x84,0xfb,0x05,0x83 = smulleq r8, r3, r4, r5
|
791
|
+
0x39,0xfb,0x00,0xf3 = smulwb r3, r9, r0
|
792
|
+
0x39,0xfb,0x12,0xf3 = smulwt r3, r9, r2
|
793
|
+
0xcc,0xbf = ite gt
|
794
|
+
0x39,0xfb,0x00,0xf3 = smulwbgt r3, r9, r0
|
795
|
+
0x39,0xfb,0x12,0xf3 = smulwtle r3, r9, r2
|
796
|
+
0x40,0xfb,0x01,0xf3 = smusd r3, r0, r1
|
797
|
+
0x49,0xfb,0x12,0xf3 = smusdx r3, r9, r2
|
798
|
+
0x0c,0xbf = ite eq
|
799
|
+
0x43,0xfb,0x02,0xf8 = smusdeq r8, r3, r2
|
800
|
+
0x44,0xfb,0x13,0xf7 = smusdxne r7, r4, r3
|
801
|
+
0x0d,0xe8,0x01,0xc0 = srsdb sp, #1
|
802
|
+
0x8d,0xe9,0x00,0xc0 = srsia sp, #0
|
803
|
+
0x2d,0xe8,0x13,0xc0 = srsdb sp!, #19
|
804
|
+
0xad,0xe9,0x02,0xc0 = srsia sp!, #2
|
805
|
+
0x8d,0xe9,0x0a,0xc0 = srsia sp, #10
|
806
|
+
0x0d,0xe8,0x09,0xc0 = srsdb sp, #9
|
807
|
+
0xad,0xe9,0x05,0xc0 = srsia sp!, #5
|
808
|
+
0x2d,0xe8,0x05,0xc0 = srsdb sp!, #5
|
809
|
+
0x8d,0xe9,0x05,0xc0 = srsia sp, #5
|
810
|
+
0xad,0xe9,0x05,0xc0 = srsia sp!, #5
|
811
|
+
0x0d,0xe8,0x01,0xc0 = srsdb sp, #1
|
812
|
+
0x8d,0xe9,0x00,0xc0 = srsia sp, #0
|
813
|
+
0x2d,0xe8,0x13,0xc0 = srsdb sp!, #19
|
814
|
+
0xad,0xe9,0x02,0xc0 = srsia sp!, #2
|
815
|
+
0x8d,0xe9,0x0a,0xc0 = srsia sp, #10
|
816
|
+
0x0d,0xe8,0x09,0xc0 = srsdb sp, #9
|
817
|
+
0xad,0xe9,0x05,0xc0 = srsia sp!, #5
|
818
|
+
0x2d,0xe8,0x05,0xc0 = srsdb sp!, #5
|
819
|
+
0x8d,0xe9,0x05,0xc0 = srsia sp, #5
|
820
|
+
0xad,0xe9,0x05,0xc0 = srsia sp!, #5
|
821
|
+
0x0a,0xf3,0x00,0x08 = ssat r8, #1, r10
|
822
|
+
0x0a,0xf3,0x00,0x08 = ssat r8, #1, r10
|
823
|
+
0x0a,0xf3,0xc0,0x78 = ssat r8, #1, r10, lsl #31
|
824
|
+
0x2a,0xf3,0x40,0x08 = ssat r8, #1, r10, asr #1
|
825
|
+
0x27,0xf3,0x00,0x02 = ssat16 r2, #1, r7
|
826
|
+
0x25,0xf3,0x0f,0x03 = ssat16 r3, #16, r5
|
827
|
+
0xe3,0xfa,0x04,0xf2 = ssax r2, r3, r4
|
828
|
+
0xb8,0xbf = it lt
|
829
|
+
0xe3,0xfa,0x04,0xf2 = ssaxlt r2, r3, r4
|
830
|
+
0xe3,0xfa,0x04,0xf2 = ssax r2, r3, r4
|
831
|
+
0xb8,0xbf = it lt
|
832
|
+
0xe3,0xfa,0x04,0xf2 = ssaxlt r2, r3, r4
|
833
|
+
0xd0,0xfa,0x06,0xf1 = ssub16 r1, r0, r6
|
834
|
+
0xc2,0xfa,0x04,0xf9 = ssub8 r9, r2, r4
|
835
|
+
0x14,0xbf = ite ne
|
836
|
+
0xd3,0xfa,0x02,0xf5 = ssub16ne r5, r3, r2
|
837
|
+
0xc1,0xfa,0x02,0xf5 = ssub8eq r5, r1, r2
|
838
|
+
0x81,0xfd,0x01,0x80 = stc2 p0, c8, [r1, #4]
|
839
|
+
0x82,0xfd,0x00,0x71 = stc2 p1, c7, [r2]
|
840
|
+
0x03,0xfd,0x38,0x62 = stc2 p2, c6, [r3, #-224]
|
841
|
+
0x24,0xfd,0x1e,0x53 = stc2 p3, c5, [r4, #-120]!
|
842
|
+
0xa5,0xfc,0x04,0x44 = stc2 p4, c4, [r5], #16
|
843
|
+
0x26,0xfc,0x12,0x35 = stc2 p5, c3, [r6], #-72
|
844
|
+
0xc7,0xfd,0x01,0x26 = stc2l p6, c2, [r7, #4]
|
845
|
+
0xc8,0xfd,0x00,0x17 = stc2l p7, c1, [r8]
|
846
|
+
0x49,0xfd,0x38,0x08 = stc2l p8, c0, [r9, #-224]
|
847
|
+
0x6a,0xfd,0x1e,0x19 = stc2l p9, c1, [r10, #-120]!
|
848
|
+
0xeb,0xfc,0x04,0x20 = stc2l p0, c2, [r11], #16
|
849
|
+
0x6c,0xfc,0x12,0x31 = stc2l p1, c3, [r12], #-72
|
850
|
+
0x80,0xed,0x01,0x4c = stc p12, c4, [r0, #4]
|
851
|
+
0x81,0xed,0x00,0x5d = stc p13, c5, [r1]
|
852
|
+
0x02,0xed,0x38,0x6e = stc p14, c6, [r2, #-224]
|
853
|
+
0x23,0xed,0x1e,0x7f = stc p15, c7, [r3, #-120]!
|
854
|
+
0xa4,0xec,0x04,0x85 = stc p5, c8, [r4], #16
|
855
|
+
0x25,0xec,0x12,0x94 = stc p4, c9, [r5], #-72
|
856
|
+
0xc6,0xed,0x01,0xa3 = stcl p3, c10, [r6, #4]
|
857
|
+
0xc7,0xed,0x00,0xb2 = stcl p2, c11, [r7]
|
858
|
+
0x48,0xed,0x38,0xc1 = stcl p1, c12, [r8, #-224]
|
859
|
+
0x69,0xed,0x1e,0xd0 = stcl p0, c13, [r9, #-120]!
|
860
|
+
0xea,0xec,0x04,0xe6 = stcl p6, c14, [r10], #16
|
861
|
+
0x6b,0xec,0x12,0xf7 = stcl p7, c15, [r11], #-72
|
862
|
+
0x81,0xfc,0x19,0x82 = stc2 p2, c8, [r1], {25}
|
863
|
+
0x84,0xe8,0x30,0x03 = stm.w r4, {r4, r5, r8, r9}
|
864
|
+
0x84,0xe8,0x60,0x00 = stm.w r4, {r5, r6}
|
865
|
+
0xa5,0xe8,0x08,0x01 = stm.w r5!, {r3, r8}
|
866
|
+
0x84,0xe8,0x30,0x03 = stm.w r4, {r4, r5, r8, r9}
|
867
|
+
0x84,0xe8,0x60,0x00 = stm.w r4, {r5, r6}
|
868
|
+
0xa5,0xe8,0x08,0x01 = stm.w r5!, {r3, r8}
|
869
|
+
0xa5,0xe8,0x06,0x00 = stm.w r5!, {r1, r2}
|
870
|
+
0x82,0xe8,0x06,0x00 = stm.w r2, {r1, r2}
|
871
|
+
0x84,0xe8,0x30,0x03 = stm.w r4, {r4, r5, r8, r9}
|
872
|
+
0x84,0xe8,0x60,0x00 = stm.w r4, {r5, r6}
|
873
|
+
0xa5,0xe8,0x08,0x01 = stm.w r5!, {r3, r8}
|
874
|
+
0x84,0xe8,0x30,0x03 = stm.w r4, {r4, r5, r8, r9}
|
875
|
+
0x84,0xe8,0x60,0x00 = stm.w r4, {r5, r6}
|
876
|
+
0xa5,0xe8,0x08,0x01 = stm.w r5!, {r3, r8}
|
877
|
+
0xa5,0xe8,0x08,0x01 = stm.w r5!, {r3, r8}
|
878
|
+
0x04,0xe9,0x30,0x03 = stmdb r4, {r4, r5, r8, r9}
|
879
|
+
0x04,0xe9,0x60,0x00 = stmdb r4, {r5, r6}
|
880
|
+
0x25,0xe9,0x08,0x01 = stmdb r5!, {r3, r8}
|
881
|
+
0xa5,0xe8,0x08,0x01 = stm.w r5!, {r3, r8}
|
882
|
+
0x05,0xe9,0x03,0x00 = stmdb r5, {r0, r1}
|
883
|
+
0x45,0xf8,0x04,0x5c = str r5, [r5, #-4]
|
884
|
+
0x35,0x62 = str r5, [r6, #32]
|
885
|
+
0xc6,0xf8,0x21,0x50 = str.w r5, [r6, #33]
|
886
|
+
0xc6,0xf8,0x01,0x51 = str.w r5, [r6, #257]
|
887
|
+
0xc7,0xf8,0x01,0xf1 = str.w pc, [r7, #257]
|
888
|
+
0x44,0xf8,0xff,0x2f = str r2, [r4, #255]!
|
889
|
+
0x4d,0xf8,0x04,0x8f = str r8, [sp, #4]!
|
890
|
+
0x4d,0xf8,0x04,0xed = str lr, [sp, #-4]!
|
891
|
+
0x44,0xf8,0xff,0x2b = str r2, [r4], #255
|
892
|
+
0x4d,0xf8,0x04,0x8b = str r8, [sp], #4
|
893
|
+
0x4d,0xf8,0x04,0xe9 = str lr, [sp], #-4
|
894
|
+
0x48,0xf8,0x01,0x10 = str.w r1, [r8, r1]
|
895
|
+
0x45,0xf8,0x02,0x40 = str.w r4, [r5, r2]
|
896
|
+
0x40,0xf8,0x32,0x60 = str.w r6, [r0, r2, lsl #3]
|
897
|
+
0x48,0xf8,0x22,0x80 = str.w r8, [r8, r2, lsl #2]
|
898
|
+
0x4d,0xf8,0x12,0x70 = str.w r7, [sp, r2, lsl #1]
|
899
|
+
0x4d,0xf8,0x02,0x70 = str.w r7, [sp, r2]
|
900
|
+
0x05,0xf8,0x04,0x5c = strb r5, [r5, #-4]
|
901
|
+
0x86,0xf8,0x20,0x50 = strb.w r5, [r6, #32]
|
902
|
+
0x86,0xf8,0x21,0x50 = strb.w r5, [r6, #33]
|
903
|
+
0x86,0xf8,0x01,0x51 = strb.w r5, [r6, #257]
|
904
|
+
0x87,0xf8,0x01,0xe1 = strb.w lr, [r7, #257]
|
905
|
+
0x08,0xf8,0xff,0x5f = strb r5, [r8, #255]!
|
906
|
+
0x05,0xf8,0x04,0x2f = strb r2, [r5, #4]!
|
907
|
+
0x04,0xf8,0x04,0x1d = strb r1, [r4, #-4]!
|
908
|
+
0x03,0xf8,0xff,0xeb = strb lr, [r3], #255
|
909
|
+
0x02,0xf8,0x04,0x9b = strb r9, [r2], #4
|
910
|
+
0x0d,0xf8,0x04,0x39 = strb r3, [sp], #-4
|
911
|
+
0x08,0xf8,0x00,0x4d = strb r4, [r8, #-0]!
|
912
|
+
0x00,0xf8,0x00,0x19 = strb r1, [r0], #-0
|
913
|
+
0x08,0xf8,0x01,0x10 = strb.w r1, [r8, r1]
|
914
|
+
0x05,0xf8,0x02,0x40 = strb.w r4, [r5, r2]
|
915
|
+
0x00,0xf8,0x32,0x60 = strb.w r6, [r0, r2, lsl #3]
|
916
|
+
0x08,0xf8,0x22,0x80 = strb.w r8, [r8, r2, lsl #2]
|
917
|
+
0x0d,0xf8,0x12,0x70 = strb.w r7, [sp, r2, lsl #1]
|
918
|
+
0x0d,0xf8,0x02,0x70 = strb.w r7, [sp, r2]
|
919
|
+
0x02,0xf8,0x00,0x1e = strbt r1, [r2]
|
920
|
+
0x08,0xf8,0x00,0x1e = strbt r1, [r8]
|
921
|
+
0x08,0xf8,0x03,0x1e = strbt r1, [r8, #3]
|
922
|
+
0x08,0xf8,0xff,0x1e = strbt r1, [r8, #255]
|
923
|
+
0xc6,0xe9,0x06,0x35 = strd r3, r5, [r6, #24]
|
924
|
+
0xe6,0xe9,0x06,0x35 = strd r3, r5, [r6, #24]!
|
925
|
+
0xe6,0xe8,0x01,0x35 = strd r3, r5, [r6], #4
|
926
|
+
0x66,0xe8,0x02,0x35 = strd r3, r5, [r6], #-8
|
927
|
+
0xc6,0xe9,0x00,0x35 = strd r3, r5, [r6]
|
928
|
+
0xc3,0xe9,0x00,0x81 = strd r8, r1, [r3]
|
929
|
+
0x42,0xe9,0x00,0x01 = strd r0, r1, [r2, #-0]
|
930
|
+
0x62,0xe9,0x00,0x01 = strd r0, r1, [r2, #-0]!
|
931
|
+
0x62,0xe8,0x00,0x01 = strd r0, r1, [r2], #-0
|
932
|
+
0x44,0xe8,0x00,0x81 = strex r1, r8, [r4]
|
933
|
+
0x44,0xe8,0x00,0x28 = strex r8, r2, [r4]
|
934
|
+
0x4d,0xe8,0x20,0xc2 = strex r2, r12, [sp, #128]
|
935
|
+
0xc7,0xe8,0x45,0x1f = strexb r5, r1, [r7]
|
936
|
+
0xcc,0xe8,0x59,0x7f = strexh r9, r7, [r12]
|
937
|
+
0xc4,0xe8,0x79,0x36 = strexd r9, r3, r6, [r4]
|
938
|
+
0x25,0xf8,0x04,0x5c = strh r5, [r5, #-4]
|
939
|
+
0x35,0x84 = strh r5, [r6, #32]
|
940
|
+
0xa6,0xf8,0x21,0x50 = strh.w r5, [r6, #33]
|
941
|
+
0xa6,0xf8,0x01,0x51 = strh.w r5, [r6, #257]
|
942
|
+
0xa7,0xf8,0x01,0xe1 = strh.w lr, [r7, #257]
|
943
|
+
0x28,0xf8,0xff,0x5f = strh r5, [r8, #255]!
|
944
|
+
0x25,0xf8,0x04,0x2f = strh r2, [r5, #4]!
|
945
|
+
0x24,0xf8,0x04,0x1d = strh r1, [r4, #-4]!
|
946
|
+
0x23,0xf8,0xff,0xeb = strh lr, [r3], #255
|
947
|
+
0x22,0xf8,0x04,0x9b = strh r9, [r2], #4
|
948
|
+
0x2d,0xf8,0x04,0x39 = strh r3, [sp], #-4
|
949
|
+
0x28,0xf8,0x01,0x10 = strh.w r1, [r8, r1]
|
950
|
+
0x25,0xf8,0x02,0x40 = strh.w r4, [r5, r2]
|
951
|
+
0x20,0xf8,0x32,0x60 = strh.w r6, [r0, r2, lsl #3]
|
952
|
+
0x28,0xf8,0x22,0x80 = strh.w r8, [r8, r2, lsl #2]
|
953
|
+
0x2d,0xf8,0x12,0x70 = strh.w r7, [sp, r2, lsl #1]
|
954
|
+
0x2d,0xf8,0x02,0x70 = strh.w r7, [sp, r2]
|
955
|
+
0x22,0xf8,0x00,0x1e = strht r1, [r2]
|
956
|
+
0x28,0xf8,0x00,0x1e = strht r1, [r8]
|
957
|
+
0x28,0xf8,0x03,0x1e = strht r1, [r8, #3]
|
958
|
+
0x28,0xf8,0xff,0x1e = strht r1, [r8, #255]
|
959
|
+
0x42,0xf8,0x00,0x1e = strt r1, [r2]
|
960
|
+
0x48,0xf8,0x00,0x1e = strt r1, [r8]
|
961
|
+
0x48,0xf8,0x03,0x1e = strt r1, [r8, #3]
|
962
|
+
0x48,0xf8,0xff,0x1e = strt r1, [r8, #255]
|
963
|
+
0x0a,0xbf = itet eq
|
964
|
+
0x11,0x1f = subeq r1, r2, #4
|
965
|
+
0xa3,0xf2,0xff,0x35 = subwne r5, r3, #1023
|
966
|
+
0xa5,0xf2,0x25,0x14 = subweq r4, r5, #293
|
967
|
+
0xad,0xf5,0x80,0x62 = sub.w r2, sp, #1024
|
968
|
+
0xa8,0xf5,0x7f,0x42 = sub.w r2, r8, #65280
|
969
|
+
0xa3,0xf2,0x01,0x12 = subw r2, r3, #257
|
970
|
+
0xa3,0xf2,0x01,0x12 = subw r2, r3, #257
|
971
|
+
0xa6,0xf5,0x80,0x7c = sub.w r12, r6, #256
|
972
|
+
0xa6,0xf2,0x00,0x1c = subw r12, r6, #256
|
973
|
+
0xb2,0xf5,0xf8,0x71 = subs.w r1, r2, #496
|
974
|
+
0xa2,0xf1,0x01,0x02 = sub.w r2, r2, #1
|
975
|
+
0xa0,0xf1,0x20,0x00 = sub.w r0, r0, #32
|
976
|
+
0x38,0x3a = subs r2, #56
|
977
|
+
0x38,0x3a = subs r2, #56
|
978
|
+
0xa5,0xeb,0x06,0x04 = sub.w r4, r5, r6
|
979
|
+
0xa5,0xeb,0x46,0x14 = sub.w r4, r5, r6, lsl #5
|
980
|
+
0xa5,0xeb,0x56,0x14 = sub.w r4, r5, r6, lsr #5
|
981
|
+
0xa5,0xeb,0x56,0x14 = sub.w r4, r5, r6, lsr #5
|
982
|
+
0xa5,0xeb,0x66,0x14 = sub.w r4, r5, r6, asr #5
|
983
|
+
0xa5,0xeb,0x76,0x14 = sub.w r4, r5, r6, ror #5
|
984
|
+
0xa2,0xeb,0x3c,0x05 = sub.w r5, r2, r12, rrx
|
985
|
+
0xad,0xeb,0x0c,0x02 = sub.w r2, sp, r12
|
986
|
+
0xad,0xeb,0x0c,0x0d = sub.w sp, sp, r12
|
987
|
+
0xad,0xeb,0x0c,0x0d = sub.w sp, sp, r12
|
988
|
+
0xad,0xeb,0x0c,0x02 = sub.w r2, sp, r12
|
989
|
+
0xad,0xeb,0x0c,0x0d = sub.w sp, sp, r12
|
990
|
+
0xad,0xeb,0x0c,0x0d = sub.w sp, sp, r12
|
991
|
+
0x00,0xdf = svc #0
|
992
|
+
0x0c,0xbf = ite eq
|
993
|
+
0xff,0xdf = svceq #255
|
994
|
+
0x21,0xdf = svcne #33
|
995
|
+
0x43,0xfa,0x84,0xf2 = sxtab r2, r3, r4
|
996
|
+
0x45,0xfa,0x86,0xf4 = sxtab r4, r5, r6
|
997
|
+
0xb8,0xbf = it lt
|
998
|
+
0x42,0xfa,0x99,0xf6 = sxtablt r6, r2, r9, ror #8
|
999
|
+
0x41,0xfa,0xa4,0xf5 = sxtab r5, r1, r4, ror #16
|
1000
|
+
0x48,0xfa,0xb3,0xf7 = sxtab r7, r8, r3, ror #24
|
1001
|
+
0x22,0xfa,0x87,0xf6 = sxtab16 r6, r2, r7
|
1002
|
+
0x25,0xfa,0x98,0xf3 = sxtab16 r3, r5, r8, ror #8
|
1003
|
+
0x22,0xfa,0xa1,0xf3 = sxtab16 r3, r2, r1, ror #16
|
1004
|
+
0x14,0xbf = ite ne
|
1005
|
+
0x21,0xfa,0x84,0xf0 = sxtab16ne r0, r1, r4
|
1006
|
+
0x22,0xfa,0xb3,0xf1 = sxtab16eq r1, r2, r3, ror #24
|
1007
|
+
0x03,0xfa,0x89,0xf1 = sxtah r1, r3, r9
|
1008
|
+
0x08,0xfa,0x93,0xf3 = sxtah r3, r8, r3, ror #8
|
1009
|
+
0x03,0xfa,0xb3,0xf9 = sxtah r9, r3, r3, ror #24
|
1010
|
+
0x8c,0xbf = ite hi
|
1011
|
+
0x01,0xfa,0x86,0xf6 = sxtahhi r6, r1, r6
|
1012
|
+
0x02,0xfa,0xa4,0xf2 = sxtahls r2, r2, r4, ror #16
|
1013
|
+
0x75,0xb2 = sxtb r5, r6
|
1014
|
+
0x4f,0xfa,0x99,0xf6 = sxtb.w r6, r9, ror #8
|
1015
|
+
0x4f,0xfa,0xb3,0xf8 = sxtb.w r8, r3, ror #24
|
1016
|
+
0xac,0xbf = ite ge
|
1017
|
+
0x62,0xb2 = sxtbge r2, r4
|
1018
|
+
0x4f,0xfa,0xa1,0xf5 = sxtblt.w r5, r1, ror #16
|
1019
|
+
0x4f,0xfa,0x88,0xf7 = sxtb.w r7, r8
|
1020
|
+
0x2f,0xfa,0x84,0xf1 = sxtb16 r1, r4
|
1021
|
+
0x2f,0xfa,0x87,0xf6 = sxtb16 r6, r7
|
1022
|
+
0x2f,0xfa,0xa1,0xf3 = sxtb16 r3, r1, ror #16
|
1023
|
+
0x2c,0xbf = ite hs
|
1024
|
+
0x2f,0xfa,0x95,0xf3 = sxtb16hs r3, r5, ror #8
|
1025
|
+
0x2f,0xfa,0xb3,0xf2 = sxtb16lo r2, r3, ror #24
|
1026
|
+
0x31,0xb2 = sxth r1, r6
|
1027
|
+
0x0f,0xfa,0x98,0xf3 = sxth.w r3, r8, ror #8
|
1028
|
+
0x0f,0xfa,0xb3,0xf9 = sxth.w r9, r3, ror #24
|
1029
|
+
0x1c,0xbf = itt ne
|
1030
|
+
0x0f,0xfa,0x89,0xf3 = sxthne.w r3, r9
|
1031
|
+
0x0f,0xfa,0xa2,0xf2 = sxthne.w r2, r2, ror #16
|
1032
|
+
0x0f,0xfa,0x88,0xf7 = sxth.w r7, r8
|
1033
|
+
0x75,0xb2 = sxtb r5, r6
|
1034
|
+
0x4f,0xfa,0x99,0xf6 = sxtb.w r6, r9, ror #8
|
1035
|
+
0x4f,0xfa,0xb3,0xf8 = sxtb.w r8, r3, ror #24
|
1036
|
+
0xac,0xbf = ite ge
|
1037
|
+
0x62,0xb2 = sxtbge r2, r4
|
1038
|
+
0x4f,0xfa,0xa1,0xf5 = sxtblt.w r5, r1, ror #16
|
1039
|
+
0x2f,0xfa,0x84,0xf1 = sxtb16 r1, r4
|
1040
|
+
0x2f,0xfa,0x87,0xf6 = sxtb16 r6, r7
|
1041
|
+
0x2f,0xfa,0xa1,0xf3 = sxtb16 r3, r1, ror #16
|
1042
|
+
0x2c,0xbf = ite hs
|
1043
|
+
0x2f,0xfa,0x95,0xf3 = sxtb16hs r3, r5, ror #8
|
1044
|
+
0x2f,0xfa,0xb3,0xf2 = sxtb16lo r2, r3, ror #24
|
1045
|
+
0x31,0xb2 = sxth r1, r6
|
1046
|
+
0x0f,0xfa,0x98,0xf3 = sxth.w r3, r8, ror #8
|
1047
|
+
0x0f,0xfa,0xb3,0xf9 = sxth.w r9, r3, ror #24
|
1048
|
+
0x1c,0xbf = itt ne
|
1049
|
+
0x0f,0xfa,0x89,0xf3 = sxthne.w r3, r9
|
1050
|
+
0x0f,0xfa,0xa2,0xf2 = sxthne.w r2, r2, ror #16
|
1051
|
+
0xd3,0xe8,0x08,0xf0 = tbb [r3, r8]
|
1052
|
+
0xd3,0xe8,0x18,0xf0 = tbh [r3, r8, lsl #1]
|
1053
|
+
0x08,0xbf = it eq
|
1054
|
+
0xd3,0xe8,0x08,0xf0 = tbbeq [r3, r8]
|
1055
|
+
0x28,0xbf = it hs
|
1056
|
+
0xd3,0xe8,0x18,0xf0 = tbhhs [r3, r8, lsl #1]
|
1057
|
+
0x95,0xf4,0x70,0x4f = teq.w r5, #61440
|
1058
|
+
0x94,0xea,0x05,0x0f = teq.w r4, r5
|
1059
|
+
0x94,0xea,0x45,0x1f = teq.w r4, r5, lsl #5
|
1060
|
+
0x94,0xea,0x55,0x1f = teq.w r4, r5, lsr #5
|
1061
|
+
0x94,0xea,0x55,0x1f = teq.w r4, r5, lsr #5
|
1062
|
+
0x94,0xea,0x65,0x1f = teq.w r4, r5, asr #5
|
1063
|
+
0x94,0xea,0x75,0x1f = teq.w r4, r5, ror #5
|
1064
|
+
0x15,0xf4,0x70,0x4f = tst.w r5, #61440
|
1065
|
+
0x2a,0x42 = tst r2, r5
|
1066
|
+
0x13,0xea,0x4c,0x1f = tst.w r3, r12, lsl #5
|
1067
|
+
0x14,0xea,0x1b,0x1f = tst.w r4, r11, lsr #4
|
1068
|
+
0x15,0xea,0x1a,0x3f = tst.w r5, r10, lsr #12
|
1069
|
+
0x16,0xea,0xa9,0x7f = tst.w r6, r9, asr #30
|
1070
|
+
0x17,0xea,0xb8,0x0f = tst.w r7, r8, ror #2
|
1071
|
+
0x92,0xfa,0x43,0xf1 = uadd16 r1, r2, r3
|
1072
|
+
0x82,0xfa,0x43,0xf1 = uadd8 r1, r2, r3
|
1073
|
+
0xcc,0xbf = ite gt
|
1074
|
+
0x92,0xfa,0x43,0xf1 = uadd16gt r1, r2, r3
|
1075
|
+
0x82,0xfa,0x43,0xf1 = uadd8le r1, r2, r3
|
1076
|
+
0xac,0xfa,0x40,0xf9 = uasx r9, r12, r0
|
1077
|
+
0x08,0xbf = it eq
|
1078
|
+
0xac,0xfa,0x40,0xf9 = uasxeq r9, r12, r0
|
1079
|
+
0xac,0xfa,0x40,0xf9 = uasx r9, r12, r0
|
1080
|
+
0x08,0xbf = it eq
|
1081
|
+
0xac,0xfa,0x40,0xf9 = uasxeq r9, r12, r0
|
1082
|
+
0xc5,0xf3,0x00,0x44 = ubfx r4, r5, #16, #1
|
1083
|
+
0xc8,0xbf = it gt
|
1084
|
+
0xc5,0xf3,0x0f,0x44 = ubfxgt r4, r5, #16, #16
|
1085
|
+
0x98,0xfa,0x62,0xf4 = uhadd16 r4, r8, r2
|
1086
|
+
0x88,0xfa,0x62,0xf4 = uhadd8 r4, r8, r2
|
1087
|
+
0xc4,0xbf = itt gt
|
1088
|
+
0x98,0xfa,0x62,0xf4 = uhadd16gt r4, r8, r2
|
1089
|
+
0x88,0xfa,0x62,0xf4 = uhadd8gt r4, r8, r2
|
1090
|
+
0xa1,0xfa,0x65,0xf4 = uhasx r4, r1, r5
|
1091
|
+
0xe6,0xfa,0x66,0xf5 = uhsax r5, r6, r6
|
1092
|
+
0xc4,0xbf = itt gt
|
1093
|
+
0xa9,0xfa,0x68,0xf6 = uhasxgt r6, r9, r8
|
1094
|
+
0xe8,0xfa,0x6c,0xf7 = uhsaxgt r7, r8, r12
|
1095
|
+
0xa1,0xfa,0x65,0xf4 = uhasx r4, r1, r5
|
1096
|
+
0xe6,0xfa,0x66,0xf5 = uhsax r5, r6, r6
|
1097
|
+
0xc4,0xbf = itt gt
|
1098
|
+
0xa9,0xfa,0x68,0xf6 = uhasxgt r6, r9, r8
|
1099
|
+
0xe8,0xfa,0x6c,0xf7 = uhsaxgt r7, r8, r12
|
1100
|
+
0xd8,0xfa,0x63,0xf5 = uhsub16 r5, r8, r3
|
1101
|
+
0xc7,0xfa,0x66,0xf1 = uhsub8 r1, r7, r6
|
1102
|
+
0xbc,0xbf = itt lt
|
1103
|
+
0xd9,0xfa,0x6c,0xf4 = uhsub16lt r4, r9, r12
|
1104
|
+
0xc1,0xfa,0x65,0xf3 = uhsub8lt r3, r1, r5
|
1105
|
+
0xe5,0xfb,0x66,0x34 = umaal r3, r4, r5, r6
|
1106
|
+
0xb8,0xbf = it lt
|
1107
|
+
0xe5,0xfb,0x66,0x34 = umaallt r3, r4, r5, r6
|
1108
|
+
0xe6,0xfb,0x08,0x24 = umlal r2, r4, r6, r8
|
1109
|
+
0xc8,0xbf = it gt
|
1110
|
+
0xe2,0xfb,0x06,0x61 = umlalgt r6, r1, r2, r6
|
1111
|
+
0xa6,0xfb,0x08,0x24 = umull r2, r4, r6, r8
|
1112
|
+
0xc8,0xbf = it gt
|
1113
|
+
0xa2,0xfb,0x06,0x61 = umullgt r6, r1, r2, r6
|
1114
|
+
0x92,0xfa,0x53,0xf1 = uqadd16 r1, r2, r3
|
1115
|
+
0x84,0xfa,0x58,0xf3 = uqadd8 r3, r4, r8
|
1116
|
+
0xcc,0xbf = ite gt
|
1117
|
+
0x97,0xfa,0x59,0xf4 = uqadd16gt r4, r7, r9
|
1118
|
+
0x81,0xfa,0x52,0xf8 = uqadd8le r8, r1, r2
|
1119
|
+
0xa2,0xfa,0x53,0xf1 = uqasx r1, r2, r3
|
1120
|
+
0xe4,0xfa,0x58,0xf3 = uqsax r3, r4, r8
|
1121
|
+
0xcc,0xbf = ite gt
|
1122
|
+
0xa7,0xfa,0x59,0xf4 = uqasxgt r4, r7, r9
|
1123
|
+
0xe1,0xfa,0x52,0xf8 = uqsaxle r8, r1, r2
|
1124
|
+
0xa2,0xfa,0x53,0xf1 = uqasx r1, r2, r3
|
1125
|
+
0xe4,0xfa,0x58,0xf3 = uqsax r3, r4, r8
|
1126
|
+
0xcc,0xbf = ite gt
|
1127
|
+
0xa7,0xfa,0x59,0xf4 = uqasxgt r4, r7, r9
|
1128
|
+
0xe1,0xfa,0x52,0xf8 = uqsaxle r8, r1, r2
|
1129
|
+
0xc2,0xfa,0x59,0xf8 = uqsub8 r8, r2, r9
|
1130
|
+
0xd9,0xfa,0x57,0xf1 = uqsub16 r1, r9, r7
|
1131
|
+
0xcc,0xbf = ite gt
|
1132
|
+
0xc1,0xfa,0x56,0xf3 = uqsub8gt r3, r1, r6
|
1133
|
+
0xd6,0xfa,0x54,0xf4 = uqsub16le r4, r6, r4
|
1134
|
+
0x79,0xfb,0x07,0xf1 = usad8 r1, r9, r7
|
1135
|
+
0x72,0xfb,0x09,0xc8 = usada8 r8, r2, r9, r12
|
1136
|
+
0xcc,0xbf = ite gt
|
1137
|
+
0x71,0xfb,0x06,0x93 = usada8gt r3, r1, r6, r9
|
1138
|
+
0x76,0xfb,0x04,0xf4 = usad8le r4, r6, r4
|
1139
|
+
0x8a,0xf3,0x01,0x08 = usat r8, #1, r10
|
1140
|
+
0x8a,0xf3,0x04,0x08 = usat r8, #4, r10
|
1141
|
+
0x8a,0xf3,0xc5,0x78 = usat r8, #5, r10, lsl #31
|
1142
|
+
0xaa,0xf3,0x50,0x08 = usat r8, #16, r10, asr #1
|
1143
|
+
0xa7,0xf3,0x02,0x02 = usat16 r2, #2, r7
|
1144
|
+
0xa5,0xf3,0x0f,0x03 = usat16 r3, #15, r5
|
1145
|
+
0xe3,0xfa,0x44,0xf2 = usax r2, r3, r4
|
1146
|
+
0x18,0xbf = it ne
|
1147
|
+
0xe1,0xfa,0x49,0xf6 = usaxne r6, r1, r9
|
1148
|
+
0xe3,0xfa,0x44,0xf2 = usax r2, r3, r4
|
1149
|
+
0x18,0xbf = it ne
|
1150
|
+
0xe1,0xfa,0x49,0xf6 = usaxne r6, r1, r9
|
1151
|
+
0xd2,0xfa,0x47,0xf4 = usub16 r4, r2, r7
|
1152
|
+
0xc8,0xfa,0x45,0xf1 = usub8 r1, r8, r5
|
1153
|
+
0x8c,0xbf = ite hi
|
1154
|
+
0xd1,0xfa,0x43,0xf1 = usub16hi r1, r1, r3
|
1155
|
+
0xc2,0xfa,0x43,0xf9 = usub8ls r9, r2, r3
|
1156
|
+
0x53,0xfa,0x84,0xf2 = uxtab r2, r3, r4
|
1157
|
+
0x55,0xfa,0x86,0xf4 = uxtab r4, r5, r6
|
1158
|
+
0xb8,0xbf = it lt
|
1159
|
+
0x52,0xfa,0x99,0xf6 = uxtablt r6, r2, r9, ror #8
|
1160
|
+
0x51,0xfa,0xa4,0xf5 = uxtab r5, r1, r4, ror #16
|
1161
|
+
0x58,0xfa,0xb3,0xf7 = uxtab r7, r8, r3, ror #24
|
1162
|
+
0xa8,0xbf = it ge
|
1163
|
+
0x31,0xfa,0x84,0xf0 = uxtab16ge r0, r1, r4
|
1164
|
+
0x32,0xfa,0x87,0xf6 = uxtab16 r6, r2, r7
|
1165
|
+
0x35,0xfa,0x98,0xf3 = uxtab16 r3, r5, r8, ror #8
|
1166
|
+
0x32,0xfa,0xa1,0xf3 = uxtab16 r3, r2, r1, ror #16
|
1167
|
+
0x08,0xbf = it eq
|
1168
|
+
0x32,0xfa,0xb3,0xf1 = uxtab16eq r1, r2, r3, ror #24
|
1169
|
+
0x13,0xfa,0x89,0xf1 = uxtah r1, r3, r9
|
1170
|
+
0x88,0xbf = it hi
|
1171
|
+
0x11,0xfa,0x86,0xf6 = uxtahhi r6, r1, r6
|
1172
|
+
0x18,0xfa,0x93,0xf3 = uxtah r3, r8, r3, ror #8
|
1173
|
+
0x38,0xbf = it lo
|
1174
|
+
0x12,0xfa,0xa4,0xf2 = uxtahlo r2, r2, r4, ror #16
|
1175
|
+
0x13,0xfa,0xb3,0xf9 = uxtah r9, r3, r3, ror #24
|
1176
|
+
0xa8,0xbf = it ge
|
1177
|
+
0xe2,0xb2 = uxtbge r2, r4
|
1178
|
+
0xf5,0xb2 = uxtb r5, r6
|
1179
|
+
0x5f,0xfa,0x99,0xf6 = uxtb.w r6, r9, ror #8
|
1180
|
+
0x38,0xbf = it lo
|
1181
|
+
0x5f,0xfa,0xa1,0xf5 = uxtblo.w r5, r1, ror #16
|
1182
|
+
0x5f,0xfa,0xb3,0xf8 = uxtb.w r8, r3, ror #24
|
1183
|
+
0x5f,0xfa,0x88,0xf7 = uxtb.w r7, r8
|
1184
|
+
0x3f,0xfa,0x84,0xf1 = uxtb16 r1, r4
|
1185
|
+
0x3f,0xfa,0x87,0xf6 = uxtb16 r6, r7
|
1186
|
+
0x28,0xbf = it hs
|
1187
|
+
0x3f,0xfa,0x95,0xf3 = uxtb16hs r3, r5, ror #8
|
1188
|
+
0x3f,0xfa,0xa1,0xf3 = uxtb16 r3, r1, ror #16
|
1189
|
+
0xa8,0xbf = it ge
|
1190
|
+
0x3f,0xfa,0xb3,0xf2 = uxtb16ge r2, r3, ror #24
|
1191
|
+
0x18,0xbf = it ne
|
1192
|
+
0x1f,0xfa,0x89,0xf3 = uxthne.w r3, r9
|
1193
|
+
0xb1,0xb2 = uxth r1, r6
|
1194
|
+
0x1f,0xfa,0x98,0xf3 = uxth.w r3, r8, ror #8
|
1195
|
+
0xd8,0xbf = it le
|
1196
|
+
0x1f,0xfa,0xa2,0xf2 = uxthle.w r2, r2, ror #16
|
1197
|
+
0x1f,0xfa,0xb3,0xf9 = uxth.w r9, r3, ror #24
|
1198
|
+
0x1f,0xfa,0x88,0xf7 = uxth.w r7, r8
|
1199
|
+
0x20,0xbf = wfe
|
1200
|
+
0x30,0xbf = wfi
|
1201
|
+
0x10,0xbf = yield
|
1202
|
+
0xb6,0xbf = itet lt
|
1203
|
+
0x20,0xbf = wfelt
|
1204
|
+
0x30,0xbf = wfige
|
1205
|
+
0x10,0xbf = yieldlt
|
1206
|
+
0xaf,0xf3,0x04,0x80 = sev.w
|
1207
|
+
0xaf,0xf3,0x03,0x80 = wfi.w
|
1208
|
+
0xaf,0xf3,0x02,0x80 = wfe.w
|
1209
|
+
0xaf,0xf3,0x01,0x80 = yield.w
|
1210
|
+
0xaf,0xf3,0x00,0x80 = nop.w
|
1211
|
+
0x40,0xbf = sev
|
1212
|
+
0x30,0xbf = wfi
|
1213
|
+
0x20,0xbf = wfe
|
1214
|
+
0x10,0xbf = yield
|
1215
|
+
0x00,0xbf = nop
|
1216
|
+
0xb6,0xbf = itet lt
|
1217
|
+
0xf0,0xbf = hintlt #15
|
1218
|
+
0xaf,0xf3,0x10,0x80 = hintge.w #16
|
1219
|
+
0xaf,0xf3,0xef,0x80 = hintlt.w #239
|
1220
|
+
0x70,0xbf = hint #7
|
1221
|
+
0xaf,0xf3,0x07,0x80 = hint.w #7
|
1222
|
+
0x9f,0xf8,0x16,0xb0 = ldrb.w r11, [pc, #22]
|
1223
|
+
0xbf,0xf8,0x16,0xb0 = ldrh.w r11, [pc, #22]
|
1224
|
+
0x9f,0xf9,0x16,0xb0 = ldrsb.w r11, [pc, #22]
|
1225
|
+
0xbf,0xf9,0x16,0xb0 = ldrsh.w r11, [pc, #22]
|
1226
|
+
0xdf,0xf8,0x16,0xb0 = ldr.w r11, [pc, #22]
|
1227
|
+
0x9f,0xf8,0x16,0xb0 = ldrb.w r11, [pc, #22]
|
1228
|
+
0xbf,0xf8,0x16,0xb0 = ldrh.w r11, [pc, #22]
|
1229
|
+
0x9f,0xf9,0x16,0xb0 = ldrsb.w r11, [pc, #22]
|
1230
|
+
0xbf,0xf9,0x16,0xb0 = ldrsh.w r11, [pc, #22]
|
1231
|
+
0x5f,0xf8,0x16,0xb0 = ldr.w r11, [pc, #-22]
|
1232
|
+
0x1f,0xf8,0x16,0xb0 = ldrb.w r11, [pc, #-22]
|
1233
|
+
0x3f,0xf8,0x16,0xb0 = ldrh.w r11, [pc, #-22]
|
1234
|
+
0x1f,0xf9,0x16,0xb0 = ldrsb.w r11, [pc, #-22]
|
1235
|
+
0x3f,0xf9,0x16,0xb0 = ldrsh.w r11, [pc, #-22]
|
1236
|
+
0x5f,0xf8,0x16,0xb0 = ldr.w r11, [pc, #-22]
|
1237
|
+
0x1f,0xf8,0x16,0xb0 = ldrb.w r11, [pc, #-22]
|
1238
|
+
0x3f,0xf8,0x16,0xb0 = ldrh.w r11, [pc, #-22]
|
1239
|
+
0x1f,0xf9,0x16,0xb0 = ldrsb.w r11, [pc, #-22]
|
1240
|
+
0x3f,0xf9,0x16,0xb0 = ldrsh.w r11, [pc, #-22]
|
1241
|
+
0x03,0x49 = ldr r1, [pc, #12]
|
1242
|
+
0xde,0xf3,0x04,0x8f = subs pc, lr, #4
|