crabstone 3.0.3 → 4.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (347) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGES.md +45 -42
  3. data/README.md +16 -33
  4. data/lib/crabstone.rb +5 -557
  5. data/lib/crabstone/arch.rb +37 -0
  6. data/lib/{arch → crabstone/arch/3}/arm.rb +28 -49
  7. data/lib/crabstone/arch/3/arm64.rb +124 -0
  8. data/lib/{arch → crabstone/arch/3}/arm64_const.rb +45 -86
  9. data/lib/{arch → crabstone/arch/3}/arm_const.rb +19 -47
  10. data/lib/crabstone/arch/3/mips.rb +57 -0
  11. data/lib/{arch → crabstone/arch/3}/mips_const.rb +18 -38
  12. data/lib/crabstone/arch/3/ppc.rb +73 -0
  13. data/lib/{arch → crabstone/arch/3}/ppc_const.rb +27 -43
  14. data/lib/crabstone/arch/3/sparc.rb +60 -0
  15. data/lib/{arch → crabstone/arch/3}/sparc_const.rb +49 -67
  16. data/lib/crabstone/arch/3/sysz.rb +67 -0
  17. data/lib/{arch → crabstone/arch/3}/sysz_const.rb +11 -25
  18. data/lib/crabstone/arch/3/x86.rb +82 -0
  19. data/lib/{arch → crabstone/arch/3}/x86_const.rb +15 -36
  20. data/lib/crabstone/arch/3/xcore.rb +59 -0
  21. data/lib/{arch → crabstone/arch/3}/xcore_const.rb +10 -22
  22. data/lib/crabstone/arch/4/arm.rb +110 -0
  23. data/lib/crabstone/arch/4/arm64.rb +125 -0
  24. data/lib/crabstone/arch/4/arm64_const.rb +1016 -0
  25. data/lib/crabstone/arch/4/arm_const.rb +785 -0
  26. data/lib/crabstone/arch/4/evm.rb +20 -0
  27. data/lib/crabstone/arch/4/evm_const.rb +161 -0
  28. data/lib/crabstone/arch/4/m680x.rb +106 -0
  29. data/lib/crabstone/arch/4/m680x_const.rb +426 -0
  30. data/lib/crabstone/arch/4/m68k.rb +129 -0
  31. data/lib/crabstone/arch/4/m68k_const.rb +496 -0
  32. data/lib/crabstone/arch/4/mips.rb +57 -0
  33. data/lib/crabstone/arch/4/mips_const.rb +869 -0
  34. data/lib/crabstone/arch/4/ppc.rb +73 -0
  35. data/lib/crabstone/arch/4/ppc_const.rb +1375 -0
  36. data/lib/crabstone/arch/4/sparc.rb +60 -0
  37. data/lib/crabstone/arch/4/sparc_const.rb +439 -0
  38. data/lib/crabstone/arch/4/sysz.rb +67 -0
  39. data/lib/crabstone/arch/4/sysz_const.rb +763 -0
  40. data/lib/crabstone/arch/4/tms320c64x.rb +87 -0
  41. data/lib/crabstone/arch/4/tms320c64x_const.rb +287 -0
  42. data/lib/crabstone/arch/4/x86.rb +91 -0
  43. data/lib/crabstone/arch/4/x86_const.rb +1972 -0
  44. data/lib/crabstone/arch/4/xcore.rb +59 -0
  45. data/lib/crabstone/arch/4/xcore_const.rb +171 -0
  46. data/lib/crabstone/arch/extension.rb +27 -0
  47. data/lib/crabstone/arch/register.rb +36 -0
  48. data/lib/crabstone/binding.rb +60 -0
  49. data/lib/crabstone/binding/3/detail.rb +36 -0
  50. data/lib/crabstone/binding/3/instruction.rb +23 -0
  51. data/lib/crabstone/binding/4/detail.rb +40 -0
  52. data/lib/crabstone/binding/4/instruction.rb +23 -0
  53. data/lib/crabstone/binding/structs.rb +32 -0
  54. data/lib/crabstone/constants.rb +110 -0
  55. data/lib/crabstone/cs_version.rb +49 -0
  56. data/lib/crabstone/disassembler.rb +153 -0
  57. data/lib/crabstone/error.rb +60 -0
  58. data/lib/crabstone/instruction.rb +183 -0
  59. data/lib/crabstone/version.rb +5 -0
  60. metadata +128 -324
  61. data/MANIFEST +0 -312
  62. data/Rakefile +0 -27
  63. data/bin/genconst +0 -66
  64. data/bin/genreg +0 -99
  65. data/crabstone.gemspec +0 -27
  66. data/examples/hello_world.rb +0 -43
  67. data/lib/arch/arm64.rb +0 -167
  68. data/lib/arch/arm64_registers.rb +0 -295
  69. data/lib/arch/arm_registers.rb +0 -149
  70. data/lib/arch/mips.rb +0 -78
  71. data/lib/arch/mips_registers.rb +0 -208
  72. data/lib/arch/ppc.rb +0 -90
  73. data/lib/arch/ppc_registers.rb +0 -209
  74. data/lib/arch/sparc.rb +0 -79
  75. data/lib/arch/sparc_registers.rb +0 -121
  76. data/lib/arch/systemz.rb +0 -79
  77. data/lib/arch/sysz_registers.rb +0 -66
  78. data/lib/arch/x86.rb +0 -107
  79. data/lib/arch/x86_registers.rb +0 -265
  80. data/lib/arch/xcore.rb +0 -78
  81. data/lib/arch/xcore_registers.rb +0 -57
  82. data/test/MC/AArch64/basic-a64-instructions.s.cs +0 -2014
  83. data/test/MC/AArch64/gicv3-regs.s.cs +0 -111
  84. data/test/MC/AArch64/neon-2velem.s.cs +0 -113
  85. data/test/MC/AArch64/neon-3vdiff.s.cs +0 -143
  86. data/test/MC/AArch64/neon-aba-abd.s.cs +0 -28
  87. data/test/MC/AArch64/neon-across.s.cs +0 -40
  88. data/test/MC/AArch64/neon-add-pairwise.s.cs +0 -11
  89. data/test/MC/AArch64/neon-add-sub-instructions.s.cs +0 -21
  90. data/test/MC/AArch64/neon-bitwise-instructions.s.cs +0 -17
  91. data/test/MC/AArch64/neon-compare-instructions.s.cs +0 -136
  92. data/test/MC/AArch64/neon-crypto.s.cs +0 -15
  93. data/test/MC/AArch64/neon-extract.s.cs +0 -3
  94. data/test/MC/AArch64/neon-facge-facgt.s.cs +0 -13
  95. data/test/MC/AArch64/neon-frsqrt-frecp.s.cs +0 -7
  96. data/test/MC/AArch64/neon-halving-add-sub.s.cs +0 -25
  97. data/test/MC/AArch64/neon-max-min-pairwise.s.cs +0 -37
  98. data/test/MC/AArch64/neon-max-min.s.cs +0 -37
  99. data/test/MC/AArch64/neon-mla-mls-instructions.s.cs +0 -19
  100. data/test/MC/AArch64/neon-mov.s.cs +0 -74
  101. data/test/MC/AArch64/neon-mul-div-instructions.s.cs +0 -24
  102. data/test/MC/AArch64/neon-perm.s.cs +0 -43
  103. data/test/MC/AArch64/neon-rounding-halving-add.s.cs +0 -13
  104. data/test/MC/AArch64/neon-rounding-shift.s.cs +0 -15
  105. data/test/MC/AArch64/neon-saturating-add-sub.s.cs +0 -29
  106. data/test/MC/AArch64/neon-saturating-rounding-shift.s.cs +0 -15
  107. data/test/MC/AArch64/neon-saturating-shift.s.cs +0 -15
  108. data/test/MC/AArch64/neon-scalar-abs.s.cs +0 -8
  109. data/test/MC/AArch64/neon-scalar-add-sub.s.cs +0 -3
  110. data/test/MC/AArch64/neon-scalar-by-elem-mla.s.cs +0 -13
  111. data/test/MC/AArch64/neon-scalar-by-elem-mul.s.cs +0 -13
  112. data/test/MC/AArch64/neon-scalar-by-elem-saturating-mla.s.cs +0 -15
  113. data/test/MC/AArch64/neon-scalar-by-elem-saturating-mul.s.cs +0 -18
  114. data/test/MC/AArch64/neon-scalar-compare.s.cs +0 -12
  115. data/test/MC/AArch64/neon-scalar-cvt.s.cs +0 -34
  116. data/test/MC/AArch64/neon-scalar-dup.s.cs +0 -23
  117. data/test/MC/AArch64/neon-scalar-extract-narrow.s.cs +0 -10
  118. data/test/MC/AArch64/neon-scalar-fp-compare.s.cs +0 -21
  119. data/test/MC/AArch64/neon-scalar-mul.s.cs +0 -13
  120. data/test/MC/AArch64/neon-scalar-neg.s.cs +0 -6
  121. data/test/MC/AArch64/neon-scalar-recip.s.cs +0 -11
  122. data/test/MC/AArch64/neon-scalar-reduce-pairwise.s.cs +0 -3
  123. data/test/MC/AArch64/neon-scalar-rounding-shift.s.cs +0 -3
  124. data/test/MC/AArch64/neon-scalar-saturating-add-sub.s.cs +0 -25
  125. data/test/MC/AArch64/neon-scalar-saturating-rounding-shift.s.cs +0 -9
  126. data/test/MC/AArch64/neon-scalar-saturating-shift.s.cs +0 -9
  127. data/test/MC/AArch64/neon-scalar-shift-imm.s.cs +0 -42
  128. data/test/MC/AArch64/neon-scalar-shift.s.cs +0 -3
  129. data/test/MC/AArch64/neon-shift-left-long.s.cs +0 -13
  130. data/test/MC/AArch64/neon-shift.s.cs +0 -22
  131. data/test/MC/AArch64/neon-simd-copy.s.cs +0 -42
  132. data/test/MC/AArch64/neon-simd-ldst-multi-elem.s.cs +0 -197
  133. data/test/MC/AArch64/neon-simd-ldst-one-elem.s.cs +0 -129
  134. data/test/MC/AArch64/neon-simd-misc.s.cs +0 -213
  135. data/test/MC/AArch64/neon-simd-post-ldst-multi-elem.s.cs +0 -107
  136. data/test/MC/AArch64/neon-simd-shift.s.cs +0 -151
  137. data/test/MC/AArch64/neon-tbl.s.cs +0 -21
  138. data/test/MC/AArch64/trace-regs.s.cs +0 -383
  139. data/test/MC/ARM/arm-aliases.s.cs +0 -7
  140. data/test/MC/ARM/arm-arithmetic-aliases.s.cs +0 -50
  141. data/test/MC/ARM/arm-it-block.s.cs +0 -2
  142. data/test/MC/ARM/arm-memory-instructions.s.cs +0 -138
  143. data/test/MC/ARM/arm-shift-encoding.s.cs +0 -50
  144. data/test/MC/ARM/arm-thumb-trustzone.s.cs +0 -3
  145. data/test/MC/ARM/arm-trustzone.s.cs +0 -3
  146. data/test/MC/ARM/arm_addrmode2.s.cs +0 -15
  147. data/test/MC/ARM/arm_addrmode3.s.cs +0 -9
  148. data/test/MC/ARM/arm_instructions.s.cs +0 -25
  149. data/test/MC/ARM/basic-arm-instructions-v8.s.cs +0 -10
  150. data/test/MC/ARM/basic-arm-instructions.s.cs +0 -997
  151. data/test/MC/ARM/basic-thumb-instructions.s.cs +0 -130
  152. data/test/MC/ARM/basic-thumb2-instructions-v8.s.cs +0 -1
  153. data/test/MC/ARM/basic-thumb2-instructions.s.cs +0 -1242
  154. data/test/MC/ARM/crc32-thumb.s.cs +0 -7
  155. data/test/MC/ARM/crc32.s.cs +0 -7
  156. data/test/MC/ARM/dot-req.s.cs +0 -3
  157. data/test/MC/ARM/fp-armv8.s.cs +0 -52
  158. data/test/MC/ARM/idiv-thumb.s.cs +0 -3
  159. data/test/MC/ARM/idiv.s.cs +0 -3
  160. data/test/MC/ARM/load-store-acquire-release-v8-thumb.s.cs +0 -15
  161. data/test/MC/ARM/load-store-acquire-release-v8.s.cs +0 -15
  162. data/test/MC/ARM/mode-switch.s.cs +0 -7
  163. data/test/MC/ARM/neon-abs-encoding.s.cs +0 -15
  164. data/test/MC/ARM/neon-absdiff-encoding.s.cs +0 -39
  165. data/test/MC/ARM/neon-add-encoding.s.cs +0 -119
  166. data/test/MC/ARM/neon-bitcount-encoding.s.cs +0 -15
  167. data/test/MC/ARM/neon-bitwise-encoding.s.cs +0 -126
  168. data/test/MC/ARM/neon-cmp-encoding.s.cs +0 -88
  169. data/test/MC/ARM/neon-convert-encoding.s.cs +0 -27
  170. data/test/MC/ARM/neon-crypto.s.cs +0 -16
  171. data/test/MC/ARM/neon-dup-encoding.s.cs +0 -13
  172. data/test/MC/ARM/neon-minmax-encoding.s.cs +0 -57
  173. data/test/MC/ARM/neon-mov-encoding.s.cs +0 -76
  174. data/test/MC/ARM/neon-mul-accum-encoding.s.cs +0 -39
  175. data/test/MC/ARM/neon-mul-encoding.s.cs +0 -72
  176. data/test/MC/ARM/neon-neg-encoding.s.cs +0 -15
  177. data/test/MC/ARM/neon-pairwise-encoding.s.cs +0 -47
  178. data/test/MC/ARM/neon-reciprocal-encoding.s.cs +0 -13
  179. data/test/MC/ARM/neon-reverse-encoding.s.cs +0 -13
  180. data/test/MC/ARM/neon-satshift-encoding.s.cs +0 -75
  181. data/test/MC/ARM/neon-shift-encoding.s.cs +0 -238
  182. data/test/MC/ARM/neon-shiftaccum-encoding.s.cs +0 -97
  183. data/test/MC/ARM/neon-shuffle-encoding.s.cs +0 -59
  184. data/test/MC/ARM/neon-sub-encoding.s.cs +0 -82
  185. data/test/MC/ARM/neon-table-encoding.s.cs +0 -9
  186. data/test/MC/ARM/neon-v8.s.cs +0 -38
  187. data/test/MC/ARM/neon-vld-encoding.s.cs +0 -213
  188. data/test/MC/ARM/neon-vst-encoding.s.cs +0 -120
  189. data/test/MC/ARM/neon-vswp.s.cs +0 -3
  190. data/test/MC/ARM/neont2-abs-encoding.s.cs +0 -15
  191. data/test/MC/ARM/neont2-absdiff-encoding.s.cs +0 -39
  192. data/test/MC/ARM/neont2-add-encoding.s.cs +0 -65
  193. data/test/MC/ARM/neont2-bitcount-encoding.s.cs +0 -15
  194. data/test/MC/ARM/neont2-bitwise-encoding.s.cs +0 -15
  195. data/test/MC/ARM/neont2-cmp-encoding.s.cs +0 -17
  196. data/test/MC/ARM/neont2-convert-encoding.s.cs +0 -19
  197. data/test/MC/ARM/neont2-dup-encoding.s.cs +0 -19
  198. data/test/MC/ARM/neont2-minmax-encoding.s.cs +0 -57
  199. data/test/MC/ARM/neont2-mov-encoding.s.cs +0 -58
  200. data/test/MC/ARM/neont2-mul-accum-encoding.s.cs +0 -41
  201. data/test/MC/ARM/neont2-mul-encoding.s.cs +0 -31
  202. data/test/MC/ARM/neont2-neg-encoding.s.cs +0 -15
  203. data/test/MC/ARM/neont2-pairwise-encoding.s.cs +0 -43
  204. data/test/MC/ARM/neont2-reciprocal-encoding.s.cs +0 -13
  205. data/test/MC/ARM/neont2-reverse-encoding.s.cs +0 -13
  206. data/test/MC/ARM/neont2-satshift-encoding.s.cs +0 -75
  207. data/test/MC/ARM/neont2-shift-encoding.s.cs +0 -80
  208. data/test/MC/ARM/neont2-shiftaccum-encoding.s.cs +0 -97
  209. data/test/MC/ARM/neont2-shuffle-encoding.s.cs +0 -23
  210. data/test/MC/ARM/neont2-sub-encoding.s.cs +0 -23
  211. data/test/MC/ARM/neont2-table-encoding.s.cs +0 -9
  212. data/test/MC/ARM/neont2-vld-encoding.s.cs +0 -51
  213. data/test/MC/ARM/neont2-vst-encoding.s.cs +0 -48
  214. data/test/MC/ARM/simple-fp-encoding.s.cs +0 -157
  215. data/test/MC/ARM/thumb-fp-armv8.s.cs +0 -51
  216. data/test/MC/ARM/thumb-hints.s.cs +0 -12
  217. data/test/MC/ARM/thumb-neon-crypto.s.cs +0 -16
  218. data/test/MC/ARM/thumb-neon-v8.s.cs +0 -38
  219. data/test/MC/ARM/thumb-shift-encoding.s.cs +0 -19
  220. data/test/MC/ARM/thumb.s.cs +0 -19
  221. data/test/MC/ARM/thumb2-b.w-encodingT4.s.cs +0 -2
  222. data/test/MC/ARM/thumb2-branches.s.cs +0 -85
  223. data/test/MC/ARM/thumb2-mclass.s.cs +0 -41
  224. data/test/MC/ARM/thumb2-narrow-dp.ll.cs +0 -379
  225. data/test/MC/ARM/thumb2-pldw.s.cs +0 -2
  226. data/test/MC/ARM/vfp4-thumb.s.cs +0 -13
  227. data/test/MC/ARM/vfp4.s.cs +0 -13
  228. data/test/MC/ARM/vpush-vpop-thumb.s.cs +0 -9
  229. data/test/MC/ARM/vpush-vpop.s.cs +0 -9
  230. data/test/MC/Mips/hilo-addressing.s.cs +0 -4
  231. data/test/MC/Mips/micromips-alu-instructions-EB.s.cs +0 -33
  232. data/test/MC/Mips/micromips-alu-instructions.s.cs +0 -33
  233. data/test/MC/Mips/micromips-branch-instructions-EB.s.cs +0 -11
  234. data/test/MC/Mips/micromips-branch-instructions.s.cs +0 -11
  235. data/test/MC/Mips/micromips-expansions.s.cs +0 -20
  236. data/test/MC/Mips/micromips-jump-instructions-EB.s.cs +0 -5
  237. data/test/MC/Mips/micromips-jump-instructions.s.cs +0 -6
  238. data/test/MC/Mips/micromips-loadstore-instructions-EB.s.cs +0 -9
  239. data/test/MC/Mips/micromips-loadstore-instructions.s.cs +0 -9
  240. data/test/MC/Mips/micromips-loadstore-unaligned-EB.s.cs +0 -5
  241. data/test/MC/Mips/micromips-loadstore-unaligned.s.cs +0 -5
  242. data/test/MC/Mips/micromips-movcond-instructions-EB.s.cs +0 -5
  243. data/test/MC/Mips/micromips-movcond-instructions.s.cs +0 -5
  244. data/test/MC/Mips/micromips-multiply-instructions-EB.s.cs +0 -5
  245. data/test/MC/Mips/micromips-multiply-instructions.s.cs +0 -5
  246. data/test/MC/Mips/micromips-shift-instructions-EB.s.cs +0 -9
  247. data/test/MC/Mips/micromips-shift-instructions.s.cs +0 -9
  248. data/test/MC/Mips/micromips-trap-instructions-EB.s.cs +0 -13
  249. data/test/MC/Mips/micromips-trap-instructions.s.cs +0 -13
  250. data/test/MC/Mips/mips-alu-instructions.s.cs +0 -53
  251. data/test/MC/Mips/mips-control-instructions-64.s.cs +0 -33
  252. data/test/MC/Mips/mips-control-instructions.s.cs +0 -33
  253. data/test/MC/Mips/mips-coprocessor-encodings.s.cs +0 -17
  254. data/test/MC/Mips/mips-dsp-instructions.s.cs +0 -43
  255. data/test/MC/Mips/mips-expansions.s.cs +0 -20
  256. data/test/MC/Mips/mips-fpu-instructions.s.cs +0 -93
  257. data/test/MC/Mips/mips-jump-instructions.s.cs +0 -1
  258. data/test/MC/Mips/mips-memory-instructions.s.cs +0 -17
  259. data/test/MC/Mips/mips-register-names.s.cs +0 -33
  260. data/test/MC/Mips/mips64-alu-instructions.s.cs +0 -47
  261. data/test/MC/Mips/mips64-instructions.s.cs +0 -3
  262. data/test/MC/Mips/mips64-register-names.s.cs +0 -33
  263. data/test/MC/Mips/mips_directives.s.cs +0 -12
  264. data/test/MC/Mips/nabi-regs.s.cs +0 -12
  265. data/test/MC/Mips/set-at-directive.s.cs +0 -6
  266. data/test/MC/Mips/test_2r.s.cs +0 -16
  267. data/test/MC/Mips/test_2rf.s.cs +0 -33
  268. data/test/MC/Mips/test_3r.s.cs +0 -243
  269. data/test/MC/Mips/test_3rf.s.cs +0 -83
  270. data/test/MC/Mips/test_bit.s.cs +0 -49
  271. data/test/MC/Mips/test_cbranch.s.cs +0 -11
  272. data/test/MC/Mips/test_ctrlregs.s.cs +0 -33
  273. data/test/MC/Mips/test_elm.s.cs +0 -16
  274. data/test/MC/Mips/test_elm_insert.s.cs +0 -4
  275. data/test/MC/Mips/test_elm_insve.s.cs +0 -5
  276. data/test/MC/Mips/test_i10.s.cs +0 -5
  277. data/test/MC/Mips/test_i5.s.cs +0 -45
  278. data/test/MC/Mips/test_i8.s.cs +0 -11
  279. data/test/MC/Mips/test_lsa.s.cs +0 -5
  280. data/test/MC/Mips/test_mi10.s.cs +0 -24
  281. data/test/MC/Mips/test_vec.s.cs +0 -8
  282. data/test/MC/PowerPC/ppc64-encoding-bookII.s.cs +0 -25
  283. data/test/MC/PowerPC/ppc64-encoding-bookIII.s.cs +0 -35
  284. data/test/MC/PowerPC/ppc64-encoding-ext.s.cs +0 -535
  285. data/test/MC/PowerPC/ppc64-encoding-fp.s.cs +0 -110
  286. data/test/MC/PowerPC/ppc64-encoding-vmx.s.cs +0 -170
  287. data/test/MC/PowerPC/ppc64-encoding.s.cs +0 -202
  288. data/test/MC/PowerPC/ppc64-operands.s.cs +0 -32
  289. data/test/MC/README +0 -6
  290. data/test/MC/Sparc/sparc-alu-instructions.s.cs +0 -47
  291. data/test/MC/Sparc/sparc-atomic-instructions.s.cs +0 -7
  292. data/test/MC/Sparc/sparc-ctrl-instructions.s.cs +0 -11
  293. data/test/MC/Sparc/sparc-fp-instructions.s.cs +0 -59
  294. data/test/MC/Sparc/sparc-mem-instructions.s.cs +0 -25
  295. data/test/MC/Sparc/sparc-vis.s.cs +0 -2
  296. data/test/MC/Sparc/sparc64-alu-instructions.s.cs +0 -13
  297. data/test/MC/Sparc/sparc64-ctrl-instructions.s.cs +0 -102
  298. data/test/MC/Sparc/sparcv8-instructions.s.cs +0 -7
  299. data/test/MC/Sparc/sparcv9-instructions.s.cs +0 -1
  300. data/test/MC/SystemZ/insn-good-z196.s.cs +0 -589
  301. data/test/MC/SystemZ/insn-good.s.cs +0 -2265
  302. data/test/MC/SystemZ/regs-good.s.cs +0 -45
  303. data/test/MC/X86/3DNow.s.cs +0 -29
  304. data/test/MC/X86/address-size.s.cs +0 -5
  305. data/test/MC/X86/avx512-encodings.s.cs +0 -12
  306. data/test/MC/X86/intel-syntax-encoding.s.cs +0 -30
  307. data/test/MC/X86/x86-32-avx.s.cs +0 -833
  308. data/test/MC/X86/x86-32-fma3.s.cs +0 -169
  309. data/test/MC/X86/x86-32-ms-inline-asm.s.cs +0 -27
  310. data/test/MC/X86/x86_64-avx-clmul-encoding.s.cs +0 -11
  311. data/test/MC/X86/x86_64-avx-encoding.s.cs +0 -1058
  312. data/test/MC/X86/x86_64-bmi-encoding.s.cs +0 -51
  313. data/test/MC/X86/x86_64-encoding.s.cs +0 -59
  314. data/test/MC/X86/x86_64-fma3-encoding.s.cs +0 -169
  315. data/test/MC/X86/x86_64-fma4-encoding.s.cs +0 -98
  316. data/test/MC/X86/x86_64-hle-encoding.s.cs +0 -3
  317. data/test/MC/X86/x86_64-imm-widths.s.cs +0 -27
  318. data/test/MC/X86/x86_64-rand-encoding.s.cs +0 -13
  319. data/test/MC/X86/x86_64-rtm-encoding.s.cs +0 -4
  320. data/test/MC/X86/x86_64-sse4a.s.cs +0 -1
  321. data/test/MC/X86/x86_64-tbm-encoding.s.cs +0 -40
  322. data/test/MC/X86/x86_64-xop-encoding.s.cs +0 -152
  323. data/test/README +0 -6
  324. data/test/test.rb +0 -205
  325. data/test/test.rb.SPEC +0 -235
  326. data/test/test_arm.rb +0 -202
  327. data/test/test_arm.rb.SPEC +0 -275
  328. data/test/test_arm64.rb +0 -150
  329. data/test/test_arm64.rb.SPEC +0 -116
  330. data/test/test_detail.rb +0 -228
  331. data/test/test_detail.rb.SPEC +0 -322
  332. data/test/test_exhaustive.rb +0 -80
  333. data/test/test_mips.rb +0 -118
  334. data/test/test_mips.rb.SPEC +0 -91
  335. data/test/test_ppc.rb +0 -137
  336. data/test/test_ppc.rb.SPEC +0 -84
  337. data/test/test_sanity.rb +0 -83
  338. data/test/test_skipdata.rb +0 -111
  339. data/test/test_skipdata.rb.SPEC +0 -58
  340. data/test/test_sparc.rb +0 -113
  341. data/test/test_sparc.rb.SPEC +0 -116
  342. data/test/test_sysz.rb +0 -111
  343. data/test/test_sysz.rb.SPEC +0 -61
  344. data/test/test_x86.rb +0 -189
  345. data/test/test_x86.rb.SPEC +0 -579
  346. data/test/test_xcore.rb +0 -100
  347. data/test/test_xcore.rb.SPEC +0 -75
@@ -1,32 +0,0 @@
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
@@ -1,6 +0,0 @@
1
- Input files for testing Capstone engine.
2
-
3
- Format of input files:
4
-
5
- # ARCH, MODE, OPTION
6
- hexcode = assembly
@@ -1,47 +0,0 @@
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
@@ -1,7 +0,0 @@
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
@@ -1,11 +0,0 @@
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
@@ -1,59 +0,0 @@
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
@@ -1,25 +0,0 @@
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]
@@ -1,2 +0,0 @@
1
- # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
- 0xbf,0xb0,0x0c,0x20 = fzeros %f31
@@ -1,13 +0,0 @@
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
@@ -1,102 +0,0 @@
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
@@ -1,7 +0,0 @@
1
- # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
2
- 0x81,0xa8,0x0a,0x24 = fcmps %f0, %f4
3
- 0x81,0xa8,0x0a,0x44 = fcmpd %f0, %f4
4
- 0x81,0xa8,0x0a,0x64 = fcmpq %f0, %f4
5
- 0x81,0xa8,0x0a,0xa4 = fcmpes %f0, %f4
6
- 0x81,0xa8,0x0a,0xc4 = fcmped %f0, %f4
7
- 0x81,0xa8,0x0a,0xe4 = fcmpeq %f0, %f4
@@ -1 +0,0 @@
1
- # CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, None
@@ -1,589 +0,0 @@
1
- # CS_ARCH_SYSZ, 0, None
2
- 0xec,0x00,0x80,0x00,0x00,0xd9 = aghik %r0, %r0, -32768
3
- 0xec,0x00,0xff,0xff,0x00,0xd9 = aghik %r0, %r0, -1
4
- 0xec,0x00,0x00,0x00,0x00,0xd9 = aghik %r0, %r0, 0
5
- 0xec,0x00,0x00,0x01,0x00,0xd9 = aghik %r0, %r0, 1
6
- 0xec,0x00,0x7f,0xff,0x00,0xd9 = aghik %r0, %r0, 32767
7
- 0xec,0x0f,0x00,0x00,0x00,0xd9 = aghik %r0, %r15, 0
8
- 0xec,0xf0,0x00,0x00,0x00,0xd9 = aghik %r15, %r0, 0
9
- 0xec,0x78,0xff,0xf0,0x00,0xd9 = aghik %r7, %r8, -16
10
- 0xb9,0xe8,0x00,0x00 = agrk %r0, %r0, %r0
11
- 0xb9,0xe8,0xf0,0x00 = agrk %r0, %r0, %r15
12
- 0xb9,0xe8,0x00,0x0f = agrk %r0, %r15, %r0
13
- 0xb9,0xe8,0x00,0xf0 = agrk %r15, %r0, %r0
14
- 0xb9,0xe8,0x90,0x78 = agrk %r7, %r8, %r9
15
- 0xec,0x00,0x80,0x00,0x00,0xd8 = ahik %r0, %r0, -32768
16
- 0xec,0x00,0xff,0xff,0x00,0xd8 = ahik %r0, %r0, -1
17
- 0xec,0x00,0x00,0x00,0x00,0xd8 = ahik %r0, %r0, 0
18
- 0xec,0x00,0x00,0x01,0x00,0xd8 = ahik %r0, %r0, 1
19
- 0xec,0x00,0x7f,0xff,0x00,0xd8 = ahik %r0, %r0, 32767
20
- 0xec,0x0f,0x00,0x00,0x00,0xd8 = ahik %r0, %r15, 0
21
- 0xec,0xf0,0x00,0x00,0x00,0xd8 = ahik %r15, %r0, 0
22
- 0xec,0x78,0xff,0xf0,0x00,0xd8 = ahik %r7, %r8, -16
23
- 0xcc,0x08,0x80,0x00,0x00,0x00 = aih %r0, -2147483648
24
- 0xcc,0x08,0xff,0xff,0xff,0xff = aih %r0, -1
25
- 0xcc,0x08,0x00,0x00,0x00,0x00 = aih %r0, 0
26
- 0xcc,0x08,0x00,0x00,0x00,0x01 = aih %r0, 1
27
- 0xcc,0x08,0x7f,0xff,0xff,0xff = aih %r0, 2147483647
28
- 0xcc,0xf8,0x00,0x00,0x00,0x00 = aih %r15, 0
29
- 0xec,0x00,0x80,0x00,0x00,0xdb = alghsik %r0, %r0, -32768
30
- 0xec,0x00,0xff,0xff,0x00,0xdb = alghsik %r0, %r0, -1
31
- 0xec,0x00,0x00,0x00,0x00,0xdb = alghsik %r0, %r0, 0
32
- 0xec,0x00,0x00,0x01,0x00,0xdb = alghsik %r0, %r0, 1
33
- 0xec,0x00,0x7f,0xff,0x00,0xdb = alghsik %r0, %r0, 32767
34
- 0xec,0x0f,0x00,0x00,0x00,0xdb = alghsik %r0, %r15, 0
35
- 0xec,0xf0,0x00,0x00,0x00,0xdb = alghsik %r15, %r0, 0
36
- 0xec,0x78,0xff,0xf0,0x00,0xdb = alghsik %r7, %r8, -16
37
- 0xb9,0xea,0x00,0x00 = algrk %r0, %r0, %r0
38
- 0xb9,0xea,0xf0,0x00 = algrk %r0, %r0, %r15
39
- 0xb9,0xea,0x00,0x0f = algrk %r0, %r15, %r0
40
- 0xb9,0xea,0x00,0xf0 = algrk %r15, %r0, %r0
41
- 0xb9,0xea,0x90,0x78 = algrk %r7, %r8, %r9
42
- 0xec,0x00,0x80,0x00,0x00,0xda = alhsik %r0, %r0, -32768
43
- 0xec,0x00,0xff,0xff,0x00,0xda = alhsik %r0, %r0, -1
44
- 0xec,0x00,0x00,0x00,0x00,0xda = alhsik %r0, %r0, 0
45
- 0xec,0x00,0x00,0x01,0x00,0xda = alhsik %r0, %r0, 1
46
- 0xec,0x00,0x7f,0xff,0x00,0xda = alhsik %r0, %r0, 32767
47
- 0xec,0x0f,0x00,0x00,0x00,0xda = alhsik %r0, %r15, 0
48
- 0xec,0xf0,0x00,0x00,0x00,0xda = alhsik %r15, %r0, 0
49
- 0xec,0x78,0xff,0xf0,0x00,0xda = alhsik %r7, %r8, -16
50
- 0xb9,0xfa,0x00,0x00 = alrk %r0, %r0, %r0
51
- 0xb9,0xfa,0xf0,0x00 = alrk %r0, %r0, %r15
52
- 0xb9,0xfa,0x00,0x0f = alrk %r0, %r15, %r0
53
- 0xb9,0xfa,0x00,0xf0 = alrk %r15, %r0, %r0
54
- 0xb9,0xfa,0x90,0x78 = alrk %r7, %r8, %r9
55
- 0xb9,0xf8,0x00,0x00 = ark %r0, %r0, %r0
56
- 0xb9,0xf8,0xf0,0x00 = ark %r0, %r0, %r15
57
- 0xb9,0xf8,0x00,0x0f = ark %r0, %r15, %r0
58
- 0xb9,0xf8,0x00,0xf0 = ark %r15, %r0, %r0
59
- 0xb9,0xf8,0x90,0x78 = ark %r7, %r8, %r9
60
- 0xb3,0x91,0x00,0x00 = cdlfbr %f0, 0, %r0, 0
61
- 0xb3,0x91,0x0f,0x00 = cdlfbr %f0, 0, %r0, 15
62
- 0xb3,0x91,0x00,0x0f = cdlfbr %f0, 0, %r15, 0
63
- 0xb3,0x91,0xf0,0x00 = cdlfbr %f0, 15, %r0, 0
64
- 0xb3,0x91,0x57,0x46 = cdlfbr %f4, 5, %r6, 7
65
- 0xb3,0x91,0x00,0xf0 = cdlfbr %f15, 0, %r0, 0
66
- 0xb3,0xa1,0x00,0x00 = cdlgbr %f0, 0, %r0, 0
67
- 0xb3,0xa1,0x0f,0x00 = cdlgbr %f0, 0, %r0, 15
68
- 0xb3,0xa1,0x00,0x0f = cdlgbr %f0, 0, %r15, 0
69
- 0xb3,0xa1,0xf0,0x00 = cdlgbr %f0, 15, %r0, 0
70
- 0xb3,0xa1,0x57,0x46 = cdlgbr %f4, 5, %r6, 7
71
- 0xb3,0xa1,0x00,0xf0 = cdlgbr %f15, 0, %r0, 0
72
- 0xb3,0x90,0x00,0x00 = celfbr %f0, 0, %r0, 0
73
- 0xb3,0x90,0x0f,0x00 = celfbr %f0, 0, %r0, 15
74
- 0xb3,0x90,0x00,0x0f = celfbr %f0, 0, %r15, 0
75
- 0xb3,0x90,0xf0,0x00 = celfbr %f0, 15, %r0, 0
76
- 0xb3,0x90,0x57,0x46 = celfbr %f4, 5, %r6, 7
77
- 0xb3,0x90,0x00,0xf0 = celfbr %f15, 0, %r0, 0
78
- 0xb3,0xa0,0x00,0x00 = celgbr %f0, 0, %r0, 0
79
- 0xb3,0xa0,0x0f,0x00 = celgbr %f0, 0, %r0, 15
80
- 0xb3,0xa0,0x00,0x0f = celgbr %f0, 0, %r15, 0
81
- 0xb3,0xa0,0xf0,0x00 = celgbr %f0, 15, %r0, 0
82
- 0xb3,0xa0,0x57,0x46 = celgbr %f4, 5, %r6, 7
83
- 0xb3,0xa0,0x00,0xf0 = celgbr %f15, 0, %r0, 0
84
- 0xe3,0x00,0x00,0x00,0x80,0xcd = chf %r0, -524288
85
- 0xe3,0x00,0x0f,0xff,0xff,0xcd = chf %r0, -1
86
- 0xe3,0x00,0x00,0x00,0x00,0xcd = chf %r0, 0
87
- 0xe3,0x00,0x00,0x01,0x00,0xcd = chf %r0, 1
88
- 0xe3,0x00,0x0f,0xff,0x7f,0xcd = chf %r0, 524287
89
- 0xe3,0x00,0x10,0x00,0x00,0xcd = chf %r0, 0(%r1)
90
- 0xe3,0x00,0xf0,0x00,0x00,0xcd = chf %r0, 0(%r15)
91
- 0xe3,0x01,0xff,0xff,0x7f,0xcd = chf %r0, 524287(%r1,%r15)
92
- 0xe3,0x0f,0x1f,0xff,0x7f,0xcd = chf %r0, 524287(%r15,%r1)
93
- 0xe3,0xf0,0x00,0x00,0x00,0xcd = chf %r15, 0
94
- 0xcc,0x0d,0x80,0x00,0x00,0x00 = cih %r0, -2147483648
95
- 0xcc,0x0d,0xff,0xff,0xff,0xff = cih %r0, -1
96
- 0xcc,0x0d,0x00,0x00,0x00,0x00 = cih %r0, 0
97
- 0xcc,0x0d,0x00,0x00,0x00,0x01 = cih %r0, 1
98
- 0xcc,0x0d,0x7f,0xff,0xff,0xff = cih %r0, 2147483647
99
- 0xcc,0xfd,0x00,0x00,0x00,0x00 = cih %r15, 0
100
- 0xb3,0x9d,0x00,0x00 = clfdbr %r0, 0, %f0, 0
101
- 0xb3,0x9d,0x0f,0x00 = clfdbr %r0, 0, %f0, 15
102
- 0xb3,0x9d,0x00,0x0f = clfdbr %r0, 0, %f15, 0
103
- 0xb3,0x9d,0xf0,0x00 = clfdbr %r0, 15, %f0, 0
104
- 0xb3,0x9d,0x57,0x46 = clfdbr %r4, 5, %f6, 7
105
- 0xb3,0x9d,0x00,0xf0 = clfdbr %r15, 0, %f0, 0
106
- 0xb3,0x9c,0x00,0x00 = clfebr %r0, 0, %f0, 0
107
- 0xb3,0x9c,0x0f,0x00 = clfebr %r0, 0, %f0, 15
108
- 0xb3,0x9c,0x00,0x0f = clfebr %r0, 0, %f15, 0
109
- 0xb3,0x9c,0xf0,0x00 = clfebr %r0, 15, %f0, 0
110
- 0xb3,0x9c,0x57,0x46 = clfebr %r4, 5, %f6, 7
111
- 0xb3,0x9c,0x00,0xf0 = clfebr %r15, 0, %f0, 0
112
- 0xb3,0x9e,0x00,0x00 = clfxbr %r0, 0, %f0, 0
113
- 0xb3,0x9e,0x0f,0x00 = clfxbr %r0, 0, %f0, 15
114
- 0xb3,0x9e,0x00,0x0d = clfxbr %r0, 0, %f13, 0
115
- 0xb3,0x9e,0xf0,0x00 = clfxbr %r0, 15, %f0, 0
116
- 0xb3,0x9e,0x59,0x78 = clfxbr %r7, 5, %f8, 9
117
- 0xb3,0x9e,0x00,0xf0 = clfxbr %r15, 0, %f0, 0
118
- 0xb3,0xad,0x00,0x00 = clgdbr %r0, 0, %f0, 0
119
- 0xb3,0xad,0x0f,0x00 = clgdbr %r0, 0, %f0, 15
120
- 0xb3,0xad,0x00,0x0f = clgdbr %r0, 0, %f15, 0
121
- 0xb3,0xad,0xf0,0x00 = clgdbr %r0, 15, %f0, 0
122
- 0xb3,0xad,0x57,0x46 = clgdbr %r4, 5, %f6, 7
123
- 0xb3,0xad,0x00,0xf0 = clgdbr %r15, 0, %f0, 0
124
- 0xb3,0xac,0x00,0x00 = clgebr %r0, 0, %f0, 0
125
- 0xb3,0xac,0x0f,0x00 = clgebr %r0, 0, %f0, 15
126
- 0xb3,0xac,0x00,0x0f = clgebr %r0, 0, %f15, 0
127
- 0xb3,0xac,0xf0,0x00 = clgebr %r0, 15, %f0, 0
128
- 0xb3,0xac,0x57,0x46 = clgebr %r4, 5, %f6, 7
129
- 0xb3,0xac,0x00,0xf0 = clgebr %r15, 0, %f0, 0
130
- 0xb3,0xae,0x00,0x00 = clgxbr %r0, 0, %f0, 0
131
- 0xb3,0xae,0x0f,0x00 = clgxbr %r0, 0, %f0, 15
132
- 0xb3,0xae,0x00,0x0d = clgxbr %r0, 0, %f13, 0
133
- 0xb3,0xae,0xf0,0x00 = clgxbr %r0, 15, %f0, 0
134
- 0xb3,0xae,0x59,0x78 = clgxbr %r7, 5, %f8, 9
135
- 0xb3,0xae,0x00,0xf0 = clgxbr %r15, 0, %f0, 0
136
- 0xe3,0x00,0x00,0x00,0x80,0xcf = clhf %r0, -524288
137
- 0xe3,0x00,0x0f,0xff,0xff,0xcf = clhf %r0, -1
138
- 0xe3,0x00,0x00,0x00,0x00,0xcf = clhf %r0, 0
139
- 0xe3,0x00,0x00,0x01,0x00,0xcf = clhf %r0, 1
140
- 0xe3,0x00,0x0f,0xff,0x7f,0xcf = clhf %r0, 524287
141
- 0xe3,0x00,0x10,0x00,0x00,0xcf = clhf %r0, 0(%r1)
142
- 0xe3,0x00,0xf0,0x00,0x00,0xcf = clhf %r0, 0(%r15)
143
- 0xe3,0x01,0xff,0xff,0x7f,0xcf = clhf %r0, 524287(%r1,%r15)
144
- 0xe3,0x0f,0x1f,0xff,0x7f,0xcf = clhf %r0, 524287(%r15,%r1)
145
- 0xe3,0xf0,0x00,0x00,0x00,0xcf = clhf %r15, 0
146
- 0xcc,0x0f,0x00,0x00,0x00,0x00 = clih %r0, 0
147
- 0xcc,0x0f,0x00,0x00,0x00,0x01 = clih %r0, 1
148
- 0xcc,0x0f,0xff,0xff,0xff,0xff = clih %r0, 4294967295
149
- 0xcc,0xff,0x00,0x00,0x00,0x00 = clih %r15, 0
150
- 0xb3,0x92,0x00,0x00 = cxlfbr %f0, 0, %r0, 0
151
- 0xb3,0x92,0x0f,0x00 = cxlfbr %f0, 0, %r0, 15
152
- 0xb3,0x92,0x00,0x0f = cxlfbr %f0, 0, %r15, 0
153
- 0xb3,0x92,0xf0,0x00 = cxlfbr %f0, 15, %r0, 0
154
- 0xb3,0x92,0x5a,0x49 = cxlfbr %f4, 5, %r9, 10
155
- 0xb3,0x92,0x00,0xd0 = cxlfbr %f13, 0, %r0, 0
156
- 0xb3,0xa2,0x00,0x00 = cxlgbr %f0, 0, %r0, 0
157
- 0xb3,0xa2,0x0f,0x00 = cxlgbr %f0, 0, %r0, 15
158
- 0xb3,0xa2,0x00,0x0f = cxlgbr %f0, 0, %r15, 0
159
- 0xb3,0xa2,0xf0,0x00 = cxlgbr %f0, 15, %r0, 0
160
- 0xb3,0xa2,0x5a,0x49 = cxlgbr %f4, 5, %r9, 10
161
- 0xb3,0xa2,0x00,0xd0 = cxlgbr %f13, 0, %r0, 0
162
- 0xb3,0x5f,0x00,0x00 = fidbra %f0, 0, %f0, 0
163
- 0xb3,0x5f,0x0f,0x00 = fidbra %f0, 0, %f0, 15
164
- 0xb3,0x5f,0x00,0x0f = fidbra %f0, 0, %f15, 0
165
- 0xb3,0x5f,0xf0,0x00 = fidbra %f0, 15, %f0, 0
166
- 0xb3,0x5f,0x57,0x46 = fidbra %f4, 5, %f6, 7
167
- 0xb3,0x5f,0x00,0xf0 = fidbra %f15, 0, %f0, 0
168
- 0xb3,0x57,0x00,0x00 = fiebra %f0, 0, %f0, 0
169
- 0xb3,0x57,0x0f,0x00 = fiebra %f0, 0, %f0, 15
170
- 0xb3,0x57,0x00,0x0f = fiebra %f0, 0, %f15, 0
171
- 0xb3,0x57,0xf0,0x00 = fiebra %f0, 15, %f0, 0
172
- 0xb3,0x57,0x57,0x46 = fiebra %f4, 5, %f6, 7
173
- 0xb3,0x57,0x00,0xf0 = fiebra %f15, 0, %f0, 0
174
- 0xb3,0x47,0x00,0x00 = fixbra %f0, 0, %f0, 0
175
- 0xb3,0x47,0x0f,0x00 = fixbra %f0, 0, %f0, 15
176
- 0xb3,0x47,0x00,0x0d = fixbra %f0, 0, %f13, 0
177
- 0xb3,0x47,0xf0,0x00 = fixbra %f0, 15, %f0, 0
178
- 0xb3,0x47,0x59,0x48 = fixbra %f4, 5, %f8, 9
179
- 0xb3,0x47,0x00,0xd0 = fixbra %f13, 0, %f0, 0
180
- 0xeb,0x00,0x00,0x00,0x80,0xf8 = laa %r0, %r0, -524288
181
- 0xeb,0x00,0x0f,0xff,0xff,0xf8 = laa %r0, %r0, -1
182
- 0xeb,0x00,0x00,0x00,0x00,0xf8 = laa %r0, %r0, 0
183
- 0xeb,0x00,0x00,0x01,0x00,0xf8 = laa %r0, %r0, 1
184
- 0xeb,0x00,0x0f,0xff,0x7f,0xf8 = laa %r0, %r0, 524287
185
- 0xeb,0x00,0x10,0x00,0x00,0xf8 = laa %r0, %r0, 0(%r1)
186
- 0xeb,0x00,0xf0,0x00,0x00,0xf8 = laa %r0, %r0, 0(%r15)
187
- 0xeb,0x00,0x1f,0xff,0x7f,0xf8 = laa %r0, %r0, 524287(%r1)
188
- 0xeb,0x00,0xff,0xff,0x7f,0xf8 = laa %r0, %r0, 524287(%r15)
189
- 0xeb,0x0f,0x00,0x00,0x00,0xf8 = laa %r0, %r15, 0
190
- 0xeb,0xf0,0x00,0x00,0x00,0xf8 = laa %r15, %r0, 0
191
- 0xeb,0x00,0x00,0x00,0x80,0xe8 = laag %r0, %r0, -524288
192
- 0xeb,0x00,0x0f,0xff,0xff,0xe8 = laag %r0, %r0, -1
193
- 0xeb,0x00,0x00,0x00,0x00,0xe8 = laag %r0, %r0, 0
194
- 0xeb,0x00,0x00,0x01,0x00,0xe8 = laag %r0, %r0, 1
195
- 0xeb,0x00,0x0f,0xff,0x7f,0xe8 = laag %r0, %r0, 524287
196
- 0xeb,0x00,0x10,0x00,0x00,0xe8 = laag %r0, %r0, 0(%r1)
197
- 0xeb,0x00,0xf0,0x00,0x00,0xe8 = laag %r0, %r0, 0(%r15)
198
- 0xeb,0x00,0x1f,0xff,0x7f,0xe8 = laag %r0, %r0, 524287(%r1)
199
- 0xeb,0x00,0xff,0xff,0x7f,0xe8 = laag %r0, %r0, 524287(%r15)
200
- 0xeb,0x0f,0x00,0x00,0x00,0xe8 = laag %r0, %r15, 0
201
- 0xeb,0xf0,0x00,0x00,0x00,0xe8 = laag %r15, %r0, 0
202
- 0xeb,0x00,0x00,0x00,0x80,0xfa = laal %r0, %r0, -524288
203
- 0xeb,0x00,0x0f,0xff,0xff,0xfa = laal %r0, %r0, -1
204
- 0xeb,0x00,0x00,0x00,0x00,0xfa = laal %r0, %r0, 0
205
- 0xeb,0x00,0x00,0x01,0x00,0xfa = laal %r0, %r0, 1
206
- 0xeb,0x00,0x0f,0xff,0x7f,0xfa = laal %r0, %r0, 524287
207
- 0xeb,0x00,0x10,0x00,0x00,0xfa = laal %r0, %r0, 0(%r1)
208
- 0xeb,0x00,0xf0,0x00,0x00,0xfa = laal %r0, %r0, 0(%r15)
209
- 0xeb,0x00,0x1f,0xff,0x7f,0xfa = laal %r0, %r0, 524287(%r1)
210
- 0xeb,0x00,0xff,0xff,0x7f,0xfa = laal %r0, %r0, 524287(%r15)
211
- 0xeb,0x0f,0x00,0x00,0x00,0xfa = laal %r0, %r15, 0
212
- 0xeb,0xf0,0x00,0x00,0x00,0xfa = laal %r15, %r0, 0
213
- 0xeb,0x00,0x00,0x00,0x80,0xea = laalg %r0, %r0, -524288
214
- 0xeb,0x00,0x0f,0xff,0xff,0xea = laalg %r0, %r0, -1
215
- 0xeb,0x00,0x00,0x00,0x00,0xea = laalg %r0, %r0, 0
216
- 0xeb,0x00,0x00,0x01,0x00,0xea = laalg %r0, %r0, 1
217
- 0xeb,0x00,0x0f,0xff,0x7f,0xea = laalg %r0, %r0, 524287
218
- 0xeb,0x00,0x10,0x00,0x00,0xea = laalg %r0, %r0, 0(%r1)
219
- 0xeb,0x00,0xf0,0x00,0x00,0xea = laalg %r0, %r0, 0(%r15)
220
- 0xeb,0x00,0x1f,0xff,0x7f,0xea = laalg %r0, %r0, 524287(%r1)
221
- 0xeb,0x00,0xff,0xff,0x7f,0xea = laalg %r0, %r0, 524287(%r15)
222
- 0xeb,0x0f,0x00,0x00,0x00,0xea = laalg %r0, %r15, 0
223
- 0xeb,0xf0,0x00,0x00,0x00,0xea = laalg %r15, %r0, 0
224
- 0xeb,0x00,0x00,0x00,0x80,0xf4 = lan %r0, %r0, -524288
225
- 0xeb,0x00,0x0f,0xff,0xff,0xf4 = lan %r0, %r0, -1
226
- 0xeb,0x00,0x00,0x00,0x00,0xf4 = lan %r0, %r0, 0
227
- 0xeb,0x00,0x00,0x01,0x00,0xf4 = lan %r0, %r0, 1
228
- 0xeb,0x00,0x0f,0xff,0x7f,0xf4 = lan %r0, %r0, 524287
229
- 0xeb,0x00,0x10,0x00,0x00,0xf4 = lan %r0, %r0, 0(%r1)
230
- 0xeb,0x00,0xf0,0x00,0x00,0xf4 = lan %r0, %r0, 0(%r15)
231
- 0xeb,0x00,0x1f,0xff,0x7f,0xf4 = lan %r0, %r0, 524287(%r1)
232
- 0xeb,0x00,0xff,0xff,0x7f,0xf4 = lan %r0, %r0, 524287(%r15)
233
- 0xeb,0x0f,0x00,0x00,0x00,0xf4 = lan %r0, %r15, 0
234
- 0xeb,0xf0,0x00,0x00,0x00,0xf4 = lan %r15, %r0, 0
235
- 0xeb,0x00,0x00,0x00,0x80,0xe4 = lang %r0, %r0, -524288
236
- 0xeb,0x00,0x0f,0xff,0xff,0xe4 = lang %r0, %r0, -1
237
- 0xeb,0x00,0x00,0x00,0x00,0xe4 = lang %r0, %r0, 0
238
- 0xeb,0x00,0x00,0x01,0x00,0xe4 = lang %r0, %r0, 1
239
- 0xeb,0x00,0x0f,0xff,0x7f,0xe4 = lang %r0, %r0, 524287
240
- 0xeb,0x00,0x10,0x00,0x00,0xe4 = lang %r0, %r0, 0(%r1)
241
- 0xeb,0x00,0xf0,0x00,0x00,0xe4 = lang %r0, %r0, 0(%r15)
242
- 0xeb,0x00,0x1f,0xff,0x7f,0xe4 = lang %r0, %r0, 524287(%r1)
243
- 0xeb,0x00,0xff,0xff,0x7f,0xe4 = lang %r0, %r0, 524287(%r15)
244
- 0xeb,0x0f,0x00,0x00,0x00,0xe4 = lang %r0, %r15, 0
245
- 0xeb,0xf0,0x00,0x00,0x00,0xe4 = lang %r15, %r0, 0
246
- 0xeb,0x00,0x00,0x00,0x80,0xf6 = lao %r0, %r0, -524288
247
- 0xeb,0x00,0x0f,0xff,0xff,0xf6 = lao %r0, %r0, -1
248
- 0xeb,0x00,0x00,0x00,0x00,0xf6 = lao %r0, %r0, 0
249
- 0xeb,0x00,0x00,0x01,0x00,0xf6 = lao %r0, %r0, 1
250
- 0xeb,0x00,0x0f,0xff,0x7f,0xf6 = lao %r0, %r0, 524287
251
- 0xeb,0x00,0x10,0x00,0x00,0xf6 = lao %r0, %r0, 0(%r1)
252
- 0xeb,0x00,0xf0,0x00,0x00,0xf6 = lao %r0, %r0, 0(%r15)
253
- 0xeb,0x00,0x1f,0xff,0x7f,0xf6 = lao %r0, %r0, 524287(%r1)
254
- 0xeb,0x00,0xff,0xff,0x7f,0xf6 = lao %r0, %r0, 524287(%r15)
255
- 0xeb,0x0f,0x00,0x00,0x00,0xf6 = lao %r0, %r15, 0
256
- 0xeb,0xf0,0x00,0x00,0x00,0xf6 = lao %r15, %r0, 0
257
- 0xeb,0x00,0x00,0x00,0x80,0xe6 = laog %r0, %r0, -524288
258
- 0xeb,0x00,0x0f,0xff,0xff,0xe6 = laog %r0, %r0, -1
259
- 0xeb,0x00,0x00,0x00,0x00,0xe6 = laog %r0, %r0, 0
260
- 0xeb,0x00,0x00,0x01,0x00,0xe6 = laog %r0, %r0, 1
261
- 0xeb,0x00,0x0f,0xff,0x7f,0xe6 = laog %r0, %r0, 524287
262
- 0xeb,0x00,0x10,0x00,0x00,0xe6 = laog %r0, %r0, 0(%r1)
263
- 0xeb,0x00,0xf0,0x00,0x00,0xe6 = laog %r0, %r0, 0(%r15)
264
- 0xeb,0x00,0x1f,0xff,0x7f,0xe6 = laog %r0, %r0, 524287(%r1)
265
- 0xeb,0x00,0xff,0xff,0x7f,0xe6 = laog %r0, %r0, 524287(%r15)
266
- 0xeb,0x0f,0x00,0x00,0x00,0xe6 = laog %r0, %r15, 0
267
- 0xeb,0xf0,0x00,0x00,0x00,0xe6 = laog %r15, %r0, 0
268
- 0xeb,0x00,0x00,0x00,0x80,0xf7 = lax %r0, %r0, -524288
269
- 0xeb,0x00,0x0f,0xff,0xff,0xf7 = lax %r0, %r0, -1
270
- 0xeb,0x00,0x00,0x00,0x00,0xf7 = lax %r0, %r0, 0
271
- 0xeb,0x00,0x00,0x01,0x00,0xf7 = lax %r0, %r0, 1
272
- 0xeb,0x00,0x0f,0xff,0x7f,0xf7 = lax %r0, %r0, 524287
273
- 0xeb,0x00,0x10,0x00,0x00,0xf7 = lax %r0, %r0, 0(%r1)
274
- 0xeb,0x00,0xf0,0x00,0x00,0xf7 = lax %r0, %r0, 0(%r15)
275
- 0xeb,0x00,0x1f,0xff,0x7f,0xf7 = lax %r0, %r0, 524287(%r1)
276
- 0xeb,0x00,0xff,0xff,0x7f,0xf7 = lax %r0, %r0, 524287(%r15)
277
- 0xeb,0x0f,0x00,0x00,0x00,0xf7 = lax %r0, %r15, 0
278
- 0xeb,0xf0,0x00,0x00,0x00,0xf7 = lax %r15, %r0, 0
279
- 0xeb,0x00,0x00,0x00,0x80,0xe7 = laxg %r0, %r0, -524288
280
- 0xeb,0x00,0x0f,0xff,0xff,0xe7 = laxg %r0, %r0, -1
281
- 0xeb,0x00,0x00,0x00,0x00,0xe7 = laxg %r0, %r0, 0
282
- 0xeb,0x00,0x00,0x01,0x00,0xe7 = laxg %r0, %r0, 1
283
- 0xeb,0x00,0x0f,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287
284
- 0xeb,0x00,0x10,0x00,0x00,0xe7 = laxg %r0, %r0, 0(%r1)
285
- 0xeb,0x00,0xf0,0x00,0x00,0xe7 = laxg %r0, %r0, 0(%r15)
286
- 0xeb,0x00,0x1f,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287(%r1)
287
- 0xeb,0x00,0xff,0xff,0x7f,0xe7 = laxg %r0, %r0, 524287(%r15)
288
- 0xeb,0x0f,0x00,0x00,0x00,0xe7 = laxg %r0, %r15, 0
289
- 0xeb,0xf0,0x00,0x00,0x00,0xe7 = laxg %r15, %r0, 0
290
- 0xe3,0x00,0x00,0x00,0x80,0xc0 = lbh %r0, -524288
291
- 0xe3,0x00,0x0f,0xff,0xff,0xc0 = lbh %r0, -1
292
- 0xe3,0x00,0x00,0x00,0x00,0xc0 = lbh %r0, 0
293
- 0xe3,0x00,0x00,0x01,0x00,0xc0 = lbh %r0, 1
294
- 0xe3,0x00,0x0f,0xff,0x7f,0xc0 = lbh %r0, 524287
295
- 0xe3,0x00,0x10,0x00,0x00,0xc0 = lbh %r0, 0(%r1)
296
- 0xe3,0x00,0xf0,0x00,0x00,0xc0 = lbh %r0, 0(%r15)
297
- 0xe3,0x01,0xff,0xff,0x7f,0xc0 = lbh %r0, 524287(%r1,%r15)
298
- 0xe3,0x0f,0x1f,0xff,0x7f,0xc0 = lbh %r0, 524287(%r15,%r1)
299
- 0xe3,0xf0,0x00,0x00,0x00,0xc0 = lbh %r15, 0
300
- 0xe3,0x00,0x00,0x00,0x80,0xca = lfh %r0, -524288
301
- 0xe3,0x00,0x0f,0xff,0xff,0xca = lfh %r0, -1
302
- 0xe3,0x00,0x00,0x00,0x00,0xca = lfh %r0, 0
303
- 0xe3,0x00,0x00,0x01,0x00,0xca = lfh %r0, 1
304
- 0xe3,0x00,0x0f,0xff,0x7f,0xca = lfh %r0, 524287
305
- 0xe3,0x00,0x10,0x00,0x00,0xca = lfh %r0, 0(%r1)
306
- 0xe3,0x00,0xf0,0x00,0x00,0xca = lfh %r0, 0(%r15)
307
- 0xe3,0x01,0xff,0xff,0x7f,0xca = lfh %r0, 524287(%r1,%r15)
308
- 0xe3,0x0f,0x1f,0xff,0x7f,0xca = lfh %r0, 524287(%r15,%r1)
309
- 0xe3,0xf0,0x00,0x00,0x00,0xca = lfh %r15, 0
310
- 0xe3,0x00,0x00,0x00,0x80,0xc4 = lhh %r0, -524288
311
- 0xe3,0x00,0x0f,0xff,0xff,0xc4 = lhh %r0, -1
312
- 0xe3,0x00,0x00,0x00,0x00,0xc4 = lhh %r0, 0
313
- 0xe3,0x00,0x00,0x01,0x00,0xc4 = lhh %r0, 1
314
- 0xe3,0x00,0x0f,0xff,0x7f,0xc4 = lhh %r0, 524287
315
- 0xe3,0x00,0x10,0x00,0x00,0xc4 = lhh %r0, 0(%r1)
316
- 0xe3,0x00,0xf0,0x00,0x00,0xc4 = lhh %r0, 0(%r15)
317
- 0xe3,0x01,0xff,0xff,0x7f,0xc4 = lhh %r0, 524287(%r1,%r15)
318
- 0xe3,0x0f,0x1f,0xff,0x7f,0xc4 = lhh %r0, 524287(%r15,%r1)
319
- 0xe3,0xf0,0x00,0x00,0x00,0xc4 = lhh %r15, 0
320
- 0xe3,0x00,0x00,0x00,0x80,0xc2 = llch %r0, -524288
321
- 0xe3,0x00,0x0f,0xff,0xff,0xc2 = llch %r0, -1
322
- 0xe3,0x00,0x00,0x00,0x00,0xc2 = llch %r0, 0
323
- 0xe3,0x00,0x00,0x01,0x00,0xc2 = llch %r0, 1
324
- 0xe3,0x00,0x0f,0xff,0x7f,0xc2 = llch %r0, 524287
325
- 0xe3,0x00,0x10,0x00,0x00,0xc2 = llch %r0, 0(%r1)
326
- 0xe3,0x00,0xf0,0x00,0x00,0xc2 = llch %r0, 0(%r15)
327
- 0xe3,0x01,0xff,0xff,0x7f,0xc2 = llch %r0, 524287(%r1,%r15)
328
- 0xe3,0x0f,0x1f,0xff,0x7f,0xc2 = llch %r0, 524287(%r15,%r1)
329
- 0xe3,0xf0,0x00,0x00,0x00,0xc2 = llch %r15, 0
330
- 0xe3,0x00,0x00,0x00,0x80,0xc6 = llhh %r0, -524288
331
- 0xe3,0x00,0x0f,0xff,0xff,0xc6 = llhh %r0, -1
332
- 0xe3,0x00,0x00,0x00,0x00,0xc6 = llhh %r0, 0
333
- 0xe3,0x00,0x00,0x01,0x00,0xc6 = llhh %r0, 1
334
- 0xe3,0x00,0x0f,0xff,0x7f,0xc6 = llhh %r0, 524287
335
- 0xe3,0x00,0x10,0x00,0x00,0xc6 = llhh %r0, 0(%r1)
336
- 0xe3,0x00,0xf0,0x00,0x00,0xc6 = llhh %r0, 0(%r15)
337
- 0xe3,0x01,0xff,0xff,0x7f,0xc6 = llhh %r0, 524287(%r1,%r15)
338
- 0xe3,0x0f,0x1f,0xff,0x7f,0xc6 = llhh %r0, 524287(%r15,%r1)
339
- 0xe3,0xf0,0x00,0x00,0x00,0xc6 = llhh %r15, 0
340
- 0xeb,0x00,0x00,0x00,0x00,0xf2 = loc %r0, 0, 0
341
- 0xeb,0x0f,0x00,0x00,0x00,0xf2 = loc %r0, 0, 15
342
- 0xeb,0x00,0x00,0x00,0x80,0xf2 = loc %r0, -524288, 0
343
- 0xeb,0x00,0x0f,0xff,0x7f,0xf2 = loc %r0, 524287, 0
344
- 0xeb,0x00,0x10,0x00,0x00,0xf2 = loc %r0, 0(%r1), 0
345
- 0xeb,0x00,0xf0,0x00,0x00,0xf2 = loc %r0, 0(%r15), 0
346
- 0xeb,0xf0,0x00,0x00,0x00,0xf2 = loc %r15, 0, 0
347
- 0xeb,0x13,0x2f,0xff,0x00,0xf2 = loc %r1, 4095(%r2), 3
348
- 0xeb,0x11,0x30,0x02,0x00,0xf2 = loco %r1, 2(%r3)
349
- 0xeb,0x12,0x30,0x02,0x00,0xf2 = loch %r1, 2(%r3)
350
- 0xeb,0x13,0x30,0x02,0x00,0xf2 = locnle %r1, 2(%r3)
351
- 0xeb,0x14,0x30,0x02,0x00,0xf2 = locl %r1, 2(%r3)
352
- 0xeb,0x15,0x30,0x02,0x00,0xf2 = locnhe %r1, 2(%r3)
353
- 0xeb,0x16,0x30,0x02,0x00,0xf2 = loclh %r1, 2(%r3)
354
- 0xeb,0x17,0x30,0x02,0x00,0xf2 = locne %r1, 2(%r3)
355
- 0xeb,0x18,0x30,0x02,0x00,0xf2 = loce %r1, 2(%r3)
356
- 0xeb,0x19,0x30,0x02,0x00,0xf2 = locnlh %r1, 2(%r3)
357
- 0xeb,0x1a,0x30,0x02,0x00,0xf2 = loche %r1, 2(%r3)
358
- 0xeb,0x1b,0x30,0x02,0x00,0xf2 = locnl %r1, 2(%r3)
359
- 0xeb,0x1c,0x30,0x02,0x00,0xf2 = locle %r1, 2(%r3)
360
- 0xeb,0x1d,0x30,0x02,0x00,0xf2 = locnh %r1, 2(%r3)
361
- 0xeb,0x1e,0x30,0x02,0x00,0xf2 = locno %r1, 2(%r3)
362
- 0xeb,0x00,0x00,0x00,0x00,0xe2 = locg %r0, 0, 0
363
- 0xeb,0x0f,0x00,0x00,0x00,0xe2 = locg %r0, 0, 15
364
- 0xeb,0x00,0x00,0x00,0x80,0xe2 = locg %r0, -524288, 0
365
- 0xeb,0x00,0x0f,0xff,0x7f,0xe2 = locg %r0, 524287, 0
366
- 0xeb,0x00,0x10,0x00,0x00,0xe2 = locg %r0, 0(%r1), 0
367
- 0xeb,0x00,0xf0,0x00,0x00,0xe2 = locg %r0, 0(%r15), 0
368
- 0xeb,0xf0,0x00,0x00,0x00,0xe2 = locg %r15, 0, 0
369
- 0xeb,0x13,0x2f,0xff,0x00,0xe2 = locg %r1, 4095(%r2), 3
370
- 0xeb,0x11,0x30,0x02,0x00,0xe2 = locgo %r1, 2(%r3)
371
- 0xeb,0x12,0x30,0x02,0x00,0xe2 = locgh %r1, 2(%r3)
372
- 0xeb,0x13,0x30,0x02,0x00,0xe2 = locgnle %r1, 2(%r3)
373
- 0xeb,0x14,0x30,0x02,0x00,0xe2 = locgl %r1, 2(%r3)
374
- 0xeb,0x15,0x30,0x02,0x00,0xe2 = locgnhe %r1, 2(%r3)
375
- 0xeb,0x16,0x30,0x02,0x00,0xe2 = locglh %r1, 2(%r3)
376
- 0xeb,0x17,0x30,0x02,0x00,0xe2 = locgne %r1, 2(%r3)
377
- 0xeb,0x18,0x30,0x02,0x00,0xe2 = locge %r1, 2(%r3)
378
- 0xeb,0x19,0x30,0x02,0x00,0xe2 = locgnlh %r1, 2(%r3)
379
- 0xeb,0x1a,0x30,0x02,0x00,0xe2 = locghe %r1, 2(%r3)
380
- 0xeb,0x1b,0x30,0x02,0x00,0xe2 = locgnl %r1, 2(%r3)
381
- 0xeb,0x1c,0x30,0x02,0x00,0xe2 = locgle %r1, 2(%r3)
382
- 0xeb,0x1d,0x30,0x02,0x00,0xe2 = locgnh %r1, 2(%r3)
383
- 0xeb,0x1e,0x30,0x02,0x00,0xe2 = locgno %r1, 2(%r3)
384
- 0xb9,0xe2,0x00,0x12 = locgr %r1, %r2, 0
385
- 0xb9,0xe2,0xf0,0x12 = locgr %r1, %r2, 15
386
- 0xb9,0xe2,0x10,0x13 = locgro %r1, %r3
387
- 0xb9,0xe2,0x20,0x13 = locgrh %r1, %r3
388
- 0xb9,0xe2,0x30,0x13 = locgrnle %r1, %r3
389
- 0xb9,0xe2,0x40,0x13 = locgrl %r1, %r3
390
- 0xb9,0xe2,0x50,0x13 = locgrnhe %r1, %r3
391
- 0xb9,0xe2,0x60,0x13 = locgrlh %r1, %r3
392
- 0xb9,0xe2,0x70,0x13 = locgrne %r1, %r3
393
- 0xb9,0xe2,0x80,0x13 = locgre %r1, %r3
394
- 0xb9,0xe2,0x90,0x13 = locgrnlh %r1, %r3
395
- 0xb9,0xe2,0xa0,0x13 = locgrhe %r1, %r3
396
- 0xb9,0xe2,0xb0,0x13 = locgrnl %r1, %r3
397
- 0xb9,0xe2,0xc0,0x13 = locgrle %r1, %r3
398
- 0xb9,0xe2,0xd0,0x13 = locgrnh %r1, %r3
399
- 0xb9,0xe2,0xe0,0x13 = locgrno %r1, %r3
400
- 0xb9,0xf2,0x00,0x12 = locr %r1, %r2, 0
401
- 0xb9,0xf2,0xf0,0x12 = locr %r1, %r2, 15
402
- 0xb9,0xf2,0x10,0x13 = locro %r1, %r3
403
- 0xb9,0xf2,0x20,0x13 = locrh %r1, %r3
404
- 0xb9,0xf2,0x30,0x13 = locrnle %r1, %r3
405
- 0xb9,0xf2,0x40,0x13 = locrl %r1, %r3
406
- 0xb9,0xf2,0x50,0x13 = locrnhe %r1, %r3
407
- 0xb9,0xf2,0x60,0x13 = locrlh %r1, %r3
408
- 0xb9,0xf2,0x70,0x13 = locrne %r1, %r3
409
- 0xb9,0xf2,0x80,0x13 = locre %r1, %r3
410
- 0xb9,0xf2,0x90,0x13 = locrnlh %r1, %r3
411
- 0xb9,0xf2,0xa0,0x13 = locrhe %r1, %r3
412
- 0xb9,0xf2,0xb0,0x13 = locrnl %r1, %r3
413
- 0xb9,0xf2,0xc0,0x13 = locrle %r1, %r3
414
- 0xb9,0xf2,0xd0,0x13 = locrnh %r1, %r3
415
- 0xb9,0xf2,0xe0,0x13 = locrno %r1, %r3
416
- 0xb9,0xe4,0x00,0x00 = ngrk %r0, %r0, %r0
417
- 0xb9,0xe4,0xf0,0x00 = ngrk %r0, %r0, %r15
418
- 0xb9,0xe4,0x00,0x0f = ngrk %r0, %r15, %r0
419
- 0xb9,0xe4,0x00,0xf0 = ngrk %r15, %r0, %r0
420
- 0xb9,0xe4,0x90,0x78 = ngrk %r7, %r8, %r9
421
- 0xb9,0xf4,0x00,0x00 = nrk %r0, %r0, %r0
422
- 0xb9,0xf4,0xf0,0x00 = nrk %r0, %r0, %r15
423
- 0xb9,0xf4,0x00,0x0f = nrk %r0, %r15, %r0
424
- 0xb9,0xf4,0x00,0xf0 = nrk %r15, %r0, %r0
425
- 0xb9,0xf4,0x90,0x78 = nrk %r7, %r8, %r9
426
- 0xb9,0xe6,0x00,0x00 = ogrk %r0, %r0, %r0
427
- 0xb9,0xe6,0xf0,0x00 = ogrk %r0, %r0, %r15
428
- 0xb9,0xe6,0x00,0x0f = ogrk %r0, %r15, %r0
429
- 0xb9,0xe6,0x00,0xf0 = ogrk %r15, %r0, %r0
430
- 0xb9,0xe6,0x90,0x78 = ogrk %r7, %r8, %r9
431
- 0xb9,0xf6,0x00,0x00 = ork %r0, %r0, %r0
432
- 0xb9,0xf6,0xf0,0x00 = ork %r0, %r0, %r15
433
- 0xb9,0xf6,0x00,0x0f = ork %r0, %r15, %r0
434
- 0xb9,0xf6,0x00,0xf0 = ork %r15, %r0, %r0
435
- 0xb9,0xf6,0x90,0x78 = ork %r7, %r8, %r9
436
- 0xec,0x00,0x00,0x00,0x00,0x5d = risbhg %r0, %r0, 0, 0, 0
437
- 0xec,0x00,0x00,0x00,0x3f,0x5d = risbhg %r0, %r0, 0, 0, 63
438
- 0xec,0x00,0x00,0xff,0x00,0x5d = risbhg %r0, %r0, 0, 255, 0
439
- 0xec,0x00,0xff,0x00,0x00,0x5d = risbhg %r0, %r0, 255, 0, 0
440
- 0xec,0x0f,0x00,0x00,0x00,0x5d = risbhg %r0, %r15, 0, 0, 0
441
- 0xec,0xf0,0x00,0x00,0x00,0x5d = risbhg %r15, %r0, 0, 0, 0
442
- 0xec,0x45,0x06,0x07,0x08,0x5d = risbhg %r4, %r5, 6, 7, 8
443
- 0xec,0x00,0x00,0x00,0x00,0x51 = risblg %r0, %r0, 0, 0, 0
444
- 0xec,0x00,0x00,0x00,0x3f,0x51 = risblg %r0, %r0, 0, 0, 63
445
- 0xec,0x00,0x00,0xff,0x00,0x51 = risblg %r0, %r0, 0, 255, 0
446
- 0xec,0x00,0xff,0x00,0x00,0x51 = risblg %r0, %r0, 255, 0, 0
447
- 0xec,0x0f,0x00,0x00,0x00,0x51 = risblg %r0, %r15, 0, 0, 0
448
- 0xec,0xf0,0x00,0x00,0x00,0x51 = risblg %r15, %r0, 0, 0, 0
449
- 0xec,0x45,0x06,0x07,0x08,0x51 = risblg %r4, %r5, 6, 7, 8
450
- 0xb9,0xe9,0x00,0x00 = sgrk %r0, %r0, %r0
451
- 0xb9,0xe9,0xf0,0x00 = sgrk %r0, %r0, %r15
452
- 0xb9,0xe9,0x00,0x0f = sgrk %r0, %r15, %r0
453
- 0xb9,0xe9,0x00,0xf0 = sgrk %r15, %r0, %r0
454
- 0xb9,0xe9,0x90,0x78 = sgrk %r7, %r8, %r9
455
- 0xb9,0xeb,0x00,0x00 = slgrk %r0, %r0, %r0
456
- 0xb9,0xeb,0xf0,0x00 = slgrk %r0, %r0, %r15
457
- 0xb9,0xeb,0x00,0x0f = slgrk %r0, %r15, %r0
458
- 0xb9,0xeb,0x00,0xf0 = slgrk %r15, %r0, %r0
459
- 0xb9,0xeb,0x90,0x78 = slgrk %r7, %r8, %r9
460
- 0xb9,0xfb,0x00,0x00 = slrk %r0, %r0, %r0
461
- 0xb9,0xfb,0xf0,0x00 = slrk %r0, %r0, %r15
462
- 0xb9,0xfb,0x00,0x0f = slrk %r0, %r15, %r0
463
- 0xb9,0xfb,0x00,0xf0 = slrk %r15, %r0, %r0
464
- 0xb9,0xfb,0x90,0x78 = slrk %r7, %r8, %r9
465
- 0xeb,0x00,0x00,0x00,0x00,0xdf = sllk %r0, %r0, 0
466
- 0xeb,0xf1,0x00,0x00,0x00,0xdf = sllk %r15, %r1, 0
467
- 0xeb,0x1f,0x00,0x00,0x00,0xdf = sllk %r1, %r15, 0
468
- 0xeb,0xff,0x00,0x00,0x00,0xdf = sllk %r15, %r15, 0
469
- 0xeb,0x00,0x00,0x00,0x80,0xdf = sllk %r0, %r0, -524288
470
- 0xeb,0x00,0x0f,0xff,0xff,0xdf = sllk %r0, %r0, -1
471
- 0xeb,0x00,0x00,0x01,0x00,0xdf = sllk %r0, %r0, 1
472
- 0xeb,0x00,0x0f,0xff,0x7f,0xdf = sllk %r0, %r0, 524287
473
- 0xeb,0x00,0x10,0x00,0x00,0xdf = sllk %r0, %r0, 0(%r1)
474
- 0xeb,0x00,0xf0,0x00,0x00,0xdf = sllk %r0, %r0, 0(%r15)
475
- 0xeb,0x00,0x1f,0xff,0x7f,0xdf = sllk %r0, %r0, 524287(%r1)
476
- 0xeb,0x00,0xff,0xff,0x7f,0xdf = sllk %r0, %r0, 524287(%r15)
477
- 0xeb,0x00,0x00,0x00,0x00,0xdc = srak %r0, %r0, 0
478
- 0xeb,0xf1,0x00,0x00,0x00,0xdc = srak %r15, %r1, 0
479
- 0xeb,0x1f,0x00,0x00,0x00,0xdc = srak %r1, %r15, 0
480
- 0xeb,0xff,0x00,0x00,0x00,0xdc = srak %r15, %r15, 0
481
- 0xeb,0x00,0x00,0x00,0x80,0xdc = srak %r0, %r0, -524288
482
- 0xeb,0x00,0x0f,0xff,0xff,0xdc = srak %r0, %r0, -1
483
- 0xeb,0x00,0x00,0x01,0x00,0xdc = srak %r0, %r0, 1
484
- 0xeb,0x00,0x0f,0xff,0x7f,0xdc = srak %r0, %r0, 524287
485
- 0xeb,0x00,0x10,0x00,0x00,0xdc = srak %r0, %r0, 0(%r1)
486
- 0xeb,0x00,0xf0,0x00,0x00,0xdc = srak %r0, %r0, 0(%r15)
487
- 0xeb,0x00,0x1f,0xff,0x7f,0xdc = srak %r0, %r0, 524287(%r1)
488
- 0xeb,0x00,0xff,0xff,0x7f,0xdc = srak %r0, %r0, 524287(%r15)
489
- 0xb9,0xf9,0x00,0x00 = srk %r0, %r0, %r0
490
- 0xb9,0xf9,0xf0,0x00 = srk %r0, %r0, %r15
491
- 0xb9,0xf9,0x00,0x0f = srk %r0, %r15, %r0
492
- 0xb9,0xf9,0x00,0xf0 = srk %r15, %r0, %r0
493
- 0xb9,0xf9,0x90,0x78 = srk %r7, %r8, %r9
494
- 0xeb,0x00,0x00,0x00,0x00,0xde = srlk %r0, %r0, 0
495
- 0xeb,0xf1,0x00,0x00,0x00,0xde = srlk %r15, %r1, 0
496
- 0xeb,0x1f,0x00,0x00,0x00,0xde = srlk %r1, %r15, 0
497
- 0xeb,0xff,0x00,0x00,0x00,0xde = srlk %r15, %r15, 0
498
- 0xeb,0x00,0x00,0x00,0x80,0xde = srlk %r0, %r0, -524288
499
- 0xeb,0x00,0x0f,0xff,0xff,0xde = srlk %r0, %r0, -1
500
- 0xeb,0x00,0x00,0x01,0x00,0xde = srlk %r0, %r0, 1
501
- 0xeb,0x00,0x0f,0xff,0x7f,0xde = srlk %r0, %r0, 524287
502
- 0xeb,0x00,0x10,0x00,0x00,0xde = srlk %r0, %r0, 0(%r1)
503
- 0xeb,0x00,0xf0,0x00,0x00,0xde = srlk %r0, %r0, 0(%r15)
504
- 0xeb,0x00,0x1f,0xff,0x7f,0xde = srlk %r0, %r0, 524287(%r1)
505
- 0xeb,0x00,0xff,0xff,0x7f,0xde = srlk %r0, %r0, 524287(%r15)
506
- 0xe3,0x00,0x00,0x00,0x80,0xc3 = stch %r0, -524288
507
- 0xe3,0x00,0x0f,0xff,0xff,0xc3 = stch %r0, -1
508
- 0xe3,0x00,0x00,0x00,0x00,0xc3 = stch %r0, 0
509
- 0xe3,0x00,0x00,0x01,0x00,0xc3 = stch %r0, 1
510
- 0xe3,0x00,0x0f,0xff,0x7f,0xc3 = stch %r0, 524287
511
- 0xe3,0x00,0x10,0x00,0x00,0xc3 = stch %r0, 0(%r1)
512
- 0xe3,0x00,0xf0,0x00,0x00,0xc3 = stch %r0, 0(%r15)
513
- 0xe3,0x01,0xff,0xff,0x7f,0xc3 = stch %r0, 524287(%r1,%r15)
514
- 0xe3,0x0f,0x1f,0xff,0x7f,0xc3 = stch %r0, 524287(%r15,%r1)
515
- 0xe3,0xf0,0x00,0x00,0x00,0xc3 = stch %r15, 0
516
- 0xe3,0x00,0x00,0x00,0x80,0xc7 = sthh %r0, -524288
517
- 0xe3,0x00,0x0f,0xff,0xff,0xc7 = sthh %r0, -1
518
- 0xe3,0x00,0x00,0x00,0x00,0xc7 = sthh %r0, 0
519
- 0xe3,0x00,0x00,0x01,0x00,0xc7 = sthh %r0, 1
520
- 0xe3,0x00,0x0f,0xff,0x7f,0xc7 = sthh %r0, 524287
521
- 0xe3,0x00,0x10,0x00,0x00,0xc7 = sthh %r0, 0(%r1)
522
- 0xe3,0x00,0xf0,0x00,0x00,0xc7 = sthh %r0, 0(%r15)
523
- 0xe3,0x01,0xff,0xff,0x7f,0xc7 = sthh %r0, 524287(%r1,%r15)
524
- 0xe3,0x0f,0x1f,0xff,0x7f,0xc7 = sthh %r0, 524287(%r15,%r1)
525
- 0xe3,0xf0,0x00,0x00,0x00,0xc7 = sthh %r15, 0
526
- 0xe3,0x00,0x00,0x00,0x80,0xcb = stfh %r0, -524288
527
- 0xe3,0x00,0x0f,0xff,0xff,0xcb = stfh %r0, -1
528
- 0xe3,0x00,0x00,0x00,0x00,0xcb = stfh %r0, 0
529
- 0xe3,0x00,0x00,0x01,0x00,0xcb = stfh %r0, 1
530
- 0xe3,0x00,0x0f,0xff,0x7f,0xcb = stfh %r0, 524287
531
- 0xe3,0x00,0x10,0x00,0x00,0xcb = stfh %r0, 0(%r1)
532
- 0xe3,0x00,0xf0,0x00,0x00,0xcb = stfh %r0, 0(%r15)
533
- 0xe3,0x01,0xff,0xff,0x7f,0xcb = stfh %r0, 524287(%r1,%r15)
534
- 0xe3,0x0f,0x1f,0xff,0x7f,0xcb = stfh %r0, 524287(%r15,%r1)
535
- 0xe3,0xf0,0x00,0x00,0x00,0xcb = stfh %r15, 0
536
- 0xeb,0x00,0x00,0x00,0x00,0xf3 = stoc %r0, 0, 0
537
- 0xeb,0x0f,0x00,0x00,0x00,0xf3 = stoc %r0, 0, 15
538
- 0xeb,0x00,0x00,0x00,0x80,0xf3 = stoc %r0, -524288, 0
539
- 0xeb,0x00,0x0f,0xff,0x7f,0xf3 = stoc %r0, 524287, 0
540
- 0xeb,0x00,0x10,0x00,0x00,0xf3 = stoc %r0, 0(%r1), 0
541
- 0xeb,0x00,0xf0,0x00,0x00,0xf3 = stoc %r0, 0(%r15), 0
542
- 0xeb,0xf0,0x00,0x00,0x00,0xf3 = stoc %r15, 0, 0
543
- 0xeb,0x13,0x2f,0xff,0x00,0xf3 = stoc %r1, 4095(%r2), 3
544
- 0xeb,0x11,0x30,0x02,0x00,0xf3 = stoco %r1, 2(%r3)
545
- 0xeb,0x12,0x30,0x02,0x00,0xf3 = stoch %r1, 2(%r3)
546
- 0xeb,0x13,0x30,0x02,0x00,0xf3 = stocnle %r1, 2(%r3)
547
- 0xeb,0x14,0x30,0x02,0x00,0xf3 = stocl %r1, 2(%r3)
548
- 0xeb,0x15,0x30,0x02,0x00,0xf3 = stocnhe %r1, 2(%r3)
549
- 0xeb,0x16,0x30,0x02,0x00,0xf3 = stoclh %r1, 2(%r3)
550
- 0xeb,0x17,0x30,0x02,0x00,0xf3 = stocne %r1, 2(%r3)
551
- 0xeb,0x18,0x30,0x02,0x00,0xf3 = stoce %r1, 2(%r3)
552
- 0xeb,0x19,0x30,0x02,0x00,0xf3 = stocnlh %r1, 2(%r3)
553
- 0xeb,0x1a,0x30,0x02,0x00,0xf3 = stoche %r1, 2(%r3)
554
- 0xeb,0x1b,0x30,0x02,0x00,0xf3 = stocnl %r1, 2(%r3)
555
- 0xeb,0x1c,0x30,0x02,0x00,0xf3 = stocle %r1, 2(%r3)
556
- 0xeb,0x1d,0x30,0x02,0x00,0xf3 = stocnh %r1, 2(%r3)
557
- 0xeb,0x1e,0x30,0x02,0x00,0xf3 = stocno %r1, 2(%r3)
558
- 0xeb,0x00,0x00,0x00,0x00,0xe3 = stocg %r0, 0, 0
559
- 0xeb,0x0f,0x00,0x00,0x00,0xe3 = stocg %r0, 0, 15
560
- 0xeb,0x00,0x00,0x00,0x80,0xe3 = stocg %r0, -524288, 0
561
- 0xeb,0x00,0x0f,0xff,0x7f,0xe3 = stocg %r0, 524287, 0
562
- 0xeb,0x00,0x10,0x00,0x00,0xe3 = stocg %r0, 0(%r1), 0
563
- 0xeb,0x00,0xf0,0x00,0x00,0xe3 = stocg %r0, 0(%r15), 0
564
- 0xeb,0xf0,0x00,0x00,0x00,0xe3 = stocg %r15, 0, 0
565
- 0xeb,0x13,0x2f,0xff,0x00,0xe3 = stocg %r1, 4095(%r2), 3
566
- 0xeb,0x11,0x30,0x02,0x00,0xe3 = stocgo %r1, 2(%r3)
567
- 0xeb,0x12,0x30,0x02,0x00,0xe3 = stocgh %r1, 2(%r3)
568
- 0xeb,0x13,0x30,0x02,0x00,0xe3 = stocgnle %r1, 2(%r3)
569
- 0xeb,0x14,0x30,0x02,0x00,0xe3 = stocgl %r1, 2(%r3)
570
- 0xeb,0x15,0x30,0x02,0x00,0xe3 = stocgnhe %r1, 2(%r3)
571
- 0xeb,0x16,0x30,0x02,0x00,0xe3 = stocglh %r1, 2(%r3)
572
- 0xeb,0x17,0x30,0x02,0x00,0xe3 = stocgne %r1, 2(%r3)
573
- 0xeb,0x18,0x30,0x02,0x00,0xe3 = stocge %r1, 2(%r3)
574
- 0xeb,0x19,0x30,0x02,0x00,0xe3 = stocgnlh %r1, 2(%r3)
575
- 0xeb,0x1a,0x30,0x02,0x00,0xe3 = stocghe %r1, 2(%r3)
576
- 0xeb,0x1b,0x30,0x02,0x00,0xe3 = stocgnl %r1, 2(%r3)
577
- 0xeb,0x1c,0x30,0x02,0x00,0xe3 = stocgle %r1, 2(%r3)
578
- 0xeb,0x1d,0x30,0x02,0x00,0xe3 = stocgnh %r1, 2(%r3)
579
- 0xeb,0x1e,0x30,0x02,0x00,0xe3 = stocgno %r1, 2(%r3)
580
- 0xb9,0xe7,0x00,0x00 = xgrk %r0, %r0, %r0
581
- 0xb9,0xe7,0xf0,0x00 = xgrk %r0, %r0, %r15
582
- 0xb9,0xe7,0x00,0x0f = xgrk %r0, %r15, %r0
583
- 0xb9,0xe7,0x00,0xf0 = xgrk %r15, %r0, %r0
584
- 0xb9,0xe7,0x90,0x78 = xgrk %r7, %r8, %r9
585
- 0xb9,0xf7,0x00,0x00 = xrk %r0, %r0, %r0
586
- 0xb9,0xf7,0xf0,0x00 = xrk %r0, %r0, %r15
587
- 0xb9,0xf7,0x00,0x0f = xrk %r0, %r15, %r0
588
- 0xb9,0xf7,0x00,0xf0 = xrk %r15, %r0, %r0
589
- 0xb9,0xf7,0x90,0x78 = xrk %r7, %r8, %r9