crabstone 3.0.3
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 +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,2014 @@
|
|
1
|
+
# CS_ARCH_ARM64, 0, None
|
2
|
+
0x82,0x00,0x25,0x8b = add x2, x4, w5, uxtb
|
3
|
+
0xf4,0x23,0x33,0x8b = add x20, sp, w19, uxth
|
4
|
+
0x2c,0x40,0x34,0x8b = add x12, x1, w20, uxtw
|
5
|
+
0x74,0x60,0x2d,0x8b = add x20, x3, x13, uxtx
|
6
|
+
0x31,0x83,0x34,0x8b = add x17, x25, w20, sxtb
|
7
|
+
0xb2,0xa1,0x33,0x8b = add x18, x13, w19, sxth
|
8
|
+
0x5f,0xc0,0x23,0x8b = add sp, x2, w3, sxtw
|
9
|
+
0xa3,0xe0,0x29,0x8b = add x3, x5, x9, sxtx
|
10
|
+
0xa2,0x00,0x27,0x0b = add w2, w5, w7, uxtb
|
11
|
+
0xf5,0x21,0x31,0x0b = add w21, w15, w17, uxth
|
12
|
+
0xbe,0x43,0x3f,0x0b = add w30, w29, wzr, uxtw
|
13
|
+
0x33,0x62,0x21,0x0b = add w19, w17, w1, uxtx
|
14
|
+
0xa2,0x80,0x21,0x0b = add w2, w5, w1, sxtb
|
15
|
+
0x3a,0xa2,0x33,0x0b = add w26, w17, w19, sxth
|
16
|
+
0x40,0xc0,0x23,0x0b = add w0, w2, w3, sxtw
|
17
|
+
0x62,0xe0,0x25,0x0b = add w2, w3, w5, sxtx
|
18
|
+
0x62,0x80,0x25,0x8b = add x2, x3, w5, sxtb
|
19
|
+
0x67,0x31,0x2d,0x8b = add x7, x11, w13, uxth #4
|
20
|
+
0x71,0x4a,0x37,0x0b = add w17, w19, w23, uxtw #2
|
21
|
+
0xfd,0x66,0x31,0x0b = add w29, w23, w17, uxtx #1
|
22
|
+
0x82,0x08,0x25,0xcb = sub x2, x4, w5, uxtb #2
|
23
|
+
0xf4,0x33,0x33,0xcb = sub x20, sp, w19, uxth #4
|
24
|
+
0x2c,0x40,0x34,0xcb = sub x12, x1, w20, uxtw
|
25
|
+
0x74,0x60,0x2d,0xcb = sub x20, x3, x13, uxtx
|
26
|
+
0x31,0x83,0x34,0xcb = sub x17, x25, w20, sxtb
|
27
|
+
0xb2,0xa1,0x33,0xcb = sub x18, x13, w19, sxth
|
28
|
+
0x5f,0xc0,0x23,0xcb = sub sp, x2, w3, sxtw
|
29
|
+
0xa3,0xe0,0x29,0xcb = sub x3, x5, x9, sxtx
|
30
|
+
0xa2,0x00,0x27,0x4b = sub w2, w5, w7, uxtb
|
31
|
+
0xf5,0x21,0x31,0x4b = sub w21, w15, w17, uxth
|
32
|
+
0xbe,0x43,0x3f,0x4b = sub w30, w29, wzr, uxtw
|
33
|
+
0x33,0x62,0x21,0x4b = sub w19, w17, w1, uxtx
|
34
|
+
0xa2,0x80,0x21,0x4b = sub w2, w5, w1, sxtb
|
35
|
+
0xfa,0xa3,0x33,0x4b = sub w26, wsp, w19, sxth
|
36
|
+
0x5f,0xc0,0x23,0x4b = sub wsp, w2, w3, sxtw
|
37
|
+
0x62,0xe0,0x25,0x4b = sub w2, w3, w5, sxtx
|
38
|
+
0x82,0x08,0x25,0xab = adds x2, x4, w5, uxtb #2
|
39
|
+
0xf4,0x33,0x33,0xab = adds x20, sp, w19, uxth #4
|
40
|
+
0x2c,0x40,0x34,0xab = adds x12, x1, w20, uxtw
|
41
|
+
0x74,0x60,0x2d,0xab = adds x20, x3, x13, uxtx
|
42
|
+
0x3f,0x8f,0x34,0xab = adds xzr, x25, w20, sxtb #3
|
43
|
+
0xf2,0xa3,0x33,0xab = adds x18, sp, w19, sxth
|
44
|
+
0x5f,0xc0,0x23,0xab = adds xzr, x2, w3, sxtw
|
45
|
+
0xa3,0xe8,0x29,0xab = adds x3, x5, x9, sxtx #2
|
46
|
+
0xa2,0x00,0x27,0x2b = adds w2, w5, w7, uxtb
|
47
|
+
0xf5,0x21,0x31,0x2b = adds w21, w15, w17, uxth
|
48
|
+
0xbe,0x43,0x3f,0x2b = adds w30, w29, wzr, uxtw
|
49
|
+
0x33,0x62,0x21,0x2b = adds w19, w17, w1, uxtx
|
50
|
+
0xa2,0x84,0x21,0x2b = adds w2, w5, w1, sxtb #1
|
51
|
+
0xfa,0xa3,0x33,0x2b = adds w26, wsp, w19, sxth
|
52
|
+
0x5f,0xc0,0x23,0x2b = adds wzr, w2, w3, sxtw
|
53
|
+
0x62,0xe0,0x25,0x2b = adds w2, w3, w5, sxtx
|
54
|
+
0x82,0x08,0x25,0xeb = subs x2, x4, w5, uxtb #2
|
55
|
+
0xf4,0x33,0x33,0xeb = subs x20, sp, w19, uxth #4
|
56
|
+
0x2c,0x40,0x34,0xeb = subs x12, x1, w20, uxtw
|
57
|
+
0x74,0x60,0x2d,0xeb = subs x20, x3, x13, uxtx
|
58
|
+
0x3f,0x8f,0x34,0xeb = subs xzr, x25, w20, sxtb #3
|
59
|
+
0xf2,0xa3,0x33,0xeb = subs x18, sp, w19, sxth
|
60
|
+
0x5f,0xc0,0x23,0xeb = subs xzr, x2, w3, sxtw
|
61
|
+
0xa3,0xe8,0x29,0xeb = subs x3, x5, x9, sxtx #2
|
62
|
+
0xa2,0x00,0x27,0x6b = subs w2, w5, w7, uxtb
|
63
|
+
0xf5,0x21,0x31,0x6b = subs w21, w15, w17, uxth
|
64
|
+
0xbe,0x43,0x3f,0x6b = subs w30, w29, wzr, uxtw
|
65
|
+
0x33,0x62,0x21,0x6b = subs w19, w17, w1, uxtx
|
66
|
+
0xa2,0x84,0x21,0x6b = subs w2, w5, w1, sxtb #1
|
67
|
+
0xfa,0xa3,0x33,0x6b = subs w26, wsp, w19, sxth
|
68
|
+
0x5f,0xc0,0x23,0x6b = subs wzr, w2, w3, sxtw
|
69
|
+
0x62,0xe0,0x25,0x6b = subs w2, w3, w5, sxtx
|
70
|
+
0x9f,0x08,0x25,0xeb = cmp x4, w5, uxtb #2
|
71
|
+
0xff,0x33,0x33,0xeb = cmp sp, w19, uxth #4
|
72
|
+
0x3f,0x40,0x34,0xeb = cmp x1, w20, uxtw
|
73
|
+
0x7f,0x60,0x2d,0xeb = cmp x3, x13, uxtx
|
74
|
+
0x3f,0x8f,0x34,0xeb = cmp x25, w20, sxtb #3
|
75
|
+
0xff,0xa3,0x33,0xeb = cmp sp, w19, sxth
|
76
|
+
0x5f,0xc0,0x23,0xeb = cmp x2, w3, sxtw
|
77
|
+
0xbf,0xe8,0x29,0xeb = cmp x5, x9, sxtx #2
|
78
|
+
0xbf,0x00,0x27,0x6b = cmp w5, w7, uxtb
|
79
|
+
0xff,0x21,0x31,0x6b = cmp w15, w17, uxth
|
80
|
+
0xbf,0x43,0x3f,0x6b = cmp w29, wzr, uxtw
|
81
|
+
0x3f,0x62,0x21,0x6b = cmp w17, w1, uxtx
|
82
|
+
0xbf,0x84,0x21,0x6b = cmp w5, w1, sxtb #1
|
83
|
+
0xff,0xa3,0x33,0x6b = cmp wsp, w19, sxth
|
84
|
+
0x5f,0xc0,0x23,0x6b = cmp w2, w3, sxtw
|
85
|
+
0x7f,0xe0,0x25,0x6b = cmp w3, w5, sxtx
|
86
|
+
0x9f,0x08,0x25,0xab = cmn x4, w5, uxtb #2
|
87
|
+
0xff,0x33,0x33,0xab = cmn sp, w19, uxth #4
|
88
|
+
0x3f,0x40,0x34,0xab = cmn x1, w20, uxtw
|
89
|
+
0x7f,0x60,0x2d,0xab = cmn x3, x13, uxtx
|
90
|
+
0x3f,0x8f,0x34,0xab = cmn x25, w20, sxtb #3
|
91
|
+
0xff,0xa3,0x33,0xab = cmn sp, w19, sxth
|
92
|
+
0x5f,0xc0,0x23,0xab = cmn x2, w3, sxtw
|
93
|
+
0xbf,0xe8,0x29,0xab = cmn x5, x9, sxtx #2
|
94
|
+
0xbf,0x00,0x27,0x2b = cmn w5, w7, uxtb
|
95
|
+
0xff,0x21,0x31,0x2b = cmn w15, w17, uxth
|
96
|
+
0xbf,0x43,0x3f,0x2b = cmn w29, wzr, uxtw
|
97
|
+
0x3f,0x62,0x21,0x2b = cmn w17, w1, uxtx
|
98
|
+
0xbf,0x84,0x21,0x2b = cmn w5, w1, sxtb #1
|
99
|
+
0xff,0xa3,0x33,0x2b = cmn wsp, w19, sxth
|
100
|
+
0x5f,0xc0,0x23,0x2b = cmn w2, w3, sxtw
|
101
|
+
0x7f,0xe0,0x25,0x2b = cmn w3, w5, sxtx
|
102
|
+
0x9f,0x0e,0x3d,0xeb = cmp x20, w29, uxtb #3
|
103
|
+
0x9f,0x71,0x2d,0xeb = cmp x12, x13, uxtx #4
|
104
|
+
0xff,0x03,0x21,0x6b = cmp wsp, w1, uxtb
|
105
|
+
0xff,0xc3,0x3f,0x2b = cmn wsp, wzr, sxtw
|
106
|
+
0x7f,0x70,0x27,0xcb = sub sp, x3, x7, lsl #4
|
107
|
+
0xe2,0x47,0x23,0x0b = add w2, wsp, w3, lsl #1
|
108
|
+
0xff,0x43,0x29,0x6b = cmp wsp, w9
|
109
|
+
0xff,0x53,0x23,0x2b = adds wzr, wsp, w3, lsl #4
|
110
|
+
0xe3,0x6b,0x29,0xeb = subs x3, sp, x9, lsl #2
|
111
|
+
0xa4,0x00,0x00,0x11 = add w4, w5, #0
|
112
|
+
0x62,0xfc,0x3f,0x11 = add w2, w3, #4095
|
113
|
+
0xbe,0x07,0x40,0x11 = add w30, w29, #1, lsl #12
|
114
|
+
0xad,0xfc,0x7f,0x11 = add w13, w5, #4095, lsl #12
|
115
|
+
0xe5,0x98,0x19,0x91 = add x5, x7, #1638
|
116
|
+
0xf4,0x87,0x0c,0x11 = add w20, wsp, #801
|
117
|
+
0xff,0x43,0x11,0x11 = add wsp, wsp, #1104
|
118
|
+
0xdf,0xd3,0x3f,0x11 = add wsp, w30, #4084
|
119
|
+
0x00,0x8f,0x04,0x91 = add x0, x24, #291
|
120
|
+
0x03,0xff,0x7f,0x91 = add x3, x24, #4095, lsl #12
|
121
|
+
0xe8,0xcb,0x10,0x91 = add x8, sp, #1074
|
122
|
+
0xbf,0xa3,0x3b,0x91 = add sp, x29, #3816
|
123
|
+
0xe0,0xb7,0x3f,0x51 = sub w0, wsp, #4077
|
124
|
+
0x84,0x8a,0x48,0x51 = sub w4, w20, #546, lsl #12
|
125
|
+
0xff,0x83,0x04,0xd1 = sub sp, sp, #288
|
126
|
+
0x7f,0x42,0x00,0x51 = sub wsp, w19, #16
|
127
|
+
0xed,0x8e,0x44,0x31 = adds w13, w23, #291, lsl #12
|
128
|
+
0x5f,0xfc,0x3f,0x31 = adds wzr, w2, #4095
|
129
|
+
0xf4,0x03,0x00,0x31 = adds w20, wsp, #0
|
130
|
+
0x7f,0x04,0x40,0xb1 = adds xzr, x3, #1, lsl #12
|
131
|
+
0xff,0x53,0x40,0xf1 = subs xzr, sp, #20, lsl #12
|
132
|
+
0xdf,0xff,0x3f,0xf1 = subs xzr, x30, #4095
|
133
|
+
0xe4,0xbb,0x3b,0xf1 = subs x4, sp, #3822
|
134
|
+
0x7f,0x8c,0x44,0x31 = cmn w3, #291, lsl #12
|
135
|
+
0xff,0x57,0x15,0x31 = cmn wsp, #1365
|
136
|
+
0xff,0x13,0x51,0xb1 = cmn sp, #1092, lsl #12
|
137
|
+
0x9f,0xb0,0x44,0xf1 = cmp x4, #300, lsl #12
|
138
|
+
0xff,0xd3,0x07,0x71 = cmp wsp, #500
|
139
|
+
0xff,0x23,0x03,0xf1 = cmp sp, #200
|
140
|
+
0xdf,0x03,0x00,0x91 = mov sp, x30
|
141
|
+
0x9f,0x02,0x00,0x11 = mov wsp, w20
|
142
|
+
0xeb,0x03,0x00,0x91 = mov x11, sp
|
143
|
+
0xf8,0x03,0x00,0x11 = mov w24, wsp
|
144
|
+
0xa3,0x00,0x07,0x0b = add w3, w5, w7
|
145
|
+
0x7f,0x00,0x05,0x0b = add wzr, w3, w5
|
146
|
+
0xf4,0x03,0x04,0x0b = add w20, wzr, w4
|
147
|
+
0xc4,0x00,0x1f,0x0b = add w4, w6, wzr
|
148
|
+
0xab,0x01,0x0f,0x0b = add w11, w13, w15
|
149
|
+
0x69,0x28,0x1f,0x0b = add w9, w3, wzr, lsl #10
|
150
|
+
0xb1,0x7f,0x14,0x0b = add w17, w29, w20, lsl #31
|
151
|
+
0xd5,0x02,0x57,0x0b = add w21, w22, w23, lsr #0
|
152
|
+
0x38,0x4b,0x5a,0x0b = add w24, w25, w26, lsr #18
|
153
|
+
0x9b,0x7f,0x5d,0x0b = add w27, w28, w29, lsr #31
|
154
|
+
0x62,0x00,0x84,0x0b = add w2, w3, w4, asr #0
|
155
|
+
0xc5,0x54,0x87,0x0b = add w5, w6, w7, asr #21
|
156
|
+
0x28,0x7d,0x8a,0x0b = add w8, w9, w10, asr #31
|
157
|
+
0xa3,0x00,0x07,0x8b = add x3, x5, x7
|
158
|
+
0x7f,0x00,0x05,0x8b = add xzr, x3, x5
|
159
|
+
0xf4,0x03,0x04,0x8b = add x20, xzr, x4
|
160
|
+
0xc4,0x00,0x1f,0x8b = add x4, x6, xzr
|
161
|
+
0xab,0x01,0x0f,0x8b = add x11, x13, x15
|
162
|
+
0x69,0x28,0x1f,0x8b = add x9, x3, xzr, lsl #10
|
163
|
+
0xb1,0xff,0x14,0x8b = add x17, x29, x20, lsl #63
|
164
|
+
0xd5,0x02,0x57,0x8b = add x21, x22, x23, lsr #0
|
165
|
+
0x38,0x4b,0x5a,0x8b = add x24, x25, x26, lsr #18
|
166
|
+
0x9b,0xff,0x5d,0x8b = add x27, x28, x29, lsr #63
|
167
|
+
0x62,0x00,0x84,0x8b = add x2, x3, x4, asr #0
|
168
|
+
0xc5,0x54,0x87,0x8b = add x5, x6, x7, asr #21
|
169
|
+
0x28,0xfd,0x8a,0x8b = add x8, x9, x10, asr #63
|
170
|
+
0xa3,0x00,0x07,0x2b = adds w3, w5, w7
|
171
|
+
0x7f,0x00,0x05,0x2b = adds wzr, w3, w5
|
172
|
+
0xf4,0x03,0x04,0x2b = adds w20, wzr, w4
|
173
|
+
0xc4,0x00,0x1f,0x2b = adds w4, w6, wzr
|
174
|
+
0xab,0x01,0x0f,0x2b = adds w11, w13, w15
|
175
|
+
0x69,0x28,0x1f,0x2b = adds w9, w3, wzr, lsl #10
|
176
|
+
0xb1,0x7f,0x14,0x2b = adds w17, w29, w20, lsl #31
|
177
|
+
0xd5,0x02,0x57,0x2b = adds w21, w22, w23, lsr #0
|
178
|
+
0x38,0x4b,0x5a,0x2b = adds w24, w25, w26, lsr #18
|
179
|
+
0x9b,0x7f,0x5d,0x2b = adds w27, w28, w29, lsr #31
|
180
|
+
0x62,0x00,0x84,0x2b = adds w2, w3, w4, asr #0
|
181
|
+
0xc5,0x54,0x87,0x2b = adds w5, w6, w7, asr #21
|
182
|
+
0x28,0x7d,0x8a,0x2b = adds w8, w9, w10, asr #31
|
183
|
+
0xa3,0x00,0x07,0xab = adds x3, x5, x7
|
184
|
+
0x7f,0x00,0x05,0xab = adds xzr, x3, x5
|
185
|
+
0xf4,0x03,0x04,0xab = adds x20, xzr, x4
|
186
|
+
0xc4,0x00,0x1f,0xab = adds x4, x6, xzr
|
187
|
+
0xab,0x01,0x0f,0xab = adds x11, x13, x15
|
188
|
+
0x69,0x28,0x1f,0xab = adds x9, x3, xzr, lsl #10
|
189
|
+
0xb1,0xff,0x14,0xab = adds x17, x29, x20, lsl #63
|
190
|
+
0xd5,0x02,0x57,0xab = adds x21, x22, x23, lsr #0
|
191
|
+
0x38,0x4b,0x5a,0xab = adds x24, x25, x26, lsr #18
|
192
|
+
0x9b,0xff,0x5d,0xab = adds x27, x28, x29, lsr #63
|
193
|
+
0x62,0x00,0x84,0xab = adds x2, x3, x4, asr #0
|
194
|
+
0xc5,0x54,0x87,0xab = adds x5, x6, x7, asr #21
|
195
|
+
0x28,0xfd,0x8a,0xab = adds x8, x9, x10, asr #63
|
196
|
+
0xa3,0x00,0x07,0x4b = sub w3, w5, w7
|
197
|
+
0x7f,0x00,0x05,0x4b = sub wzr, w3, w5
|
198
|
+
0xf4,0x03,0x04,0x4b = sub w20, wzr, w4
|
199
|
+
0xc4,0x00,0x1f,0x4b = sub w4, w6, wzr
|
200
|
+
0xab,0x01,0x0f,0x4b = sub w11, w13, w15
|
201
|
+
0x69,0x28,0x1f,0x4b = sub w9, w3, wzr, lsl #10
|
202
|
+
0xb1,0x7f,0x14,0x4b = sub w17, w29, w20, lsl #31
|
203
|
+
0xd5,0x02,0x57,0x4b = sub w21, w22, w23, lsr #0
|
204
|
+
0x38,0x4b,0x5a,0x4b = sub w24, w25, w26, lsr #18
|
205
|
+
0x9b,0x7f,0x5d,0x4b = sub w27, w28, w29, lsr #31
|
206
|
+
0x62,0x00,0x84,0x4b = sub w2, w3, w4, asr #0
|
207
|
+
0xc5,0x54,0x87,0x4b = sub w5, w6, w7, asr #21
|
208
|
+
0x28,0x7d,0x8a,0x4b = sub w8, w9, w10, asr #31
|
209
|
+
0xa3,0x00,0x07,0xcb = sub x3, x5, x7
|
210
|
+
0x7f,0x00,0x05,0xcb = sub xzr, x3, x5
|
211
|
+
0xf4,0x03,0x04,0xcb = sub x20, xzr, x4
|
212
|
+
0xc4,0x00,0x1f,0xcb = sub x4, x6, xzr
|
213
|
+
0xab,0x01,0x0f,0xcb = sub x11, x13, x15
|
214
|
+
0x69,0x28,0x1f,0xcb = sub x9, x3, xzr, lsl #10
|
215
|
+
0xb1,0xff,0x14,0xcb = sub x17, x29, x20, lsl #63
|
216
|
+
0xd5,0x02,0x57,0xcb = sub x21, x22, x23, lsr #0
|
217
|
+
0x38,0x4b,0x5a,0xcb = sub x24, x25, x26, lsr #18
|
218
|
+
0x9b,0xff,0x5d,0xcb = sub x27, x28, x29, lsr #63
|
219
|
+
0x62,0x00,0x84,0xcb = sub x2, x3, x4, asr #0
|
220
|
+
0xc5,0x54,0x87,0xcb = sub x5, x6, x7, asr #21
|
221
|
+
0x28,0xfd,0x8a,0xcb = sub x8, x9, x10, asr #63
|
222
|
+
0xa3,0x00,0x07,0x6b = subs w3, w5, w7
|
223
|
+
0x7f,0x00,0x05,0x6b = subs wzr, w3, w5
|
224
|
+
0xf4,0x03,0x04,0x6b = subs w20, wzr, w4
|
225
|
+
0xc4,0x00,0x1f,0x6b = subs w4, w6, wzr
|
226
|
+
0xab,0x01,0x0f,0x6b = subs w11, w13, w15
|
227
|
+
0x69,0x28,0x1f,0x6b = subs w9, w3, wzr, lsl #10
|
228
|
+
0xb1,0x7f,0x14,0x6b = subs w17, w29, w20, lsl #31
|
229
|
+
0xd5,0x02,0x57,0x6b = subs w21, w22, w23, lsr #0
|
230
|
+
0x38,0x4b,0x5a,0x6b = subs w24, w25, w26, lsr #18
|
231
|
+
0x9b,0x7f,0x5d,0x6b = subs w27, w28, w29, lsr #31
|
232
|
+
0x62,0x00,0x84,0x6b = subs w2, w3, w4, asr #0
|
233
|
+
0xc5,0x54,0x87,0x6b = subs w5, w6, w7, asr #21
|
234
|
+
0x28,0x7d,0x8a,0x6b = subs w8, w9, w10, asr #31
|
235
|
+
0xa3,0x00,0x07,0xeb = subs x3, x5, x7
|
236
|
+
0x7f,0x00,0x05,0xeb = subs xzr, x3, x5
|
237
|
+
0xf4,0x03,0x04,0xeb = subs x20, xzr, x4
|
238
|
+
0xc4,0x00,0x1f,0xeb = subs x4, x6, xzr
|
239
|
+
0xab,0x01,0x0f,0xeb = subs x11, x13, x15
|
240
|
+
0x69,0x28,0x1f,0xeb = subs x9, x3, xzr, lsl #10
|
241
|
+
0xb1,0xff,0x14,0xeb = subs x17, x29, x20, lsl #63
|
242
|
+
0xd5,0x02,0x57,0xeb = subs x21, x22, x23, lsr #0
|
243
|
+
0x38,0x4b,0x5a,0xeb = subs x24, x25, x26, lsr #18
|
244
|
+
0x9b,0xff,0x5d,0xeb = subs x27, x28, x29, lsr #63
|
245
|
+
0x62,0x00,0x84,0xeb = subs x2, x3, x4, asr #0
|
246
|
+
0xc5,0x54,0x87,0xeb = subs x5, x6, x7, asr #21
|
247
|
+
0x28,0xfd,0x8a,0xeb = subs x8, x9, x10, asr #63
|
248
|
+
0x1f,0x00,0x03,0x2b = cmn w0, w3
|
249
|
+
0xff,0x03,0x04,0x2b = cmn wzr, w4
|
250
|
+
0xbf,0x00,0x1f,0x2b = cmn w5, wzr
|
251
|
+
0xdf,0x00,0x07,0x2b = cmn w6, w7
|
252
|
+
0x1f,0x3d,0x09,0x2b = cmn w8, w9, lsl #15
|
253
|
+
0x5f,0x7d,0x0b,0x2b = cmn w10, w11, lsl #31
|
254
|
+
0x9f,0x01,0x4d,0x2b = cmn w12, w13, lsr #0
|
255
|
+
0xdf,0x55,0x4f,0x2b = cmn w14, w15, lsr #21
|
256
|
+
0x1f,0x7e,0x51,0x2b = cmn w16, w17, lsr #31
|
257
|
+
0x5f,0x02,0x93,0x2b = cmn w18, w19, asr #0
|
258
|
+
0x9f,0x5a,0x95,0x2b = cmn w20, w21, asr #22
|
259
|
+
0xdf,0x7e,0x97,0x2b = cmn w22, w23, asr #31
|
260
|
+
0x1f,0x00,0x03,0xab = cmn x0, x3
|
261
|
+
0xff,0x03,0x04,0xab = cmn xzr, x4
|
262
|
+
0xbf,0x00,0x1f,0xab = cmn x5, xzr
|
263
|
+
0xdf,0x00,0x07,0xab = cmn x6, x7
|
264
|
+
0x1f,0x3d,0x09,0xab = cmn x8, x9, lsl #15
|
265
|
+
0x5f,0xfd,0x0b,0xab = cmn x10, x11, lsl #63
|
266
|
+
0x9f,0x01,0x4d,0xab = cmn x12, x13, lsr #0
|
267
|
+
0xdf,0xa5,0x4f,0xab = cmn x14, x15, lsr #41
|
268
|
+
0x1f,0xfe,0x51,0xab = cmn x16, x17, lsr #63
|
269
|
+
0x5f,0x02,0x93,0xab = cmn x18, x19, asr #0
|
270
|
+
0x9f,0xde,0x95,0xab = cmn x20, x21, asr #55
|
271
|
+
0xdf,0xfe,0x97,0xab = cmn x22, x23, asr #63
|
272
|
+
0x1f,0x00,0x03,0x6b = cmp w0, w3
|
273
|
+
0xff,0x03,0x04,0x6b = cmp wzr, w4
|
274
|
+
0xbf,0x00,0x1f,0x6b = cmp w5, wzr
|
275
|
+
0xdf,0x00,0x07,0x6b = cmp w6, w7
|
276
|
+
0x1f,0x3d,0x09,0x6b = cmp w8, w9, lsl #15
|
277
|
+
0x5f,0x7d,0x0b,0x6b = cmp w10, w11, lsl #31
|
278
|
+
0x9f,0x01,0x4d,0x6b = cmp w12, w13, lsr #0
|
279
|
+
0xdf,0x55,0x4f,0x6b = cmp w14, w15, lsr #21
|
280
|
+
0x1f,0x7e,0x51,0x6b = cmp w16, w17, lsr #31
|
281
|
+
0x5f,0x02,0x93,0x6b = cmp w18, w19, asr #0
|
282
|
+
0x9f,0x5a,0x95,0x6b = cmp w20, w21, asr #22
|
283
|
+
0xdf,0x7e,0x97,0x6b = cmp w22, w23, asr #31
|
284
|
+
0x1f,0x00,0x03,0xeb = cmp x0, x3
|
285
|
+
0xff,0x03,0x04,0xeb = cmp xzr, x4
|
286
|
+
0xbf,0x00,0x1f,0xeb = cmp x5, xzr
|
287
|
+
0xdf,0x00,0x07,0xeb = cmp x6, x7
|
288
|
+
0x1f,0x3d,0x09,0xeb = cmp x8, x9, lsl #15
|
289
|
+
0x5f,0xfd,0x0b,0xeb = cmp x10, x11, lsl #63
|
290
|
+
0x9f,0x01,0x4d,0xeb = cmp x12, x13, lsr #0
|
291
|
+
0xdf,0xa5,0x4f,0xeb = cmp x14, x15, lsr #41
|
292
|
+
0x1f,0xfe,0x51,0xeb = cmp x16, x17, lsr #63
|
293
|
+
0x5f,0x02,0x93,0xeb = cmp x18, x19, asr #0
|
294
|
+
0x9f,0xde,0x95,0xeb = cmp x20, x21, asr #55
|
295
|
+
0xdf,0xfe,0x97,0xeb = cmp x22, x23, asr #63
|
296
|
+
0xfd,0x03,0x1e,0x4b = sub w29, wzr, w30
|
297
|
+
0xfe,0x03,0x1f,0x4b = sub w30, wzr, wzr
|
298
|
+
0xff,0x03,0x00,0x4b = sub wzr, wzr, w0
|
299
|
+
0xfc,0x03,0x1b,0x4b = sub w28, wzr, w27
|
300
|
+
0xfa,0x77,0x19,0x4b = sub w26, wzr, w25, lsl #29
|
301
|
+
0xf8,0x7f,0x17,0x4b = sub w24, wzr, w23, lsl #31
|
302
|
+
0xf6,0x03,0x55,0x4b = sub w22, wzr, w21, lsr #0
|
303
|
+
0xf4,0x07,0x53,0x4b = sub w20, wzr, w19, lsr #1
|
304
|
+
0xf2,0x7f,0x51,0x4b = sub w18, wzr, w17, lsr #31
|
305
|
+
0xf0,0x03,0x8f,0x4b = sub w16, wzr, w15, asr #0
|
306
|
+
0xee,0x33,0x8d,0x4b = sub w14, wzr, w13, asr #12
|
307
|
+
0xec,0x7f,0x8b,0x4b = sub w12, wzr, w11, asr #31
|
308
|
+
0xfd,0x03,0x1e,0xcb = sub x29, xzr, x30
|
309
|
+
0xfe,0x03,0x1f,0xcb = sub x30, xzr, xzr
|
310
|
+
0xff,0x03,0x00,0xcb = sub xzr, xzr, x0
|
311
|
+
0xfc,0x03,0x1b,0xcb = sub x28, xzr, x27
|
312
|
+
0xfa,0x77,0x19,0xcb = sub x26, xzr, x25, lsl #29
|
313
|
+
0xf8,0x7f,0x17,0xcb = sub x24, xzr, x23, lsl #31
|
314
|
+
0xf6,0x03,0x55,0xcb = sub x22, xzr, x21, lsr #0
|
315
|
+
0xf4,0x07,0x53,0xcb = sub x20, xzr, x19, lsr #1
|
316
|
+
0xf2,0x7f,0x51,0xcb = sub x18, xzr, x17, lsr #31
|
317
|
+
0xf0,0x03,0x8f,0xcb = sub x16, xzr, x15, asr #0
|
318
|
+
0xee,0x33,0x8d,0xcb = sub x14, xzr, x13, asr #12
|
319
|
+
0xec,0x7f,0x8b,0xcb = sub x12, xzr, x11, asr #31
|
320
|
+
0xfd,0x03,0x1e,0x6b = subs w29, wzr, w30
|
321
|
+
0xfe,0x03,0x1f,0x6b = subs w30, wzr, wzr
|
322
|
+
0xff,0x03,0x00,0x6b = subs wzr, wzr, w0
|
323
|
+
0xfc,0x03,0x1b,0x6b = subs w28, wzr, w27
|
324
|
+
0xfa,0x77,0x19,0x6b = subs w26, wzr, w25, lsl #29
|
325
|
+
0xf8,0x7f,0x17,0x6b = subs w24, wzr, w23, lsl #31
|
326
|
+
0xf6,0x03,0x55,0x6b = subs w22, wzr, w21, lsr #0
|
327
|
+
0xf4,0x07,0x53,0x6b = subs w20, wzr, w19, lsr #1
|
328
|
+
0xf2,0x7f,0x51,0x6b = subs w18, wzr, w17, lsr #31
|
329
|
+
0xf0,0x03,0x8f,0x6b = subs w16, wzr, w15, asr #0
|
330
|
+
0xee,0x33,0x8d,0x6b = subs w14, wzr, w13, asr #12
|
331
|
+
0xec,0x7f,0x8b,0x6b = subs w12, wzr, w11, asr #31
|
332
|
+
0xfd,0x03,0x1e,0xeb = subs x29, xzr, x30
|
333
|
+
0xfe,0x03,0x1f,0xeb = subs x30, xzr, xzr
|
334
|
+
0xff,0x03,0x00,0xeb = subs xzr, xzr, x0
|
335
|
+
0xfc,0x03,0x1b,0xeb = subs x28, xzr, x27
|
336
|
+
0xfa,0x77,0x19,0xeb = subs x26, xzr, x25, lsl #29
|
337
|
+
0xf8,0x7f,0x17,0xeb = subs x24, xzr, x23, lsl #31
|
338
|
+
0xf6,0x03,0x55,0xeb = subs x22, xzr, x21, lsr #0
|
339
|
+
0xf4,0x07,0x53,0xeb = subs x20, xzr, x19, lsr #1
|
340
|
+
0xf2,0x7f,0x51,0xeb = subs x18, xzr, x17, lsr #31
|
341
|
+
0xf0,0x03,0x8f,0xeb = subs x16, xzr, x15, asr #0
|
342
|
+
0xee,0x33,0x8d,0xeb = subs x14, xzr, x13, asr #12
|
343
|
+
0xec,0x7f,0x8b,0xeb = subs x12, xzr, x11, asr #31
|
344
|
+
0x7d,0x03,0x19,0x1a = adc w29, w27, w25
|
345
|
+
0x7f,0x00,0x04,0x1a = adc wzr, w3, w4
|
346
|
+
0xe9,0x03,0x0a,0x1a = adc w9, wzr, w10
|
347
|
+
0x14,0x00,0x1f,0x1a = adc w20, w0, wzr
|
348
|
+
0x7d,0x03,0x19,0x9a = adc x29, x27, x25
|
349
|
+
0x7f,0x00,0x04,0x9a = adc xzr, x3, x4
|
350
|
+
0xe9,0x03,0x0a,0x9a = adc x9, xzr, x10
|
351
|
+
0x14,0x00,0x1f,0x9a = adc x20, x0, xzr
|
352
|
+
0x7d,0x03,0x19,0x3a = adcs w29, w27, w25
|
353
|
+
0x7f,0x00,0x04,0x3a = adcs wzr, w3, w4
|
354
|
+
0xe9,0x03,0x0a,0x3a = adcs w9, wzr, w10
|
355
|
+
0x14,0x00,0x1f,0x3a = adcs w20, w0, wzr
|
356
|
+
0x7d,0x03,0x19,0xba = adcs x29, x27, x25
|
357
|
+
0x7f,0x00,0x04,0xba = adcs xzr, x3, x4
|
358
|
+
0xe9,0x03,0x0a,0xba = adcs x9, xzr, x10
|
359
|
+
0x14,0x00,0x1f,0xba = adcs x20, x0, xzr
|
360
|
+
0x7d,0x03,0x19,0x5a = sbc w29, w27, w25
|
361
|
+
0x7f,0x00,0x04,0x5a = sbc wzr, w3, w4
|
362
|
+
0xe9,0x03,0x0a,0x5a = ngc w9, w10
|
363
|
+
0x14,0x00,0x1f,0x5a = sbc w20, w0, wzr
|
364
|
+
0x7d,0x03,0x19,0xda = sbc x29, x27, x25
|
365
|
+
0x7f,0x00,0x04,0xda = sbc xzr, x3, x4
|
366
|
+
0xe9,0x03,0x0a,0xda = ngc x9, x10
|
367
|
+
0x14,0x00,0x1f,0xda = sbc x20, x0, xzr
|
368
|
+
0x7d,0x03,0x19,0x7a = sbcs w29, w27, w25
|
369
|
+
0x7f,0x00,0x04,0x7a = sbcs wzr, w3, w4
|
370
|
+
0xe9,0x03,0x0a,0x7a = ngcs w9, w10
|
371
|
+
0x14,0x00,0x1f,0x7a = sbcs w20, w0, wzr
|
372
|
+
0x7d,0x03,0x19,0xfa = sbcs x29, x27, x25
|
373
|
+
0x7f,0x00,0x04,0xfa = sbcs xzr, x3, x4
|
374
|
+
0xe9,0x03,0x0a,0xfa = ngcs x9, x10
|
375
|
+
0x14,0x00,0x1f,0xfa = sbcs x20, x0, xzr
|
376
|
+
0xe3,0x03,0x0c,0x5a = ngc w3, w12
|
377
|
+
0xff,0x03,0x09,0x5a = ngc wzr, w9
|
378
|
+
0xf7,0x03,0x1f,0x5a = ngc w23, wzr
|
379
|
+
0xfd,0x03,0x1e,0xda = ngc x29, x30
|
380
|
+
0xff,0x03,0x00,0xda = ngc xzr, x0
|
381
|
+
0xe0,0x03,0x1f,0xda = ngc x0, xzr
|
382
|
+
0xe3,0x03,0x0c,0x7a = ngcs w3, w12
|
383
|
+
0xff,0x03,0x09,0x7a = ngcs wzr, w9
|
384
|
+
0xf7,0x03,0x1f,0x7a = ngcs w23, wzr
|
385
|
+
0xfd,0x03,0x1e,0xfa = ngcs x29, x30
|
386
|
+
0xff,0x03,0x00,0xfa = ngcs xzr, x0
|
387
|
+
0xe0,0x03,0x1f,0xfa = ngcs x0, xzr
|
388
|
+
0x41,0x10,0x43,0x93 = sbfm x1, x2, #3, #4
|
389
|
+
0x83,0xfc,0x7f,0x93 = sbfm x3, x4, #63, #63
|
390
|
+
0xff,0x7f,0x1f,0x13 = sbfm wzr, wzr, #31, #31
|
391
|
+
0x2c,0x01,0x00,0x13 = sbfm w12, w9, #0, #0
|
392
|
+
0xa4,0x28,0x4c,0xd3 = ubfm x4, x5, #12, #10
|
393
|
+
0x9f,0x00,0x40,0xd3 = ubfm xzr, x4, #0, #0
|
394
|
+
0xe4,0x17,0x7f,0xd3 = ubfm x4, xzr, #63, #5
|
395
|
+
0xc5,0xfc,0x4c,0xd3 = ubfm x5, x6, #12, #63
|
396
|
+
0xa4,0x28,0x4c,0xb3 = bfm x4, x5, #12, #10
|
397
|
+
0x9f,0x00,0x40,0xb3 = bfm xzr, x4, #0, #0
|
398
|
+
0xe4,0x17,0x7f,0xb3 = bfm x4, xzr, #63, #5
|
399
|
+
0xc5,0xfc,0x4c,0xb3 = bfm x5, x6, #12, #63
|
400
|
+
0x41,0x1c,0x00,0x13 = sxtb w1, w2
|
401
|
+
0x7f,0x1c,0x40,0x93 = sxtb xzr, w3
|
402
|
+
0x49,0x3d,0x00,0x13 = sxth w9, w10
|
403
|
+
0x20,0x3c,0x40,0x93 = sxth x0, w1
|
404
|
+
0xc3,0x7f,0x40,0x93 = sxtw x3, w30
|
405
|
+
0x41,0x1c,0x00,0x53 = uxtb w1, w2
|
406
|
+
0x7f,0x1c,0x00,0x53 = uxtb xzr, w3
|
407
|
+
0x49,0x3d,0x00,0x53 = uxth w9, w10
|
408
|
+
0x20,0x3c,0x00,0x53 = uxth x0, w1
|
409
|
+
0x43,0x7c,0x00,0x13 = asr w3, w2, #0
|
410
|
+
0x49,0x7d,0x1f,0x13 = asr w9, w10, #31
|
411
|
+
0xb4,0xfe,0x7f,0x93 = asr x20, x21, #63
|
412
|
+
0xe1,0x7f,0x03,0x13 = asr w1, wzr, #3
|
413
|
+
0x43,0x7c,0x00,0x53 = lsr w3, w2, #0
|
414
|
+
0x49,0x7d,0x1f,0x53 = lsr w9, w10, #31
|
415
|
+
0xb4,0xfe,0x7f,0xd3 = lsr x20, x21, #63
|
416
|
+
0xff,0x7f,0x03,0x53 = lsr wzr, wzr, #3
|
417
|
+
0x43,0x7c,0x00,0x53 = lsl w3, w2, #0
|
418
|
+
0x49,0x01,0x01,0x53 = lsl w9, w10, #31
|
419
|
+
0xb4,0x02,0x41,0xd3 = lsl x20, x21, #63
|
420
|
+
0xe1,0x73,0x1d,0x53 = lsl w1, wzr, #3
|
421
|
+
0x49,0x01,0x00,0x13 = sbfiz w9, w10, #0, #1
|
422
|
+
0x62,0x00,0x41,0x93 = sbfiz x2, x3, #63, #1
|
423
|
+
0x93,0xfe,0x40,0x93 = sbfiz x19, x20, #0, #64
|
424
|
+
0x49,0xe9,0x7b,0x93 = sbfiz x9, x10, #5, #59
|
425
|
+
0x49,0x7d,0x00,0x13 = sbfiz w9, w10, #0, #32
|
426
|
+
0x8b,0x01,0x01,0x13 = sbfiz w11, w12, #31, #1
|
427
|
+
0xcd,0x09,0x03,0x13 = sbfiz w13, w14, #29, #3
|
428
|
+
0xff,0x2b,0x76,0x93 = sbfiz xzr, xzr, #10, #11
|
429
|
+
0x49,0x01,0x00,0x13 = sbfx w9, w10, #0, #1
|
430
|
+
0x62,0xfc,0x7f,0x93 = sbfx x2, x3, #63, #1
|
431
|
+
0x93,0xfe,0x40,0x93 = sbfx x19, x20, #0, #64
|
432
|
+
0x49,0xfd,0x45,0x93 = sbfx x9, x10, #5, #59
|
433
|
+
0x49,0x7d,0x00,0x13 = sbfx w9, w10, #0, #32
|
434
|
+
0x8b,0x7d,0x1f,0x13 = sbfx w11, w12, #31, #1
|
435
|
+
0xcd,0x7d,0x1d,0x13 = sbfx w13, w14, #29, #3
|
436
|
+
0xff,0x53,0x4a,0x93 = sbfx xzr, xzr, #10, #11
|
437
|
+
0x49,0x01,0x00,0x33 = bfi w9, w10, #0, #1
|
438
|
+
0x62,0x00,0x41,0xb3 = bfi x2, x3, #63, #1
|
439
|
+
0x93,0xfe,0x40,0xb3 = bfi x19, x20, #0, #64
|
440
|
+
0x49,0xe9,0x7b,0xb3 = bfi x9, x10, #5, #59
|
441
|
+
0x49,0x7d,0x00,0x33 = bfi w9, w10, #0, #32
|
442
|
+
0x8b,0x01,0x01,0x33 = bfi w11, w12, #31, #1
|
443
|
+
0xcd,0x09,0x03,0x33 = bfi w13, w14, #29, #3
|
444
|
+
0xff,0x2b,0x76,0xb3 = bfi xzr, xzr, #10, #11
|
445
|
+
0x49,0x01,0x00,0x33 = bfxil w9, w10, #0, #1
|
446
|
+
0x62,0xfc,0x7f,0xb3 = bfxil x2, x3, #63, #1
|
447
|
+
0x93,0xfe,0x40,0xb3 = bfxil x19, x20, #0, #64
|
448
|
+
0x49,0xfd,0x45,0xb3 = bfxil x9, x10, #5, #59
|
449
|
+
0x49,0x7d,0x00,0x33 = bfxil w9, w10, #0, #32
|
450
|
+
0x8b,0x7d,0x1f,0x33 = bfxil w11, w12, #31, #1
|
451
|
+
0xcd,0x7d,0x1d,0x33 = bfxil w13, w14, #29, #3
|
452
|
+
0xff,0x53,0x4a,0xb3 = bfxil xzr, xzr, #10, #11
|
453
|
+
0x49,0x01,0x00,0x53 = ubfiz w9, w10, #0, #1
|
454
|
+
0x62,0x00,0x41,0xd3 = ubfiz x2, x3, #63, #1
|
455
|
+
0x93,0xfe,0x40,0xd3 = ubfiz x19, x20, #0, #64
|
456
|
+
0x49,0xe9,0x7b,0xd3 = ubfiz x9, x10, #5, #59
|
457
|
+
0x49,0x7d,0x00,0x53 = ubfiz w9, w10, #0, #32
|
458
|
+
0x8b,0x01,0x01,0x53 = ubfiz w11, w12, #31, #1
|
459
|
+
0xcd,0x09,0x03,0x53 = ubfiz w13, w14, #29, #3
|
460
|
+
0xff,0x2b,0x76,0xd3 = ubfiz xzr, xzr, #10, #11
|
461
|
+
0x49,0x01,0x00,0x53 = ubfx w9, w10, #0, #1
|
462
|
+
0x62,0xfc,0x7f,0xd3 = ubfx x2, x3, #63, #1
|
463
|
+
0x93,0xfe,0x40,0xd3 = ubfx x19, x20, #0, #64
|
464
|
+
0x49,0xfd,0x45,0xd3 = ubfx x9, x10, #5, #59
|
465
|
+
0x49,0x7d,0x00,0x53 = ubfx w9, w10, #0, #32
|
466
|
+
0x8b,0x7d,0x1f,0x53 = ubfx w11, w12, #31, #1
|
467
|
+
0xcd,0x7d,0x1d,0x53 = ubfx w13, w14, #29, #3
|
468
|
+
0xff,0x53,0x4a,0xd3 = ubfx xzr, xzr, #10, #11
|
469
|
+
0x05,0x00,0x00,0x34 = cbz w5, #0
|
470
|
+
0xe3,0xff,0xff,0xb5 = cbnz x3, #-4
|
471
|
+
0xf4,0xff,0x7f,0x34 = cbz w20, #1048572
|
472
|
+
0x1f,0x00,0x80,0xb5 = cbnz xzr, #-1048576
|
473
|
+
0x00,0x00,0x00,0x54 = b.eq #0
|
474
|
+
0xeb,0xff,0xff,0x54 = b.lt #-4
|
475
|
+
0xe3,0xff,0x7f,0x54 = b.lo #1048572
|
476
|
+
0x20,0x08,0x5f,0x7a = ccmp w1, #31, #0, eq
|
477
|
+
0x6f,0x28,0x40,0x7a = ccmp w3, #0, #15, hs
|
478
|
+
0xed,0x2b,0x4f,0x7a = ccmp wzr, #15, #13, hs
|
479
|
+
0x20,0xd9,0x5f,0xfa = ccmp x9, #31, #0, le
|
480
|
+
0x6f,0xc8,0x40,0xfa = ccmp x3, #0, #15, gt
|
481
|
+
0xe7,0x1b,0x45,0xfa = ccmp xzr, #5, #7, ne
|
482
|
+
0x20,0x08,0x5f,0x3a = ccmn w1, #31, #0, eq
|
483
|
+
0x6f,0x28,0x40,0x3a = ccmn w3, #0, #15, hs
|
484
|
+
0xed,0x2b,0x4f,0x3a = ccmn wzr, #15, #13, hs
|
485
|
+
0x20,0xd9,0x5f,0xba = ccmn x9, #31, #0, le
|
486
|
+
0x6f,0xc8,0x40,0xba = ccmn x3, #0, #15, gt
|
487
|
+
0xe7,0x1b,0x45,0xba = ccmn xzr, #5, #7, ne
|
488
|
+
0x20,0x00,0x5f,0x7a = ccmp w1, wzr, #0, eq
|
489
|
+
0x6f,0x20,0x40,0x7a = ccmp w3, w0, #15, hs
|
490
|
+
0xed,0x23,0x4f,0x7a = ccmp wzr, w15, #13, hs
|
491
|
+
0x20,0xd1,0x5f,0xfa = ccmp x9, xzr, #0, le
|
492
|
+
0x6f,0xc0,0x40,0xfa = ccmp x3, x0, #15, gt
|
493
|
+
0xe7,0x13,0x45,0xfa = ccmp xzr, x5, #7, ne
|
494
|
+
0x20,0x00,0x5f,0x3a = ccmn w1, wzr, #0, eq
|
495
|
+
0x6f,0x20,0x40,0x3a = ccmn w3, w0, #15, hs
|
496
|
+
0xed,0x23,0x4f,0x3a = ccmn wzr, w15, #13, hs
|
497
|
+
0x20,0xd1,0x5f,0xba = ccmn x9, xzr, #0, le
|
498
|
+
0x6f,0xc0,0x40,0xba = ccmn x3, x0, #15, gt
|
499
|
+
0xe7,0x13,0x45,0xba = ccmn xzr, x5, #7, ne
|
500
|
+
0x01,0x10,0x93,0x1a = csel w1, w0, w19, ne
|
501
|
+
0xbf,0x00,0x89,0x1a = csel wzr, w5, w9, eq
|
502
|
+
0xe9,0xc3,0x9e,0x1a = csel w9, wzr, w30, gt
|
503
|
+
0x81,0x43,0x9f,0x1a = csel w1, w28, wzr, mi
|
504
|
+
0xf3,0xb2,0x9d,0x9a = csel x19, x23, x29, lt
|
505
|
+
0x7f,0xa0,0x84,0x9a = csel xzr, x3, x4, ge
|
506
|
+
0xe5,0x23,0x86,0x9a = csel x5, xzr, x6, hs
|
507
|
+
0x07,0x31,0x9f,0x9a = csel x7, x8, xzr, lo
|
508
|
+
0x01,0x14,0x93,0x1a = csinc w1, w0, w19, ne
|
509
|
+
0xbf,0x04,0x89,0x1a = csinc wzr, w5, w9, eq
|
510
|
+
0xe9,0xc7,0x9e,0x1a = csinc w9, wzr, w30, gt
|
511
|
+
0x81,0x47,0x9f,0x1a = csinc w1, w28, wzr, mi
|
512
|
+
0xf3,0xb6,0x9d,0x9a = csinc x19, x23, x29, lt
|
513
|
+
0x7f,0xa4,0x84,0x9a = csinc xzr, x3, x4, ge
|
514
|
+
0xe5,0x27,0x86,0x9a = csinc x5, xzr, x6, hs
|
515
|
+
0x07,0x35,0x9f,0x9a = csinc x7, x8, xzr, lo
|
516
|
+
0x01,0x10,0x93,0x5a = csinv w1, w0, w19, ne
|
517
|
+
0xbf,0x00,0x89,0x5a = csinv wzr, w5, w9, eq
|
518
|
+
0xe9,0xc3,0x9e,0x5a = csinv w9, wzr, w30, gt
|
519
|
+
0x81,0x43,0x9f,0x5a = csinv w1, w28, wzr, mi
|
520
|
+
0xf3,0xb2,0x9d,0xda = csinv x19, x23, x29, lt
|
521
|
+
0x7f,0xa0,0x84,0xda = csinv xzr, x3, x4, ge
|
522
|
+
0xe5,0x23,0x86,0xda = csinv x5, xzr, x6, hs
|
523
|
+
0x07,0x31,0x9f,0xda = csinv x7, x8, xzr, lo
|
524
|
+
0x01,0x14,0x93,0x5a = csneg w1, w0, w19, ne
|
525
|
+
0xbf,0x04,0x89,0x5a = csneg wzr, w5, w9, eq
|
526
|
+
0xe9,0xc7,0x9e,0x5a = csneg w9, wzr, w30, gt
|
527
|
+
0x81,0x47,0x9f,0x5a = csneg w1, w28, wzr, mi
|
528
|
+
0xf3,0xb6,0x9d,0xda = csneg x19, x23, x29, lt
|
529
|
+
0x7f,0xa4,0x84,0xda = csneg xzr, x3, x4, ge
|
530
|
+
0xe5,0x27,0x86,0xda = csneg x5, xzr, x6, hs
|
531
|
+
0x07,0x35,0x9f,0xda = csneg x7, x8, xzr, lo
|
532
|
+
0xe3,0x17,0x9f,0x1a = csinc w3, wzr, wzr, ne
|
533
|
+
0xe9,0x47,0x9f,0x9a = csinc x9, xzr, xzr, mi
|
534
|
+
0xf4,0x03,0x9f,0x5a = csinv w20, wzr, wzr, eq
|
535
|
+
0xfe,0xb3,0x9f,0xda = csinv x30, xzr, xzr, lt
|
536
|
+
0xa3,0xd4,0x85,0x1a = csinc w3, w5, w5, le
|
537
|
+
0x9f,0xc4,0x84,0x1a = csinc wzr, w4, w4, gt
|
538
|
+
0xe9,0xa7,0x9f,0x1a = csinc w9, wzr, wzr, ge
|
539
|
+
0xa3,0xd4,0x85,0x9a = csinc x3, x5, x5, le
|
540
|
+
0x9f,0xc4,0x84,0x9a = csinc xzr, x4, x4, gt
|
541
|
+
0xe9,0xa7,0x9f,0x9a = csinc x9, xzr, xzr, ge
|
542
|
+
0xa3,0xd0,0x85,0x5a = csinv w3, w5, w5, le
|
543
|
+
0x9f,0xc0,0x84,0x5a = csinv wzr, w4, w4, gt
|
544
|
+
0xe9,0xa3,0x9f,0x5a = csinv w9, wzr, wzr, ge
|
545
|
+
0xa3,0xd0,0x85,0xda = csinv x3, x5, x5, le
|
546
|
+
0x9f,0xc0,0x84,0xda = csinv xzr, x4, x4, gt
|
547
|
+
0xe9,0xa3,0x9f,0xda = csinv x9, xzr, xzr, ge
|
548
|
+
0xa3,0xd4,0x85,0x5a = csneg w3, w5, w5, le
|
549
|
+
0x9f,0xc4,0x84,0x5a = csneg wzr, w4, w4, gt
|
550
|
+
0xe9,0xa7,0x9f,0x5a = csneg w9, wzr, wzr, ge
|
551
|
+
0xa3,0xd4,0x85,0xda = csneg x3, x5, x5, le
|
552
|
+
0x9f,0xc4,0x84,0xda = csneg xzr, x4, x4, gt
|
553
|
+
0xe9,0xa7,0x9f,0xda = csneg x9, xzr, xzr, ge
|
554
|
+
0xe0,0x00,0xc0,0x5a = rbit w0, w7
|
555
|
+
0x72,0x00,0xc0,0xda = rbit x18, x3
|
556
|
+
0x31,0x04,0xc0,0x5a = rev16 w17, w1
|
557
|
+
0x45,0x04,0xc0,0xda = rev16 x5, x2
|
558
|
+
0x12,0x08,0xc0,0x5a = rev w18, w0
|
559
|
+
0x34,0x08,0xc0,0xda = rev32 x20, x1
|
560
|
+
0xf4,0x0b,0xc0,0xda = rev32 x20, xzr
|
561
|
+
0x56,0x0c,0xc0,0xda = rev x22, x2
|
562
|
+
0xf2,0x0f,0xc0,0xda = rev x18, xzr
|
563
|
+
0xe7,0x0b,0xc0,0x5a = rev w7, wzr
|
564
|
+
0x78,0x10,0xc0,0x5a = clz w24, w3
|
565
|
+
0x9a,0x10,0xc0,0xda = clz x26, x4
|
566
|
+
0xa3,0x14,0xc0,0x5a = cls w3, w5
|
567
|
+
0xb4,0x14,0xc0,0xda = cls x20, x5
|
568
|
+
0xf8,0x13,0xc0,0x5a = clz w24, wzr
|
569
|
+
0xf6,0x0f,0xc0,0xda = rev x22, xzr
|
570
|
+
0xe5,0x40,0xd4,0x1a = crc32b w5, w7, w20
|
571
|
+
0xfc,0x47,0xde,0x1a = crc32h w28, wzr, w30
|
572
|
+
0x20,0x48,0xc2,0x1a = crc32w w0, w1, w2
|
573
|
+
0x27,0x4d,0xd4,0x9a = crc32x w7, w9, x20
|
574
|
+
0xa9,0x50,0xc4,0x1a = crc32cb w9, w5, w4
|
575
|
+
0x2d,0x56,0xd9,0x1a = crc32ch w13, w17, w25
|
576
|
+
0x7f,0x58,0xc5,0x1a = crc32cw wzr, w3, w5
|
577
|
+
0x12,0x5e,0xdf,0x9a = crc32cx w18, w16, xzr
|
578
|
+
0xe0,0x08,0xca,0x1a = udiv w0, w7, w10
|
579
|
+
0xc9,0x0a,0xc4,0x9a = udiv x9, x22, x4
|
580
|
+
0xac,0x0e,0xc0,0x1a = sdiv w12, w21, w0
|
581
|
+
0x4d,0x0c,0xc1,0x9a = sdiv x13, x2, x1
|
582
|
+
0x8b,0x21,0xcd,0x1a = lsl w11, w12, w13
|
583
|
+
0xee,0x21,0xd0,0x9a = lsl x14, x15, x16
|
584
|
+
0x51,0x26,0xd3,0x1a = lsr w17, w18, w19
|
585
|
+
0xb4,0x26,0xd6,0x9a = lsr x20, x21, x22
|
586
|
+
0x17,0x2b,0xd9,0x1a = asr w23, w24, w25
|
587
|
+
0x7a,0x2b,0xdc,0x9a = asr x26, x27, x28
|
588
|
+
0x20,0x2c,0xc2,0x1a = ror w0, w1, w2
|
589
|
+
0x83,0x2c,0xc5,0x9a = ror x3, x4, x5
|
590
|
+
0xe6,0x20,0xc8,0x1a = lsl w6, w7, w8
|
591
|
+
0x49,0x21,0xcb,0x9a = lsl x9, x10, x11
|
592
|
+
0xac,0x25,0xce,0x1a = lsr w12, w13, w14
|
593
|
+
0x0f,0x26,0xd1,0x9a = lsr x15, x16, x17
|
594
|
+
0x72,0x2a,0xd4,0x1a = asr w18, w19, w20
|
595
|
+
0xd5,0x2a,0xd7,0x9a = asr x21, x22, x23
|
596
|
+
0x38,0x2f,0xda,0x1a = ror w24, w25, w26
|
597
|
+
0x9b,0x2f,0xdd,0x9a = ror x27, x28, x29
|
598
|
+
0x61,0x10,0x07,0x1b = madd w1, w3, w7, w4
|
599
|
+
0x1f,0x2c,0x09,0x1b = madd wzr, w0, w9, w11
|
600
|
+
0xed,0x13,0x04,0x1b = madd w13, wzr, w4, w4
|
601
|
+
0xd3,0x77,0x1f,0x1b = madd w19, w30, wzr, w29
|
602
|
+
0xa4,0x7c,0x06,0x1b = mul w4, w5, w6
|
603
|
+
0x61,0x10,0x07,0x9b = madd x1, x3, x7, x4
|
604
|
+
0x1f,0x2c,0x09,0x9b = madd xzr, x0, x9, x11
|
605
|
+
0xed,0x13,0x04,0x9b = madd x13, xzr, x4, x4
|
606
|
+
0xd3,0x77,0x1f,0x9b = madd x19, x30, xzr, x29
|
607
|
+
0xa4,0x7c,0x06,0x9b = mul x4, x5, x6
|
608
|
+
0x61,0x90,0x07,0x1b = msub w1, w3, w7, w4
|
609
|
+
0x1f,0xac,0x09,0x1b = msub wzr, w0, w9, w11
|
610
|
+
0xed,0x93,0x04,0x1b = msub w13, wzr, w4, w4
|
611
|
+
0xd3,0xf7,0x1f,0x1b = msub w19, w30, wzr, w29
|
612
|
+
0xa4,0xfc,0x06,0x1b = mneg w4, w5, w6
|
613
|
+
0x61,0x90,0x07,0x9b = msub x1, x3, x7, x4
|
614
|
+
0x1f,0xac,0x09,0x9b = msub xzr, x0, x9, x11
|
615
|
+
0xed,0x93,0x04,0x9b = msub x13, xzr, x4, x4
|
616
|
+
0xd3,0xf7,0x1f,0x9b = msub x19, x30, xzr, x29
|
617
|
+
0xa4,0xfc,0x06,0x9b = mneg x4, x5, x6
|
618
|
+
0xa3,0x24,0x22,0x9b = smaddl x3, w5, w2, x9
|
619
|
+
0x5f,0x31,0x2b,0x9b = smaddl xzr, w10, w11, x12
|
620
|
+
0xed,0x3f,0x2e,0x9b = smaddl x13, wzr, w14, x15
|
621
|
+
0x30,0x4a,0x3f,0x9b = smaddl x16, w17, wzr, x18
|
622
|
+
0x93,0x7e,0x35,0x9b = smull x19, w20, w21
|
623
|
+
0xa3,0xa4,0x22,0x9b = smsubl x3, w5, w2, x9
|
624
|
+
0x5f,0xb1,0x2b,0x9b = smsubl xzr, w10, w11, x12
|
625
|
+
0xed,0xbf,0x2e,0x9b = smsubl x13, wzr, w14, x15
|
626
|
+
0x30,0xca,0x3f,0x9b = smsubl x16, w17, wzr, x18
|
627
|
+
0x93,0xfe,0x35,0x9b = smnegl x19, w20, w21
|
628
|
+
0xa3,0x24,0xa2,0x9b = umaddl x3, w5, w2, x9
|
629
|
+
0x5f,0x31,0xab,0x9b = umaddl xzr, w10, w11, x12
|
630
|
+
0xed,0x3f,0xae,0x9b = umaddl x13, wzr, w14, x15
|
631
|
+
0x30,0x4a,0xbf,0x9b = umaddl x16, w17, wzr, x18
|
632
|
+
0x93,0x7e,0xb5,0x9b = umull x19, w20, w21
|
633
|
+
0xa3,0xa4,0xa2,0x9b = umsubl x3, w5, w2, x9
|
634
|
+
0x5f,0xb1,0xab,0x9b = umsubl xzr, w10, w11, x12
|
635
|
+
0xed,0xbf,0xae,0x9b = umsubl x13, wzr, w14, x15
|
636
|
+
0x30,0xca,0xbf,0x9b = umsubl x16, w17, wzr, x18
|
637
|
+
0x93,0xfe,0xb5,0x9b = umnegl x19, w20, w21
|
638
|
+
0xbe,0x7f,0x5c,0x9b = smulh x30, x29, x28
|
639
|
+
0x7f,0x7f,0x5a,0x9b = smulh xzr, x27, x26
|
640
|
+
0xf9,0x7f,0x58,0x9b = smulh x25, xzr, x24
|
641
|
+
0xd7,0x7e,0x5f,0x9b = smulh x23, x22, xzr
|
642
|
+
0xbe,0x7f,0xdc,0x9b = umulh x30, x29, x28
|
643
|
+
0x7f,0x7f,0xda,0x9b = umulh xzr, x27, x26
|
644
|
+
0xf9,0x7f,0xd8,0x9b = umulh x25, xzr, x24
|
645
|
+
0xd7,0x7e,0xdf,0x9b = umulh x23, x22, xzr
|
646
|
+
0x83,0x7c,0x05,0x1b = mul w3, w4, w5
|
647
|
+
0xdf,0x7c,0x07,0x1b = mul wzr, w6, w7
|
648
|
+
0xe8,0x7f,0x09,0x1b = mul w8, wzr, w9
|
649
|
+
0x6a,0x7d,0x1f,0x1b = mul w10, w11, wzr
|
650
|
+
0xac,0x7d,0x0e,0x9b = mul x12, x13, x14
|
651
|
+
0xff,0x7d,0x10,0x9b = mul xzr, x15, x16
|
652
|
+
0xf1,0x7f,0x12,0x9b = mul x17, xzr, x18
|
653
|
+
0x93,0x7e,0x1f,0x9b = mul x19, x20, xzr
|
654
|
+
0xd5,0xfe,0x17,0x1b = mneg w21, w22, w23
|
655
|
+
0x1f,0xff,0x19,0x1b = mneg wzr, w24, w25
|
656
|
+
0xfa,0xff,0x1b,0x1b = mneg w26, wzr, w27
|
657
|
+
0xbc,0xff,0x1f,0x1b = mneg w28, w29, wzr
|
658
|
+
0xab,0x7d,0x31,0x9b = smull x11, w13, w17
|
659
|
+
0xab,0x7d,0xb1,0x9b = umull x11, w13, w17
|
660
|
+
0xab,0xfd,0x31,0x9b = smnegl x11, w13, w17
|
661
|
+
0xab,0xfd,0xb1,0x9b = umnegl x11, w13, w17
|
662
|
+
0x01,0x00,0x00,0xd4 = svc #0
|
663
|
+
0xe1,0xff,0x1f,0xd4 = svc #65535
|
664
|
+
0x22,0x00,0x00,0xd4 = hvc #1
|
665
|
+
0x03,0xdc,0x05,0xd4 = smc #12000
|
666
|
+
0x80,0x01,0x20,0xd4 = brk #12
|
667
|
+
0x60,0x0f,0x40,0xd4 = hlt #123
|
668
|
+
0x41,0x05,0xa0,0xd4 = dcps1 #42
|
669
|
+
0x22,0x01,0xa0,0xd4 = dcps2 #9
|
670
|
+
0x03,0x7d,0xa0,0xd4 = dcps3 #1000
|
671
|
+
0x01,0x00,0xa0,0xd4 = dcps1
|
672
|
+
0x02,0x00,0xa0,0xd4 = dcps2
|
673
|
+
0x03,0x00,0xa0,0xd4 = dcps3
|
674
|
+
0xa3,0x00,0x87,0x13 = extr w3, w5, w7, #0
|
675
|
+
0xab,0x7d,0x91,0x13 = extr w11, w13, w17, #31
|
676
|
+
0xa3,0x3c,0xc7,0x93 = extr x3, x5, x7, #15
|
677
|
+
0xab,0xfd,0xd1,0x93 = extr x11, x13, x17, #63
|
678
|
+
0xf3,0x62,0xd7,0x93 = extr x19, x23, x23, #24
|
679
|
+
0xfd,0xff,0xdf,0x93 = extr x29, xzr, xzr, #63
|
680
|
+
0xa9,0x7d,0x8d,0x13 = extr w9, w13, w13, #31
|
681
|
+
0x60,0x20,0x25,0x1e = fcmp s3, s5
|
682
|
+
0xe8,0x23,0x20,0x1e = fcmp s31, #0.0
|
683
|
+
0xb0,0x23,0x3e,0x1e = fcmpe s29, s30
|
684
|
+
0xf8,0x21,0x20,0x1e = fcmpe s15, #0.0
|
685
|
+
0x80,0x20,0x6c,0x1e = fcmp d4, d12
|
686
|
+
0xe8,0x22,0x60,0x1e = fcmp d23, #0.0
|
687
|
+
0x50,0x23,0x76,0x1e = fcmpe d26, d22
|
688
|
+
0xb8,0x23,0x60,0x1e = fcmpe d29, #0.0
|
689
|
+
0x20,0x04,0x3f,0x1e = fccmp s1, s31, #0, eq
|
690
|
+
0x6f,0x24,0x20,0x1e = fccmp s3, s0, #15, hs
|
691
|
+
0xed,0x27,0x2f,0x1e = fccmp s31, s15, #13, hs
|
692
|
+
0x20,0xd5,0x7f,0x1e = fccmp d9, d31, #0, le
|
693
|
+
0x6f,0xc4,0x60,0x1e = fccmp d3, d0, #15, gt
|
694
|
+
0xe7,0x17,0x65,0x1e = fccmp d31, d5, #7, ne
|
695
|
+
0x30,0x04,0x3f,0x1e = fccmpe s1, s31, #0, eq
|
696
|
+
0x7f,0x24,0x20,0x1e = fccmpe s3, s0, #15, hs
|
697
|
+
0xfd,0x27,0x2f,0x1e = fccmpe s31, s15, #13, hs
|
698
|
+
0x30,0xd5,0x7f,0x1e = fccmpe d9, d31, #0, le
|
699
|
+
0x7f,0xc4,0x60,0x1e = fccmpe d3, d0, #15, gt
|
700
|
+
0xf7,0x17,0x65,0x1e = fccmpe d31, d5, #7, ne
|
701
|
+
0x83,0x5e,0x29,0x1e = fcsel s3, s20, s9, pl
|
702
|
+
0x49,0x4d,0x6b,0x1e = fcsel d9, d10, d11, mi
|
703
|
+
0x20,0x40,0x20,0x1e = fmov s0, s1
|
704
|
+
0x62,0xc0,0x20,0x1e = fabs s2, s3
|
705
|
+
0xa4,0x40,0x21,0x1e = fneg s4, s5
|
706
|
+
0xe6,0xc0,0x21,0x1e = fsqrt s6, s7
|
707
|
+
0x28,0xc1,0x22,0x1e = fcvt d8, s9
|
708
|
+
0x6a,0xc1,0x23,0x1e = fcvt h10, s11
|
709
|
+
0xac,0x41,0x24,0x1e = frintn s12, s13
|
710
|
+
0xee,0xc1,0x24,0x1e = frintp s14, s15
|
711
|
+
0x30,0x42,0x25,0x1e = frintm s16, s17
|
712
|
+
0x72,0xc2,0x25,0x1e = frintz s18, s19
|
713
|
+
0xb4,0x42,0x26,0x1e = frinta s20, s21
|
714
|
+
0xf6,0x42,0x27,0x1e = frintx s22, s23
|
715
|
+
0x38,0xc3,0x27,0x1e = frinti s24, s25
|
716
|
+
0x20,0x40,0x60,0x1e = fmov d0, d1
|
717
|
+
0x62,0xc0,0x60,0x1e = fabs d2, d3
|
718
|
+
0xa4,0x40,0x61,0x1e = fneg d4, d5
|
719
|
+
0xe6,0xc0,0x61,0x1e = fsqrt d6, d7
|
720
|
+
0x28,0x41,0x62,0x1e = fcvt s8, d9
|
721
|
+
0x6a,0xc1,0x63,0x1e = fcvt h10, d11
|
722
|
+
0xac,0x41,0x64,0x1e = frintn d12, d13
|
723
|
+
0xee,0xc1,0x64,0x1e = frintp d14, d15
|
724
|
+
0x30,0x42,0x65,0x1e = frintm d16, d17
|
725
|
+
0x72,0xc2,0x65,0x1e = frintz d18, d19
|
726
|
+
0xb4,0x42,0x66,0x1e = frinta d20, d21
|
727
|
+
0xf6,0x42,0x67,0x1e = frintx d22, d23
|
728
|
+
0x38,0xc3,0x67,0x1e = frinti d24, d25
|
729
|
+
0x7a,0x43,0xe2,0x1e = fcvt s26, h27
|
730
|
+
0xbc,0xc3,0xe2,0x1e = fcvt d28, h29
|
731
|
+
0x74,0x0a,0x31,0x1e = fmul s20, s19, s17
|
732
|
+
0x41,0x18,0x23,0x1e = fdiv s1, s2, s3
|
733
|
+
0xa4,0x28,0x26,0x1e = fadd s4, s5, s6
|
734
|
+
0x07,0x39,0x29,0x1e = fsub s7, s8, s9
|
735
|
+
0x6a,0x49,0x2c,0x1e = fmax s10, s11, s12
|
736
|
+
0xcd,0x59,0x2f,0x1e = fmin s13, s14, s15
|
737
|
+
0x30,0x6a,0x32,0x1e = fmaxnm s16, s17, s18
|
738
|
+
0x93,0x7a,0x35,0x1e = fminnm s19, s20, s21
|
739
|
+
0xf6,0x8a,0x38,0x1e = fnmul s22, s23, s24
|
740
|
+
0x74,0x0a,0x71,0x1e = fmul d20, d19, d17
|
741
|
+
0x41,0x18,0x63,0x1e = fdiv d1, d2, d3
|
742
|
+
0xa4,0x28,0x66,0x1e = fadd d4, d5, d6
|
743
|
+
0x07,0x39,0x69,0x1e = fsub d7, d8, d9
|
744
|
+
0x6a,0x49,0x6c,0x1e = fmax d10, d11, d12
|
745
|
+
0xcd,0x59,0x6f,0x1e = fmin d13, d14, d15
|
746
|
+
0x30,0x6a,0x72,0x1e = fmaxnm d16, d17, d18
|
747
|
+
0x93,0x7a,0x75,0x1e = fminnm d19, d20, d21
|
748
|
+
0xf6,0x8a,0x78,0x1e = fnmul d22, d23, d24
|
749
|
+
0xa3,0x7c,0x06,0x1f = fmadd s3, s5, s6, s31
|
750
|
+
0xa3,0x5d,0x40,0x1f = fmadd d3, d13, d0, d23
|
751
|
+
0xa3,0xfc,0x06,0x1f = fmsub s3, s5, s6, s31
|
752
|
+
0xa3,0xdd,0x40,0x1f = fmsub d3, d13, d0, d23
|
753
|
+
0xa3,0x7c,0x26,0x1f = fnmadd s3, s5, s6, s31
|
754
|
+
0xa3,0x5d,0x60,0x1f = fnmadd d3, d13, d0, d23
|
755
|
+
0xa3,0xfc,0x26,0x1f = fnmsub s3, s5, s6, s31
|
756
|
+
0xa3,0xdd,0x60,0x1f = fnmsub d3, d13, d0, d23
|
757
|
+
0xa3,0xfc,0x18,0x1e = fcvtzs w3, s5, #1
|
758
|
+
0x9f,0xce,0x18,0x1e = fcvtzs wzr, s20, #13
|
759
|
+
0x13,0x80,0x18,0x1e = fcvtzs w19, s0, #32
|
760
|
+
0xa3,0xfc,0x18,0x9e = fcvtzs x3, s5, #1
|
761
|
+
0xcc,0x4f,0x18,0x9e = fcvtzs x12, s30, #45
|
762
|
+
0x13,0x00,0x18,0x9e = fcvtzs x19, s0, #64
|
763
|
+
0xa3,0xfc,0x58,0x1e = fcvtzs w3, d5, #1
|
764
|
+
0x9f,0xce,0x58,0x1e = fcvtzs wzr, d20, #13
|
765
|
+
0x13,0x80,0x58,0x1e = fcvtzs w19, d0, #32
|
766
|
+
0xa3,0xfc,0x58,0x9e = fcvtzs x3, d5, #1
|
767
|
+
0xcc,0x4f,0x58,0x9e = fcvtzs x12, d30, #45
|
768
|
+
0x13,0x00,0x58,0x9e = fcvtzs x19, d0, #64
|
769
|
+
0xa3,0xfc,0x19,0x1e = fcvtzu w3, s5, #1
|
770
|
+
0x9f,0xce,0x19,0x1e = fcvtzu wzr, s20, #13
|
771
|
+
0x13,0x80,0x19,0x1e = fcvtzu w19, s0, #32
|
772
|
+
0xa3,0xfc,0x19,0x9e = fcvtzu x3, s5, #1
|
773
|
+
0xcc,0x4f,0x19,0x9e = fcvtzu x12, s30, #45
|
774
|
+
0x13,0x00,0x19,0x9e = fcvtzu x19, s0, #64
|
775
|
+
0xa3,0xfc,0x59,0x1e = fcvtzu w3, d5, #1
|
776
|
+
0x9f,0xce,0x59,0x1e = fcvtzu wzr, d20, #13
|
777
|
+
0x13,0x80,0x59,0x1e = fcvtzu w19, d0, #32
|
778
|
+
0xa3,0xfc,0x59,0x9e = fcvtzu x3, d5, #1
|
779
|
+
0xcc,0x4f,0x59,0x9e = fcvtzu x12, d30, #45
|
780
|
+
0x13,0x00,0x59,0x9e = fcvtzu x19, d0, #64
|
781
|
+
0x77,0xfe,0x02,0x1e = scvtf s23, w19, #1
|
782
|
+
0xff,0xb3,0x02,0x1e = scvtf s31, wzr, #20
|
783
|
+
0x0e,0x80,0x02,0x1e = scvtf s14, w0, #32
|
784
|
+
0x77,0xfe,0x02,0x9e = scvtf s23, x19, #1
|
785
|
+
0xff,0xb3,0x02,0x9e = scvtf s31, xzr, #20
|
786
|
+
0x0e,0x00,0x02,0x9e = scvtf s14, x0, #64
|
787
|
+
0x77,0xfe,0x42,0x1e = scvtf d23, w19, #1
|
788
|
+
0xff,0xb3,0x42,0x1e = scvtf d31, wzr, #20
|
789
|
+
0x0e,0x80,0x42,0x1e = scvtf d14, w0, #32
|
790
|
+
0x77,0xfe,0x42,0x9e = scvtf d23, x19, #1
|
791
|
+
0xff,0xb3,0x42,0x9e = scvtf d31, xzr, #20
|
792
|
+
0x0e,0x00,0x42,0x9e = scvtf d14, x0, #64
|
793
|
+
0x77,0xfe,0x03,0x1e = ucvtf s23, w19, #1
|
794
|
+
0xff,0xb3,0x03,0x1e = ucvtf s31, wzr, #20
|
795
|
+
0x0e,0x80,0x03,0x1e = ucvtf s14, w0, #32
|
796
|
+
0x77,0xfe,0x03,0x9e = ucvtf s23, x19, #1
|
797
|
+
0xff,0xb3,0x03,0x9e = ucvtf s31, xzr, #20
|
798
|
+
0x0e,0x00,0x03,0x9e = ucvtf s14, x0, #64
|
799
|
+
0x77,0xfe,0x43,0x1e = ucvtf d23, w19, #1
|
800
|
+
0xff,0xb3,0x43,0x1e = ucvtf d31, wzr, #20
|
801
|
+
0x0e,0x80,0x43,0x1e = ucvtf d14, w0, #32
|
802
|
+
0x77,0xfe,0x43,0x9e = ucvtf d23, x19, #1
|
803
|
+
0xff,0xb3,0x43,0x9e = ucvtf d31, xzr, #20
|
804
|
+
0x0e,0x00,0x43,0x9e = ucvtf d14, x0, #64
|
805
|
+
0xe3,0x03,0x20,0x1e = fcvtns w3, s31
|
806
|
+
0x9f,0x01,0x20,0x9e = fcvtns xzr, s12
|
807
|
+
0x9f,0x01,0x21,0x1e = fcvtnu wzr, s12
|
808
|
+
0x00,0x00,0x21,0x9e = fcvtnu x0, s0
|
809
|
+
0x3f,0x01,0x28,0x1e = fcvtps wzr, s9
|
810
|
+
0x8c,0x02,0x28,0x9e = fcvtps x12, s20
|
811
|
+
0xfe,0x02,0x29,0x1e = fcvtpu w30, s23
|
812
|
+
0x7d,0x00,0x29,0x9e = fcvtpu x29, s3
|
813
|
+
0x62,0x00,0x30,0x1e = fcvtms w2, s3
|
814
|
+
0xa4,0x00,0x30,0x9e = fcvtms x4, s5
|
815
|
+
0xe6,0x00,0x31,0x1e = fcvtmu w6, s7
|
816
|
+
0x28,0x01,0x31,0x9e = fcvtmu x8, s9
|
817
|
+
0x6a,0x01,0x38,0x1e = fcvtzs w10, s11
|
818
|
+
0xac,0x01,0x38,0x9e = fcvtzs x12, s13
|
819
|
+
0xee,0x01,0x39,0x1e = fcvtzu w14, s15
|
820
|
+
0x0f,0x02,0x39,0x9e = fcvtzu x15, s16
|
821
|
+
0x51,0x02,0x22,0x1e = scvtf s17, w18
|
822
|
+
0x93,0x02,0x22,0x9e = scvtf s19, x20
|
823
|
+
0xd5,0x02,0x23,0x1e = ucvtf s21, w22
|
824
|
+
0x17,0x03,0x22,0x9e = scvtf s23, x24
|
825
|
+
0x59,0x03,0x24,0x1e = fcvtas w25, s26
|
826
|
+
0x9b,0x03,0x24,0x9e = fcvtas x27, s28
|
827
|
+
0xdd,0x03,0x25,0x1e = fcvtau w29, s30
|
828
|
+
0x1f,0x00,0x25,0x9e = fcvtau xzr, s0
|
829
|
+
0xe3,0x03,0x60,0x1e = fcvtns w3, d31
|
830
|
+
0x9f,0x01,0x60,0x9e = fcvtns xzr, d12
|
831
|
+
0x9f,0x01,0x61,0x1e = fcvtnu wzr, d12
|
832
|
+
0x00,0x00,0x61,0x9e = fcvtnu x0, d0
|
833
|
+
0x3f,0x01,0x68,0x1e = fcvtps wzr, d9
|
834
|
+
0x8c,0x02,0x68,0x9e = fcvtps x12, d20
|
835
|
+
0xfe,0x02,0x69,0x1e = fcvtpu w30, d23
|
836
|
+
0x7d,0x00,0x69,0x9e = fcvtpu x29, d3
|
837
|
+
0x62,0x00,0x70,0x1e = fcvtms w2, d3
|
838
|
+
0xa4,0x00,0x70,0x9e = fcvtms x4, d5
|
839
|
+
0xe6,0x00,0x71,0x1e = fcvtmu w6, d7
|
840
|
+
0x28,0x01,0x71,0x9e = fcvtmu x8, d9
|
841
|
+
0x6a,0x01,0x78,0x1e = fcvtzs w10, d11
|
842
|
+
0xac,0x01,0x78,0x9e = fcvtzs x12, d13
|
843
|
+
0xee,0x01,0x79,0x1e = fcvtzu w14, d15
|
844
|
+
0x0f,0x02,0x79,0x9e = fcvtzu x15, d16
|
845
|
+
0x51,0x02,0x62,0x1e = scvtf d17, w18
|
846
|
+
0x93,0x02,0x62,0x9e = scvtf d19, x20
|
847
|
+
0xd5,0x02,0x63,0x1e = ucvtf d21, w22
|
848
|
+
0x17,0x03,0x63,0x9e = ucvtf d23, x24
|
849
|
+
0x59,0x03,0x64,0x1e = fcvtas w25, d26
|
850
|
+
0x9b,0x03,0x64,0x9e = fcvtas x27, d28
|
851
|
+
0xdd,0x03,0x65,0x1e = fcvtau w29, d30
|
852
|
+
0x1f,0x00,0x65,0x9e = fcvtau xzr, d0
|
853
|
+
0x23,0x01,0x26,0x1e = fmov w3, s9
|
854
|
+
0x69,0x00,0x27,0x1e = fmov s9, w3
|
855
|
+
0xf4,0x03,0x66,0x9e = fmov x20, d31
|
856
|
+
0xe1,0x01,0x67,0x9e = fmov d1, x15
|
857
|
+
0x83,0x01,0xae,0x9e = fmov x3, v12.d[1]
|
858
|
+
0x61,0x02,0xaf,0x9e = fmov v1.d[1], x19
|
859
|
+
0xe3,0x03,0xaf,0x9e = fmov v3.d[1], xzr
|
860
|
+
0x02,0x10,0x28,0x1e = fmov s2, #0.12500000
|
861
|
+
0x03,0x10,0x2e,0x1e = fmov s3, #1.00000000
|
862
|
+
0x1e,0x10,0x66,0x1e = fmov d30, #16.00000000
|
863
|
+
0x04,0x30,0x2e,0x1e = fmov s4, #1.06250000
|
864
|
+
0x0a,0xf0,0x6f,0x1e = fmov d10, #1.93750000
|
865
|
+
0x0c,0x10,0x3e,0x1e = fmov s12, #-1.00000000
|
866
|
+
0x10,0x30,0x64,0x1e = fmov d16, #8.50000000
|
867
|
+
0xe0,0xff,0x7f,0x18 = ldr w0, #1048572
|
868
|
+
0x0a,0x00,0x80,0x58 = ldr x10, #-1048576
|
869
|
+
0x02,0x10,0x28,0x1e = fmov s2, #0.12500000
|
870
|
+
0x03,0x10,0x2e,0x1e = fmov s3, #1.00000000
|
871
|
+
0x1e,0x10,0x66,0x1e = fmov d30, #16.00000000
|
872
|
+
0x04,0x30,0x2e,0x1e = fmov s4, #1.06250000
|
873
|
+
0x0a,0xf0,0x6f,0x1e = fmov d10, #1.93750000
|
874
|
+
0x0c,0x10,0x3e,0x1e = fmov s12, #-1.00000000
|
875
|
+
0x10,0x30,0x64,0x1e = fmov d16, #8.50000000
|
876
|
+
0x62,0x7c,0x01,0x08 = stxrb w1, w2, [x3]
|
877
|
+
0x83,0x7c,0x02,0x48 = stxrh w2, w3, [x4]
|
878
|
+
0xe4,0x7f,0x1f,0x88 = stxr wzr, w4, [sp]
|
879
|
+
0xe6,0x7c,0x05,0xc8 = stxr w5, x6, [x7]
|
880
|
+
0x27,0x7d,0x5f,0x08 = ldxrb w7, [x9]
|
881
|
+
0x5f,0x7d,0x5f,0x48 = ldxrh wzr, [x10]
|
882
|
+
0xe9,0x7f,0x5f,0x88 = ldxr w9, [sp]
|
883
|
+
0x6a,0x7d,0x5f,0xc8 = ldxr x10, [x11]
|
884
|
+
0xcc,0x35,0x2b,0x88 = stxp w11, w12, w13, [x14]
|
885
|
+
0xf7,0x39,0x3f,0xc8 = stxp wzr, x23, x14, [x15]
|
886
|
+
0xec,0x7f,0x7f,0x88 = ldxp w12, wzr, [sp]
|
887
|
+
0xed,0x39,0x7f,0xc8 = ldxp x13, x14, [x15]
|
888
|
+
0x0f,0xfe,0x0e,0x08 = stlxrb w14, w15, [x16]
|
889
|
+
0x30,0xfe,0x0f,0x48 = stlxrh w15, w16, [x17]
|
890
|
+
0xf1,0xff,0x1f,0x88 = stlxr wzr, w17, [sp]
|
891
|
+
0x93,0xfe,0x12,0xc8 = stlxr w18, x19, [x20]
|
892
|
+
0xb3,0xfe,0x5f,0x08 = ldaxrb w19, [x21]
|
893
|
+
0xf4,0xff,0x5f,0x48 = ldaxrh w20, [sp]
|
894
|
+
0xdf,0xfe,0x5f,0x88 = ldaxr wzr, [x22]
|
895
|
+
0xf5,0xfe,0x5f,0xc8 = ldaxr x21, [x23]
|
896
|
+
0x16,0xdf,0x3f,0x88 = stlxp wzr, w22, w23, [x24]
|
897
|
+
0xfa,0xef,0x39,0xc8 = stlxp w25, x26, x27, [sp]
|
898
|
+
0xfa,0xff,0x7f,0x88 = ldaxp w26, wzr, [sp]
|
899
|
+
0xdb,0xf3,0x7f,0xc8 = ldaxp x27, x28, [x30]
|
900
|
+
0xfb,0xff,0x9f,0x08 = stlrb w27, [sp]
|
901
|
+
0x1c,0xfc,0x9f,0x48 = stlrh w28, [x0]
|
902
|
+
0x3f,0xfc,0x9f,0x88 = stlr wzr, [x1]
|
903
|
+
0x5e,0xfc,0x9f,0xc8 = stlr x30, [x2]
|
904
|
+
0xfd,0xff,0xdf,0x08 = ldarb w29, [sp]
|
905
|
+
0x1e,0xfc,0xdf,0x48 = ldarh w30, [x0]
|
906
|
+
0x3f,0xfc,0xdf,0x88 = ldar wzr, [x1]
|
907
|
+
0x41,0xfc,0xdf,0xc8 = ldar x1, [x2]
|
908
|
+
0x16,0xdf,0x3f,0x88 = stlxp wzr, w22, w23, [x24]
|
909
|
+
0xe9,0x03,0x00,0x38 = sturb w9, [sp]
|
910
|
+
0x9f,0xf1,0x0f,0x78 = sturh wzr, [x12, #255]
|
911
|
+
0x10,0x00,0x10,0xb8 = stur w16, [x0, #-256]
|
912
|
+
0xdc,0x11,0x00,0xf8 = stur x28, [x14, #1]
|
913
|
+
0x81,0xf2,0x4f,0x38 = ldurb w1, [x20, #255]
|
914
|
+
0x34,0xf0,0x4f,0x78 = ldurh w20, [x1, #255]
|
915
|
+
0xec,0xf3,0x4f,0xb8 = ldur w12, [sp, #255]
|
916
|
+
0x9f,0xf1,0x4f,0xf8 = ldur xzr, [x12, #255]
|
917
|
+
0xe9,0x00,0x90,0x38 = ldursb x9, [x7, #-256]
|
918
|
+
0x71,0x02,0x90,0x78 = ldursh x17, [x19, #-256]
|
919
|
+
0xf4,0x01,0x90,0xb8 = ldursw x20, [x15, #-256]
|
920
|
+
0x4d,0x00,0x80,0xb8 = ldursw x13, [x2]
|
921
|
+
0xe2,0x03,0x90,0xf8 = prfum pldl2keep, [sp, #-256]
|
922
|
+
0x33,0x00,0xd0,0x38 = ldursb w19, [x1, #-256]
|
923
|
+
0xaf,0x02,0xd0,0x78 = ldursh w15, [x21, #-256]
|
924
|
+
0xe0,0x13,0x00,0x3c = stur b0, [sp, #1]
|
925
|
+
0x8c,0xf1,0x1f,0x7c = stur h12, [x12, #-1]
|
926
|
+
0x0f,0xf0,0x0f,0xbc = stur s15, [x0, #255]
|
927
|
+
0xbf,0x90,0x01,0xfc = stur d31, [x5, #25]
|
928
|
+
0xa9,0x00,0x80,0x3c = stur q9, [x5]
|
929
|
+
0xe3,0x03,0x40,0x3c = ldur b3, [sp]
|
930
|
+
0x85,0x00,0x50,0x7c = ldur h5, [x4, #-256]
|
931
|
+
0x87,0xf1,0x5f,0xbc = ldur s7, [x12, #-1]
|
932
|
+
0x6b,0x42,0x40,0xfc = ldur d11, [x19, #4]
|
933
|
+
0x2d,0x20,0xc0,0x3c = ldur q13, [x1, #2]
|
934
|
+
0x00,0x00,0x40,0xf9 = ldr x0, [x0]
|
935
|
+
0xa4,0x03,0x40,0xf9 = ldr x4, [x29]
|
936
|
+
0x9e,0xfd,0x7f,0xf9 = ldr x30, [x12, #32760]
|
937
|
+
0xf4,0x07,0x40,0xf9 = ldr x20, [sp, #8]
|
938
|
+
0xff,0x03,0x40,0xf9 = ldr xzr, [sp]
|
939
|
+
0xe2,0x03,0x40,0xb9 = ldr w2, [sp]
|
940
|
+
0xf1,0xff,0x7f,0xb9 = ldr w17, [sp, #16380]
|
941
|
+
0x4d,0x04,0x40,0xb9 = ldr w13, [x2, #4]
|
942
|
+
0xa2,0x04,0x80,0xb9 = ldrsw x2, [x5, #4]
|
943
|
+
0xf7,0xff,0xbf,0xb9 = ldrsw x23, [sp, #16380]
|
944
|
+
0x82,0x00,0x40,0x79 = ldrh w2, [x4]
|
945
|
+
0xd7,0xfc,0xff,0x79 = ldrsh w23, [x6, #8190]
|
946
|
+
0xff,0x07,0xc0,0x79 = ldrsh wzr, [sp, #2]
|
947
|
+
0x5d,0x04,0x80,0x79 = ldrsh x29, [x2, #2]
|
948
|
+
0x7a,0xe4,0x41,0x39 = ldrb w26, [x3, #121]
|
949
|
+
0x4c,0x00,0x40,0x39 = ldrb w12, [x2]
|
950
|
+
0xfb,0xff,0xff,0x39 = ldrsb w27, [sp, #4095]
|
951
|
+
0xff,0x01,0x80,0x39 = ldrsb xzr, [x15]
|
952
|
+
0xfe,0x03,0x00,0xf9 = str x30, [sp]
|
953
|
+
0x94,0xfc,0x3f,0xb9 = str w20, [x4, #16380]
|
954
|
+
0x54,0x1d,0x00,0x79 = strh w20, [x10, #14]
|
955
|
+
0xf1,0xff,0x3f,0x79 = strh w17, [sp, #8190]
|
956
|
+
0x77,0xfc,0x3f,0x39 = strb w23, [x3, #4095]
|
957
|
+
0x5f,0x00,0x00,0x39 = strb wzr, [x2]
|
958
|
+
0xe0,0x07,0x80,0xf9 = prfm pldl1keep, [sp, #8]
|
959
|
+
0x61,0x00,0x80,0xf9 = prfm pldl1strm, [x3, #0]
|
960
|
+
0xa2,0x08,0x80,0xf9 = prfm pldl2keep, [x5, #16]
|
961
|
+
0x43,0x00,0x80,0xf9 = prfm pldl2strm, [x2, #0]
|
962
|
+
0xa4,0x00,0x80,0xf9 = prfm pldl3keep, [x5, #0]
|
963
|
+
0xc5,0x00,0x80,0xf9 = prfm pldl3strm, [x6, #0]
|
964
|
+
0xe8,0x07,0x80,0xf9 = prfm plil1keep, [sp, #8]
|
965
|
+
0x69,0x00,0x80,0xf9 = prfm plil1strm, [x3, #0]
|
966
|
+
0xaa,0x08,0x80,0xf9 = prfm plil2keep, [x5, #16]
|
967
|
+
0x4b,0x00,0x80,0xf9 = prfm plil2strm, [x2, #0]
|
968
|
+
0xac,0x00,0x80,0xf9 = prfm plil3keep, [x5, #0]
|
969
|
+
0xcd,0x00,0x80,0xf9 = prfm plil3strm, [x6, #0]
|
970
|
+
0xf0,0x07,0x80,0xf9 = prfm pstl1keep, [sp, #8]
|
971
|
+
0x71,0x00,0x80,0xf9 = prfm pstl1strm, [x3, #0]
|
972
|
+
0xb2,0x08,0x80,0xf9 = prfm pstl2keep, [x5, #16]
|
973
|
+
0x53,0x00,0x80,0xf9 = prfm pstl2strm, [x2, #0]
|
974
|
+
0xb4,0x00,0x80,0xf9 = prfm pstl3keep, [x5, #0]
|
975
|
+
0xd5,0x00,0x80,0xf9 = prfm pstl3strm, [x6, #0]
|
976
|
+
0xef,0x03,0x80,0xf9 = prfm #15, [sp, #0]
|
977
|
+
0xff,0xff,0x7f,0x3d = ldr b31, [sp, #4095]
|
978
|
+
0x54,0xfc,0x7f,0x7d = ldr h20, [x2, #8190]
|
979
|
+
0x6a,0xfe,0x7f,0xbd = ldr s10, [x19, #16380]
|
980
|
+
0x43,0xfd,0x7f,0xfd = ldr d3, [x10, #32760]
|
981
|
+
0xec,0xff,0xbf,0x3d = str q12, [sp, #65520]
|
982
|
+
0xe3,0x6b,0x65,0x38 = ldrb w3, [sp, x5]
|
983
|
+
0x69,0x7b,0x66,0x38 = ldrb w9, [x27, x6, lsl #0]
|
984
|
+
0xca,0x6b,0xe7,0x38 = ldrsb w10, [x30, x7]
|
985
|
+
0xab,0xeb,0x63,0x38 = ldrb w11, [x29, x3, sxtx]
|
986
|
+
0x8c,0xfb,0x3f,0x38 = strb w12, [x28, xzr, sxtx #0]
|
987
|
+
0x4e,0x4b,0x66,0x38 = ldrb w14, [x26, w6, uxtw]
|
988
|
+
0x2f,0x5b,0xe7,0x38 = ldrsb w15, [x25, w7, uxtw #0]
|
989
|
+
0xf1,0xca,0x69,0x38 = ldrb w17, [x23, w9, sxtw]
|
990
|
+
0xd2,0xda,0xaa,0x38 = ldrsb x18, [x22, w10, sxtw #0]
|
991
|
+
0xe3,0x6b,0xe5,0x78 = ldrsh w3, [sp, x5]
|
992
|
+
0x69,0x6b,0xe6,0x78 = ldrsh w9, [x27, x6]
|
993
|
+
0xca,0x7b,0x67,0x78 = ldrh w10, [x30, x7, lsl #1]
|
994
|
+
0xab,0xeb,0x23,0x78 = strh w11, [x29, x3, sxtx]
|
995
|
+
0x8c,0xeb,0x7f,0x78 = ldrh w12, [x28, xzr, sxtx]
|
996
|
+
0x6d,0xfb,0xa5,0x78 = ldrsh x13, [x27, x5, sxtx #1]
|
997
|
+
0x4e,0x4b,0x66,0x78 = ldrh w14, [x26, w6, uxtw]
|
998
|
+
0x2f,0x4b,0x67,0x78 = ldrh w15, [x25, w7, uxtw]
|
999
|
+
0x10,0x5b,0xe8,0x78 = ldrsh w16, [x24, w8, uxtw #1]
|
1000
|
+
0xf1,0xca,0x69,0x78 = ldrh w17, [x23, w9, sxtw]
|
1001
|
+
0xd2,0xca,0x6a,0x78 = ldrh w18, [x22, w10, sxtw]
|
1002
|
+
0xb3,0xda,0x3f,0x78 = strh w19, [x21, wzr, sxtw #1]
|
1003
|
+
0xe3,0x6b,0x65,0xb8 = ldr w3, [sp, x5]
|
1004
|
+
0x69,0x6b,0x66,0xbc = ldr s9, [x27, x6]
|
1005
|
+
0xca,0x7b,0x67,0xb8 = ldr w10, [x30, x7, lsl #2]
|
1006
|
+
0xab,0xeb,0x63,0xb8 = ldr w11, [x29, x3, sxtx]
|
1007
|
+
0x8c,0xeb,0x3f,0xbc = str s12, [x28, xzr, sxtx]
|
1008
|
+
0x6d,0xfb,0x25,0xb8 = str w13, [x27, x5, sxtx #2]
|
1009
|
+
0x4e,0x4b,0x26,0xb8 = str w14, [x26, w6, uxtw]
|
1010
|
+
0x2f,0x4b,0x67,0xb8 = ldr w15, [x25, w7, uxtw]
|
1011
|
+
0x10,0x5b,0x68,0xb8 = ldr w16, [x24, w8, uxtw #2]
|
1012
|
+
0xf1,0xca,0xa9,0xb8 = ldrsw x17, [x23, w9, sxtw]
|
1013
|
+
0xd2,0xca,0x6a,0xb8 = ldr w18, [x22, w10, sxtw]
|
1014
|
+
0xb3,0xda,0xbf,0xb8 = ldrsw x19, [x21, wzr, sxtw #2]
|
1015
|
+
0xe3,0x6b,0x65,0xf8 = ldr x3, [sp, x5]
|
1016
|
+
0x69,0x6b,0x26,0xf8 = str x9, [x27, x6]
|
1017
|
+
0xca,0x7b,0x67,0xfc = ldr d10, [x30, x7, lsl #3]
|
1018
|
+
0xab,0xeb,0x23,0xf8 = str x11, [x29, x3, sxtx]
|
1019
|
+
0x8c,0xeb,0x7f,0xf8 = ldr x12, [x28, xzr, sxtx]
|
1020
|
+
0x6d,0xfb,0x65,0xf8 = ldr x13, [x27, x5, sxtx #3]
|
1021
|
+
0x40,0x4b,0xa6,0xf8 = prfm pldl1keep, [x26, w6, uxtw]
|
1022
|
+
0x2f,0x4b,0x67,0xf8 = ldr x15, [x25, w7, uxtw]
|
1023
|
+
0x10,0x5b,0x68,0xf8 = ldr x16, [x24, w8, uxtw #3]
|
1024
|
+
0xf1,0xca,0x69,0xf8 = ldr x17, [x23, w9, sxtw]
|
1025
|
+
0xd2,0xca,0x6a,0xf8 = ldr x18, [x22, w10, sxtw]
|
1026
|
+
0xb3,0xda,0x3f,0xfc = str d19, [x21, wzr, sxtw #3]
|
1027
|
+
0x06,0x68,0xa5,0xf8 = prfm #6, [x0, x5, lsl #0]
|
1028
|
+
0xe3,0x6b,0xe5,0x3c = ldr q3, [sp, x5]
|
1029
|
+
0x69,0x6b,0xe6,0x3c = ldr q9, [x27, x6]
|
1030
|
+
0xca,0x7b,0xe7,0x3c = ldr q10, [x30, x7, lsl #4]
|
1031
|
+
0xab,0xeb,0xa3,0x3c = str q11, [x29, x3, sxtx]
|
1032
|
+
0x8c,0xeb,0xbf,0x3c = str q12, [x28, xzr, sxtx]
|
1033
|
+
0x6d,0xfb,0xa5,0x3c = str q13, [x27, x5, sxtx #4]
|
1034
|
+
0x4e,0x4b,0xe6,0x3c = ldr q14, [x26, w6, uxtw]
|
1035
|
+
0x2f,0x4b,0xe7,0x3c = ldr q15, [x25, w7, uxtw]
|
1036
|
+
0x10,0x5b,0xe8,0x3c = ldr q16, [x24, w8, uxtw #4]
|
1037
|
+
0xf1,0xca,0xe9,0x3c = ldr q17, [x23, w9, sxtw]
|
1038
|
+
0xd2,0xca,0xaa,0x3c = str q18, [x22, w10, sxtw]
|
1039
|
+
0xb3,0xda,0xff,0x3c = ldr q19, [x21, wzr, sxtw #4]
|
1040
|
+
0x49,0xf4,0x0f,0x38 = strb w9, [x2], #255
|
1041
|
+
0x6a,0x14,0x00,0x38 = strb w10, [x3], #1
|
1042
|
+
0x6a,0x04,0x10,0x38 = strb w10, [x3], #-256
|
1043
|
+
0x49,0xf4,0x0f,0x78 = strh w9, [x2], #255
|
1044
|
+
0x49,0x14,0x00,0x78 = strh w9, [x2], #1
|
1045
|
+
0x6a,0x04,0x10,0x78 = strh w10, [x3], #-256
|
1046
|
+
0xf3,0xf7,0x0f,0xb8 = str w19, [sp], #255
|
1047
|
+
0xd4,0x17,0x00,0xb8 = str w20, [x30], #1
|
1048
|
+
0x95,0x05,0x10,0xb8 = str w21, [x12], #-256
|
1049
|
+
0x3f,0xf5,0x0f,0xf8 = str xzr, [x9], #255
|
1050
|
+
0x62,0x14,0x00,0xf8 = str x2, [x3], #1
|
1051
|
+
0x93,0x05,0x10,0xf8 = str x19, [x12], #-256
|
1052
|
+
0x49,0xf4,0x4f,0x38 = ldrb w9, [x2], #255
|
1053
|
+
0x6a,0x14,0x40,0x38 = ldrb w10, [x3], #1
|
1054
|
+
0x6a,0x04,0x50,0x38 = ldrb w10, [x3], #-256
|
1055
|
+
0x49,0xf4,0x4f,0x78 = ldrh w9, [x2], #255
|
1056
|
+
0x49,0x14,0x40,0x78 = ldrh w9, [x2], #1
|
1057
|
+
0x6a,0x04,0x50,0x78 = ldrh w10, [x3], #-256
|
1058
|
+
0xf3,0xf7,0x4f,0xb8 = ldr w19, [sp], #255
|
1059
|
+
0xd4,0x17,0x40,0xb8 = ldr w20, [x30], #1
|
1060
|
+
0x95,0x05,0x50,0xb8 = ldr w21, [x12], #-256
|
1061
|
+
0x3f,0xf5,0x4f,0xf8 = ldr xzr, [x9], #255
|
1062
|
+
0x62,0x14,0x40,0xf8 = ldr x2, [x3], #1
|
1063
|
+
0x93,0x05,0x50,0xf8 = ldr x19, [x12], #-256
|
1064
|
+
0x3f,0xf5,0x8f,0x38 = ldrsb xzr, [x9], #255
|
1065
|
+
0x62,0x14,0x80,0x38 = ldrsb x2, [x3], #1
|
1066
|
+
0x93,0x05,0x90,0x38 = ldrsb x19, [x12], #-256
|
1067
|
+
0x3f,0xf5,0x8f,0x78 = ldrsh xzr, [x9], #255
|
1068
|
+
0x62,0x14,0x80,0x78 = ldrsh x2, [x3], #1
|
1069
|
+
0x93,0x05,0x90,0x78 = ldrsh x19, [x12], #-256
|
1070
|
+
0x3f,0xf5,0x8f,0xb8 = ldrsw xzr, [x9], #255
|
1071
|
+
0x62,0x14,0x80,0xb8 = ldrsw x2, [x3], #1
|
1072
|
+
0x93,0x05,0x90,0xb8 = ldrsw x19, [x12], #-256
|
1073
|
+
0x3f,0xf5,0xcf,0x38 = ldrsb wzr, [x9], #255
|
1074
|
+
0x62,0x14,0xc0,0x38 = ldrsb w2, [x3], #1
|
1075
|
+
0x93,0x05,0xd0,0x38 = ldrsb w19, [x12], #-256
|
1076
|
+
0x3f,0xf5,0xcf,0x78 = ldrsh wzr, [x9], #255
|
1077
|
+
0x62,0x14,0xc0,0x78 = ldrsh w2, [x3], #1
|
1078
|
+
0x93,0x05,0xd0,0x78 = ldrsh w19, [x12], #-256
|
1079
|
+
0x00,0xf4,0x0f,0x3c = str b0, [x0], #255
|
1080
|
+
0x63,0x14,0x00,0x3c = str b3, [x3], #1
|
1081
|
+
0xe5,0x07,0x10,0x3c = str b5, [sp], #-256
|
1082
|
+
0x4a,0xf5,0x0f,0x7c = str h10, [x10], #255
|
1083
|
+
0xed,0x16,0x00,0x7c = str h13, [x23], #1
|
1084
|
+
0xef,0x07,0x10,0x7c = str h15, [sp], #-256
|
1085
|
+
0x94,0xf6,0x0f,0xbc = str s20, [x20], #255
|
1086
|
+
0xf7,0x16,0x00,0xbc = str s23, [x23], #1
|
1087
|
+
0x19,0x04,0x10,0xbc = str s25, [x0], #-256
|
1088
|
+
0x94,0xf6,0x0f,0xfc = str d20, [x20], #255
|
1089
|
+
0xf7,0x16,0x00,0xfc = str d23, [x23], #1
|
1090
|
+
0x19,0x04,0x10,0xfc = str d25, [x0], #-256
|
1091
|
+
0x00,0xf4,0x4f,0x3c = ldr b0, [x0], #255
|
1092
|
+
0x63,0x14,0x40,0x3c = ldr b3, [x3], #1
|
1093
|
+
0xe5,0x07,0x50,0x3c = ldr b5, [sp], #-256
|
1094
|
+
0x4a,0xf5,0x4f,0x7c = ldr h10, [x10], #255
|
1095
|
+
0xed,0x16,0x40,0x7c = ldr h13, [x23], #1
|
1096
|
+
0xef,0x07,0x50,0x7c = ldr h15, [sp], #-256
|
1097
|
+
0x94,0xf6,0x4f,0xbc = ldr s20, [x20], #255
|
1098
|
+
0xf7,0x16,0x40,0xbc = ldr s23, [x23], #1
|
1099
|
+
0x19,0x04,0x50,0xbc = ldr s25, [x0], #-256
|
1100
|
+
0x94,0xf6,0x4f,0xfc = ldr d20, [x20], #255
|
1101
|
+
0xf7,0x16,0x40,0xfc = ldr d23, [x23], #1
|
1102
|
+
0x19,0x04,0x50,0xfc = ldr d25, [x0], #-256
|
1103
|
+
0x34,0xf4,0xcf,0x3c = ldr q20, [x1], #255
|
1104
|
+
0x37,0x15,0xc0,0x3c = ldr q23, [x9], #1
|
1105
|
+
0x99,0x06,0xd0,0x3c = ldr q25, [x20], #-256
|
1106
|
+
0x2a,0xf4,0x8f,0x3c = str q10, [x1], #255
|
1107
|
+
0xf6,0x17,0x80,0x3c = str q22, [sp], #1
|
1108
|
+
0x95,0x06,0x90,0x3c = str q21, [x20], #-256
|
1109
|
+
0x83,0x0c,0x40,0xf8 = ldr x3, [x4, #0]!
|
1110
|
+
0xff,0x0f,0x40,0xf8 = ldr xzr, [sp, #0]!
|
1111
|
+
0x49,0xfc,0x0f,0x38 = strb w9, [x2, #255]!
|
1112
|
+
0x6a,0x1c,0x00,0x38 = strb w10, [x3, #1]!
|
1113
|
+
0x6a,0x0c,0x10,0x38 = strb w10, [x3, #-256]!
|
1114
|
+
0x49,0xfc,0x0f,0x78 = strh w9, [x2, #255]!
|
1115
|
+
0x49,0x1c,0x00,0x78 = strh w9, [x2, #1]!
|
1116
|
+
0x6a,0x0c,0x10,0x78 = strh w10, [x3, #-256]!
|
1117
|
+
0xf3,0xff,0x0f,0xb8 = str w19, [sp, #255]!
|
1118
|
+
0xd4,0x1f,0x00,0xb8 = str w20, [x30, #1]!
|
1119
|
+
0x95,0x0d,0x10,0xb8 = str w21, [x12, #-256]!
|
1120
|
+
0x3f,0xfd,0x0f,0xf8 = str xzr, [x9, #255]!
|
1121
|
+
0x62,0x1c,0x00,0xf8 = str x2, [x3, #1]!
|
1122
|
+
0x93,0x0d,0x10,0xf8 = str x19, [x12, #-256]!
|
1123
|
+
0x49,0xfc,0x4f,0x38 = ldrb w9, [x2, #255]!
|
1124
|
+
0x6a,0x1c,0x40,0x38 = ldrb w10, [x3, #1]!
|
1125
|
+
0x6a,0x0c,0x50,0x38 = ldrb w10, [x3, #-256]!
|
1126
|
+
0x49,0xfc,0x4f,0x78 = ldrh w9, [x2, #255]!
|
1127
|
+
0x49,0x1c,0x40,0x78 = ldrh w9, [x2, #1]!
|
1128
|
+
0x6a,0x0c,0x50,0x78 = ldrh w10, [x3, #-256]!
|
1129
|
+
0xf3,0xff,0x4f,0xb8 = ldr w19, [sp, #255]!
|
1130
|
+
0xd4,0x1f,0x40,0xb8 = ldr w20, [x30, #1]!
|
1131
|
+
0x95,0x0d,0x50,0xb8 = ldr w21, [x12, #-256]!
|
1132
|
+
0x3f,0xfd,0x4f,0xf8 = ldr xzr, [x9, #255]!
|
1133
|
+
0x62,0x1c,0x40,0xf8 = ldr x2, [x3, #1]!
|
1134
|
+
0x93,0x0d,0x50,0xf8 = ldr x19, [x12, #-256]!
|
1135
|
+
0x3f,0xfd,0x8f,0x38 = ldrsb xzr, [x9, #255]!
|
1136
|
+
0x62,0x1c,0x80,0x38 = ldrsb x2, [x3, #1]!
|
1137
|
+
0x93,0x0d,0x90,0x38 = ldrsb x19, [x12, #-256]!
|
1138
|
+
0x3f,0xfd,0x8f,0x78 = ldrsh xzr, [x9, #255]!
|
1139
|
+
0x62,0x1c,0x80,0x78 = ldrsh x2, [x3, #1]!
|
1140
|
+
0x93,0x0d,0x90,0x78 = ldrsh x19, [x12, #-256]!
|
1141
|
+
0x3f,0xfd,0x8f,0xb8 = ldrsw xzr, [x9, #255]!
|
1142
|
+
0x62,0x1c,0x80,0xb8 = ldrsw x2, [x3, #1]!
|
1143
|
+
0x93,0x0d,0x90,0xb8 = ldrsw x19, [x12, #-256]!
|
1144
|
+
0x3f,0xfd,0xcf,0x38 = ldrsb wzr, [x9, #255]!
|
1145
|
+
0x62,0x1c,0xc0,0x38 = ldrsb w2, [x3, #1]!
|
1146
|
+
0x93,0x0d,0xd0,0x38 = ldrsb w19, [x12, #-256]!
|
1147
|
+
0x3f,0xfd,0xcf,0x78 = ldrsh wzr, [x9, #255]!
|
1148
|
+
0x62,0x1c,0xc0,0x78 = ldrsh w2, [x3, #1]!
|
1149
|
+
0x93,0x0d,0xd0,0x78 = ldrsh w19, [x12, #-256]!
|
1150
|
+
0x00,0xfc,0x0f,0x3c = str b0, [x0, #255]!
|
1151
|
+
0x63,0x1c,0x00,0x3c = str b3, [x3, #1]!
|
1152
|
+
0xe5,0x0f,0x10,0x3c = str b5, [sp, #-256]!
|
1153
|
+
0x4a,0xfd,0x0f,0x7c = str h10, [x10, #255]!
|
1154
|
+
0xed,0x1e,0x00,0x7c = str h13, [x23, #1]!
|
1155
|
+
0xef,0x0f,0x10,0x7c = str h15, [sp, #-256]!
|
1156
|
+
0x94,0xfe,0x0f,0xbc = str s20, [x20, #255]!
|
1157
|
+
0xf7,0x1e,0x00,0xbc = str s23, [x23, #1]!
|
1158
|
+
0x19,0x0c,0x10,0xbc = str s25, [x0, #-256]!
|
1159
|
+
0x94,0xfe,0x0f,0xfc = str d20, [x20, #255]!
|
1160
|
+
0xf7,0x1e,0x00,0xfc = str d23, [x23, #1]!
|
1161
|
+
0x19,0x0c,0x10,0xfc = str d25, [x0, #-256]!
|
1162
|
+
0x00,0xfc,0x4f,0x3c = ldr b0, [x0, #255]!
|
1163
|
+
0x63,0x1c,0x40,0x3c = ldr b3, [x3, #1]!
|
1164
|
+
0xe5,0x0f,0x50,0x3c = ldr b5, [sp, #-256]!
|
1165
|
+
0x4a,0xfd,0x4f,0x7c = ldr h10, [x10, #255]!
|
1166
|
+
0xed,0x1e,0x40,0x7c = ldr h13, [x23, #1]!
|
1167
|
+
0xef,0x0f,0x50,0x7c = ldr h15, [sp, #-256]!
|
1168
|
+
0x94,0xfe,0x4f,0xbc = ldr s20, [x20, #255]!
|
1169
|
+
0xf7,0x1e,0x40,0xbc = ldr s23, [x23, #1]!
|
1170
|
+
0x19,0x0c,0x50,0xbc = ldr s25, [x0, #-256]!
|
1171
|
+
0x94,0xfe,0x4f,0xfc = ldr d20, [x20, #255]!
|
1172
|
+
0xf7,0x1e,0x40,0xfc = ldr d23, [x23, #1]!
|
1173
|
+
0x19,0x0c,0x50,0xfc = ldr d25, [x0, #-256]!
|
1174
|
+
0x34,0xfc,0xcf,0x3c = ldr q20, [x1, #255]!
|
1175
|
+
0x37,0x1d,0xc0,0x3c = ldr q23, [x9, #1]!
|
1176
|
+
0x99,0x0e,0xd0,0x3c = ldr q25, [x20, #-256]!
|
1177
|
+
0x2a,0xfc,0x8f,0x3c = str q10, [x1, #255]!
|
1178
|
+
0xf6,0x1f,0x80,0x3c = str q22, [sp, #1]!
|
1179
|
+
0x95,0x0e,0x90,0x3c = str q21, [x20, #-256]!
|
1180
|
+
0xe9,0x0b,0x00,0x38 = sttrb w9, [sp]
|
1181
|
+
0x9f,0xf9,0x0f,0x78 = sttrh wzr, [x12, #255]
|
1182
|
+
0x10,0x08,0x10,0xb8 = sttr w16, [x0, #-256]
|
1183
|
+
0xdc,0x19,0x00,0xf8 = sttr x28, [x14, #1]
|
1184
|
+
0x81,0xfa,0x4f,0x38 = ldtrb w1, [x20, #255]
|
1185
|
+
0x34,0xf8,0x4f,0x78 = ldtrh w20, [x1, #255]
|
1186
|
+
0xec,0xfb,0x4f,0xb8 = ldtr w12, [sp, #255]
|
1187
|
+
0x9f,0xf9,0x4f,0xf8 = ldtr xzr, [x12, #255]
|
1188
|
+
0xe9,0x08,0x90,0x38 = ldtrsb x9, [x7, #-256]
|
1189
|
+
0x71,0x0a,0x90,0x78 = ldtrsh x17, [x19, #-256]
|
1190
|
+
0xf4,0x09,0x90,0xb8 = ldtrsw x20, [x15, #-256]
|
1191
|
+
0x33,0x08,0xd0,0x38 = ldtrsb w19, [x1, #-256]
|
1192
|
+
0xaf,0x0a,0xd0,0x78 = ldtrsh w15, [x21, #-256]
|
1193
|
+
0xe3,0x17,0x40,0x29 = ldp w3, w5, [sp]
|
1194
|
+
0xff,0xa7,0x1f,0x29 = stp wzr, w9, [sp, #252]
|
1195
|
+
0xe2,0x7f,0x60,0x29 = ldp w2, wzr, [sp, #-256]
|
1196
|
+
0xe9,0xab,0x40,0x29 = ldp w9, w10, [sp, #4]
|
1197
|
+
0xe9,0xab,0x40,0x69 = ldpsw x9, x10, [sp, #4]
|
1198
|
+
0x49,0x28,0x60,0x69 = ldpsw x9, x10, [x2, #-256]
|
1199
|
+
0xf4,0xfb,0x5f,0x69 = ldpsw x20, x30, [sp, #252]
|
1200
|
+
0x55,0xf4,0x5f,0xa9 = ldp x21, x29, [x2, #504]
|
1201
|
+
0x76,0x5c,0x60,0xa9 = ldp x22, x23, [x3, #-512]
|
1202
|
+
0x98,0xe4,0x40,0xa9 = ldp x24, x25, [x4, #8]
|
1203
|
+
0xfd,0xf3,0x5f,0x2d = ldp s29, s28, [sp, #252]
|
1204
|
+
0xfb,0x6b,0x20,0x2d = stp s27, s26, [sp, #-256]
|
1205
|
+
0x61,0x88,0x45,0x2d = ldp s1, s2, [x3, #44]
|
1206
|
+
0x23,0x95,0x1f,0x6d = stp d3, d5, [x9, #504]
|
1207
|
+
0x47,0x2d,0x20,0x6d = stp d7, d11, [x10, #-512]
|
1208
|
+
0xc2,0x8f,0x7f,0x6d = ldp d2, d3, [x30, #-8]
|
1209
|
+
0xe3,0x17,0x00,0xad = stp q3, q5, [sp]
|
1210
|
+
0xf1,0xcf,0x1f,0xad = stp q17, q19, [sp, #1008]
|
1211
|
+
0x37,0x74,0x60,0xad = ldp q23, q29, [x1, #-1024]
|
1212
|
+
0xe3,0x17,0xc0,0x28 = ldp w3, w5, [sp], #0
|
1213
|
+
0xff,0xa7,0x9f,0x28 = stp wzr, w9, [sp], #252
|
1214
|
+
0xe2,0x7f,0xe0,0x28 = ldp w2, wzr, [sp], #-256
|
1215
|
+
0xe9,0xab,0xc0,0x28 = ldp w9, w10, [sp], #4
|
1216
|
+
0xe9,0xab,0xc0,0x68 = ldpsw x9, x10, [sp], #4
|
1217
|
+
0x49,0x28,0xe0,0x68 = ldpsw x9, x10, [x2], #-256
|
1218
|
+
0xf4,0xfb,0xdf,0x68 = ldpsw x20, x30, [sp], #252
|
1219
|
+
0x55,0xf4,0xdf,0xa8 = ldp x21, x29, [x2], #504
|
1220
|
+
0x76,0x5c,0xe0,0xa8 = ldp x22, x23, [x3], #-512
|
1221
|
+
0x98,0xe4,0xc0,0xa8 = ldp x24, x25, [x4], #8
|
1222
|
+
0xfd,0xf3,0xdf,0x2c = ldp s29, s28, [sp], #252
|
1223
|
+
0xfb,0x6b,0xa0,0x2c = stp s27, s26, [sp], #-256
|
1224
|
+
0x61,0x88,0xc5,0x2c = ldp s1, s2, [x3], #44
|
1225
|
+
0x23,0x95,0x9f,0x6c = stp d3, d5, [x9], #504
|
1226
|
+
0x47,0x2d,0xa0,0x6c = stp d7, d11, [x10], #-512
|
1227
|
+
0xc2,0x8f,0xff,0x6c = ldp d2, d3, [x30], #-8
|
1228
|
+
0xe3,0x17,0x80,0xac = stp q3, q5, [sp], #0
|
1229
|
+
0xf1,0xcf,0x9f,0xac = stp q17, q19, [sp], #1008
|
1230
|
+
0x37,0x74,0xe0,0xac = ldp q23, q29, [x1], #-1024
|
1231
|
+
0xe3,0x17,0xc0,0x29 = ldp w3, w5, [sp, #0]!
|
1232
|
+
0xff,0xa7,0x9f,0x29 = stp wzr, w9, [sp, #252]!
|
1233
|
+
0xe2,0x7f,0xe0,0x29 = ldp w2, wzr, [sp, #-256]!
|
1234
|
+
0xe9,0xab,0xc0,0x29 = ldp w9, w10, [sp, #4]!
|
1235
|
+
0xe9,0xab,0xc0,0x69 = ldpsw x9, x10, [sp, #4]!
|
1236
|
+
0x49,0x28,0xe0,0x69 = ldpsw x9, x10, [x2, #-256]!
|
1237
|
+
0xf4,0xfb,0xdf,0x69 = ldpsw x20, x30, [sp, #252]!
|
1238
|
+
0x55,0xf4,0xdf,0xa9 = ldp x21, x29, [x2, #504]!
|
1239
|
+
0x76,0x5c,0xe0,0xa9 = ldp x22, x23, [x3, #-512]!
|
1240
|
+
0x98,0xe4,0xc0,0xa9 = ldp x24, x25, [x4, #8]!
|
1241
|
+
0xfd,0xf3,0xdf,0x2d = ldp s29, s28, [sp, #252]!
|
1242
|
+
0xfb,0x6b,0xa0,0x2d = stp s27, s26, [sp, #-256]!
|
1243
|
+
0x61,0x88,0xc5,0x2d = ldp s1, s2, [x3, #44]!
|
1244
|
+
0x23,0x95,0x9f,0x6d = stp d3, d5, [x9, #504]!
|
1245
|
+
0x47,0x2d,0xa0,0x6d = stp d7, d11, [x10, #-512]!
|
1246
|
+
0xc2,0x8f,0xff,0x6d = ldp d2, d3, [x30, #-8]!
|
1247
|
+
0xe3,0x17,0x80,0xad = stp q3, q5, [sp, #0]!
|
1248
|
+
0xf1,0xcf,0x9f,0xad = stp q17, q19, [sp, #1008]!
|
1249
|
+
0x37,0x74,0xe0,0xad = ldp q23, q29, [x1, #-1024]!
|
1250
|
+
0xe3,0x17,0x40,0x28 = ldnp w3, w5, [sp]
|
1251
|
+
0xff,0xa7,0x1f,0x28 = stnp wzr, w9, [sp, #252]
|
1252
|
+
0xe2,0x7f,0x60,0x28 = ldnp w2, wzr, [sp, #-256]
|
1253
|
+
0xe9,0xab,0x40,0x28 = ldnp w9, w10, [sp, #4]
|
1254
|
+
0x55,0xf4,0x5f,0xa8 = ldnp x21, x29, [x2, #504]
|
1255
|
+
0x76,0x5c,0x60,0xa8 = ldnp x22, x23, [x3, #-512]
|
1256
|
+
0x98,0xe4,0x40,0xa8 = ldnp x24, x25, [x4, #8]
|
1257
|
+
0xfd,0xf3,0x5f,0x2c = ldnp s29, s28, [sp, #252]
|
1258
|
+
0xfb,0x6b,0x20,0x2c = stnp s27, s26, [sp, #-256]
|
1259
|
+
0x61,0x88,0x45,0x2c = ldnp s1, s2, [x3, #44]
|
1260
|
+
0x23,0x95,0x1f,0x6c = stnp d3, d5, [x9, #504]
|
1261
|
+
0x47,0x2d,0x20,0x6c = stnp d7, d11, [x10, #-512]
|
1262
|
+
0xc2,0x8f,0x7f,0x6c = ldnp d2, d3, [x30, #-8]
|
1263
|
+
0xe3,0x17,0x00,0xac = stnp q3, q5, [sp]
|
1264
|
+
0xf1,0xcf,0x1f,0xac = stnp q17, q19, [sp, #1008]
|
1265
|
+
0x37,0x74,0x60,0xac = ldnp q23, q29, [x1, #-1024]
|
1266
|
+
0x23,0x3d,0x10,0x32 = orr w3, w9, #0xffff0000
|
1267
|
+
0x5f,0x29,0x03,0x32 = orr wsp, w10, #0xe00000ff
|
1268
|
+
0x49,0x25,0x00,0x32 = orr w9, w10, #0x3ff
|
1269
|
+
0xee,0x81,0x01,0x12 = and w14, w15, #0x80008000
|
1270
|
+
0xac,0xad,0x0a,0x12 = and w12, w13, #0xffc3ffc3
|
1271
|
+
0xeb,0x87,0x00,0x12 = and w11, wzr, #0x30003
|
1272
|
+
0xc3,0xc8,0x03,0x52 = eor w3, w6, #0xe0e0e0e0
|
1273
|
+
0xff,0xc7,0x00,0x52 = eor wsp, wzr, #0x3030303
|
1274
|
+
0x30,0xc6,0x01,0x52 = eor w16, w17, #0x81818181
|
1275
|
+
0x5f,0xe6,0x02,0x72 = ands wzr, w18, #0xcccccccc
|
1276
|
+
0x93,0xe6,0x00,0x72 = ands w19, w20, #0x33333333
|
1277
|
+
0xd5,0xe6,0x01,0x72 = ands w21, w22, #0x99999999
|
1278
|
+
0x7f,0xf0,0x01,0x72 = ands wzr, w3, #0xaaaaaaaa
|
1279
|
+
0xff,0xf3,0x00,0x72 = ands wzr, wzr, #0x55555555
|
1280
|
+
0xa3,0x84,0x66,0xd2 = eor x3, x5, #0xffffffffc000000
|
1281
|
+
0x49,0xb9,0x40,0x92 = and x9, x10, #0x7fffffffffff
|
1282
|
+
0x8b,0x31,0x41,0xb2 = orr x11, x12, #0x8000000000000fff
|
1283
|
+
0x23,0x3d,0x10,0xb2 = orr x3, x9, #0xffff0000ffff0000
|
1284
|
+
0x5f,0x29,0x03,0xb2 = orr sp, x10, #0xe00000ffe00000ff
|
1285
|
+
0x49,0x25,0x00,0xb2 = orr x9, x10, #0x3ff000003ff
|
1286
|
+
0xee,0x81,0x01,0x92 = and x14, x15, #0x8000800080008000
|
1287
|
+
0xac,0xad,0x0a,0x92 = and x12, x13, #0xffc3ffc3ffc3ffc3
|
1288
|
+
0xeb,0x87,0x00,0x92 = and x11, xzr, #0x3000300030003
|
1289
|
+
0xc3,0xc8,0x03,0xd2 = eor x3, x6, #0xe0e0e0e0e0e0e0e0
|
1290
|
+
0xff,0xc7,0x00,0xd2 = eor sp, xzr, #0x303030303030303
|
1291
|
+
0x30,0xc6,0x01,0xd2 = eor x16, x17, #0x8181818181818181
|
1292
|
+
0x5f,0xe6,0x02,0xf2 = ands xzr, x18, #0xcccccccccccccccc
|
1293
|
+
0x93,0xe6,0x00,0xf2 = ands x19, x20, #0x3333333333333333
|
1294
|
+
0xd5,0xe6,0x01,0xf2 = ands x21, x22, #0x9999999999999999
|
1295
|
+
0x7f,0xf0,0x01,0xf2 = ands xzr, x3, #0xaaaaaaaaaaaaaaaa
|
1296
|
+
0xff,0xf3,0x00,0xf2 = ands xzr, xzr, #0x5555555555555555
|
1297
|
+
0xe3,0x8f,0x00,0x32 = orr w3, wzr, #0xf000f
|
1298
|
+
0xea,0xf3,0x01,0xb2 = orr x10, xzr, #0xaaaaaaaaaaaaaaaa
|
1299
|
+
0xec,0x02,0x15,0x0a = and w12, w23, w21
|
1300
|
+
0xf0,0x05,0x01,0x0a = and w16, w15, w1, lsl #1
|
1301
|
+
0x89,0x7c,0x0a,0x0a = and w9, w4, w10, lsl #31
|
1302
|
+
0xc3,0x03,0x0b,0x0a = and w3, w30, w11
|
1303
|
+
0xa3,0xfc,0x07,0x8a = and x3, x5, x7, lsl #63
|
1304
|
+
0xc5,0x11,0x93,0x8a = and x5, x14, x19, asr #4
|
1305
|
+
0x23,0x7e,0xd3,0x0a = and w3, w17, w19, ror #31
|
1306
|
+
0x40,0x44,0x5f,0x0a = and w0, w2, wzr, lsr #17
|
1307
|
+
0xc3,0x03,0x8b,0x0a = and w3, w30, w11, asr #0
|
1308
|
+
0x9f,0x00,0x1a,0x8a = and xzr, x4, x26
|
1309
|
+
0xe3,0x03,0xd4,0x0a = and w3, wzr, w20, ror #0
|
1310
|
+
0x87,0xfe,0x9f,0x8a = and x7, x20, xzr, asr #63
|
1311
|
+
0x8d,0xbe,0x2e,0x8a = bic x13, x20, x14, lsl #47
|
1312
|
+
0xe2,0x00,0x29,0x0a = bic w2, w7, w9
|
1313
|
+
0xe2,0x7c,0x80,0x2a = orr w2, w7, w0, asr #31
|
1314
|
+
0x28,0x31,0x0a,0xaa = orr x8, x9, x10, lsl #12
|
1315
|
+
0xa3,0x00,0xa7,0xaa = orn x3, x5, x7, asr #0
|
1316
|
+
0xa2,0x00,0x3d,0x2a = orn w2, w5, w29
|
1317
|
+
0xe7,0x07,0x09,0x6a = ands w7, wzr, w9, lsl #1
|
1318
|
+
0xa3,0xfc,0xd4,0xea = ands x3, x5, x20, ror #63
|
1319
|
+
0xa3,0x00,0x27,0x6a = bics w3, w5, w7
|
1320
|
+
0xe3,0x07,0x23,0xea = bics x3, xzr, x3, lsl #1
|
1321
|
+
0x7f,0x7c,0x07,0x6a = tst w3, w7, lsl #31
|
1322
|
+
0x5f,0x00,0x94,0xea = tst x2, x20, asr #0
|
1323
|
+
0xe3,0x03,0x06,0xaa = mov x3, x6
|
1324
|
+
0xe3,0x03,0x1f,0xaa = mov x3, xzr
|
1325
|
+
0xff,0x03,0x02,0x2a = mov wzr, w2
|
1326
|
+
0xe3,0x03,0x05,0x2a = mov w3, w5
|
1327
|
+
0xe1,0xff,0x9f,0x52 = movz w1, #65535
|
1328
|
+
0x02,0x00,0xa0,0x52 = movz w2, #0, lsl #16
|
1329
|
+
0x42,0x9a,0x80,0x12 = movn w2, #1234
|
1330
|
+
0x42,0x9a,0xc0,0xd2 = movz x2, #1234, lsl #32
|
1331
|
+
0x3f,0x1c,0xe2,0xf2 = movk xzr, #4321, lsl #48
|
1332
|
+
0x1e,0x00,0x00,0xb0 = adrp x30, #4096
|
1333
|
+
0x14,0x00,0x00,0x10 = adr x20, #0
|
1334
|
+
0xe9,0xff,0xff,0x70 = adr x9, #-1
|
1335
|
+
0xe5,0xff,0x7f,0x70 = adr x5, #1048575
|
1336
|
+
0xe9,0xff,0x7f,0x70 = adr x9, #1048575
|
1337
|
+
0x02,0x00,0x80,0x10 = adr x2, #-1048576
|
1338
|
+
0xe9,0xff,0x7f,0xf0 = adrp x9, #4294963200
|
1339
|
+
0x14,0x00,0x80,0x90 = adrp x20, #-4294967296
|
1340
|
+
0x1f,0x20,0x03,0xd5 = nop
|
1341
|
+
0xff,0x2f,0x03,0xd5 = hint #127
|
1342
|
+
0x1f,0x20,0x03,0xd5 = nop
|
1343
|
+
0x3f,0x20,0x03,0xd5 = yield
|
1344
|
+
0x5f,0x20,0x03,0xd5 = wfe
|
1345
|
+
0x7f,0x20,0x03,0xd5 = wfi
|
1346
|
+
0x9f,0x20,0x03,0xd5 = sev
|
1347
|
+
0xbf,0x20,0x03,0xd5 = sevl
|
1348
|
+
0x5f,0x3f,0x03,0xd5 = clrex
|
1349
|
+
0x5f,0x30,0x03,0xd5 = clrex #0
|
1350
|
+
0x5f,0x37,0x03,0xd5 = clrex #7
|
1351
|
+
0x5f,0x3f,0x03,0xd5 = clrex
|
1352
|
+
0x9f,0x30,0x03,0xd5 = dsb #0
|
1353
|
+
0x9f,0x3c,0x03,0xd5 = dsb #12
|
1354
|
+
0x9f,0x3f,0x03,0xd5 = dsb sy
|
1355
|
+
0x9f,0x31,0x03,0xd5 = dsb oshld
|
1356
|
+
0x9f,0x32,0x03,0xd5 = dsb oshst
|
1357
|
+
0x9f,0x33,0x03,0xd5 = dsb osh
|
1358
|
+
0x9f,0x35,0x03,0xd5 = dsb nshld
|
1359
|
+
0x9f,0x36,0x03,0xd5 = dsb nshst
|
1360
|
+
0x9f,0x37,0x03,0xd5 = dsb nsh
|
1361
|
+
0x9f,0x39,0x03,0xd5 = dsb ishld
|
1362
|
+
0x9f,0x3a,0x03,0xd5 = dsb ishst
|
1363
|
+
0x9f,0x3b,0x03,0xd5 = dsb ish
|
1364
|
+
0x9f,0x3d,0x03,0xd5 = dsb ld
|
1365
|
+
0x9f,0x3e,0x03,0xd5 = dsb st
|
1366
|
+
0x9f,0x3f,0x03,0xd5 = dsb sy
|
1367
|
+
0xbf,0x30,0x03,0xd5 = dmb #0
|
1368
|
+
0xbf,0x3c,0x03,0xd5 = dmb #12
|
1369
|
+
0xbf,0x3f,0x03,0xd5 = dmb sy
|
1370
|
+
0xbf,0x31,0x03,0xd5 = dmb oshld
|
1371
|
+
0xbf,0x32,0x03,0xd5 = dmb oshst
|
1372
|
+
0xbf,0x33,0x03,0xd5 = dmb osh
|
1373
|
+
0xbf,0x35,0x03,0xd5 = dmb nshld
|
1374
|
+
0xbf,0x36,0x03,0xd5 = dmb nshst
|
1375
|
+
0xbf,0x37,0x03,0xd5 = dmb nsh
|
1376
|
+
0xbf,0x39,0x03,0xd5 = dmb ishld
|
1377
|
+
0xbf,0x3a,0x03,0xd5 = dmb ishst
|
1378
|
+
0xbf,0x3b,0x03,0xd5 = dmb ish
|
1379
|
+
0xbf,0x3d,0x03,0xd5 = dmb ld
|
1380
|
+
0xbf,0x3e,0x03,0xd5 = dmb st
|
1381
|
+
0xbf,0x3f,0x03,0xd5 = dmb sy
|
1382
|
+
0xdf,0x3f,0x03,0xd5 = isb
|
1383
|
+
0xdf,0x3f,0x03,0xd5 = isb
|
1384
|
+
0xdf,0x3c,0x03,0xd5 = isb #12
|
1385
|
+
0xbf,0x40,0x00,0xd5 = msr spsel, #0
|
1386
|
+
0xdf,0x4f,0x03,0xd5 = msr daifset, #15
|
1387
|
+
0xff,0x4c,0x03,0xd5 = msr daifclr, #12
|
1388
|
+
0xe5,0x59,0x0f,0xd5 = sys #7, c5, c9, #7, x5
|
1389
|
+
0x5f,0xff,0x08,0xd5 = sys #0, c15, c15, #2, xzr
|
1390
|
+
0xe9,0x59,0x2f,0xd5 = sysl x9, #7, c5, c9, #7
|
1391
|
+
0x41,0xff,0x28,0xd5 = sysl x1, #0, c15, c15, #2
|
1392
|
+
0x1f,0x71,0x08,0xd5 = ic ialluis
|
1393
|
+
0x1f,0x75,0x08,0xd5 = ic iallu
|
1394
|
+
0x29,0x75,0x0b,0xd5 = ic ivau, x9
|
1395
|
+
0x2c,0x74,0x0b,0xd5 = dc zva, x12
|
1396
|
+
0x3f,0x76,0x08,0xd5 = dc ivac, xzr
|
1397
|
+
0x42,0x76,0x08,0xd5 = dc isw, x2
|
1398
|
+
0x29,0x7a,0x0b,0xd5 = dc cvac, x9
|
1399
|
+
0x4a,0x7a,0x08,0xd5 = dc csw, x10
|
1400
|
+
0x20,0x7b,0x0b,0xd5 = dc cvau, x0
|
1401
|
+
0x23,0x7e,0x0b,0xd5 = dc civac, x3
|
1402
|
+
0x5e,0x7e,0x08,0xd5 = dc cisw, x30
|
1403
|
+
0x13,0x78,0x08,0xd5 = at s1e1r, x19
|
1404
|
+
0x13,0x78,0x0c,0xd5 = at s1e2r, x19
|
1405
|
+
0x13,0x78,0x0e,0xd5 = at s1e3r, x19
|
1406
|
+
0x33,0x78,0x08,0xd5 = at s1e1w, x19
|
1407
|
+
0x33,0x78,0x0c,0xd5 = at s1e2w, x19
|
1408
|
+
0x33,0x78,0x0e,0xd5 = at s1e3w, x19
|
1409
|
+
0x53,0x78,0x08,0xd5 = at s1e0r, x19
|
1410
|
+
0x73,0x78,0x08,0xd5 = at s1e0w, x19
|
1411
|
+
0x94,0x78,0x0c,0xd5 = at s12e1r, x20
|
1412
|
+
0xb4,0x78,0x0c,0xd5 = at s12e1w, x20
|
1413
|
+
0xd4,0x78,0x0c,0xd5 = at s12e0r, x20
|
1414
|
+
0xf4,0x78,0x0c,0xd5 = at s12e0w, x20
|
1415
|
+
0x24,0x80,0x0c,0xd5 = tlbi ipas2e1is, x4
|
1416
|
+
0xa9,0x80,0x0c,0xd5 = tlbi ipas2le1is, x9
|
1417
|
+
0x1f,0x83,0x08,0xd5 = tlbi vmalle1is
|
1418
|
+
0x1f,0x83,0x0c,0xd5 = tlbi alle2is
|
1419
|
+
0x1f,0x83,0x0e,0xd5 = tlbi alle3is
|
1420
|
+
0x21,0x83,0x08,0xd5 = tlbi vae1is, x1
|
1421
|
+
0x22,0x83,0x0c,0xd5 = tlbi vae2is, x2
|
1422
|
+
0x23,0x83,0x0e,0xd5 = tlbi vae3is, x3
|
1423
|
+
0x45,0x83,0x08,0xd5 = tlbi aside1is, x5
|
1424
|
+
0x69,0x83,0x08,0xd5 = tlbi vaae1is, x9
|
1425
|
+
0x9f,0x83,0x0c,0xd5 = tlbi alle1is
|
1426
|
+
0xaa,0x83,0x08,0xd5 = tlbi vale1is, x10
|
1427
|
+
0xab,0x83,0x0c,0xd5 = tlbi vale2is, x11
|
1428
|
+
0xad,0x83,0x0e,0xd5 = tlbi vale3is, x13
|
1429
|
+
0xdf,0x83,0x0c,0xd5 = tlbi vmalls12e1is
|
1430
|
+
0xee,0x83,0x08,0xd5 = tlbi vaale1is, x14
|
1431
|
+
0x2f,0x84,0x0c,0xd5 = tlbi ipas2e1, x15
|
1432
|
+
0xb0,0x84,0x0c,0xd5 = tlbi ipas2le1, x16
|
1433
|
+
0x1f,0x87,0x08,0xd5 = tlbi vmalle1
|
1434
|
+
0x1f,0x87,0x0c,0xd5 = tlbi alle2
|
1435
|
+
0x1f,0x87,0x0e,0xd5 = tlbi alle3
|
1436
|
+
0x31,0x87,0x08,0xd5 = tlbi vae1, x17
|
1437
|
+
0x32,0x87,0x0c,0xd5 = tlbi vae2, x18
|
1438
|
+
0x33,0x87,0x0e,0xd5 = tlbi vae3, x19
|
1439
|
+
0x54,0x87,0x08,0xd5 = tlbi aside1, x20
|
1440
|
+
0x75,0x87,0x08,0xd5 = tlbi vaae1, x21
|
1441
|
+
0x9f,0x87,0x0c,0xd5 = tlbi alle1
|
1442
|
+
0xb6,0x87,0x08,0xd5 = tlbi vale1, x22
|
1443
|
+
0xb7,0x87,0x0c,0xd5 = tlbi vale2, x23
|
1444
|
+
0xb8,0x87,0x0e,0xd5 = tlbi vale3, x24
|
1445
|
+
0xdf,0x87,0x0c,0xd5 = tlbi vmalls12e1
|
1446
|
+
0xf9,0x87,0x08,0xd5 = tlbi vaale1, x25
|
1447
|
+
0x0c,0x00,0x12,0xd5 = msr teecr32_el1, x12
|
1448
|
+
0x4c,0x00,0x10,0xd5 = msr osdtrrx_el1, x12
|
1449
|
+
0x0c,0x02,0x10,0xd5 = msr mdccint_el1, x12
|
1450
|
+
0x4c,0x02,0x10,0xd5 = msr mdscr_el1, x12
|
1451
|
+
0x4c,0x03,0x10,0xd5 = msr osdtrtx_el1, x12
|
1452
|
+
0x0c,0x04,0x13,0xd5 = msr dbgdtr_el0, x12
|
1453
|
+
0x0c,0x05,0x13,0xd5 = msr dbgdtrtx_el0, x12
|
1454
|
+
0x4c,0x06,0x10,0xd5 = msr oseccr_el1, x12
|
1455
|
+
0x0c,0x07,0x14,0xd5 = msr dbgvcr32_el2, x12
|
1456
|
+
0x8c,0x00,0x10,0xd5 = msr dbgbvr0_el1, x12
|
1457
|
+
0x8c,0x01,0x10,0xd5 = msr dbgbvr1_el1, x12
|
1458
|
+
0x8c,0x02,0x10,0xd5 = msr dbgbvr2_el1, x12
|
1459
|
+
0x8c,0x03,0x10,0xd5 = msr dbgbvr3_el1, x12
|
1460
|
+
0x8c,0x04,0x10,0xd5 = msr dbgbvr4_el1, x12
|
1461
|
+
0x8c,0x05,0x10,0xd5 = msr dbgbvr5_el1, x12
|
1462
|
+
0x8c,0x06,0x10,0xd5 = msr dbgbvr6_el1, x12
|
1463
|
+
0x8c,0x07,0x10,0xd5 = msr dbgbvr7_el1, x12
|
1464
|
+
0x8c,0x08,0x10,0xd5 = msr dbgbvr8_el1, x12
|
1465
|
+
0x8c,0x09,0x10,0xd5 = msr dbgbvr9_el1, x12
|
1466
|
+
0x8c,0x0a,0x10,0xd5 = msr dbgbvr10_el1, x12
|
1467
|
+
0x8c,0x0b,0x10,0xd5 = msr dbgbvr11_el1, x12
|
1468
|
+
0x8c,0x0c,0x10,0xd5 = msr dbgbvr12_el1, x12
|
1469
|
+
0x8c,0x0d,0x10,0xd5 = msr dbgbvr13_el1, x12
|
1470
|
+
0x8c,0x0e,0x10,0xd5 = msr dbgbvr14_el1, x12
|
1471
|
+
0x8c,0x0f,0x10,0xd5 = msr dbgbvr15_el1, x12
|
1472
|
+
0xac,0x00,0x10,0xd5 = msr dbgbcr0_el1, x12
|
1473
|
+
0xac,0x01,0x10,0xd5 = msr dbgbcr1_el1, x12
|
1474
|
+
0xac,0x02,0x10,0xd5 = msr dbgbcr2_el1, x12
|
1475
|
+
0xac,0x03,0x10,0xd5 = msr dbgbcr3_el1, x12
|
1476
|
+
0xac,0x04,0x10,0xd5 = msr dbgbcr4_el1, x12
|
1477
|
+
0xac,0x05,0x10,0xd5 = msr dbgbcr5_el1, x12
|
1478
|
+
0xac,0x06,0x10,0xd5 = msr dbgbcr6_el1, x12
|
1479
|
+
0xac,0x07,0x10,0xd5 = msr dbgbcr7_el1, x12
|
1480
|
+
0xac,0x08,0x10,0xd5 = msr dbgbcr8_el1, x12
|
1481
|
+
0xac,0x09,0x10,0xd5 = msr dbgbcr9_el1, x12
|
1482
|
+
0xac,0x0a,0x10,0xd5 = msr dbgbcr10_el1, x12
|
1483
|
+
0xac,0x0b,0x10,0xd5 = msr dbgbcr11_el1, x12
|
1484
|
+
0xac,0x0c,0x10,0xd5 = msr dbgbcr12_el1, x12
|
1485
|
+
0xac,0x0d,0x10,0xd5 = msr dbgbcr13_el1, x12
|
1486
|
+
0xac,0x0e,0x10,0xd5 = msr dbgbcr14_el1, x12
|
1487
|
+
0xac,0x0f,0x10,0xd5 = msr dbgbcr15_el1, x12
|
1488
|
+
0xcc,0x00,0x10,0xd5 = msr dbgwvr0_el1, x12
|
1489
|
+
0xcc,0x01,0x10,0xd5 = msr dbgwvr1_el1, x12
|
1490
|
+
0xcc,0x02,0x10,0xd5 = msr dbgwvr2_el1, x12
|
1491
|
+
0xcc,0x03,0x10,0xd5 = msr dbgwvr3_el1, x12
|
1492
|
+
0xcc,0x04,0x10,0xd5 = msr dbgwvr4_el1, x12
|
1493
|
+
0xcc,0x05,0x10,0xd5 = msr dbgwvr5_el1, x12
|
1494
|
+
0xcc,0x06,0x10,0xd5 = msr dbgwvr6_el1, x12
|
1495
|
+
0xcc,0x07,0x10,0xd5 = msr dbgwvr7_el1, x12
|
1496
|
+
0xcc,0x08,0x10,0xd5 = msr dbgwvr8_el1, x12
|
1497
|
+
0xcc,0x09,0x10,0xd5 = msr dbgwvr9_el1, x12
|
1498
|
+
0xcc,0x0a,0x10,0xd5 = msr dbgwvr10_el1, x12
|
1499
|
+
0xcc,0x0b,0x10,0xd5 = msr dbgwvr11_el1, x12
|
1500
|
+
0xcc,0x0c,0x10,0xd5 = msr dbgwvr12_el1, x12
|
1501
|
+
0xcc,0x0d,0x10,0xd5 = msr dbgwvr13_el1, x12
|
1502
|
+
0xcc,0x0e,0x10,0xd5 = msr dbgwvr14_el1, x12
|
1503
|
+
0xcc,0x0f,0x10,0xd5 = msr dbgwvr15_el1, x12
|
1504
|
+
0xec,0x00,0x10,0xd5 = msr dbgwcr0_el1, x12
|
1505
|
+
0xec,0x01,0x10,0xd5 = msr dbgwcr1_el1, x12
|
1506
|
+
0xec,0x02,0x10,0xd5 = msr dbgwcr2_el1, x12
|
1507
|
+
0xec,0x03,0x10,0xd5 = msr dbgwcr3_el1, x12
|
1508
|
+
0xec,0x04,0x10,0xd5 = msr dbgwcr4_el1, x12
|
1509
|
+
0xec,0x05,0x10,0xd5 = msr dbgwcr5_el1, x12
|
1510
|
+
0xec,0x06,0x10,0xd5 = msr dbgwcr6_el1, x12
|
1511
|
+
0xec,0x07,0x10,0xd5 = msr dbgwcr7_el1, x12
|
1512
|
+
0xec,0x08,0x10,0xd5 = msr dbgwcr8_el1, x12
|
1513
|
+
0xec,0x09,0x10,0xd5 = msr dbgwcr9_el1, x12
|
1514
|
+
0xec,0x0a,0x10,0xd5 = msr dbgwcr10_el1, x12
|
1515
|
+
0xec,0x0b,0x10,0xd5 = msr dbgwcr11_el1, x12
|
1516
|
+
0xec,0x0c,0x10,0xd5 = msr dbgwcr12_el1, x12
|
1517
|
+
0xec,0x0d,0x10,0xd5 = msr dbgwcr13_el1, x12
|
1518
|
+
0xec,0x0e,0x10,0xd5 = msr dbgwcr14_el1, x12
|
1519
|
+
0xec,0x0f,0x10,0xd5 = msr dbgwcr15_el1, x12
|
1520
|
+
0x0c,0x10,0x12,0xd5 = msr teehbr32_el1, x12
|
1521
|
+
0x8c,0x10,0x10,0xd5 = msr oslar_el1, x12
|
1522
|
+
0x8c,0x13,0x10,0xd5 = msr osdlr_el1, x12
|
1523
|
+
0x8c,0x14,0x10,0xd5 = msr dbgprcr_el1, x12
|
1524
|
+
0xcc,0x78,0x10,0xd5 = msr dbgclaimset_el1, x12
|
1525
|
+
0xcc,0x79,0x10,0xd5 = msr dbgclaimclr_el1, x12
|
1526
|
+
0x0c,0x00,0x1a,0xd5 = msr csselr_el1, x12
|
1527
|
+
0x0c,0x00,0x1c,0xd5 = msr vpidr_el2, x12
|
1528
|
+
0xac,0x00,0x1c,0xd5 = msr vmpidr_el2, x12
|
1529
|
+
0x0c,0x10,0x18,0xd5 = msr sctlr_el1, x12
|
1530
|
+
0x0c,0x10,0x1c,0xd5 = msr sctlr_el2, x12
|
1531
|
+
0x0c,0x10,0x1e,0xd5 = msr sctlr_el3, x12
|
1532
|
+
0x2c,0x10,0x18,0xd5 = msr actlr_el1, x12
|
1533
|
+
0x2c,0x10,0x1c,0xd5 = msr actlr_el2, x12
|
1534
|
+
0x2c,0x10,0x1e,0xd5 = msr actlr_el3, x12
|
1535
|
+
0x4c,0x10,0x18,0xd5 = msr cpacr_el1, x12
|
1536
|
+
0x0c,0x11,0x1c,0xd5 = msr hcr_el2, x12
|
1537
|
+
0x0c,0x11,0x1e,0xd5 = msr scr_el3, x12
|
1538
|
+
0x2c,0x11,0x1c,0xd5 = msr mdcr_el2, x12
|
1539
|
+
0x2c,0x11,0x1e,0xd5 = msr sder32_el3, x12
|
1540
|
+
0x4c,0x11,0x1c,0xd5 = msr cptr_el2, x12
|
1541
|
+
0x4c,0x11,0x1e,0xd5 = msr cptr_el3, x12
|
1542
|
+
0x6c,0x11,0x1c,0xd5 = msr hstr_el2, x12
|
1543
|
+
0xec,0x11,0x1c,0xd5 = msr hacr_el2, x12
|
1544
|
+
0x2c,0x13,0x1e,0xd5 = msr mdcr_el3, x12
|
1545
|
+
0x0c,0x20,0x18,0xd5 = msr ttbr0_el1, x12
|
1546
|
+
0x0c,0x20,0x1c,0xd5 = msr ttbr0_el2, x12
|
1547
|
+
0x0c,0x20,0x1e,0xd5 = msr ttbr0_el3, x12
|
1548
|
+
0x2c,0x20,0x18,0xd5 = msr ttbr1_el1, x12
|
1549
|
+
0x4c,0x20,0x18,0xd5 = msr tcr_el1, x12
|
1550
|
+
0x4c,0x20,0x1c,0xd5 = msr tcr_el2, x12
|
1551
|
+
0x4c,0x20,0x1e,0xd5 = msr tcr_el3, x12
|
1552
|
+
0x0c,0x21,0x1c,0xd5 = msr vttbr_el2, x12
|
1553
|
+
0x4c,0x21,0x1c,0xd5 = msr vtcr_el2, x12
|
1554
|
+
0x0c,0x30,0x1c,0xd5 = msr dacr32_el2, x12
|
1555
|
+
0x0c,0x40,0x18,0xd5 = msr spsr_el1, x12
|
1556
|
+
0x0c,0x40,0x1c,0xd5 = msr spsr_el2, x12
|
1557
|
+
0x0c,0x40,0x1e,0xd5 = msr spsr_el3, x12
|
1558
|
+
0x2c,0x40,0x18,0xd5 = msr elr_el1, x12
|
1559
|
+
0x2c,0x40,0x1c,0xd5 = msr elr_el2, x12
|
1560
|
+
0x2c,0x40,0x1e,0xd5 = msr elr_el3, x12
|
1561
|
+
0x0c,0x41,0x18,0xd5 = msr sp_el0, x12
|
1562
|
+
0x0c,0x41,0x1c,0xd5 = msr sp_el1, x12
|
1563
|
+
0x0c,0x41,0x1e,0xd5 = msr sp_el2, x12
|
1564
|
+
0x0c,0x42,0x18,0xd5 = msr spsel, x12
|
1565
|
+
0x0c,0x42,0x1b,0xd5 = msr nzcv, x12
|
1566
|
+
0x2c,0x42,0x1b,0xd5 = msr daif, x12
|
1567
|
+
0x4c,0x42,0x18,0xd5 = msr currentel, x12
|
1568
|
+
0x0c,0x43,0x1c,0xd5 = msr spsr_irq, x12
|
1569
|
+
0x2c,0x43,0x1c,0xd5 = msr spsr_abt, x12
|
1570
|
+
0x4c,0x43,0x1c,0xd5 = msr spsr_und, x12
|
1571
|
+
0x6c,0x43,0x1c,0xd5 = msr spsr_fiq, x12
|
1572
|
+
0x0c,0x44,0x1b,0xd5 = msr fpcr, x12
|
1573
|
+
0x2c,0x44,0x1b,0xd5 = msr fpsr, x12
|
1574
|
+
0x0c,0x45,0x1b,0xd5 = msr dspsr_el0, x12
|
1575
|
+
0x2c,0x45,0x1b,0xd5 = msr dlr_el0, x12
|
1576
|
+
0x2c,0x50,0x1c,0xd5 = msr ifsr32_el2, x12
|
1577
|
+
0x0c,0x51,0x18,0xd5 = msr afsr0_el1, x12
|
1578
|
+
0x0c,0x51,0x1c,0xd5 = msr afsr0_el2, x12
|
1579
|
+
0x0c,0x51,0x1e,0xd5 = msr afsr0_el3, x12
|
1580
|
+
0x2c,0x51,0x18,0xd5 = msr afsr1_el1, x12
|
1581
|
+
0x2c,0x51,0x1c,0xd5 = msr afsr1_el2, x12
|
1582
|
+
0x2c,0x51,0x1e,0xd5 = msr afsr1_el3, x12
|
1583
|
+
0x0c,0x52,0x18,0xd5 = msr esr_el1, x12
|
1584
|
+
0x0c,0x52,0x1c,0xd5 = msr esr_el2, x12
|
1585
|
+
0x0c,0x52,0x1e,0xd5 = msr esr_el3, x12
|
1586
|
+
0x0c,0x53,0x1c,0xd5 = msr fpexc32_el2, x12
|
1587
|
+
0x0c,0x60,0x18,0xd5 = msr far_el1, x12
|
1588
|
+
0x0c,0x60,0x1c,0xd5 = msr far_el2, x12
|
1589
|
+
0x0c,0x60,0x1e,0xd5 = msr far_el3, x12
|
1590
|
+
0x8c,0x60,0x1c,0xd5 = msr hpfar_el2, x12
|
1591
|
+
0x0c,0x74,0x18,0xd5 = msr par_el1, x12
|
1592
|
+
0x0c,0x9c,0x1b,0xd5 = msr pmcr_el0, x12
|
1593
|
+
0x2c,0x9c,0x1b,0xd5 = msr pmcntenset_el0, x12
|
1594
|
+
0x4c,0x9c,0x1b,0xd5 = msr pmcntenclr_el0, x12
|
1595
|
+
0x6c,0x9c,0x1b,0xd5 = msr pmovsclr_el0, x12
|
1596
|
+
0xac,0x9c,0x1b,0xd5 = msr pmselr_el0, x12
|
1597
|
+
0x0c,0x9d,0x1b,0xd5 = msr pmccntr_el0, x12
|
1598
|
+
0x2c,0x9d,0x1b,0xd5 = msr pmxevtyper_el0, x12
|
1599
|
+
0x4c,0x9d,0x1b,0xd5 = msr pmxevcntr_el0, x12
|
1600
|
+
0x0c,0x9e,0x1b,0xd5 = msr pmuserenr_el0, x12
|
1601
|
+
0x2c,0x9e,0x18,0xd5 = msr pmintenset_el1, x12
|
1602
|
+
0x4c,0x9e,0x18,0xd5 = msr pmintenclr_el1, x12
|
1603
|
+
0x6c,0x9e,0x1b,0xd5 = msr pmovsset_el0, x12
|
1604
|
+
0x0c,0xa2,0x18,0xd5 = msr mair_el1, x12
|
1605
|
+
0x0c,0xa2,0x1c,0xd5 = msr mair_el2, x12
|
1606
|
+
0x0c,0xa2,0x1e,0xd5 = msr mair_el3, x12
|
1607
|
+
0x0c,0xa3,0x18,0xd5 = msr amair_el1, x12
|
1608
|
+
0x0c,0xa3,0x1c,0xd5 = msr amair_el2, x12
|
1609
|
+
0x0c,0xa3,0x1e,0xd5 = msr amair_el3, x12
|
1610
|
+
0x0c,0xc0,0x18,0xd5 = msr vbar_el1, x12
|
1611
|
+
0x0c,0xc0,0x1c,0xd5 = msr vbar_el2, x12
|
1612
|
+
0x0c,0xc0,0x1e,0xd5 = msr vbar_el3, x12
|
1613
|
+
0x4c,0xc0,0x18,0xd5 = msr rmr_el1, x12
|
1614
|
+
0x4c,0xc0,0x1c,0xd5 = msr rmr_el2, x12
|
1615
|
+
0x4c,0xc0,0x1e,0xd5 = msr rmr_el3, x12
|
1616
|
+
0x2c,0xd0,0x18,0xd5 = msr contextidr_el1, x12
|
1617
|
+
0x4c,0xd0,0x1b,0xd5 = msr tpidr_el0, x12
|
1618
|
+
0x4c,0xd0,0x1c,0xd5 = msr tpidr_el2, x12
|
1619
|
+
0x4c,0xd0,0x1e,0xd5 = msr tpidr_el3, x12
|
1620
|
+
0x6c,0xd0,0x1b,0xd5 = msr tpidrro_el0, x12
|
1621
|
+
0x8c,0xd0,0x18,0xd5 = msr tpidr_el1, x12
|
1622
|
+
0x0c,0xe0,0x1b,0xd5 = msr cntfrq_el0, x12
|
1623
|
+
0x6c,0xe0,0x1c,0xd5 = msr cntvoff_el2, x12
|
1624
|
+
0x0c,0xe1,0x18,0xd5 = msr cntkctl_el1, x12
|
1625
|
+
0x0c,0xe1,0x1c,0xd5 = msr cnthctl_el2, x12
|
1626
|
+
0x0c,0xe2,0x1b,0xd5 = msr cntp_tval_el0, x12
|
1627
|
+
0x0c,0xe2,0x1c,0xd5 = msr cnthp_tval_el2, x12
|
1628
|
+
0x0c,0xe2,0x1f,0xd5 = msr cntps_tval_el1, x12
|
1629
|
+
0x2c,0xe2,0x1b,0xd5 = msr cntp_ctl_el0, x12
|
1630
|
+
0x2c,0xe2,0x1c,0xd5 = msr cnthp_ctl_el2, x12
|
1631
|
+
0x2c,0xe2,0x1f,0xd5 = msr cntps_ctl_el1, x12
|
1632
|
+
0x4c,0xe2,0x1b,0xd5 = msr cntp_cval_el0, x12
|
1633
|
+
0x4c,0xe2,0x1c,0xd5 = msr cnthp_cval_el2, x12
|
1634
|
+
0x4c,0xe2,0x1f,0xd5 = msr cntps_cval_el1, x12
|
1635
|
+
0x0c,0xe3,0x1b,0xd5 = msr cntv_tval_el0, x12
|
1636
|
+
0x2c,0xe3,0x1b,0xd5 = msr cntv_ctl_el0, x12
|
1637
|
+
0x4c,0xe3,0x1b,0xd5 = msr cntv_cval_el0, x12
|
1638
|
+
0x0c,0xe8,0x1b,0xd5 = msr pmevcntr0_el0, x12
|
1639
|
+
0x2c,0xe8,0x1b,0xd5 = msr pmevcntr1_el0, x12
|
1640
|
+
0x4c,0xe8,0x1b,0xd5 = msr pmevcntr2_el0, x12
|
1641
|
+
0x6c,0xe8,0x1b,0xd5 = msr pmevcntr3_el0, x12
|
1642
|
+
0x8c,0xe8,0x1b,0xd5 = msr pmevcntr4_el0, x12
|
1643
|
+
0xac,0xe8,0x1b,0xd5 = msr pmevcntr5_el0, x12
|
1644
|
+
0xcc,0xe8,0x1b,0xd5 = msr pmevcntr6_el0, x12
|
1645
|
+
0xec,0xe8,0x1b,0xd5 = msr pmevcntr7_el0, x12
|
1646
|
+
0x0c,0xe9,0x1b,0xd5 = msr pmevcntr8_el0, x12
|
1647
|
+
0x2c,0xe9,0x1b,0xd5 = msr pmevcntr9_el0, x12
|
1648
|
+
0x4c,0xe9,0x1b,0xd5 = msr pmevcntr10_el0, x12
|
1649
|
+
0x6c,0xe9,0x1b,0xd5 = msr pmevcntr11_el0, x12
|
1650
|
+
0x8c,0xe9,0x1b,0xd5 = msr pmevcntr12_el0, x12
|
1651
|
+
0xac,0xe9,0x1b,0xd5 = msr pmevcntr13_el0, x12
|
1652
|
+
0xcc,0xe9,0x1b,0xd5 = msr pmevcntr14_el0, x12
|
1653
|
+
0xec,0xe9,0x1b,0xd5 = msr pmevcntr15_el0, x12
|
1654
|
+
0x0c,0xea,0x1b,0xd5 = msr pmevcntr16_el0, x12
|
1655
|
+
0x2c,0xea,0x1b,0xd5 = msr pmevcntr17_el0, x12
|
1656
|
+
0x4c,0xea,0x1b,0xd5 = msr pmevcntr18_el0, x12
|
1657
|
+
0x6c,0xea,0x1b,0xd5 = msr pmevcntr19_el0, x12
|
1658
|
+
0x8c,0xea,0x1b,0xd5 = msr pmevcntr20_el0, x12
|
1659
|
+
0xac,0xea,0x1b,0xd5 = msr pmevcntr21_el0, x12
|
1660
|
+
0xcc,0xea,0x1b,0xd5 = msr pmevcntr22_el0, x12
|
1661
|
+
0xec,0xea,0x1b,0xd5 = msr pmevcntr23_el0, x12
|
1662
|
+
0x0c,0xeb,0x1b,0xd5 = msr pmevcntr24_el0, x12
|
1663
|
+
0x2c,0xeb,0x1b,0xd5 = msr pmevcntr25_el0, x12
|
1664
|
+
0x4c,0xeb,0x1b,0xd5 = msr pmevcntr26_el0, x12
|
1665
|
+
0x6c,0xeb,0x1b,0xd5 = msr pmevcntr27_el0, x12
|
1666
|
+
0x8c,0xeb,0x1b,0xd5 = msr pmevcntr28_el0, x12
|
1667
|
+
0xac,0xeb,0x1b,0xd5 = msr pmevcntr29_el0, x12
|
1668
|
+
0xcc,0xeb,0x1b,0xd5 = msr pmevcntr30_el0, x12
|
1669
|
+
0xec,0xef,0x1b,0xd5 = msr pmccfiltr_el0, x12
|
1670
|
+
0x0c,0xec,0x1b,0xd5 = msr pmevtyper0_el0, x12
|
1671
|
+
0x2c,0xec,0x1b,0xd5 = msr pmevtyper1_el0, x12
|
1672
|
+
0x4c,0xec,0x1b,0xd5 = msr pmevtyper2_el0, x12
|
1673
|
+
0x6c,0xec,0x1b,0xd5 = msr pmevtyper3_el0, x12
|
1674
|
+
0x8c,0xec,0x1b,0xd5 = msr pmevtyper4_el0, x12
|
1675
|
+
0xac,0xec,0x1b,0xd5 = msr pmevtyper5_el0, x12
|
1676
|
+
0xcc,0xec,0x1b,0xd5 = msr pmevtyper6_el0, x12
|
1677
|
+
0xec,0xec,0x1b,0xd5 = msr pmevtyper7_el0, x12
|
1678
|
+
0x0c,0xed,0x1b,0xd5 = msr pmevtyper8_el0, x12
|
1679
|
+
0x2c,0xed,0x1b,0xd5 = msr pmevtyper9_el0, x12
|
1680
|
+
0x4c,0xed,0x1b,0xd5 = msr pmevtyper10_el0, x12
|
1681
|
+
0x6c,0xed,0x1b,0xd5 = msr pmevtyper11_el0, x12
|
1682
|
+
0x8c,0xed,0x1b,0xd5 = msr pmevtyper12_el0, x12
|
1683
|
+
0xac,0xed,0x1b,0xd5 = msr pmevtyper13_el0, x12
|
1684
|
+
0xcc,0xed,0x1b,0xd5 = msr pmevtyper14_el0, x12
|
1685
|
+
0xec,0xed,0x1b,0xd5 = msr pmevtyper15_el0, x12
|
1686
|
+
0x0c,0xee,0x1b,0xd5 = msr pmevtyper16_el0, x12
|
1687
|
+
0x2c,0xee,0x1b,0xd5 = msr pmevtyper17_el0, x12
|
1688
|
+
0x4c,0xee,0x1b,0xd5 = msr pmevtyper18_el0, x12
|
1689
|
+
0x6c,0xee,0x1b,0xd5 = msr pmevtyper19_el0, x12
|
1690
|
+
0x8c,0xee,0x1b,0xd5 = msr pmevtyper20_el0, x12
|
1691
|
+
0xac,0xee,0x1b,0xd5 = msr pmevtyper21_el0, x12
|
1692
|
+
0xcc,0xee,0x1b,0xd5 = msr pmevtyper22_el0, x12
|
1693
|
+
0xec,0xee,0x1b,0xd5 = msr pmevtyper23_el0, x12
|
1694
|
+
0x0c,0xef,0x1b,0xd5 = msr pmevtyper24_el0, x12
|
1695
|
+
0x2c,0xef,0x1b,0xd5 = msr pmevtyper25_el0, x12
|
1696
|
+
0x4c,0xef,0x1b,0xd5 = msr pmevtyper26_el0, x12
|
1697
|
+
0x6c,0xef,0x1b,0xd5 = msr pmevtyper27_el0, x12
|
1698
|
+
0x8c,0xef,0x1b,0xd5 = msr pmevtyper28_el0, x12
|
1699
|
+
0xac,0xef,0x1b,0xd5 = msr pmevtyper29_el0, x12
|
1700
|
+
0xcc,0xef,0x1b,0xd5 = msr pmevtyper30_el0, x12
|
1701
|
+
0x09,0x00,0x32,0xd5 = mrs x9, teecr32_el1
|
1702
|
+
0x49,0x00,0x30,0xd5 = mrs x9, osdtrrx_el1
|
1703
|
+
0x09,0x01,0x33,0xd5 = mrs x9, mdccsr_el0
|
1704
|
+
0x09,0x02,0x30,0xd5 = mrs x9, mdccint_el1
|
1705
|
+
0x49,0x02,0x30,0xd5 = mrs x9, mdscr_el1
|
1706
|
+
0x49,0x03,0x30,0xd5 = mrs x9, osdtrtx_el1
|
1707
|
+
0x09,0x04,0x33,0xd5 = mrs x9, dbgdtr_el0
|
1708
|
+
0x09,0x05,0x33,0xd5 = mrs x9, dbgdtrrx_el0
|
1709
|
+
0x49,0x06,0x30,0xd5 = mrs x9, oseccr_el1
|
1710
|
+
0x09,0x07,0x34,0xd5 = mrs x9, dbgvcr32_el2
|
1711
|
+
0x89,0x00,0x30,0xd5 = mrs x9, dbgbvr0_el1
|
1712
|
+
0x89,0x01,0x30,0xd5 = mrs x9, dbgbvr1_el1
|
1713
|
+
0x89,0x02,0x30,0xd5 = mrs x9, dbgbvr2_el1
|
1714
|
+
0x89,0x03,0x30,0xd5 = mrs x9, dbgbvr3_el1
|
1715
|
+
0x89,0x04,0x30,0xd5 = mrs x9, dbgbvr4_el1
|
1716
|
+
0x89,0x05,0x30,0xd5 = mrs x9, dbgbvr5_el1
|
1717
|
+
0x89,0x06,0x30,0xd5 = mrs x9, dbgbvr6_el1
|
1718
|
+
0x89,0x07,0x30,0xd5 = mrs x9, dbgbvr7_el1
|
1719
|
+
0x89,0x08,0x30,0xd5 = mrs x9, dbgbvr8_el1
|
1720
|
+
0x89,0x09,0x30,0xd5 = mrs x9, dbgbvr9_el1
|
1721
|
+
0x89,0x0a,0x30,0xd5 = mrs x9, dbgbvr10_el1
|
1722
|
+
0x89,0x0b,0x30,0xd5 = mrs x9, dbgbvr11_el1
|
1723
|
+
0x89,0x0c,0x30,0xd5 = mrs x9, dbgbvr12_el1
|
1724
|
+
0x89,0x0d,0x30,0xd5 = mrs x9, dbgbvr13_el1
|
1725
|
+
0x89,0x0e,0x30,0xd5 = mrs x9, dbgbvr14_el1
|
1726
|
+
0x89,0x0f,0x30,0xd5 = mrs x9, dbgbvr15_el1
|
1727
|
+
0xa9,0x00,0x30,0xd5 = mrs x9, dbgbcr0_el1
|
1728
|
+
0xa9,0x01,0x30,0xd5 = mrs x9, dbgbcr1_el1
|
1729
|
+
0xa9,0x02,0x30,0xd5 = mrs x9, dbgbcr2_el1
|
1730
|
+
0xa9,0x03,0x30,0xd5 = mrs x9, dbgbcr3_el1
|
1731
|
+
0xa9,0x04,0x30,0xd5 = mrs x9, dbgbcr4_el1
|
1732
|
+
0xa9,0x05,0x30,0xd5 = mrs x9, dbgbcr5_el1
|
1733
|
+
0xa9,0x06,0x30,0xd5 = mrs x9, dbgbcr6_el1
|
1734
|
+
0xa9,0x07,0x30,0xd5 = mrs x9, dbgbcr7_el1
|
1735
|
+
0xa9,0x08,0x30,0xd5 = mrs x9, dbgbcr8_el1
|
1736
|
+
0xa9,0x09,0x30,0xd5 = mrs x9, dbgbcr9_el1
|
1737
|
+
0xa9,0x0a,0x30,0xd5 = mrs x9, dbgbcr10_el1
|
1738
|
+
0xa9,0x0b,0x30,0xd5 = mrs x9, dbgbcr11_el1
|
1739
|
+
0xa9,0x0c,0x30,0xd5 = mrs x9, dbgbcr12_el1
|
1740
|
+
0xa9,0x0d,0x30,0xd5 = mrs x9, dbgbcr13_el1
|
1741
|
+
0xa9,0x0e,0x30,0xd5 = mrs x9, dbgbcr14_el1
|
1742
|
+
0xa9,0x0f,0x30,0xd5 = mrs x9, dbgbcr15_el1
|
1743
|
+
0xc9,0x00,0x30,0xd5 = mrs x9, dbgwvr0_el1
|
1744
|
+
0xc9,0x01,0x30,0xd5 = mrs x9, dbgwvr1_el1
|
1745
|
+
0xc9,0x02,0x30,0xd5 = mrs x9, dbgwvr2_el1
|
1746
|
+
0xc9,0x03,0x30,0xd5 = mrs x9, dbgwvr3_el1
|
1747
|
+
0xc9,0x04,0x30,0xd5 = mrs x9, dbgwvr4_el1
|
1748
|
+
0xc9,0x05,0x30,0xd5 = mrs x9, dbgwvr5_el1
|
1749
|
+
0xc9,0x06,0x30,0xd5 = mrs x9, dbgwvr6_el1
|
1750
|
+
0xc9,0x07,0x30,0xd5 = mrs x9, dbgwvr7_el1
|
1751
|
+
0xc9,0x08,0x30,0xd5 = mrs x9, dbgwvr8_el1
|
1752
|
+
0xc9,0x09,0x30,0xd5 = mrs x9, dbgwvr9_el1
|
1753
|
+
0xc9,0x0a,0x30,0xd5 = mrs x9, dbgwvr10_el1
|
1754
|
+
0xc9,0x0b,0x30,0xd5 = mrs x9, dbgwvr11_el1
|
1755
|
+
0xc9,0x0c,0x30,0xd5 = mrs x9, dbgwvr12_el1
|
1756
|
+
0xc9,0x0d,0x30,0xd5 = mrs x9, dbgwvr13_el1
|
1757
|
+
0xc9,0x0e,0x30,0xd5 = mrs x9, dbgwvr14_el1
|
1758
|
+
0xc9,0x0f,0x30,0xd5 = mrs x9, dbgwvr15_el1
|
1759
|
+
0xe9,0x00,0x30,0xd5 = mrs x9, dbgwcr0_el1
|
1760
|
+
0xe9,0x01,0x30,0xd5 = mrs x9, dbgwcr1_el1
|
1761
|
+
0xe9,0x02,0x30,0xd5 = mrs x9, dbgwcr2_el1
|
1762
|
+
0xe9,0x03,0x30,0xd5 = mrs x9, dbgwcr3_el1
|
1763
|
+
0xe9,0x04,0x30,0xd5 = mrs x9, dbgwcr4_el1
|
1764
|
+
0xe9,0x05,0x30,0xd5 = mrs x9, dbgwcr5_el1
|
1765
|
+
0xe9,0x06,0x30,0xd5 = mrs x9, dbgwcr6_el1
|
1766
|
+
0xe9,0x07,0x30,0xd5 = mrs x9, dbgwcr7_el1
|
1767
|
+
0xe9,0x08,0x30,0xd5 = mrs x9, dbgwcr8_el1
|
1768
|
+
0xe9,0x09,0x30,0xd5 = mrs x9, dbgwcr9_el1
|
1769
|
+
0xe9,0x0a,0x30,0xd5 = mrs x9, dbgwcr10_el1
|
1770
|
+
0xe9,0x0b,0x30,0xd5 = mrs x9, dbgwcr11_el1
|
1771
|
+
0xe9,0x0c,0x30,0xd5 = mrs x9, dbgwcr12_el1
|
1772
|
+
0xe9,0x0d,0x30,0xd5 = mrs x9, dbgwcr13_el1
|
1773
|
+
0xe9,0x0e,0x30,0xd5 = mrs x9, dbgwcr14_el1
|
1774
|
+
0xe9,0x0f,0x30,0xd5 = mrs x9, dbgwcr15_el1
|
1775
|
+
0x09,0x10,0x30,0xd5 = mrs x9, mdrar_el1
|
1776
|
+
0x09,0x10,0x32,0xd5 = mrs x9, teehbr32_el1
|
1777
|
+
0x89,0x11,0x30,0xd5 = mrs x9, oslsr_el1
|
1778
|
+
0x89,0x13,0x30,0xd5 = mrs x9, osdlr_el1
|
1779
|
+
0x89,0x14,0x30,0xd5 = mrs x9, dbgprcr_el1
|
1780
|
+
0xc9,0x78,0x30,0xd5 = mrs x9, dbgclaimset_el1
|
1781
|
+
0xc9,0x79,0x30,0xd5 = mrs x9, dbgclaimclr_el1
|
1782
|
+
0xc9,0x7e,0x30,0xd5 = mrs x9, dbgauthstatus_el1
|
1783
|
+
0x09,0x00,0x38,0xd5 = mrs x9, midr_el1
|
1784
|
+
0x09,0x00,0x39,0xd5 = mrs x9, ccsidr_el1
|
1785
|
+
0x09,0x00,0x3a,0xd5 = mrs x9, csselr_el1
|
1786
|
+
0x09,0x00,0x3c,0xd5 = mrs x9, vpidr_el2
|
1787
|
+
0x29,0x00,0x39,0xd5 = mrs x9, clidr_el1
|
1788
|
+
0x29,0x00,0x3b,0xd5 = mrs x9, ctr_el0
|
1789
|
+
0xa9,0x00,0x38,0xd5 = mrs x9, mpidr_el1
|
1790
|
+
0xa9,0x00,0x3c,0xd5 = mrs x9, vmpidr_el2
|
1791
|
+
0xc9,0x00,0x38,0xd5 = mrs x9, revidr_el1
|
1792
|
+
0xe9,0x00,0x39,0xd5 = mrs x9, aidr_el1
|
1793
|
+
0xe9,0x00,0x3b,0xd5 = mrs x9, dczid_el0
|
1794
|
+
0x09,0x01,0x38,0xd5 = mrs x9, id_pfr0_el1
|
1795
|
+
0x29,0x01,0x38,0xd5 = mrs x9, id_pfr1_el1
|
1796
|
+
0x49,0x01,0x38,0xd5 = mrs x9, id_dfr0_el1
|
1797
|
+
0x69,0x01,0x38,0xd5 = mrs x9, id_afr0_el1
|
1798
|
+
0x89,0x01,0x38,0xd5 = mrs x9, id_mmfr0_el1
|
1799
|
+
0xa9,0x01,0x38,0xd5 = mrs x9, id_mmfr1_el1
|
1800
|
+
0xc9,0x01,0x38,0xd5 = mrs x9, id_mmfr2_el1
|
1801
|
+
0xe9,0x01,0x38,0xd5 = mrs x9, id_mmfr3_el1
|
1802
|
+
0x09,0x02,0x38,0xd5 = mrs x9, id_isar0_el1
|
1803
|
+
0x29,0x02,0x38,0xd5 = mrs x9, id_isar1_el1
|
1804
|
+
0x49,0x02,0x38,0xd5 = mrs x9, id_isar2_el1
|
1805
|
+
0x69,0x02,0x38,0xd5 = mrs x9, id_isar3_el1
|
1806
|
+
0x89,0x02,0x38,0xd5 = mrs x9, id_isar4_el1
|
1807
|
+
0xa9,0x02,0x38,0xd5 = mrs x9, id_isar5_el1
|
1808
|
+
0x09,0x03,0x38,0xd5 = mrs x9, mvfr0_el1
|
1809
|
+
0x29,0x03,0x38,0xd5 = mrs x9, mvfr1_el1
|
1810
|
+
0x49,0x03,0x38,0xd5 = mrs x9, mvfr2_el1
|
1811
|
+
0x09,0x04,0x38,0xd5 = mrs x9, id_aa64pfr0_el1
|
1812
|
+
0x29,0x04,0x38,0xd5 = mrs x9, id_aa64pfr1_el1
|
1813
|
+
0x09,0x05,0x38,0xd5 = mrs x9, id_aa64dfr0_el1
|
1814
|
+
0x29,0x05,0x38,0xd5 = mrs x9, id_aa64dfr1_el1
|
1815
|
+
0x89,0x05,0x38,0xd5 = mrs x9, id_aa64afr0_el1
|
1816
|
+
0xa9,0x05,0x38,0xd5 = mrs x9, id_aa64afr1_el1
|
1817
|
+
0x09,0x06,0x38,0xd5 = mrs x9, id_aa64isar0_el1
|
1818
|
+
0x29,0x06,0x38,0xd5 = mrs x9, id_aa64isar1_el1
|
1819
|
+
0x09,0x07,0x38,0xd5 = mrs x9, id_aa64mmfr0_el1
|
1820
|
+
0x29,0x07,0x38,0xd5 = mrs x9, id_aa64mmfr1_el1
|
1821
|
+
0x09,0x10,0x38,0xd5 = mrs x9, sctlr_el1
|
1822
|
+
0x09,0x10,0x3c,0xd5 = mrs x9, sctlr_el2
|
1823
|
+
0x09,0x10,0x3e,0xd5 = mrs x9, sctlr_el3
|
1824
|
+
0x29,0x10,0x38,0xd5 = mrs x9, actlr_el1
|
1825
|
+
0x29,0x10,0x3c,0xd5 = mrs x9, actlr_el2
|
1826
|
+
0x29,0x10,0x3e,0xd5 = mrs x9, actlr_el3
|
1827
|
+
0x49,0x10,0x38,0xd5 = mrs x9, cpacr_el1
|
1828
|
+
0x09,0x11,0x3c,0xd5 = mrs x9, hcr_el2
|
1829
|
+
0x09,0x11,0x3e,0xd5 = mrs x9, scr_el3
|
1830
|
+
0x29,0x11,0x3c,0xd5 = mrs x9, mdcr_el2
|
1831
|
+
0x29,0x11,0x3e,0xd5 = mrs x9, sder32_el3
|
1832
|
+
0x49,0x11,0x3c,0xd5 = mrs x9, cptr_el2
|
1833
|
+
0x49,0x11,0x3e,0xd5 = mrs x9, cptr_el3
|
1834
|
+
0x69,0x11,0x3c,0xd5 = mrs x9, hstr_el2
|
1835
|
+
0xe9,0x11,0x3c,0xd5 = mrs x9, hacr_el2
|
1836
|
+
0x29,0x13,0x3e,0xd5 = mrs x9, mdcr_el3
|
1837
|
+
0x09,0x20,0x38,0xd5 = mrs x9, ttbr0_el1
|
1838
|
+
0x09,0x20,0x3c,0xd5 = mrs x9, ttbr0_el2
|
1839
|
+
0x09,0x20,0x3e,0xd5 = mrs x9, ttbr0_el3
|
1840
|
+
0x29,0x20,0x38,0xd5 = mrs x9, ttbr1_el1
|
1841
|
+
0x49,0x20,0x38,0xd5 = mrs x9, tcr_el1
|
1842
|
+
0x49,0x20,0x3c,0xd5 = mrs x9, tcr_el2
|
1843
|
+
0x49,0x20,0x3e,0xd5 = mrs x9, tcr_el3
|
1844
|
+
0x09,0x21,0x3c,0xd5 = mrs x9, vttbr_el2
|
1845
|
+
0x49,0x21,0x3c,0xd5 = mrs x9, vtcr_el2
|
1846
|
+
0x09,0x30,0x3c,0xd5 = mrs x9, dacr32_el2
|
1847
|
+
0x09,0x40,0x38,0xd5 = mrs x9, spsr_el1
|
1848
|
+
0x09,0x40,0x3c,0xd5 = mrs x9, spsr_el2
|
1849
|
+
0x09,0x40,0x3e,0xd5 = mrs x9, spsr_el3
|
1850
|
+
0x29,0x40,0x38,0xd5 = mrs x9, elr_el1
|
1851
|
+
0x29,0x40,0x3c,0xd5 = mrs x9, elr_el2
|
1852
|
+
0x29,0x40,0x3e,0xd5 = mrs x9, elr_el3
|
1853
|
+
0x09,0x41,0x38,0xd5 = mrs x9, sp_el0
|
1854
|
+
0x09,0x41,0x3c,0xd5 = mrs x9, sp_el1
|
1855
|
+
0x09,0x41,0x3e,0xd5 = mrs x9, sp_el2
|
1856
|
+
0x09,0x42,0x38,0xd5 = mrs x9, spsel
|
1857
|
+
0x09,0x42,0x3b,0xd5 = mrs x9, nzcv
|
1858
|
+
0x29,0x42,0x3b,0xd5 = mrs x9, daif
|
1859
|
+
0x49,0x42,0x38,0xd5 = mrs x9, currentel
|
1860
|
+
0x09,0x43,0x3c,0xd5 = mrs x9, spsr_irq
|
1861
|
+
0x29,0x43,0x3c,0xd5 = mrs x9, spsr_abt
|
1862
|
+
0x49,0x43,0x3c,0xd5 = mrs x9, spsr_und
|
1863
|
+
0x69,0x43,0x3c,0xd5 = mrs x9, spsr_fiq
|
1864
|
+
0x09,0x44,0x3b,0xd5 = mrs x9, fpcr
|
1865
|
+
0x29,0x44,0x3b,0xd5 = mrs x9, fpsr
|
1866
|
+
0x09,0x45,0x3b,0xd5 = mrs x9, dspsr_el0
|
1867
|
+
0x29,0x45,0x3b,0xd5 = mrs x9, dlr_el0
|
1868
|
+
0x29,0x50,0x3c,0xd5 = mrs x9, ifsr32_el2
|
1869
|
+
0x09,0x51,0x38,0xd5 = mrs x9, afsr0_el1
|
1870
|
+
0x09,0x51,0x3c,0xd5 = mrs x9, afsr0_el2
|
1871
|
+
0x09,0x51,0x3e,0xd5 = mrs x9, afsr0_el3
|
1872
|
+
0x29,0x51,0x38,0xd5 = mrs x9, afsr1_el1
|
1873
|
+
0x29,0x51,0x3c,0xd5 = mrs x9, afsr1_el2
|
1874
|
+
0x29,0x51,0x3e,0xd5 = mrs x9, afsr1_el3
|
1875
|
+
0x09,0x52,0x38,0xd5 = mrs x9, esr_el1
|
1876
|
+
0x09,0x52,0x3c,0xd5 = mrs x9, esr_el2
|
1877
|
+
0x09,0x52,0x3e,0xd5 = mrs x9, esr_el3
|
1878
|
+
0x09,0x53,0x3c,0xd5 = mrs x9, fpexc32_el2
|
1879
|
+
0x09,0x60,0x38,0xd5 = mrs x9, far_el1
|
1880
|
+
0x09,0x60,0x3c,0xd5 = mrs x9, far_el2
|
1881
|
+
0x09,0x60,0x3e,0xd5 = mrs x9, far_el3
|
1882
|
+
0x89,0x60,0x3c,0xd5 = mrs x9, hpfar_el2
|
1883
|
+
0x09,0x74,0x38,0xd5 = mrs x9, par_el1
|
1884
|
+
0x09,0x9c,0x3b,0xd5 = mrs x9, pmcr_el0
|
1885
|
+
0x29,0x9c,0x3b,0xd5 = mrs x9, pmcntenset_el0
|
1886
|
+
0x49,0x9c,0x3b,0xd5 = mrs x9, pmcntenclr_el0
|
1887
|
+
0x69,0x9c,0x3b,0xd5 = mrs x9, pmovsclr_el0
|
1888
|
+
0xa9,0x9c,0x3b,0xd5 = mrs x9, pmselr_el0
|
1889
|
+
0xc9,0x9c,0x3b,0xd5 = mrs x9, pmceid0_el0
|
1890
|
+
0xe9,0x9c,0x3b,0xd5 = mrs x9, pmceid1_el0
|
1891
|
+
0x09,0x9d,0x3b,0xd5 = mrs x9, pmccntr_el0
|
1892
|
+
0x29,0x9d,0x3b,0xd5 = mrs x9, pmxevtyper_el0
|
1893
|
+
0x49,0x9d,0x3b,0xd5 = mrs x9, pmxevcntr_el0
|
1894
|
+
0x09,0x9e,0x3b,0xd5 = mrs x9, pmuserenr_el0
|
1895
|
+
0x29,0x9e,0x38,0xd5 = mrs x9, pmintenset_el1
|
1896
|
+
0x49,0x9e,0x38,0xd5 = mrs x9, pmintenclr_el1
|
1897
|
+
0x69,0x9e,0x3b,0xd5 = mrs x9, pmovsset_el0
|
1898
|
+
0x09,0xa2,0x38,0xd5 = mrs x9, mair_el1
|
1899
|
+
0x09,0xa2,0x3c,0xd5 = mrs x9, mair_el2
|
1900
|
+
0x09,0xa2,0x3e,0xd5 = mrs x9, mair_el3
|
1901
|
+
0x09,0xa3,0x38,0xd5 = mrs x9, amair_el1
|
1902
|
+
0x09,0xa3,0x3c,0xd5 = mrs x9, amair_el2
|
1903
|
+
0x09,0xa3,0x3e,0xd5 = mrs x9, amair_el3
|
1904
|
+
0x09,0xc0,0x38,0xd5 = mrs x9, vbar_el1
|
1905
|
+
0x09,0xc0,0x3c,0xd5 = mrs x9, vbar_el2
|
1906
|
+
0x09,0xc0,0x3e,0xd5 = mrs x9, vbar_el3
|
1907
|
+
0x29,0xc0,0x38,0xd5 = mrs x9, rvbar_el1
|
1908
|
+
0x29,0xc0,0x3c,0xd5 = mrs x9, rvbar_el2
|
1909
|
+
0x29,0xc0,0x3e,0xd5 = mrs x9, rvbar_el3
|
1910
|
+
0x49,0xc0,0x38,0xd5 = mrs x9, rmr_el1
|
1911
|
+
0x49,0xc0,0x3c,0xd5 = mrs x9, rmr_el2
|
1912
|
+
0x49,0xc0,0x3e,0xd5 = mrs x9, rmr_el3
|
1913
|
+
0x09,0xc1,0x38,0xd5 = mrs x9, isr_el1
|
1914
|
+
0x29,0xd0,0x38,0xd5 = mrs x9, contextidr_el1
|
1915
|
+
0x49,0xd0,0x3b,0xd5 = mrs x9, tpidr_el0
|
1916
|
+
0x49,0xd0,0x3c,0xd5 = mrs x9, tpidr_el2
|
1917
|
+
0x49,0xd0,0x3e,0xd5 = mrs x9, tpidr_el3
|
1918
|
+
0x69,0xd0,0x3b,0xd5 = mrs x9, tpidrro_el0
|
1919
|
+
0x89,0xd0,0x38,0xd5 = mrs x9, tpidr_el1
|
1920
|
+
0x09,0xe0,0x3b,0xd5 = mrs x9, cntfrq_el0
|
1921
|
+
0x29,0xe0,0x3b,0xd5 = mrs x9, cntpct_el0
|
1922
|
+
0x49,0xe0,0x3b,0xd5 = mrs x9, cntvct_el0
|
1923
|
+
0x69,0xe0,0x3c,0xd5 = mrs x9, cntvoff_el2
|
1924
|
+
0x09,0xe1,0x38,0xd5 = mrs x9, cntkctl_el1
|
1925
|
+
0x09,0xe1,0x3c,0xd5 = mrs x9, cnthctl_el2
|
1926
|
+
0x09,0xe2,0x3b,0xd5 = mrs x9, cntp_tval_el0
|
1927
|
+
0x09,0xe2,0x3c,0xd5 = mrs x9, cnthp_tval_el2
|
1928
|
+
0x09,0xe2,0x3f,0xd5 = mrs x9, cntps_tval_el1
|
1929
|
+
0x29,0xe2,0x3b,0xd5 = mrs x9, cntp_ctl_el0
|
1930
|
+
0x29,0xe2,0x3c,0xd5 = mrs x9, cnthp_ctl_el2
|
1931
|
+
0x29,0xe2,0x3f,0xd5 = mrs x9, cntps_ctl_el1
|
1932
|
+
0x49,0xe2,0x3b,0xd5 = mrs x9, cntp_cval_el0
|
1933
|
+
0x49,0xe2,0x3c,0xd5 = mrs x9, cnthp_cval_el2
|
1934
|
+
0x49,0xe2,0x3f,0xd5 = mrs x9, cntps_cval_el1
|
1935
|
+
0x09,0xe3,0x3b,0xd5 = mrs x9, cntv_tval_el0
|
1936
|
+
0x29,0xe3,0x3b,0xd5 = mrs x9, cntv_ctl_el0
|
1937
|
+
0x49,0xe3,0x3b,0xd5 = mrs x9, cntv_cval_el0
|
1938
|
+
0x09,0xe8,0x3b,0xd5 = mrs x9, pmevcntr0_el0
|
1939
|
+
0x29,0xe8,0x3b,0xd5 = mrs x9, pmevcntr1_el0
|
1940
|
+
0x49,0xe8,0x3b,0xd5 = mrs x9, pmevcntr2_el0
|
1941
|
+
0x69,0xe8,0x3b,0xd5 = mrs x9, pmevcntr3_el0
|
1942
|
+
0x89,0xe8,0x3b,0xd5 = mrs x9, pmevcntr4_el0
|
1943
|
+
0xa9,0xe8,0x3b,0xd5 = mrs x9, pmevcntr5_el0
|
1944
|
+
0xc9,0xe8,0x3b,0xd5 = mrs x9, pmevcntr6_el0
|
1945
|
+
0xe9,0xe8,0x3b,0xd5 = mrs x9, pmevcntr7_el0
|
1946
|
+
0x09,0xe9,0x3b,0xd5 = mrs x9, pmevcntr8_el0
|
1947
|
+
0x29,0xe9,0x3b,0xd5 = mrs x9, pmevcntr9_el0
|
1948
|
+
0x49,0xe9,0x3b,0xd5 = mrs x9, pmevcntr10_el0
|
1949
|
+
0x69,0xe9,0x3b,0xd5 = mrs x9, pmevcntr11_el0
|
1950
|
+
0x89,0xe9,0x3b,0xd5 = mrs x9, pmevcntr12_el0
|
1951
|
+
0xa9,0xe9,0x3b,0xd5 = mrs x9, pmevcntr13_el0
|
1952
|
+
0xc9,0xe9,0x3b,0xd5 = mrs x9, pmevcntr14_el0
|
1953
|
+
0xe9,0xe9,0x3b,0xd5 = mrs x9, pmevcntr15_el0
|
1954
|
+
0x09,0xea,0x3b,0xd5 = mrs x9, pmevcntr16_el0
|
1955
|
+
0x29,0xea,0x3b,0xd5 = mrs x9, pmevcntr17_el0
|
1956
|
+
0x49,0xea,0x3b,0xd5 = mrs x9, pmevcntr18_el0
|
1957
|
+
0x69,0xea,0x3b,0xd5 = mrs x9, pmevcntr19_el0
|
1958
|
+
0x89,0xea,0x3b,0xd5 = mrs x9, pmevcntr20_el0
|
1959
|
+
0xa9,0xea,0x3b,0xd5 = mrs x9, pmevcntr21_el0
|
1960
|
+
0xc9,0xea,0x3b,0xd5 = mrs x9, pmevcntr22_el0
|
1961
|
+
0xe9,0xea,0x3b,0xd5 = mrs x9, pmevcntr23_el0
|
1962
|
+
0x09,0xeb,0x3b,0xd5 = mrs x9, pmevcntr24_el0
|
1963
|
+
0x29,0xeb,0x3b,0xd5 = mrs x9, pmevcntr25_el0
|
1964
|
+
0x49,0xeb,0x3b,0xd5 = mrs x9, pmevcntr26_el0
|
1965
|
+
0x69,0xeb,0x3b,0xd5 = mrs x9, pmevcntr27_el0
|
1966
|
+
0x89,0xeb,0x3b,0xd5 = mrs x9, pmevcntr28_el0
|
1967
|
+
0xa9,0xeb,0x3b,0xd5 = mrs x9, pmevcntr29_el0
|
1968
|
+
0xc9,0xeb,0x3b,0xd5 = mrs x9, pmevcntr30_el0
|
1969
|
+
0xe9,0xef,0x3b,0xd5 = mrs x9, pmccfiltr_el0
|
1970
|
+
0x09,0xec,0x3b,0xd5 = mrs x9, pmevtyper0_el0
|
1971
|
+
0x29,0xec,0x3b,0xd5 = mrs x9, pmevtyper1_el0
|
1972
|
+
0x49,0xec,0x3b,0xd5 = mrs x9, pmevtyper2_el0
|
1973
|
+
0x69,0xec,0x3b,0xd5 = mrs x9, pmevtyper3_el0
|
1974
|
+
0x89,0xec,0x3b,0xd5 = mrs x9, pmevtyper4_el0
|
1975
|
+
0xa9,0xec,0x3b,0xd5 = mrs x9, pmevtyper5_el0
|
1976
|
+
0xc9,0xec,0x3b,0xd5 = mrs x9, pmevtyper6_el0
|
1977
|
+
0xe9,0xec,0x3b,0xd5 = mrs x9, pmevtyper7_el0
|
1978
|
+
0x09,0xed,0x3b,0xd5 = mrs x9, pmevtyper8_el0
|
1979
|
+
0x29,0xed,0x3b,0xd5 = mrs x9, pmevtyper9_el0
|
1980
|
+
0x49,0xed,0x3b,0xd5 = mrs x9, pmevtyper10_el0
|
1981
|
+
0x69,0xed,0x3b,0xd5 = mrs x9, pmevtyper11_el0
|
1982
|
+
0x89,0xed,0x3b,0xd5 = mrs x9, pmevtyper12_el0
|
1983
|
+
0xa9,0xed,0x3b,0xd5 = mrs x9, pmevtyper13_el0
|
1984
|
+
0xc9,0xed,0x3b,0xd5 = mrs x9, pmevtyper14_el0
|
1985
|
+
0xe9,0xed,0x3b,0xd5 = mrs x9, pmevtyper15_el0
|
1986
|
+
0x09,0xee,0x3b,0xd5 = mrs x9, pmevtyper16_el0
|
1987
|
+
0x29,0xee,0x3b,0xd5 = mrs x9, pmevtyper17_el0
|
1988
|
+
0x49,0xee,0x3b,0xd5 = mrs x9, pmevtyper18_el0
|
1989
|
+
0x69,0xee,0x3b,0xd5 = mrs x9, pmevtyper19_el0
|
1990
|
+
0x89,0xee,0x3b,0xd5 = mrs x9, pmevtyper20_el0
|
1991
|
+
0xa9,0xee,0x3b,0xd5 = mrs x9, pmevtyper21_el0
|
1992
|
+
0xc9,0xee,0x3b,0xd5 = mrs x9, pmevtyper22_el0
|
1993
|
+
0xe9,0xee,0x3b,0xd5 = mrs x9, pmevtyper23_el0
|
1994
|
+
0x09,0xef,0x3b,0xd5 = mrs x9, pmevtyper24_el0
|
1995
|
+
0x29,0xef,0x3b,0xd5 = mrs x9, pmevtyper25_el0
|
1996
|
+
0x49,0xef,0x3b,0xd5 = mrs x9, pmevtyper26_el0
|
1997
|
+
0x69,0xef,0x3b,0xd5 = mrs x9, pmevtyper27_el0
|
1998
|
+
0x89,0xef,0x3b,0xd5 = mrs x9, pmevtyper28_el0
|
1999
|
+
0xa9,0xef,0x3b,0xd5 = mrs x9, pmevtyper29_el0
|
2000
|
+
0xc9,0xef,0x3b,0xd5 = mrs x9, pmevtyper30_el0
|
2001
|
+
0xac,0xf1,0x3f,0xd5 = mrs x12, s3_7_c15_c1_5
|
2002
|
+
0xed,0xbf,0x3a,0xd5 = mrs x13, s3_2_c11_c15_7
|
2003
|
+
0x0c,0xf0,0x18,0xd5 = msr s3_0_c15_c0_0, x12
|
2004
|
+
0xe5,0xbd,0x1f,0xd5 = msr s3_7_c11_c13_7, x5
|
2005
|
+
0x01,0x00,0x00,0x14 = b #4
|
2006
|
+
0x00,0x00,0x00,0x94 = bl #0
|
2007
|
+
0xff,0xff,0xff,0x15 = b #134217724
|
2008
|
+
0x00,0x00,0x00,0x96 = bl #-134217728
|
2009
|
+
0x80,0x02,0x1f,0xd6 = br x20
|
2010
|
+
0xe0,0x03,0x3f,0xd6 = blr xzr
|
2011
|
+
0x40,0x01,0x5f,0xd6 = ret x10
|
2012
|
+
0xc0,0x03,0x5f,0xd6 = ret
|
2013
|
+
0xe0,0x03,0x9f,0xd6 = eret
|
2014
|
+
0xe0,0x03,0xbf,0xd6 = drps
|