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,32 @@
1
+ # CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, CS_OPT_SYNTAX_NOREGNAME
2
+ 0x7c,0x22,0x1a,0x14 = add 1, 2, 3
3
+ 0x7c,0x22,0x1a,0x14 = add 1, 2, 3
4
+ 0x7c,0x00,0x02,0x14 = add 0, 0, 0
5
+ 0x7f,0xff,0xfa,0x14 = add 31, 31, 31
6
+ 0x38,0x20,0x00,0x00 = addi 1, 0, 0
7
+ 0x38,0x20,0x00,0x00 = addi 1, 0, 0
8
+ 0x38,0x22,0x00,0x00 = addi 1, 2, 0
9
+ 0x38,0x20,0x80,0x00 = addi 1, 0, -32768
10
+ 0x38,0x20,0x7f,0xff = addi 1, 0, 32767
11
+ 0x60,0x41,0x00,0x00 = ori 1, 2, 0
12
+ 0x60,0x41,0xff,0xff = ori 1, 2, 65535
13
+ 0x3c,0x20,0x00,0x00 = addis 1, 0, 0
14
+ 0x3c,0x20,0xff,0xff = addis 1, 0, -1
15
+ 0x80,0x20,0x00,0x00 = lwz 1, 0(0)
16
+ 0x80,0x20,0x00,0x00 = lwz 1, 0(0)
17
+ 0x80,0x3f,0x00,0x00 = lwz 1, 0(31)
18
+ 0x80,0x3f,0x00,0x00 = lwz 1, 0(31)
19
+ 0x80,0x22,0x80,0x00 = lwz 1, -32768(2)
20
+ 0x80,0x22,0x7f,0xff = lwz 1, 32767(2)
21
+ 0xe8,0x20,0x00,0x00 = ld 1, 0(0)
22
+ 0xe8,0x20,0x00,0x00 = ld 1, 0(0)
23
+ 0xe8,0x3f,0x00,0x00 = ld 1, 0(31)
24
+ 0xe8,0x3f,0x00,0x00 = ld 1, 0(31)
25
+ 0xe8,0x22,0x80,0x00 = ld 1, -32768(2)
26
+ 0xe8,0x22,0x7f,0xfc = ld 1, 32764(2)
27
+ 0xe8,0x22,0x00,0x04 = ld 1, 4(2)
28
+ 0xe8,0x22,0xff,0xfc = ld 1, -4(2)
29
+ 0x48,0x00,0x04,0x00 = b .+1024
30
+ 0x48,0x00,0x04,0x02 = ba 1024
31
+ 0x41,0x82,0x04,0x00 = beq 0, .+1024
32
+ 0x41,0x82,0x04,0x02 = beqa 0, 1024
@@ -0,0 +1,6 @@
1
+ Input files for testing Capstone engine.
2
+
3
+ Format of input files:
4
+
5
+ # ARCH, MODE, OPTION
6
+ hexcode = assembly
@@ -0,0 +1,47 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0x80,0x00,0x00,0x00 = add %g0, %g0, %g0
3
+ 0x86,0x00,0x40,0x02 = add %g1, %g2, %g3
4
+ 0xa0,0x02,0x00,0x09 = add %o0, %o1, %l0
5
+ 0xa0,0x02,0x20,0x0a = add %o0, 10, %l0
6
+ 0x86,0x80,0x40,0x02 = addcc %g1, %g2, %g3
7
+ 0x86,0xc0,0x40,0x02 = addxcc %g1, %g2, %g3
8
+ 0x86,0x70,0x40,0x02 = udiv %g1, %g2, %g3
9
+ 0x86,0x78,0x40,0x02 = sdiv %g1, %g2, %g3
10
+ 0x86,0x08,0x40,0x02 = and %g1, %g2, %g3
11
+ 0x86,0x28,0x40,0x02 = andn %g1, %g2, %g3
12
+ 0x86,0x10,0x40,0x02 = or %g1, %g2, %g3
13
+ 0x86,0x30,0x40,0x02 = orn %g1, %g2, %g3
14
+ 0x86,0x18,0x40,0x02 = xor %g1, %g2, %g3
15
+ 0x86,0x38,0x40,0x02 = xnor %g1, %g2, %g3
16
+ 0x86,0x50,0x40,0x02 = umul %g1, %g2, %g3
17
+ 0x86,0x58,0x40,0x02 = smul %g1, %g2, %g3
18
+ 0x01,0x00,0x00,0x00 = nop
19
+ 0x21,0x00,0x00,0x0a = sethi 10, %l0
20
+ 0x87,0x28,0x40,0x02 = sll %g1, %g2, %g3
21
+ 0x87,0x28,0x60,0x1f = sll %g1, 31, %g3
22
+ 0x87,0x30,0x40,0x02 = srl %g1, %g2, %g3
23
+ 0x87,0x30,0x60,0x1f = srl %g1, 31, %g3
24
+ 0x87,0x38,0x40,0x02 = sra %g1, %g2, %g3
25
+ 0x87,0x38,0x60,0x1f = sra %g1, 31, %g3
26
+ 0x86,0x20,0x40,0x02 = sub %g1, %g2, %g3
27
+ 0x86,0xa0,0x40,0x02 = subcc %g1, %g2, %g3
28
+ 0x86,0xe0,0x40,0x02 = subxcc %g1, %g2, %g3
29
+ 0x86,0x10,0x00,0x01 = or %g0, %g1, %g3
30
+ 0x86,0x10,0x20,0xff = or %g0, 255, %g3
31
+ 0x81,0xe8,0x00,0x00 = restore
32
+ 0x86,0x40,0x80,0x01 = addx %g2, %g1, %g3
33
+ 0x86,0x60,0x80,0x01 = subx %g2, %g1, %g3
34
+ 0x86,0xd0,0x80,0x01 = umulcc %g2, %g1, %g3
35
+ 0x86,0xd8,0x80,0x01 = smulcc %g2, %g1, %g3
36
+ 0x86,0xf0,0x80,0x01 = udivcc %g2, %g1, %g3
37
+ 0x86,0xf8,0x80,0x01 = sdivcc %g2, %g1, %g3
38
+ 0x86,0x88,0x80,0x01 = andcc %g2, %g1, %g3
39
+ 0x86,0xa8,0x80,0x01 = andncc %g2, %g1, %g3
40
+ 0x86,0x90,0x80,0x01 = orcc %g2, %g1, %g3
41
+ 0x86,0xb0,0x80,0x01 = orncc %g2, %g1, %g3
42
+ 0x86,0x98,0x80,0x01 = xorcc %g2, %g1, %g3
43
+ 0x86,0xb8,0x80,0x01 = xnorcc %g2, %g1, %g3
44
+ 0x87,0x00,0x80,0x01 = taddcc %g2, %g1, %g3
45
+ 0x87,0x08,0x80,0x01 = tsubcc %g2, %g1, %g3
46
+ 0x87,0x10,0x80,0x01 = taddcctv %g2, %g1, %g3
47
+ 0x87,0x18,0x80,0x01 = tsubcctv %g2, %g1, %g3
@@ -0,0 +1,7 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0x81,0x43,0xe0,0x0f = membar 15
3
+ 0x81,0x43,0xc0,0x00 = stbar
4
+ 0xd4,0x7e,0x00,0x16 = swap [%i0+%l6], %o2
5
+ 0xd4,0x7e,0x20,0x20 = swap [%i0+32], %o2
6
+ 0xd5,0xe6,0x10,0x16 = cas [%i0], %l6, %o2
7
+ 0xd5,0xf6,0x10,0x16 = casx [%i0], %l6, %o2
@@ -0,0 +1,11 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0x9f,0xc0,0x40,0x1a = call %g1+%i2
3
+ 0x9f,0xc2,0x60,0x08 = call %o1+8
4
+ 0x9f,0xc0,0x60,0x00 = call %g1
5
+ 0x81,0xc0,0x40,0x1a = jmp %g1+%i2
6
+ 0x81,0xc2,0x60,0x08 = jmp %o1+8
7
+ 0x81,0xc0,0x60,0x00 = jmp %g1
8
+ 0x85,0xc0,0x40,0x1a = jmpl %g1+%i2, %g2
9
+ 0x85,0xc2,0x60,0x08 = jmpl %o1+8, %g2
10
+ 0x85,0xc0,0x60,0x00 = jmpl %g1, %g2
11
+ 0x81,0xcf,0xe0,0x08 = rett %i7+8
@@ -0,0 +1,59 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN + CS_MODE_V9, None
2
+ 0x89,0xa0,0x18,0x80 = fitos %f0, %f4
3
+ 0x89,0xa0,0x19,0x00 = fitod %f0, %f4
4
+ 0x89,0xa0,0x19,0x80 = fitoq %f0, %f4
5
+ 0x89,0xa0,0x1a,0x20 = fstoi %f0, %f4
6
+ 0x89,0xa0,0x1a,0x40 = fdtoi %f0, %f4
7
+ 0x89,0xa0,0x1a,0x60 = fqtoi %f0, %f4
8
+ 0x89,0xa0,0x19,0x20 = fstod %f0, %f4
9
+ 0x89,0xa0,0x19,0xa0 = fstoq %f0, %f4
10
+ 0x89,0xa0,0x18,0xc0 = fdtos %f0, %f4
11
+ 0x89,0xa0,0x19,0xc0 = fdtoq %f0, %f4
12
+ 0x89,0xa0,0x18,0xe0 = fqtos %f0, %f4
13
+ 0x89,0xa0,0x19,0x60 = fqtod %f0, %f4
14
+ 0x89,0xa0,0x00,0x20 = fmovs %f0, %f4
15
+ 0x89,0xa0,0x00,0x40 = fmovd %f0, %f4
16
+ 0x89,0xa0,0x00,0x60 = fmovq %f0, %f4
17
+ 0x89,0xa0,0x00,0xa0 = fnegs %f0, %f4
18
+ 0x89,0xa0,0x00,0xc0 = fnegd %f0, %f4
19
+ 0x89,0xa0,0x00,0xe0 = fnegq %f0, %f4
20
+ 0x89,0xa0,0x01,0x20 = fabss %f0, %f4
21
+ 0x89,0xa0,0x01,0x40 = fabsd %f0, %f4
22
+ 0x89,0xa0,0x01,0x60 = fabsq %f0, %f4
23
+ 0x89,0xa0,0x05,0x20 = fsqrts %f0, %f4
24
+ 0x89,0xa0,0x05,0x40 = fsqrtd %f0, %f4
25
+ 0x89,0xa0,0x05,0x60 = fsqrtq %f0, %f4
26
+ 0x91,0xa0,0x08,0x24 = fadds %f0, %f4, %f8
27
+ 0x91,0xa0,0x08,0x44 = faddd %f0, %f4, %f8
28
+ 0x91,0xa0,0x08,0x64 = faddq %f0, %f4, %f8
29
+ 0xbf,0xa0,0x48,0x43 = faddd %f32, %f34, %f62
30
+ 0xbb,0xa0,0x48,0x65 = faddq %f32, %f36, %f60
31
+ 0x91,0xa0,0x08,0xa4 = fsubs %f0, %f4, %f8
32
+ 0x91,0xa0,0x08,0xc4 = fsubd %f0, %f4, %f8
33
+ 0x91,0xa0,0x08,0xe4 = fsubq %f0, %f4, %f8
34
+ 0x91,0xa0,0x09,0x24 = fmuls %f0, %f4, %f8
35
+ 0x91,0xa0,0x09,0x44 = fmuld %f0, %f4, %f8
36
+ 0x91,0xa0,0x09,0x64 = fmulq %f0, %f4, %f8
37
+ 0x91,0xa0,0x0d,0x24 = fsmuld %f0, %f4, %f8
38
+ 0x91,0xa0,0x0d,0xc4 = fdmulq %f0, %f4, %f8
39
+ 0x91,0xa0,0x09,0xa4 = fdivs %f0, %f4, %f8
40
+ 0x91,0xa0,0x09,0xc4 = fdivd %f0, %f4, %f8
41
+ 0x91,0xa0,0x09,0xe4 = fdivq %f0, %f4, %f8
42
+ 0x81,0xa8,0x0a,0x24 = fcmps %fcc0, %f0, %f4
43
+ 0x81,0xa8,0x0a,0x44 = fcmpd %fcc0, %f0, %f4
44
+ 0x81,0xa8,0x0a,0x64 = fcmpq %fcc0, %f0, %f4
45
+ 0x81,0xa8,0x0a,0xa4 = fcmpes %fcc0, %f0, %f4
46
+ 0x81,0xa8,0x0a,0xc4 = fcmped %fcc0, %f0, %f4
47
+ 0x81,0xa8,0x0a,0xe4 = fcmpeq %fcc0, %f0, %f4
48
+ 0x85,0xa8,0x0a,0x24 = fcmps %fcc2, %f0, %f4
49
+ 0x85,0xa8,0x0a,0x44 = fcmpd %fcc2, %f0, %f4
50
+ 0x85,0xa8,0x0a,0x64 = fcmpq %fcc2, %f0, %f4
51
+ 0x85,0xa8,0x0a,0xa4 = fcmpes %fcc2, %f0, %f4
52
+ 0x85,0xa8,0x0a,0xc4 = fcmped %fcc2, %f0, %f4
53
+ 0x85,0xa8,0x0a,0xe4 = fcmpeq %fcc2, %f0, %f4
54
+ 0x89,0xa0,0x10,0x80 = fxtos %f0, %f4
55
+ 0x89,0xa0,0x11,0x00 = fxtod %f0, %f4
56
+ 0x89,0xa0,0x11,0x80 = fxtoq %f0, %f4
57
+ 0x89,0xa0,0x10,0x20 = fstox %f0, %f4
58
+ 0x89,0xa0,0x10,0x40 = fdtox %f0, %f4
59
+ 0x89,0xa0,0x10,0x60 = fqtox %f0, %f4
@@ -0,0 +1,25 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0xd4,0x4e,0x00,0x16 = ldsb [%i0+%l6], %o2
3
+ 0xd4,0x4e,0x20,0x20 = ldsb [%i0+32], %o2
4
+ 0xd8,0x48,0x60,0x00 = ldsb [%g1], %o4
5
+ 0xd4,0x56,0x00,0x16 = ldsh [%i0+%l6], %o2
6
+ 0xd4,0x56,0x20,0x20 = ldsh [%i0+32], %o2
7
+ 0xd8,0x50,0x60,0x00 = ldsh [%g1], %o4
8
+ 0xd4,0x0e,0x00,0x16 = ldub [%i0+%l6], %o2
9
+ 0xd4,0x0e,0x20,0x20 = ldub [%i0+32], %o2
10
+ 0xd4,0x08,0x60,0x00 = ldub [%g1], %o2
11
+ 0xd4,0x16,0x00,0x16 = lduh [%i0+%l6], %o2
12
+ 0xd4,0x16,0x20,0x20 = lduh [%i0+32], %o2
13
+ 0xd4,0x10,0x60,0x00 = lduh [%g1], %o2
14
+ 0xd4,0x06,0x00,0x16 = ld [%i0+%l6], %o2
15
+ 0xd4,0x06,0x20,0x20 = ld [%i0+32], %o2
16
+ 0xd4,0x00,0x60,0x00 = ld [%g1], %o2
17
+ 0xd4,0x2e,0x00,0x16 = stb %o2, [%i0+%l6]
18
+ 0xd4,0x2e,0x20,0x20 = stb %o2, [%i0+32]
19
+ 0xd4,0x28,0x60,0x00 = stb %o2, [%g1]
20
+ 0xd4,0x36,0x00,0x16 = sth %o2, [%i0+%l6]
21
+ 0xd4,0x36,0x20,0x20 = sth %o2, [%i0+32]
22
+ 0xd4,0x30,0x60,0x00 = sth %o2, [%g1]
23
+ 0xd4,0x26,0x00,0x16 = st %o2, [%i0+%l6]
24
+ 0xd4,0x26,0x20,0x20 = st %o2, [%i0+32]
25
+ 0xd4,0x20,0x60,0x00 = st %o2, [%g1]
@@ -0,0 +1,2 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0xbf,0xb0,0x0c,0x20 = fzeros %f31
@@ -0,0 +1,13 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0xb1,0x28,0x50,0x1a = sllx %g1, %i2, %i0
3
+ 0xb1,0x28,0x70,0x3f = sllx %g1, 63, %i0
4
+ 0xb1,0x30,0x50,0x1a = srlx %g1, %i2, %i0
5
+ 0xb1,0x30,0x70,0x3f = srlx %g1, 63, %i0
6
+ 0xb1,0x38,0x50,0x1a = srax %g1, %i2, %i0
7
+ 0xb1,0x38,0x70,0x3f = srax %g1, 63, %i0
8
+ 0xb0,0x48,0x40,0x1a = mulx %g1, %i2, %i0
9
+ 0xb0,0x48,0x60,0x3f = mulx %g1, 63, %i0
10
+ 0xb1,0x68,0x40,0x1a = sdivx %g1, %i2, %i0
11
+ 0xb1,0x68,0x60,0x3f = sdivx %g1, 63, %i0
12
+ 0xb0,0x68,0x40,0x1a = udivx %g1, %i2, %i0
13
+ 0xb0,0x68,0x60,0x3f = udivx %g1, 63, %i0
@@ -0,0 +1,102 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0x85,0x66,0x40,0x01 = movne %icc, %g1, %g2
3
+ 0x85,0x64,0x40,0x01 = move %icc, %g1, %g2
4
+ 0x85,0x66,0x80,0x01 = movg %icc, %g1, %g2
5
+ 0x85,0x64,0x80,0x01 = movle %icc, %g1, %g2
6
+ 0x85,0x66,0xc0,0x01 = movge %icc, %g1, %g2
7
+ 0x85,0x64,0xc0,0x01 = movl %icc, %g1, %g2
8
+ 0x85,0x67,0x00,0x01 = movgu %icc, %g1, %g2
9
+ 0x85,0x65,0x00,0x01 = movleu %icc, %g1, %g2
10
+ 0x85,0x67,0x40,0x01 = movcc %icc, %g1, %g2
11
+ 0x85,0x65,0x40,0x01 = movcs %icc, %g1, %g2
12
+ 0x85,0x67,0x80,0x01 = movpos %icc, %g1, %g2
13
+ 0x85,0x65,0x80,0x01 = movneg %icc, %g1, %g2
14
+ 0x85,0x67,0xc0,0x01 = movvc %icc, %g1, %g2
15
+ 0x85,0x65,0xc0,0x01 = movvs %icc, %g1, %g2
16
+ 0x85,0x66,0x50,0x01 = movne %xcc, %g1, %g2
17
+ 0x85,0x64,0x50,0x01 = move %xcc, %g1, %g2
18
+ 0x85,0x66,0x90,0x01 = movg %xcc, %g1, %g2
19
+ 0x85,0x64,0x90,0x01 = movle %xcc, %g1, %g2
20
+ 0x85,0x66,0xd0,0x01 = movge %xcc, %g1, %g2
21
+ 0x85,0x64,0xd0,0x01 = movl %xcc, %g1, %g2
22
+ 0x85,0x67,0x10,0x01 = movgu %xcc, %g1, %g2
23
+ 0x85,0x65,0x10,0x01 = movleu %xcc, %g1, %g2
24
+ 0x85,0x67,0x50,0x01 = movcc %xcc, %g1, %g2
25
+ 0x85,0x65,0x50,0x01 = movcs %xcc, %g1, %g2
26
+ 0x85,0x67,0x90,0x01 = movpos %xcc, %g1, %g2
27
+ 0x85,0x65,0x90,0x01 = movneg %xcc, %g1, %g2
28
+ 0x85,0x67,0xd0,0x01 = movvc %xcc, %g1, %g2
29
+ 0x85,0x65,0xd0,0x01 = movvs %xcc, %g1, %g2
30
+ 0x85,0x61,0xc0,0x01 = movu %fcc0, %g1, %g2
31
+ 0x85,0x61,0x80,0x01 = movg %fcc0, %g1, %g2
32
+ 0x85,0x61,0x40,0x01 = movug %fcc0, %g1, %g2
33
+ 0x85,0x61,0x00,0x01 = movl %fcc0, %g1, %g2
34
+ 0x85,0x60,0xc0,0x01 = movul %fcc0, %g1, %g2
35
+ 0x85,0x60,0x80,0x01 = movlg %fcc0, %g1, %g2
36
+ 0x85,0x60,0x40,0x01 = movne %fcc0, %g1, %g2
37
+ 0x85,0x62,0x40,0x01 = move %fcc0, %g1, %g2
38
+ 0x85,0x62,0x80,0x01 = movue %fcc0, %g1, %g2
39
+ 0x85,0x62,0xc0,0x01 = movge %fcc0, %g1, %g2
40
+ 0x85,0x63,0x00,0x01 = movuge %fcc0, %g1, %g2
41
+ 0x85,0x63,0x40,0x01 = movle %fcc0, %g1, %g2
42
+ 0x85,0x63,0x80,0x01 = movule %fcc0, %g1, %g2
43
+ 0x85,0x63,0xc0,0x01 = movo %fcc0, %g1, %g2
44
+ 0x85,0xaa,0x60,0x21 = fmovsne %icc, %f1, %f2
45
+ 0x85,0xa8,0x60,0x21 = fmovse %icc, %f1, %f2
46
+ 0x85,0xaa,0xa0,0x21 = fmovsg %icc, %f1, %f2
47
+ 0x85,0xa8,0xa0,0x21 = fmovsle %icc, %f1, %f2
48
+ 0x85,0xaa,0xe0,0x21 = fmovsge %icc, %f1, %f2
49
+ 0x85,0xa8,0xe0,0x21 = fmovsl %icc, %f1, %f2
50
+ 0x85,0xab,0x20,0x21 = fmovsgu %icc, %f1, %f2
51
+ 0x85,0xa9,0x20,0x21 = fmovsleu %icc, %f1, %f2
52
+ 0x85,0xab,0x60,0x21 = fmovscc %icc, %f1, %f2
53
+ 0x85,0xa9,0x60,0x21 = fmovscs %icc, %f1, %f2
54
+ 0x85,0xab,0xa0,0x21 = fmovspos %icc, %f1, %f2
55
+ 0x85,0xa9,0xa0,0x21 = fmovsneg %icc, %f1, %f2
56
+ 0x85,0xab,0xe0,0x21 = fmovsvc %icc, %f1, %f2
57
+ 0x85,0xa9,0xe0,0x21 = fmovsvs %icc, %f1, %f2
58
+ 0x85,0xaa,0x70,0x21 = fmovsne %xcc, %f1, %f2
59
+ 0x85,0xa8,0x70,0x21 = fmovse %xcc, %f1, %f2
60
+ 0x85,0xaa,0xb0,0x21 = fmovsg %xcc, %f1, %f2
61
+ 0x85,0xa8,0xb0,0x21 = fmovsle %xcc, %f1, %f2
62
+ 0x85,0xaa,0xf0,0x21 = fmovsge %xcc, %f1, %f2
63
+ 0x85,0xa8,0xf0,0x21 = fmovsl %xcc, %f1, %f2
64
+ 0x85,0xab,0x30,0x21 = fmovsgu %xcc, %f1, %f2
65
+ 0x85,0xa9,0x30,0x21 = fmovsleu %xcc, %f1, %f2
66
+ 0x85,0xab,0x70,0x21 = fmovscc %xcc, %f1, %f2
67
+ 0x85,0xa9,0x70,0x21 = fmovscs %xcc, %f1, %f2
68
+ 0x85,0xab,0xb0,0x21 = fmovspos %xcc, %f1, %f2
69
+ 0x85,0xa9,0xb0,0x21 = fmovsneg %xcc, %f1, %f2
70
+ 0x85,0xab,0xf0,0x21 = fmovsvc %xcc, %f1, %f2
71
+ 0x85,0xa9,0xf0,0x21 = fmovsvs %xcc, %f1, %f2
72
+ 0x85,0xa9,0xc0,0x21 = fmovsu %fcc0, %f1, %f2
73
+ 0x85,0xa9,0x80,0x21 = fmovsg %fcc0, %f1, %f2
74
+ 0x85,0xa9,0x40,0x21 = fmovsug %fcc0, %f1, %f2
75
+ 0x85,0xa9,0x00,0x21 = fmovsl %fcc0, %f1, %f2
76
+ 0x85,0xa8,0xc0,0x21 = fmovsul %fcc0, %f1, %f2
77
+ 0x85,0xa8,0x80,0x21 = fmovslg %fcc0, %f1, %f2
78
+ 0x85,0xa8,0x40,0x21 = fmovsne %fcc0, %f1, %f2
79
+ 0x85,0xaa,0x40,0x21 = fmovse %fcc0, %f1, %f2
80
+ 0x85,0xaa,0x80,0x21 = fmovsue %fcc0, %f1, %f2
81
+ 0x85,0xaa,0xc0,0x21 = fmovsge %fcc0, %f1, %f2
82
+ 0x85,0xab,0x00,0x21 = fmovsuge %fcc0, %f1, %f2
83
+ 0x85,0xab,0x40,0x21 = fmovsle %fcc0, %f1, %f2
84
+ 0x85,0xab,0x80,0x21 = fmovsule %fcc0, %f1, %f2
85
+ 0x85,0xab,0xc0,0x21 = fmovso %fcc0, %f1, %f2
86
+ 0x85,0x61,0xc8,0x01 = movu %fcc1, %g1, %g2
87
+ 0x85,0xa9,0x90,0x21 = fmovsg %fcc2, %f1, %f2
88
+ 0x87,0x78,0x44,0x02 = movrz %g1, %g2, %g3
89
+ 0x87,0x78,0x48,0x02 = movrlez %g1, %g2, %g3
90
+ 0x87,0x78,0x4c,0x02 = movrlz %g1, %g2, %g3
91
+ 0x87,0x78,0x54,0x02 = movrnz %g1, %g2, %g3
92
+ 0x87,0x78,0x58,0x02 = movrgz %g1, %g2, %g3
93
+ 0x87,0x78,0x5c,0x02 = movrgez %g1, %g2, %g3
94
+ 0x87,0xa8,0x44,0xa2 = fmovrsz %g1, %f2, %f3
95
+ 0x87,0xa8,0x48,0xa2 = fmovrslez %g1, %f2, %f3
96
+ 0x87,0xa8,0x4c,0xa2 = fmovrslz %g1, %f2, %f3
97
+ 0x87,0xa8,0x54,0xa2 = fmovrsnz %g1, %f2, %f3
98
+ 0x87,0xa8,0x58,0xa2 = fmovrsgz %g1, %f2, %f3
99
+ 0x87,0xa8,0x5c,0xa2 = fmovrsgez %g1, %f2, %f3
100
+ 0x81,0xcf,0xe0,0x08 = rett %i7+8
101
+ 0x91,0xd0,0x20,0x05 = ta %icc, %g0 + 5
102
+ 0x83,0xd0,0x30,0x03 = te %xcc, %g0 + 3
@@ -0,0 +1,7 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
+ 0x81,0xa8,0x0a,0x24 = fcmps %f0, %f4
3
+ 0x81,0xa8,0x0a,0x44 = fcmpd %f0, %f4
4
+ 0x81,0xa8,0x0a,0x64 = fcmpq %f0, %f4
5
+ 0x81,0xa8,0x0a,0xa4 = fcmpes %f0, %f4
6
+ 0x81,0xa8,0x0a,0xc4 = fcmped %f0, %f4
7
+ 0x81,0xa8,0x0a,0xe4 = fcmpeq %f0, %f4
@@ -0,0 +1 @@
1
+ # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
@@ -0,0 +1,589 @@
1
+ # CS_ARCH_SYSZ, 0, None
2
+ 0xec,0x00,0x80,0x00,0x00,0xd9 = aghik %r0, %r0, -32768
3
+ 0xec,0x00,0xff,0xff,0x00,0xd9 = aghik %r0, %r0, -1
4
+ 0xec,0x00,0x00,0x00,0x00,0xd9 = aghik %r0, %r0, 0
5
+ 0xec,0x00,0x00,0x01,0x00,0xd9 = aghik %r0, %r0, 1
6
+ 0xec,0x00,0x7f,0xff,0x00,0xd9 = aghik %r0, %r0, 32767
7
+ 0xec,0x0f,0x00,0x00,0x00,0xd9 = aghik %r0, %r15, 0
8
+ 0xec,0xf0,0x00,0x00,0x00,0xd9 = aghik %r15, %r0, 0
9
+ 0xec,0x78,0xff,0xf0,0x00,0xd9 = aghik %r7, %r8, -16
10
+ 0xb9,0xe8,0x00,0x00 = agrk %r0, %r0, %r0
11
+ 0xb9,0xe8,0xf0,0x00 = agrk %r0, %r0, %r15
12
+ 0xb9,0xe8,0x00,0x0f = agrk %r0, %r15, %r0
13
+ 0xb9,0xe8,0x00,0xf0 = agrk %r15, %r0, %r0
14
+ 0xb9,0xe8,0x90,0x78 = agrk %r7, %r8, %r9
15
+ 0xec,0x00,0x80,0x00,0x00,0xd8 = ahik %r0, %r0, -32768
16
+ 0xec,0x00,0xff,0xff,0x00,0xd8 = ahik %r0, %r0, -1
17
+ 0xec,0x00,0x00,0x00,0x00,0xd8 = ahik %r0, %r0, 0
18
+ 0xec,0x00,0x00,0x01,0x00,0xd8 = ahik %r0, %r0, 1
19
+ 0xec,0x00,0x7f,0xff,0x00,0xd8 = ahik %r0, %r0, 32767
20
+ 0xec,0x0f,0x00,0x00,0x00,0xd8 = ahik %r0, %r15, 0
21
+ 0xec,0xf0,0x00,0x00,0x00,0xd8 = ahik %r15, %r0, 0
22
+ 0xec,0x78,0xff,0xf0,0x00,0xd8 = ahik %r7, %r8, -16
23
+ 0xcc,0x08,0x80,0x00,0x00,0x00 = aih %r0, -2147483648
24
+ 0xcc,0x08,0xff,0xff,0xff,0xff = aih %r0, -1
25
+ 0xcc,0x08,0x00,0x00,0x00,0x00 = aih %r0, 0
26
+ 0xcc,0x08,0x00,0x00,0x00,0x01 = aih %r0, 1
27
+ 0xcc,0x08,0x7f,0xff,0xff,0xff = aih %r0, 2147483647
28
+ 0xcc,0xf8,0x00,0x00,0x00,0x00 = aih %r15, 0
29
+ 0xec,0x00,0x80,0x00,0x00,0xdb = alghsik %r0, %r0, -32768
30
+ 0xec,0x00,0xff,0xff,0x00,0xdb = alghsik %r0, %r0, -1
31
+ 0xec,0x00,0x00,0x00,0x00,0xdb = alghsik %r0, %r0, 0
32
+ 0xec,0x00,0x00,0x01,0x00,0xdb = alghsik %r0, %r0, 1
33
+ 0xec,0x00,0x7f,0xff,0x00,0xdb = alghsik %r0, %r0, 32767
34
+ 0xec,0x0f,0x00,0x00,0x00,0xdb = alghsik %r0, %r15, 0
35
+ 0xec,0xf0,0x00,0x00,0x00,0xdb = alghsik %r15, %r0, 0
36
+ 0xec,0x78,0xff,0xf0,0x00,0xdb = alghsik %r7, %r8, -16
37
+ 0xb9,0xea,0x00,0x00 = algrk %r0, %r0, %r0
38
+ 0xb9,0xea,0xf0,0x00 = algrk %r0, %r0, %r15
39
+ 0xb9,0xea,0x00,0x0f = algrk %r0, %r15, %r0
40
+ 0xb9,0xea,0x00,0xf0 = algrk %r15, %r0, %r0
41
+ 0xb9,0xea,0x90,0x78 = algrk %r7, %r8, %r9
42
+ 0xec,0x00,0x80,0x00,0x00,0xda = alhsik %r0, %r0, -32768
43
+ 0xec,0x00,0xff,0xff,0x00,0xda = alhsik %r0, %r0, -1
44
+ 0xec,0x00,0x00,0x00,0x00,0xda = alhsik %r0, %r0, 0
45
+ 0xec,0x00,0x00,0x01,0x00,0xda = alhsik %r0, %r0, 1
46
+ 0xec,0x00,0x7f,0xff,0x00,0xda = alhsik %r0, %r0, 32767
47
+ 0xec,0x0f,0x00,0x00,0x00,0xda = alhsik %r0, %r15, 0
48
+ 0xec,0xf0,0x00,0x00,0x00,0xda = alhsik %r15, %r0, 0
49
+ 0xec,0x78,0xff,0xf0,0x00,0xda = alhsik %r7, %r8, -16
50
+ 0xb9,0xfa,0x00,0x00 = alrk %r0, %r0, %r0
51
+ 0xb9,0xfa,0xf0,0x00 = alrk %r0, %r0, %r15
52
+ 0xb9,0xfa,0x00,0x0f = alrk %r0, %r15, %r0
53
+ 0xb9,0xfa,0x00,0xf0 = alrk %r15, %r0, %r0
54
+ 0xb9,0xfa,0x90,0x78 = alrk %r7, %r8, %r9
55
+ 0xb9,0xf8,0x00,0x00 = ark %r0, %r0, %r0
56
+ 0xb9,0xf8,0xf0,0x00 = ark %r0, %r0, %r15
57
+ 0xb9,0xf8,0x00,0x0f = ark %r0, %r15, %r0
58
+ 0xb9,0xf8,0x00,0xf0 = ark %r15, %r0, %r0
59
+ 0xb9,0xf8,0x90,0x78 = ark %r7, %r8, %r9
60
+ 0xb3,0x91,0x00,0x00 = cdlfbr %f0, 0, %r0, 0
61
+ 0xb3,0x91,0x0f,0x00 = cdlfbr %f0, 0, %r0, 15
62
+ 0xb3,0x91,0x00,0x0f = cdlfbr %f0, 0, %r15, 0
63
+ 0xb3,0x91,0xf0,0x00 = cdlfbr %f0, 15, %r0, 0
64
+ 0xb3,0x91,0x57,0x46 = cdlfbr %f4, 5, %r6, 7
65
+ 0xb3,0x91,0x00,0xf0 = cdlfbr %f15, 0, %r0, 0
66
+ 0xb3,0xa1,0x00,0x00 = cdlgbr %f0, 0, %r0, 0
67
+ 0xb3,0xa1,0x0f,0x00 = cdlgbr %f0, 0, %r0, 15
68
+ 0xb3,0xa1,0x00,0x0f = cdlgbr %f0, 0, %r15, 0
69
+ 0xb3,0xa1,0xf0,0x00 = cdlgbr %f0, 15, %r0, 0
70
+ 0xb3,0xa1,0x57,0x46 = cdlgbr %f4, 5, %r6, 7
71
+ 0xb3,0xa1,0x00,0xf0 = cdlgbr %f15, 0, %r0, 0
72
+ 0xb3,0x90,0x00,0x00 = celfbr %f0, 0, %r0, 0
73
+ 0xb3,0x90,0x0f,0x00 = celfbr %f0, 0, %r0, 15
74
+ 0xb3,0x90,0x00,0x0f = celfbr %f0, 0, %r15, 0
75
+ 0xb3,0x90,0xf0,0x00 = celfbr %f0, 15, %r0, 0
76
+ 0xb3,0x90,0x57,0x46 = celfbr %f4, 5, %r6, 7
77
+ 0xb3,0x90,0x00,0xf0 = celfbr %f15, 0, %r0, 0
78
+ 0xb3,0xa0,0x00,0x00 = celgbr %f0, 0, %r0, 0
79
+ 0xb3,0xa0,0x0f,0x00 = celgbr %f0, 0, %r0, 15
80
+ 0xb3,0xa0,0x00,0x0f = celgbr %f0, 0, %r15, 0
81
+ 0xb3,0xa0,0xf0,0x00 = celgbr %f0, 15, %r0, 0
82
+ 0xb3,0xa0,0x57,0x46 = celgbr %f4, 5, %r6, 7
83
+ 0xb3,0xa0,0x00,0xf0 = celgbr %f15, 0, %r0, 0
84
+ 0xe3,0x00,0x00,0x00,0x80,0xcd = chf %r0, -524288
85
+ 0xe3,0x00,0x0f,0xff,0xff,0xcd = chf %r0, -1
86
+ 0xe3,0x00,0x00,0x00,0x00,0xcd = chf %r0, 0
87
+ 0xe3,0x00,0x00,0x01,0x00,0xcd = chf %r0, 1
88
+ 0xe3,0x00,0x0f,0xff,0x7f,0xcd = chf %r0, 524287
89
+ 0xe3,0x00,0x10,0x00,0x00,0xcd = chf %r0, 0(%r1)
90
+ 0xe3,0x00,0xf0,0x00,0x00,0xcd = chf %r0, 0(%r15)
91
+ 0xe3,0x01,0xff,0xff,0x7f,0xcd = chf %r0, 524287(%r1,%r15)
92
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xcd = chf %r0, 524287(%r15,%r1)
93
+ 0xe3,0xf0,0x00,0x00,0x00,0xcd = chf %r15, 0
94
+ 0xcc,0x0d,0x80,0x00,0x00,0x00 = cih %r0, -2147483648
95
+ 0xcc,0x0d,0xff,0xff,0xff,0xff = cih %r0, -1
96
+ 0xcc,0x0d,0x00,0x00,0x00,0x00 = cih %r0, 0
97
+ 0xcc,0x0d,0x00,0x00,0x00,0x01 = cih %r0, 1
98
+ 0xcc,0x0d,0x7f,0xff,0xff,0xff = cih %r0, 2147483647
99
+ 0xcc,0xfd,0x00,0x00,0x00,0x00 = cih %r15, 0
100
+ 0xb3,0x9d,0x00,0x00 = clfdbr %r0, 0, %f0, 0
101
+ 0xb3,0x9d,0x0f,0x00 = clfdbr %r0, 0, %f0, 15
102
+ 0xb3,0x9d,0x00,0x0f = clfdbr %r0, 0, %f15, 0
103
+ 0xb3,0x9d,0xf0,0x00 = clfdbr %r0, 15, %f0, 0
104
+ 0xb3,0x9d,0x57,0x46 = clfdbr %r4, 5, %f6, 7
105
+ 0xb3,0x9d,0x00,0xf0 = clfdbr %r15, 0, %f0, 0
106
+ 0xb3,0x9c,0x00,0x00 = clfebr %r0, 0, %f0, 0
107
+ 0xb3,0x9c,0x0f,0x00 = clfebr %r0, 0, %f0, 15
108
+ 0xb3,0x9c,0x00,0x0f = clfebr %r0, 0, %f15, 0
109
+ 0xb3,0x9c,0xf0,0x00 = clfebr %r0, 15, %f0, 0
110
+ 0xb3,0x9c,0x57,0x46 = clfebr %r4, 5, %f6, 7
111
+ 0xb3,0x9c,0x00,0xf0 = clfebr %r15, 0, %f0, 0
112
+ 0xb3,0x9e,0x00,0x00 = clfxbr %r0, 0, %f0, 0
113
+ 0xb3,0x9e,0x0f,0x00 = clfxbr %r0, 0, %f0, 15
114
+ 0xb3,0x9e,0x00,0x0d = clfxbr %r0, 0, %f13, 0
115
+ 0xb3,0x9e,0xf0,0x00 = clfxbr %r0, 15, %f0, 0
116
+ 0xb3,0x9e,0x59,0x78 = clfxbr %r7, 5, %f8, 9
117
+ 0xb3,0x9e,0x00,0xf0 = clfxbr %r15, 0, %f0, 0
118
+ 0xb3,0xad,0x00,0x00 = clgdbr %r0, 0, %f0, 0
119
+ 0xb3,0xad,0x0f,0x00 = clgdbr %r0, 0, %f0, 15
120
+ 0xb3,0xad,0x00,0x0f = clgdbr %r0, 0, %f15, 0
121
+ 0xb3,0xad,0xf0,0x00 = clgdbr %r0, 15, %f0, 0
122
+ 0xb3,0xad,0x57,0x46 = clgdbr %r4, 5, %f6, 7
123
+ 0xb3,0xad,0x00,0xf0 = clgdbr %r15, 0, %f0, 0
124
+ 0xb3,0xac,0x00,0x00 = clgebr %r0, 0, %f0, 0
125
+ 0xb3,0xac,0x0f,0x00 = clgebr %r0, 0, %f0, 15
126
+ 0xb3,0xac,0x00,0x0f = clgebr %r0, 0, %f15, 0
127
+ 0xb3,0xac,0xf0,0x00 = clgebr %r0, 15, %f0, 0
128
+ 0xb3,0xac,0x57,0x46 = clgebr %r4, 5, %f6, 7
129
+ 0xb3,0xac,0x00,0xf0 = clgebr %r15, 0, %f0, 0
130
+ 0xb3,0xae,0x00,0x00 = clgxbr %r0, 0, %f0, 0
131
+ 0xb3,0xae,0x0f,0x00 = clgxbr %r0, 0, %f0, 15
132
+ 0xb3,0xae,0x00,0x0d = clgxbr %r0, 0, %f13, 0
133
+ 0xb3,0xae,0xf0,0x00 = clgxbr %r0, 15, %f0, 0
134
+ 0xb3,0xae,0x59,0x78 = clgxbr %r7, 5, %f8, 9
135
+ 0xb3,0xae,0x00,0xf0 = clgxbr %r15, 0, %f0, 0
136
+ 0xe3,0x00,0x00,0x00,0x80,0xcf = clhf %r0, -524288
137
+ 0xe3,0x00,0x0f,0xff,0xff,0xcf = clhf %r0, -1
138
+ 0xe3,0x00,0x00,0x00,0x00,0xcf = clhf %r0, 0
139
+ 0xe3,0x00,0x00,0x01,0x00,0xcf = clhf %r0, 1
140
+ 0xe3,0x00,0x0f,0xff,0x7f,0xcf = clhf %r0, 524287
141
+ 0xe3,0x00,0x10,0x00,0x00,0xcf = clhf %r0, 0(%r1)
142
+ 0xe3,0x00,0xf0,0x00,0x00,0xcf = clhf %r0, 0(%r15)
143
+ 0xe3,0x01,0xff,0xff,0x7f,0xcf = clhf %r0, 524287(%r1,%r15)
144
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xcf = clhf %r0, 524287(%r15,%r1)
145
+ 0xe3,0xf0,0x00,0x00,0x00,0xcf = clhf %r15, 0
146
+ 0xcc,0x0f,0x00,0x00,0x00,0x00 = clih %r0, 0
147
+ 0xcc,0x0f,0x00,0x00,0x00,0x01 = clih %r0, 1
148
+ 0xcc,0x0f,0xff,0xff,0xff,0xff = clih %r0, 4294967295
149
+ 0xcc,0xff,0x00,0x00,0x00,0x00 = clih %r15, 0
150
+ 0xb3,0x92,0x00,0x00 = cxlfbr %f0, 0, %r0, 0
151
+ 0xb3,0x92,0x0f,0x00 = cxlfbr %f0, 0, %r0, 15
152
+ 0xb3,0x92,0x00,0x0f = cxlfbr %f0, 0, %r15, 0
153
+ 0xb3,0x92,0xf0,0x00 = cxlfbr %f0, 15, %r0, 0
154
+ 0xb3,0x92,0x5a,0x49 = cxlfbr %f4, 5, %r9, 10
155
+ 0xb3,0x92,0x00,0xd0 = cxlfbr %f13, 0, %r0, 0
156
+ 0xb3,0xa2,0x00,0x00 = cxlgbr %f0, 0, %r0, 0
157
+ 0xb3,0xa2,0x0f,0x00 = cxlgbr %f0, 0, %r0, 15
158
+ 0xb3,0xa2,0x00,0x0f = cxlgbr %f0, 0, %r15, 0
159
+ 0xb3,0xa2,0xf0,0x00 = cxlgbr %f0, 15, %r0, 0
160
+ 0xb3,0xa2,0x5a,0x49 = cxlgbr %f4, 5, %r9, 10
161
+ 0xb3,0xa2,0x00,0xd0 = cxlgbr %f13, 0, %r0, 0
162
+ 0xb3,0x5f,0x00,0x00 = fidbra %f0, 0, %f0, 0
163
+ 0xb3,0x5f,0x0f,0x00 = fidbra %f0, 0, %f0, 15
164
+ 0xb3,0x5f,0x00,0x0f = fidbra %f0, 0, %f15, 0
165
+ 0xb3,0x5f,0xf0,0x00 = fidbra %f0, 15, %f0, 0
166
+ 0xb3,0x5f,0x57,0x46 = fidbra %f4, 5, %f6, 7
167
+ 0xb3,0x5f,0x00,0xf0 = fidbra %f15, 0, %f0, 0
168
+ 0xb3,0x57,0x00,0x00 = fiebra %f0, 0, %f0, 0
169
+ 0xb3,0x57,0x0f,0x00 = fiebra %f0, 0, %f0, 15
170
+ 0xb3,0x57,0x00,0x0f = fiebra %f0, 0, %f15, 0
171
+ 0xb3,0x57,0xf0,0x00 = fiebra %f0, 15, %f0, 0
172
+ 0xb3,0x57,0x57,0x46 = fiebra %f4, 5, %f6, 7
173
+ 0xb3,0x57,0x00,0xf0 = fiebra %f15, 0, %f0, 0
174
+ 0xb3,0x47,0x00,0x00 = fixbra %f0, 0, %f0, 0
175
+ 0xb3,0x47,0x0f,0x00 = fixbra %f0, 0, %f0, 15
176
+ 0xb3,0x47,0x00,0x0d = fixbra %f0, 0, %f13, 0
177
+ 0xb3,0x47,0xf0,0x00 = fixbra %f0, 15, %f0, 0
178
+ 0xb3,0x47,0x59,0x48 = fixbra %f4, 5, %f8, 9
179
+ 0xb3,0x47,0x00,0xd0 = fixbra %f13, 0, %f0, 0
180
+ 0xeb,0x00,0x00,0x00,0x80,0xf8 = laa %r0, %r0, -524288
181
+ 0xeb,0x00,0x0f,0xff,0xff,0xf8 = laa %r0, %r0, -1
182
+ 0xeb,0x00,0x00,0x00,0x00,0xf8 = laa %r0, %r0, 0
183
+ 0xeb,0x00,0x00,0x01,0x00,0xf8 = laa %r0, %r0, 1
184
+ 0xeb,0x00,0x0f,0xff,0x7f,0xf8 = laa %r0, %r0, 524287
185
+ 0xeb,0x00,0x10,0x00,0x00,0xf8 = laa %r0, %r0, 0(%r1)
186
+ 0xeb,0x00,0xf0,0x00,0x00,0xf8 = laa %r0, %r0, 0(%r15)
187
+ 0xeb,0x00,0x1f,0xff,0x7f,0xf8 = laa %r0, %r0, 524287(%r1)
188
+ 0xeb,0x00,0xff,0xff,0x7f,0xf8 = laa %r0, %r0, 524287(%r15)
189
+ 0xeb,0x0f,0x00,0x00,0x00,0xf8 = laa %r0, %r15, 0
190
+ 0xeb,0xf0,0x00,0x00,0x00,0xf8 = laa %r15, %r0, 0
191
+ 0xeb,0x00,0x00,0x00,0x80,0xe8 = laag %r0, %r0, -524288
192
+ 0xeb,0x00,0x0f,0xff,0xff,0xe8 = laag %r0, %r0, -1
193
+ 0xeb,0x00,0x00,0x00,0x00,0xe8 = laag %r0, %r0, 0
194
+ 0xeb,0x00,0x00,0x01,0x00,0xe8 = laag %r0, %r0, 1
195
+ 0xeb,0x00,0x0f,0xff,0x7f,0xe8 = laag %r0, %r0, 524287
196
+ 0xeb,0x00,0x10,0x00,0x00,0xe8 = laag %r0, %r0, 0(%r1)
197
+ 0xeb,0x00,0xf0,0x00,0x00,0xe8 = laag %r0, %r0, 0(%r15)
198
+ 0xeb,0x00,0x1f,0xff,0x7f,0xe8 = laag %r0, %r0, 524287(%r1)
199
+ 0xeb,0x00,0xff,0xff,0x7f,0xe8 = laag %r0, %r0, 524287(%r15)
200
+ 0xeb,0x0f,0x00,0x00,0x00,0xe8 = laag %r0, %r15, 0
201
+ 0xeb,0xf0,0x00,0x00,0x00,0xe8 = laag %r15, %r0, 0
202
+ 0xeb,0x00,0x00,0x00,0x80,0xfa = laal %r0, %r0, -524288
203
+ 0xeb,0x00,0x0f,0xff,0xff,0xfa = laal %r0, %r0, -1
204
+ 0xeb,0x00,0x00,0x00,0x00,0xfa = laal %r0, %r0, 0
205
+ 0xeb,0x00,0x00,0x01,0x00,0xfa = laal %r0, %r0, 1
206
+ 0xeb,0x00,0x0f,0xff,0x7f,0xfa = laal %r0, %r0, 524287
207
+ 0xeb,0x00,0x10,0x00,0x00,0xfa = laal %r0, %r0, 0(%r1)
208
+ 0xeb,0x00,0xf0,0x00,0x00,0xfa = laal %r0, %r0, 0(%r15)
209
+ 0xeb,0x00,0x1f,0xff,0x7f,0xfa = laal %r0, %r0, 524287(%r1)
210
+ 0xeb,0x00,0xff,0xff,0x7f,0xfa = laal %r0, %r0, 524287(%r15)
211
+ 0xeb,0x0f,0x00,0x00,0x00,0xfa = laal %r0, %r15, 0
212
+ 0xeb,0xf0,0x00,0x00,0x00,0xfa = laal %r15, %r0, 0
213
+ 0xeb,0x00,0x00,0x00,0x80,0xea = laalg %r0, %r0, -524288
214
+ 0xeb,0x00,0x0f,0xff,0xff,0xea = laalg %r0, %r0, -1
215
+ 0xeb,0x00,0x00,0x00,0x00,0xea = laalg %r0, %r0, 0
216
+ 0xeb,0x00,0x00,0x01,0x00,0xea = laalg %r0, %r0, 1
217
+ 0xeb,0x00,0x0f,0xff,0x7f,0xea = laalg %r0, %r0, 524287
218
+ 0xeb,0x00,0x10,0x00,0x00,0xea = laalg %r0, %r0, 0(%r1)
219
+ 0xeb,0x00,0xf0,0x00,0x00,0xea = laalg %r0, %r0, 0(%r15)
220
+ 0xeb,0x00,0x1f,0xff,0x7f,0xea = laalg %r0, %r0, 524287(%r1)
221
+ 0xeb,0x00,0xff,0xff,0x7f,0xea = laalg %r0, %r0, 524287(%r15)
222
+ 0xeb,0x0f,0x00,0x00,0x00,0xea = laalg %r0, %r15, 0
223
+ 0xeb,0xf0,0x00,0x00,0x00,0xea = laalg %r15, %r0, 0
224
+ 0xeb,0x00,0x00,0x00,0x80,0xf4 = lan %r0, %r0, -524288
225
+ 0xeb,0x00,0x0f,0xff,0xff,0xf4 = lan %r0, %r0, -1
226
+ 0xeb,0x00,0x00,0x00,0x00,0xf4 = lan %r0, %r0, 0
227
+ 0xeb,0x00,0x00,0x01,0x00,0xf4 = lan %r0, %r0, 1
228
+ 0xeb,0x00,0x0f,0xff,0x7f,0xf4 = lan %r0, %r0, 524287
229
+ 0xeb,0x00,0x10,0x00,0x00,0xf4 = lan %r0, %r0, 0(%r1)
230
+ 0xeb,0x00,0xf0,0x00,0x00,0xf4 = lan %r0, %r0, 0(%r15)
231
+ 0xeb,0x00,0x1f,0xff,0x7f,0xf4 = lan %r0, %r0, 524287(%r1)
232
+ 0xeb,0x00,0xff,0xff,0x7f,0xf4 = lan %r0, %r0, 524287(%r15)
233
+ 0xeb,0x0f,0x00,0x00,0x00,0xf4 = lan %r0, %r15, 0
234
+ 0xeb,0xf0,0x00,0x00,0x00,0xf4 = lan %r15, %r0, 0
235
+ 0xeb,0x00,0x00,0x00,0x80,0xe4 = lang %r0, %r0, -524288
236
+ 0xeb,0x00,0x0f,0xff,0xff,0xe4 = lang %r0, %r0, -1
237
+ 0xeb,0x00,0x00,0x00,0x00,0xe4 = lang %r0, %r0, 0
238
+ 0xeb,0x00,0x00,0x01,0x00,0xe4 = lang %r0, %r0, 1
239
+ 0xeb,0x00,0x0f,0xff,0x7f,0xe4 = lang %r0, %r0, 524287
240
+ 0xeb,0x00,0x10,0x00,0x00,0xe4 = lang %r0, %r0, 0(%r1)
241
+ 0xeb,0x00,0xf0,0x00,0x00,0xe4 = lang %r0, %r0, 0(%r15)
242
+ 0xeb,0x00,0x1f,0xff,0x7f,0xe4 = lang %r0, %r0, 524287(%r1)
243
+ 0xeb,0x00,0xff,0xff,0x7f,0xe4 = lang %r0, %r0, 524287(%r15)
244
+ 0xeb,0x0f,0x00,0x00,0x00,0xe4 = lang %r0, %r15, 0
245
+ 0xeb,0xf0,0x00,0x00,0x00,0xe4 = lang %r15, %r0, 0
246
+ 0xeb,0x00,0x00,0x00,0x80,0xf6 = lao %r0, %r0, -524288
247
+ 0xeb,0x00,0x0f,0xff,0xff,0xf6 = lao %r0, %r0, -1
248
+ 0xeb,0x00,0x00,0x00,0x00,0xf6 = lao %r0, %r0, 0
249
+ 0xeb,0x00,0x00,0x01,0x00,0xf6 = lao %r0, %r0, 1
250
+ 0xeb,0x00,0x0f,0xff,0x7f,0xf6 = lao %r0, %r0, 524287
251
+ 0xeb,0x00,0x10,0x00,0x00,0xf6 = lao %r0, %r0, 0(%r1)
252
+ 0xeb,0x00,0xf0,0x00,0x00,0xf6 = lao %r0, %r0, 0(%r15)
253
+ 0xeb,0x00,0x1f,0xff,0x7f,0xf6 = lao %r0, %r0, 524287(%r1)
254
+ 0xeb,0x00,0xff,0xff,0x7f,0xf6 = lao %r0, %r0, 524287(%r15)
255
+ 0xeb,0x0f,0x00,0x00,0x00,0xf6 = lao %r0, %r15, 0
256
+ 0xeb,0xf0,0x00,0x00,0x00,0xf6 = lao %r15, %r0, 0
257
+ 0xeb,0x00,0x00,0x00,0x80,0xe6 = laog %r0, %r0, -524288
258
+ 0xeb,0x00,0x0f,0xff,0xff,0xe6 = laog %r0, %r0, -1
259
+ 0xeb,0x00,0x00,0x00,0x00,0xe6 = laog %r0, %r0, 0
260
+ 0xeb,0x00,0x00,0x01,0x00,0xe6 = laog %r0, %r0, 1
261
+ 0xeb,0x00,0x0f,0xff,0x7f,0xe6 = laog %r0, %r0, 524287
262
+ 0xeb,0x00,0x10,0x00,0x00,0xe6 = laog %r0, %r0, 0(%r1)
263
+ 0xeb,0x00,0xf0,0x00,0x00,0xe6 = laog %r0, %r0, 0(%r15)
264
+ 0xeb,0x00,0x1f,0xff,0x7f,0xe6 = laog %r0, %r0, 524287(%r1)
265
+ 0xeb,0x00,0xff,0xff,0x7f,0xe6 = laog %r0, %r0, 524287(%r15)
266
+ 0xeb,0x0f,0x00,0x00,0x00,0xe6 = laog %r0, %r15, 0
267
+ 0xeb,0xf0,0x00,0x00,0x00,0xe6 = laog %r15, %r0, 0
268
+ 0xeb,0x00,0x00,0x00,0x80,0xf7 = lax %r0, %r0, -524288
269
+ 0xeb,0x00,0x0f,0xff,0xff,0xf7 = lax %r0, %r0, -1
270
+ 0xeb,0x00,0x00,0x00,0x00,0xf7 = lax %r0, %r0, 0
271
+ 0xeb,0x00,0x00,0x01,0x00,0xf7 = lax %r0, %r0, 1
272
+ 0xeb,0x00,0x0f,0xff,0x7f,0xf7 = lax %r0, %r0, 524287
273
+ 0xeb,0x00,0x10,0x00,0x00,0xf7 = lax %r0, %r0, 0(%r1)
274
+ 0xeb,0x00,0xf0,0x00,0x00,0xf7 = lax %r0, %r0, 0(%r15)
275
+ 0xeb,0x00,0x1f,0xff,0x7f,0xf7 = lax %r0, %r0, 524287(%r1)
276
+ 0xeb,0x00,0xff,0xff,0x7f,0xf7 = lax %r0, %r0, 524287(%r15)
277
+ 0xeb,0x0f,0x00,0x00,0x00,0xf7 = lax %r0, %r15, 0
278
+ 0xeb,0xf0,0x00,0x00,0x00,0xf7 = lax %r15, %r0, 0
279
+ 0xeb,0x00,0x00,0x00,0x80,0xe7 = laxg %r0, %r0, -524288
280
+ 0xeb,0x00,0x0f,0xff,0xff,0xe7 = laxg %r0, %r0, -1
281
+ 0xeb,0x00,0x00,0x00,0x00,0xe7 = laxg %r0, %r0, 0
282
+ 0xeb,0x00,0x00,0x01,0x00,0xe7 = laxg %r0, %r0, 1
283
+ 0xeb,0x00,0x0f,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287
284
+ 0xeb,0x00,0x10,0x00,0x00,0xe7 = laxg %r0, %r0, 0(%r1)
285
+ 0xeb,0x00,0xf0,0x00,0x00,0xe7 = laxg %r0, %r0, 0(%r15)
286
+ 0xeb,0x00,0x1f,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287(%r1)
287
+ 0xeb,0x00,0xff,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287(%r15)
288
+ 0xeb,0x0f,0x00,0x00,0x00,0xe7 = laxg %r0, %r15, 0
289
+ 0xeb,0xf0,0x00,0x00,0x00,0xe7 = laxg %r15, %r0, 0
290
+ 0xe3,0x00,0x00,0x00,0x80,0xc0 = lbh %r0, -524288
291
+ 0xe3,0x00,0x0f,0xff,0xff,0xc0 = lbh %r0, -1
292
+ 0xe3,0x00,0x00,0x00,0x00,0xc0 = lbh %r0, 0
293
+ 0xe3,0x00,0x00,0x01,0x00,0xc0 = lbh %r0, 1
294
+ 0xe3,0x00,0x0f,0xff,0x7f,0xc0 = lbh %r0, 524287
295
+ 0xe3,0x00,0x10,0x00,0x00,0xc0 = lbh %r0, 0(%r1)
296
+ 0xe3,0x00,0xf0,0x00,0x00,0xc0 = lbh %r0, 0(%r15)
297
+ 0xe3,0x01,0xff,0xff,0x7f,0xc0 = lbh %r0, 524287(%r1,%r15)
298
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xc0 = lbh %r0, 524287(%r15,%r1)
299
+ 0xe3,0xf0,0x00,0x00,0x00,0xc0 = lbh %r15, 0
300
+ 0xe3,0x00,0x00,0x00,0x80,0xca = lfh %r0, -524288
301
+ 0xe3,0x00,0x0f,0xff,0xff,0xca = lfh %r0, -1
302
+ 0xe3,0x00,0x00,0x00,0x00,0xca = lfh %r0, 0
303
+ 0xe3,0x00,0x00,0x01,0x00,0xca = lfh %r0, 1
304
+ 0xe3,0x00,0x0f,0xff,0x7f,0xca = lfh %r0, 524287
305
+ 0xe3,0x00,0x10,0x00,0x00,0xca = lfh %r0, 0(%r1)
306
+ 0xe3,0x00,0xf0,0x00,0x00,0xca = lfh %r0, 0(%r15)
307
+ 0xe3,0x01,0xff,0xff,0x7f,0xca = lfh %r0, 524287(%r1,%r15)
308
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xca = lfh %r0, 524287(%r15,%r1)
309
+ 0xe3,0xf0,0x00,0x00,0x00,0xca = lfh %r15, 0
310
+ 0xe3,0x00,0x00,0x00,0x80,0xc4 = lhh %r0, -524288
311
+ 0xe3,0x00,0x0f,0xff,0xff,0xc4 = lhh %r0, -1
312
+ 0xe3,0x00,0x00,0x00,0x00,0xc4 = lhh %r0, 0
313
+ 0xe3,0x00,0x00,0x01,0x00,0xc4 = lhh %r0, 1
314
+ 0xe3,0x00,0x0f,0xff,0x7f,0xc4 = lhh %r0, 524287
315
+ 0xe3,0x00,0x10,0x00,0x00,0xc4 = lhh %r0, 0(%r1)
316
+ 0xe3,0x00,0xf0,0x00,0x00,0xc4 = lhh %r0, 0(%r15)
317
+ 0xe3,0x01,0xff,0xff,0x7f,0xc4 = lhh %r0, 524287(%r1,%r15)
318
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xc4 = lhh %r0, 524287(%r15,%r1)
319
+ 0xe3,0xf0,0x00,0x00,0x00,0xc4 = lhh %r15, 0
320
+ 0xe3,0x00,0x00,0x00,0x80,0xc2 = llch %r0, -524288
321
+ 0xe3,0x00,0x0f,0xff,0xff,0xc2 = llch %r0, -1
322
+ 0xe3,0x00,0x00,0x00,0x00,0xc2 = llch %r0, 0
323
+ 0xe3,0x00,0x00,0x01,0x00,0xc2 = llch %r0, 1
324
+ 0xe3,0x00,0x0f,0xff,0x7f,0xc2 = llch %r0, 524287
325
+ 0xe3,0x00,0x10,0x00,0x00,0xc2 = llch %r0, 0(%r1)
326
+ 0xe3,0x00,0xf0,0x00,0x00,0xc2 = llch %r0, 0(%r15)
327
+ 0xe3,0x01,0xff,0xff,0x7f,0xc2 = llch %r0, 524287(%r1,%r15)
328
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xc2 = llch %r0, 524287(%r15,%r1)
329
+ 0xe3,0xf0,0x00,0x00,0x00,0xc2 = llch %r15, 0
330
+ 0xe3,0x00,0x00,0x00,0x80,0xc6 = llhh %r0, -524288
331
+ 0xe3,0x00,0x0f,0xff,0xff,0xc6 = llhh %r0, -1
332
+ 0xe3,0x00,0x00,0x00,0x00,0xc6 = llhh %r0, 0
333
+ 0xe3,0x00,0x00,0x01,0x00,0xc6 = llhh %r0, 1
334
+ 0xe3,0x00,0x0f,0xff,0x7f,0xc6 = llhh %r0, 524287
335
+ 0xe3,0x00,0x10,0x00,0x00,0xc6 = llhh %r0, 0(%r1)
336
+ 0xe3,0x00,0xf0,0x00,0x00,0xc6 = llhh %r0, 0(%r15)
337
+ 0xe3,0x01,0xff,0xff,0x7f,0xc6 = llhh %r0, 524287(%r1,%r15)
338
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xc6 = llhh %r0, 524287(%r15,%r1)
339
+ 0xe3,0xf0,0x00,0x00,0x00,0xc6 = llhh %r15, 0
340
+ 0xeb,0x00,0x00,0x00,0x00,0xf2 = loc %r0, 0, 0
341
+ 0xeb,0x0f,0x00,0x00,0x00,0xf2 = loc %r0, 0, 15
342
+ 0xeb,0x00,0x00,0x00,0x80,0xf2 = loc %r0, -524288, 0
343
+ 0xeb,0x00,0x0f,0xff,0x7f,0xf2 = loc %r0, 524287, 0
344
+ 0xeb,0x00,0x10,0x00,0x00,0xf2 = loc %r0, 0(%r1), 0
345
+ 0xeb,0x00,0xf0,0x00,0x00,0xf2 = loc %r0, 0(%r15), 0
346
+ 0xeb,0xf0,0x00,0x00,0x00,0xf2 = loc %r15, 0, 0
347
+ 0xeb,0x13,0x2f,0xff,0x00,0xf2 = loc %r1, 4095(%r2), 3
348
+ 0xeb,0x11,0x30,0x02,0x00,0xf2 = loco %r1, 2(%r3)
349
+ 0xeb,0x12,0x30,0x02,0x00,0xf2 = loch %r1, 2(%r3)
350
+ 0xeb,0x13,0x30,0x02,0x00,0xf2 = locnle %r1, 2(%r3)
351
+ 0xeb,0x14,0x30,0x02,0x00,0xf2 = locl %r1, 2(%r3)
352
+ 0xeb,0x15,0x30,0x02,0x00,0xf2 = locnhe %r1, 2(%r3)
353
+ 0xeb,0x16,0x30,0x02,0x00,0xf2 = loclh %r1, 2(%r3)
354
+ 0xeb,0x17,0x30,0x02,0x00,0xf2 = locne %r1, 2(%r3)
355
+ 0xeb,0x18,0x30,0x02,0x00,0xf2 = loce %r1, 2(%r3)
356
+ 0xeb,0x19,0x30,0x02,0x00,0xf2 = locnlh %r1, 2(%r3)
357
+ 0xeb,0x1a,0x30,0x02,0x00,0xf2 = loche %r1, 2(%r3)
358
+ 0xeb,0x1b,0x30,0x02,0x00,0xf2 = locnl %r1, 2(%r3)
359
+ 0xeb,0x1c,0x30,0x02,0x00,0xf2 = locle %r1, 2(%r3)
360
+ 0xeb,0x1d,0x30,0x02,0x00,0xf2 = locnh %r1, 2(%r3)
361
+ 0xeb,0x1e,0x30,0x02,0x00,0xf2 = locno %r1, 2(%r3)
362
+ 0xeb,0x00,0x00,0x00,0x00,0xe2 = locg %r0, 0, 0
363
+ 0xeb,0x0f,0x00,0x00,0x00,0xe2 = locg %r0, 0, 15
364
+ 0xeb,0x00,0x00,0x00,0x80,0xe2 = locg %r0, -524288, 0
365
+ 0xeb,0x00,0x0f,0xff,0x7f,0xe2 = locg %r0, 524287, 0
366
+ 0xeb,0x00,0x10,0x00,0x00,0xe2 = locg %r0, 0(%r1), 0
367
+ 0xeb,0x00,0xf0,0x00,0x00,0xe2 = locg %r0, 0(%r15), 0
368
+ 0xeb,0xf0,0x00,0x00,0x00,0xe2 = locg %r15, 0, 0
369
+ 0xeb,0x13,0x2f,0xff,0x00,0xe2 = locg %r1, 4095(%r2), 3
370
+ 0xeb,0x11,0x30,0x02,0x00,0xe2 = locgo %r1, 2(%r3)
371
+ 0xeb,0x12,0x30,0x02,0x00,0xe2 = locgh %r1, 2(%r3)
372
+ 0xeb,0x13,0x30,0x02,0x00,0xe2 = locgnle %r1, 2(%r3)
373
+ 0xeb,0x14,0x30,0x02,0x00,0xe2 = locgl %r1, 2(%r3)
374
+ 0xeb,0x15,0x30,0x02,0x00,0xe2 = locgnhe %r1, 2(%r3)
375
+ 0xeb,0x16,0x30,0x02,0x00,0xe2 = locglh %r1, 2(%r3)
376
+ 0xeb,0x17,0x30,0x02,0x00,0xe2 = locgne %r1, 2(%r3)
377
+ 0xeb,0x18,0x30,0x02,0x00,0xe2 = locge %r1, 2(%r3)
378
+ 0xeb,0x19,0x30,0x02,0x00,0xe2 = locgnlh %r1, 2(%r3)
379
+ 0xeb,0x1a,0x30,0x02,0x00,0xe2 = locghe %r1, 2(%r3)
380
+ 0xeb,0x1b,0x30,0x02,0x00,0xe2 = locgnl %r1, 2(%r3)
381
+ 0xeb,0x1c,0x30,0x02,0x00,0xe2 = locgle %r1, 2(%r3)
382
+ 0xeb,0x1d,0x30,0x02,0x00,0xe2 = locgnh %r1, 2(%r3)
383
+ 0xeb,0x1e,0x30,0x02,0x00,0xe2 = locgno %r1, 2(%r3)
384
+ 0xb9,0xe2,0x00,0x12 = locgr %r1, %r2, 0
385
+ 0xb9,0xe2,0xf0,0x12 = locgr %r1, %r2, 15
386
+ 0xb9,0xe2,0x10,0x13 = locgro %r1, %r3
387
+ 0xb9,0xe2,0x20,0x13 = locgrh %r1, %r3
388
+ 0xb9,0xe2,0x30,0x13 = locgrnle %r1, %r3
389
+ 0xb9,0xe2,0x40,0x13 = locgrl %r1, %r3
390
+ 0xb9,0xe2,0x50,0x13 = locgrnhe %r1, %r3
391
+ 0xb9,0xe2,0x60,0x13 = locgrlh %r1, %r3
392
+ 0xb9,0xe2,0x70,0x13 = locgrne %r1, %r3
393
+ 0xb9,0xe2,0x80,0x13 = locgre %r1, %r3
394
+ 0xb9,0xe2,0x90,0x13 = locgrnlh %r1, %r3
395
+ 0xb9,0xe2,0xa0,0x13 = locgrhe %r1, %r3
396
+ 0xb9,0xe2,0xb0,0x13 = locgrnl %r1, %r3
397
+ 0xb9,0xe2,0xc0,0x13 = locgrle %r1, %r3
398
+ 0xb9,0xe2,0xd0,0x13 = locgrnh %r1, %r3
399
+ 0xb9,0xe2,0xe0,0x13 = locgrno %r1, %r3
400
+ 0xb9,0xf2,0x00,0x12 = locr %r1, %r2, 0
401
+ 0xb9,0xf2,0xf0,0x12 = locr %r1, %r2, 15
402
+ 0xb9,0xf2,0x10,0x13 = locro %r1, %r3
403
+ 0xb9,0xf2,0x20,0x13 = locrh %r1, %r3
404
+ 0xb9,0xf2,0x30,0x13 = locrnle %r1, %r3
405
+ 0xb9,0xf2,0x40,0x13 = locrl %r1, %r3
406
+ 0xb9,0xf2,0x50,0x13 = locrnhe %r1, %r3
407
+ 0xb9,0xf2,0x60,0x13 = locrlh %r1, %r3
408
+ 0xb9,0xf2,0x70,0x13 = locrne %r1, %r3
409
+ 0xb9,0xf2,0x80,0x13 = locre %r1, %r3
410
+ 0xb9,0xf2,0x90,0x13 = locrnlh %r1, %r3
411
+ 0xb9,0xf2,0xa0,0x13 = locrhe %r1, %r3
412
+ 0xb9,0xf2,0xb0,0x13 = locrnl %r1, %r3
413
+ 0xb9,0xf2,0xc0,0x13 = locrle %r1, %r3
414
+ 0xb9,0xf2,0xd0,0x13 = locrnh %r1, %r3
415
+ 0xb9,0xf2,0xe0,0x13 = locrno %r1, %r3
416
+ 0xb9,0xe4,0x00,0x00 = ngrk %r0, %r0, %r0
417
+ 0xb9,0xe4,0xf0,0x00 = ngrk %r0, %r0, %r15
418
+ 0xb9,0xe4,0x00,0x0f = ngrk %r0, %r15, %r0
419
+ 0xb9,0xe4,0x00,0xf0 = ngrk %r15, %r0, %r0
420
+ 0xb9,0xe4,0x90,0x78 = ngrk %r7, %r8, %r9
421
+ 0xb9,0xf4,0x00,0x00 = nrk %r0, %r0, %r0
422
+ 0xb9,0xf4,0xf0,0x00 = nrk %r0, %r0, %r15
423
+ 0xb9,0xf4,0x00,0x0f = nrk %r0, %r15, %r0
424
+ 0xb9,0xf4,0x00,0xf0 = nrk %r15, %r0, %r0
425
+ 0xb9,0xf4,0x90,0x78 = nrk %r7, %r8, %r9
426
+ 0xb9,0xe6,0x00,0x00 = ogrk %r0, %r0, %r0
427
+ 0xb9,0xe6,0xf0,0x00 = ogrk %r0, %r0, %r15
428
+ 0xb9,0xe6,0x00,0x0f = ogrk %r0, %r15, %r0
429
+ 0xb9,0xe6,0x00,0xf0 = ogrk %r15, %r0, %r0
430
+ 0xb9,0xe6,0x90,0x78 = ogrk %r7, %r8, %r9
431
+ 0xb9,0xf6,0x00,0x00 = ork %r0, %r0, %r0
432
+ 0xb9,0xf6,0xf0,0x00 = ork %r0, %r0, %r15
433
+ 0xb9,0xf6,0x00,0x0f = ork %r0, %r15, %r0
434
+ 0xb9,0xf6,0x00,0xf0 = ork %r15, %r0, %r0
435
+ 0xb9,0xf6,0x90,0x78 = ork %r7, %r8, %r9
436
+ 0xec,0x00,0x00,0x00,0x00,0x5d = risbhg %r0, %r0, 0, 0, 0
437
+ 0xec,0x00,0x00,0x00,0x3f,0x5d = risbhg %r0, %r0, 0, 0, 63
438
+ 0xec,0x00,0x00,0xff,0x00,0x5d = risbhg %r0, %r0, 0, 255, 0
439
+ 0xec,0x00,0xff,0x00,0x00,0x5d = risbhg %r0, %r0, 255, 0, 0
440
+ 0xec,0x0f,0x00,0x00,0x00,0x5d = risbhg %r0, %r15, 0, 0, 0
441
+ 0xec,0xf0,0x00,0x00,0x00,0x5d = risbhg %r15, %r0, 0, 0, 0
442
+ 0xec,0x45,0x06,0x07,0x08,0x5d = risbhg %r4, %r5, 6, 7, 8
443
+ 0xec,0x00,0x00,0x00,0x00,0x51 = risblg %r0, %r0, 0, 0, 0
444
+ 0xec,0x00,0x00,0x00,0x3f,0x51 = risblg %r0, %r0, 0, 0, 63
445
+ 0xec,0x00,0x00,0xff,0x00,0x51 = risblg %r0, %r0, 0, 255, 0
446
+ 0xec,0x00,0xff,0x00,0x00,0x51 = risblg %r0, %r0, 255, 0, 0
447
+ 0xec,0x0f,0x00,0x00,0x00,0x51 = risblg %r0, %r15, 0, 0, 0
448
+ 0xec,0xf0,0x00,0x00,0x00,0x51 = risblg %r15, %r0, 0, 0, 0
449
+ 0xec,0x45,0x06,0x07,0x08,0x51 = risblg %r4, %r5, 6, 7, 8
450
+ 0xb9,0xe9,0x00,0x00 = sgrk %r0, %r0, %r0
451
+ 0xb9,0xe9,0xf0,0x00 = sgrk %r0, %r0, %r15
452
+ 0xb9,0xe9,0x00,0x0f = sgrk %r0, %r15, %r0
453
+ 0xb9,0xe9,0x00,0xf0 = sgrk %r15, %r0, %r0
454
+ 0xb9,0xe9,0x90,0x78 = sgrk %r7, %r8, %r9
455
+ 0xb9,0xeb,0x00,0x00 = slgrk %r0, %r0, %r0
456
+ 0xb9,0xeb,0xf0,0x00 = slgrk %r0, %r0, %r15
457
+ 0xb9,0xeb,0x00,0x0f = slgrk %r0, %r15, %r0
458
+ 0xb9,0xeb,0x00,0xf0 = slgrk %r15, %r0, %r0
459
+ 0xb9,0xeb,0x90,0x78 = slgrk %r7, %r8, %r9
460
+ 0xb9,0xfb,0x00,0x00 = slrk %r0, %r0, %r0
461
+ 0xb9,0xfb,0xf0,0x00 = slrk %r0, %r0, %r15
462
+ 0xb9,0xfb,0x00,0x0f = slrk %r0, %r15, %r0
463
+ 0xb9,0xfb,0x00,0xf0 = slrk %r15, %r0, %r0
464
+ 0xb9,0xfb,0x90,0x78 = slrk %r7, %r8, %r9
465
+ 0xeb,0x00,0x00,0x00,0x00,0xdf = sllk %r0, %r0, 0
466
+ 0xeb,0xf1,0x00,0x00,0x00,0xdf = sllk %r15, %r1, 0
467
+ 0xeb,0x1f,0x00,0x00,0x00,0xdf = sllk %r1, %r15, 0
468
+ 0xeb,0xff,0x00,0x00,0x00,0xdf = sllk %r15, %r15, 0
469
+ 0xeb,0x00,0x00,0x00,0x80,0xdf = sllk %r0, %r0, -524288
470
+ 0xeb,0x00,0x0f,0xff,0xff,0xdf = sllk %r0, %r0, -1
471
+ 0xeb,0x00,0x00,0x01,0x00,0xdf = sllk %r0, %r0, 1
472
+ 0xeb,0x00,0x0f,0xff,0x7f,0xdf = sllk %r0, %r0, 524287
473
+ 0xeb,0x00,0x10,0x00,0x00,0xdf = sllk %r0, %r0, 0(%r1)
474
+ 0xeb,0x00,0xf0,0x00,0x00,0xdf = sllk %r0, %r0, 0(%r15)
475
+ 0xeb,0x00,0x1f,0xff,0x7f,0xdf = sllk %r0, %r0, 524287(%r1)
476
+ 0xeb,0x00,0xff,0xff,0x7f,0xdf = sllk %r0, %r0, 524287(%r15)
477
+ 0xeb,0x00,0x00,0x00,0x00,0xdc = srak %r0, %r0, 0
478
+ 0xeb,0xf1,0x00,0x00,0x00,0xdc = srak %r15, %r1, 0
479
+ 0xeb,0x1f,0x00,0x00,0x00,0xdc = srak %r1, %r15, 0
480
+ 0xeb,0xff,0x00,0x00,0x00,0xdc = srak %r15, %r15, 0
481
+ 0xeb,0x00,0x00,0x00,0x80,0xdc = srak %r0, %r0, -524288
482
+ 0xeb,0x00,0x0f,0xff,0xff,0xdc = srak %r0, %r0, -1
483
+ 0xeb,0x00,0x00,0x01,0x00,0xdc = srak %r0, %r0, 1
484
+ 0xeb,0x00,0x0f,0xff,0x7f,0xdc = srak %r0, %r0, 524287
485
+ 0xeb,0x00,0x10,0x00,0x00,0xdc = srak %r0, %r0, 0(%r1)
486
+ 0xeb,0x00,0xf0,0x00,0x00,0xdc = srak %r0, %r0, 0(%r15)
487
+ 0xeb,0x00,0x1f,0xff,0x7f,0xdc = srak %r0, %r0, 524287(%r1)
488
+ 0xeb,0x00,0xff,0xff,0x7f,0xdc = srak %r0, %r0, 524287(%r15)
489
+ 0xb9,0xf9,0x00,0x00 = srk %r0, %r0, %r0
490
+ 0xb9,0xf9,0xf0,0x00 = srk %r0, %r0, %r15
491
+ 0xb9,0xf9,0x00,0x0f = srk %r0, %r15, %r0
492
+ 0xb9,0xf9,0x00,0xf0 = srk %r15, %r0, %r0
493
+ 0xb9,0xf9,0x90,0x78 = srk %r7, %r8, %r9
494
+ 0xeb,0x00,0x00,0x00,0x00,0xde = srlk %r0, %r0, 0
495
+ 0xeb,0xf1,0x00,0x00,0x00,0xde = srlk %r15, %r1, 0
496
+ 0xeb,0x1f,0x00,0x00,0x00,0xde = srlk %r1, %r15, 0
497
+ 0xeb,0xff,0x00,0x00,0x00,0xde = srlk %r15, %r15, 0
498
+ 0xeb,0x00,0x00,0x00,0x80,0xde = srlk %r0, %r0, -524288
499
+ 0xeb,0x00,0x0f,0xff,0xff,0xde = srlk %r0, %r0, -1
500
+ 0xeb,0x00,0x00,0x01,0x00,0xde = srlk %r0, %r0, 1
501
+ 0xeb,0x00,0x0f,0xff,0x7f,0xde = srlk %r0, %r0, 524287
502
+ 0xeb,0x00,0x10,0x00,0x00,0xde = srlk %r0, %r0, 0(%r1)
503
+ 0xeb,0x00,0xf0,0x00,0x00,0xde = srlk %r0, %r0, 0(%r15)
504
+ 0xeb,0x00,0x1f,0xff,0x7f,0xde = srlk %r0, %r0, 524287(%r1)
505
+ 0xeb,0x00,0xff,0xff,0x7f,0xde = srlk %r0, %r0, 524287(%r15)
506
+ 0xe3,0x00,0x00,0x00,0x80,0xc3 = stch %r0, -524288
507
+ 0xe3,0x00,0x0f,0xff,0xff,0xc3 = stch %r0, -1
508
+ 0xe3,0x00,0x00,0x00,0x00,0xc3 = stch %r0, 0
509
+ 0xe3,0x00,0x00,0x01,0x00,0xc3 = stch %r0, 1
510
+ 0xe3,0x00,0x0f,0xff,0x7f,0xc3 = stch %r0, 524287
511
+ 0xe3,0x00,0x10,0x00,0x00,0xc3 = stch %r0, 0(%r1)
512
+ 0xe3,0x00,0xf0,0x00,0x00,0xc3 = stch %r0, 0(%r15)
513
+ 0xe3,0x01,0xff,0xff,0x7f,0xc3 = stch %r0, 524287(%r1,%r15)
514
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xc3 = stch %r0, 524287(%r15,%r1)
515
+ 0xe3,0xf0,0x00,0x00,0x00,0xc3 = stch %r15, 0
516
+ 0xe3,0x00,0x00,0x00,0x80,0xc7 = sthh %r0, -524288
517
+ 0xe3,0x00,0x0f,0xff,0xff,0xc7 = sthh %r0, -1
518
+ 0xe3,0x00,0x00,0x00,0x00,0xc7 = sthh %r0, 0
519
+ 0xe3,0x00,0x00,0x01,0x00,0xc7 = sthh %r0, 1
520
+ 0xe3,0x00,0x0f,0xff,0x7f,0xc7 = sthh %r0, 524287
521
+ 0xe3,0x00,0x10,0x00,0x00,0xc7 = sthh %r0, 0(%r1)
522
+ 0xe3,0x00,0xf0,0x00,0x00,0xc7 = sthh %r0, 0(%r15)
523
+ 0xe3,0x01,0xff,0xff,0x7f,0xc7 = sthh %r0, 524287(%r1,%r15)
524
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xc7 = sthh %r0, 524287(%r15,%r1)
525
+ 0xe3,0xf0,0x00,0x00,0x00,0xc7 = sthh %r15, 0
526
+ 0xe3,0x00,0x00,0x00,0x80,0xcb = stfh %r0, -524288
527
+ 0xe3,0x00,0x0f,0xff,0xff,0xcb = stfh %r0, -1
528
+ 0xe3,0x00,0x00,0x00,0x00,0xcb = stfh %r0, 0
529
+ 0xe3,0x00,0x00,0x01,0x00,0xcb = stfh %r0, 1
530
+ 0xe3,0x00,0x0f,0xff,0x7f,0xcb = stfh %r0, 524287
531
+ 0xe3,0x00,0x10,0x00,0x00,0xcb = stfh %r0, 0(%r1)
532
+ 0xe3,0x00,0xf0,0x00,0x00,0xcb = stfh %r0, 0(%r15)
533
+ 0xe3,0x01,0xff,0xff,0x7f,0xcb = stfh %r0, 524287(%r1,%r15)
534
+ 0xe3,0x0f,0x1f,0xff,0x7f,0xcb = stfh %r0, 524287(%r15,%r1)
535
+ 0xe3,0xf0,0x00,0x00,0x00,0xcb = stfh %r15, 0
536
+ 0xeb,0x00,0x00,0x00,0x00,0xf3 = stoc %r0, 0, 0
537
+ 0xeb,0x0f,0x00,0x00,0x00,0xf3 = stoc %r0, 0, 15
538
+ 0xeb,0x00,0x00,0x00,0x80,0xf3 = stoc %r0, -524288, 0
539
+ 0xeb,0x00,0x0f,0xff,0x7f,0xf3 = stoc %r0, 524287, 0
540
+ 0xeb,0x00,0x10,0x00,0x00,0xf3 = stoc %r0, 0(%r1), 0
541
+ 0xeb,0x00,0xf0,0x00,0x00,0xf3 = stoc %r0, 0(%r15), 0
542
+ 0xeb,0xf0,0x00,0x00,0x00,0xf3 = stoc %r15, 0, 0
543
+ 0xeb,0x13,0x2f,0xff,0x00,0xf3 = stoc %r1, 4095(%r2), 3
544
+ 0xeb,0x11,0x30,0x02,0x00,0xf3 = stoco %r1, 2(%r3)
545
+ 0xeb,0x12,0x30,0x02,0x00,0xf3 = stoch %r1, 2(%r3)
546
+ 0xeb,0x13,0x30,0x02,0x00,0xf3 = stocnle %r1, 2(%r3)
547
+ 0xeb,0x14,0x30,0x02,0x00,0xf3 = stocl %r1, 2(%r3)
548
+ 0xeb,0x15,0x30,0x02,0x00,0xf3 = stocnhe %r1, 2(%r3)
549
+ 0xeb,0x16,0x30,0x02,0x00,0xf3 = stoclh %r1, 2(%r3)
550
+ 0xeb,0x17,0x30,0x02,0x00,0xf3 = stocne %r1, 2(%r3)
551
+ 0xeb,0x18,0x30,0x02,0x00,0xf3 = stoce %r1, 2(%r3)
552
+ 0xeb,0x19,0x30,0x02,0x00,0xf3 = stocnlh %r1, 2(%r3)
553
+ 0xeb,0x1a,0x30,0x02,0x00,0xf3 = stoche %r1, 2(%r3)
554
+ 0xeb,0x1b,0x30,0x02,0x00,0xf3 = stocnl %r1, 2(%r3)
555
+ 0xeb,0x1c,0x30,0x02,0x00,0xf3 = stocle %r1, 2(%r3)
556
+ 0xeb,0x1d,0x30,0x02,0x00,0xf3 = stocnh %r1, 2(%r3)
557
+ 0xeb,0x1e,0x30,0x02,0x00,0xf3 = stocno %r1, 2(%r3)
558
+ 0xeb,0x00,0x00,0x00,0x00,0xe3 = stocg %r0, 0, 0
559
+ 0xeb,0x0f,0x00,0x00,0x00,0xe3 = stocg %r0, 0, 15
560
+ 0xeb,0x00,0x00,0x00,0x80,0xe3 = stocg %r0, -524288, 0
561
+ 0xeb,0x00,0x0f,0xff,0x7f,0xe3 = stocg %r0, 524287, 0
562
+ 0xeb,0x00,0x10,0x00,0x00,0xe3 = stocg %r0, 0(%r1), 0
563
+ 0xeb,0x00,0xf0,0x00,0x00,0xe3 = stocg %r0, 0(%r15), 0
564
+ 0xeb,0xf0,0x00,0x00,0x00,0xe3 = stocg %r15, 0, 0
565
+ 0xeb,0x13,0x2f,0xff,0x00,0xe3 = stocg %r1, 4095(%r2), 3
566
+ 0xeb,0x11,0x30,0x02,0x00,0xe3 = stocgo %r1, 2(%r3)
567
+ 0xeb,0x12,0x30,0x02,0x00,0xe3 = stocgh %r1, 2(%r3)
568
+ 0xeb,0x13,0x30,0x02,0x00,0xe3 = stocgnle %r1, 2(%r3)
569
+ 0xeb,0x14,0x30,0x02,0x00,0xe3 = stocgl %r1, 2(%r3)
570
+ 0xeb,0x15,0x30,0x02,0x00,0xe3 = stocgnhe %r1, 2(%r3)
571
+ 0xeb,0x16,0x30,0x02,0x00,0xe3 = stocglh %r1, 2(%r3)
572
+ 0xeb,0x17,0x30,0x02,0x00,0xe3 = stocgne %r1, 2(%r3)
573
+ 0xeb,0x18,0x30,0x02,0x00,0xe3 = stocge %r1, 2(%r3)
574
+ 0xeb,0x19,0x30,0x02,0x00,0xe3 = stocgnlh %r1, 2(%r3)
575
+ 0xeb,0x1a,0x30,0x02,0x00,0xe3 = stocghe %r1, 2(%r3)
576
+ 0xeb,0x1b,0x30,0x02,0x00,0xe3 = stocgnl %r1, 2(%r3)
577
+ 0xeb,0x1c,0x30,0x02,0x00,0xe3 = stocgle %r1, 2(%r3)
578
+ 0xeb,0x1d,0x30,0x02,0x00,0xe3 = stocgnh %r1, 2(%r3)
579
+ 0xeb,0x1e,0x30,0x02,0x00,0xe3 = stocgno %r1, 2(%r3)
580
+ 0xb9,0xe7,0x00,0x00 = xgrk %r0, %r0, %r0
581
+ 0xb9,0xe7,0xf0,0x00 = xgrk %r0, %r0, %r15
582
+ 0xb9,0xe7,0x00,0x0f = xgrk %r0, %r15, %r0
583
+ 0xb9,0xe7,0x00,0xf0 = xgrk %r15, %r0, %r0
584
+ 0xb9,0xe7,0x90,0x78 = xgrk %r7, %r8, %r9
585
+ 0xb9,0xf7,0x00,0x00 = xrk %r0, %r0, %r0
586
+ 0xb9,0xf7,0xf0,0x00 = xrk %r0, %r0, %r15
587
+ 0xb9,0xf7,0x00,0x0f = xrk %r0, %r15, %r0
588
+ 0xb9,0xf7,0x00,0xf0 = xrk %r15, %r0, %r0
589
+ 0xb9,0xf7,0x90,0x78 = xrk %r7, %r8, %r9