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,21 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x84,0x22,0x0e = add v0.8b, v1.8b, v2.8b
3
+ 0x20,0x84,0x22,0x4e = add v0.16b, v1.16b, v2.16b
4
+ 0x20,0x84,0x62,0x0e = add v0.4h, v1.4h, v2.4h
5
+ 0x20,0x84,0x62,0x4e = add v0.8h, v1.8h, v2.8h
6
+ 0x20,0x84,0xa2,0x0e = add v0.2s, v1.2s, v2.2s
7
+ 0x20,0x84,0xa2,0x4e = add v0.4s, v1.4s, v2.4s
8
+ 0x20,0x84,0xe2,0x4e = add v0.2d, v1.2d, v2.2d
9
+ 0x20,0x84,0x22,0x2e = sub v0.8b, v1.8b, v2.8b
10
+ 0x20,0x84,0x22,0x6e = sub v0.16b, v1.16b, v2.16b
11
+ 0x20,0x84,0x62,0x2e = sub v0.4h, v1.4h, v2.4h
12
+ 0x20,0x84,0x62,0x6e = sub v0.8h, v1.8h, v2.8h
13
+ 0x20,0x84,0xa2,0x2e = sub v0.2s, v1.2s, v2.2s
14
+ 0x20,0x84,0xa2,0x6e = sub v0.4s, v1.4s, v2.4s
15
+ 0x20,0x84,0xe2,0x6e = sub v0.2d, v1.2d, v2.2d
16
+ 0x20,0xd4,0x22,0x0e = fadd v0.2s, v1.2s, v2.2s
17
+ 0x20,0xd4,0x22,0x4e = fadd v0.4s, v1.4s, v2.4s
18
+ 0x20,0xd4,0x62,0x4e = fadd v0.2d, v1.2d, v2.2d
19
+ 0x20,0xd4,0xa2,0x0e = fsub v0.2s, v1.2s, v2.2s
20
+ 0x20,0xd4,0xa2,0x4e = fsub v0.4s, v1.4s, v2.4s
21
+ 0x20,0xd4,0xe2,0x4e = fsub v0.2d, v1.2d, v2.2d
@@ -0,0 +1,17 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x1c,0x22,0x0e = and v0.8b, v1.8b, v2.8b
3
+ 0x20,0x1c,0x22,0x4e = and v0.16b, v1.16b, v2.16b
4
+ 0x20,0x1c,0xa2,0x0e = orr v0.8b, v1.8b, v2.8b
5
+ 0x20,0x1c,0xa2,0x4e = orr v0.16b, v1.16b, v2.16b
6
+ 0x20,0x1c,0x22,0x2e = eor v0.8b, v1.8b, v2.8b
7
+ 0x20,0x1c,0x22,0x6e = eor v0.16b, v1.16b, v2.16b
8
+ 0x20,0x1c,0xa2,0x2e = bit v0.8b, v1.8b, v2.8b
9
+ 0x20,0x1c,0xa2,0x6e = bit v0.16b, v1.16b, v2.16b
10
+ 0x20,0x1c,0xe2,0x2e = bif v0.8b, v1.8b, v2.8b
11
+ 0x20,0x1c,0xe2,0x6e = bif v0.16b, v1.16b, v2.16b
12
+ 0x20,0x1c,0x62,0x2e = bsl v0.8b, v1.8b, v2.8b
13
+ 0x20,0x1c,0x62,0x6e = bsl v0.16b, v1.16b, v2.16b
14
+ 0x20,0x1c,0xe2,0x0e = orn v0.8b, v1.8b, v2.8b
15
+ 0x20,0x1c,0xe2,0x4e = orn v0.16b, v1.16b, v2.16b
16
+ 0x20,0x1c,0x62,0x0e = bic v0.8b, v1.8b, v2.8b
17
+ 0x20,0x1c,0x62,0x4e = bic v0.16b, v1.16b, v2.16b
@@ -0,0 +1,136 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0xe0,0x8d,0x31,0x2e = cmeq v0.8b, v15.8b, v17.8b
3
+ 0xe1,0x8f,0x28,0x6e = cmeq v1.16b, v31.16b, v8.16b
4
+ 0x0f,0x8e,0x71,0x2e = cmeq v15.4h, v16.4h, v17.4h
5
+ 0xc5,0x8c,0x67,0x6e = cmeq v5.8h, v6.8h, v7.8h
6
+ 0x7d,0x8f,0xbc,0x2e = cmeq v29.2s, v27.2s, v28.2s
7
+ 0xe9,0x8c,0xa8,0x6e = cmeq v9.4s, v7.4s, v8.4s
8
+ 0xe3,0x8f,0xf5,0x6e = cmeq v3.2d, v31.2d, v21.2d
9
+ 0xe0,0x3d,0x31,0x2e = cmhs v0.8b, v15.8b, v17.8b
10
+ 0xe1,0x3f,0x28,0x6e = cmhs v1.16b, v31.16b, v8.16b
11
+ 0x0f,0x3e,0x71,0x2e = cmhs v15.4h, v16.4h, v17.4h
12
+ 0xc5,0x3c,0x67,0x6e = cmhs v5.8h, v6.8h, v7.8h
13
+ 0x7d,0x3f,0xbc,0x2e = cmhs v29.2s, v27.2s, v28.2s
14
+ 0xe9,0x3c,0xa8,0x6e = cmhs v9.4s, v7.4s, v8.4s
15
+ 0xe3,0x3f,0xf5,0x6e = cmhs v3.2d, v31.2d, v21.2d
16
+ 0xe0,0x3d,0x31,0x2e = cmhs v0.8b, v15.8b, v17.8b
17
+ 0xe1,0x3f,0x28,0x6e = cmhs v1.16b, v31.16b, v8.16b
18
+ 0x0f,0x3e,0x71,0x2e = cmhs v15.4h, v16.4h, v17.4h
19
+ 0xc5,0x3c,0x67,0x6e = cmhs v5.8h, v6.8h, v7.8h
20
+ 0x7d,0x3f,0xbc,0x2e = cmhs v29.2s, v27.2s, v28.2s
21
+ 0xe9,0x3c,0xa8,0x6e = cmhs v9.4s, v7.4s, v8.4s
22
+ 0xe3,0x3f,0xf5,0x6e = cmhs v3.2d, v31.2d, v21.2d
23
+ 0xe0,0x3d,0x31,0x0e = cmge v0.8b, v15.8b, v17.8b
24
+ 0xe1,0x3f,0x28,0x4e = cmge v1.16b, v31.16b, v8.16b
25
+ 0x0f,0x3e,0x71,0x0e = cmge v15.4h, v16.4h, v17.4h
26
+ 0xc5,0x3c,0x67,0x4e = cmge v5.8h, v6.8h, v7.8h
27
+ 0x7d,0x3f,0xbc,0x0e = cmge v29.2s, v27.2s, v28.2s
28
+ 0xe9,0x3c,0xa8,0x4e = cmge v9.4s, v7.4s, v8.4s
29
+ 0xe3,0x3f,0xf5,0x4e = cmge v3.2d, v31.2d, v21.2d
30
+ 0xe0,0x3d,0x31,0x0e = cmge v0.8b, v15.8b, v17.8b
31
+ 0xe1,0x3f,0x28,0x4e = cmge v1.16b, v31.16b, v8.16b
32
+ 0x0f,0x3e,0x71,0x0e = cmge v15.4h, v16.4h, v17.4h
33
+ 0xc5,0x3c,0x67,0x4e = cmge v5.8h, v6.8h, v7.8h
34
+ 0x7d,0x3f,0xbc,0x0e = cmge v29.2s, v27.2s, v28.2s
35
+ 0xe9,0x3c,0xa8,0x4e = cmge v9.4s, v7.4s, v8.4s
36
+ 0xe3,0x3f,0xf5,0x4e = cmge v3.2d, v31.2d, v21.2d
37
+ 0xe0,0x35,0x31,0x2e = cmhi v0.8b, v15.8b, v17.8b
38
+ 0xe1,0x37,0x28,0x6e = cmhi v1.16b, v31.16b, v8.16b
39
+ 0x0f,0x36,0x71,0x2e = cmhi v15.4h, v16.4h, v17.4h
40
+ 0xc5,0x34,0x67,0x6e = cmhi v5.8h, v6.8h, v7.8h
41
+ 0x7d,0x37,0xbc,0x2e = cmhi v29.2s, v27.2s, v28.2s
42
+ 0xe9,0x34,0xa8,0x6e = cmhi v9.4s, v7.4s, v8.4s
43
+ 0xe3,0x37,0xf5,0x6e = cmhi v3.2d, v31.2d, v21.2d
44
+ 0xe0,0x35,0x31,0x2e = cmhi v0.8b, v15.8b, v17.8b
45
+ 0xe1,0x37,0x28,0x6e = cmhi v1.16b, v31.16b, v8.16b
46
+ 0x0f,0x36,0x71,0x2e = cmhi v15.4h, v16.4h, v17.4h
47
+ 0xc5,0x34,0x67,0x6e = cmhi v5.8h, v6.8h, v7.8h
48
+ 0x7d,0x37,0xbc,0x2e = cmhi v29.2s, v27.2s, v28.2s
49
+ 0xe9,0x34,0xa8,0x6e = cmhi v9.4s, v7.4s, v8.4s
50
+ 0xe3,0x37,0xf5,0x6e = cmhi v3.2d, v31.2d, v21.2d
51
+ 0xe0,0x35,0x31,0x0e = cmgt v0.8b, v15.8b, v17.8b
52
+ 0xe1,0x37,0x28,0x4e = cmgt v1.16b, v31.16b, v8.16b
53
+ 0x0f,0x36,0x71,0x0e = cmgt v15.4h, v16.4h, v17.4h
54
+ 0xc5,0x34,0x67,0x4e = cmgt v5.8h, v6.8h, v7.8h
55
+ 0x7d,0x37,0xbc,0x0e = cmgt v29.2s, v27.2s, v28.2s
56
+ 0xe9,0x34,0xa8,0x4e = cmgt v9.4s, v7.4s, v8.4s
57
+ 0xe3,0x37,0xf5,0x4e = cmgt v3.2d, v31.2d, v21.2d
58
+ 0xe0,0x35,0x31,0x0e = cmgt v0.8b, v15.8b, v17.8b
59
+ 0xe1,0x37,0x28,0x4e = cmgt v1.16b, v31.16b, v8.16b
60
+ 0x0f,0x36,0x71,0x0e = cmgt v15.4h, v16.4h, v17.4h
61
+ 0xc5,0x34,0x67,0x4e = cmgt v5.8h, v6.8h, v7.8h
62
+ 0x7d,0x37,0xbc,0x0e = cmgt v29.2s, v27.2s, v28.2s
63
+ 0xe9,0x34,0xa8,0x4e = cmgt v9.4s, v7.4s, v8.4s
64
+ 0xe3,0x37,0xf5,0x4e = cmgt v3.2d, v31.2d, v21.2d
65
+ 0xe0,0x8d,0x31,0x0e = cmtst v0.8b, v15.8b, v17.8b
66
+ 0xe1,0x8f,0x28,0x4e = cmtst v1.16b, v31.16b, v8.16b
67
+ 0x0f,0x8e,0x71,0x0e = cmtst v15.4h, v16.4h, v17.4h
68
+ 0xc5,0x8c,0x67,0x4e = cmtst v5.8h, v6.8h, v7.8h
69
+ 0x7d,0x8f,0xbc,0x0e = cmtst v29.2s, v27.2s, v28.2s
70
+ 0xe9,0x8c,0xa8,0x4e = cmtst v9.4s, v7.4s, v8.4s
71
+ 0xe3,0x8f,0xf5,0x4e = cmtst v3.2d, v31.2d, v21.2d
72
+ 0xe0,0xe7,0x30,0x0e = fcmeq v0.2s, v31.2s, v16.2s
73
+ 0xe4,0xe4,0x2f,0x4e = fcmeq v4.4s, v7.4s, v15.4s
74
+ 0x5d,0xe4,0x65,0x4e = fcmeq v29.2d, v2.2d, v5.2d
75
+ 0xbf,0xe7,0x3c,0x6e = fcmge v31.4s, v29.4s, v28.4s
76
+ 0x03,0xe5,0x2c,0x2e = fcmge v3.2s, v8.2s, v12.2s
77
+ 0xf1,0xe5,0x6d,0x6e = fcmge v17.2d, v15.2d, v13.2d
78
+ 0xbf,0xe7,0x3c,0x6e = fcmge v31.4s, v29.4s, v28.4s
79
+ 0x03,0xe5,0x2c,0x2e = fcmge v3.2s, v8.2s, v12.2s
80
+ 0xf1,0xe5,0x6d,0x6e = fcmge v17.2d, v15.2d, v13.2d
81
+ 0xe0,0xe7,0xb0,0x2e = fcmgt v0.2s, v31.2s, v16.2s
82
+ 0xe4,0xe4,0xaf,0x6e = fcmgt v4.4s, v7.4s, v15.4s
83
+ 0x5d,0xe4,0xe5,0x6e = fcmgt v29.2d, v2.2d, v5.2d
84
+ 0xe0,0xe7,0xb0,0x2e = fcmgt v0.2s, v31.2s, v16.2s
85
+ 0xe4,0xe4,0xaf,0x6e = fcmgt v4.4s, v7.4s, v15.4s
86
+ 0x5d,0xe4,0xe5,0x6e = fcmgt v29.2d, v2.2d, v5.2d
87
+ 0xe0,0x99,0x20,0x0e = cmeq v0.8b, v15.8b, #0x0
88
+ 0xe1,0x9b,0x20,0x4e = cmeq v1.16b, v31.16b, #0x0
89
+ 0x0f,0x9a,0x60,0x0e = cmeq v15.4h, v16.4h, #0x0
90
+ 0xc5,0x98,0x60,0x4e = cmeq v5.8h, v6.8h, #0x0
91
+ 0x7d,0x9b,0xa0,0x0e = cmeq v29.2s, v27.2s, #0x0
92
+ 0xe9,0x98,0xa0,0x4e = cmeq v9.4s, v7.4s, #0x0
93
+ 0xe3,0x9b,0xe0,0x4e = cmeq v3.2d, v31.2d, #0x0
94
+ 0xe0,0x89,0x20,0x2e = cmge v0.8b, v15.8b, #0x0
95
+ 0xe1,0x8b,0x20,0x6e = cmge v1.16b, v31.16b, #0x0
96
+ 0x0f,0x8a,0x60,0x2e = cmge v15.4h, v16.4h, #0x0
97
+ 0xc5,0x88,0x60,0x6e = cmge v5.8h, v6.8h, #0x0
98
+ 0x7d,0x8b,0xa0,0x2e = cmge v29.2s, v27.2s, #0x0
99
+ 0x91,0x8a,0xa0,0x6e = cmge v17.4s, v20.4s, #0x0
100
+ 0xe3,0x8b,0xe0,0x6e = cmge v3.2d, v31.2d, #0x0
101
+ 0xe0,0x89,0x20,0x0e = cmgt v0.8b, v15.8b, #0x0
102
+ 0xe1,0x8b,0x20,0x4e = cmgt v1.16b, v31.16b, #0x0
103
+ 0x0f,0x8a,0x60,0x0e = cmgt v15.4h, v16.4h, #0x0
104
+ 0xc5,0x88,0x60,0x4e = cmgt v5.8h, v6.8h, #0x0
105
+ 0x7d,0x8b,0xa0,0x0e = cmgt v29.2s, v27.2s, #0x0
106
+ 0xe9,0x88,0xa0,0x4e = cmgt v9.4s, v7.4s, #0x0
107
+ 0xe3,0x8b,0xe0,0x4e = cmgt v3.2d, v31.2d, #0x0
108
+ 0xe0,0x99,0x20,0x2e = cmle v0.8b, v15.8b, #0x0
109
+ 0xe1,0x9b,0x20,0x6e = cmle v1.16b, v31.16b, #0x0
110
+ 0x0f,0x9a,0x60,0x2e = cmle v15.4h, v16.4h, #0x0
111
+ 0xc5,0x98,0x60,0x6e = cmle v5.8h, v6.8h, #0x0
112
+ 0x7d,0x9b,0xa0,0x2e = cmle v29.2s, v27.2s, #0x0
113
+ 0xe9,0x98,0xa0,0x6e = cmle v9.4s, v7.4s, #0x0
114
+ 0xe3,0x9b,0xe0,0x6e = cmle v3.2d, v31.2d, #0x0
115
+ 0xe0,0xa9,0x20,0x0e = cmlt v0.8b, v15.8b, #0x0
116
+ 0xe1,0xab,0x20,0x4e = cmlt v1.16b, v31.16b, #0x0
117
+ 0x0f,0xaa,0x60,0x0e = cmlt v15.4h, v16.4h, #0x0
118
+ 0xc5,0xa8,0x60,0x4e = cmlt v5.8h, v6.8h, #0x0
119
+ 0x7d,0xab,0xa0,0x0e = cmlt v29.2s, v27.2s, #0x0
120
+ 0xe9,0xa8,0xa0,0x4e = cmlt v9.4s, v7.4s, #0x0
121
+ 0xe3,0xab,0xe0,0x4e = cmlt v3.2d, v31.2d, #0x0
122
+ 0xe0,0xdb,0xa0,0x0e = fcmeq v0.2s, v31.2s, #0.0
123
+ 0xe4,0xd8,0xa0,0x4e = fcmeq v4.4s, v7.4s, #0.0
124
+ 0x5d,0xd8,0xe0,0x4e = fcmeq v29.2d, v2.2d, #0.0
125
+ 0xbf,0xcb,0xa0,0x6e = fcmge v31.4s, v29.4s, #0.0
126
+ 0x03,0xc9,0xa0,0x2e = fcmge v3.2s, v8.2s, #0.0
127
+ 0xf1,0xc9,0xe0,0x6e = fcmge v17.2d, v15.2d, #0.0
128
+ 0xe0,0xcb,0xa0,0x0e = fcmgt v0.2s, v31.2s, #0.0
129
+ 0xe4,0xc8,0xa0,0x4e = fcmgt v4.4s, v7.4s, #0.0
130
+ 0x5d,0xc8,0xe0,0x4e = fcmgt v29.2d, v2.2d, #0.0
131
+ 0x01,0xd9,0xa0,0x6e = fcmle v1.4s, v8.4s, #0.0
132
+ 0x83,0xda,0xa0,0x2e = fcmle v3.2s, v20.2s, #0.0
133
+ 0xa7,0xd9,0xe0,0x6e = fcmle v7.2d, v13.2d, #0.0
134
+ 0x50,0xe8,0xa0,0x0e = fcmlt v16.2s, v2.2s, #0.0
135
+ 0x8f,0xe8,0xa0,0x4e = fcmlt v15.4s, v4.4s, #0.0
136
+ 0xa5,0xeb,0xe0,0x4e = fcmlt v5.2d, v29.2d, #0.0
@@ -0,0 +1,15 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x48,0x28,0x4e = aese v0.16b, v1.16b
3
+ 0x20,0x58,0x28,0x4e = aesd v0.16b, v1.16b
4
+ 0x20,0x68,0x28,0x4e = aesmc v0.16b, v1.16b
5
+ 0x20,0x78,0x28,0x4e = aesimc v0.16b, v1.16b
6
+ 0x20,0x08,0x28,0x5e = sha1h s0, s1
7
+ 0x20,0x18,0x28,0x5e = sha1su1 v0.4s, v1.4s
8
+ 0x20,0x28,0x28,0x5e = sha256su0 v0.4s, v1.4s
9
+ 0x20,0x00,0x02,0x5e = sha1c q0, s1, v2.4s
10
+ 0x20,0x10,0x02,0x5e = sha1p q0, s1, v2.4s
11
+ 0x20,0x20,0x02,0x5e = sha1m q0, s1, v2.4s
12
+ 0x20,0x30,0x02,0x5e = sha1su0 v0.4s, v1.4s, v2.4s
13
+ 0x20,0x40,0x02,0x5e = sha256h q0, q1, v2.4s
14
+ 0x20,0x50,0x02,0x5e = sha256h2 q0, q1, v2.4s
15
+ 0x20,0x60,0x02,0x5e = sha256su1 v0.4s, v1.4s, v2.4s
@@ -0,0 +1,3 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x18,0x02,0x2e = ext v0.8b, v1.8b, v2.8b, #0x3
3
+ 0x20,0x18,0x02,0x6e = ext v0.16b, v1.16b, v2.16b, #0x3
@@ -0,0 +1,13 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0xe0,0xef,0x30,0x2e = facge v0.2s, v31.2s, v16.2s
3
+ 0xe4,0xec,0x2f,0x6e = facge v4.4s, v7.4s, v15.4s
4
+ 0x5d,0xec,0x65,0x6e = facge v29.2d, v2.2d, v5.2d
5
+ 0xe0,0xef,0x30,0x2e = facge v0.2s, v31.2s, v16.2s
6
+ 0xe4,0xec,0x2f,0x6e = facge v4.4s, v7.4s, v15.4s
7
+ 0x5d,0xec,0x65,0x6e = facge v29.2d, v2.2d, v5.2d
8
+ 0xbf,0xef,0xbc,0x6e = facgt v31.4s, v29.4s, v28.4s
9
+ 0x03,0xed,0xac,0x2e = facgt v3.2s, v8.2s, v12.2s
10
+ 0xf1,0xed,0xed,0x6e = facgt v17.2d, v15.2d, v13.2d
11
+ 0xbf,0xef,0xbc,0x6e = facgt v31.4s, v29.4s, v28.4s
12
+ 0x03,0xed,0xac,0x2e = facgt v3.2s, v8.2s, v12.2s
13
+ 0xf1,0xed,0xed,0x6e = facgt v17.2d, v15.2d, v13.2d
@@ -0,0 +1,7 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0xe0,0xff,0xb0,0x0e = frsqrts v0.2s, v31.2s, v16.2s
3
+ 0xe4,0xfc,0xaf,0x4e = frsqrts v4.4s, v7.4s, v15.4s
4
+ 0x5d,0xfc,0xe5,0x4e = frsqrts v29.2d, v2.2d, v5.2d
5
+ 0xbf,0xff,0x3c,0x4e = frecps v31.4s, v29.4s, v28.4s
6
+ 0x03,0xfd,0x2c,0x0e = frecps v3.2s, v8.2s, v12.2s
7
+ 0xf1,0xfd,0x6d,0x4e = frecps v17.2d, v15.2d, v13.2d
@@ -0,0 +1,25 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x04,0x22,0x0e = shadd v0.8b, v1.8b, v2.8b
3
+ 0x20,0x04,0x22,0x4e = shadd v0.16b, v1.16b, v2.16b
4
+ 0x20,0x04,0x62,0x0e = shadd v0.4h, v1.4h, v2.4h
5
+ 0x20,0x04,0x62,0x4e = shadd v0.8h, v1.8h, v2.8h
6
+ 0x20,0x04,0xa2,0x0e = shadd v0.2s, v1.2s, v2.2s
7
+ 0x20,0x04,0xa2,0x4e = shadd v0.4s, v1.4s, v2.4s
8
+ 0x20,0x04,0x22,0x2e = uhadd v0.8b, v1.8b, v2.8b
9
+ 0x20,0x04,0x22,0x6e = uhadd v0.16b, v1.16b, v2.16b
10
+ 0x20,0x04,0x62,0x2e = uhadd v0.4h, v1.4h, v2.4h
11
+ 0x20,0x04,0x62,0x6e = uhadd v0.8h, v1.8h, v2.8h
12
+ 0x20,0x04,0xa2,0x2e = uhadd v0.2s, v1.2s, v2.2s
13
+ 0x20,0x04,0xa2,0x6e = uhadd v0.4s, v1.4s, v2.4s
14
+ 0x20,0x24,0x22,0x0e = shsub v0.8b, v1.8b, v2.8b
15
+ 0x20,0x24,0x22,0x4e = shsub v0.16b, v1.16b, v2.16b
16
+ 0x20,0x24,0x62,0x0e = shsub v0.4h, v1.4h, v2.4h
17
+ 0x20,0x24,0x62,0x4e = shsub v0.8h, v1.8h, v2.8h
18
+ 0x20,0x24,0xa2,0x0e = shsub v0.2s, v1.2s, v2.2s
19
+ 0x20,0x24,0xa2,0x4e = shsub v0.4s, v1.4s, v2.4s
20
+ 0x20,0x24,0x22,0x2e = uhsub v0.8b, v1.8b, v2.8b
21
+ 0x20,0x24,0x22,0x6e = uhsub v0.16b, v1.16b, v2.16b
22
+ 0x20,0x24,0x62,0x2e = uhsub v0.4h, v1.4h, v2.4h
23
+ 0x20,0x24,0x62,0x6e = uhsub v0.8h, v1.8h, v2.8h
24
+ 0x20,0x24,0xa2,0x2e = uhsub v0.2s, v1.2s, v2.2s
25
+ 0x20,0x24,0xa2,0x6e = uhsub v0.4s, v1.4s, v2.4s
@@ -0,0 +1,37 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0xa4,0x22,0x0e = smaxp v0.8b, v1.8b, v2.8b
3
+ 0x20,0xa4,0x22,0x4e = smaxp v0.16b, v1.16b, v2.16b
4
+ 0x20,0xa4,0x62,0x0e = smaxp v0.4h, v1.4h, v2.4h
5
+ 0x20,0xa4,0x62,0x4e = smaxp v0.8h, v1.8h, v2.8h
6
+ 0x20,0xa4,0xa2,0x0e = smaxp v0.2s, v1.2s, v2.2s
7
+ 0x20,0xa4,0xa2,0x4e = smaxp v0.4s, v1.4s, v2.4s
8
+ 0x20,0xa4,0x22,0x2e = umaxp v0.8b, v1.8b, v2.8b
9
+ 0x20,0xa4,0x22,0x6e = umaxp v0.16b, v1.16b, v2.16b
10
+ 0x20,0xa4,0x62,0x2e = umaxp v0.4h, v1.4h, v2.4h
11
+ 0x20,0xa4,0x62,0x6e = umaxp v0.8h, v1.8h, v2.8h
12
+ 0x20,0xa4,0xa2,0x2e = umaxp v0.2s, v1.2s, v2.2s
13
+ 0x20,0xa4,0xa2,0x6e = umaxp v0.4s, v1.4s, v2.4s
14
+ 0x20,0xac,0x22,0x0e = sminp v0.8b, v1.8b, v2.8b
15
+ 0x20,0xac,0x22,0x4e = sminp v0.16b, v1.16b, v2.16b
16
+ 0x20,0xac,0x62,0x0e = sminp v0.4h, v1.4h, v2.4h
17
+ 0x20,0xac,0x62,0x4e = sminp v0.8h, v1.8h, v2.8h
18
+ 0x20,0xac,0xa2,0x0e = sminp v0.2s, v1.2s, v2.2s
19
+ 0x20,0xac,0xa2,0x4e = sminp v0.4s, v1.4s, v2.4s
20
+ 0x20,0xac,0x22,0x2e = uminp v0.8b, v1.8b, v2.8b
21
+ 0x20,0xac,0x22,0x6e = uminp v0.16b, v1.16b, v2.16b
22
+ 0x20,0xac,0x62,0x2e = uminp v0.4h, v1.4h, v2.4h
23
+ 0x20,0xac,0x62,0x6e = uminp v0.8h, v1.8h, v2.8h
24
+ 0x20,0xac,0xa2,0x2e = uminp v0.2s, v1.2s, v2.2s
25
+ 0x20,0xac,0xa2,0x6e = uminp v0.4s, v1.4s, v2.4s
26
+ 0x20,0xf4,0x22,0x2e = fmaxp v0.2s, v1.2s, v2.2s
27
+ 0xff,0xf5,0x30,0x6e = fmaxp v31.4s, v15.4s, v16.4s
28
+ 0x07,0xf5,0x79,0x6e = fmaxp v7.2d, v8.2d, v25.2d
29
+ 0xea,0xf5,0xb6,0x2e = fminp v10.2s, v15.2s, v22.2s
30
+ 0xa3,0xf4,0xa6,0x6e = fminp v3.4s, v5.4s, v6.4s
31
+ 0xb1,0xf5,0xe2,0x6e = fminp v17.2d, v13.2d, v2.2d
32
+ 0x20,0xc4,0x22,0x2e = fmaxnmp v0.2s, v1.2s, v2.2s
33
+ 0xff,0xc5,0x30,0x6e = fmaxnmp v31.4s, v15.4s, v16.4s
34
+ 0x07,0xc5,0x79,0x6e = fmaxnmp v7.2d, v8.2d, v25.2d
35
+ 0xea,0xc5,0xb6,0x2e = fminnmp v10.2s, v15.2s, v22.2s
36
+ 0xa3,0xc4,0xa6,0x6e = fminnmp v3.4s, v5.4s, v6.4s
37
+ 0xb1,0xc5,0xe2,0x6e = fminnmp v17.2d, v13.2d, v2.2d
@@ -0,0 +1,37 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x64,0x22,0x0e = smax v0.8b, v1.8b, v2.8b
3
+ 0x20,0x64,0x22,0x4e = smax v0.16b, v1.16b, v2.16b
4
+ 0x20,0x64,0x62,0x0e = smax v0.4h, v1.4h, v2.4h
5
+ 0x20,0x64,0x62,0x4e = smax v0.8h, v1.8h, v2.8h
6
+ 0x20,0x64,0xa2,0x0e = smax v0.2s, v1.2s, v2.2s
7
+ 0x20,0x64,0xa2,0x4e = smax v0.4s, v1.4s, v2.4s
8
+ 0x20,0x64,0x22,0x2e = umax v0.8b, v1.8b, v2.8b
9
+ 0x20,0x64,0x22,0x6e = umax v0.16b, v1.16b, v2.16b
10
+ 0x20,0x64,0x62,0x2e = umax v0.4h, v1.4h, v2.4h
11
+ 0x20,0x64,0x62,0x6e = umax v0.8h, v1.8h, v2.8h
12
+ 0x20,0x64,0xa2,0x2e = umax v0.2s, v1.2s, v2.2s
13
+ 0x20,0x64,0xa2,0x6e = umax v0.4s, v1.4s, v2.4s
14
+ 0x20,0x6c,0x22,0x0e = smin v0.8b, v1.8b, v2.8b
15
+ 0x20,0x6c,0x22,0x4e = smin v0.16b, v1.16b, v2.16b
16
+ 0x20,0x6c,0x62,0x0e = smin v0.4h, v1.4h, v2.4h
17
+ 0x20,0x6c,0x62,0x4e = smin v0.8h, v1.8h, v2.8h
18
+ 0x20,0x6c,0xa2,0x0e = smin v0.2s, v1.2s, v2.2s
19
+ 0x20,0x6c,0xa2,0x4e = smin v0.4s, v1.4s, v2.4s
20
+ 0x20,0x6c,0x22,0x2e = umin v0.8b, v1.8b, v2.8b
21
+ 0x20,0x6c,0x22,0x6e = umin v0.16b, v1.16b, v2.16b
22
+ 0x20,0x6c,0x62,0x2e = umin v0.4h, v1.4h, v2.4h
23
+ 0x20,0x6c,0x62,0x6e = umin v0.8h, v1.8h, v2.8h
24
+ 0x20,0x6c,0xa2,0x2e = umin v0.2s, v1.2s, v2.2s
25
+ 0x20,0x6c,0xa2,0x6e = umin v0.4s, v1.4s, v2.4s
26
+ 0x20,0xf4,0x22,0x0e = fmax v0.2s, v1.2s, v2.2s
27
+ 0xff,0xf5,0x30,0x4e = fmax v31.4s, v15.4s, v16.4s
28
+ 0x07,0xf5,0x79,0x4e = fmax v7.2d, v8.2d, v25.2d
29
+ 0xea,0xf5,0xb6,0x0e = fmin v10.2s, v15.2s, v22.2s
30
+ 0xa3,0xf4,0xa6,0x4e = fmin v3.4s, v5.4s, v6.4s
31
+ 0xb1,0xf5,0xe2,0x4e = fmin v17.2d, v13.2d, v2.2d
32
+ 0x20,0xc4,0x22,0x0e = fmaxnm v0.2s, v1.2s, v2.2s
33
+ 0xff,0xc5,0x30,0x4e = fmaxnm v31.4s, v15.4s, v16.4s
34
+ 0x07,0xc5,0x79,0x4e = fmaxnm v7.2d, v8.2d, v25.2d
35
+ 0xea,0xc5,0xb6,0x0e = fminnm v10.2s, v15.2s, v22.2s
36
+ 0xa3,0xc4,0xa6,0x4e = fminnm v3.4s, v5.4s, v6.4s
37
+ 0xb1,0xc5,0xe2,0x4e = fminnm v17.2d, v13.2d, v2.2d
@@ -0,0 +1,19 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x94,0x22,0x0e = mla v0.8b, v1.8b, v2.8b
3
+ 0x20,0x94,0x22,0x4e = mla v0.16b, v1.16b, v2.16b
4
+ 0x20,0x94,0x62,0x0e = mla v0.4h, v1.4h, v2.4h
5
+ 0x20,0x94,0x62,0x4e = mla v0.8h, v1.8h, v2.8h
6
+ 0x20,0x94,0xa2,0x0e = mla v0.2s, v1.2s, v2.2s
7
+ 0x20,0x94,0xa2,0x4e = mla v0.4s, v1.4s, v2.4s
8
+ 0x20,0x94,0x22,0x2e = mls v0.8b, v1.8b, v2.8b
9
+ 0x20,0x94,0x22,0x6e = mls v0.16b, v1.16b, v2.16b
10
+ 0x20,0x94,0x62,0x2e = mls v0.4h, v1.4h, v2.4h
11
+ 0x20,0x94,0x62,0x6e = mls v0.8h, v1.8h, v2.8h
12
+ 0x20,0x94,0xa2,0x2e = mls v0.2s, v1.2s, v2.2s
13
+ 0x20,0x94,0xa2,0x6e = mls v0.4s, v1.4s, v2.4s
14
+ 0x20,0xcc,0x22,0x0e = fmla v0.2s, v1.2s, v2.2s
15
+ 0x20,0xcc,0x22,0x4e = fmla v0.4s, v1.4s, v2.4s
16
+ 0x20,0xcc,0x62,0x4e = fmla v0.2d, v1.2d, v2.2d
17
+ 0x20,0xcc,0xa2,0x0e = fmls v0.2s, v1.2s, v2.2s
18
+ 0x20,0xcc,0xa2,0x4e = fmls v0.4s, v1.4s, v2.4s
19
+ 0x20,0xcc,0xe2,0x4e = fmls v0.2d, v1.2d, v2.2d
@@ -0,0 +1,74 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x04,0x00,0x0f = movi v0.2s, #0x1
3
+ 0x01,0x04,0x00,0x0f = movi v1.2s, #0x0
4
+ 0x2f,0x24,0x00,0x0f = movi v15.2s, #0x1, lsl #8
5
+ 0x30,0x44,0x00,0x0f = movi v16.2s, #0x1, lsl #16
6
+ 0x3f,0x64,0x00,0x0f = movi v31.2s, #0x1, lsl #24
7
+ 0x20,0x04,0x00,0x4f = movi v0.4s, #0x1
8
+ 0x20,0x24,0x00,0x4f = movi v0.4s, #0x1, lsl #8
9
+ 0x20,0x44,0x00,0x4f = movi v0.4s, #0x1, lsl #16
10
+ 0x20,0x64,0x00,0x4f = movi v0.4s, #0x1, lsl #24
11
+ 0x20,0x84,0x00,0x0f = movi v0.4h, #0x1
12
+ 0x20,0xa4,0x00,0x0f = movi v0.4h, #0x1, lsl #8
13
+ 0x20,0x84,0x00,0x4f = movi v0.8h, #0x1
14
+ 0x20,0xa4,0x00,0x4f = movi v0.8h, #0x1, lsl #8
15
+ 0x20,0x04,0x00,0x2f = mvni v0.2s, #0x1
16
+ 0x01,0x04,0x00,0x2f = mvni v1.2s, #0x0
17
+ 0x20,0x24,0x00,0x2f = mvni v0.2s, #0x1, lsl #8
18
+ 0x20,0x44,0x00,0x2f = mvni v0.2s, #0x1, lsl #16
19
+ 0x20,0x64,0x00,0x2f = mvni v0.2s, #0x1, lsl #24
20
+ 0x20,0x04,0x00,0x6f = mvni v0.4s, #0x1
21
+ 0x2f,0x24,0x00,0x6f = mvni v15.4s, #0x1, lsl #8
22
+ 0x30,0x44,0x00,0x6f = mvni v16.4s, #0x1, lsl #16
23
+ 0x3f,0x64,0x00,0x6f = mvni v31.4s, #0x1, lsl #24
24
+ 0x20,0x84,0x00,0x2f = mvni v0.4h, #0x1
25
+ 0x20,0xa4,0x00,0x2f = mvni v0.4h, #0x1, lsl #8
26
+ 0x20,0x84,0x00,0x6f = mvni v0.8h, #0x1
27
+ 0x20,0xa4,0x00,0x6f = mvni v0.8h, #0x1, lsl #8
28
+ 0x20,0x14,0x00,0x2f = bic v0.2s, #0x1
29
+ 0x01,0x14,0x00,0x2f = bic v1.2s, #0x0
30
+ 0x20,0x34,0x00,0x2f = bic v0.2s, #0x1, lsl #8
31
+ 0x20,0x54,0x00,0x2f = bic v0.2s, #0x1, lsl #16
32
+ 0x20,0x74,0x00,0x2f = bic v0.2s, #0x1, lsl #24
33
+ 0x20,0x14,0x00,0x6f = bic v0.4s, #0x1
34
+ 0x20,0x34,0x00,0x6f = bic v0.4s, #0x1, lsl #8
35
+ 0x20,0x54,0x00,0x6f = bic v0.4s, #0x1, lsl #16
36
+ 0x20,0x74,0x00,0x6f = bic v0.4s, #0x1, lsl #24
37
+ 0x2f,0x94,0x00,0x2f = bic v15.4h, #0x1
38
+ 0x30,0xb4,0x00,0x2f = bic v16.4h, #0x1, lsl #8
39
+ 0x20,0x94,0x00,0x6f = bic v0.8h, #0x1
40
+ 0x3f,0xb4,0x00,0x6f = bic v31.8h, #0x1, lsl #8
41
+ 0x20,0x14,0x00,0x0f = orr v0.2s, #0x1
42
+ 0x01,0x14,0x00,0x0f = orr v1.2s, #0x0
43
+ 0x20,0x34,0x00,0x0f = orr v0.2s, #0x1, lsl #8
44
+ 0x20,0x54,0x00,0x0f = orr v0.2s, #0x1, lsl #16
45
+ 0x20,0x74,0x00,0x0f = orr v0.2s, #0x1, lsl #24
46
+ 0x20,0x14,0x00,0x4f = orr v0.4s, #0x1
47
+ 0x20,0x34,0x00,0x4f = orr v0.4s, #0x1, lsl #8
48
+ 0x20,0x54,0x00,0x4f = orr v0.4s, #0x1, lsl #16
49
+ 0x20,0x74,0x00,0x4f = orr v0.4s, #0x1, lsl #24
50
+ 0x3f,0x94,0x00,0x0f = orr v31.4h, #0x1
51
+ 0x2f,0xb4,0x00,0x0f = orr v15.4h, #0x1, lsl #8
52
+ 0x20,0x94,0x00,0x4f = orr v0.8h, #0x1
53
+ 0x30,0xb4,0x00,0x4f = orr v16.8h, #0x1, lsl #8
54
+ 0x20,0xc4,0x00,0x0f = movi v0.2s, #0x1, msl #8
55
+ 0x21,0xd4,0x00,0x0f = movi v1.2s, #0x1, msl #16
56
+ 0x20,0xc4,0x00,0x4f = movi v0.4s, #0x1, msl #8
57
+ 0x3f,0xd4,0x00,0x4f = movi v31.4s, #0x1, msl #16
58
+ 0x21,0xc4,0x00,0x2f = mvni v1.2s, #0x1, msl #8
59
+ 0x20,0xd4,0x00,0x2f = mvni v0.2s, #0x1, msl #16
60
+ 0x3f,0xc4,0x00,0x6f = mvni v31.4s, #0x1, msl #8
61
+ 0x20,0xd4,0x00,0x6f = mvni v0.4s, #0x1, msl #16
62
+ 0x00,0xe4,0x00,0x0f = movi v0.8b, #0x0
63
+ 0xff,0xe7,0x07,0x0f = movi v31.8b, #0xff
64
+ 0xef,0xe5,0x00,0x4f = movi v15.16b, #0xf
65
+ 0xff,0xe7,0x00,0x4f = movi v31.16b, #0x1f
66
+ 0x40,0xe5,0x05,0x6f = movi v0.2d, #0xff00ff00ff00ff00
67
+ 0x40,0xe5,0x05,0x2f = movi d0, #0xff00ff00ff00ff00
68
+ 0x01,0xf6,0x03,0x0f = fmov v1.2s, #1.00000000
69
+ 0x0f,0xf6,0x03,0x4f = fmov v15.4s, #1.00000000
70
+ 0x1f,0xf6,0x03,0x6f = fmov v31.2d, #1.00000000
71
+ 0xe0,0x1f,0xbf,0x0e = orr v0.8b, v31.8b, v31.8b
72
+ 0x0f,0x1e,0xb0,0x4e = orr v15.16b, v16.16b, v16.16b
73
+ 0xe0,0x1f,0xbf,0x0e = orr v0.8b, v31.8b, v31.8b
74
+ 0x0f,0x1e,0xb0,0x4e = orr v15.16b, v16.16b, v16.16b
@@ -0,0 +1,24 @@
1
+ # CS_ARCH_ARM64, 0, None
2
+ 0x20,0x9c,0x22,0x0e = mul v0.8b, v1.8b, v2.8b
3
+ 0x20,0x9c,0x22,0x4e = mul v0.16b, v1.16b, v2.16b
4
+ 0x20,0x9c,0x62,0x0e = mul v0.4h, v1.4h, v2.4h
5
+ 0x20,0x9c,0x62,0x4e = mul v0.8h, v1.8h, v2.8h
6
+ 0x20,0x9c,0xa2,0x0e = mul v0.2s, v1.2s, v2.2s
7
+ 0x20,0x9c,0xa2,0x4e = mul v0.4s, v1.4s, v2.4s
8
+ 0x20,0xdc,0x22,0x2e = fmul v0.2s, v1.2s, v2.2s
9
+ 0x20,0xdc,0x22,0x6e = fmul v0.4s, v1.4s, v2.4s
10
+ 0x20,0xdc,0x62,0x6e = fmul v0.2d, v1.2d, v2.2d
11
+ 0x20,0xfc,0x22,0x2e = fdiv v0.2s, v1.2s, v2.2s
12
+ 0x20,0xfc,0x22,0x6e = fdiv v0.4s, v1.4s, v2.4s
13
+ 0x20,0xfc,0x62,0x6e = fdiv v0.2d, v1.2d, v2.2d
14
+ 0xf1,0x9f,0x30,0x2e = pmul v17.8b, v31.8b, v16.8b
15
+ 0x20,0x9c,0x22,0x6e = pmul v0.16b, v1.16b, v2.16b
16
+ 0x22,0xb7,0x63,0x0e = sqdmulh v2.4h, v25.4h, v3.4h
17
+ 0xac,0xb4,0x6d,0x4e = sqdmulh v12.8h, v5.8h, v13.8h
18
+ 0x23,0xb4,0xbe,0x0e = sqdmulh v3.2s, v1.2s, v30.2s
19
+ 0x22,0xb7,0x63,0x2e = sqrdmulh v2.4h, v25.4h, v3.4h
20
+ 0xac,0xb4,0x6d,0x6e = sqrdmulh v12.8h, v5.8h, v13.8h
21
+ 0x23,0xb4,0xbe,0x2e = sqrdmulh v3.2s, v1.2s, v30.2s
22
+ 0xb5,0xdc,0x2d,0x0e = fmulx v21.2s, v5.2s, v13.2s
23
+ 0x21,0xdf,0x23,0x4e = fmulx v1.4s, v25.4s, v3.4s
24
+ 0xdf,0xde,0x62,0x4e = fmulx v31.2d, v22.2d, v2.2d