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.
Files changed (302) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGES.md +61 -0
  3. data/LICENSE +25 -0
  4. data/MANIFEST +312 -0
  5. data/README.md +103 -0
  6. data/Rakefile +27 -0
  7. data/bin/genconst +66 -0
  8. data/bin/genreg +99 -0
  9. data/crabstone.gemspec +27 -0
  10. data/examples/hello_world.rb +43 -0
  11. data/lib/arch/arm.rb +128 -0
  12. data/lib/arch/arm64.rb +167 -0
  13. data/lib/arch/arm64_const.rb +1055 -0
  14. data/lib/arch/arm64_registers.rb +295 -0
  15. data/lib/arch/arm_const.rb +777 -0
  16. data/lib/arch/arm_registers.rb +149 -0
  17. data/lib/arch/mips.rb +78 -0
  18. data/lib/arch/mips_const.rb +850 -0
  19. data/lib/arch/mips_registers.rb +208 -0
  20. data/lib/arch/ppc.rb +90 -0
  21. data/lib/arch/ppc_const.rb +1181 -0
  22. data/lib/arch/ppc_registers.rb +209 -0
  23. data/lib/arch/sparc.rb +79 -0
  24. data/lib/arch/sparc_const.rb +461 -0
  25. data/lib/arch/sparc_registers.rb +121 -0
  26. data/lib/arch/systemz.rb +79 -0
  27. data/lib/arch/sysz_const.rb +779 -0
  28. data/lib/arch/sysz_registers.rb +66 -0
  29. data/lib/arch/x86.rb +107 -0
  30. data/lib/arch/x86_const.rb +1698 -0
  31. data/lib/arch/x86_registers.rb +265 -0
  32. data/lib/arch/xcore.rb +78 -0
  33. data/lib/arch/xcore_const.rb +185 -0
  34. data/lib/arch/xcore_registers.rb +57 -0
  35. data/lib/crabstone.rb +564 -0
  36. data/test/MC/AArch64/basic-a64-instructions.s.cs +2014 -0
  37. data/test/MC/AArch64/gicv3-regs.s.cs +111 -0
  38. data/test/MC/AArch64/neon-2velem.s.cs +113 -0
  39. data/test/MC/AArch64/neon-3vdiff.s.cs +143 -0
  40. data/test/MC/AArch64/neon-aba-abd.s.cs +28 -0
  41. data/test/MC/AArch64/neon-across.s.cs +40 -0
  42. data/test/MC/AArch64/neon-add-pairwise.s.cs +11 -0
  43. data/test/MC/AArch64/neon-add-sub-instructions.s.cs +21 -0
  44. data/test/MC/AArch64/neon-bitwise-instructions.s.cs +17 -0
  45. data/test/MC/AArch64/neon-compare-instructions.s.cs +136 -0
  46. data/test/MC/AArch64/neon-crypto.s.cs +15 -0
  47. data/test/MC/AArch64/neon-extract.s.cs +3 -0
  48. data/test/MC/AArch64/neon-facge-facgt.s.cs +13 -0
  49. data/test/MC/AArch64/neon-frsqrt-frecp.s.cs +7 -0
  50. data/test/MC/AArch64/neon-halving-add-sub.s.cs +25 -0
  51. data/test/MC/AArch64/neon-max-min-pairwise.s.cs +37 -0
  52. data/test/MC/AArch64/neon-max-min.s.cs +37 -0
  53. data/test/MC/AArch64/neon-mla-mls-instructions.s.cs +19 -0
  54. data/test/MC/AArch64/neon-mov.s.cs +74 -0
  55. data/test/MC/AArch64/neon-mul-div-instructions.s.cs +24 -0
  56. data/test/MC/AArch64/neon-perm.s.cs +43 -0
  57. data/test/MC/AArch64/neon-rounding-halving-add.s.cs +13 -0
  58. data/test/MC/AArch64/neon-rounding-shift.s.cs +15 -0
  59. data/test/MC/AArch64/neon-saturating-add-sub.s.cs +29 -0
  60. data/test/MC/AArch64/neon-saturating-rounding-shift.s.cs +15 -0
  61. data/test/MC/AArch64/neon-saturating-shift.s.cs +15 -0
  62. data/test/MC/AArch64/neon-scalar-abs.s.cs +8 -0
  63. data/test/MC/AArch64/neon-scalar-add-sub.s.cs +3 -0
  64. data/test/MC/AArch64/neon-scalar-by-elem-mla.s.cs +13 -0
  65. data/test/MC/AArch64/neon-scalar-by-elem-mul.s.cs +13 -0
  66. data/test/MC/AArch64/neon-scalar-by-elem-saturating-mla.s.cs +15 -0
  67. data/test/MC/AArch64/neon-scalar-by-elem-saturating-mul.s.cs +18 -0
  68. data/test/MC/AArch64/neon-scalar-compare.s.cs +12 -0
  69. data/test/MC/AArch64/neon-scalar-cvt.s.cs +34 -0
  70. data/test/MC/AArch64/neon-scalar-dup.s.cs +23 -0
  71. data/test/MC/AArch64/neon-scalar-extract-narrow.s.cs +10 -0
  72. data/test/MC/AArch64/neon-scalar-fp-compare.s.cs +21 -0
  73. data/test/MC/AArch64/neon-scalar-mul.s.cs +13 -0
  74. data/test/MC/AArch64/neon-scalar-neg.s.cs +6 -0
  75. data/test/MC/AArch64/neon-scalar-recip.s.cs +11 -0
  76. data/test/MC/AArch64/neon-scalar-reduce-pairwise.s.cs +3 -0
  77. data/test/MC/AArch64/neon-scalar-rounding-shift.s.cs +3 -0
  78. data/test/MC/AArch64/neon-scalar-saturating-add-sub.s.cs +25 -0
  79. data/test/MC/AArch64/neon-scalar-saturating-rounding-shift.s.cs +9 -0
  80. data/test/MC/AArch64/neon-scalar-saturating-shift.s.cs +9 -0
  81. data/test/MC/AArch64/neon-scalar-shift-imm.s.cs +42 -0
  82. data/test/MC/AArch64/neon-scalar-shift.s.cs +3 -0
  83. data/test/MC/AArch64/neon-shift-left-long.s.cs +13 -0
  84. data/test/MC/AArch64/neon-shift.s.cs +22 -0
  85. data/test/MC/AArch64/neon-simd-copy.s.cs +42 -0
  86. data/test/MC/AArch64/neon-simd-ldst-multi-elem.s.cs +197 -0
  87. data/test/MC/AArch64/neon-simd-ldst-one-elem.s.cs +129 -0
  88. data/test/MC/AArch64/neon-simd-misc.s.cs +213 -0
  89. data/test/MC/AArch64/neon-simd-post-ldst-multi-elem.s.cs +107 -0
  90. data/test/MC/AArch64/neon-simd-shift.s.cs +151 -0
  91. data/test/MC/AArch64/neon-tbl.s.cs +21 -0
  92. data/test/MC/AArch64/trace-regs.s.cs +383 -0
  93. data/test/MC/ARM/arm-aliases.s.cs +7 -0
  94. data/test/MC/ARM/arm-arithmetic-aliases.s.cs +50 -0
  95. data/test/MC/ARM/arm-it-block.s.cs +2 -0
  96. data/test/MC/ARM/arm-memory-instructions.s.cs +138 -0
  97. data/test/MC/ARM/arm-shift-encoding.s.cs +50 -0
  98. data/test/MC/ARM/arm-thumb-trustzone.s.cs +3 -0
  99. data/test/MC/ARM/arm-trustzone.s.cs +3 -0
  100. data/test/MC/ARM/arm_addrmode2.s.cs +15 -0
  101. data/test/MC/ARM/arm_addrmode3.s.cs +9 -0
  102. data/test/MC/ARM/arm_instructions.s.cs +25 -0
  103. data/test/MC/ARM/basic-arm-instructions-v8.s.cs +10 -0
  104. data/test/MC/ARM/basic-arm-instructions.s.cs +997 -0
  105. data/test/MC/ARM/basic-thumb-instructions.s.cs +130 -0
  106. data/test/MC/ARM/basic-thumb2-instructions-v8.s.cs +1 -0
  107. data/test/MC/ARM/basic-thumb2-instructions.s.cs +1242 -0
  108. data/test/MC/ARM/crc32-thumb.s.cs +7 -0
  109. data/test/MC/ARM/crc32.s.cs +7 -0
  110. data/test/MC/ARM/dot-req.s.cs +3 -0
  111. data/test/MC/ARM/fp-armv8.s.cs +52 -0
  112. data/test/MC/ARM/idiv-thumb.s.cs +3 -0
  113. data/test/MC/ARM/idiv.s.cs +3 -0
  114. data/test/MC/ARM/load-store-acquire-release-v8-thumb.s.cs +15 -0
  115. data/test/MC/ARM/load-store-acquire-release-v8.s.cs +15 -0
  116. data/test/MC/ARM/mode-switch.s.cs +7 -0
  117. data/test/MC/ARM/neon-abs-encoding.s.cs +15 -0
  118. data/test/MC/ARM/neon-absdiff-encoding.s.cs +39 -0
  119. data/test/MC/ARM/neon-add-encoding.s.cs +119 -0
  120. data/test/MC/ARM/neon-bitcount-encoding.s.cs +15 -0
  121. data/test/MC/ARM/neon-bitwise-encoding.s.cs +126 -0
  122. data/test/MC/ARM/neon-cmp-encoding.s.cs +88 -0
  123. data/test/MC/ARM/neon-convert-encoding.s.cs +27 -0
  124. data/test/MC/ARM/neon-crypto.s.cs +16 -0
  125. data/test/MC/ARM/neon-dup-encoding.s.cs +13 -0
  126. data/test/MC/ARM/neon-minmax-encoding.s.cs +57 -0
  127. data/test/MC/ARM/neon-mov-encoding.s.cs +76 -0
  128. data/test/MC/ARM/neon-mul-accum-encoding.s.cs +39 -0
  129. data/test/MC/ARM/neon-mul-encoding.s.cs +72 -0
  130. data/test/MC/ARM/neon-neg-encoding.s.cs +15 -0
  131. data/test/MC/ARM/neon-pairwise-encoding.s.cs +47 -0
  132. data/test/MC/ARM/neon-reciprocal-encoding.s.cs +13 -0
  133. data/test/MC/ARM/neon-reverse-encoding.s.cs +13 -0
  134. data/test/MC/ARM/neon-satshift-encoding.s.cs +75 -0
  135. data/test/MC/ARM/neon-shift-encoding.s.cs +238 -0
  136. data/test/MC/ARM/neon-shiftaccum-encoding.s.cs +97 -0
  137. data/test/MC/ARM/neon-shuffle-encoding.s.cs +59 -0
  138. data/test/MC/ARM/neon-sub-encoding.s.cs +82 -0
  139. data/test/MC/ARM/neon-table-encoding.s.cs +9 -0
  140. data/test/MC/ARM/neon-v8.s.cs +38 -0
  141. data/test/MC/ARM/neon-vld-encoding.s.cs +213 -0
  142. data/test/MC/ARM/neon-vst-encoding.s.cs +120 -0
  143. data/test/MC/ARM/neon-vswp.s.cs +3 -0
  144. data/test/MC/ARM/neont2-abs-encoding.s.cs +15 -0
  145. data/test/MC/ARM/neont2-absdiff-encoding.s.cs +39 -0
  146. data/test/MC/ARM/neont2-add-encoding.s.cs +65 -0
  147. data/test/MC/ARM/neont2-bitcount-encoding.s.cs +15 -0
  148. data/test/MC/ARM/neont2-bitwise-encoding.s.cs +15 -0
  149. data/test/MC/ARM/neont2-cmp-encoding.s.cs +17 -0
  150. data/test/MC/ARM/neont2-convert-encoding.s.cs +19 -0
  151. data/test/MC/ARM/neont2-dup-encoding.s.cs +19 -0
  152. data/test/MC/ARM/neont2-minmax-encoding.s.cs +57 -0
  153. data/test/MC/ARM/neont2-mov-encoding.s.cs +58 -0
  154. data/test/MC/ARM/neont2-mul-accum-encoding.s.cs +41 -0
  155. data/test/MC/ARM/neont2-mul-encoding.s.cs +31 -0
  156. data/test/MC/ARM/neont2-neg-encoding.s.cs +15 -0
  157. data/test/MC/ARM/neont2-pairwise-encoding.s.cs +43 -0
  158. data/test/MC/ARM/neont2-reciprocal-encoding.s.cs +13 -0
  159. data/test/MC/ARM/neont2-reverse-encoding.s.cs +13 -0
  160. data/test/MC/ARM/neont2-satshift-encoding.s.cs +75 -0
  161. data/test/MC/ARM/neont2-shift-encoding.s.cs +80 -0
  162. data/test/MC/ARM/neont2-shiftaccum-encoding.s.cs +97 -0
  163. data/test/MC/ARM/neont2-shuffle-encoding.s.cs +23 -0
  164. data/test/MC/ARM/neont2-sub-encoding.s.cs +23 -0
  165. data/test/MC/ARM/neont2-table-encoding.s.cs +9 -0
  166. data/test/MC/ARM/neont2-vld-encoding.s.cs +51 -0
  167. data/test/MC/ARM/neont2-vst-encoding.s.cs +48 -0
  168. data/test/MC/ARM/simple-fp-encoding.s.cs +157 -0
  169. data/test/MC/ARM/thumb-fp-armv8.s.cs +51 -0
  170. data/test/MC/ARM/thumb-hints.s.cs +12 -0
  171. data/test/MC/ARM/thumb-neon-crypto.s.cs +16 -0
  172. data/test/MC/ARM/thumb-neon-v8.s.cs +38 -0
  173. data/test/MC/ARM/thumb-shift-encoding.s.cs +19 -0
  174. data/test/MC/ARM/thumb.s.cs +19 -0
  175. data/test/MC/ARM/thumb2-b.w-encodingT4.s.cs +2 -0
  176. data/test/MC/ARM/thumb2-branches.s.cs +85 -0
  177. data/test/MC/ARM/thumb2-mclass.s.cs +41 -0
  178. data/test/MC/ARM/thumb2-narrow-dp.ll.cs +379 -0
  179. data/test/MC/ARM/thumb2-pldw.s.cs +2 -0
  180. data/test/MC/ARM/vfp4-thumb.s.cs +13 -0
  181. data/test/MC/ARM/vfp4.s.cs +13 -0
  182. data/test/MC/ARM/vpush-vpop-thumb.s.cs +9 -0
  183. data/test/MC/ARM/vpush-vpop.s.cs +9 -0
  184. data/test/MC/Mips/hilo-addressing.s.cs +4 -0
  185. data/test/MC/Mips/micromips-alu-instructions-EB.s.cs +33 -0
  186. data/test/MC/Mips/micromips-alu-instructions.s.cs +33 -0
  187. data/test/MC/Mips/micromips-branch-instructions-EB.s.cs +11 -0
  188. data/test/MC/Mips/micromips-branch-instructions.s.cs +11 -0
  189. data/test/MC/Mips/micromips-expansions.s.cs +20 -0
  190. data/test/MC/Mips/micromips-jump-instructions-EB.s.cs +5 -0
  191. data/test/MC/Mips/micromips-jump-instructions.s.cs +6 -0
  192. data/test/MC/Mips/micromips-loadstore-instructions-EB.s.cs +9 -0
  193. data/test/MC/Mips/micromips-loadstore-instructions.s.cs +9 -0
  194. data/test/MC/Mips/micromips-loadstore-unaligned-EB.s.cs +5 -0
  195. data/test/MC/Mips/micromips-loadstore-unaligned.s.cs +5 -0
  196. data/test/MC/Mips/micromips-movcond-instructions-EB.s.cs +5 -0
  197. data/test/MC/Mips/micromips-movcond-instructions.s.cs +5 -0
  198. data/test/MC/Mips/micromips-multiply-instructions-EB.s.cs +5 -0
  199. data/test/MC/Mips/micromips-multiply-instructions.s.cs +5 -0
  200. data/test/MC/Mips/micromips-shift-instructions-EB.s.cs +9 -0
  201. data/test/MC/Mips/micromips-shift-instructions.s.cs +9 -0
  202. data/test/MC/Mips/micromips-trap-instructions-EB.s.cs +13 -0
  203. data/test/MC/Mips/micromips-trap-instructions.s.cs +13 -0
  204. data/test/MC/Mips/mips-alu-instructions.s.cs +53 -0
  205. data/test/MC/Mips/mips-control-instructions-64.s.cs +33 -0
  206. data/test/MC/Mips/mips-control-instructions.s.cs +33 -0
  207. data/test/MC/Mips/mips-coprocessor-encodings.s.cs +17 -0
  208. data/test/MC/Mips/mips-dsp-instructions.s.cs +43 -0
  209. data/test/MC/Mips/mips-expansions.s.cs +20 -0
  210. data/test/MC/Mips/mips-fpu-instructions.s.cs +93 -0
  211. data/test/MC/Mips/mips-jump-instructions.s.cs +1 -0
  212. data/test/MC/Mips/mips-memory-instructions.s.cs +17 -0
  213. data/test/MC/Mips/mips-register-names.s.cs +33 -0
  214. data/test/MC/Mips/mips64-alu-instructions.s.cs +47 -0
  215. data/test/MC/Mips/mips64-instructions.s.cs +3 -0
  216. data/test/MC/Mips/mips64-register-names.s.cs +33 -0
  217. data/test/MC/Mips/mips_directives.s.cs +12 -0
  218. data/test/MC/Mips/nabi-regs.s.cs +12 -0
  219. data/test/MC/Mips/set-at-directive.s.cs +6 -0
  220. data/test/MC/Mips/test_2r.s.cs +16 -0
  221. data/test/MC/Mips/test_2rf.s.cs +33 -0
  222. data/test/MC/Mips/test_3r.s.cs +243 -0
  223. data/test/MC/Mips/test_3rf.s.cs +83 -0
  224. data/test/MC/Mips/test_bit.s.cs +49 -0
  225. data/test/MC/Mips/test_cbranch.s.cs +11 -0
  226. data/test/MC/Mips/test_ctrlregs.s.cs +33 -0
  227. data/test/MC/Mips/test_elm.s.cs +16 -0
  228. data/test/MC/Mips/test_elm_insert.s.cs +4 -0
  229. data/test/MC/Mips/test_elm_insve.s.cs +5 -0
  230. data/test/MC/Mips/test_i10.s.cs +5 -0
  231. data/test/MC/Mips/test_i5.s.cs +45 -0
  232. data/test/MC/Mips/test_i8.s.cs +11 -0
  233. data/test/MC/Mips/test_lsa.s.cs +5 -0
  234. data/test/MC/Mips/test_mi10.s.cs +24 -0
  235. data/test/MC/Mips/test_vec.s.cs +8 -0
  236. data/test/MC/PowerPC/ppc64-encoding-bookII.s.cs +25 -0
  237. data/test/MC/PowerPC/ppc64-encoding-bookIII.s.cs +35 -0
  238. data/test/MC/PowerPC/ppc64-encoding-ext.s.cs +535 -0
  239. data/test/MC/PowerPC/ppc64-encoding-fp.s.cs +110 -0
  240. data/test/MC/PowerPC/ppc64-encoding-vmx.s.cs +170 -0
  241. data/test/MC/PowerPC/ppc64-encoding.s.cs +202 -0
  242. data/test/MC/PowerPC/ppc64-operands.s.cs +32 -0
  243. data/test/MC/README +6 -0
  244. data/test/MC/Sparc/sparc-alu-instructions.s.cs +47 -0
  245. data/test/MC/Sparc/sparc-atomic-instructions.s.cs +7 -0
  246. data/test/MC/Sparc/sparc-ctrl-instructions.s.cs +11 -0
  247. data/test/MC/Sparc/sparc-fp-instructions.s.cs +59 -0
  248. data/test/MC/Sparc/sparc-mem-instructions.s.cs +25 -0
  249. data/test/MC/Sparc/sparc-vis.s.cs +2 -0
  250. data/test/MC/Sparc/sparc64-alu-instructions.s.cs +13 -0
  251. data/test/MC/Sparc/sparc64-ctrl-instructions.s.cs +102 -0
  252. data/test/MC/Sparc/sparcv8-instructions.s.cs +7 -0
  253. data/test/MC/Sparc/sparcv9-instructions.s.cs +1 -0
  254. data/test/MC/SystemZ/insn-good-z196.s.cs +589 -0
  255. data/test/MC/SystemZ/insn-good.s.cs +2265 -0
  256. data/test/MC/SystemZ/regs-good.s.cs +45 -0
  257. data/test/MC/X86/3DNow.s.cs +29 -0
  258. data/test/MC/X86/address-size.s.cs +5 -0
  259. data/test/MC/X86/avx512-encodings.s.cs +12 -0
  260. data/test/MC/X86/intel-syntax-encoding.s.cs +30 -0
  261. data/test/MC/X86/x86-32-avx.s.cs +833 -0
  262. data/test/MC/X86/x86-32-fma3.s.cs +169 -0
  263. data/test/MC/X86/x86-32-ms-inline-asm.s.cs +27 -0
  264. data/test/MC/X86/x86_64-avx-clmul-encoding.s.cs +11 -0
  265. data/test/MC/X86/x86_64-avx-encoding.s.cs +1058 -0
  266. data/test/MC/X86/x86_64-bmi-encoding.s.cs +51 -0
  267. data/test/MC/X86/x86_64-encoding.s.cs +59 -0
  268. data/test/MC/X86/x86_64-fma3-encoding.s.cs +169 -0
  269. data/test/MC/X86/x86_64-fma4-encoding.s.cs +98 -0
  270. data/test/MC/X86/x86_64-hle-encoding.s.cs +3 -0
  271. data/test/MC/X86/x86_64-imm-widths.s.cs +27 -0
  272. data/test/MC/X86/x86_64-rand-encoding.s.cs +13 -0
  273. data/test/MC/X86/x86_64-rtm-encoding.s.cs +4 -0
  274. data/test/MC/X86/x86_64-sse4a.s.cs +1 -0
  275. data/test/MC/X86/x86_64-tbm-encoding.s.cs +40 -0
  276. data/test/MC/X86/x86_64-xop-encoding.s.cs +152 -0
  277. data/test/README +6 -0
  278. data/test/test.rb +205 -0
  279. data/test/test.rb.SPEC +235 -0
  280. data/test/test_arm.rb +202 -0
  281. data/test/test_arm.rb.SPEC +275 -0
  282. data/test/test_arm64.rb +150 -0
  283. data/test/test_arm64.rb.SPEC +116 -0
  284. data/test/test_detail.rb +228 -0
  285. data/test/test_detail.rb.SPEC +322 -0
  286. data/test/test_exhaustive.rb +80 -0
  287. data/test/test_mips.rb +118 -0
  288. data/test/test_mips.rb.SPEC +91 -0
  289. data/test/test_ppc.rb +137 -0
  290. data/test/test_ppc.rb.SPEC +84 -0
  291. data/test/test_sanity.rb +83 -0
  292. data/test/test_skipdata.rb +111 -0
  293. data/test/test_skipdata.rb.SPEC +58 -0
  294. data/test/test_sparc.rb +113 -0
  295. data/test/test_sparc.rb.SPEC +116 -0
  296. data/test/test_sysz.rb +111 -0
  297. data/test/test_sysz.rb.SPEC +61 -0
  298. data/test/test_x86.rb +189 -0
  299. data/test/test_x86.rb.SPEC +579 -0
  300. data/test/test_xcore.rb +100 -0
  301. data/test/test_xcore.rb.SPEC +75 -0
  302. metadata +393 -0
@@ -0,0 +1,2265 @@
1
+ # CS_ARCH_SYSZ, 0, None
2
+ 0x5a,0x00,0x00,0x00 = a %r0, 0
3
+ 0x5a,0x00,0x0f,0xff = a %r0, 4095
4
+ 0x5a,0x00,0x10,0x00 = a %r0, 0(%r1)
5
+ 0x5a,0x00,0xf0,0x00 = a %r0, 0(%r15)
6
+ 0x5a,0x01,0xff,0xff = a %r0, 4095(%r1,%r15)
7
+ 0x5a,0x0f,0x1f,0xff = a %r0, 4095(%r15,%r1)
8
+ 0x5a,0xf0,0x00,0x00 = a %r15, 0
9
+ 0xed,0x00,0x00,0x00,0x00,0x1a = adb %f0, 0
10
+ 0xed,0x00,0x0f,0xff,0x00,0x1a = adb %f0, 4095
11
+ 0xed,0x00,0x10,0x00,0x00,0x1a = adb %f0, 0(%r1)
12
+ 0xed,0x00,0xf0,0x00,0x00,0x1a = adb %f0, 0(%r15)
13
+ 0xed,0x01,0xff,0xff,0x00,0x1a = adb %f0, 4095(%r1,%r15)
14
+ 0xed,0x0f,0x1f,0xff,0x00,0x1a = adb %f0, 4095(%r15,%r1)
15
+ 0xed,0xf0,0x00,0x00,0x00,0x1a = adb %f15, 0
16
+ 0xb3,0x1a,0x00,0x00 = adbr %f0, %f0
17
+ 0xb3,0x1a,0x00,0x0f = adbr %f0, %f15
18
+ 0xb3,0x1a,0x00,0x78 = adbr %f7, %f8
19
+ 0xb3,0x1a,0x00,0xf0 = adbr %f15, %f0
20
+ 0xed,0x00,0x00,0x00,0x00,0x0a = aeb %f0, 0
21
+ 0xed,0x00,0x0f,0xff,0x00,0x0a = aeb %f0, 4095
22
+ 0xed,0x00,0x10,0x00,0x00,0x0a = aeb %f0, 0(%r1)
23
+ 0xed,0x00,0xf0,0x00,0x00,0x0a = aeb %f0, 0(%r15)
24
+ 0xed,0x01,0xff,0xff,0x00,0x0a = aeb %f0, 4095(%r1,%r15)
25
+ 0xed,0x0f,0x1f,0xff,0x00,0x0a = aeb %f0, 4095(%r15,%r1)
26
+ 0xed,0xf0,0x00,0x00,0x00,0x0a = aeb %f15, 0
27
+ 0xb3,0x0a,0x00,0x00 = aebr %f0, %f0
28
+ 0xb3,0x0a,0x00,0x0f = aebr %f0, %f15
29
+ 0xb3,0x0a,0x00,0x78 = aebr %f7, %f8
30
+ 0xb3,0x0a,0x00,0xf0 = aebr %f15, %f0
31
+ 0xc2,0x09,0x80,0x00,0x00,0x00 = afi %r0, -2147483648
32
+ 0xc2,0x09,0xff,0xff,0xff,0xff = afi %r0, -1
33
+ 0xc2,0x09,0x00,0x00,0x00,0x00 = afi %r0, 0
34
+ 0xc2,0x09,0x00,0x00,0x00,0x01 = afi %r0, 1
35
+ 0xc2,0x09,0x7f,0xff,0xff,0xff = afi %r0, 2147483647
36
+ 0xc2,0xf9,0x00,0x00,0x00,0x00 = afi %r15, 0
37
+ 0xe3,0x00,0x00,0x00,0x80,0x08 = ag %r0, -524288
38
+ 0xe3,0x00,0x0f,0xff,0xff,0x08 = ag %r0, -1
39
+ 0xe3,0x00,0x00,0x00,0x00,0x08 = ag %r0, 0
40
+ 0xe3,0x00,0x00,0x01,0x00,0x08 = ag %r0, 1
41
+ 0xe3,0x00,0x0f,0xff,0x7f,0x08 = ag %r0, 524287
42
+ 0xe3,0x00,0x10,0x00,0x00,0x08 = ag %r0, 0(%r1)
43
+ 0xe3,0x00,0xf0,0x00,0x00,0x08 = ag %r0, 0(%r15)
44
+ 0xe3,0x01,0xff,0xff,0x7f,0x08 = ag %r0, 524287(%r1,%r15)
45
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x08 = ag %r0, 524287(%r15,%r1)
46
+ 0xe3,0xf0,0x00,0x00,0x00,0x08 = ag %r15, 0
47
+ 0xe3,0x00,0x00,0x00,0x80,0x18 = agf %r0, -524288
48
+ 0xe3,0x00,0x0f,0xff,0xff,0x18 = agf %r0, -1
49
+ 0xe3,0x00,0x00,0x00,0x00,0x18 = agf %r0, 0
50
+ 0xe3,0x00,0x00,0x01,0x00,0x18 = agf %r0, 1
51
+ 0xe3,0x00,0x0f,0xff,0x7f,0x18 = agf %r0, 524287
52
+ 0xe3,0x00,0x10,0x00,0x00,0x18 = agf %r0, 0(%r1)
53
+ 0xe3,0x00,0xf0,0x00,0x00,0x18 = agf %r0, 0(%r15)
54
+ 0xe3,0x01,0xff,0xff,0x7f,0x18 = agf %r0, 524287(%r1,%r15)
55
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x18 = agf %r0, 524287(%r15,%r1)
56
+ 0xe3,0xf0,0x00,0x00,0x00,0x18 = agf %r15, 0
57
+ 0xc2,0x08,0x80,0x00,0x00,0x00 = agfi %r0, -2147483648
58
+ 0xc2,0x08,0xff,0xff,0xff,0xff = agfi %r0, -1
59
+ 0xc2,0x08,0x00,0x00,0x00,0x00 = agfi %r0, 0
60
+ 0xc2,0x08,0x00,0x00,0x00,0x01 = agfi %r0, 1
61
+ 0xc2,0x08,0x7f,0xff,0xff,0xff = agfi %r0, 2147483647
62
+ 0xc2,0xf8,0x00,0x00,0x00,0x00 = agfi %r15, 0
63
+ 0xb9,0x18,0x00,0x00 = agfr %r0, %r0
64
+ 0xb9,0x18,0x00,0x0f = agfr %r0, %r15
65
+ 0xb9,0x18,0x00,0xf0 = agfr %r15, %r0
66
+ 0xb9,0x18,0x00,0x78 = agfr %r7, %r8
67
+ 0xa7,0x0b,0x80,0x00 = aghi %r0, -32768
68
+ 0xa7,0x0b,0xff,0xff = aghi %r0, -1
69
+ 0xa7,0x0b,0x00,0x00 = aghi %r0, 0
70
+ 0xa7,0x0b,0x00,0x01 = aghi %r0, 1
71
+ 0xa7,0x0b,0x7f,0xff = aghi %r0, 32767
72
+ 0xa7,0xfb,0x00,0x00 = aghi %r15, 0
73
+ 0xb9,0x08,0x00,0x00 = agr %r0, %r0
74
+ 0xb9,0x08,0x00,0x0f = agr %r0, %r15
75
+ 0xb9,0x08,0x00,0xf0 = agr %r15, %r0
76
+ 0xb9,0x08,0x00,0x78 = agr %r7, %r8
77
+ 0xeb,0x00,0x00,0x00,0x80,0x7a = agsi -524288, 0
78
+ 0xeb,0x00,0x0f,0xff,0xff,0x7a = agsi -1, 0
79
+ 0xeb,0x00,0x00,0x00,0x00,0x7a = agsi 0, 0
80
+ 0xeb,0x00,0x00,0x01,0x00,0x7a = agsi 1, 0
81
+ 0xeb,0x00,0x0f,0xff,0x7f,0x7a = agsi 524287, 0
82
+ 0xeb,0x80,0x00,0x00,0x00,0x7a = agsi 0, -128
83
+ 0xeb,0xff,0x00,0x00,0x00,0x7a = agsi 0, -1
84
+ 0xeb,0x01,0x00,0x00,0x00,0x7a = agsi 0, 1
85
+ 0xeb,0x7f,0x00,0x00,0x00,0x7a = agsi 0, 127
86
+ 0xeb,0x2a,0x10,0x00,0x00,0x7a = agsi 0(%r1), 42
87
+ 0xeb,0x2a,0xf0,0x00,0x00,0x7a = agsi 0(%r15), 42
88
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x7a = agsi 524287(%r1), 42
89
+ 0xeb,0x2a,0xff,0xff,0x7f,0x7a = agsi 524287(%r15), 42
90
+ 0x4a,0x00,0x00,0x00 = ah %r0, 0
91
+ 0x4a,0x00,0x0f,0xff = ah %r0, 4095
92
+ 0x4a,0x00,0x10,0x00 = ah %r0, 0(%r1)
93
+ 0x4a,0x00,0xf0,0x00 = ah %r0, 0(%r15)
94
+ 0x4a,0x01,0xff,0xff = ah %r0, 4095(%r1,%r15)
95
+ 0x4a,0x0f,0x1f,0xff = ah %r0, 4095(%r15,%r1)
96
+ 0x4a,0xf0,0x00,0x00 = ah %r15, 0
97
+ 0xa7,0x0a,0x80,0x00 = ahi %r0, -32768
98
+ 0xa7,0x0a,0xff,0xff = ahi %r0, -1
99
+ 0xa7,0x0a,0x00,0x00 = ahi %r0, 0
100
+ 0xa7,0x0a,0x00,0x01 = ahi %r0, 1
101
+ 0xa7,0x0a,0x7f,0xff = ahi %r0, 32767
102
+ 0xa7,0xfa,0x00,0x00 = ahi %r15, 0
103
+ 0xe3,0x00,0x00,0x00,0x80,0x7a = ahy %r0, -524288
104
+ 0xe3,0x00,0x0f,0xff,0xff,0x7a = ahy %r0, -1
105
+ 0xe3,0x00,0x00,0x00,0x00,0x7a = ahy %r0, 0
106
+ 0xe3,0x00,0x00,0x01,0x00,0x7a = ahy %r0, 1
107
+ 0xe3,0x00,0x0f,0xff,0x7f,0x7a = ahy %r0, 524287
108
+ 0xe3,0x00,0x10,0x00,0x00,0x7a = ahy %r0, 0(%r1)
109
+ 0xe3,0x00,0xf0,0x00,0x00,0x7a = ahy %r0, 0(%r15)
110
+ 0xe3,0x01,0xff,0xff,0x7f,0x7a = ahy %r0, 524287(%r1,%r15)
111
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x7a = ahy %r0, 524287(%r15,%r1)
112
+ 0xe3,0xf0,0x00,0x00,0x00,0x7a = ahy %r15, 0
113
+ 0x5e,0x00,0x00,0x00 = al %r0, 0
114
+ 0x5e,0x00,0x0f,0xff = al %r0, 4095
115
+ 0x5e,0x00,0x10,0x00 = al %r0, 0(%r1)
116
+ 0x5e,0x00,0xf0,0x00 = al %r0, 0(%r15)
117
+ 0x5e,0x01,0xff,0xff = al %r0, 4095(%r1,%r15)
118
+ 0x5e,0x0f,0x1f,0xff = al %r0, 4095(%r15,%r1)
119
+ 0x5e,0xf0,0x00,0x00 = al %r15, 0
120
+ 0xe3,0x00,0x00,0x00,0x80,0x98 = alc %r0, -524288
121
+ 0xe3,0x00,0x0f,0xff,0xff,0x98 = alc %r0, -1
122
+ 0xe3,0x00,0x00,0x00,0x00,0x98 = alc %r0, 0
123
+ 0xe3,0x00,0x00,0x01,0x00,0x98 = alc %r0, 1
124
+ 0xe3,0x00,0x0f,0xff,0x7f,0x98 = alc %r0, 524287
125
+ 0xe3,0x00,0x10,0x00,0x00,0x98 = alc %r0, 0(%r1)
126
+ 0xe3,0x00,0xf0,0x00,0x00,0x98 = alc %r0, 0(%r15)
127
+ 0xe3,0x01,0xff,0xff,0x7f,0x98 = alc %r0, 524287(%r1,%r15)
128
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x98 = alc %r0, 524287(%r15,%r1)
129
+ 0xe3,0xf0,0x00,0x00,0x00,0x98 = alc %r15, 0
130
+ 0xe3,0x00,0x00,0x00,0x80,0x88 = alcg %r0, -524288
131
+ 0xe3,0x00,0x0f,0xff,0xff,0x88 = alcg %r0, -1
132
+ 0xe3,0x00,0x00,0x00,0x00,0x88 = alcg %r0, 0
133
+ 0xe3,0x00,0x00,0x01,0x00,0x88 = alcg %r0, 1
134
+ 0xe3,0x00,0x0f,0xff,0x7f,0x88 = alcg %r0, 524287
135
+ 0xe3,0x00,0x10,0x00,0x00,0x88 = alcg %r0, 0(%r1)
136
+ 0xe3,0x00,0xf0,0x00,0x00,0x88 = alcg %r0, 0(%r15)
137
+ 0xe3,0x01,0xff,0xff,0x7f,0x88 = alcg %r0, 524287(%r1,%r15)
138
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x88 = alcg %r0, 524287(%r15,%r1)
139
+ 0xe3,0xf0,0x00,0x00,0x00,0x88 = alcg %r15, 0
140
+ 0xb9,0x88,0x00,0x00 = alcgr %r0, %r0
141
+ 0xb9,0x88,0x00,0x0f = alcgr %r0, %r15
142
+ 0xb9,0x88,0x00,0xf0 = alcgr %r15, %r0
143
+ 0xb9,0x88,0x00,0x78 = alcgr %r7, %r8
144
+ 0xb9,0x98,0x00,0x00 = alcr %r0, %r0
145
+ 0xb9,0x98,0x00,0x0f = alcr %r0, %r15
146
+ 0xb9,0x98,0x00,0xf0 = alcr %r15, %r0
147
+ 0xb9,0x98,0x00,0x78 = alcr %r7, %r8
148
+ 0xc2,0x0b,0x00,0x00,0x00,0x00 = alfi %r0, 0
149
+ 0xc2,0x0b,0xff,0xff,0xff,0xff = alfi %r0, 4294967295
150
+ 0xc2,0xfb,0x00,0x00,0x00,0x00 = alfi %r15, 0
151
+ 0xe3,0x00,0x00,0x00,0x80,0x0a = alg %r0, -524288
152
+ 0xe3,0x00,0x0f,0xff,0xff,0x0a = alg %r0, -1
153
+ 0xe3,0x00,0x00,0x00,0x00,0x0a = alg %r0, 0
154
+ 0xe3,0x00,0x00,0x01,0x00,0x0a = alg %r0, 1
155
+ 0xe3,0x00,0x0f,0xff,0x7f,0x0a = alg %r0, 524287
156
+ 0xe3,0x00,0x10,0x00,0x00,0x0a = alg %r0, 0(%r1)
157
+ 0xe3,0x00,0xf0,0x00,0x00,0x0a = alg %r0, 0(%r15)
158
+ 0xe3,0x01,0xff,0xff,0x7f,0x0a = alg %r0, 524287(%r1,%r15)
159
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x0a = alg %r0, 524287(%r15,%r1)
160
+ 0xe3,0xf0,0x00,0x00,0x00,0x0a = alg %r15, 0
161
+ 0xe3,0x00,0x00,0x00,0x80,0x1a = algf %r0, -524288
162
+ 0xe3,0x00,0x0f,0xff,0xff,0x1a = algf %r0, -1
163
+ 0xe3,0x00,0x00,0x00,0x00,0x1a = algf %r0, 0
164
+ 0xe3,0x00,0x00,0x01,0x00,0x1a = algf %r0, 1
165
+ 0xe3,0x00,0x0f,0xff,0x7f,0x1a = algf %r0, 524287
166
+ 0xe3,0x00,0x10,0x00,0x00,0x1a = algf %r0, 0(%r1)
167
+ 0xe3,0x00,0xf0,0x00,0x00,0x1a = algf %r0, 0(%r15)
168
+ 0xe3,0x01,0xff,0xff,0x7f,0x1a = algf %r0, 524287(%r1,%r15)
169
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x1a = algf %r0, 524287(%r15,%r1)
170
+ 0xe3,0xf0,0x00,0x00,0x00,0x1a = algf %r15, 0
171
+ 0xc2,0x0a,0x00,0x00,0x00,0x00 = algfi %r0, 0
172
+ 0xc2,0x0a,0xff,0xff,0xff,0xff = algfi %r0, 4294967295
173
+ 0xc2,0xfa,0x00,0x00,0x00,0x00 = algfi %r15, 0
174
+ 0xb9,0x1a,0x00,0x00 = algfr %r0, %r0
175
+ 0xb9,0x1a,0x00,0x0f = algfr %r0, %r15
176
+ 0xb9,0x1a,0x00,0xf0 = algfr %r15, %r0
177
+ 0xb9,0x1a,0x00,0x78 = algfr %r7, %r8
178
+ 0xb9,0x0a,0x00,0x00 = algr %r0, %r0
179
+ 0xb9,0x0a,0x00,0x0f = algr %r0, %r15
180
+ 0xb9,0x0a,0x00,0xf0 = algr %r15, %r0
181
+ 0xb9,0x0a,0x00,0x78 = algr %r7, %r8
182
+ 0x1e,0x00 = alr %r0, %r0
183
+ 0x1e,0x0f = alr %r0, %r15
184
+ 0x1e,0xf0 = alr %r15, %r0
185
+ 0x1e,0x78 = alr %r7, %r8
186
+ 0xe3,0x00,0x00,0x00,0x80,0x5e = aly %r0, -524288
187
+ 0xe3,0x00,0x0f,0xff,0xff,0x5e = aly %r0, -1
188
+ 0xe3,0x00,0x00,0x00,0x00,0x5e = aly %r0, 0
189
+ 0xe3,0x00,0x00,0x01,0x00,0x5e = aly %r0, 1
190
+ 0xe3,0x00,0x0f,0xff,0x7f,0x5e = aly %r0, 524287
191
+ 0xe3,0x00,0x10,0x00,0x00,0x5e = aly %r0, 0(%r1)
192
+ 0xe3,0x00,0xf0,0x00,0x00,0x5e = aly %r0, 0(%r15)
193
+ 0xe3,0x01,0xff,0xff,0x7f,0x5e = aly %r0, 524287(%r1,%r15)
194
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x5e = aly %r0, 524287(%r15,%r1)
195
+ 0xe3,0xf0,0x00,0x00,0x00,0x5e = aly %r15, 0
196
+ 0x1a,0x00 = ar %r0, %r0
197
+ 0x1a,0x0f = ar %r0, %r15
198
+ 0x1a,0xf0 = ar %r15, %r0
199
+ 0x1a,0x78 = ar %r7, %r8
200
+ 0xeb,0x00,0x00,0x00,0x80,0x6a = asi -524288, 0
201
+ 0xeb,0x00,0x0f,0xff,0xff,0x6a = asi -1, 0
202
+ 0xeb,0x00,0x00,0x00,0x00,0x6a = asi 0, 0
203
+ 0xeb,0x00,0x00,0x01,0x00,0x6a = asi 1, 0
204
+ 0xeb,0x00,0x0f,0xff,0x7f,0x6a = asi 524287, 0
205
+ 0xeb,0x80,0x00,0x00,0x00,0x6a = asi 0, -128
206
+ 0xeb,0xff,0x00,0x00,0x00,0x6a = asi 0, -1
207
+ 0xeb,0x01,0x00,0x00,0x00,0x6a = asi 0, 1
208
+ 0xeb,0x7f,0x00,0x00,0x00,0x6a = asi 0, 127
209
+ 0xeb,0x2a,0x10,0x00,0x00,0x6a = asi 0(%r1), 42
210
+ 0xeb,0x2a,0xf0,0x00,0x00,0x6a = asi 0(%r15), 42
211
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x6a = asi 524287(%r1), 42
212
+ 0xeb,0x2a,0xff,0xff,0x7f,0x6a = asi 524287(%r15), 42
213
+ 0xb3,0x4a,0x00,0x00 = axbr %f0, %f0
214
+ 0xb3,0x4a,0x00,0x0d = axbr %f0, %f13
215
+ 0xb3,0x4a,0x00,0x88 = axbr %f8, %f8
216
+ 0xb3,0x4a,0x00,0xd0 = axbr %f13, %f0
217
+ 0xe3,0x00,0x00,0x00,0x80,0x5a = ay %r0, -524288
218
+ 0xe3,0x00,0x0f,0xff,0xff,0x5a = ay %r0, -1
219
+ 0xe3,0x00,0x00,0x00,0x00,0x5a = ay %r0, 0
220
+ 0xe3,0x00,0x00,0x01,0x00,0x5a = ay %r0, 1
221
+ 0xe3,0x00,0x0f,0xff,0x7f,0x5a = ay %r0, 524287
222
+ 0xe3,0x00,0x10,0x00,0x00,0x5a = ay %r0, 0(%r1)
223
+ 0xe3,0x00,0xf0,0x00,0x00,0x5a = ay %r0, 0(%r15)
224
+ 0xe3,0x01,0xff,0xff,0x7f,0x5a = ay %r0, 524287(%r1,%r15)
225
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x5a = ay %r0, 524287(%r15,%r1)
226
+ 0xe3,0xf0,0x00,0x00,0x00,0x5a = ay %r15, 0
227
+ 0x0d,0x01 = basr %r0, %r1
228
+ 0x0d,0x0f = basr %r0, %r15
229
+ 0x0d,0xe9 = basr %r14, %r9
230
+ 0x0d,0xf1 = basr %r15, %r1
231
+ 0x07,0x00 = bcr 0, %r0
232
+ 0x07,0x0f = bcr 0, %r15
233
+ 0x07,0x17 = bcr 1, %r7
234
+ 0x07,0x1f = bor %r15
235
+ 0x07,0x27 = bcr 2, %r7
236
+ 0x07,0x2f = bhr %r15
237
+ 0x07,0x37 = bcr 3, %r7
238
+ 0x07,0x3f = bnler %r15
239
+ 0x07,0x47 = bcr 4, %r7
240
+ 0x07,0x4f = blr %r15
241
+ 0x07,0x57 = bcr 5, %r7
242
+ 0x07,0x5f = bnher %r15
243
+ 0x07,0x67 = bcr 6, %r7
244
+ 0x07,0x6f = blhr %r15
245
+ 0x07,0x77 = bcr 7, %r7
246
+ 0x07,0x7f = bner %r15
247
+ 0x07,0x87 = bcr 8, %r7
248
+ 0x07,0x8f = ber %r15
249
+ 0x07,0x97 = bcr 9, %r7
250
+ 0x07,0x9f = bnlhr %r15
251
+ 0x07,0xa7 = bcr 10, %r7
252
+ 0x07,0xaf = bher %r15
253
+ 0x07,0xb7 = bcr 11, %r7
254
+ 0x07,0xbf = bnlr %r15
255
+ 0x07,0xc7 = bcr 12, %r7
256
+ 0x07,0xcf = bler %r15
257
+ 0x07,0xd7 = bcr 13, %r7
258
+ 0x07,0xdf = bnhr %r15
259
+ 0x07,0xe7 = bcr 14, %r7
260
+ 0x07,0xef = bnor %r15
261
+ 0x07,0xf7 = bcr 15, %r7
262
+ 0x07,0xf1 = br %r1
263
+ 0x07,0xfe = br %r14
264
+ 0x07,0xff = br %r15
265
+ 0x59,0x00,0x00,0x00 = c %r0, 0
266
+ 0x59,0x00,0x0f,0xff = c %r0, 4095
267
+ 0x59,0x00,0x10,0x00 = c %r0, 0(%r1)
268
+ 0x59,0x00,0xf0,0x00 = c %r0, 0(%r15)
269
+ 0x59,0x01,0xff,0xff = c %r0, 4095(%r1,%r15)
270
+ 0x59,0x0f,0x1f,0xff = c %r0, 4095(%r15,%r1)
271
+ 0x59,0xf0,0x00,0x00 = c %r15, 0
272
+ 0xed,0x00,0x00,0x00,0x00,0x19 = cdb %f0, 0
273
+ 0xed,0x00,0x0f,0xff,0x00,0x19 = cdb %f0, 4095
274
+ 0xed,0x00,0x10,0x00,0x00,0x19 = cdb %f0, 0(%r1)
275
+ 0xed,0x00,0xf0,0x00,0x00,0x19 = cdb %f0, 0(%r15)
276
+ 0xed,0x01,0xff,0xff,0x00,0x19 = cdb %f0, 4095(%r1,%r15)
277
+ 0xed,0x0f,0x1f,0xff,0x00,0x19 = cdb %f0, 4095(%r15,%r1)
278
+ 0xed,0xf0,0x00,0x00,0x00,0x19 = cdb %f15, 0
279
+ 0xb3,0x19,0x00,0x00 = cdbr %f0, %f0
280
+ 0xb3,0x19,0x00,0x0f = cdbr %f0, %f15
281
+ 0xb3,0x19,0x00,0x78 = cdbr %f7, %f8
282
+ 0xb3,0x19,0x00,0xf0 = cdbr %f15, %f0
283
+ 0xb3,0x95,0x00,0x00 = cdfbr %f0, %r0
284
+ 0xb3,0x95,0x00,0x0f = cdfbr %f0, %r15
285
+ 0xb3,0x95,0x00,0xf0 = cdfbr %f15, %r0
286
+ 0xb3,0x95,0x00,0x78 = cdfbr %f7, %r8
287
+ 0xb3,0x95,0x00,0xff = cdfbr %f15, %r15
288
+ 0xb3,0xa5,0x00,0x00 = cdgbr %f0, %r0
289
+ 0xb3,0xa5,0x00,0x0f = cdgbr %f0, %r15
290
+ 0xb3,0xa5,0x00,0xf0 = cdgbr %f15, %r0
291
+ 0xb3,0xa5,0x00,0x78 = cdgbr %f7, %r8
292
+ 0xb3,0xa5,0x00,0xff = cdgbr %f15, %r15
293
+ 0xed,0x00,0x00,0x00,0x00,0x09 = ceb %f0, 0
294
+ 0xed,0x00,0x0f,0xff,0x00,0x09 = ceb %f0, 4095
295
+ 0xed,0x00,0x10,0x00,0x00,0x09 = ceb %f0, 0(%r1)
296
+ 0xed,0x00,0xf0,0x00,0x00,0x09 = ceb %f0, 0(%r15)
297
+ 0xed,0x01,0xff,0xff,0x00,0x09 = ceb %f0, 4095(%r1,%r15)
298
+ 0xed,0x0f,0x1f,0xff,0x00,0x09 = ceb %f0, 4095(%r15,%r1)
299
+ 0xed,0xf0,0x00,0x00,0x00,0x09 = ceb %f15, 0
300
+ 0xb3,0x09,0x00,0x00 = cebr %f0, %f0
301
+ 0xb3,0x09,0x00,0x0f = cebr %f0, %f15
302
+ 0xb3,0x09,0x00,0x78 = cebr %f7, %f8
303
+ 0xb3,0x09,0x00,0xf0 = cebr %f15, %f0
304
+ 0xb3,0x94,0x00,0x00 = cefbr %f0, %r0
305
+ 0xb3,0x94,0x00,0x0f = cefbr %f0, %r15
306
+ 0xb3,0x94,0x00,0xf0 = cefbr %f15, %r0
307
+ 0xb3,0x94,0x00,0x78 = cefbr %f7, %r8
308
+ 0xb3,0x94,0x00,0xff = cefbr %f15, %r15
309
+ 0xb3,0xa4,0x00,0x00 = cegbr %f0, %r0
310
+ 0xb3,0xa4,0x00,0x0f = cegbr %f0, %r15
311
+ 0xb3,0xa4,0x00,0xf0 = cegbr %f15, %r0
312
+ 0xb3,0xa4,0x00,0x78 = cegbr %f7, %r8
313
+ 0xb3,0xa4,0x00,0xff = cegbr %f15, %r15
314
+ 0xb3,0x99,0x00,0x00 = cfdbr %r0, 0, %f0
315
+ 0xb3,0x99,0x00,0x0f = cfdbr %r0, 0, %f15
316
+ 0xb3,0x99,0xf0,0x00 = cfdbr %r0, 15, %f0
317
+ 0xb3,0x99,0x50,0x46 = cfdbr %r4, 5, %f6
318
+ 0xb3,0x99,0x00,0xf0 = cfdbr %r15, 0, %f0
319
+ 0xb3,0x98,0x00,0x00 = cfebr %r0, 0, %f0
320
+ 0xb3,0x98,0x00,0x0f = cfebr %r0, 0, %f15
321
+ 0xb3,0x98,0xf0,0x00 = cfebr %r0, 15, %f0
322
+ 0xb3,0x98,0x50,0x46 = cfebr %r4, 5, %f6
323
+ 0xb3,0x98,0x00,0xf0 = cfebr %r15, 0, %f0
324
+ 0xc2,0x0d,0x80,0x00,0x00,0x00 = cfi %r0, -2147483648
325
+ 0xc2,0x0d,0xff,0xff,0xff,0xff = cfi %r0, -1
326
+ 0xc2,0x0d,0x00,0x00,0x00,0x00 = cfi %r0, 0
327
+ 0xc2,0x0d,0x00,0x00,0x00,0x01 = cfi %r0, 1
328
+ 0xc2,0x0d,0x7f,0xff,0xff,0xff = cfi %r0, 2147483647
329
+ 0xc2,0xfd,0x00,0x00,0x00,0x00 = cfi %r15, 0
330
+ 0xb3,0x9a,0x00,0x00 = cfxbr %r0, 0, %f0
331
+ 0xb3,0x9a,0x00,0x0d = cfxbr %r0, 0, %f13
332
+ 0xb3,0x9a,0xf0,0x00 = cfxbr %r0, 15, %f0
333
+ 0xb3,0x9a,0x50,0x48 = cfxbr %r4, 5, %f8
334
+ 0xb3,0x9a,0x00,0xf0 = cfxbr %r15, 0, %f0
335
+ 0xe3,0x00,0x00,0x00,0x80,0x20 = cg %r0, -524288
336
+ 0xe3,0x00,0x0f,0xff,0xff,0x20 = cg %r0, -1
337
+ 0xe3,0x00,0x00,0x00,0x00,0x20 = cg %r0, 0
338
+ 0xe3,0x00,0x00,0x01,0x00,0x20 = cg %r0, 1
339
+ 0xe3,0x00,0x0f,0xff,0x7f,0x20 = cg %r0, 524287
340
+ 0xe3,0x00,0x10,0x00,0x00,0x20 = cg %r0, 0(%r1)
341
+ 0xe3,0x00,0xf0,0x00,0x00,0x20 = cg %r0, 0(%r15)
342
+ 0xe3,0x01,0xff,0xff,0x7f,0x20 = cg %r0, 524287(%r1,%r15)
343
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x20 = cg %r0, 524287(%r15,%r1)
344
+ 0xe3,0xf0,0x00,0x00,0x00,0x20 = cg %r15, 0
345
+ 0xb3,0xa9,0x00,0x00 = cgdbr %r0, 0, %f0
346
+ 0xb3,0xa9,0x00,0x0f = cgdbr %r0, 0, %f15
347
+ 0xb3,0xa9,0xf0,0x00 = cgdbr %r0, 15, %f0
348
+ 0xb3,0xa9,0x50,0x46 = cgdbr %r4, 5, %f6
349
+ 0xb3,0xa9,0x00,0xf0 = cgdbr %r15, 0, %f0
350
+ 0xb3,0xa8,0x00,0x00 = cgebr %r0, 0, %f0
351
+ 0xb3,0xa8,0x00,0x0f = cgebr %r0, 0, %f15
352
+ 0xb3,0xa8,0xf0,0x00 = cgebr %r0, 15, %f0
353
+ 0xb3,0xa8,0x50,0x46 = cgebr %r4, 5, %f6
354
+ 0xb3,0xa8,0x00,0xf0 = cgebr %r15, 0, %f0
355
+ 0xe3,0x00,0x00,0x00,0x80,0x30 = cgf %r0, -524288
356
+ 0xe3,0x00,0x0f,0xff,0xff,0x30 = cgf %r0, -1
357
+ 0xe3,0x00,0x00,0x00,0x00,0x30 = cgf %r0, 0
358
+ 0xe3,0x00,0x00,0x01,0x00,0x30 = cgf %r0, 1
359
+ 0xe3,0x00,0x0f,0xff,0x7f,0x30 = cgf %r0, 524287
360
+ 0xe3,0x00,0x10,0x00,0x00,0x30 = cgf %r0, 0(%r1)
361
+ 0xe3,0x00,0xf0,0x00,0x00,0x30 = cgf %r0, 0(%r15)
362
+ 0xe3,0x01,0xff,0xff,0x7f,0x30 = cgf %r0, 524287(%r1,%r15)
363
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x30 = cgf %r0, 524287(%r15,%r1)
364
+ 0xe3,0xf0,0x00,0x00,0x00,0x30 = cgf %r15, 0
365
+ 0xc2,0x0c,0x80,0x00,0x00,0x00 = cgfi %r0, -2147483648
366
+ 0xc2,0x0c,0xff,0xff,0xff,0xff = cgfi %r0, -1
367
+ 0xc2,0x0c,0x00,0x00,0x00,0x00 = cgfi %r0, 0
368
+ 0xc2,0x0c,0x00,0x00,0x00,0x01 = cgfi %r0, 1
369
+ 0xc2,0x0c,0x7f,0xff,0xff,0xff = cgfi %r0, 2147483647
370
+ 0xc2,0xfc,0x00,0x00,0x00,0x00 = cgfi %r15, 0
371
+ 0xb9,0x30,0x00,0x00 = cgfr %r0, %r0
372
+ 0xb9,0x30,0x00,0x0f = cgfr %r0, %r15
373
+ 0xb9,0x30,0x00,0xf0 = cgfr %r15, %r0
374
+ 0xb9,0x30,0x00,0x78 = cgfr %r7, %r8
375
+ 0xe3,0x00,0x00,0x00,0x80,0x34 = cgh %r0, -524288
376
+ 0xe3,0x00,0x0f,0xff,0xff,0x34 = cgh %r0, -1
377
+ 0xe3,0x00,0x00,0x00,0x00,0x34 = cgh %r0, 0
378
+ 0xe3,0x00,0x00,0x01,0x00,0x34 = cgh %r0, 1
379
+ 0xe3,0x00,0x0f,0xff,0x7f,0x34 = cgh %r0, 524287
380
+ 0xe3,0x00,0x10,0x00,0x00,0x34 = cgh %r0, 0(%r1)
381
+ 0xe3,0x00,0xf0,0x00,0x00,0x34 = cgh %r0, 0(%r15)
382
+ 0xe3,0x01,0xff,0xff,0x7f,0x34 = cgh %r0, 524287(%r1,%r15)
383
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x34 = cgh %r0, 524287(%r15,%r1)
384
+ 0xe3,0xf0,0x00,0x00,0x00,0x34 = cgh %r15, 0
385
+ 0xa7,0x0f,0x80,0x00 = cghi %r0, -32768
386
+ 0xa7,0x0f,0xff,0xff = cghi %r0, -1
387
+ 0xa7,0x0f,0x00,0x00 = cghi %r0, 0
388
+ 0xa7,0x0f,0x00,0x01 = cghi %r0, 1
389
+ 0xa7,0x0f,0x7f,0xff = cghi %r0, 32767
390
+ 0xa7,0xff,0x00,0x00 = cghi %r15, 0
391
+ 0xe5,0x58,0x00,0x00,0x00,0x00 = cghsi 0, 0
392
+ 0xe5,0x58,0x0f,0xff,0x00,0x00 = cghsi 4095, 0
393
+ 0xe5,0x58,0x00,0x00,0x80,0x00 = cghsi 0, -32768
394
+ 0xe5,0x58,0x00,0x00,0xff,0xff = cghsi 0, -1
395
+ 0xe5,0x58,0x00,0x00,0x00,0x00 = cghsi 0, 0
396
+ 0xe5,0x58,0x00,0x00,0x00,0x01 = cghsi 0, 1
397
+ 0xe5,0x58,0x00,0x00,0x7f,0xff = cghsi 0, 32767
398
+ 0xe5,0x58,0x10,0x00,0x00,0x2a = cghsi 0(%r1), 42
399
+ 0xe5,0x58,0xf0,0x00,0x00,0x2a = cghsi 0(%r15), 42
400
+ 0xe5,0x58,0x1f,0xff,0x00,0x2a = cghsi 4095(%r1), 42
401
+ 0xe5,0x58,0xff,0xff,0x00,0x2a = cghsi 4095(%r15), 42
402
+ 0xb9,0x20,0x00,0x00 = cgr %r0, %r0
403
+ 0xb9,0x20,0x00,0x0f = cgr %r0, %r15
404
+ 0xb9,0x20,0x00,0xf0 = cgr %r15, %r0
405
+ 0xb9,0x20,0x00,0x78 = cgr %r7, %r8
406
+ 0xb3,0xaa,0x00,0x00 = cgxbr %r0, 0, %f0
407
+ 0xb3,0xaa,0x00,0x0d = cgxbr %r0, 0, %f13
408
+ 0xb3,0xaa,0xf0,0x00 = cgxbr %r0, 15, %f0
409
+ 0xb3,0xaa,0x50,0x48 = cgxbr %r4, 5, %f8
410
+ 0xb3,0xaa,0x00,0xf0 = cgxbr %r15, 0, %f0
411
+ 0x49,0x00,0x00,0x00 = ch %r0, 0
412
+ 0x49,0x00,0x0f,0xff = ch %r0, 4095
413
+ 0x49,0x00,0x10,0x00 = ch %r0, 0(%r1)
414
+ 0x49,0x00,0xf0,0x00 = ch %r0, 0(%r15)
415
+ 0x49,0x01,0xff,0xff = ch %r0, 4095(%r1,%r15)
416
+ 0x49,0x0f,0x1f,0xff = ch %r0, 4095(%r15,%r1)
417
+ 0x49,0xf0,0x00,0x00 = ch %r15, 0
418
+ 0xe5,0x54,0x00,0x00,0x00,0x00 = chhsi 0, 0
419
+ 0xe5,0x54,0x0f,0xff,0x00,0x00 = chhsi 4095, 0
420
+ 0xe5,0x54,0x00,0x00,0x80,0x00 = chhsi 0, -32768
421
+ 0xe5,0x54,0x00,0x00,0xff,0xff = chhsi 0, -1
422
+ 0xe5,0x54,0x00,0x00,0x00,0x00 = chhsi 0, 0
423
+ 0xe5,0x54,0x00,0x00,0x00,0x01 = chhsi 0, 1
424
+ 0xe5,0x54,0x00,0x00,0x7f,0xff = chhsi 0, 32767
425
+ 0xe5,0x54,0x10,0x00,0x00,0x2a = chhsi 0(%r1), 42
426
+ 0xe5,0x54,0xf0,0x00,0x00,0x2a = chhsi 0(%r15), 42
427
+ 0xe5,0x54,0x1f,0xff,0x00,0x2a = chhsi 4095(%r1), 42
428
+ 0xe5,0x54,0xff,0xff,0x00,0x2a = chhsi 4095(%r15), 42
429
+ 0xa7,0x0e,0x80,0x00 = chi %r0, -32768
430
+ 0xa7,0x0e,0xff,0xff = chi %r0, -1
431
+ 0xa7,0x0e,0x00,0x00 = chi %r0, 0
432
+ 0xa7,0x0e,0x00,0x01 = chi %r0, 1
433
+ 0xa7,0x0e,0x7f,0xff = chi %r0, 32767
434
+ 0xa7,0xfe,0x00,0x00 = chi %r15, 0
435
+ 0xe5,0x5c,0x00,0x00,0x00,0x00 = chsi 0, 0
436
+ 0xe5,0x5c,0x0f,0xff,0x00,0x00 = chsi 4095, 0
437
+ 0xe5,0x5c,0x00,0x00,0x80,0x00 = chsi 0, -32768
438
+ 0xe5,0x5c,0x00,0x00,0xff,0xff = chsi 0, -1
439
+ 0xe5,0x5c,0x00,0x00,0x00,0x00 = chsi 0, 0
440
+ 0xe5,0x5c,0x00,0x00,0x00,0x01 = chsi 0, 1
441
+ 0xe5,0x5c,0x00,0x00,0x7f,0xff = chsi 0, 32767
442
+ 0xe5,0x5c,0x10,0x00,0x00,0x2a = chsi 0(%r1), 42
443
+ 0xe5,0x5c,0xf0,0x00,0x00,0x2a = chsi 0(%r15), 42
444
+ 0xe5,0x5c,0x1f,0xff,0x00,0x2a = chsi 4095(%r1), 42
445
+ 0xe5,0x5c,0xff,0xff,0x00,0x2a = chsi 4095(%r15), 42
446
+ 0xe3,0x00,0x00,0x00,0x80,0x79 = chy %r0, -524288
447
+ 0xe3,0x00,0x0f,0xff,0xff,0x79 = chy %r0, -1
448
+ 0xe3,0x00,0x00,0x00,0x00,0x79 = chy %r0, 0
449
+ 0xe3,0x00,0x00,0x01,0x00,0x79 = chy %r0, 1
450
+ 0xe3,0x00,0x0f,0xff,0x7f,0x79 = chy %r0, 524287
451
+ 0xe3,0x00,0x10,0x00,0x00,0x79 = chy %r0, 0(%r1)
452
+ 0xe3,0x00,0xf0,0x00,0x00,0x79 = chy %r0, 0(%r15)
453
+ 0xe3,0x01,0xff,0xff,0x7f,0x79 = chy %r0, 524287(%r1,%r15)
454
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x79 = chy %r0, 524287(%r15,%r1)
455
+ 0xe3,0xf0,0x00,0x00,0x00,0x79 = chy %r15, 0
456
+ 0x55,0x00,0x00,0x00 = cl %r0, 0
457
+ 0x55,0x00,0x0f,0xff = cl %r0, 4095
458
+ 0x55,0x00,0x10,0x00 = cl %r0, 0(%r1)
459
+ 0x55,0x00,0xf0,0x00 = cl %r0, 0(%r15)
460
+ 0x55,0x01,0xff,0xff = cl %r0, 4095(%r1,%r15)
461
+ 0x55,0x0f,0x1f,0xff = cl %r0, 4095(%r15,%r1)
462
+ 0x55,0xf0,0x00,0x00 = cl %r15, 0
463
+ 0xd5,0x00,0x00,0x00,0x00,0x00 = clc 0(1), 0
464
+ 0xd5,0x00,0x00,0x00,0x10,0x00 = clc 0(1), 0(%r1)
465
+ 0xd5,0x00,0x00,0x00,0xf0,0x00 = clc 0(1), 0(%r15)
466
+ 0xd5,0x00,0x00,0x00,0x0f,0xff = clc 0(1), 4095
467
+ 0xd5,0x00,0x00,0x00,0x1f,0xff = clc 0(1), 4095(%r1)
468
+ 0xd5,0x00,0x00,0x00,0xff,0xff = clc 0(1), 4095(%r15)
469
+ 0xd5,0x00,0x10,0x00,0x00,0x00 = clc 0(1,%r1), 0
470
+ 0xd5,0x00,0xf0,0x00,0x00,0x00 = clc 0(1,%r15), 0
471
+ 0xd5,0x00,0x1f,0xff,0x00,0x00 = clc 4095(1,%r1), 0
472
+ 0xd5,0x00,0xff,0xff,0x00,0x00 = clc 4095(1,%r15), 0
473
+ 0xd5,0xff,0x10,0x00,0x00,0x00 = clc 0(256,%r1), 0
474
+ 0xd5,0xff,0xf0,0x00,0x00,0x00 = clc 0(256,%r15), 0
475
+ 0xe5,0x5d,0x00,0x00,0x00,0x00 = clfhsi 0, 0
476
+ 0xe5,0x5d,0x0f,0xff,0x00,0x00 = clfhsi 4095, 0
477
+ 0xe5,0x5d,0x00,0x00,0xff,0xff = clfhsi 0, 65535
478
+ 0xe5,0x5d,0x10,0x00,0x00,0x2a = clfhsi 0(%r1), 42
479
+ 0xe5,0x5d,0xf0,0x00,0x00,0x2a = clfhsi 0(%r15), 42
480
+ 0xe5,0x5d,0x1f,0xff,0x00,0x2a = clfhsi 4095(%r1), 42
481
+ 0xe5,0x5d,0xff,0xff,0x00,0x2a = clfhsi 4095(%r15), 42
482
+ 0xc2,0x0f,0x00,0x00,0x00,0x00 = clfi %r0, 0
483
+ 0xc2,0x0f,0xff,0xff,0xff,0xff = clfi %r0, 4294967295
484
+ 0xc2,0xff,0x00,0x00,0x00,0x00 = clfi %r15, 0
485
+ 0xe3,0x00,0x00,0x00,0x80,0x21 = clg %r0, -524288
486
+ 0xe3,0x00,0x0f,0xff,0xff,0x21 = clg %r0, -1
487
+ 0xe3,0x00,0x00,0x00,0x00,0x21 = clg %r0, 0
488
+ 0xe3,0x00,0x00,0x01,0x00,0x21 = clg %r0, 1
489
+ 0xe3,0x00,0x0f,0xff,0x7f,0x21 = clg %r0, 524287
490
+ 0xe3,0x00,0x10,0x00,0x00,0x21 = clg %r0, 0(%r1)
491
+ 0xe3,0x00,0xf0,0x00,0x00,0x21 = clg %r0, 0(%r15)
492
+ 0xe3,0x01,0xff,0xff,0x7f,0x21 = clg %r0, 524287(%r1,%r15)
493
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x21 = clg %r0, 524287(%r15,%r1)
494
+ 0xe3,0xf0,0x00,0x00,0x00,0x21 = clg %r15, 0
495
+ 0xe3,0x00,0x00,0x00,0x80,0x31 = clgf %r0, -524288
496
+ 0xe3,0x00,0x0f,0xff,0xff,0x31 = clgf %r0, -1
497
+ 0xe3,0x00,0x00,0x00,0x00,0x31 = clgf %r0, 0
498
+ 0xe3,0x00,0x00,0x01,0x00,0x31 = clgf %r0, 1
499
+ 0xe3,0x00,0x0f,0xff,0x7f,0x31 = clgf %r0, 524287
500
+ 0xe3,0x00,0x10,0x00,0x00,0x31 = clgf %r0, 0(%r1)
501
+ 0xe3,0x00,0xf0,0x00,0x00,0x31 = clgf %r0, 0(%r15)
502
+ 0xe3,0x01,0xff,0xff,0x7f,0x31 = clgf %r0, 524287(%r1,%r15)
503
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x31 = clgf %r0, 524287(%r15,%r1)
504
+ 0xe3,0xf0,0x00,0x00,0x00,0x31 = clgf %r15, 0
505
+ 0xc2,0x0e,0x00,0x00,0x00,0x00 = clgfi %r0, 0
506
+ 0xc2,0x0e,0xff,0xff,0xff,0xff = clgfi %r0, 4294967295
507
+ 0xc2,0xfe,0x00,0x00,0x00,0x00 = clgfi %r15, 0
508
+ 0xb9,0x31,0x00,0x00 = clgfr %r0, %r0
509
+ 0xb9,0x31,0x00,0x0f = clgfr %r0, %r15
510
+ 0xb9,0x31,0x00,0xf0 = clgfr %r15, %r0
511
+ 0xb9,0x31,0x00,0x78 = clgfr %r7, %r8
512
+ 0xb9,0x21,0x00,0x00 = clgr %r0, %r0
513
+ 0xb9,0x21,0x00,0x0f = clgr %r0, %r15
514
+ 0xb9,0x21,0x00,0xf0 = clgr %r15, %r0
515
+ 0xb9,0x21,0x00,0x78 = clgr %r7, %r8
516
+ 0xe5,0x55,0x00,0x00,0x00,0x00 = clhhsi 0, 0
517
+ 0xe5,0x55,0x0f,0xff,0x00,0x00 = clhhsi 4095, 0
518
+ 0xe5,0x55,0x00,0x00,0xff,0xff = clhhsi 0, 65535
519
+ 0xe5,0x55,0x10,0x00,0x00,0x2a = clhhsi 0(%r1), 42
520
+ 0xe5,0x55,0xf0,0x00,0x00,0x2a = clhhsi 0(%r15), 42
521
+ 0xe5,0x55,0x1f,0xff,0x00,0x2a = clhhsi 4095(%r1), 42
522
+ 0xe5,0x55,0xff,0xff,0x00,0x2a = clhhsi 4095(%r15), 42
523
+ 0x95,0x00,0x00,0x00 = cli 0, 0
524
+ 0x95,0x00,0x0f,0xff = cli 4095, 0
525
+ 0x95,0xff,0x00,0x00 = cli 0, 255
526
+ 0x95,0x2a,0x10,0x00 = cli 0(%r1), 42
527
+ 0x95,0x2a,0xf0,0x00 = cli 0(%r15), 42
528
+ 0x95,0x2a,0x1f,0xff = cli 4095(%r1), 42
529
+ 0x95,0x2a,0xff,0xff = cli 4095(%r15), 42
530
+ 0xeb,0x00,0x00,0x00,0x80,0x55 = cliy -524288, 0
531
+ 0xeb,0x00,0x0f,0xff,0xff,0x55 = cliy -1, 0
532
+ 0xeb,0x00,0x00,0x00,0x00,0x55 = cliy 0, 0
533
+ 0xeb,0x00,0x00,0x01,0x00,0x55 = cliy 1, 0
534
+ 0xeb,0x00,0x0f,0xff,0x7f,0x55 = cliy 524287, 0
535
+ 0xeb,0xff,0x00,0x00,0x00,0x55 = cliy 0, 255
536
+ 0xeb,0x2a,0x10,0x00,0x00,0x55 = cliy 0(%r1), 42
537
+ 0xeb,0x2a,0xf0,0x00,0x00,0x55 = cliy 0(%r15), 42
538
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x55 = cliy 524287(%r1), 42
539
+ 0xeb,0x2a,0xff,0xff,0x7f,0x55 = cliy 524287(%r15), 42
540
+ 0x15,0x00 = clr %r0, %r0
541
+ 0x15,0x0f = clr %r0, %r15
542
+ 0x15,0xf0 = clr %r15, %r0
543
+ 0x15,0x78 = clr %r7, %r8
544
+ 0xb2,0x5d,0x00,0x00 = clst %r0, %r0
545
+ 0xb2,0x5d,0x00,0x0f = clst %r0, %r15
546
+ 0xb2,0x5d,0x00,0xf0 = clst %r15, %r0
547
+ 0xb2,0x5d,0x00,0x78 = clst %r7, %r8
548
+ 0xe3,0x00,0x00,0x00,0x80,0x55 = cly %r0, -524288
549
+ 0xe3,0x00,0x0f,0xff,0xff,0x55 = cly %r0, -1
550
+ 0xe3,0x00,0x00,0x00,0x00,0x55 = cly %r0, 0
551
+ 0xe3,0x00,0x00,0x01,0x00,0x55 = cly %r0, 1
552
+ 0xe3,0x00,0x0f,0xff,0x7f,0x55 = cly %r0, 524287
553
+ 0xe3,0x00,0x10,0x00,0x00,0x55 = cly %r0, 0(%r1)
554
+ 0xe3,0x00,0xf0,0x00,0x00,0x55 = cly %r0, 0(%r15)
555
+ 0xe3,0x01,0xff,0xff,0x7f,0x55 = cly %r0, 524287(%r1,%r15)
556
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x55 = cly %r0, 524287(%r15,%r1)
557
+ 0xe3,0xf0,0x00,0x00,0x00,0x55 = cly %r15, 0
558
+ 0xb3,0x72,0x00,0x00 = cpsdr %f0, %f0, %f0
559
+ 0xb3,0x72,0x00,0x0f = cpsdr %f0, %f0, %f15
560
+ 0xb3,0x72,0xf0,0x00 = cpsdr %f0, %f15, %f0
561
+ 0xb3,0x72,0x00,0xf0 = cpsdr %f15, %f0, %f0
562
+ 0xb3,0x72,0x20,0x13 = cpsdr %f1, %f2, %f3
563
+ 0xb3,0x72,0xf0,0xff = cpsdr %f15, %f15, %f15
564
+ 0x19,0x00 = cr %r0, %r0
565
+ 0x19,0x0f = cr %r0, %r15
566
+ 0x19,0xf0 = cr %r15, %r0
567
+ 0x19,0x78 = cr %r7, %r8
568
+ 0xba,0x00,0x00,0x00 = cs %r0, %r0, 0
569
+ 0xba,0x00,0x0f,0xff = cs %r0, %r0, 4095
570
+ 0xba,0x00,0x10,0x00 = cs %r0, %r0, 0(%r1)
571
+ 0xba,0x00,0xf0,0x00 = cs %r0, %r0, 0(%r15)
572
+ 0xba,0x00,0x1f,0xff = cs %r0, %r0, 4095(%r1)
573
+ 0xba,0x00,0xff,0xff = cs %r0, %r0, 4095(%r15)
574
+ 0xba,0x0f,0x00,0x00 = cs %r0, %r15, 0
575
+ 0xba,0xf0,0x00,0x00 = cs %r15, %r0, 0
576
+ 0xeb,0x00,0x00,0x00,0x80,0x30 = csg %r0, %r0, -524288
577
+ 0xeb,0x00,0x0f,0xff,0xff,0x30 = csg %r0, %r0, -1
578
+ 0xeb,0x00,0x00,0x00,0x00,0x30 = csg %r0, %r0, 0
579
+ 0xeb,0x00,0x00,0x01,0x00,0x30 = csg %r0, %r0, 1
580
+ 0xeb,0x00,0x0f,0xff,0x7f,0x30 = csg %r0, %r0, 524287
581
+ 0xeb,0x00,0x10,0x00,0x00,0x30 = csg %r0, %r0, 0(%r1)
582
+ 0xeb,0x00,0xf0,0x00,0x00,0x30 = csg %r0, %r0, 0(%r15)
583
+ 0xeb,0x00,0x1f,0xff,0x7f,0x30 = csg %r0, %r0, 524287(%r1)
584
+ 0xeb,0x00,0xff,0xff,0x7f,0x30 = csg %r0, %r0, 524287(%r15)
585
+ 0xeb,0x0f,0x00,0x00,0x00,0x30 = csg %r0, %r15, 0
586
+ 0xeb,0xf0,0x00,0x00,0x00,0x30 = csg %r15, %r0, 0
587
+ 0xeb,0x00,0x00,0x00,0x80,0x14 = csy %r0, %r0, -524288
588
+ 0xeb,0x00,0x0f,0xff,0xff,0x14 = csy %r0, %r0, -1
589
+ 0xeb,0x00,0x00,0x00,0x00,0x14 = csy %r0, %r0, 0
590
+ 0xeb,0x00,0x00,0x01,0x00,0x14 = csy %r0, %r0, 1
591
+ 0xeb,0x00,0x0f,0xff,0x7f,0x14 = csy %r0, %r0, 524287
592
+ 0xeb,0x00,0x10,0x00,0x00,0x14 = csy %r0, %r0, 0(%r1)
593
+ 0xeb,0x00,0xf0,0x00,0x00,0x14 = csy %r0, %r0, 0(%r15)
594
+ 0xeb,0x00,0x1f,0xff,0x7f,0x14 = csy %r0, %r0, 524287(%r1)
595
+ 0xeb,0x00,0xff,0xff,0x7f,0x14 = csy %r0, %r0, 524287(%r15)
596
+ 0xeb,0x0f,0x00,0x00,0x00,0x14 = csy %r0, %r15, 0
597
+ 0xeb,0xf0,0x00,0x00,0x00,0x14 = csy %r15, %r0, 0
598
+ 0xb3,0x49,0x00,0x00 = cxbr %f0, %f0
599
+ 0xb3,0x49,0x00,0x0d = cxbr %f0, %f13
600
+ 0xb3,0x49,0x00,0x88 = cxbr %f8, %f8
601
+ 0xb3,0x49,0x00,0xd0 = cxbr %f13, %f0
602
+ 0xb3,0x96,0x00,0x00 = cxfbr %f0, %r0
603
+ 0xb3,0x96,0x00,0x0f = cxfbr %f0, %r15
604
+ 0xb3,0x96,0x00,0xd0 = cxfbr %f13, %r0
605
+ 0xb3,0x96,0x00,0x87 = cxfbr %f8, %r7
606
+ 0xb3,0x96,0x00,0xdf = cxfbr %f13, %r15
607
+ 0xb3,0xa6,0x00,0x00 = cxgbr %f0, %r0
608
+ 0xb3,0xa6,0x00,0x0f = cxgbr %f0, %r15
609
+ 0xb3,0xa6,0x00,0xd0 = cxgbr %f13, %r0
610
+ 0xb3,0xa6,0x00,0x87 = cxgbr %f8, %r7
611
+ 0xb3,0xa6,0x00,0xdf = cxgbr %f13, %r15
612
+ 0xe3,0x00,0x00,0x00,0x80,0x59 = cy %r0, -524288
613
+ 0xe3,0x00,0x0f,0xff,0xff,0x59 = cy %r0, -1
614
+ 0xe3,0x00,0x00,0x00,0x00,0x59 = cy %r0, 0
615
+ 0xe3,0x00,0x00,0x01,0x00,0x59 = cy %r0, 1
616
+ 0xe3,0x00,0x0f,0xff,0x7f,0x59 = cy %r0, 524287
617
+ 0xe3,0x00,0x10,0x00,0x00,0x59 = cy %r0, 0(%r1)
618
+ 0xe3,0x00,0xf0,0x00,0x00,0x59 = cy %r0, 0(%r15)
619
+ 0xe3,0x01,0xff,0xff,0x7f,0x59 = cy %r0, 524287(%r1,%r15)
620
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x59 = cy %r0, 524287(%r15,%r1)
621
+ 0xe3,0xf0,0x00,0x00,0x00,0x59 = cy %r15, 0
622
+ 0xed,0x00,0x00,0x00,0x00,0x1d = ddb %f0, 0
623
+ 0xed,0x00,0x0f,0xff,0x00,0x1d = ddb %f0, 4095
624
+ 0xed,0x00,0x10,0x00,0x00,0x1d = ddb %f0, 0(%r1)
625
+ 0xed,0x00,0xf0,0x00,0x00,0x1d = ddb %f0, 0(%r15)
626
+ 0xed,0x01,0xff,0xff,0x00,0x1d = ddb %f0, 4095(%r1,%r15)
627
+ 0xed,0x0f,0x1f,0xff,0x00,0x1d = ddb %f0, 4095(%r15,%r1)
628
+ 0xed,0xf0,0x00,0x00,0x00,0x1d = ddb %f15, 0
629
+ 0xb3,0x1d,0x00,0x00 = ddbr %f0, %f0
630
+ 0xb3,0x1d,0x00,0x0f = ddbr %f0, %f15
631
+ 0xb3,0x1d,0x00,0x78 = ddbr %f7, %f8
632
+ 0xb3,0x1d,0x00,0xf0 = ddbr %f15, %f0
633
+ 0xed,0x00,0x00,0x00,0x00,0x0d = deb %f0, 0
634
+ 0xed,0x00,0x0f,0xff,0x00,0x0d = deb %f0, 4095
635
+ 0xed,0x00,0x10,0x00,0x00,0x0d = deb %f0, 0(%r1)
636
+ 0xed,0x00,0xf0,0x00,0x00,0x0d = deb %f0, 0(%r15)
637
+ 0xed,0x01,0xff,0xff,0x00,0x0d = deb %f0, 4095(%r1,%r15)
638
+ 0xed,0x0f,0x1f,0xff,0x00,0x0d = deb %f0, 4095(%r15,%r1)
639
+ 0xed,0xf0,0x00,0x00,0x00,0x0d = deb %f15, 0
640
+ 0xb3,0x0d,0x00,0x00 = debr %f0, %f0
641
+ 0xb3,0x0d,0x00,0x0f = debr %f0, %f15
642
+ 0xb3,0x0d,0x00,0x78 = debr %f7, %f8
643
+ 0xb3,0x0d,0x00,0xf0 = debr %f15, %f0
644
+ 0xe3,0x00,0x00,0x00,0x80,0x97 = dl %r0, -524288
645
+ 0xe3,0x00,0x0f,0xff,0xff,0x97 = dl %r0, -1
646
+ 0xe3,0x00,0x00,0x00,0x00,0x97 = dl %r0, 0
647
+ 0xe3,0x00,0x00,0x01,0x00,0x97 = dl %r0, 1
648
+ 0xe3,0x00,0x0f,0xff,0x7f,0x97 = dl %r0, 524287
649
+ 0xe3,0x00,0x10,0x00,0x00,0x97 = dl %r0, 0(%r1)
650
+ 0xe3,0x00,0xf0,0x00,0x00,0x97 = dl %r0, 0(%r15)
651
+ 0xe3,0x01,0xff,0xff,0x7f,0x97 = dl %r0, 524287(%r1,%r15)
652
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x97 = dl %r0, 524287(%r15,%r1)
653
+ 0xe3,0xe0,0x00,0x00,0x00,0x97 = dl %r14, 0
654
+ 0xe3,0x00,0x00,0x00,0x80,0x87 = dlg %r0, -524288
655
+ 0xe3,0x00,0x0f,0xff,0xff,0x87 = dlg %r0, -1
656
+ 0xe3,0x00,0x00,0x00,0x00,0x87 = dlg %r0, 0
657
+ 0xe3,0x00,0x00,0x01,0x00,0x87 = dlg %r0, 1
658
+ 0xe3,0x00,0x0f,0xff,0x7f,0x87 = dlg %r0, 524287
659
+ 0xe3,0x00,0x10,0x00,0x00,0x87 = dlg %r0, 0(%r1)
660
+ 0xe3,0x00,0xf0,0x00,0x00,0x87 = dlg %r0, 0(%r15)
661
+ 0xe3,0x01,0xff,0xff,0x7f,0x87 = dlg %r0, 524287(%r1,%r15)
662
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x87 = dlg %r0, 524287(%r15,%r1)
663
+ 0xe3,0xe0,0x00,0x00,0x00,0x87 = dlg %r14, 0
664
+ 0xb9,0x87,0x00,0x00 = dlgr %r0, %r0
665
+ 0xb9,0x87,0x00,0x0f = dlgr %r0, %r15
666
+ 0xb9,0x87,0x00,0xe0 = dlgr %r14, %r0
667
+ 0xb9,0x87,0x00,0x69 = dlgr %r6, %r9
668
+ 0xb9,0x97,0x00,0x00 = dlr %r0, %r0
669
+ 0xb9,0x97,0x00,0x0f = dlr %r0, %r15
670
+ 0xb9,0x97,0x00,0xe0 = dlr %r14, %r0
671
+ 0xb9,0x97,0x00,0x69 = dlr %r6, %r9
672
+ 0xe3,0x00,0x00,0x00,0x80,0x0d = dsg %r0, -524288
673
+ 0xe3,0x00,0x0f,0xff,0xff,0x0d = dsg %r0, -1
674
+ 0xe3,0x00,0x00,0x00,0x00,0x0d = dsg %r0, 0
675
+ 0xe3,0x00,0x00,0x01,0x00,0x0d = dsg %r0, 1
676
+ 0xe3,0x00,0x0f,0xff,0x7f,0x0d = dsg %r0, 524287
677
+ 0xe3,0x00,0x10,0x00,0x00,0x0d = dsg %r0, 0(%r1)
678
+ 0xe3,0x00,0xf0,0x00,0x00,0x0d = dsg %r0, 0(%r15)
679
+ 0xe3,0x01,0xff,0xff,0x7f,0x0d = dsg %r0, 524287(%r1,%r15)
680
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x0d = dsg %r0, 524287(%r15,%r1)
681
+ 0xe3,0xe0,0x00,0x00,0x00,0x0d = dsg %r14, 0
682
+ 0xe3,0x00,0x00,0x00,0x80,0x1d = dsgf %r0, -524288
683
+ 0xe3,0x00,0x0f,0xff,0xff,0x1d = dsgf %r0, -1
684
+ 0xe3,0x00,0x00,0x00,0x00,0x1d = dsgf %r0, 0
685
+ 0xe3,0x00,0x00,0x01,0x00,0x1d = dsgf %r0, 1
686
+ 0xe3,0x00,0x0f,0xff,0x7f,0x1d = dsgf %r0, 524287
687
+ 0xe3,0x00,0x10,0x00,0x00,0x1d = dsgf %r0, 0(%r1)
688
+ 0xe3,0x00,0xf0,0x00,0x00,0x1d = dsgf %r0, 0(%r15)
689
+ 0xe3,0x01,0xff,0xff,0x7f,0x1d = dsgf %r0, 524287(%r1,%r15)
690
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x1d = dsgf %r0, 524287(%r15,%r1)
691
+ 0xe3,0xe0,0x00,0x00,0x00,0x1d = dsgf %r14, 0
692
+ 0xb9,0x1d,0x00,0x00 = dsgfr %r0, %r0
693
+ 0xb9,0x1d,0x00,0x0f = dsgfr %r0, %r15
694
+ 0xb9,0x1d,0x00,0xe0 = dsgfr %r14, %r0
695
+ 0xb9,0x1d,0x00,0x69 = dsgfr %r6, %r9
696
+ 0xb9,0x0d,0x00,0x00 = dsgr %r0, %r0
697
+ 0xb9,0x0d,0x00,0x0f = dsgr %r0, %r15
698
+ 0xb9,0x0d,0x00,0xe0 = dsgr %r14, %r0
699
+ 0xb9,0x0d,0x00,0x69 = dsgr %r6, %r9
700
+ 0xb3,0x4d,0x00,0x00 = dxbr %f0, %f0
701
+ 0xb3,0x4d,0x00,0x0d = dxbr %f0, %f13
702
+ 0xb3,0x4d,0x00,0x88 = dxbr %f8, %f8
703
+ 0xb3,0x4d,0x00,0xd0 = dxbr %f13, %f0
704
+ 0xb2,0x4f,0x00,0x00 = ear %r0, %a0
705
+ 0xb2,0x4f,0x00,0x0f = ear %r0, %a15
706
+ 0xb2,0x4f,0x00,0xf0 = ear %r15, %a0
707
+ 0xb2,0x4f,0x00,0x78 = ear %r7, %a8
708
+ 0xb2,0x4f,0x00,0xff = ear %r15, %a15
709
+ 0xb3,0x5f,0x00,0x00 = fidbr %f0, 0, %f0
710
+ 0xb3,0x5f,0x00,0x0f = fidbr %f0, 0, %f15
711
+ 0xb3,0x5f,0xf0,0x00 = fidbr %f0, 15, %f0
712
+ 0xb3,0x5f,0x50,0x46 = fidbr %f4, 5, %f6
713
+ 0xb3,0x5f,0x00,0xf0 = fidbr %f15, 0, %f0
714
+ 0xb3,0x57,0x00,0x00 = fiebr %f0, 0, %f0
715
+ 0xb3,0x57,0x00,0x0f = fiebr %f0, 0, %f15
716
+ 0xb3,0x57,0xf0,0x00 = fiebr %f0, 15, %f0
717
+ 0xb3,0x57,0x50,0x46 = fiebr %f4, 5, %f6
718
+ 0xb3,0x57,0x00,0xf0 = fiebr %f15, 0, %f0
719
+ 0xb3,0x47,0x00,0x00 = fixbr %f0, 0, %f0
720
+ 0xb3,0x47,0x00,0x0d = fixbr %f0, 0, %f13
721
+ 0xb3,0x47,0xf0,0x00 = fixbr %f0, 15, %f0
722
+ 0xb3,0x47,0x50,0x48 = fixbr %f4, 5, %f8
723
+ 0xb3,0x47,0x00,0xd0 = fixbr %f13, 0, %f0
724
+ 0xb9,0x83,0x00,0x00 = flogr %r0, %r0
725
+ 0xb9,0x83,0x00,0x0f = flogr %r0, %r15
726
+ 0xb9,0x83,0x00,0xa9 = flogr %r10, %r9
727
+ 0xb9,0x83,0x00,0xe0 = flogr %r14, %r0
728
+ 0x43,0x00,0x00,0x00 = ic %r0, 0
729
+ 0x43,0x00,0x0f,0xff = ic %r0, 4095
730
+ 0x43,0x00,0x10,0x00 = ic %r0, 0(%r1)
731
+ 0x43,0x00,0xf0,0x00 = ic %r0, 0(%r15)
732
+ 0x43,0x01,0xff,0xff = ic %r0, 4095(%r1,%r15)
733
+ 0x43,0x0f,0x1f,0xff = ic %r0, 4095(%r15,%r1)
734
+ 0x43,0xf0,0x00,0x00 = ic %r15, 0
735
+ 0xe3,0x00,0x00,0x00,0x80,0x73 = icy %r0, -524288
736
+ 0xe3,0x00,0x0f,0xff,0xff,0x73 = icy %r0, -1
737
+ 0xe3,0x00,0x00,0x00,0x00,0x73 = icy %r0, 0
738
+ 0xe3,0x00,0x00,0x01,0x00,0x73 = icy %r0, 1
739
+ 0xe3,0x00,0x0f,0xff,0x7f,0x73 = icy %r0, 524287
740
+ 0xe3,0x00,0x10,0x00,0x00,0x73 = icy %r0, 0(%r1)
741
+ 0xe3,0x00,0xf0,0x00,0x00,0x73 = icy %r0, 0(%r15)
742
+ 0xe3,0x01,0xff,0xff,0x7f,0x73 = icy %r0, 524287(%r1,%r15)
743
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x73 = icy %r0, 524287(%r15,%r1)
744
+ 0xe3,0xf0,0x00,0x00,0x00,0x73 = icy %r15, 0
745
+ 0xc0,0x08,0x00,0x00,0x00,0x00 = iihf %r0, 0
746
+ 0xc0,0x08,0xff,0xff,0xff,0xff = iihf %r0, 4294967295
747
+ 0xc0,0xf8,0x00,0x00,0x00,0x00 = iihf %r15, 0
748
+ 0xa5,0x00,0x00,0x00 = iihh %r0, 0
749
+ 0xa5,0x00,0x80,0x00 = iihh %r0, 32768
750
+ 0xa5,0x00,0xff,0xff = iihh %r0, 65535
751
+ 0xa5,0xf0,0x00,0x00 = iihh %r15, 0
752
+ 0xa5,0x01,0x00,0x00 = iihl %r0, 0
753
+ 0xa5,0x01,0x80,0x00 = iihl %r0, 32768
754
+ 0xa5,0x01,0xff,0xff = iihl %r0, 65535
755
+ 0xa5,0xf1,0x00,0x00 = iihl %r15, 0
756
+ 0xc0,0x09,0x00,0x00,0x00,0x00 = iilf %r0, 0
757
+ 0xc0,0x09,0xff,0xff,0xff,0xff = iilf %r0, 4294967295
758
+ 0xc0,0xf9,0x00,0x00,0x00,0x00 = iilf %r15, 0
759
+ 0xa5,0x02,0x00,0x00 = iilh %r0, 0
760
+ 0xa5,0x02,0x80,0x00 = iilh %r0, 32768
761
+ 0xa5,0x02,0xff,0xff = iilh %r0, 65535
762
+ 0xa5,0xf2,0x00,0x00 = iilh %r15, 0
763
+ 0xa5,0x03,0x00,0x00 = iill %r0, 0
764
+ 0xa5,0x03,0x80,0x00 = iill %r0, 32768
765
+ 0xa5,0x03,0xff,0xff = iill %r0, 65535
766
+ 0xa5,0xf3,0x00,0x00 = iill %r15, 0
767
+ 0xb2,0x22,0x00,0x00 = ipm %r0
768
+ 0xb2,0x22,0x00,0x10 = ipm %r1
769
+ 0xb2,0x22,0x00,0xf0 = ipm %r15
770
+ 0x58,0x00,0x00,0x00 = l %r0, 0
771
+ 0x58,0x00,0x0f,0xff = l %r0, 4095
772
+ 0x58,0x00,0x10,0x00 = l %r0, 0(%r1)
773
+ 0x58,0x00,0xf0,0x00 = l %r0, 0(%r15)
774
+ 0x58,0x01,0xff,0xff = l %r0, 4095(%r1,%r15)
775
+ 0x58,0x0f,0x1f,0xff = l %r0, 4095(%r15,%r1)
776
+ 0x58,0xf0,0x00,0x00 = l %r15, 0
777
+ 0x41,0x00,0x00,0x00 = la %r0, 0
778
+ 0x41,0x00,0x0f,0xff = la %r0, 4095
779
+ 0x41,0x00,0x10,0x00 = la %r0, 0(%r1)
780
+ 0x41,0x00,0xf0,0x00 = la %r0, 0(%r15)
781
+ 0x41,0x01,0xff,0xff = la %r0, 4095(%r1,%r15)
782
+ 0x41,0x0f,0x1f,0xff = la %r0, 4095(%r15,%r1)
783
+ 0x41,0xf0,0x00,0x00 = la %r15, 0
784
+ 0xe3,0x00,0x00,0x00,0x80,0x71 = lay %r0, -524288
785
+ 0xe3,0x00,0x0f,0xff,0xff,0x71 = lay %r0, -1
786
+ 0xe3,0x00,0x00,0x00,0x00,0x71 = lay %r0, 0
787
+ 0xe3,0x00,0x00,0x01,0x00,0x71 = lay %r0, 1
788
+ 0xe3,0x00,0x0f,0xff,0x7f,0x71 = lay %r0, 524287
789
+ 0xe3,0x00,0x10,0x00,0x00,0x71 = lay %r0, 0(%r1)
790
+ 0xe3,0x00,0xf0,0x00,0x00,0x71 = lay %r0, 0(%r15)
791
+ 0xe3,0x01,0xff,0xff,0x7f,0x71 = lay %r0, 524287(%r1,%r15)
792
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x71 = lay %r0, 524287(%r15,%r1)
793
+ 0xe3,0xf0,0x00,0x00,0x00,0x71 = lay %r15, 0
794
+ 0xe3,0x00,0x00,0x00,0x80,0x76 = lb %r0, -524288
795
+ 0xe3,0x00,0x0f,0xff,0xff,0x76 = lb %r0, -1
796
+ 0xe3,0x00,0x00,0x00,0x00,0x76 = lb %r0, 0
797
+ 0xe3,0x00,0x00,0x01,0x00,0x76 = lb %r0, 1
798
+ 0xe3,0x00,0x0f,0xff,0x7f,0x76 = lb %r0, 524287
799
+ 0xe3,0x00,0x10,0x00,0x00,0x76 = lb %r0, 0(%r1)
800
+ 0xe3,0x00,0xf0,0x00,0x00,0x76 = lb %r0, 0(%r15)
801
+ 0xe3,0x01,0xff,0xff,0x7f,0x76 = lb %r0, 524287(%r1,%r15)
802
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x76 = lb %r0, 524287(%r15,%r1)
803
+ 0xe3,0xf0,0x00,0x00,0x00,0x76 = lb %r15, 0
804
+ 0xb9,0x26,0x00,0x0f = lbr %r0, %r15
805
+ 0xb9,0x26,0x00,0x78 = lbr %r7, %r8
806
+ 0xb9,0x26,0x00,0xf0 = lbr %r15, %r0
807
+ 0xb3,0x13,0x00,0x09 = lcdbr %f0, %f9
808
+ 0xb3,0x13,0x00,0x0f = lcdbr %f0, %f15
809
+ 0xb3,0x13,0x00,0xf0 = lcdbr %f15, %f0
810
+ 0xb3,0x13,0x00,0xf9 = lcdbr %f15, %f9
811
+ 0xb3,0x03,0x00,0x09 = lcebr %f0, %f9
812
+ 0xb3,0x03,0x00,0x0f = lcebr %f0, %f15
813
+ 0xb3,0x03,0x00,0xf0 = lcebr %f15, %f0
814
+ 0xb3,0x03,0x00,0xf9 = lcebr %f15, %f9
815
+ 0xb9,0x13,0x00,0x00 = lcgfr %r0, %r0
816
+ 0xb9,0x13,0x00,0x0f = lcgfr %r0, %r15
817
+ 0xb9,0x13,0x00,0xf0 = lcgfr %r15, %r0
818
+ 0xb9,0x13,0x00,0x78 = lcgfr %r7, %r8
819
+ 0xb9,0x03,0x00,0x00 = lcgr %r0, %r0
820
+ 0xb9,0x03,0x00,0x0f = lcgr %r0, %r15
821
+ 0xb9,0x03,0x00,0xf0 = lcgr %r15, %r0
822
+ 0xb9,0x03,0x00,0x78 = lcgr %r7, %r8
823
+ 0x13,0x00 = lcr %r0, %r0
824
+ 0x13,0x0f = lcr %r0, %r15
825
+ 0x13,0xf0 = lcr %r15, %r0
826
+ 0x13,0x78 = lcr %r7, %r8
827
+ 0xb3,0x43,0x00,0x08 = lcxbr %f0, %f8
828
+ 0xb3,0x43,0x00,0x0d = lcxbr %f0, %f13
829
+ 0xb3,0x43,0x00,0xd0 = lcxbr %f13, %f0
830
+ 0xb3,0x43,0x00,0xd9 = lcxbr %f13, %f9
831
+ 0x68,0x00,0x00,0x00 = ld %f0, 0
832
+ 0x68,0x00,0x0f,0xff = ld %f0, 4095
833
+ 0x68,0x00,0x10,0x00 = ld %f0, 0(%r1)
834
+ 0x68,0x00,0xf0,0x00 = ld %f0, 0(%r15)
835
+ 0x68,0x01,0xff,0xff = ld %f0, 4095(%r1,%r15)
836
+ 0x68,0x0f,0x1f,0xff = ld %f0, 4095(%r15,%r1)
837
+ 0x68,0xf0,0x00,0x00 = ld %f15, 0
838
+ 0xed,0x00,0x00,0x00,0x00,0x04 = ldeb %f0, 0
839
+ 0xed,0x00,0x0f,0xff,0x00,0x04 = ldeb %f0, 4095
840
+ 0xed,0x00,0x10,0x00,0x00,0x04 = ldeb %f0, 0(%r1)
841
+ 0xed,0x00,0xf0,0x00,0x00,0x04 = ldeb %f0, 0(%r15)
842
+ 0xed,0x01,0xff,0xff,0x00,0x04 = ldeb %f0, 4095(%r1,%r15)
843
+ 0xed,0x0f,0x1f,0xff,0x00,0x04 = ldeb %f0, 4095(%r15,%r1)
844
+ 0xed,0xf0,0x00,0x00,0x00,0x04 = ldeb %f15, 0
845
+ 0xb3,0x04,0x00,0x0f = ldebr %f0, %f15
846
+ 0xb3,0x04,0x00,0x78 = ldebr %f7, %f8
847
+ 0xb3,0x04,0x00,0xf0 = ldebr %f15, %f0
848
+ 0xb3,0xc1,0x00,0x00 = ldgr %f0, %r0
849
+ 0xb3,0xc1,0x00,0x0f = ldgr %f0, %r15
850
+ 0xb3,0xc1,0x00,0xf0 = ldgr %f15, %r0
851
+ 0xb3,0xc1,0x00,0x79 = ldgr %f7, %r9
852
+ 0xb3,0xc1,0x00,0xff = ldgr %f15, %r15
853
+ 0x28,0x09 = ldr %f0, %f9
854
+ 0x28,0x0f = ldr %f0, %f15
855
+ 0x28,0xf0 = ldr %f15, %f0
856
+ 0x28,0xf9 = ldr %f15, %f9
857
+ 0xb3,0x45,0x00,0x00 = ldxbr %f0, %f0
858
+ 0xb3,0x45,0x00,0x0d = ldxbr %f0, %f13
859
+ 0xb3,0x45,0x00,0x8c = ldxbr %f8, %f12
860
+ 0xb3,0x45,0x00,0xd0 = ldxbr %f13, %f0
861
+ 0xb3,0x45,0x00,0xdd = ldxbr %f13, %f13
862
+ 0xed,0x00,0x00,0x00,0x80,0x65 = ldy %f0, -524288
863
+ 0xed,0x00,0x0f,0xff,0xff,0x65 = ldy %f0, -1
864
+ 0xed,0x00,0x00,0x00,0x00,0x65 = ldy %f0, 0
865
+ 0xed,0x00,0x00,0x01,0x00,0x65 = ldy %f0, 1
866
+ 0xed,0x00,0x0f,0xff,0x7f,0x65 = ldy %f0, 524287
867
+ 0xed,0x00,0x10,0x00,0x00,0x65 = ldy %f0, 0(%r1)
868
+ 0xed,0x00,0xf0,0x00,0x00,0x65 = ldy %f0, 0(%r15)
869
+ 0xed,0x01,0xff,0xff,0x7f,0x65 = ldy %f0, 524287(%r1,%r15)
870
+ 0xed,0x0f,0x1f,0xff,0x7f,0x65 = ldy %f0, 524287(%r15,%r1)
871
+ 0xed,0xf0,0x00,0x00,0x00,0x65 = ldy %f15, 0
872
+ 0x78,0x00,0x00,0x00 = le %f0, 0
873
+ 0x78,0x00,0x0f,0xff = le %f0, 4095
874
+ 0x78,0x00,0x10,0x00 = le %f0, 0(%r1)
875
+ 0x78,0x00,0xf0,0x00 = le %f0, 0(%r15)
876
+ 0x78,0x01,0xff,0xff = le %f0, 4095(%r1,%r15)
877
+ 0x78,0x0f,0x1f,0xff = le %f0, 4095(%r15,%r1)
878
+ 0x78,0xf0,0x00,0x00 = le %f15, 0
879
+ 0xb3,0x44,0x00,0x00 = ledbr %f0, %f0
880
+ 0xb3,0x44,0x00,0x0f = ledbr %f0, %f15
881
+ 0xb3,0x44,0x00,0x78 = ledbr %f7, %f8
882
+ 0xb3,0x44,0x00,0xf0 = ledbr %f15, %f0
883
+ 0xb3,0x44,0x00,0xff = ledbr %f15, %f15
884
+ 0x38,0x09 = ler %f0, %f9
885
+ 0x38,0x0f = ler %f0, %f15
886
+ 0x38,0xf0 = ler %f15, %f0
887
+ 0x38,0xf9 = ler %f15, %f9
888
+ 0xb3,0x46,0x00,0x00 = lexbr %f0, %f0
889
+ 0xb3,0x46,0x00,0x0d = lexbr %f0, %f13
890
+ 0xb3,0x46,0x00,0x8c = lexbr %f8, %f12
891
+ 0xb3,0x46,0x00,0xd0 = lexbr %f13, %f0
892
+ 0xb3,0x46,0x00,0xdd = lexbr %f13, %f13
893
+ 0xed,0x00,0x00,0x00,0x80,0x64 = ley %f0, -524288
894
+ 0xed,0x00,0x0f,0xff,0xff,0x64 = ley %f0, -1
895
+ 0xed,0x00,0x00,0x00,0x00,0x64 = ley %f0, 0
896
+ 0xed,0x00,0x00,0x01,0x00,0x64 = ley %f0, 1
897
+ 0xed,0x00,0x0f,0xff,0x7f,0x64 = ley %f0, 524287
898
+ 0xed,0x00,0x10,0x00,0x00,0x64 = ley %f0, 0(%r1)
899
+ 0xed,0x00,0xf0,0x00,0x00,0x64 = ley %f0, 0(%r15)
900
+ 0xed,0x01,0xff,0xff,0x7f,0x64 = ley %f0, 524287(%r1,%r15)
901
+ 0xed,0x0f,0x1f,0xff,0x7f,0x64 = ley %f0, 524287(%r15,%r1)
902
+ 0xed,0xf0,0x00,0x00,0x00,0x64 = ley %f15, 0
903
+ 0xe3,0x00,0x00,0x00,0x80,0x04 = lg %r0, -524288
904
+ 0xe3,0x00,0x0f,0xff,0xff,0x04 = lg %r0, -1
905
+ 0xe3,0x00,0x00,0x00,0x00,0x04 = lg %r0, 0
906
+ 0xe3,0x00,0x00,0x01,0x00,0x04 = lg %r0, 1
907
+ 0xe3,0x00,0x0f,0xff,0x7f,0x04 = lg %r0, 524287
908
+ 0xe3,0x00,0x10,0x00,0x00,0x04 = lg %r0, 0(%r1)
909
+ 0xe3,0x00,0xf0,0x00,0x00,0x04 = lg %r0, 0(%r15)
910
+ 0xe3,0x01,0xff,0xff,0x7f,0x04 = lg %r0, 524287(%r1,%r15)
911
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x04 = lg %r0, 524287(%r15,%r1)
912
+ 0xe3,0xf0,0x00,0x00,0x00,0x04 = lg %r15, 0
913
+ 0xe3,0x00,0x00,0x00,0x80,0x77 = lgb %r0, -524288
914
+ 0xe3,0x00,0x0f,0xff,0xff,0x77 = lgb %r0, -1
915
+ 0xe3,0x00,0x00,0x00,0x00,0x77 = lgb %r0, 0
916
+ 0xe3,0x00,0x00,0x01,0x00,0x77 = lgb %r0, 1
917
+ 0xe3,0x00,0x0f,0xff,0x7f,0x77 = lgb %r0, 524287
918
+ 0xe3,0x00,0x10,0x00,0x00,0x77 = lgb %r0, 0(%r1)
919
+ 0xe3,0x00,0xf0,0x00,0x00,0x77 = lgb %r0, 0(%r15)
920
+ 0xe3,0x01,0xff,0xff,0x7f,0x77 = lgb %r0, 524287(%r1,%r15)
921
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x77 = lgb %r0, 524287(%r15,%r1)
922
+ 0xe3,0xf0,0x00,0x00,0x00,0x77 = lgb %r15, 0
923
+ 0xb9,0x06,0x00,0x0f = lgbr %r0, %r15
924
+ 0xb9,0x06,0x00,0x78 = lgbr %r7, %r8
925
+ 0xb9,0x06,0x00,0xf0 = lgbr %r15, %r0
926
+ 0xb3,0xcd,0x00,0x00 = lgdr %r0, %f0
927
+ 0xb3,0xcd,0x00,0x0f = lgdr %r0, %f15
928
+ 0xb3,0xcd,0x00,0xf0 = lgdr %r15, %f0
929
+ 0xb3,0xcd,0x00,0x88 = lgdr %r8, %f8
930
+ 0xb3,0xcd,0x00,0xff = lgdr %r15, %f15
931
+ 0xe3,0x00,0x00,0x00,0x80,0x14 = lgf %r0, -524288
932
+ 0xe3,0x00,0x0f,0xff,0xff,0x14 = lgf %r0, -1
933
+ 0xe3,0x00,0x00,0x00,0x00,0x14 = lgf %r0, 0
934
+ 0xe3,0x00,0x00,0x01,0x00,0x14 = lgf %r0, 1
935
+ 0xe3,0x00,0x0f,0xff,0x7f,0x14 = lgf %r0, 524287
936
+ 0xe3,0x00,0x10,0x00,0x00,0x14 = lgf %r0, 0(%r1)
937
+ 0xe3,0x00,0xf0,0x00,0x00,0x14 = lgf %r0, 0(%r15)
938
+ 0xe3,0x01,0xff,0xff,0x7f,0x14 = lgf %r0, 524287(%r1,%r15)
939
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x14 = lgf %r0, 524287(%r15,%r1)
940
+ 0xe3,0xf0,0x00,0x00,0x00,0x14 = lgf %r15, 0
941
+ 0xc0,0x01,0x80,0x00,0x00,0x00 = lgfi %r0, -2147483648
942
+ 0xc0,0x01,0xff,0xff,0xff,0xff = lgfi %r0, -1
943
+ 0xc0,0x01,0x00,0x00,0x00,0x00 = lgfi %r0, 0
944
+ 0xc0,0x01,0x00,0x00,0x00,0x01 = lgfi %r0, 1
945
+ 0xc0,0x01,0x7f,0xff,0xff,0xff = lgfi %r0, 2147483647
946
+ 0xc0,0xf1,0x00,0x00,0x00,0x00 = lgfi %r15, 0
947
+ 0xb9,0x14,0x00,0x0f = lgfr %r0, %r15
948
+ 0xb9,0x14,0x00,0x78 = lgfr %r7, %r8
949
+ 0xb9,0x14,0x00,0xf0 = lgfr %r15, %r0
950
+ 0xe3,0x00,0x00,0x00,0x80,0x15 = lgh %r0, -524288
951
+ 0xe3,0x00,0x0f,0xff,0xff,0x15 = lgh %r0, -1
952
+ 0xe3,0x00,0x00,0x00,0x00,0x15 = lgh %r0, 0
953
+ 0xe3,0x00,0x00,0x01,0x00,0x15 = lgh %r0, 1
954
+ 0xe3,0x00,0x0f,0xff,0x7f,0x15 = lgh %r0, 524287
955
+ 0xe3,0x00,0x10,0x00,0x00,0x15 = lgh %r0, 0(%r1)
956
+ 0xe3,0x00,0xf0,0x00,0x00,0x15 = lgh %r0, 0(%r15)
957
+ 0xe3,0x01,0xff,0xff,0x7f,0x15 = lgh %r0, 524287(%r1,%r15)
958
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x15 = lgh %r0, 524287(%r15,%r1)
959
+ 0xe3,0xf0,0x00,0x00,0x00,0x15 = lgh %r15, 0
960
+ 0xa7,0x09,0x80,0x00 = lghi %r0, -32768
961
+ 0xa7,0x09,0xff,0xff = lghi %r0, -1
962
+ 0xa7,0x09,0x00,0x00 = lghi %r0, 0
963
+ 0xa7,0x09,0x00,0x01 = lghi %r0, 1
964
+ 0xa7,0x09,0x7f,0xff = lghi %r0, 32767
965
+ 0xa7,0xf9,0x00,0x00 = lghi %r15, 0
966
+ 0xb9,0x07,0x00,0x0f = lghr %r0, %r15
967
+ 0xb9,0x07,0x00,0x78 = lghr %r7, %r8
968
+ 0xb9,0x07,0x00,0xf0 = lghr %r15, %r0
969
+ 0xb9,0x04,0x00,0x09 = lgr %r0, %r9
970
+ 0xb9,0x04,0x00,0x0f = lgr %r0, %r15
971
+ 0xb9,0x04,0x00,0xf0 = lgr %r15, %r0
972
+ 0xb9,0x04,0x00,0xf9 = lgr %r15, %r9
973
+ 0x48,0x00,0x00,0x00 = lh %r0, 0
974
+ 0x48,0x00,0x0f,0xff = lh %r0, 4095
975
+ 0x48,0x00,0x10,0x00 = lh %r0, 0(%r1)
976
+ 0x48,0x00,0xf0,0x00 = lh %r0, 0(%r15)
977
+ 0x48,0x01,0xff,0xff = lh %r0, 4095(%r1,%r15)
978
+ 0x48,0x0f,0x1f,0xff = lh %r0, 4095(%r15,%r1)
979
+ 0x48,0xf0,0x00,0x00 = lh %r15, 0
980
+ 0xa7,0x08,0x80,0x00 = lhi %r0, -32768
981
+ 0xa7,0x08,0xff,0xff = lhi %r0, -1
982
+ 0xa7,0x08,0x00,0x00 = lhi %r0, 0
983
+ 0xa7,0x08,0x00,0x01 = lhi %r0, 1
984
+ 0xa7,0x08,0x7f,0xff = lhi %r0, 32767
985
+ 0xa7,0xf8,0x00,0x00 = lhi %r15, 0
986
+ 0xb9,0x27,0x00,0x0f = lhr %r0, %r15
987
+ 0xb9,0x27,0x00,0x78 = lhr %r7, %r8
988
+ 0xb9,0x27,0x00,0xf0 = lhr %r15, %r0
989
+ 0xe3,0x00,0x00,0x00,0x80,0x78 = lhy %r0, -524288
990
+ 0xe3,0x00,0x0f,0xff,0xff,0x78 = lhy %r0, -1
991
+ 0xe3,0x00,0x00,0x00,0x00,0x78 = lhy %r0, 0
992
+ 0xe3,0x00,0x00,0x01,0x00,0x78 = lhy %r0, 1
993
+ 0xe3,0x00,0x0f,0xff,0x7f,0x78 = lhy %r0, 524287
994
+ 0xe3,0x00,0x10,0x00,0x00,0x78 = lhy %r0, 0(%r1)
995
+ 0xe3,0x00,0xf0,0x00,0x00,0x78 = lhy %r0, 0(%r15)
996
+ 0xe3,0x01,0xff,0xff,0x7f,0x78 = lhy %r0, 524287(%r1,%r15)
997
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x78 = lhy %r0, 524287(%r15,%r1)
998
+ 0xe3,0xf0,0x00,0x00,0x00,0x78 = lhy %r15, 0
999
+ 0xe3,0x00,0x00,0x00,0x80,0x94 = llc %r0, -524288
1000
+ 0xe3,0x00,0x0f,0xff,0xff,0x94 = llc %r0, -1
1001
+ 0xe3,0x00,0x00,0x00,0x00,0x94 = llc %r0, 0
1002
+ 0xe3,0x00,0x00,0x01,0x00,0x94 = llc %r0, 1
1003
+ 0xe3,0x00,0x0f,0xff,0x7f,0x94 = llc %r0, 524287
1004
+ 0xe3,0x00,0x10,0x00,0x00,0x94 = llc %r0, 0(%r1)
1005
+ 0xe3,0x00,0xf0,0x00,0x00,0x94 = llc %r0, 0(%r15)
1006
+ 0xe3,0x01,0xff,0xff,0x7f,0x94 = llc %r0, 524287(%r1,%r15)
1007
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x94 = llc %r0, 524287(%r15,%r1)
1008
+ 0xe3,0xf0,0x00,0x00,0x00,0x94 = llc %r15, 0
1009
+ 0xb9,0x94,0x00,0x0f = llcr %r0, %r15
1010
+ 0xb9,0x94,0x00,0x78 = llcr %r7, %r8
1011
+ 0xb9,0x94,0x00,0xf0 = llcr %r15, %r0
1012
+ 0xe3,0x00,0x00,0x00,0x80,0x90 = llgc %r0, -524288
1013
+ 0xe3,0x00,0x0f,0xff,0xff,0x90 = llgc %r0, -1
1014
+ 0xe3,0x00,0x00,0x00,0x00,0x90 = llgc %r0, 0
1015
+ 0xe3,0x00,0x00,0x01,0x00,0x90 = llgc %r0, 1
1016
+ 0xe3,0x00,0x0f,0xff,0x7f,0x90 = llgc %r0, 524287
1017
+ 0xe3,0x00,0x10,0x00,0x00,0x90 = llgc %r0, 0(%r1)
1018
+ 0xe3,0x00,0xf0,0x00,0x00,0x90 = llgc %r0, 0(%r15)
1019
+ 0xe3,0x01,0xff,0xff,0x7f,0x90 = llgc %r0, 524287(%r1,%r15)
1020
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x90 = llgc %r0, 524287(%r15,%r1)
1021
+ 0xe3,0xf0,0x00,0x00,0x00,0x90 = llgc %r15, 0
1022
+ 0xb9,0x84,0x00,0x0f = llgcr %r0, %r15
1023
+ 0xb9,0x84,0x00,0x78 = llgcr %r7, %r8
1024
+ 0xb9,0x84,0x00,0xf0 = llgcr %r15, %r0
1025
+ 0xe3,0x00,0x00,0x00,0x80,0x16 = llgf %r0, -524288
1026
+ 0xe3,0x00,0x0f,0xff,0xff,0x16 = llgf %r0, -1
1027
+ 0xe3,0x00,0x00,0x00,0x00,0x16 = llgf %r0, 0
1028
+ 0xe3,0x00,0x00,0x01,0x00,0x16 = llgf %r0, 1
1029
+ 0xe3,0x00,0x0f,0xff,0x7f,0x16 = llgf %r0, 524287
1030
+ 0xe3,0x00,0x10,0x00,0x00,0x16 = llgf %r0, 0(%r1)
1031
+ 0xe3,0x00,0xf0,0x00,0x00,0x16 = llgf %r0, 0(%r15)
1032
+ 0xe3,0x01,0xff,0xff,0x7f,0x16 = llgf %r0, 524287(%r1,%r15)
1033
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x16 = llgf %r0, 524287(%r15,%r1)
1034
+ 0xe3,0xf0,0x00,0x00,0x00,0x16 = llgf %r15, 0
1035
+ 0xb9,0x16,0x00,0x0f = llgfr %r0, %r15
1036
+ 0xb9,0x16,0x00,0x78 = llgfr %r7, %r8
1037
+ 0xb9,0x16,0x00,0xf0 = llgfr %r15, %r0
1038
+ 0xe3,0x00,0x00,0x00,0x80,0x91 = llgh %r0, -524288
1039
+ 0xe3,0x00,0x0f,0xff,0xff,0x91 = llgh %r0, -1
1040
+ 0xe3,0x00,0x00,0x00,0x00,0x91 = llgh %r0, 0
1041
+ 0xe3,0x00,0x00,0x01,0x00,0x91 = llgh %r0, 1
1042
+ 0xe3,0x00,0x0f,0xff,0x7f,0x91 = llgh %r0, 524287
1043
+ 0xe3,0x00,0x10,0x00,0x00,0x91 = llgh %r0, 0(%r1)
1044
+ 0xe3,0x00,0xf0,0x00,0x00,0x91 = llgh %r0, 0(%r15)
1045
+ 0xe3,0x01,0xff,0xff,0x7f,0x91 = llgh %r0, 524287(%r1,%r15)
1046
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x91 = llgh %r0, 524287(%r15,%r1)
1047
+ 0xe3,0xf0,0x00,0x00,0x00,0x91 = llgh %r15, 0
1048
+ 0xb9,0x85,0x00,0x0f = llghr %r0, %r15
1049
+ 0xb9,0x85,0x00,0x78 = llghr %r7, %r8
1050
+ 0xb9,0x85,0x00,0xf0 = llghr %r15, %r0
1051
+ 0xe3,0x00,0x00,0x00,0x80,0x95 = llh %r0, -524288
1052
+ 0xe3,0x00,0x0f,0xff,0xff,0x95 = llh %r0, -1
1053
+ 0xe3,0x00,0x00,0x00,0x00,0x95 = llh %r0, 0
1054
+ 0xe3,0x00,0x00,0x01,0x00,0x95 = llh %r0, 1
1055
+ 0xe3,0x00,0x0f,0xff,0x7f,0x95 = llh %r0, 524287
1056
+ 0xe3,0x00,0x10,0x00,0x00,0x95 = llh %r0, 0(%r1)
1057
+ 0xe3,0x00,0xf0,0x00,0x00,0x95 = llh %r0, 0(%r15)
1058
+ 0xe3,0x01,0xff,0xff,0x7f,0x95 = llh %r0, 524287(%r1,%r15)
1059
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x95 = llh %r0, 524287(%r15,%r1)
1060
+ 0xe3,0xf0,0x00,0x00,0x00,0x95 = llh %r15, 0
1061
+ 0xb9,0x95,0x00,0x0f = llhr %r0, %r15
1062
+ 0xb9,0x95,0x00,0x78 = llhr %r7, %r8
1063
+ 0xb9,0x95,0x00,0xf0 = llhr %r15, %r0
1064
+ 0xc0,0x0e,0x00,0x00,0x00,0x00 = llihf %r0, 0
1065
+ 0xc0,0x0e,0xff,0xff,0xff,0xff = llihf %r0, 4294967295
1066
+ 0xc0,0xfe,0x00,0x00,0x00,0x00 = llihf %r15, 0
1067
+ 0xa5,0x0c,0x00,0x00 = llihh %r0, 0
1068
+ 0xa5,0x0c,0x80,0x00 = llihh %r0, 32768
1069
+ 0xa5,0x0c,0xff,0xff = llihh %r0, 65535
1070
+ 0xa5,0xfc,0x00,0x00 = llihh %r15, 0
1071
+ 0xa5,0x0d,0x00,0x00 = llihl %r0, 0
1072
+ 0xa5,0x0d,0x80,0x00 = llihl %r0, 32768
1073
+ 0xa5,0x0d,0xff,0xff = llihl %r0, 65535
1074
+ 0xa5,0xfd,0x00,0x00 = llihl %r15, 0
1075
+ 0xc0,0x0f,0x00,0x00,0x00,0x00 = llilf %r0, 0
1076
+ 0xc0,0x0f,0xff,0xff,0xff,0xff = llilf %r0, 4294967295
1077
+ 0xc0,0xff,0x00,0x00,0x00,0x00 = llilf %r15, 0
1078
+ 0xa5,0x0e,0x00,0x00 = llilh %r0, 0
1079
+ 0xa5,0x0e,0x80,0x00 = llilh %r0, 32768
1080
+ 0xa5,0x0e,0xff,0xff = llilh %r0, 65535
1081
+ 0xa5,0xfe,0x00,0x00 = llilh %r15, 0
1082
+ 0xa5,0x0f,0x00,0x00 = llill %r0, 0
1083
+ 0xa5,0x0f,0x80,0x00 = llill %r0, 32768
1084
+ 0xa5,0x0f,0xff,0xff = llill %r0, 65535
1085
+ 0xa5,0xff,0x00,0x00 = llill %r15, 0
1086
+ 0xeb,0x00,0x00,0x00,0x00,0x04 = lmg %r0, %r0, 0
1087
+ 0xeb,0x0f,0x00,0x00,0x00,0x04 = lmg %r0, %r15, 0
1088
+ 0xeb,0xef,0x00,0x00,0x00,0x04 = lmg %r14, %r15, 0
1089
+ 0xeb,0xff,0x00,0x00,0x00,0x04 = lmg %r15, %r15, 0
1090
+ 0xeb,0x00,0x00,0x00,0x80,0x04 = lmg %r0, %r0, -524288
1091
+ 0xeb,0x00,0x0f,0xff,0xff,0x04 = lmg %r0, %r0, -1
1092
+ 0xeb,0x00,0x00,0x00,0x00,0x04 = lmg %r0, %r0, 0
1093
+ 0xeb,0x00,0x00,0x01,0x00,0x04 = lmg %r0, %r0, 1
1094
+ 0xeb,0x00,0x0f,0xff,0x7f,0x04 = lmg %r0, %r0, 524287
1095
+ 0xeb,0x00,0x10,0x00,0x00,0x04 = lmg %r0, %r0, 0(%r1)
1096
+ 0xeb,0x00,0xf0,0x00,0x00,0x04 = lmg %r0, %r0, 0(%r15)
1097
+ 0xeb,0x00,0x1f,0xff,0x7f,0x04 = lmg %r0, %r0, 524287(%r1)
1098
+ 0xeb,0x00,0xff,0xff,0x7f,0x04 = lmg %r0, %r0, 524287(%r15)
1099
+ 0xb3,0x11,0x00,0x09 = lndbr %f0, %f9
1100
+ 0xb3,0x11,0x00,0x0f = lndbr %f0, %f15
1101
+ 0xb3,0x11,0x00,0xf0 = lndbr %f15, %f0
1102
+ 0xb3,0x11,0x00,0xf9 = lndbr %f15, %f9
1103
+ 0xb3,0x01,0x00,0x09 = lnebr %f0, %f9
1104
+ 0xb3,0x01,0x00,0x0f = lnebr %f0, %f15
1105
+ 0xb3,0x01,0x00,0xf0 = lnebr %f15, %f0
1106
+ 0xb3,0x01,0x00,0xf9 = lnebr %f15, %f9
1107
+ 0xb9,0x11,0x00,0x00 = lngfr %r0, %r0
1108
+ 0xb9,0x11,0x00,0x0f = lngfr %r0, %r15
1109
+ 0xb9,0x11,0x00,0xf0 = lngfr %r15, %r0
1110
+ 0xb9,0x11,0x00,0x78 = lngfr %r7, %r8
1111
+ 0xb9,0x01,0x00,0x00 = lngr %r0, %r0
1112
+ 0xb9,0x01,0x00,0x0f = lngr %r0, %r15
1113
+ 0xb9,0x01,0x00,0xf0 = lngr %r15, %r0
1114
+ 0xb9,0x01,0x00,0x78 = lngr %r7, %r8
1115
+ 0x11,0x00 = lnr %r0, %r0
1116
+ 0x11,0x0f = lnr %r0, %r15
1117
+ 0x11,0xf0 = lnr %r15, %r0
1118
+ 0x11,0x78 = lnr %r7, %r8
1119
+ 0xb3,0x41,0x00,0x08 = lnxbr %f0, %f8
1120
+ 0xb3,0x41,0x00,0x0d = lnxbr %f0, %f13
1121
+ 0xb3,0x41,0x00,0xd0 = lnxbr %f13, %f0
1122
+ 0xb3,0x41,0x00,0xd9 = lnxbr %f13, %f9
1123
+ 0xb3,0x10,0x00,0x09 = lpdbr %f0, %f9
1124
+ 0xb3,0x10,0x00,0x0f = lpdbr %f0, %f15
1125
+ 0xb3,0x10,0x00,0xf0 = lpdbr %f15, %f0
1126
+ 0xb3,0x10,0x00,0xf9 = lpdbr %f15, %f9
1127
+ 0xb3,0x00,0x00,0x09 = lpebr %f0, %f9
1128
+ 0xb3,0x00,0x00,0x0f = lpebr %f0, %f15
1129
+ 0xb3,0x00,0x00,0xf0 = lpebr %f15, %f0
1130
+ 0xb3,0x00,0x00,0xf9 = lpebr %f15, %f9
1131
+ 0xb9,0x10,0x00,0x00 = lpgfr %r0, %r0
1132
+ 0xb9,0x10,0x00,0x0f = lpgfr %r0, %r15
1133
+ 0xb9,0x10,0x00,0xf0 = lpgfr %r15, %r0
1134
+ 0xb9,0x10,0x00,0x78 = lpgfr %r7, %r8
1135
+ 0xb9,0x00,0x00,0x00 = lpgr %r0, %r0
1136
+ 0xb9,0x00,0x00,0x0f = lpgr %r0, %r15
1137
+ 0xb9,0x00,0x00,0xf0 = lpgr %r15, %r0
1138
+ 0xb9,0x00,0x00,0x78 = lpgr %r7, %r8
1139
+ 0x10,0x00 = lpr %r0, %r0
1140
+ 0x10,0x0f = lpr %r0, %r15
1141
+ 0x10,0xf0 = lpr %r15, %r0
1142
+ 0x10,0x78 = lpr %r7, %r8
1143
+ 0xb3,0x40,0x00,0x08 = lpxbr %f0, %f8
1144
+ 0xb3,0x40,0x00,0x0d = lpxbr %f0, %f13
1145
+ 0xb3,0x40,0x00,0xd0 = lpxbr %f13, %f0
1146
+ 0xb3,0x40,0x00,0xd9 = lpxbr %f13, %f9
1147
+ 0x18,0x09 = lr %r0, %r9
1148
+ 0x18,0x0f = lr %r0, %r15
1149
+ 0x18,0xf0 = lr %r15, %r0
1150
+ 0x18,0xf9 = lr %r15, %r9
1151
+ 0xe3,0x00,0x00,0x00,0x80,0x1e = lrv %r0, -524288
1152
+ 0xe3,0x00,0x0f,0xff,0xff,0x1e = lrv %r0, -1
1153
+ 0xe3,0x00,0x00,0x00,0x00,0x1e = lrv %r0, 0
1154
+ 0xe3,0x00,0x00,0x01,0x00,0x1e = lrv %r0, 1
1155
+ 0xe3,0x00,0x0f,0xff,0x7f,0x1e = lrv %r0, 524287
1156
+ 0xe3,0x00,0x10,0x00,0x00,0x1e = lrv %r0, 0(%r1)
1157
+ 0xe3,0x00,0xf0,0x00,0x00,0x1e = lrv %r0, 0(%r15)
1158
+ 0xe3,0x01,0xff,0xff,0x7f,0x1e = lrv %r0, 524287(%r1,%r15)
1159
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x1e = lrv %r0, 524287(%r15,%r1)
1160
+ 0xe3,0xf0,0x00,0x00,0x00,0x1e = lrv %r15, 0
1161
+ 0xe3,0x00,0x00,0x00,0x80,0x0f = lrvg %r0, -524288
1162
+ 0xe3,0x00,0x0f,0xff,0xff,0x0f = lrvg %r0, -1
1163
+ 0xe3,0x00,0x00,0x00,0x00,0x0f = lrvg %r0, 0
1164
+ 0xe3,0x00,0x00,0x01,0x00,0x0f = lrvg %r0, 1
1165
+ 0xe3,0x00,0x0f,0xff,0x7f,0x0f = lrvg %r0, 524287
1166
+ 0xe3,0x00,0x10,0x00,0x00,0x0f = lrvg %r0, 0(%r1)
1167
+ 0xe3,0x00,0xf0,0x00,0x00,0x0f = lrvg %r0, 0(%r15)
1168
+ 0xe3,0x01,0xff,0xff,0x7f,0x0f = lrvg %r0, 524287(%r1,%r15)
1169
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x0f = lrvg %r0, 524287(%r15,%r1)
1170
+ 0xe3,0xf0,0x00,0x00,0x00,0x0f = lrvg %r15, 0
1171
+ 0xb9,0x0f,0x00,0x00 = lrvgr %r0, %r0
1172
+ 0xb9,0x0f,0x00,0x0f = lrvgr %r0, %r15
1173
+ 0xb9,0x0f,0x00,0xf0 = lrvgr %r15, %r0
1174
+ 0xb9,0x0f,0x00,0x78 = lrvgr %r7, %r8
1175
+ 0xb9,0x0f,0x00,0xff = lrvgr %r15, %r15
1176
+ 0xb9,0x1f,0x00,0x00 = lrvr %r0, %r0
1177
+ 0xb9,0x1f,0x00,0x0f = lrvr %r0, %r15
1178
+ 0xb9,0x1f,0x00,0xf0 = lrvr %r15, %r0
1179
+ 0xb9,0x1f,0x00,0x78 = lrvr %r7, %r8
1180
+ 0xb9,0x1f,0x00,0xff = lrvr %r15, %r15
1181
+ 0xe3,0x00,0x00,0x00,0x80,0x12 = lt %r0, -524288
1182
+ 0xe3,0x00,0x0f,0xff,0xff,0x12 = lt %r0, -1
1183
+ 0xe3,0x00,0x00,0x00,0x00,0x12 = lt %r0, 0
1184
+ 0xe3,0x00,0x00,0x01,0x00,0x12 = lt %r0, 1
1185
+ 0xe3,0x00,0x0f,0xff,0x7f,0x12 = lt %r0, 524287
1186
+ 0xe3,0x00,0x10,0x00,0x00,0x12 = lt %r0, 0(%r1)
1187
+ 0xe3,0x00,0xf0,0x00,0x00,0x12 = lt %r0, 0(%r15)
1188
+ 0xe3,0x01,0xff,0xff,0x7f,0x12 = lt %r0, 524287(%r1,%r15)
1189
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x12 = lt %r0, 524287(%r15,%r1)
1190
+ 0xe3,0xf0,0x00,0x00,0x00,0x12 = lt %r15, 0
1191
+ 0xe3,0x00,0x00,0x00,0x80,0x02 = ltg %r0, -524288
1192
+ 0xe3,0x00,0x0f,0xff,0xff,0x02 = ltg %r0, -1
1193
+ 0xe3,0x00,0x00,0x00,0x00,0x02 = ltg %r0, 0
1194
+ 0xe3,0x00,0x00,0x01,0x00,0x02 = ltg %r0, 1
1195
+ 0xe3,0x00,0x0f,0xff,0x7f,0x02 = ltg %r0, 524287
1196
+ 0xe3,0x00,0x10,0x00,0x00,0x02 = ltg %r0, 0(%r1)
1197
+ 0xe3,0x00,0xf0,0x00,0x00,0x02 = ltg %r0, 0(%r15)
1198
+ 0xe3,0x01,0xff,0xff,0x7f,0x02 = ltg %r0, 524287(%r1,%r15)
1199
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x02 = ltg %r0, 524287(%r15,%r1)
1200
+ 0xe3,0xf0,0x00,0x00,0x00,0x02 = ltg %r15, 0
1201
+ 0xe3,0x00,0x00,0x00,0x80,0x32 = ltgf %r0, -524288
1202
+ 0xe3,0x00,0x0f,0xff,0xff,0x32 = ltgf %r0, -1
1203
+ 0xe3,0x00,0x00,0x00,0x00,0x32 = ltgf %r0, 0
1204
+ 0xe3,0x00,0x00,0x01,0x00,0x32 = ltgf %r0, 1
1205
+ 0xe3,0x00,0x0f,0xff,0x7f,0x32 = ltgf %r0, 524287
1206
+ 0xe3,0x00,0x10,0x00,0x00,0x32 = ltgf %r0, 0(%r1)
1207
+ 0xe3,0x00,0xf0,0x00,0x00,0x32 = ltgf %r0, 0(%r15)
1208
+ 0xe3,0x01,0xff,0xff,0x7f,0x32 = ltgf %r0, 524287(%r1,%r15)
1209
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x32 = ltgf %r0, 524287(%r15,%r1)
1210
+ 0xe3,0xf0,0x00,0x00,0x00,0x32 = ltgf %r15, 0
1211
+ 0xb3,0x12,0x00,0x09 = ltdbr %f0, %f9
1212
+ 0xb3,0x12,0x00,0x0f = ltdbr %f0, %f15
1213
+ 0xb3,0x12,0x00,0xf0 = ltdbr %f15, %f0
1214
+ 0xb3,0x12,0x00,0xf9 = ltdbr %f15, %f9
1215
+ 0xb3,0x02,0x00,0x09 = ltebr %f0, %f9
1216
+ 0xb3,0x02,0x00,0x0f = ltebr %f0, %f15
1217
+ 0xb3,0x02,0x00,0xf0 = ltebr %f15, %f0
1218
+ 0xb3,0x02,0x00,0xf9 = ltebr %f15, %f9
1219
+ 0xb9,0x12,0x00,0x09 = ltgfr %r0, %r9
1220
+ 0xb9,0x12,0x00,0x0f = ltgfr %r0, %r15
1221
+ 0xb9,0x12,0x00,0xf0 = ltgfr %r15, %r0
1222
+ 0xb9,0x12,0x00,0xf9 = ltgfr %r15, %r9
1223
+ 0xb9,0x02,0x00,0x09 = ltgr %r0, %r9
1224
+ 0xb9,0x02,0x00,0x0f = ltgr %r0, %r15
1225
+ 0xb9,0x02,0x00,0xf0 = ltgr %r15, %r0
1226
+ 0xb9,0x02,0x00,0xf9 = ltgr %r15, %r9
1227
+ 0x12,0x09 = ltr %r0, %r9
1228
+ 0x12,0x0f = ltr %r0, %r15
1229
+ 0x12,0xf0 = ltr %r15, %r0
1230
+ 0x12,0xf9 = ltr %r15, %r9
1231
+ 0xb3,0x42,0x00,0x09 = ltxbr %f0, %f9
1232
+ 0xb3,0x42,0x00,0x0d = ltxbr %f0, %f13
1233
+ 0xb3,0x42,0x00,0xd0 = ltxbr %f13, %f0
1234
+ 0xb3,0x42,0x00,0xd9 = ltxbr %f13, %f9
1235
+ 0xb3,0x65,0x00,0x08 = lxr %f0, %f8
1236
+ 0xb3,0x65,0x00,0x0d = lxr %f0, %f13
1237
+ 0xb3,0x65,0x00,0xd0 = lxr %f13, %f0
1238
+ 0xb3,0x65,0x00,0xd9 = lxr %f13, %f9
1239
+ 0xe3,0x00,0x00,0x00,0x80,0x58 = ly %r0, -524288
1240
+ 0xe3,0x00,0x0f,0xff,0xff,0x58 = ly %r0, -1
1241
+ 0xe3,0x00,0x00,0x00,0x00,0x58 = ly %r0, 0
1242
+ 0xe3,0x00,0x00,0x01,0x00,0x58 = ly %r0, 1
1243
+ 0xe3,0x00,0x0f,0xff,0x7f,0x58 = ly %r0, 524287
1244
+ 0xe3,0x00,0x10,0x00,0x00,0x58 = ly %r0, 0(%r1)
1245
+ 0xe3,0x00,0xf0,0x00,0x00,0x58 = ly %r0, 0(%r15)
1246
+ 0xe3,0x01,0xff,0xff,0x7f,0x58 = ly %r0, 524287(%r1,%r15)
1247
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x58 = ly %r0, 524287(%r15,%r1)
1248
+ 0xe3,0xf0,0x00,0x00,0x00,0x58 = ly %r15, 0
1249
+ 0xb3,0x75,0x00,0x00 = lzdr %f0
1250
+ 0xb3,0x75,0x00,0x70 = lzdr %f7
1251
+ 0xb3,0x75,0x00,0xf0 = lzdr %f15
1252
+ 0xb3,0x74,0x00,0x00 = lzer %f0
1253
+ 0xb3,0x74,0x00,0x70 = lzer %f7
1254
+ 0xb3,0x74,0x00,0xf0 = lzer %f15
1255
+ 0xb3,0x76,0x00,0x00 = lzxr %f0
1256
+ 0xb3,0x76,0x00,0x80 = lzxr %f8
1257
+ 0xb3,0x76,0x00,0xd0 = lzxr %f13
1258
+ 0xed,0x00,0x00,0x00,0x00,0x1e = madb %f0, %f0, 0
1259
+ 0xed,0x00,0x0f,0xff,0x00,0x1e = madb %f0, %f0, 4095
1260
+ 0xed,0x00,0x10,0x00,0x00,0x1e = madb %f0, %f0, 0(%r1)
1261
+ 0xed,0x00,0xf0,0x00,0x00,0x1e = madb %f0, %f0, 0(%r15)
1262
+ 0xed,0x01,0xff,0xff,0x00,0x1e = madb %f0, %f0, 4095(%r1,%r15)
1263
+ 0xed,0x0f,0x1f,0xff,0x00,0x1e = madb %f0, %f0, 4095(%r15,%r1)
1264
+ 0xed,0xf0,0x00,0x00,0x00,0x1e = madb %f0, %f15, 0
1265
+ 0xed,0x00,0x00,0x00,0xf0,0x1e = madb %f15, %f0, 0
1266
+ 0xed,0xf0,0x00,0x00,0xf0,0x1e = madb %f15, %f15, 0
1267
+ 0xb3,0x1e,0x00,0x00 = madbr %f0, %f0, %f0
1268
+ 0xb3,0x1e,0x00,0x0f = madbr %f0, %f0, %f15
1269
+ 0xb3,0x1e,0x00,0xf0 = madbr %f0, %f15, %f0
1270
+ 0xb3,0x1e,0xf0,0x00 = madbr %f15, %f0, %f0
1271
+ 0xb3,0x1e,0x70,0x89 = madbr %f7, %f8, %f9
1272
+ 0xb3,0x1e,0xf0,0xff = madbr %f15, %f15, %f15
1273
+ 0xed,0x00,0x00,0x00,0x00,0x0e = maeb %f0, %f0, 0
1274
+ 0xed,0x00,0x0f,0xff,0x00,0x0e = maeb %f0, %f0, 4095
1275
+ 0xed,0x00,0x10,0x00,0x00,0x0e = maeb %f0, %f0, 0(%r1)
1276
+ 0xed,0x00,0xf0,0x00,0x00,0x0e = maeb %f0, %f0, 0(%r15)
1277
+ 0xed,0x01,0xff,0xff,0x00,0x0e = maeb %f0, %f0, 4095(%r1,%r15)
1278
+ 0xed,0x0f,0x1f,0xff,0x00,0x0e = maeb %f0, %f0, 4095(%r15,%r1)
1279
+ 0xed,0xf0,0x00,0x00,0x00,0x0e = maeb %f0, %f15, 0
1280
+ 0xed,0x00,0x00,0x00,0xf0,0x0e = maeb %f15, %f0, 0
1281
+ 0xed,0xf0,0x00,0x00,0xf0,0x0e = maeb %f15, %f15, 0
1282
+ 0xb3,0x0e,0x00,0x00 = maebr %f0, %f0, %f0
1283
+ 0xb3,0x0e,0x00,0x0f = maebr %f0, %f0, %f15
1284
+ 0xb3,0x0e,0x00,0xf0 = maebr %f0, %f15, %f0
1285
+ 0xb3,0x0e,0xf0,0x00 = maebr %f15, %f0, %f0
1286
+ 0xb3,0x0e,0x70,0x89 = maebr %f7, %f8, %f9
1287
+ 0xb3,0x0e,0xf0,0xff = maebr %f15, %f15, %f15
1288
+ 0xed,0x00,0x00,0x00,0x00,0x1c = mdb %f0, 0
1289
+ 0xed,0x00,0x0f,0xff,0x00,0x1c = mdb %f0, 4095
1290
+ 0xed,0x00,0x10,0x00,0x00,0x1c = mdb %f0, 0(%r1)
1291
+ 0xed,0x00,0xf0,0x00,0x00,0x1c = mdb %f0, 0(%r15)
1292
+ 0xed,0x01,0xff,0xff,0x00,0x1c = mdb %f0, 4095(%r1,%r15)
1293
+ 0xed,0x0f,0x1f,0xff,0x00,0x1c = mdb %f0, 4095(%r15,%r1)
1294
+ 0xed,0xf0,0x00,0x00,0x00,0x1c = mdb %f15, 0
1295
+ 0xb3,0x1c,0x00,0x00 = mdbr %f0, %f0
1296
+ 0xb3,0x1c,0x00,0x0f = mdbr %f0, %f15
1297
+ 0xb3,0x1c,0x00,0x78 = mdbr %f7, %f8
1298
+ 0xb3,0x1c,0x00,0xf0 = mdbr %f15, %f0
1299
+ 0xed,0x00,0x00,0x00,0x00,0x0c = mdeb %f0, 0
1300
+ 0xed,0x00,0x0f,0xff,0x00,0x0c = mdeb %f0, 4095
1301
+ 0xed,0x00,0x10,0x00,0x00,0x0c = mdeb %f0, 0(%r1)
1302
+ 0xed,0x00,0xf0,0x00,0x00,0x0c = mdeb %f0, 0(%r15)
1303
+ 0xed,0x01,0xff,0xff,0x00,0x0c = mdeb %f0, 4095(%r1,%r15)
1304
+ 0xed,0x0f,0x1f,0xff,0x00,0x0c = mdeb %f0, 4095(%r15,%r1)
1305
+ 0xed,0xf0,0x00,0x00,0x00,0x0c = mdeb %f15, 0
1306
+ 0xb3,0x0c,0x00,0x00 = mdebr %f0, %f0
1307
+ 0xb3,0x0c,0x00,0x0f = mdebr %f0, %f15
1308
+ 0xb3,0x0c,0x00,0x78 = mdebr %f7, %f8
1309
+ 0xb3,0x0c,0x00,0xf0 = mdebr %f15, %f0
1310
+ 0xed,0x00,0x00,0x00,0x00,0x17 = meeb %f0, 0
1311
+ 0xed,0x00,0x0f,0xff,0x00,0x17 = meeb %f0, 4095
1312
+ 0xed,0x00,0x10,0x00,0x00,0x17 = meeb %f0, 0(%r1)
1313
+ 0xed,0x00,0xf0,0x00,0x00,0x17 = meeb %f0, 0(%r15)
1314
+ 0xed,0x01,0xff,0xff,0x00,0x17 = meeb %f0, 4095(%r1,%r15)
1315
+ 0xed,0x0f,0x1f,0xff,0x00,0x17 = meeb %f0, 4095(%r15,%r1)
1316
+ 0xed,0xf0,0x00,0x00,0x00,0x17 = meeb %f15, 0
1317
+ 0xb3,0x17,0x00,0x00 = meebr %f0, %f0
1318
+ 0xb3,0x17,0x00,0x0f = meebr %f0, %f15
1319
+ 0xb3,0x17,0x00,0x78 = meebr %f7, %f8
1320
+ 0xb3,0x17,0x00,0xf0 = meebr %f15, %f0
1321
+ 0xa7,0x0d,0x80,0x00 = mghi %r0, -32768
1322
+ 0xa7,0x0d,0xff,0xff = mghi %r0, -1
1323
+ 0xa7,0x0d,0x00,0x00 = mghi %r0, 0
1324
+ 0xa7,0x0d,0x00,0x01 = mghi %r0, 1
1325
+ 0xa7,0x0d,0x7f,0xff = mghi %r0, 32767
1326
+ 0xa7,0xfd,0x00,0x00 = mghi %r15, 0
1327
+ 0x4c,0x00,0x00,0x00 = mh %r0, 0
1328
+ 0x4c,0x00,0x0f,0xff = mh %r0, 4095
1329
+ 0x4c,0x00,0x10,0x00 = mh %r0, 0(%r1)
1330
+ 0x4c,0x00,0xf0,0x00 = mh %r0, 0(%r15)
1331
+ 0x4c,0x01,0xff,0xff = mh %r0, 4095(%r1,%r15)
1332
+ 0x4c,0x0f,0x1f,0xff = mh %r0, 4095(%r15,%r1)
1333
+ 0x4c,0xf0,0x00,0x00 = mh %r15, 0
1334
+ 0xa7,0x0c,0x80,0x00 = mhi %r0, -32768
1335
+ 0xa7,0x0c,0xff,0xff = mhi %r0, -1
1336
+ 0xa7,0x0c,0x00,0x00 = mhi %r0, 0
1337
+ 0xa7,0x0c,0x00,0x01 = mhi %r0, 1
1338
+ 0xa7,0x0c,0x7f,0xff = mhi %r0, 32767
1339
+ 0xa7,0xfc,0x00,0x00 = mhi %r15, 0
1340
+ 0xe3,0x00,0x00,0x00,0x80,0x7c = mhy %r0, -524288
1341
+ 0xe3,0x00,0x0f,0xff,0xff,0x7c = mhy %r0, -1
1342
+ 0xe3,0x00,0x00,0x00,0x00,0x7c = mhy %r0, 0
1343
+ 0xe3,0x00,0x00,0x01,0x00,0x7c = mhy %r0, 1
1344
+ 0xe3,0x00,0x0f,0xff,0x7f,0x7c = mhy %r0, 524287
1345
+ 0xe3,0x00,0x10,0x00,0x00,0x7c = mhy %r0, 0(%r1)
1346
+ 0xe3,0x00,0xf0,0x00,0x00,0x7c = mhy %r0, 0(%r15)
1347
+ 0xe3,0x01,0xff,0xff,0x7f,0x7c = mhy %r0, 524287(%r1,%r15)
1348
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x7c = mhy %r0, 524287(%r15,%r1)
1349
+ 0xe3,0xf0,0x00,0x00,0x00,0x7c = mhy %r15, 0
1350
+ 0xe3,0x00,0x00,0x00,0x80,0x86 = mlg %r0, -524288
1351
+ 0xe3,0x00,0x0f,0xff,0xff,0x86 = mlg %r0, -1
1352
+ 0xe3,0x00,0x00,0x00,0x00,0x86 = mlg %r0, 0
1353
+ 0xe3,0x00,0x00,0x01,0x00,0x86 = mlg %r0, 1
1354
+ 0xe3,0x00,0x0f,0xff,0x7f,0x86 = mlg %r0, 524287
1355
+ 0xe3,0x00,0x10,0x00,0x00,0x86 = mlg %r0, 0(%r1)
1356
+ 0xe3,0x00,0xf0,0x00,0x00,0x86 = mlg %r0, 0(%r15)
1357
+ 0xe3,0x01,0xff,0xff,0x7f,0x86 = mlg %r0, 524287(%r1,%r15)
1358
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x86 = mlg %r0, 524287(%r15,%r1)
1359
+ 0xe3,0xe0,0x00,0x00,0x00,0x86 = mlg %r14, 0
1360
+ 0xb9,0x86,0x00,0x00 = mlgr %r0, %r0
1361
+ 0xb9,0x86,0x00,0x0f = mlgr %r0, %r15
1362
+ 0xb9,0x86,0x00,0xe0 = mlgr %r14, %r0
1363
+ 0xb9,0x86,0x00,0x69 = mlgr %r6, %r9
1364
+ 0x71,0x00,0x00,0x00 = ms %r0, 0
1365
+ 0x71,0x00,0x0f,0xff = ms %r0, 4095
1366
+ 0x71,0x00,0x10,0x00 = ms %r0, 0(%r1)
1367
+ 0x71,0x00,0xf0,0x00 = ms %r0, 0(%r15)
1368
+ 0x71,0x01,0xff,0xff = ms %r0, 4095(%r1,%r15)
1369
+ 0x71,0x0f,0x1f,0xff = ms %r0, 4095(%r15,%r1)
1370
+ 0x71,0xf0,0x00,0x00 = ms %r15, 0
1371
+ 0xed,0x00,0x00,0x00,0x00,0x1f = msdb %f0, %f0, 0
1372
+ 0xed,0x00,0x0f,0xff,0x00,0x1f = msdb %f0, %f0, 4095
1373
+ 0xed,0x00,0x10,0x00,0x00,0x1f = msdb %f0, %f0, 0(%r1)
1374
+ 0xed,0x00,0xf0,0x00,0x00,0x1f = msdb %f0, %f0, 0(%r15)
1375
+ 0xed,0x01,0xff,0xff,0x00,0x1f = msdb %f0, %f0, 4095(%r1,%r15)
1376
+ 0xed,0x0f,0x1f,0xff,0x00,0x1f = msdb %f0, %f0, 4095(%r15,%r1)
1377
+ 0xed,0xf0,0x00,0x00,0x00,0x1f = msdb %f0, %f15, 0
1378
+ 0xed,0x00,0x00,0x00,0xf0,0x1f = msdb %f15, %f0, 0
1379
+ 0xed,0xf0,0x00,0x00,0xf0,0x1f = msdb %f15, %f15, 0
1380
+ 0xb3,0x1f,0x00,0x00 = msdbr %f0, %f0, %f0
1381
+ 0xb3,0x1f,0x00,0x0f = msdbr %f0, %f0, %f15
1382
+ 0xb3,0x1f,0x00,0xf0 = msdbr %f0, %f15, %f0
1383
+ 0xb3,0x1f,0xf0,0x00 = msdbr %f15, %f0, %f0
1384
+ 0xb3,0x1f,0x70,0x89 = msdbr %f7, %f8, %f9
1385
+ 0xb3,0x1f,0xf0,0xff = msdbr %f15, %f15, %f15
1386
+ 0xed,0x00,0x00,0x00,0x00,0x0f = mseb %f0, %f0, 0
1387
+ 0xed,0x00,0x0f,0xff,0x00,0x0f = mseb %f0, %f0, 4095
1388
+ 0xed,0x00,0x10,0x00,0x00,0x0f = mseb %f0, %f0, 0(%r1)
1389
+ 0xed,0x00,0xf0,0x00,0x00,0x0f = mseb %f0, %f0, 0(%r15)
1390
+ 0xed,0x01,0xff,0xff,0x00,0x0f = mseb %f0, %f0, 4095(%r1,%r15)
1391
+ 0xed,0x0f,0x1f,0xff,0x00,0x0f = mseb %f0, %f0, 4095(%r15,%r1)
1392
+ 0xed,0xf0,0x00,0x00,0x00,0x0f = mseb %f0, %f15, 0
1393
+ 0xed,0x00,0x00,0x00,0xf0,0x0f = mseb %f15, %f0, 0
1394
+ 0xed,0xf0,0x00,0x00,0xf0,0x0f = mseb %f15, %f15, 0
1395
+ 0xb3,0x0f,0x00,0x00 = msebr %f0, %f0, %f0
1396
+ 0xb3,0x0f,0x00,0x0f = msebr %f0, %f0, %f15
1397
+ 0xb3,0x0f,0x00,0xf0 = msebr %f0, %f15, %f0
1398
+ 0xb3,0x0f,0xf0,0x00 = msebr %f15, %f0, %f0
1399
+ 0xb3,0x0f,0x70,0x89 = msebr %f7, %f8, %f9
1400
+ 0xb3,0x0f,0xf0,0xff = msebr %f15, %f15, %f15
1401
+ 0xc2,0x01,0x80,0x00,0x00,0x00 = msfi %r0, -2147483648
1402
+ 0xc2,0x01,0xff,0xff,0xff,0xff = msfi %r0, -1
1403
+ 0xc2,0x01,0x00,0x00,0x00,0x00 = msfi %r0, 0
1404
+ 0xc2,0x01,0x00,0x00,0x00,0x01 = msfi %r0, 1
1405
+ 0xc2,0x01,0x7f,0xff,0xff,0xff = msfi %r0, 2147483647
1406
+ 0xc2,0xf1,0x00,0x00,0x00,0x00 = msfi %r15, 0
1407
+ 0xe3,0x00,0x00,0x00,0x80,0x0c = msg %r0, -524288
1408
+ 0xe3,0x00,0x0f,0xff,0xff,0x0c = msg %r0, -1
1409
+ 0xe3,0x00,0x00,0x00,0x00,0x0c = msg %r0, 0
1410
+ 0xe3,0x00,0x00,0x01,0x00,0x0c = msg %r0, 1
1411
+ 0xe3,0x00,0x0f,0xff,0x7f,0x0c = msg %r0, 524287
1412
+ 0xe3,0x00,0x10,0x00,0x00,0x0c = msg %r0, 0(%r1)
1413
+ 0xe3,0x00,0xf0,0x00,0x00,0x0c = msg %r0, 0(%r15)
1414
+ 0xe3,0x01,0xff,0xff,0x7f,0x0c = msg %r0, 524287(%r1,%r15)
1415
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x0c = msg %r0, 524287(%r15,%r1)
1416
+ 0xe3,0xf0,0x00,0x00,0x00,0x0c = msg %r15, 0
1417
+ 0xe3,0x00,0x00,0x00,0x80,0x1c = msgf %r0, -524288
1418
+ 0xe3,0x00,0x0f,0xff,0xff,0x1c = msgf %r0, -1
1419
+ 0xe3,0x00,0x00,0x00,0x00,0x1c = msgf %r0, 0
1420
+ 0xe3,0x00,0x00,0x01,0x00,0x1c = msgf %r0, 1
1421
+ 0xe3,0x00,0x0f,0xff,0x7f,0x1c = msgf %r0, 524287
1422
+ 0xe3,0x00,0x10,0x00,0x00,0x1c = msgf %r0, 0(%r1)
1423
+ 0xe3,0x00,0xf0,0x00,0x00,0x1c = msgf %r0, 0(%r15)
1424
+ 0xe3,0x01,0xff,0xff,0x7f,0x1c = msgf %r0, 524287(%r1,%r15)
1425
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x1c = msgf %r0, 524287(%r15,%r1)
1426
+ 0xe3,0xf0,0x00,0x00,0x00,0x1c = msgf %r15, 0
1427
+ 0xc2,0x00,0x80,0x00,0x00,0x00 = msgfi %r0, -2147483648
1428
+ 0xc2,0x00,0xff,0xff,0xff,0xff = msgfi %r0, -1
1429
+ 0xc2,0x00,0x00,0x00,0x00,0x00 = msgfi %r0, 0
1430
+ 0xc2,0x00,0x00,0x00,0x00,0x01 = msgfi %r0, 1
1431
+ 0xc2,0x00,0x7f,0xff,0xff,0xff = msgfi %r0, 2147483647
1432
+ 0xc2,0xf0,0x00,0x00,0x00,0x00 = msgfi %r15, 0
1433
+ 0xb9,0x1c,0x00,0x00 = msgfr %r0, %r0
1434
+ 0xb9,0x1c,0x00,0x0f = msgfr %r0, %r15
1435
+ 0xb9,0x1c,0x00,0xf0 = msgfr %r15, %r0
1436
+ 0xb9,0x1c,0x00,0x78 = msgfr %r7, %r8
1437
+ 0xb9,0x0c,0x00,0x00 = msgr %r0, %r0
1438
+ 0xb9,0x0c,0x00,0x0f = msgr %r0, %r15
1439
+ 0xb9,0x0c,0x00,0xf0 = msgr %r15, %r0
1440
+ 0xb9,0x0c,0x00,0x78 = msgr %r7, %r8
1441
+ 0xb2,0x52,0x00,0x00 = msr %r0, %r0
1442
+ 0xb2,0x52,0x00,0x0f = msr %r0, %r15
1443
+ 0xb2,0x52,0x00,0xf0 = msr %r15, %r0
1444
+ 0xb2,0x52,0x00,0x78 = msr %r7, %r8
1445
+ 0xe3,0x00,0x00,0x00,0x80,0x51 = msy %r0, -524288
1446
+ 0xe3,0x00,0x0f,0xff,0xff,0x51 = msy %r0, -1
1447
+ 0xe3,0x00,0x00,0x00,0x00,0x51 = msy %r0, 0
1448
+ 0xe3,0x00,0x00,0x01,0x00,0x51 = msy %r0, 1
1449
+ 0xe3,0x00,0x0f,0xff,0x7f,0x51 = msy %r0, 524287
1450
+ 0xe3,0x00,0x10,0x00,0x00,0x51 = msy %r0, 0(%r1)
1451
+ 0xe3,0x00,0xf0,0x00,0x00,0x51 = msy %r0, 0(%r15)
1452
+ 0xe3,0x01,0xff,0xff,0x7f,0x51 = msy %r0, 524287(%r1,%r15)
1453
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x51 = msy %r0, 524287(%r15,%r1)
1454
+ 0xe3,0xf0,0x00,0x00,0x00,0x51 = msy %r15, 0
1455
+ 0xd2,0x00,0x00,0x00,0x00,0x00 = mvc 0(1), 0
1456
+ 0xd2,0x00,0x00,0x00,0x10,0x00 = mvc 0(1), 0(%r1)
1457
+ 0xd2,0x00,0x00,0x00,0xf0,0x00 = mvc 0(1), 0(%r15)
1458
+ 0xd2,0x00,0x00,0x00,0x0f,0xff = mvc 0(1), 4095
1459
+ 0xd2,0x00,0x00,0x00,0x1f,0xff = mvc 0(1), 4095(%r1)
1460
+ 0xd2,0x00,0x00,0x00,0xff,0xff = mvc 0(1), 4095(%r15)
1461
+ 0xd2,0x00,0x10,0x00,0x00,0x00 = mvc 0(1,%r1), 0
1462
+ 0xd2,0x00,0xf0,0x00,0x00,0x00 = mvc 0(1,%r15), 0
1463
+ 0xd2,0x00,0x1f,0xff,0x00,0x00 = mvc 4095(1,%r1), 0
1464
+ 0xd2,0x00,0xff,0xff,0x00,0x00 = mvc 4095(1,%r15), 0
1465
+ 0xd2,0xff,0x10,0x00,0x00,0x00 = mvc 0(256,%r1), 0
1466
+ 0xd2,0xff,0xf0,0x00,0x00,0x00 = mvc 0(256,%r15), 0
1467
+ 0xe5,0x48,0x00,0x00,0x00,0x00 = mvghi 0, 0
1468
+ 0xe5,0x48,0x0f,0xff,0x00,0x00 = mvghi 4095, 0
1469
+ 0xe5,0x48,0x00,0x00,0x80,0x00 = mvghi 0, -32768
1470
+ 0xe5,0x48,0x00,0x00,0xff,0xff = mvghi 0, -1
1471
+ 0xe5,0x48,0x00,0x00,0x00,0x00 = mvghi 0, 0
1472
+ 0xe5,0x48,0x00,0x00,0x00,0x01 = mvghi 0, 1
1473
+ 0xe5,0x48,0x00,0x00,0x7f,0xff = mvghi 0, 32767
1474
+ 0xe5,0x48,0x10,0x00,0x00,0x2a = mvghi 0(%r1), 42
1475
+ 0xe5,0x48,0xf0,0x00,0x00,0x2a = mvghi 0(%r15), 42
1476
+ 0xe5,0x48,0x1f,0xff,0x00,0x2a = mvghi 4095(%r1), 42
1477
+ 0xe5,0x48,0xff,0xff,0x00,0x2a = mvghi 4095(%r15), 42
1478
+ 0xe5,0x44,0x00,0x00,0x00,0x00 = mvhhi 0, 0
1479
+ 0xe5,0x44,0x0f,0xff,0x00,0x00 = mvhhi 4095, 0
1480
+ 0xe5,0x44,0x00,0x00,0x80,0x00 = mvhhi 0, -32768
1481
+ 0xe5,0x44,0x00,0x00,0xff,0xff = mvhhi 0, -1
1482
+ 0xe5,0x44,0x00,0x00,0x00,0x00 = mvhhi 0, 0
1483
+ 0xe5,0x44,0x00,0x00,0x00,0x01 = mvhhi 0, 1
1484
+ 0xe5,0x44,0x00,0x00,0x7f,0xff = mvhhi 0, 32767
1485
+ 0xe5,0x44,0x10,0x00,0x00,0x2a = mvhhi 0(%r1), 42
1486
+ 0xe5,0x44,0xf0,0x00,0x00,0x2a = mvhhi 0(%r15), 42
1487
+ 0xe5,0x44,0x1f,0xff,0x00,0x2a = mvhhi 4095(%r1), 42
1488
+ 0xe5,0x44,0xff,0xff,0x00,0x2a = mvhhi 4095(%r15), 42
1489
+ 0xe5,0x4c,0x00,0x00,0x00,0x00 = mvhi 0, 0
1490
+ 0xe5,0x4c,0x0f,0xff,0x00,0x00 = mvhi 4095, 0
1491
+ 0xe5,0x4c,0x00,0x00,0x80,0x00 = mvhi 0, -32768
1492
+ 0xe5,0x4c,0x00,0x00,0xff,0xff = mvhi 0, -1
1493
+ 0xe5,0x4c,0x00,0x00,0x00,0x00 = mvhi 0, 0
1494
+ 0xe5,0x4c,0x00,0x00,0x00,0x01 = mvhi 0, 1
1495
+ 0xe5,0x4c,0x00,0x00,0x7f,0xff = mvhi 0, 32767
1496
+ 0xe5,0x4c,0x10,0x00,0x00,0x2a = mvhi 0(%r1), 42
1497
+ 0xe5,0x4c,0xf0,0x00,0x00,0x2a = mvhi 0(%r15), 42
1498
+ 0xe5,0x4c,0x1f,0xff,0x00,0x2a = mvhi 4095(%r1), 42
1499
+ 0xe5,0x4c,0xff,0xff,0x00,0x2a = mvhi 4095(%r15), 42
1500
+ 0x92,0x00,0x00,0x00 = mvi 0, 0
1501
+ 0x92,0x00,0x0f,0xff = mvi 4095, 0
1502
+ 0x92,0xff,0x00,0x00 = mvi 0, 255
1503
+ 0x92,0x2a,0x10,0x00 = mvi 0(%r1), 42
1504
+ 0x92,0x2a,0xf0,0x00 = mvi 0(%r15), 42
1505
+ 0x92,0x2a,0x1f,0xff = mvi 4095(%r1), 42
1506
+ 0x92,0x2a,0xff,0xff = mvi 4095(%r15), 42
1507
+ 0xeb,0x00,0x00,0x00,0x80,0x52 = mviy -524288, 0
1508
+ 0xeb,0x00,0x0f,0xff,0xff,0x52 = mviy -1, 0
1509
+ 0xeb,0x00,0x00,0x00,0x00,0x52 = mviy 0, 0
1510
+ 0xeb,0x00,0x00,0x01,0x00,0x52 = mviy 1, 0
1511
+ 0xeb,0x00,0x0f,0xff,0x7f,0x52 = mviy 524287, 0
1512
+ 0xeb,0xff,0x00,0x00,0x00,0x52 = mviy 0, 255
1513
+ 0xeb,0x2a,0x10,0x00,0x00,0x52 = mviy 0(%r1), 42
1514
+ 0xeb,0x2a,0xf0,0x00,0x00,0x52 = mviy 0(%r15), 42
1515
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x52 = mviy 524287(%r1), 42
1516
+ 0xeb,0x2a,0xff,0xff,0x7f,0x52 = mviy 524287(%r15), 42
1517
+ 0xb2,0x55,0x00,0x00 = mvst %r0, %r0
1518
+ 0xb2,0x55,0x00,0x0f = mvst %r0, %r15
1519
+ 0xb2,0x55,0x00,0xf0 = mvst %r15, %r0
1520
+ 0xb2,0x55,0x00,0x78 = mvst %r7, %r8
1521
+ 0xb3,0x4c,0x00,0x00 = mxbr %f0, %f0
1522
+ 0xb3,0x4c,0x00,0x0d = mxbr %f0, %f13
1523
+ 0xb3,0x4c,0x00,0x85 = mxbr %f8, %f5
1524
+ 0xb3,0x4c,0x00,0xdd = mxbr %f13, %f13
1525
+ 0xed,0x00,0x00,0x00,0x00,0x07 = mxdb %f0, 0
1526
+ 0xed,0x00,0x0f,0xff,0x00,0x07 = mxdb %f0, 4095
1527
+ 0xed,0x00,0x10,0x00,0x00,0x07 = mxdb %f0, 0(%r1)
1528
+ 0xed,0x00,0xf0,0x00,0x00,0x07 = mxdb %f0, 0(%r15)
1529
+ 0xed,0x01,0xff,0xff,0x00,0x07 = mxdb %f0, 4095(%r1,%r15)
1530
+ 0xed,0x0f,0x1f,0xff,0x00,0x07 = mxdb %f0, 4095(%r15,%r1)
1531
+ 0xed,0xd0,0x00,0x00,0x00,0x07 = mxdb %f13, 0
1532
+ 0xb3,0x07,0x00,0x00 = mxdbr %f0, %f0
1533
+ 0xb3,0x07,0x00,0x0f = mxdbr %f0, %f15
1534
+ 0xb3,0x07,0x00,0x88 = mxdbr %f8, %f8
1535
+ 0xb3,0x07,0x00,0xd0 = mxdbr %f13, %f0
1536
+ 0x54,0x00,0x00,0x00 = n %r0, 0
1537
+ 0x54,0x00,0x0f,0xff = n %r0, 4095
1538
+ 0x54,0x00,0x10,0x00 = n %r0, 0(%r1)
1539
+ 0x54,0x00,0xf0,0x00 = n %r0, 0(%r15)
1540
+ 0x54,0x01,0xff,0xff = n %r0, 4095(%r1,%r15)
1541
+ 0x54,0x0f,0x1f,0xff = n %r0, 4095(%r15,%r1)
1542
+ 0x54,0xf0,0x00,0x00 = n %r15, 0
1543
+ 0xd4,0x00,0x00,0x00,0x00,0x00 = nc 0(1), 0
1544
+ 0xd4,0x00,0x00,0x00,0x10,0x00 = nc 0(1), 0(%r1)
1545
+ 0xd4,0x00,0x00,0x00,0xf0,0x00 = nc 0(1), 0(%r15)
1546
+ 0xd4,0x00,0x00,0x00,0x0f,0xff = nc 0(1), 4095
1547
+ 0xd4,0x00,0x00,0x00,0x1f,0xff = nc 0(1), 4095(%r1)
1548
+ 0xd4,0x00,0x00,0x00,0xff,0xff = nc 0(1), 4095(%r15)
1549
+ 0xd4,0x00,0x10,0x00,0x00,0x00 = nc 0(1,%r1), 0
1550
+ 0xd4,0x00,0xf0,0x00,0x00,0x00 = nc 0(1,%r15), 0
1551
+ 0xd4,0x00,0x1f,0xff,0x00,0x00 = nc 4095(1,%r1), 0
1552
+ 0xd4,0x00,0xff,0xff,0x00,0x00 = nc 4095(1,%r15), 0
1553
+ 0xd4,0xff,0x10,0x00,0x00,0x00 = nc 0(256,%r1), 0
1554
+ 0xd4,0xff,0xf0,0x00,0x00,0x00 = nc 0(256,%r15), 0
1555
+ 0xe3,0x00,0x00,0x00,0x80,0x80 = ng %r0, -524288
1556
+ 0xe3,0x00,0x0f,0xff,0xff,0x80 = ng %r0, -1
1557
+ 0xe3,0x00,0x00,0x00,0x00,0x80 = ng %r0, 0
1558
+ 0xe3,0x00,0x00,0x01,0x00,0x80 = ng %r0, 1
1559
+ 0xe3,0x00,0x0f,0xff,0x7f,0x80 = ng %r0, 524287
1560
+ 0xe3,0x00,0x10,0x00,0x00,0x80 = ng %r0, 0(%r1)
1561
+ 0xe3,0x00,0xf0,0x00,0x00,0x80 = ng %r0, 0(%r15)
1562
+ 0xe3,0x01,0xff,0xff,0x7f,0x80 = ng %r0, 524287(%r1,%r15)
1563
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x80 = ng %r0, 524287(%r15,%r1)
1564
+ 0xe3,0xf0,0x00,0x00,0x00,0x80 = ng %r15, 0
1565
+ 0xb9,0x80,0x00,0x00 = ngr %r0, %r0
1566
+ 0xb9,0x80,0x00,0x0f = ngr %r0, %r15
1567
+ 0xb9,0x80,0x00,0xf0 = ngr %r15, %r0
1568
+ 0xb9,0x80,0x00,0x78 = ngr %r7, %r8
1569
+ 0x94,0x00,0x00,0x00 = ni 0, 0
1570
+ 0x94,0x00,0x0f,0xff = ni 4095, 0
1571
+ 0x94,0xff,0x00,0x00 = ni 0, 255
1572
+ 0x94,0x2a,0x10,0x00 = ni 0(%r1), 42
1573
+ 0x94,0x2a,0xf0,0x00 = ni 0(%r15), 42
1574
+ 0x94,0x2a,0x1f,0xff = ni 4095(%r1), 42
1575
+ 0x94,0x2a,0xff,0xff = ni 4095(%r15), 42
1576
+ 0xc0,0x0a,0x00,0x00,0x00,0x00 = nihf %r0, 0
1577
+ 0xc0,0x0a,0xff,0xff,0xff,0xff = nihf %r0, 4294967295
1578
+ 0xc0,0xfa,0x00,0x00,0x00,0x00 = nihf %r15, 0
1579
+ 0xa5,0x04,0x00,0x00 = nihh %r0, 0
1580
+ 0xa5,0x04,0x80,0x00 = nihh %r0, 32768
1581
+ 0xa5,0x04,0xff,0xff = nihh %r0, 65535
1582
+ 0xa5,0xf4,0x00,0x00 = nihh %r15, 0
1583
+ 0xa5,0x05,0x00,0x00 = nihl %r0, 0
1584
+ 0xa5,0x05,0x80,0x00 = nihl %r0, 32768
1585
+ 0xa5,0x05,0xff,0xff = nihl %r0, 65535
1586
+ 0xa5,0xf5,0x00,0x00 = nihl %r15, 0
1587
+ 0xc0,0x0b,0x00,0x00,0x00,0x00 = nilf %r0, 0
1588
+ 0xc0,0x0b,0xff,0xff,0xff,0xff = nilf %r0, 4294967295
1589
+ 0xc0,0xfb,0x00,0x00,0x00,0x00 = nilf %r15, 0
1590
+ 0xa5,0x06,0x00,0x00 = nilh %r0, 0
1591
+ 0xa5,0x06,0x80,0x00 = nilh %r0, 32768
1592
+ 0xa5,0x06,0xff,0xff = nilh %r0, 65535
1593
+ 0xa5,0xf6,0x00,0x00 = nilh %r15, 0
1594
+ 0xa5,0x07,0x00,0x00 = nill %r0, 0
1595
+ 0xa5,0x07,0x80,0x00 = nill %r0, 32768
1596
+ 0xa5,0x07,0xff,0xff = nill %r0, 65535
1597
+ 0xa5,0xf7,0x00,0x00 = nill %r15, 0
1598
+ 0xeb,0x00,0x00,0x00,0x80,0x54 = niy -524288, 0
1599
+ 0xeb,0x00,0x0f,0xff,0xff,0x54 = niy -1, 0
1600
+ 0xeb,0x00,0x00,0x00,0x00,0x54 = niy 0, 0
1601
+ 0xeb,0x00,0x00,0x01,0x00,0x54 = niy 1, 0
1602
+ 0xeb,0x00,0x0f,0xff,0x7f,0x54 = niy 524287, 0
1603
+ 0xeb,0xff,0x00,0x00,0x00,0x54 = niy 0, 255
1604
+ 0xeb,0x2a,0x10,0x00,0x00,0x54 = niy 0(%r1), 42
1605
+ 0xeb,0x2a,0xf0,0x00,0x00,0x54 = niy 0(%r15), 42
1606
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x54 = niy 524287(%r1), 42
1607
+ 0xeb,0x2a,0xff,0xff,0x7f,0x54 = niy 524287(%r15), 42
1608
+ 0x14,0x00 = nr %r0, %r0
1609
+ 0x14,0x0f = nr %r0, %r15
1610
+ 0x14,0xf0 = nr %r15, %r0
1611
+ 0x14,0x78 = nr %r7, %r8
1612
+ 0xe3,0x00,0x00,0x00,0x80,0x54 = ny %r0, -524288
1613
+ 0xe3,0x00,0x0f,0xff,0xff,0x54 = ny %r0, -1
1614
+ 0xe3,0x00,0x00,0x00,0x00,0x54 = ny %r0, 0
1615
+ 0xe3,0x00,0x00,0x01,0x00,0x54 = ny %r0, 1
1616
+ 0xe3,0x00,0x0f,0xff,0x7f,0x54 = ny %r0, 524287
1617
+ 0xe3,0x00,0x10,0x00,0x00,0x54 = ny %r0, 0(%r1)
1618
+ 0xe3,0x00,0xf0,0x00,0x00,0x54 = ny %r0, 0(%r15)
1619
+ 0xe3,0x01,0xff,0xff,0x7f,0x54 = ny %r0, 524287(%r1,%r15)
1620
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x54 = ny %r0, 524287(%r15,%r1)
1621
+ 0xe3,0xf0,0x00,0x00,0x00,0x54 = ny %r15, 0
1622
+ 0x56,0x00,0x00,0x00 = o %r0, 0
1623
+ 0x56,0x00,0x0f,0xff = o %r0, 4095
1624
+ 0x56,0x00,0x10,0x00 = o %r0, 0(%r1)
1625
+ 0x56,0x00,0xf0,0x00 = o %r0, 0(%r15)
1626
+ 0x56,0x01,0xff,0xff = o %r0, 4095(%r1,%r15)
1627
+ 0x56,0x0f,0x1f,0xff = o %r0, 4095(%r15,%r1)
1628
+ 0x56,0xf0,0x00,0x00 = o %r15, 0
1629
+ 0xd6,0x00,0x00,0x00,0x00,0x00 = oc 0(1), 0
1630
+ 0xd6,0x00,0x00,0x00,0x10,0x00 = oc 0(1), 0(%r1)
1631
+ 0xd6,0x00,0x00,0x00,0xf0,0x00 = oc 0(1), 0(%r15)
1632
+ 0xd6,0x00,0x00,0x00,0x0f,0xff = oc 0(1), 4095
1633
+ 0xd6,0x00,0x00,0x00,0x1f,0xff = oc 0(1), 4095(%r1)
1634
+ 0xd6,0x00,0x00,0x00,0xff,0xff = oc 0(1), 4095(%r15)
1635
+ 0xd6,0x00,0x10,0x00,0x00,0x00 = oc 0(1,%r1), 0
1636
+ 0xd6,0x00,0xf0,0x00,0x00,0x00 = oc 0(1,%r15), 0
1637
+ 0xd6,0x00,0x1f,0xff,0x00,0x00 = oc 4095(1,%r1), 0
1638
+ 0xd6,0x00,0xff,0xff,0x00,0x00 = oc 4095(1,%r15), 0
1639
+ 0xd6,0xff,0x10,0x00,0x00,0x00 = oc 0(256,%r1), 0
1640
+ 0xd6,0xff,0xf0,0x00,0x00,0x00 = oc 0(256,%r15), 0
1641
+ 0xe3,0x00,0x00,0x00,0x80,0x81 = og %r0, -524288
1642
+ 0xe3,0x00,0x0f,0xff,0xff,0x81 = og %r0, -1
1643
+ 0xe3,0x00,0x00,0x00,0x00,0x81 = og %r0, 0
1644
+ 0xe3,0x00,0x00,0x01,0x00,0x81 = og %r0, 1
1645
+ 0xe3,0x00,0x0f,0xff,0x7f,0x81 = og %r0, 524287
1646
+ 0xe3,0x00,0x10,0x00,0x00,0x81 = og %r0, 0(%r1)
1647
+ 0xe3,0x00,0xf0,0x00,0x00,0x81 = og %r0, 0(%r15)
1648
+ 0xe3,0x01,0xff,0xff,0x7f,0x81 = og %r0, 524287(%r1,%r15)
1649
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x81 = og %r0, 524287(%r15,%r1)
1650
+ 0xe3,0xf0,0x00,0x00,0x00,0x81 = og %r15, 0
1651
+ 0xb9,0x81,0x00,0x00 = ogr %r0, %r0
1652
+ 0xb9,0x81,0x00,0x0f = ogr %r0, %r15
1653
+ 0xb9,0x81,0x00,0xf0 = ogr %r15, %r0
1654
+ 0xb9,0x81,0x00,0x78 = ogr %r7, %r8
1655
+ 0x96,0x00,0x00,0x00 = oi 0, 0
1656
+ 0x96,0x00,0x0f,0xff = oi 4095, 0
1657
+ 0x96,0xff,0x00,0x00 = oi 0, 255
1658
+ 0x96,0x2a,0x10,0x00 = oi 0(%r1), 42
1659
+ 0x96,0x2a,0xf0,0x00 = oi 0(%r15), 42
1660
+ 0x96,0x2a,0x1f,0xff = oi 4095(%r1), 42
1661
+ 0x96,0x2a,0xff,0xff = oi 4095(%r15), 42
1662
+ 0xc0,0x0c,0x00,0x00,0x00,0x00 = oihf %r0, 0
1663
+ 0xc0,0x0c,0xff,0xff,0xff,0xff = oihf %r0, 4294967295
1664
+ 0xc0,0xfc,0x00,0x00,0x00,0x00 = oihf %r15, 0
1665
+ 0xa5,0x08,0x00,0x00 = oihh %r0, 0
1666
+ 0xa5,0x08,0x80,0x00 = oihh %r0, 32768
1667
+ 0xa5,0x08,0xff,0xff = oihh %r0, 65535
1668
+ 0xa5,0xf8,0x00,0x00 = oihh %r15, 0
1669
+ 0xa5,0x09,0x00,0x00 = oihl %r0, 0
1670
+ 0xa5,0x09,0x80,0x00 = oihl %r0, 32768
1671
+ 0xa5,0x09,0xff,0xff = oihl %r0, 65535
1672
+ 0xa5,0xf9,0x00,0x00 = oihl %r15, 0
1673
+ 0xc0,0x0d,0x00,0x00,0x00,0x00 = oilf %r0, 0
1674
+ 0xc0,0x0d,0xff,0xff,0xff,0xff = oilf %r0, 4294967295
1675
+ 0xc0,0xfd,0x00,0x00,0x00,0x00 = oilf %r15, 0
1676
+ 0xa5,0x0a,0x00,0x00 = oilh %r0, 0
1677
+ 0xa5,0x0a,0x80,0x00 = oilh %r0, 32768
1678
+ 0xa5,0x0a,0xff,0xff = oilh %r0, 65535
1679
+ 0xa5,0xfa,0x00,0x00 = oilh %r15, 0
1680
+ 0xa5,0x0b,0x00,0x00 = oill %r0, 0
1681
+ 0xa5,0x0b,0x80,0x00 = oill %r0, 32768
1682
+ 0xa5,0x0b,0xff,0xff = oill %r0, 65535
1683
+ 0xa5,0xfb,0x00,0x00 = oill %r15, 0
1684
+ 0xeb,0x00,0x00,0x00,0x80,0x56 = oiy -524288, 0
1685
+ 0xeb,0x00,0x0f,0xff,0xff,0x56 = oiy -1, 0
1686
+ 0xeb,0x00,0x00,0x00,0x00,0x56 = oiy 0, 0
1687
+ 0xeb,0x00,0x00,0x01,0x00,0x56 = oiy 1, 0
1688
+ 0xeb,0x00,0x0f,0xff,0x7f,0x56 = oiy 524287, 0
1689
+ 0xeb,0xff,0x00,0x00,0x00,0x56 = oiy 0, 255
1690
+ 0xeb,0x2a,0x10,0x00,0x00,0x56 = oiy 0(%r1), 42
1691
+ 0xeb,0x2a,0xf0,0x00,0x00,0x56 = oiy 0(%r15), 42
1692
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x56 = oiy 524287(%r1), 42
1693
+ 0xeb,0x2a,0xff,0xff,0x7f,0x56 = oiy 524287(%r15), 42
1694
+ 0x16,0x00 = or %r0, %r0
1695
+ 0x16,0x0f = or %r0, %r15
1696
+ 0x16,0xf0 = or %r15, %r0
1697
+ 0x16,0x78 = or %r7, %r8
1698
+ 0xe3,0x00,0x00,0x00,0x80,0x56 = oy %r0, -524288
1699
+ 0xe3,0x00,0x0f,0xff,0xff,0x56 = oy %r0, -1
1700
+ 0xe3,0x00,0x00,0x00,0x00,0x56 = oy %r0, 0
1701
+ 0xe3,0x00,0x00,0x01,0x00,0x56 = oy %r0, 1
1702
+ 0xe3,0x00,0x0f,0xff,0x7f,0x56 = oy %r0, 524287
1703
+ 0xe3,0x00,0x10,0x00,0x00,0x56 = oy %r0, 0(%r1)
1704
+ 0xe3,0x00,0xf0,0x00,0x00,0x56 = oy %r0, 0(%r15)
1705
+ 0xe3,0x01,0xff,0xff,0x7f,0x56 = oy %r0, 524287(%r1,%r15)
1706
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x56 = oy %r0, 524287(%r15,%r1)
1707
+ 0xe3,0xf0,0x00,0x00,0x00,0x56 = oy %r15, 0
1708
+ 0xe3,0x00,0x00,0x00,0x80,0x36 = pfd 0, -524288
1709
+ 0xe3,0x00,0x0f,0xff,0xff,0x36 = pfd 0, -1
1710
+ 0xe3,0x00,0x00,0x00,0x00,0x36 = pfd 0, 0
1711
+ 0xe3,0x00,0x00,0x01,0x00,0x36 = pfd 0, 1
1712
+ 0xe3,0x00,0x0f,0xff,0x7f,0x36 = pfd 0, 524287
1713
+ 0xe3,0x00,0x10,0x00,0x00,0x36 = pfd 0, 0(%r1)
1714
+ 0xe3,0x00,0xf0,0x00,0x00,0x36 = pfd 0, 0(%r15)
1715
+ 0xe3,0x01,0xff,0xff,0x7f,0x36 = pfd 0, 524287(%r1,%r15)
1716
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x36 = pfd 0, 524287(%r15,%r1)
1717
+ 0xe3,0xf0,0x00,0x00,0x00,0x36 = pfd 15, 0
1718
+ 0xec,0x00,0x00,0x00,0x00,0x55 = risbg %r0, %r0, 0, 0, 0
1719
+ 0xec,0x00,0x00,0x00,0x3f,0x55 = risbg %r0, %r0, 0, 0, 63
1720
+ 0xec,0x00,0x00,0xff,0x00,0x55 = risbg %r0, %r0, 0, 255, 0
1721
+ 0xec,0x00,0xff,0x00,0x00,0x55 = risbg %r0, %r0, 255, 0, 0
1722
+ 0xec,0x0f,0x00,0x00,0x00,0x55 = risbg %r0, %r15, 0, 0, 0
1723
+ 0xec,0xf0,0x00,0x00,0x00,0x55 = risbg %r15, %r0, 0, 0, 0
1724
+ 0xec,0x45,0x06,0x07,0x08,0x55 = risbg %r4, %r5, 6, 7, 8
1725
+ 0xec,0x00,0x00,0x00,0x00,0x54 = rnsbg %r0, %r0, 0, 0, 0
1726
+ 0xec,0x00,0x00,0x00,0x3f,0x54 = rnsbg %r0, %r0, 0, 0, 63
1727
+ 0xec,0x00,0x00,0xff,0x00,0x54 = rnsbg %r0, %r0, 0, 255, 0
1728
+ 0xec,0x00,0xff,0x00,0x00,0x54 = rnsbg %r0, %r0, 255, 0, 0
1729
+ 0xec,0x0f,0x00,0x00,0x00,0x54 = rnsbg %r0, %r15, 0, 0, 0
1730
+ 0xec,0xf0,0x00,0x00,0x00,0x54 = rnsbg %r15, %r0, 0, 0, 0
1731
+ 0xec,0x45,0x06,0x07,0x08,0x54 = rnsbg %r4, %r5, 6, 7, 8
1732
+ 0xec,0x00,0x00,0x00,0x00,0x56 = rosbg %r0, %r0, 0, 0, 0
1733
+ 0xec,0x00,0x00,0x00,0x3f,0x56 = rosbg %r0, %r0, 0, 0, 63
1734
+ 0xec,0x00,0x00,0xff,0x00,0x56 = rosbg %r0, %r0, 0, 255, 0
1735
+ 0xec,0x00,0xff,0x00,0x00,0x56 = rosbg %r0, %r0, 255, 0, 0
1736
+ 0xec,0x0f,0x00,0x00,0x00,0x56 = rosbg %r0, %r15, 0, 0, 0
1737
+ 0xec,0xf0,0x00,0x00,0x00,0x56 = rosbg %r15, %r0, 0, 0, 0
1738
+ 0xec,0x45,0x06,0x07,0x08,0x56 = rosbg %r4, %r5, 6, 7, 8
1739
+ 0xec,0x00,0x00,0x00,0x00,0x57 = rxsbg %r0, %r0, 0, 0, 0
1740
+ 0xec,0x00,0x00,0x00,0x3f,0x57 = rxsbg %r0, %r0, 0, 0, 63
1741
+ 0xec,0x00,0x00,0xff,0x00,0x57 = rxsbg %r0, %r0, 0, 255, 0
1742
+ 0xec,0x00,0xff,0x00,0x00,0x57 = rxsbg %r0, %r0, 255, 0, 0
1743
+ 0xec,0x0f,0x00,0x00,0x00,0x57 = rxsbg %r0, %r15, 0, 0, 0
1744
+ 0xec,0xf0,0x00,0x00,0x00,0x57 = rxsbg %r15, %r0, 0, 0, 0
1745
+ 0xec,0x45,0x06,0x07,0x08,0x57 = rxsbg %r4, %r5, 6, 7, 8
1746
+ 0xeb,0x00,0x00,0x00,0x00,0x1d = rll %r0, %r0, 0
1747
+ 0xeb,0xf1,0x00,0x00,0x00,0x1d = rll %r15, %r1, 0
1748
+ 0xeb,0x1f,0x00,0x00,0x00,0x1d = rll %r1, %r15, 0
1749
+ 0xeb,0xff,0x00,0x00,0x00,0x1d = rll %r15, %r15, 0
1750
+ 0xeb,0x00,0x00,0x00,0x80,0x1d = rll %r0, %r0, -524288
1751
+ 0xeb,0x00,0x0f,0xff,0xff,0x1d = rll %r0, %r0, -1
1752
+ 0xeb,0x00,0x00,0x01,0x00,0x1d = rll %r0, %r0, 1
1753
+ 0xeb,0x00,0x0f,0xff,0x7f,0x1d = rll %r0, %r0, 524287
1754
+ 0xeb,0x00,0x10,0x00,0x00,0x1d = rll %r0, %r0, 0(%r1)
1755
+ 0xeb,0x00,0xf0,0x00,0x00,0x1d = rll %r0, %r0, 0(%r15)
1756
+ 0xeb,0x00,0x1f,0xff,0x7f,0x1d = rll %r0, %r0, 524287(%r1)
1757
+ 0xeb,0x00,0xff,0xff,0x7f,0x1d = rll %r0, %r0, 524287(%r15)
1758
+ 0xeb,0x00,0x00,0x00,0x00,0x1c = rllg %r0, %r0, 0
1759
+ 0xeb,0xf1,0x00,0x00,0x00,0x1c = rllg %r15, %r1, 0
1760
+ 0xeb,0x1f,0x00,0x00,0x00,0x1c = rllg %r1, %r15, 0
1761
+ 0xeb,0xff,0x00,0x00,0x00,0x1c = rllg %r15, %r15, 0
1762
+ 0xeb,0x00,0x00,0x00,0x80,0x1c = rllg %r0, %r0, -524288
1763
+ 0xeb,0x00,0x0f,0xff,0xff,0x1c = rllg %r0, %r0, -1
1764
+ 0xeb,0x00,0x00,0x01,0x00,0x1c = rllg %r0, %r0, 1
1765
+ 0xeb,0x00,0x0f,0xff,0x7f,0x1c = rllg %r0, %r0, 524287
1766
+ 0xeb,0x00,0x10,0x00,0x00,0x1c = rllg %r0, %r0, 0(%r1)
1767
+ 0xeb,0x00,0xf0,0x00,0x00,0x1c = rllg %r0, %r0, 0(%r15)
1768
+ 0xeb,0x00,0x1f,0xff,0x7f,0x1c = rllg %r0, %r0, 524287(%r1)
1769
+ 0xeb,0x00,0xff,0xff,0x7f,0x1c = rllg %r0, %r0, 524287(%r15)
1770
+ 0x5b,0x00,0x00,0x00 = s %r0, 0
1771
+ 0x5b,0x00,0x0f,0xff = s %r0, 4095
1772
+ 0x5b,0x00,0x10,0x00 = s %r0, 0(%r1)
1773
+ 0x5b,0x00,0xf0,0x00 = s %r0, 0(%r15)
1774
+ 0x5b,0x01,0xff,0xff = s %r0, 4095(%r1,%r15)
1775
+ 0x5b,0x0f,0x1f,0xff = s %r0, 4095(%r15,%r1)
1776
+ 0x5b,0xf0,0x00,0x00 = s %r15, 0
1777
+ 0xed,0x00,0x00,0x00,0x00,0x1b = sdb %f0, 0
1778
+ 0xed,0x00,0x0f,0xff,0x00,0x1b = sdb %f0, 4095
1779
+ 0xed,0x00,0x10,0x00,0x00,0x1b = sdb %f0, 0(%r1)
1780
+ 0xed,0x00,0xf0,0x00,0x00,0x1b = sdb %f0, 0(%r15)
1781
+ 0xed,0x01,0xff,0xff,0x00,0x1b = sdb %f0, 4095(%r1,%r15)
1782
+ 0xed,0x0f,0x1f,0xff,0x00,0x1b = sdb %f0, 4095(%r15,%r1)
1783
+ 0xed,0xf0,0x00,0x00,0x00,0x1b = sdb %f15, 0
1784
+ 0xb3,0x1b,0x00,0x00 = sdbr %f0, %f0
1785
+ 0xb3,0x1b,0x00,0x0f = sdbr %f0, %f15
1786
+ 0xb3,0x1b,0x00,0x78 = sdbr %f7, %f8
1787
+ 0xb3,0x1b,0x00,0xf0 = sdbr %f15, %f0
1788
+ 0xed,0x00,0x00,0x00,0x00,0x0b = seb %f0, 0
1789
+ 0xed,0x00,0x0f,0xff,0x00,0x0b = seb %f0, 4095
1790
+ 0xed,0x00,0x10,0x00,0x00,0x0b = seb %f0, 0(%r1)
1791
+ 0xed,0x00,0xf0,0x00,0x00,0x0b = seb %f0, 0(%r15)
1792
+ 0xed,0x01,0xff,0xff,0x00,0x0b = seb %f0, 4095(%r1,%r15)
1793
+ 0xed,0x0f,0x1f,0xff,0x00,0x0b = seb %f0, 4095(%r15,%r1)
1794
+ 0xed,0xf0,0x00,0x00,0x00,0x0b = seb %f15, 0
1795
+ 0xb3,0x0b,0x00,0x00 = sebr %f0, %f0
1796
+ 0xb3,0x0b,0x00,0x0f = sebr %f0, %f15
1797
+ 0xb3,0x0b,0x00,0x78 = sebr %f7, %f8
1798
+ 0xb3,0x0b,0x00,0xf0 = sebr %f15, %f0
1799
+ 0xe3,0x00,0x00,0x00,0x80,0x09 = sg %r0, -524288
1800
+ 0xe3,0x00,0x0f,0xff,0xff,0x09 = sg %r0, -1
1801
+ 0xe3,0x00,0x00,0x00,0x00,0x09 = sg %r0, 0
1802
+ 0xe3,0x00,0x00,0x01,0x00,0x09 = sg %r0, 1
1803
+ 0xe3,0x00,0x0f,0xff,0x7f,0x09 = sg %r0, 524287
1804
+ 0xe3,0x00,0x10,0x00,0x00,0x09 = sg %r0, 0(%r1)
1805
+ 0xe3,0x00,0xf0,0x00,0x00,0x09 = sg %r0, 0(%r15)
1806
+ 0xe3,0x01,0xff,0xff,0x7f,0x09 = sg %r0, 524287(%r1,%r15)
1807
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x09 = sg %r0, 524287(%r15,%r1)
1808
+ 0xe3,0xf0,0x00,0x00,0x00,0x09 = sg %r15, 0
1809
+ 0xe3,0x00,0x00,0x00,0x80,0x19 = sgf %r0, -524288
1810
+ 0xe3,0x00,0x0f,0xff,0xff,0x19 = sgf %r0, -1
1811
+ 0xe3,0x00,0x00,0x00,0x00,0x19 = sgf %r0, 0
1812
+ 0xe3,0x00,0x00,0x01,0x00,0x19 = sgf %r0, 1
1813
+ 0xe3,0x00,0x0f,0xff,0x7f,0x19 = sgf %r0, 524287
1814
+ 0xe3,0x00,0x10,0x00,0x00,0x19 = sgf %r0, 0(%r1)
1815
+ 0xe3,0x00,0xf0,0x00,0x00,0x19 = sgf %r0, 0(%r15)
1816
+ 0xe3,0x01,0xff,0xff,0x7f,0x19 = sgf %r0, 524287(%r1,%r15)
1817
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x19 = sgf %r0, 524287(%r15,%r1)
1818
+ 0xe3,0xf0,0x00,0x00,0x00,0x19 = sgf %r15, 0
1819
+ 0xb9,0x19,0x00,0x00 = sgfr %r0, %r0
1820
+ 0xb9,0x19,0x00,0x0f = sgfr %r0, %r15
1821
+ 0xb9,0x19,0x00,0xf0 = sgfr %r15, %r0
1822
+ 0xb9,0x19,0x00,0x78 = sgfr %r7, %r8
1823
+ 0xb9,0x09,0x00,0x00 = sgr %r0, %r0
1824
+ 0xb9,0x09,0x00,0x0f = sgr %r0, %r15
1825
+ 0xb9,0x09,0x00,0xf0 = sgr %r15, %r0
1826
+ 0xb9,0x09,0x00,0x78 = sgr %r7, %r8
1827
+ 0x4b,0x00,0x00,0x00 = sh %r0, 0
1828
+ 0x4b,0x00,0x0f,0xff = sh %r0, 4095
1829
+ 0x4b,0x00,0x10,0x00 = sh %r0, 0(%r1)
1830
+ 0x4b,0x00,0xf0,0x00 = sh %r0, 0(%r15)
1831
+ 0x4b,0x01,0xff,0xff = sh %r0, 4095(%r1,%r15)
1832
+ 0x4b,0x0f,0x1f,0xff = sh %r0, 4095(%r15,%r1)
1833
+ 0x4b,0xf0,0x00,0x00 = sh %r15, 0
1834
+ 0xe3,0x00,0x00,0x00,0x80,0x7b = shy %r0, -524288
1835
+ 0xe3,0x00,0x0f,0xff,0xff,0x7b = shy %r0, -1
1836
+ 0xe3,0x00,0x00,0x00,0x00,0x7b = shy %r0, 0
1837
+ 0xe3,0x00,0x00,0x01,0x00,0x7b = shy %r0, 1
1838
+ 0xe3,0x00,0x0f,0xff,0x7f,0x7b = shy %r0, 524287
1839
+ 0xe3,0x00,0x10,0x00,0x00,0x7b = shy %r0, 0(%r1)
1840
+ 0xe3,0x00,0xf0,0x00,0x00,0x7b = shy %r0, 0(%r15)
1841
+ 0xe3,0x01,0xff,0xff,0x7f,0x7b = shy %r0, 524287(%r1,%r15)
1842
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x7b = shy %r0, 524287(%r15,%r1)
1843
+ 0xe3,0xf0,0x00,0x00,0x00,0x7b = shy %r15, 0
1844
+ 0x5f,0x00,0x00,0x00 = sl %r0, 0
1845
+ 0x5f,0x00,0x0f,0xff = sl %r0, 4095
1846
+ 0x5f,0x00,0x10,0x00 = sl %r0, 0(%r1)
1847
+ 0x5f,0x00,0xf0,0x00 = sl %r0, 0(%r15)
1848
+ 0x5f,0x01,0xff,0xff = sl %r0, 4095(%r1,%r15)
1849
+ 0x5f,0x0f,0x1f,0xff = sl %r0, 4095(%r15,%r1)
1850
+ 0x5f,0xf0,0x00,0x00 = sl %r15, 0
1851
+ 0xe3,0x00,0x00,0x00,0x80,0x99 = slb %r0, -524288
1852
+ 0xe3,0x00,0x0f,0xff,0xff,0x99 = slb %r0, -1
1853
+ 0xe3,0x00,0x00,0x00,0x00,0x99 = slb %r0, 0
1854
+ 0xe3,0x00,0x00,0x01,0x00,0x99 = slb %r0, 1
1855
+ 0xe3,0x00,0x0f,0xff,0x7f,0x99 = slb %r0, 524287
1856
+ 0xe3,0x00,0x10,0x00,0x00,0x99 = slb %r0, 0(%r1)
1857
+ 0xe3,0x00,0xf0,0x00,0x00,0x99 = slb %r0, 0(%r15)
1858
+ 0xe3,0x01,0xff,0xff,0x7f,0x99 = slb %r0, 524287(%r1,%r15)
1859
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x99 = slb %r0, 524287(%r15,%r1)
1860
+ 0xe3,0xf0,0x00,0x00,0x00,0x99 = slb %r15, 0
1861
+ 0xe3,0x00,0x00,0x00,0x80,0x89 = slbg %r0, -524288
1862
+ 0xe3,0x00,0x0f,0xff,0xff,0x89 = slbg %r0, -1
1863
+ 0xe3,0x00,0x00,0x00,0x00,0x89 = slbg %r0, 0
1864
+ 0xe3,0x00,0x00,0x01,0x00,0x89 = slbg %r0, 1
1865
+ 0xe3,0x00,0x0f,0xff,0x7f,0x89 = slbg %r0, 524287
1866
+ 0xe3,0x00,0x10,0x00,0x00,0x89 = slbg %r0, 0(%r1)
1867
+ 0xe3,0x00,0xf0,0x00,0x00,0x89 = slbg %r0, 0(%r15)
1868
+ 0xe3,0x01,0xff,0xff,0x7f,0x89 = slbg %r0, 524287(%r1,%r15)
1869
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x89 = slbg %r0, 524287(%r15,%r1)
1870
+ 0xe3,0xf0,0x00,0x00,0x00,0x89 = slbg %r15, 0
1871
+ 0xb9,0x89,0x00,0x00 = slbgr %r0, %r0
1872
+ 0xb9,0x89,0x00,0x0f = slbgr %r0, %r15
1873
+ 0xb9,0x89,0x00,0xf0 = slbgr %r15, %r0
1874
+ 0xb9,0x89,0x00,0x78 = slbgr %r7, %r8
1875
+ 0xb9,0x99,0x00,0x00 = slbr %r0, %r0
1876
+ 0xb9,0x99,0x00,0x0f = slbr %r0, %r15
1877
+ 0xb9,0x99,0x00,0xf0 = slbr %r15, %r0
1878
+ 0xb9,0x99,0x00,0x78 = slbr %r7, %r8
1879
+ 0xc2,0x05,0x00,0x00,0x00,0x00 = slfi %r0, 0
1880
+ 0xc2,0x05,0xff,0xff,0xff,0xff = slfi %r0, 4294967295
1881
+ 0xc2,0xf5,0x00,0x00,0x00,0x00 = slfi %r15, 0
1882
+ 0xe3,0x00,0x00,0x00,0x80,0x0b = slg %r0, -524288
1883
+ 0xe3,0x00,0x0f,0xff,0xff,0x0b = slg %r0, -1
1884
+ 0xe3,0x00,0x00,0x00,0x00,0x0b = slg %r0, 0
1885
+ 0xe3,0x00,0x00,0x01,0x00,0x0b = slg %r0, 1
1886
+ 0xe3,0x00,0x0f,0xff,0x7f,0x0b = slg %r0, 524287
1887
+ 0xe3,0x00,0x10,0x00,0x00,0x0b = slg %r0, 0(%r1)
1888
+ 0xe3,0x00,0xf0,0x00,0x00,0x0b = slg %r0, 0(%r15)
1889
+ 0xe3,0x01,0xff,0xff,0x7f,0x0b = slg %r0, 524287(%r1,%r15)
1890
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x0b = slg %r0, 524287(%r15,%r1)
1891
+ 0xe3,0xf0,0x00,0x00,0x00,0x0b = slg %r15, 0
1892
+ 0xe3,0x00,0x00,0x00,0x80,0x1b = slgf %r0, -524288
1893
+ 0xe3,0x00,0x0f,0xff,0xff,0x1b = slgf %r0, -1
1894
+ 0xe3,0x00,0x00,0x00,0x00,0x1b = slgf %r0, 0
1895
+ 0xe3,0x00,0x00,0x01,0x00,0x1b = slgf %r0, 1
1896
+ 0xe3,0x00,0x0f,0xff,0x7f,0x1b = slgf %r0, 524287
1897
+ 0xe3,0x00,0x10,0x00,0x00,0x1b = slgf %r0, 0(%r1)
1898
+ 0xe3,0x00,0xf0,0x00,0x00,0x1b = slgf %r0, 0(%r15)
1899
+ 0xe3,0x01,0xff,0xff,0x7f,0x1b = slgf %r0, 524287(%r1,%r15)
1900
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x1b = slgf %r0, 524287(%r15,%r1)
1901
+ 0xe3,0xf0,0x00,0x00,0x00,0x1b = slgf %r15, 0
1902
+ 0xc2,0x04,0x00,0x00,0x00,0x00 = slgfi %r0, 0
1903
+ 0xc2,0x04,0xff,0xff,0xff,0xff = slgfi %r0, 4294967295
1904
+ 0xc2,0xf4,0x00,0x00,0x00,0x00 = slgfi %r15, 0
1905
+ 0xb9,0x1b,0x00,0x00 = slgfr %r0, %r0
1906
+ 0xb9,0x1b,0x00,0x0f = slgfr %r0, %r15
1907
+ 0xb9,0x1b,0x00,0xf0 = slgfr %r15, %r0
1908
+ 0xb9,0x1b,0x00,0x78 = slgfr %r7, %r8
1909
+ 0xb9,0x0b,0x00,0x00 = slgr %r0, %r0
1910
+ 0xb9,0x0b,0x00,0x0f = slgr %r0, %r15
1911
+ 0xb9,0x0b,0x00,0xf0 = slgr %r15, %r0
1912
+ 0xb9,0x0b,0x00,0x78 = slgr %r7, %r8
1913
+ 0x89,0x00,0x00,0x00 = sll %r0, 0
1914
+ 0x89,0x70,0x00,0x00 = sll %r7, 0
1915
+ 0x89,0xf0,0x00,0x00 = sll %r15, 0
1916
+ 0x89,0x00,0x0f,0xff = sll %r0, 4095
1917
+ 0x89,0x00,0x10,0x00 = sll %r0, 0(%r1)
1918
+ 0x89,0x00,0xf0,0x00 = sll %r0, 0(%r15)
1919
+ 0x89,0x00,0x1f,0xff = sll %r0, 4095(%r1)
1920
+ 0x89,0x00,0xff,0xff = sll %r0, 4095(%r15)
1921
+ 0xeb,0x00,0x00,0x00,0x00,0x0d = sllg %r0, %r0, 0
1922
+ 0xeb,0xf1,0x00,0x00,0x00,0x0d = sllg %r15, %r1, 0
1923
+ 0xeb,0x1f,0x00,0x00,0x00,0x0d = sllg %r1, %r15, 0
1924
+ 0xeb,0xff,0x00,0x00,0x00,0x0d = sllg %r15, %r15, 0
1925
+ 0xeb,0x00,0x00,0x00,0x80,0x0d = sllg %r0, %r0, -524288
1926
+ 0xeb,0x00,0x0f,0xff,0xff,0x0d = sllg %r0, %r0, -1
1927
+ 0xeb,0x00,0x00,0x01,0x00,0x0d = sllg %r0, %r0, 1
1928
+ 0xeb,0x00,0x0f,0xff,0x7f,0x0d = sllg %r0, %r0, 524287
1929
+ 0xeb,0x00,0x10,0x00,0x00,0x0d = sllg %r0, %r0, 0(%r1)
1930
+ 0xeb,0x00,0xf0,0x00,0x00,0x0d = sllg %r0, %r0, 0(%r15)
1931
+ 0xeb,0x00,0x1f,0xff,0x7f,0x0d = sllg %r0, %r0, 524287(%r1)
1932
+ 0xeb,0x00,0xff,0xff,0x7f,0x0d = sllg %r0, %r0, 524287(%r15)
1933
+ 0x1f,0x00 = slr %r0, %r0
1934
+ 0x1f,0x0f = slr %r0, %r15
1935
+ 0x1f,0xf0 = slr %r15, %r0
1936
+ 0x1f,0x78 = slr %r7, %r8
1937
+ 0xe3,0x00,0x00,0x00,0x80,0x5f = sly %r0, -524288
1938
+ 0xe3,0x00,0x0f,0xff,0xff,0x5f = sly %r0, -1
1939
+ 0xe3,0x00,0x00,0x00,0x00,0x5f = sly %r0, 0
1940
+ 0xe3,0x00,0x00,0x01,0x00,0x5f = sly %r0, 1
1941
+ 0xe3,0x00,0x0f,0xff,0x7f,0x5f = sly %r0, 524287
1942
+ 0xe3,0x00,0x10,0x00,0x00,0x5f = sly %r0, 0(%r1)
1943
+ 0xe3,0x00,0xf0,0x00,0x00,0x5f = sly %r0, 0(%r15)
1944
+ 0xe3,0x01,0xff,0xff,0x7f,0x5f = sly %r0, 524287(%r1,%r15)
1945
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x5f = sly %r0, 524287(%r15,%r1)
1946
+ 0xe3,0xf0,0x00,0x00,0x00,0x5f = sly %r15, 0
1947
+ 0xed,0x00,0x00,0x00,0x00,0x15 = sqdb %f0, 0
1948
+ 0xed,0x00,0x0f,0xff,0x00,0x15 = sqdb %f0, 4095
1949
+ 0xed,0x00,0x10,0x00,0x00,0x15 = sqdb %f0, 0(%r1)
1950
+ 0xed,0x00,0xf0,0x00,0x00,0x15 = sqdb %f0, 0(%r15)
1951
+ 0xed,0x01,0xff,0xff,0x00,0x15 = sqdb %f0, 4095(%r1,%r15)
1952
+ 0xed,0x0f,0x1f,0xff,0x00,0x15 = sqdb %f0, 4095(%r15,%r1)
1953
+ 0xed,0xf0,0x00,0x00,0x00,0x15 = sqdb %f15, 0
1954
+ 0xb3,0x15,0x00,0x00 = sqdbr %f0, %f0
1955
+ 0xb3,0x15,0x00,0x0f = sqdbr %f0, %f15
1956
+ 0xb3,0x15,0x00,0x78 = sqdbr %f7, %f8
1957
+ 0xb3,0x15,0x00,0xf0 = sqdbr %f15, %f0
1958
+ 0xed,0x00,0x00,0x00,0x00,0x14 = sqeb %f0, 0
1959
+ 0xed,0x00,0x0f,0xff,0x00,0x14 = sqeb %f0, 4095
1960
+ 0xed,0x00,0x10,0x00,0x00,0x14 = sqeb %f0, 0(%r1)
1961
+ 0xed,0x00,0xf0,0x00,0x00,0x14 = sqeb %f0, 0(%r15)
1962
+ 0xed,0x01,0xff,0xff,0x00,0x14 = sqeb %f0, 4095(%r1,%r15)
1963
+ 0xed,0x0f,0x1f,0xff,0x00,0x14 = sqeb %f0, 4095(%r15,%r1)
1964
+ 0xed,0xf0,0x00,0x00,0x00,0x14 = sqeb %f15, 0
1965
+ 0xb3,0x14,0x00,0x00 = sqebr %f0, %f0
1966
+ 0xb3,0x14,0x00,0x0f = sqebr %f0, %f15
1967
+ 0xb3,0x14,0x00,0x78 = sqebr %f7, %f8
1968
+ 0xb3,0x14,0x00,0xf0 = sqebr %f15, %f0
1969
+ 0xb3,0x16,0x00,0x00 = sqxbr %f0, %f0
1970
+ 0xb3,0x16,0x00,0x0d = sqxbr %f0, %f13
1971
+ 0xb3,0x16,0x00,0x88 = sqxbr %f8, %f8
1972
+ 0xb3,0x16,0x00,0xd0 = sqxbr %f13, %f0
1973
+ 0x1b,0x00 = sr %r0, %r0
1974
+ 0x1b,0x0f = sr %r0, %r15
1975
+ 0x1b,0xf0 = sr %r15, %r0
1976
+ 0x1b,0x78 = sr %r7, %r8
1977
+ 0x8a,0x00,0x00,0x00 = sra %r0, 0
1978
+ 0x8a,0x70,0x00,0x00 = sra %r7, 0
1979
+ 0x8a,0xf0,0x00,0x00 = sra %r15, 0
1980
+ 0x8a,0x00,0x0f,0xff = sra %r0, 4095
1981
+ 0x8a,0x00,0x10,0x00 = sra %r0, 0(%r1)
1982
+ 0x8a,0x00,0xf0,0x00 = sra %r0, 0(%r15)
1983
+ 0x8a,0x00,0x1f,0xff = sra %r0, 4095(%r1)
1984
+ 0x8a,0x00,0xff,0xff = sra %r0, 4095(%r15)
1985
+ 0xeb,0x00,0x00,0x00,0x00,0x0a = srag %r0, %r0, 0
1986
+ 0xeb,0xf1,0x00,0x00,0x00,0x0a = srag %r15, %r1, 0
1987
+ 0xeb,0x1f,0x00,0x00,0x00,0x0a = srag %r1, %r15, 0
1988
+ 0xeb,0xff,0x00,0x00,0x00,0x0a = srag %r15, %r15, 0
1989
+ 0xeb,0x00,0x00,0x00,0x80,0x0a = srag %r0, %r0, -524288
1990
+ 0xeb,0x00,0x0f,0xff,0xff,0x0a = srag %r0, %r0, -1
1991
+ 0xeb,0x00,0x00,0x01,0x00,0x0a = srag %r0, %r0, 1
1992
+ 0xeb,0x00,0x0f,0xff,0x7f,0x0a = srag %r0, %r0, 524287
1993
+ 0xeb,0x00,0x10,0x00,0x00,0x0a = srag %r0, %r0, 0(%r1)
1994
+ 0xeb,0x00,0xf0,0x00,0x00,0x0a = srag %r0, %r0, 0(%r15)
1995
+ 0xeb,0x00,0x1f,0xff,0x7f,0x0a = srag %r0, %r0, 524287(%r1)
1996
+ 0xeb,0x00,0xff,0xff,0x7f,0x0a = srag %r0, %r0, 524287(%r15)
1997
+ 0x88,0x00,0x00,0x00 = srl %r0, 0
1998
+ 0x88,0x70,0x00,0x00 = srl %r7, 0
1999
+ 0x88,0xf0,0x00,0x00 = srl %r15, 0
2000
+ 0x88,0x00,0x0f,0xff = srl %r0, 4095
2001
+ 0x88,0x00,0x10,0x00 = srl %r0, 0(%r1)
2002
+ 0x88,0x00,0xf0,0x00 = srl %r0, 0(%r15)
2003
+ 0x88,0x00,0x1f,0xff = srl %r0, 4095(%r1)
2004
+ 0x88,0x00,0xff,0xff = srl %r0, 4095(%r15)
2005
+ 0xeb,0x00,0x00,0x00,0x00,0x0c = srlg %r0, %r0, 0
2006
+ 0xeb,0xf1,0x00,0x00,0x00,0x0c = srlg %r15, %r1, 0
2007
+ 0xeb,0x1f,0x00,0x00,0x00,0x0c = srlg %r1, %r15, 0
2008
+ 0xeb,0xff,0x00,0x00,0x00,0x0c = srlg %r15, %r15, 0
2009
+ 0xeb,0x00,0x00,0x00,0x80,0x0c = srlg %r0, %r0, -524288
2010
+ 0xeb,0x00,0x0f,0xff,0xff,0x0c = srlg %r0, %r0, -1
2011
+ 0xeb,0x00,0x00,0x01,0x00,0x0c = srlg %r0, %r0, 1
2012
+ 0xeb,0x00,0x0f,0xff,0x7f,0x0c = srlg %r0, %r0, 524287
2013
+ 0xeb,0x00,0x10,0x00,0x00,0x0c = srlg %r0, %r0, 0(%r1)
2014
+ 0xeb,0x00,0xf0,0x00,0x00,0x0c = srlg %r0, %r0, 0(%r15)
2015
+ 0xeb,0x00,0x1f,0xff,0x7f,0x0c = srlg %r0, %r0, 524287(%r1)
2016
+ 0xeb,0x00,0xff,0xff,0x7f,0x0c = srlg %r0, %r0, 524287(%r15)
2017
+ 0xb2,0x5e,0x00,0x00 = srst %r0, %r0
2018
+ 0xb2,0x5e,0x00,0x0f = srst %r0, %r15
2019
+ 0xb2,0x5e,0x00,0xf0 = srst %r15, %r0
2020
+ 0xb2,0x5e,0x00,0x78 = srst %r7, %r8
2021
+ 0x50,0x00,0x00,0x00 = st %r0, 0
2022
+ 0x50,0x00,0x0f,0xff = st %r0, 4095
2023
+ 0x50,0x00,0x10,0x00 = st %r0, 0(%r1)
2024
+ 0x50,0x00,0xf0,0x00 = st %r0, 0(%r15)
2025
+ 0x50,0x01,0xff,0xff = st %r0, 4095(%r1,%r15)
2026
+ 0x50,0x0f,0x1f,0xff = st %r0, 4095(%r15,%r1)
2027
+ 0x50,0xf0,0x00,0x00 = st %r15, 0
2028
+ 0x42,0x00,0x00,0x00 = stc %r0, 0
2029
+ 0x42,0x00,0x0f,0xff = stc %r0, 4095
2030
+ 0x42,0x00,0x10,0x00 = stc %r0, 0(%r1)
2031
+ 0x42,0x00,0xf0,0x00 = stc %r0, 0(%r15)
2032
+ 0x42,0x01,0xff,0xff = stc %r0, 4095(%r1,%r15)
2033
+ 0x42,0x0f,0x1f,0xff = stc %r0, 4095(%r15,%r1)
2034
+ 0x42,0xf0,0x00,0x00 = stc %r15, 0
2035
+ 0xe3,0x00,0x00,0x00,0x80,0x72 = stcy %r0, -524288
2036
+ 0xe3,0x00,0x0f,0xff,0xff,0x72 = stcy %r0, -1
2037
+ 0xe3,0x00,0x00,0x00,0x00,0x72 = stcy %r0, 0
2038
+ 0xe3,0x00,0x00,0x01,0x00,0x72 = stcy %r0, 1
2039
+ 0xe3,0x00,0x0f,0xff,0x7f,0x72 = stcy %r0, 524287
2040
+ 0xe3,0x00,0x10,0x00,0x00,0x72 = stcy %r0, 0(%r1)
2041
+ 0xe3,0x00,0xf0,0x00,0x00,0x72 = stcy %r0, 0(%r15)
2042
+ 0xe3,0x01,0xff,0xff,0x7f,0x72 = stcy %r0, 524287(%r1,%r15)
2043
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x72 = stcy %r0, 524287(%r15,%r1)
2044
+ 0xe3,0xf0,0x00,0x00,0x00,0x72 = stcy %r15, 0
2045
+ 0x60,0x00,0x00,0x00 = std %f0, 0
2046
+ 0x60,0x00,0x0f,0xff = std %f0, 4095
2047
+ 0x60,0x00,0x10,0x00 = std %f0, 0(%r1)
2048
+ 0x60,0x00,0xf0,0x00 = std %f0, 0(%r15)
2049
+ 0x60,0x01,0xff,0xff = std %f0, 4095(%r1,%r15)
2050
+ 0x60,0x0f,0x1f,0xff = std %f0, 4095(%r15,%r1)
2051
+ 0x60,0xf0,0x00,0x00 = std %f15, 0
2052
+ 0xed,0x00,0x00,0x00,0x80,0x67 = stdy %f0, -524288
2053
+ 0xed,0x00,0x0f,0xff,0xff,0x67 = stdy %f0, -1
2054
+ 0xed,0x00,0x00,0x00,0x00,0x67 = stdy %f0, 0
2055
+ 0xed,0x00,0x00,0x01,0x00,0x67 = stdy %f0, 1
2056
+ 0xed,0x00,0x0f,0xff,0x7f,0x67 = stdy %f0, 524287
2057
+ 0xed,0x00,0x10,0x00,0x00,0x67 = stdy %f0, 0(%r1)
2058
+ 0xed,0x00,0xf0,0x00,0x00,0x67 = stdy %f0, 0(%r15)
2059
+ 0xed,0x01,0xff,0xff,0x7f,0x67 = stdy %f0, 524287(%r1,%r15)
2060
+ 0xed,0x0f,0x1f,0xff,0x7f,0x67 = stdy %f0, 524287(%r15,%r1)
2061
+ 0xed,0xf0,0x00,0x00,0x00,0x67 = stdy %f15, 0
2062
+ 0x70,0x00,0x00,0x00 = ste %f0, 0
2063
+ 0x70,0x00,0x0f,0xff = ste %f0, 4095
2064
+ 0x70,0x00,0x10,0x00 = ste %f0, 0(%r1)
2065
+ 0x70,0x00,0xf0,0x00 = ste %f0, 0(%r15)
2066
+ 0x70,0x01,0xff,0xff = ste %f0, 4095(%r1,%r15)
2067
+ 0x70,0x0f,0x1f,0xff = ste %f0, 4095(%r15,%r1)
2068
+ 0x70,0xf0,0x00,0x00 = ste %f15, 0
2069
+ 0xed,0x00,0x00,0x00,0x80,0x66 = stey %f0, -524288
2070
+ 0xed,0x00,0x0f,0xff,0xff,0x66 = stey %f0, -1
2071
+ 0xed,0x00,0x00,0x00,0x00,0x66 = stey %f0, 0
2072
+ 0xed,0x00,0x00,0x01,0x00,0x66 = stey %f0, 1
2073
+ 0xed,0x00,0x0f,0xff,0x7f,0x66 = stey %f0, 524287
2074
+ 0xed,0x00,0x10,0x00,0x00,0x66 = stey %f0, 0(%r1)
2075
+ 0xed,0x00,0xf0,0x00,0x00,0x66 = stey %f0, 0(%r15)
2076
+ 0xed,0x01,0xff,0xff,0x7f,0x66 = stey %f0, 524287(%r1,%r15)
2077
+ 0xed,0x0f,0x1f,0xff,0x7f,0x66 = stey %f0, 524287(%r15,%r1)
2078
+ 0xed,0xf0,0x00,0x00,0x00,0x66 = stey %f15, 0
2079
+ 0xe3,0x00,0x00,0x00,0x80,0x24 = stg %r0, -524288
2080
+ 0xe3,0x00,0x0f,0xff,0xff,0x24 = stg %r0, -1
2081
+ 0xe3,0x00,0x00,0x00,0x00,0x24 = stg %r0, 0
2082
+ 0xe3,0x00,0x00,0x01,0x00,0x24 = stg %r0, 1
2083
+ 0xe3,0x00,0x0f,0xff,0x7f,0x24 = stg %r0, 524287
2084
+ 0xe3,0x00,0x10,0x00,0x00,0x24 = stg %r0, 0(%r1)
2085
+ 0xe3,0x00,0xf0,0x00,0x00,0x24 = stg %r0, 0(%r15)
2086
+ 0xe3,0x01,0xff,0xff,0x7f,0x24 = stg %r0, 524287(%r1,%r15)
2087
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x24 = stg %r0, 524287(%r15,%r1)
2088
+ 0xe3,0xf0,0x00,0x00,0x00,0x24 = stg %r15, 0
2089
+ 0x40,0x00,0x00,0x00 = sth %r0, 0
2090
+ 0x40,0x00,0x0f,0xff = sth %r0, 4095
2091
+ 0x40,0x00,0x10,0x00 = sth %r0, 0(%r1)
2092
+ 0x40,0x00,0xf0,0x00 = sth %r0, 0(%r15)
2093
+ 0x40,0x01,0xff,0xff = sth %r0, 4095(%r1,%r15)
2094
+ 0x40,0x0f,0x1f,0xff = sth %r0, 4095(%r15,%r1)
2095
+ 0x40,0xf0,0x00,0x00 = sth %r15, 0
2096
+ 0xe3,0x00,0x00,0x00,0x80,0x70 = sthy %r0, -524288
2097
+ 0xe3,0x00,0x0f,0xff,0xff,0x70 = sthy %r0, -1
2098
+ 0xe3,0x00,0x00,0x00,0x00,0x70 = sthy %r0, 0
2099
+ 0xe3,0x00,0x00,0x01,0x00,0x70 = sthy %r0, 1
2100
+ 0xe3,0x00,0x0f,0xff,0x7f,0x70 = sthy %r0, 524287
2101
+ 0xe3,0x00,0x10,0x00,0x00,0x70 = sthy %r0, 0(%r1)
2102
+ 0xe3,0x00,0xf0,0x00,0x00,0x70 = sthy %r0, 0(%r15)
2103
+ 0xe3,0x01,0xff,0xff,0x7f,0x70 = sthy %r0, 524287(%r1,%r15)
2104
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x70 = sthy %r0, 524287(%r15,%r1)
2105
+ 0xe3,0xf0,0x00,0x00,0x00,0x70 = sthy %r15, 0
2106
+ 0xeb,0x00,0x00,0x00,0x00,0x24 = stmg %r0, %r0, 0
2107
+ 0xeb,0x0f,0x00,0x00,0x00,0x24 = stmg %r0, %r15, 0
2108
+ 0xeb,0xef,0x00,0x00,0x00,0x24 = stmg %r14, %r15, 0
2109
+ 0xeb,0xff,0x00,0x00,0x00,0x24 = stmg %r15, %r15, 0
2110
+ 0xeb,0x00,0x00,0x00,0x80,0x24 = stmg %r0, %r0, -524288
2111
+ 0xeb,0x00,0x0f,0xff,0xff,0x24 = stmg %r0, %r0, -1
2112
+ 0xeb,0x00,0x00,0x00,0x00,0x24 = stmg %r0, %r0, 0
2113
+ 0xeb,0x00,0x00,0x01,0x00,0x24 = stmg %r0, %r0, 1
2114
+ 0xeb,0x00,0x0f,0xff,0x7f,0x24 = stmg %r0, %r0, 524287
2115
+ 0xeb,0x00,0x10,0x00,0x00,0x24 = stmg %r0, %r0, 0(%r1)
2116
+ 0xeb,0x00,0xf0,0x00,0x00,0x24 = stmg %r0, %r0, 0(%r15)
2117
+ 0xeb,0x00,0x1f,0xff,0x7f,0x24 = stmg %r0, %r0, 524287(%r1)
2118
+ 0xeb,0x00,0xff,0xff,0x7f,0x24 = stmg %r0, %r0, 524287(%r15)
2119
+ 0xe3,0x00,0x00,0x00,0x80,0x3e = strv %r0, -524288
2120
+ 0xe3,0x00,0x0f,0xff,0xff,0x3e = strv %r0, -1
2121
+ 0xe3,0x00,0x00,0x00,0x00,0x3e = strv %r0, 0
2122
+ 0xe3,0x00,0x00,0x01,0x00,0x3e = strv %r0, 1
2123
+ 0xe3,0x00,0x0f,0xff,0x7f,0x3e = strv %r0, 524287
2124
+ 0xe3,0x00,0x10,0x00,0x00,0x3e = strv %r0, 0(%r1)
2125
+ 0xe3,0x00,0xf0,0x00,0x00,0x3e = strv %r0, 0(%r15)
2126
+ 0xe3,0x01,0xff,0xff,0x7f,0x3e = strv %r0, 524287(%r1,%r15)
2127
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x3e = strv %r0, 524287(%r15,%r1)
2128
+ 0xe3,0xf0,0x00,0x00,0x00,0x3e = strv %r15, 0
2129
+ 0xe3,0x00,0x00,0x00,0x80,0x2f = strvg %r0, -524288
2130
+ 0xe3,0x00,0x0f,0xff,0xff,0x2f = strvg %r0, -1
2131
+ 0xe3,0x00,0x00,0x00,0x00,0x2f = strvg %r0, 0
2132
+ 0xe3,0x00,0x00,0x01,0x00,0x2f = strvg %r0, 1
2133
+ 0xe3,0x00,0x0f,0xff,0x7f,0x2f = strvg %r0, 524287
2134
+ 0xe3,0x00,0x10,0x00,0x00,0x2f = strvg %r0, 0(%r1)
2135
+ 0xe3,0x00,0xf0,0x00,0x00,0x2f = strvg %r0, 0(%r15)
2136
+ 0xe3,0x01,0xff,0xff,0x7f,0x2f = strvg %r0, 524287(%r1,%r15)
2137
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x2f = strvg %r0, 524287(%r15,%r1)
2138
+ 0xe3,0xf0,0x00,0x00,0x00,0x2f = strvg %r15, 0
2139
+ 0xe3,0x00,0x00,0x00,0x80,0x50 = sty %r0, -524288
2140
+ 0xe3,0x00,0x0f,0xff,0xff,0x50 = sty %r0, -1
2141
+ 0xe3,0x00,0x00,0x00,0x00,0x50 = sty %r0, 0
2142
+ 0xe3,0x00,0x00,0x01,0x00,0x50 = sty %r0, 1
2143
+ 0xe3,0x00,0x0f,0xff,0x7f,0x50 = sty %r0, 524287
2144
+ 0xe3,0x00,0x10,0x00,0x00,0x50 = sty %r0, 0(%r1)
2145
+ 0xe3,0x00,0xf0,0x00,0x00,0x50 = sty %r0, 0(%r15)
2146
+ 0xe3,0x01,0xff,0xff,0x7f,0x50 = sty %r0, 524287(%r1,%r15)
2147
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x50 = sty %r0, 524287(%r15,%r1)
2148
+ 0xe3,0xf0,0x00,0x00,0x00,0x50 = sty %r15, 0
2149
+ 0xb3,0x4b,0x00,0x00 = sxbr %f0, %f0
2150
+ 0xb3,0x4b,0x00,0x0d = sxbr %f0, %f13
2151
+ 0xb3,0x4b,0x00,0x88 = sxbr %f8, %f8
2152
+ 0xb3,0x4b,0x00,0xd0 = sxbr %f13, %f0
2153
+ 0xe3,0x00,0x00,0x00,0x80,0x5b = sy %r0, -524288
2154
+ 0xe3,0x00,0x0f,0xff,0xff,0x5b = sy %r0, -1
2155
+ 0xe3,0x00,0x00,0x00,0x00,0x5b = sy %r0, 0
2156
+ 0xe3,0x00,0x00,0x01,0x00,0x5b = sy %r0, 1
2157
+ 0xe3,0x00,0x0f,0xff,0x7f,0x5b = sy %r0, 524287
2158
+ 0xe3,0x00,0x10,0x00,0x00,0x5b = sy %r0, 0(%r1)
2159
+ 0xe3,0x00,0xf0,0x00,0x00,0x5b = sy %r0, 0(%r15)
2160
+ 0xe3,0x01,0xff,0xff,0x7f,0x5b = sy %r0, 524287(%r1,%r15)
2161
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x5b = sy %r0, 524287(%r15,%r1)
2162
+ 0xe3,0xf0,0x00,0x00,0x00,0x5b = sy %r15, 0
2163
+ 0x91,0x00,0x00,0x00 = tm 0, 0
2164
+ 0x91,0x00,0x0f,0xff = tm 4095, 0
2165
+ 0x91,0xff,0x00,0x00 = tm 0, 255
2166
+ 0x91,0x2a,0x10,0x00 = tm 0(%r1), 42
2167
+ 0x91,0x2a,0xf0,0x00 = tm 0(%r15), 42
2168
+ 0x91,0x2a,0x1f,0xff = tm 4095(%r1), 42
2169
+ 0x91,0x2a,0xff,0xff = tm 4095(%r15), 42
2170
+ 0xa7,0x02,0x00,0x00 = tmhh %r0, 0
2171
+ 0xa7,0x02,0x80,0x00 = tmhh %r0, 32768
2172
+ 0xa7,0x02,0xff,0xff = tmhh %r0, 65535
2173
+ 0xa7,0xf2,0x00,0x00 = tmhh %r15, 0
2174
+ 0xa7,0x03,0x00,0x00 = tmhl %r0, 0
2175
+ 0xa7,0x03,0x80,0x00 = tmhl %r0, 32768
2176
+ 0xa7,0x03,0xff,0xff = tmhl %r0, 65535
2177
+ 0xa7,0xf3,0x00,0x00 = tmhl %r15, 0
2178
+ 0xa7,0x00,0x00,0x00 = tmlh %r0, 0
2179
+ 0xa7,0x00,0x80,0x00 = tmlh %r0, 32768
2180
+ 0xa7,0x00,0xff,0xff = tmlh %r0, 65535
2181
+ 0xa7,0xf0,0x00,0x00 = tmlh %r15, 0
2182
+ 0xa7,0x01,0x00,0x00 = tmll %r0, 0
2183
+ 0xa7,0x01,0x80,0x00 = tmll %r0, 32768
2184
+ 0xa7,0x01,0xff,0xff = tmll %r0, 65535
2185
+ 0xa7,0xf1,0x00,0x00 = tmll %r15, 0
2186
+ 0xeb,0x00,0x00,0x00,0x80,0x51 = tmy -524288, 0
2187
+ 0xeb,0x00,0x0f,0xff,0xff,0x51 = tmy -1, 0
2188
+ 0xeb,0x00,0x00,0x00,0x00,0x51 = tmy 0, 0
2189
+ 0xeb,0x00,0x00,0x01,0x00,0x51 = tmy 1, 0
2190
+ 0xeb,0x00,0x0f,0xff,0x7f,0x51 = tmy 524287, 0
2191
+ 0xeb,0xff,0x00,0x00,0x00,0x51 = tmy 0, 255
2192
+ 0xeb,0x2a,0x10,0x00,0x00,0x51 = tmy 0(%r1), 42
2193
+ 0xeb,0x2a,0xf0,0x00,0x00,0x51 = tmy 0(%r15), 42
2194
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x51 = tmy 524287(%r1), 42
2195
+ 0xeb,0x2a,0xff,0xff,0x7f,0x51 = tmy 524287(%r15), 42
2196
+ 0x57,0x00,0x00,0x00 = x %r0, 0
2197
+ 0x57,0x00,0x0f,0xff = x %r0, 4095
2198
+ 0x57,0x00,0x10,0x00 = x %r0, 0(%r1)
2199
+ 0x57,0x00,0xf0,0x00 = x %r0, 0(%r15)
2200
+ 0x57,0x01,0xff,0xff = x %r0, 4095(%r1,%r15)
2201
+ 0x57,0x0f,0x1f,0xff = x %r0, 4095(%r15,%r1)
2202
+ 0x57,0xf0,0x00,0x00 = x %r15, 0
2203
+ 0xd7,0x00,0x00,0x00,0x00,0x00 = xc 0(1), 0
2204
+ 0xd7,0x00,0x00,0x00,0x10,0x00 = xc 0(1), 0(%r1)
2205
+ 0xd7,0x00,0x00,0x00,0xf0,0x00 = xc 0(1), 0(%r15)
2206
+ 0xd7,0x00,0x00,0x00,0x0f,0xff = xc 0(1), 4095
2207
+ 0xd7,0x00,0x00,0x00,0x1f,0xff = xc 0(1), 4095(%r1)
2208
+ 0xd7,0x00,0x00,0x00,0xff,0xff = xc 0(1), 4095(%r15)
2209
+ 0xd7,0x00,0x10,0x00,0x00,0x00 = xc 0(1,%r1), 0
2210
+ 0xd7,0x00,0xf0,0x00,0x00,0x00 = xc 0(1,%r15), 0
2211
+ 0xd7,0x00,0x1f,0xff,0x00,0x00 = xc 4095(1,%r1), 0
2212
+ 0xd7,0x00,0xff,0xff,0x00,0x00 = xc 4095(1,%r15), 0
2213
+ 0xd7,0xff,0x10,0x00,0x00,0x00 = xc 0(256,%r1), 0
2214
+ 0xd7,0xff,0xf0,0x00,0x00,0x00 = xc 0(256,%r15), 0
2215
+ 0xe3,0x00,0x00,0x00,0x80,0x82 = xg %r0, -524288
2216
+ 0xe3,0x00,0x0f,0xff,0xff,0x82 = xg %r0, -1
2217
+ 0xe3,0x00,0x00,0x00,0x00,0x82 = xg %r0, 0
2218
+ 0xe3,0x00,0x00,0x01,0x00,0x82 = xg %r0, 1
2219
+ 0xe3,0x00,0x0f,0xff,0x7f,0x82 = xg %r0, 524287
2220
+ 0xe3,0x00,0x10,0x00,0x00,0x82 = xg %r0, 0(%r1)
2221
+ 0xe3,0x00,0xf0,0x00,0x00,0x82 = xg %r0, 0(%r15)
2222
+ 0xe3,0x01,0xff,0xff,0x7f,0x82 = xg %r0, 524287(%r1,%r15)
2223
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x82 = xg %r0, 524287(%r15,%r1)
2224
+ 0xe3,0xf0,0x00,0x00,0x00,0x82 = xg %r15, 0
2225
+ 0xb9,0x82,0x00,0x00 = xgr %r0, %r0
2226
+ 0xb9,0x82,0x00,0x0f = xgr %r0, %r15
2227
+ 0xb9,0x82,0x00,0xf0 = xgr %r15, %r0
2228
+ 0xb9,0x82,0x00,0x78 = xgr %r7, %r8
2229
+ 0x97,0x00,0x00,0x00 = xi 0, 0
2230
+ 0x97,0x00,0x0f,0xff = xi 4095, 0
2231
+ 0x97,0xff,0x00,0x00 = xi 0, 255
2232
+ 0x97,0x2a,0x10,0x00 = xi 0(%r1), 42
2233
+ 0x97,0x2a,0xf0,0x00 = xi 0(%r15), 42
2234
+ 0x97,0x2a,0x1f,0xff = xi 4095(%r1), 42
2235
+ 0x97,0x2a,0xff,0xff = xi 4095(%r15), 42
2236
+ 0xc0,0x06,0x00,0x00,0x00,0x00 = xihf %r0, 0
2237
+ 0xc0,0x06,0xff,0xff,0xff,0xff = xihf %r0, 4294967295
2238
+ 0xc0,0xf6,0x00,0x00,0x00,0x00 = xihf %r15, 0
2239
+ 0xc0,0x07,0x00,0x00,0x00,0x00 = xilf %r0, 0
2240
+ 0xc0,0x07,0xff,0xff,0xff,0xff = xilf %r0, 4294967295
2241
+ 0xc0,0xf7,0x00,0x00,0x00,0x00 = xilf %r15, 0
2242
+ 0xeb,0x00,0x00,0x00,0x80,0x57 = xiy -524288, 0
2243
+ 0xeb,0x00,0x0f,0xff,0xff,0x57 = xiy -1, 0
2244
+ 0xeb,0x00,0x00,0x00,0x00,0x57 = xiy 0, 0
2245
+ 0xeb,0x00,0x00,0x01,0x00,0x57 = xiy 1, 0
2246
+ 0xeb,0x00,0x0f,0xff,0x7f,0x57 = xiy 524287, 0
2247
+ 0xeb,0xff,0x00,0x00,0x00,0x57 = xiy 0, 255
2248
+ 0xeb,0x2a,0x10,0x00,0x00,0x57 = xiy 0(%r1), 42
2249
+ 0xeb,0x2a,0xf0,0x00,0x00,0x57 = xiy 0(%r15), 42
2250
+ 0xeb,0x2a,0x1f,0xff,0x7f,0x57 = xiy 524287(%r1), 42
2251
+ 0xeb,0x2a,0xff,0xff,0x7f,0x57 = xiy 524287(%r15), 42
2252
+ 0x17,0x00 = xr %r0, %r0
2253
+ 0x17,0x0f = xr %r0, %r15
2254
+ 0x17,0xf0 = xr %r15, %r0
2255
+ 0x17,0x78 = xr %r7, %r8
2256
+ 0xe3,0x00,0x00,0x00,0x80,0x57 = xy %r0, -524288
2257
+ 0xe3,0x00,0x0f,0xff,0xff,0x57 = xy %r0, -1
2258
+ 0xe3,0x00,0x00,0x00,0x00,0x57 = xy %r0, 0
2259
+ 0xe3,0x00,0x00,0x01,0x00,0x57 = xy %r0, 1
2260
+ 0xe3,0x00,0x0f,0xff,0x7f,0x57 = xy %r0, 524287
2261
+ 0xe3,0x00,0x10,0x00,0x00,0x57 = xy %r0, 0(%r1)
2262
+ 0xe3,0x00,0xf0,0x00,0x00,0x57 = xy %r0, 0(%r15)
2263
+ 0xe3,0x01,0xff,0xff,0x7f,0x57 = xy %r0, 524287(%r1,%r15)
2264
+ 0xe3,0x0f,0x1f,0xff,0x7f,0x57 = xy %r0, 524287(%r15,%r1)
2265
+ 0xe3,0xf0,0x00,0x00,0x00,0x57 = xy %r15, 0