wasmtime 20.0.2 → 21.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2089) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +129 -124
  3. data/ext/Cargo.toml +8 -6
  4. data/ext/cargo-vendor/cobs-0.2.3/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cobs-0.2.3/Cargo.toml +39 -0
  6. data/ext/cargo-vendor/cobs-0.2.3/LICENSE-APACHE +202 -0
  7. data/ext/cargo-vendor/cobs-0.2.3/LICENSE-MIT +19 -0
  8. data/ext/cargo-vendor/cobs-0.2.3/README.md +23 -0
  9. data/ext/cargo-vendor/cobs-0.2.3/src/dec.rs +360 -0
  10. data/ext/cargo-vendor/cobs-0.2.3/src/enc.rs +216 -0
  11. data/ext/cargo-vendor/cobs-0.2.3/src/lib.rs +14 -0
  12. data/ext/cargo-vendor/cobs-0.2.3/tests/test.rs +265 -0
  13. data/ext/cargo-vendor/cranelift-bforest-0.108.1/.cargo-checksum.json +1 -0
  14. data/ext/cargo-vendor/cranelift-bforest-0.108.1/Cargo.toml +40 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.108.1/.cargo-checksum.json +1 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.108.1/Cargo.toml +189 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.108.1/build.rs +266 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/alias_analysis.rs +403 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/context.rs +395 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ctxhash.rs +167 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/egraph/elaborate.rs +835 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/egraph.rs +839 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/incremental_cache.rs +256 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ir/instructions.rs +1020 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/abi.rs +1580 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/args.rs +721 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit.rs +3846 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/emit_tests.rs +7902 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/imms.rs +1213 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/mod.rs +3094 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst/regs.rs +288 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/inst.isle +4225 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/lower/isle.rs +810 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/aarch64/pcc.rs +568 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/mod.rs +449 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/abi.rs +1051 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/args.rs +1938 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit.rs +2681 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/emit_tests.rs +2197 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/mod.rs +1975 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/regs.rs +168 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst/vector.rs +1144 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/inst.isle +2969 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower/isle.rs +625 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/riscv64/lower.isle +2883 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/abi.rs +1037 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/args.rs +314 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/emit.rs +3646 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/imms.rs +202 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/mod.rs +3421 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/s390x/inst/regs.rs +180 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/abi.rs +1410 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/args.rs +2256 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit.rs +4311 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/emit_tests.rs +5171 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/mod.rs +2838 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst/regs.rs +276 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/inst.isle +5294 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower/isle.rs +1064 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower.isle +4808 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/lower.rs +337 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/isa/x64/pcc.rs +1014 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/lib.rs +106 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/abi.rs +2506 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/blockorder.rs +465 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/isle.rs +903 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/lower.rs +1432 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/mod.rs +555 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/reg.rs +522 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/valueregs.rs +138 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/machinst/vcode.rs +1741 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/nan_canonicalization.rs +130 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/arithmetic.isle +240 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/opts/icmp.isle +215 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/ranges.rs +131 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/remove_constant_phis.rs +419 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/scoped_hash_map.rs +310 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.108.1/src/settings.rs +590 -0
  79. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/.cargo-checksum.json +1 -0
  80. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/Cargo.toml +35 -0
  81. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_inst.rs +1278 -0
  82. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_isle.rs +519 -0
  83. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_settings.rs +508 -0
  84. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/gen_types.rs +75 -0
  85. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isa/riscv64.rs +168 -0
  86. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isa/x86.rs +414 -0
  87. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/isle.rs +126 -0
  88. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/lib.rs +98 -0
  89. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/shared/settings.rs +348 -0
  90. data/ext/cargo-vendor/cranelift-codegen-meta-0.108.1/src/srcgen.rs +464 -0
  91. data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/.cargo-checksum.json +1 -0
  92. data/ext/cargo-vendor/cranelift-codegen-shared-0.108.1/Cargo.toml +22 -0
  93. data/ext/cargo-vendor/cranelift-control-0.108.1/.cargo-checksum.json +1 -0
  94. data/ext/cargo-vendor/cranelift-control-0.108.1/Cargo.toml +30 -0
  95. data/ext/cargo-vendor/cranelift-entity-0.108.1/.cargo-checksum.json +1 -0
  96. data/ext/cargo-vendor/cranelift-entity-0.108.1/Cargo.toml +52 -0
  97. data/ext/cargo-vendor/cranelift-entity-0.108.1/src/lib.rs +381 -0
  98. data/ext/cargo-vendor/cranelift-frontend-0.108.1/.cargo-checksum.json +1 -0
  99. data/ext/cargo-vendor/cranelift-frontend-0.108.1/Cargo.toml +67 -0
  100. data/ext/cargo-vendor/cranelift-frontend-0.108.1/src/switch.rs +696 -0
  101. data/ext/cargo-vendor/cranelift-isle-0.108.1/.cargo-checksum.json +1 -0
  102. data/ext/cargo-vendor/cranelift-isle-0.108.1/Cargo.toml +46 -0
  103. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/codegen.rs +886 -0
  104. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/disjointsets.rs +169 -0
  105. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/lib.rs +33 -0
  106. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/sema.rs +2492 -0
  107. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/serialize.rs +846 -0
  108. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/stablemapset.rs +79 -0
  109. data/ext/cargo-vendor/cranelift-isle-0.108.1/src/trie_again.rs +684 -0
  110. data/ext/cargo-vendor/cranelift-native-0.108.1/.cargo-checksum.json +1 -0
  111. data/ext/cargo-vendor/cranelift-native-0.108.1/Cargo.toml +43 -0
  112. data/ext/cargo-vendor/cranelift-wasm-0.108.1/.cargo-checksum.json +1 -0
  113. data/ext/cargo-vendor/cranelift-wasm-0.108.1/Cargo.toml +109 -0
  114. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/code_translator.rs +3687 -0
  115. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/environ/dummy.rs +906 -0
  116. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/environ/spec.rs +945 -0
  117. data/ext/cargo-vendor/cranelift-wasm-0.108.1/src/sections_translator.rs +389 -0
  118. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/.cargo-checksum.json +1 -0
  119. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/Cargo.toml +48 -0
  120. data/ext/cargo-vendor/embedded-io-0.4.0/.cargo-checksum.json +1 -0
  121. data/ext/cargo-vendor/embedded-io-0.4.0/CHANGELOG.md +28 -0
  122. data/ext/cargo-vendor/embedded-io-0.4.0/Cargo.toml +73 -0
  123. data/ext/cargo-vendor/embedded-io-0.4.0/LICENSE-APACHE +201 -0
  124. data/ext/cargo-vendor/embedded-io-0.4.0/LICENSE-MIT +25 -0
  125. data/ext/cargo-vendor/embedded-io-0.4.0/README.md +33 -0
  126. data/ext/cargo-vendor/embedded-io-0.4.0/ci.sh +21 -0
  127. data/ext/cargo-vendor/embedded-io-0.4.0/rust-toolchain.toml +3 -0
  128. data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/futures_io.rs +65 -0
  129. data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/mod.rs +40 -0
  130. data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/std_io.rs +107 -0
  131. data/ext/cargo-vendor/embedded-io-0.4.0/src/adapters/tokio.rs +108 -0
  132. data/ext/cargo-vendor/embedded-io-0.4.0/src/asynch.rs +230 -0
  133. data/ext/cargo-vendor/embedded-io-0.4.0/src/blocking.rs +309 -0
  134. data/ext/cargo-vendor/embedded-io-0.4.0/src/fmt.rs +228 -0
  135. data/ext/cargo-vendor/embedded-io-0.4.0/src/lib.rs +125 -0
  136. data/ext/cargo-vendor/libm-0.2.8/.cargo-checksum.json +1 -0
  137. data/ext/cargo-vendor/libm-0.2.8/CHANGELOG.md +123 -0
  138. data/ext/cargo-vendor/libm-0.2.8/CONTRIBUTING.md +95 -0
  139. data/ext/cargo-vendor/libm-0.2.8/Cargo.toml +45 -0
  140. data/ext/cargo-vendor/libm-0.2.8/LICENSE-APACHE +201 -0
  141. data/ext/cargo-vendor/libm-0.2.8/LICENSE-MIT +25 -0
  142. data/ext/cargo-vendor/libm-0.2.8/README.md +51 -0
  143. data/ext/cargo-vendor/libm-0.2.8/build.rs +463 -0
  144. data/ext/cargo-vendor/libm-0.2.8/src/lib.rs +59 -0
  145. data/ext/cargo-vendor/libm-0.2.8/src/libm_helper.rs +171 -0
  146. data/ext/cargo-vendor/libm-0.2.8/src/math/acos.rs +112 -0
  147. data/ext/cargo-vendor/libm-0.2.8/src/math/acosf.rs +79 -0
  148. data/ext/cargo-vendor/libm-0.2.8/src/math/acosh.rs +27 -0
  149. data/ext/cargo-vendor/libm-0.2.8/src/math/acoshf.rs +26 -0
  150. data/ext/cargo-vendor/libm-0.2.8/src/math/asin.rs +119 -0
  151. data/ext/cargo-vendor/libm-0.2.8/src/math/asinf.rs +72 -0
  152. data/ext/cargo-vendor/libm-0.2.8/src/math/asinh.rs +40 -0
  153. data/ext/cargo-vendor/libm-0.2.8/src/math/asinhf.rs +39 -0
  154. data/ext/cargo-vendor/libm-0.2.8/src/math/atan.rs +184 -0
  155. data/ext/cargo-vendor/libm-0.2.8/src/math/atan2.rs +126 -0
  156. data/ext/cargo-vendor/libm-0.2.8/src/math/atan2f.rs +91 -0
  157. data/ext/cargo-vendor/libm-0.2.8/src/math/atanf.rs +112 -0
  158. data/ext/cargo-vendor/libm-0.2.8/src/math/atanh.rs +37 -0
  159. data/ext/cargo-vendor/libm-0.2.8/src/math/atanhf.rs +37 -0
  160. data/ext/cargo-vendor/libm-0.2.8/src/math/cbrt.rs +113 -0
  161. data/ext/cargo-vendor/libm-0.2.8/src/math/cbrtf.rs +75 -0
  162. data/ext/cargo-vendor/libm-0.2.8/src/math/ceil.rs +82 -0
  163. data/ext/cargo-vendor/libm-0.2.8/src/math/ceilf.rs +65 -0
  164. data/ext/cargo-vendor/libm-0.2.8/src/math/copysign.rs +12 -0
  165. data/ext/cargo-vendor/libm-0.2.8/src/math/copysignf.rs +12 -0
  166. data/ext/cargo-vendor/libm-0.2.8/src/math/cos.rs +73 -0
  167. data/ext/cargo-vendor/libm-0.2.8/src/math/cosf.rs +83 -0
  168. data/ext/cargo-vendor/libm-0.2.8/src/math/cosh.rs +38 -0
  169. data/ext/cargo-vendor/libm-0.2.8/src/math/coshf.rs +38 -0
  170. data/ext/cargo-vendor/libm-0.2.8/src/math/erf.rs +318 -0
  171. data/ext/cargo-vendor/libm-0.2.8/src/math/erff.rs +230 -0
  172. data/ext/cargo-vendor/libm-0.2.8/src/math/exp.rs +154 -0
  173. data/ext/cargo-vendor/libm-0.2.8/src/math/exp10.rs +22 -0
  174. data/ext/cargo-vendor/libm-0.2.8/src/math/exp10f.rs +22 -0
  175. data/ext/cargo-vendor/libm-0.2.8/src/math/exp2.rs +394 -0
  176. data/ext/cargo-vendor/libm-0.2.8/src/math/exp2f.rs +135 -0
  177. data/ext/cargo-vendor/libm-0.2.8/src/math/expf.rs +101 -0
  178. data/ext/cargo-vendor/libm-0.2.8/src/math/expm1.rs +144 -0
  179. data/ext/cargo-vendor/libm-0.2.8/src/math/expm1f.rs +134 -0
  180. data/ext/cargo-vendor/libm-0.2.8/src/math/expo2.rs +14 -0
  181. data/ext/cargo-vendor/libm-0.2.8/src/math/fabs.rs +41 -0
  182. data/ext/cargo-vendor/libm-0.2.8/src/math/fabsf.rs +41 -0
  183. data/ext/cargo-vendor/libm-0.2.8/src/math/fdim.rs +22 -0
  184. data/ext/cargo-vendor/libm-0.2.8/src/math/fdimf.rs +22 -0
  185. data/ext/cargo-vendor/libm-0.2.8/src/math/fenv.rs +27 -0
  186. data/ext/cargo-vendor/libm-0.2.8/src/math/floor.rs +81 -0
  187. data/ext/cargo-vendor/libm-0.2.8/src/math/floorf.rs +66 -0
  188. data/ext/cargo-vendor/libm-0.2.8/src/math/fma.rs +232 -0
  189. data/ext/cargo-vendor/libm-0.2.8/src/math/fmaf.rs +117 -0
  190. data/ext/cargo-vendor/libm-0.2.8/src/math/fmax.rs +12 -0
  191. data/ext/cargo-vendor/libm-0.2.8/src/math/fmaxf.rs +12 -0
  192. data/ext/cargo-vendor/libm-0.2.8/src/math/fmin.rs +12 -0
  193. data/ext/cargo-vendor/libm-0.2.8/src/math/fminf.rs +12 -0
  194. data/ext/cargo-vendor/libm-0.2.8/src/math/fmod.rs +80 -0
  195. data/ext/cargo-vendor/libm-0.2.8/src/math/fmodf.rs +89 -0
  196. data/ext/cargo-vendor/libm-0.2.8/src/math/frexp.rs +20 -0
  197. data/ext/cargo-vendor/libm-0.2.8/src/math/frexpf.rs +21 -0
  198. data/ext/cargo-vendor/libm-0.2.8/src/math/hypot.rs +74 -0
  199. data/ext/cargo-vendor/libm-0.2.8/src/math/hypotf.rs +43 -0
  200. data/ext/cargo-vendor/libm-0.2.8/src/math/ilogb.rs +32 -0
  201. data/ext/cargo-vendor/libm-0.2.8/src/math/ilogbf.rs +32 -0
  202. data/ext/cargo-vendor/libm-0.2.8/src/math/j0.rs +422 -0
  203. data/ext/cargo-vendor/libm-0.2.8/src/math/j0f.rs +359 -0
  204. data/ext/cargo-vendor/libm-0.2.8/src/math/j1.rs +414 -0
  205. data/ext/cargo-vendor/libm-0.2.8/src/math/j1f.rs +380 -0
  206. data/ext/cargo-vendor/libm-0.2.8/src/math/jn.rs +343 -0
  207. data/ext/cargo-vendor/libm-0.2.8/src/math/jnf.rs +259 -0
  208. data/ext/cargo-vendor/libm-0.2.8/src/math/k_cos.rs +62 -0
  209. data/ext/cargo-vendor/libm-0.2.8/src/math/k_cosf.rs +29 -0
  210. data/ext/cargo-vendor/libm-0.2.8/src/math/k_expo2.rs +14 -0
  211. data/ext/cargo-vendor/libm-0.2.8/src/math/k_expo2f.rs +14 -0
  212. data/ext/cargo-vendor/libm-0.2.8/src/math/k_sin.rs +57 -0
  213. data/ext/cargo-vendor/libm-0.2.8/src/math/k_sinf.rs +30 -0
  214. data/ext/cargo-vendor/libm-0.2.8/src/math/k_tan.rs +105 -0
  215. data/ext/cargo-vendor/libm-0.2.8/src/math/k_tanf.rs +46 -0
  216. data/ext/cargo-vendor/libm-0.2.8/src/math/ldexp.rs +4 -0
  217. data/ext/cargo-vendor/libm-0.2.8/src/math/ldexpf.rs +4 -0
  218. data/ext/cargo-vendor/libm-0.2.8/src/math/lgamma.rs +6 -0
  219. data/ext/cargo-vendor/libm-0.2.8/src/math/lgamma_r.rs +320 -0
  220. data/ext/cargo-vendor/libm-0.2.8/src/math/lgammaf.rs +6 -0
  221. data/ext/cargo-vendor/libm-0.2.8/src/math/lgammaf_r.rs +255 -0
  222. data/ext/cargo-vendor/libm-0.2.8/src/math/log.rs +117 -0
  223. data/ext/cargo-vendor/libm-0.2.8/src/math/log10.rs +117 -0
  224. data/ext/cargo-vendor/libm-0.2.8/src/math/log10f.rs +91 -0
  225. data/ext/cargo-vendor/libm-0.2.8/src/math/log1p.rs +143 -0
  226. data/ext/cargo-vendor/libm-0.2.8/src/math/log1pf.rs +98 -0
  227. data/ext/cargo-vendor/libm-0.2.8/src/math/log2.rs +106 -0
  228. data/ext/cargo-vendor/libm-0.2.8/src/math/log2f.rs +87 -0
  229. data/ext/cargo-vendor/libm-0.2.8/src/math/logf.rs +65 -0
  230. data/ext/cargo-vendor/libm-0.2.8/src/math/mod.rs +370 -0
  231. data/ext/cargo-vendor/libm-0.2.8/src/math/modf.rs +34 -0
  232. data/ext/cargo-vendor/libm-0.2.8/src/math/modff.rs +33 -0
  233. data/ext/cargo-vendor/libm-0.2.8/src/math/nextafter.rs +37 -0
  234. data/ext/cargo-vendor/libm-0.2.8/src/math/nextafterf.rs +37 -0
  235. data/ext/cargo-vendor/libm-0.2.8/src/math/pow.rs +637 -0
  236. data/ext/cargo-vendor/libm-0.2.8/src/math/powf.rs +342 -0
  237. data/ext/cargo-vendor/libm-0.2.8/src/math/rem_pio2.rs +233 -0
  238. data/ext/cargo-vendor/libm-0.2.8/src/math/rem_pio2_large.rs +470 -0
  239. data/ext/cargo-vendor/libm-0.2.8/src/math/rem_pio2f.rs +67 -0
  240. data/ext/cargo-vendor/libm-0.2.8/src/math/remainder.rs +5 -0
  241. data/ext/cargo-vendor/libm-0.2.8/src/math/remainderf.rs +5 -0
  242. data/ext/cargo-vendor/libm-0.2.8/src/math/remquo.rs +110 -0
  243. data/ext/cargo-vendor/libm-0.2.8/src/math/remquof.rs +97 -0
  244. data/ext/cargo-vendor/libm-0.2.8/src/math/rint.rs +58 -0
  245. data/ext/cargo-vendor/libm-0.2.8/src/math/rintf.rs +58 -0
  246. data/ext/cargo-vendor/libm-0.2.8/src/math/round.rs +28 -0
  247. data/ext/cargo-vendor/libm-0.2.8/src/math/roundf.rs +30 -0
  248. data/ext/cargo-vendor/libm-0.2.8/src/math/scalbn.rs +33 -0
  249. data/ext/cargo-vendor/libm-0.2.8/src/math/scalbnf.rs +29 -0
  250. data/ext/cargo-vendor/libm-0.2.8/src/math/sin.rs +88 -0
  251. data/ext/cargo-vendor/libm-0.2.8/src/math/sincos.rs +134 -0
  252. data/ext/cargo-vendor/libm-0.2.8/src/math/sincosf.rs +185 -0
  253. data/ext/cargo-vendor/libm-0.2.8/src/math/sinf.rs +93 -0
  254. data/ext/cargo-vendor/libm-0.2.8/src/math/sinh.rs +49 -0
  255. data/ext/cargo-vendor/libm-0.2.8/src/math/sinhf.rs +30 -0
  256. data/ext/cargo-vendor/libm-0.2.8/src/math/sqrt.rs +280 -0
  257. data/ext/cargo-vendor/libm-0.2.8/src/math/sqrtf.rs +170 -0
  258. data/ext/cargo-vendor/libm-0.2.8/src/math/tan.rs +70 -0
  259. data/ext/cargo-vendor/libm-0.2.8/src/math/tanf.rs +78 -0
  260. data/ext/cargo-vendor/libm-0.2.8/src/math/tanh.rs +53 -0
  261. data/ext/cargo-vendor/libm-0.2.8/src/math/tanhf.rs +39 -0
  262. data/ext/cargo-vendor/libm-0.2.8/src/math/tgamma.rs +208 -0
  263. data/ext/cargo-vendor/libm-0.2.8/src/math/tgammaf.rs +6 -0
  264. data/ext/cargo-vendor/libm-0.2.8/src/math/trunc.rs +40 -0
  265. data/ext/cargo-vendor/libm-0.2.8/src/math/truncf.rs +42 -0
  266. data/ext/cargo-vendor/postcard-1.0.8/.cargo-checksum.json +1 -0
  267. data/ext/cargo-vendor/postcard-1.0.8/CHANGELOG.md +141 -0
  268. data/ext/cargo-vendor/postcard-1.0.8/Cargo.toml +100 -0
  269. data/ext/cargo-vendor/postcard-1.0.8/LICENSE-APACHE +201 -0
  270. data/ext/cargo-vendor/postcard-1.0.8/LICENSE-MIT +25 -0
  271. data/ext/cargo-vendor/postcard-1.0.8/README.md +146 -0
  272. data/ext/cargo-vendor/postcard-1.0.8/spec/LICENSE-CC-BY-SA +427 -0
  273. data/ext/cargo-vendor/postcard-1.0.8/spec/book.toml +6 -0
  274. data/ext/cargo-vendor/postcard-1.0.8/spec/src/SUMMARY.md +6 -0
  275. data/ext/cargo-vendor/postcard-1.0.8/spec/src/glossary.md +17 -0
  276. data/ext/cargo-vendor/postcard-1.0.8/spec/src/intro.md +12 -0
  277. data/ext/cargo-vendor/postcard-1.0.8/spec/src/serde-data-model.md +190 -0
  278. data/ext/cargo-vendor/postcard-1.0.8/spec/src/wire-format.md +327 -0
  279. data/ext/cargo-vendor/postcard-1.0.8/src/accumulator.rs +367 -0
  280. data/ext/cargo-vendor/postcard-1.0.8/src/de/deserializer.rs +599 -0
  281. data/ext/cargo-vendor/postcard-1.0.8/src/de/flavors.rs +468 -0
  282. data/ext/cargo-vendor/postcard-1.0.8/src/de/mod.rs +568 -0
  283. data/ext/cargo-vendor/postcard-1.0.8/src/error.rs +95 -0
  284. data/ext/cargo-vendor/postcard-1.0.8/src/fixint.rs +189 -0
  285. data/ext/cargo-vendor/postcard-1.0.8/src/lib.rs +143 -0
  286. data/ext/cargo-vendor/postcard-1.0.8/src/max_size.rs +233 -0
  287. data/ext/cargo-vendor/postcard-1.0.8/src/schema.rs +282 -0
  288. data/ext/cargo-vendor/postcard-1.0.8/src/ser/flavors.rs +722 -0
  289. data/ext/cargo-vendor/postcard-1.0.8/src/ser/mod.rs +866 -0
  290. data/ext/cargo-vendor/postcard-1.0.8/src/ser/serializer.rs +564 -0
  291. data/ext/cargo-vendor/postcard-1.0.8/src/varint.rs +103 -0
  292. data/ext/cargo-vendor/postcard-1.0.8/tests/accumulator.rs +57 -0
  293. data/ext/cargo-vendor/postcard-1.0.8/tests/crc.rs +60 -0
  294. data/ext/cargo-vendor/postcard-1.0.8/tests/loopback.rs +248 -0
  295. data/ext/cargo-vendor/postcard-1.0.8/tests/max_size.rs +101 -0
  296. data/ext/cargo-vendor/postcard-1.0.8/tests/schema.rs +107 -0
  297. data/ext/cargo-vendor/rb-sys-0.9.100/.cargo-checksum.json +1 -0
  298. data/ext/cargo-vendor/rb-sys-0.9.100/Cargo.toml +58 -0
  299. data/ext/cargo-vendor/rb-sys-0.9.100/build/main.rs +267 -0
  300. data/ext/cargo-vendor/rb-sys-0.9.100/build/stable_api_config.rs +139 -0
  301. data/ext/cargo-vendor/rb-sys-0.9.100/src/bindings.rs +21 -0
  302. data/ext/cargo-vendor/rb-sys-0.9.100/src/tracking_allocator.rs +266 -0
  303. data/ext/cargo-vendor/rb-sys-build-0.9.100/.cargo-checksum.json +1 -0
  304. data/ext/cargo-vendor/rb-sys-build-0.9.100/Cargo.toml +62 -0
  305. data/ext/cargo-vendor/rb-sys-build-0.9.100/src/bindings/stable_api.rs +203 -0
  306. data/ext/cargo-vendor/rb-sys-build-0.9.100/src/bindings.rs +254 -0
  307. data/ext/cargo-vendor/rb-sys-build-0.9.100/src/cc.rs +374 -0
  308. data/ext/cargo-vendor/rb-sys-build-0.9.100/src/utils.rs +52 -0
  309. data/ext/cargo-vendor/wasi-common-21.0.1/.cargo-checksum.json +1 -0
  310. data/ext/cargo-vendor/wasi-common-21.0.1/Cargo.toml +223 -0
  311. data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/async_.rs +293 -0
  312. data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/main.rs +21 -0
  313. data/ext/cargo-vendor/wasi-common-21.0.1/tests/all/sync.rs +279 -0
  314. data/ext/cargo-vendor/wasm-encoder-0.207.0/.cargo-checksum.json +1 -0
  315. data/ext/cargo-vendor/wasm-encoder-0.207.0/Cargo.toml +45 -0
  316. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/code.rs +3502 -0
  317. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/data.rs +186 -0
  318. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/elements.rs +221 -0
  319. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/globals.rs +112 -0
  320. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/imports.rs +157 -0
  321. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/memories.rs +128 -0
  322. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/tables.rs +134 -0
  323. data/ext/cargo-vendor/wasm-encoder-0.207.0/src/core/types.rs +678 -0
  324. data/ext/cargo-vendor/wasmparser-0.207.0/.cargo-checksum.json +1 -0
  325. data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.lock +659 -0
  326. data/ext/cargo-vendor/wasmparser-0.207.0/Cargo.toml +95 -0
  327. data/ext/cargo-vendor/wasmparser-0.207.0/src/binary_reader.rs +1867 -0
  328. data/ext/cargo-vendor/wasmparser-0.207.0/src/lib.rs +805 -0
  329. data/ext/cargo-vendor/wasmparser-0.207.0/src/limits.rs +78 -0
  330. data/ext/cargo-vendor/wasmparser-0.207.0/src/map.rs +137 -0
  331. data/ext/cargo-vendor/wasmparser-0.207.0/src/parser.rs +1636 -0
  332. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/canonicals.rs +121 -0
  333. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/instances.rs +164 -0
  334. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/names.rs +102 -0
  335. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/start.rs +31 -0
  336. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/component/types.rs +551 -0
  337. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/code.rs +146 -0
  338. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/coredumps.rs +244 -0
  339. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/custom.rs +64 -0
  340. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/data.rs +96 -0
  341. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/dylink0.rs +110 -0
  342. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/elements.rs +152 -0
  343. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/globals.rs +51 -0
  344. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/linking.rs +450 -0
  345. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/memories.rs +57 -0
  346. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/names.rs +159 -0
  347. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/operators.rs +430 -0
  348. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/reloc.rs +301 -0
  349. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/tables.rs +93 -0
  350. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/types/matches.rs +277 -0
  351. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core/types.rs +1773 -0
  352. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers/core.rs +43 -0
  353. data/ext/cargo-vendor/wasmparser-0.207.0/src/readers.rs +316 -0
  354. data/ext/cargo-vendor/wasmparser-0.207.0/src/resources.rs +235 -0
  355. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/component.rs +3242 -0
  356. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core/canonical.rs +233 -0
  357. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/core.rs +1450 -0
  358. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/func.rs +331 -0
  359. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/names.rs +947 -0
  360. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/operators.rs +4117 -0
  361. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator/types.rs +4492 -0
  362. data/ext/cargo-vendor/wasmparser-0.207.0/src/validator.rs +1786 -0
  363. data/ext/cargo-vendor/wasmprinter-0.207.0/.cargo-checksum.json +1 -0
  364. data/ext/cargo-vendor/wasmprinter-0.207.0/Cargo.toml +50 -0
  365. data/ext/cargo-vendor/wasmprinter-0.207.0/src/lib.rs +3226 -0
  366. data/ext/cargo-vendor/wasmprinter-0.207.0/src/operator.rs +1164 -0
  367. data/ext/cargo-vendor/wasmprinter-0.207.0/tests/all.rs +293 -0
  368. data/ext/cargo-vendor/wasmtime-21.0.1/.cargo-checksum.json +1 -0
  369. data/ext/cargo-vendor/wasmtime-21.0.1/Cargo.toml +386 -0
  370. data/ext/cargo-vendor/wasmtime-21.0.1/build.rs +37 -0
  371. data/ext/cargo-vendor/wasmtime-21.0.1/src/compile/code_builder.rs +275 -0
  372. data/ext/cargo-vendor/wasmtime-21.0.1/src/compile/runtime.rs +176 -0
  373. data/ext/cargo-vendor/wasmtime-21.0.1/src/compile.rs +910 -0
  374. data/ext/cargo-vendor/wasmtime-21.0.1/src/config.rs +2904 -0
  375. data/ext/cargo-vendor/wasmtime-21.0.1/src/engine/serialization.rs +887 -0
  376. data/ext/cargo-vendor/wasmtime-21.0.1/src/engine.rs +728 -0
  377. data/ext/cargo-vendor/wasmtime-21.0.1/src/lib.rs +328 -0
  378. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/jitdump.rs +67 -0
  379. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/perfmap.rs +48 -0
  380. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent/vtune.rs +81 -0
  381. data/ext/cargo-vendor/wasmtime-21.0.1/src/profiling_agent.rs +106 -0
  382. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code.rs +102 -0
  383. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/code_memory.rs +337 -0
  384. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/component.rs +661 -0
  385. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/host.rs +440 -0
  386. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/options.rs +555 -0
  387. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func/typed.rs +2498 -0
  388. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/func.rs +746 -0
  389. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/instance.rs +814 -0
  390. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/linker.rs +783 -0
  391. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/matching.rs +217 -0
  392. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/mod.rs +783 -0
  393. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/resource_table.rs +355 -0
  394. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/resources.rs +1133 -0
  395. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/storage.rs +43 -0
  396. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/store.rs +29 -0
  397. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/types.rs +892 -0
  398. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/component/values.rs +980 -0
  399. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/coredump.rs +342 -0
  400. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/debug.rs +166 -0
  401. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/global.rs +310 -0
  402. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals/table.rs +477 -0
  403. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/externals.rs +236 -0
  404. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func/typed.rs +899 -0
  405. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/func.rs +2627 -0
  406. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/disabled/anyref.rs +46 -0
  407. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/disabled/externref.rs +50 -0
  408. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/disabled/rooting.rs +224 -0
  409. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/anyref.rs +473 -0
  410. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/externref.rs +650 -0
  411. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/i31.rs +346 -0
  412. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc/enabled/rooting.rs +1588 -0
  413. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/gc.rs +89 -0
  414. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instance.rs +992 -0
  415. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/instantiate.rs +346 -0
  416. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/limits.rs +399 -0
  417. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/linker.rs +1506 -0
  418. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/memory.rs +998 -0
  419. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module/registry.rs +353 -0
  420. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/module.rs +1295 -0
  421. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/profiling.rs +221 -0
  422. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/resources.rs +33 -0
  423. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/signatures.rs +216 -0
  424. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/stack.rs +73 -0
  425. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/context.rs +243 -0
  426. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/data.rs +301 -0
  427. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store/func_refs.rs +90 -0
  428. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/store.rs +2820 -0
  429. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/func.rs +139 -0
  430. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/global.rs +68 -0
  431. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/memory.rs +287 -0
  432. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline/table.rs +29 -0
  433. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trampoline.rs +78 -0
  434. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/trap.rs +642 -0
  435. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/type_registry.rs +807 -0
  436. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/types/matching.rs +421 -0
  437. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/types.rs +2239 -0
  438. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/unix.rs +40 -0
  439. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/v128.rs +131 -0
  440. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/values.rs +966 -0
  441. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/arch/aarch64.rs +76 -0
  442. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/arch/x86_64.rs +41 -0
  443. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/async_yield.rs +35 -0
  444. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component/libcalls.rs +571 -0
  445. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component/resources.rs +352 -0
  446. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/component.rs +860 -0
  447. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/const_expr.rs +102 -0
  448. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/cow.rs +893 -0
  449. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/debug_builtins.rs +59 -0
  450. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/export.rs +108 -0
  451. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/disabled.rs +24 -0
  452. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/drc.rs +968 -0
  453. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/externref.rs +116 -0
  454. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled/free_list.rs +771 -0
  455. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/enabled.rs +18 -0
  456. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/gc_ref.rs +491 -0
  457. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/gc_runtime.rs +506 -0
  458. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/host_data.rs +82 -0
  459. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc/i31.rs +87 -0
  460. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/gc.rs +245 -0
  461. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/imports.rs +29 -0
  462. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/on_demand.rs +218 -0
  463. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +93 -0
  464. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +66 -0
  465. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +705 -0
  466. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1000 -0
  467. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/table_pool.rs +233 -0
  468. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +245 -0
  469. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator/pooling.rs +656 -0
  470. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance/allocator.rs +798 -0
  471. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/instance.rs +1519 -0
  472. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/libcalls.rs +834 -0
  473. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/memory.rs +744 -0
  474. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mmap.rs +220 -0
  475. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mmap_vec.rs +162 -0
  476. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/module_id.rs +43 -0
  477. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/enabled.rs +214 -0
  478. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/mod.rs +54 -0
  479. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/pkru.rs +104 -0
  480. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/mpk/sys.rs +114 -0
  481. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/send_sync_ptr.rs +106 -0
  482. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/store_box.rs +37 -0
  483. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/capi.rs +200 -0
  484. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/mmap.rs +112 -0
  485. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/mod.rs +34 -0
  486. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/traphandlers.rs +55 -0
  487. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/custom/vm.rs +109 -0
  488. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/mmap.rs +95 -0
  489. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/mod.rs +24 -0
  490. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/miri/traphandlers.rs +47 -0
  491. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/mod.rs +25 -0
  492. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/machports.rs +416 -0
  493. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/mmap.rs +162 -0
  494. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/mod.rs +35 -0
  495. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/signals.rs +401 -0
  496. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/unwind.rs +150 -0
  497. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/unix/vm.rs +215 -0
  498. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/mmap.rs +221 -0
  499. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/mod.rs +20 -0
  500. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/sys/windows/traphandlers.rs +104 -0
  501. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/table.rs +847 -0
  502. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/parking_spot.rs +623 -0
  503. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/shared_memory.rs +233 -0
  504. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/threads/shared_memory_disabled.rs +101 -0
  505. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers/backtrace.rs +267 -0
  506. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers/coredump_disabled.rs +16 -0
  507. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers/coredump_enabled.rs +42 -0
  508. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/traphandlers.rs +768 -0
  509. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext/vm_host_func_context.rs +138 -0
  510. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm/vmcontext.rs +1337 -0
  511. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/vm.rs +287 -0
  512. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime/windows.rs +35 -0
  513. data/ext/cargo-vendor/wasmtime-21.0.1/src/runtime.rs +110 -0
  514. data/ext/cargo-vendor/wasmtime-21.0.1/src/sync_nostd.rs +255 -0
  515. data/ext/cargo-vendor/wasmtime-21.0.1/src/sync_std.rs +52 -0
  516. data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/.cargo-checksum.json +1 -0
  517. data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/Cargo.toml +22 -0
  518. data/ext/cargo-vendor/wasmtime-asm-macros-21.0.1/src/lib.rs +83 -0
  519. data/ext/cargo-vendor/wasmtime-cache-21.0.1/.cargo-checksum.json +1 -0
  520. data/ext/cargo-vendor/wasmtime-cache-21.0.1/Cargo.toml +88 -0
  521. data/ext/cargo-vendor/wasmtime-cache-21.0.1/src/lib.rs +235 -0
  522. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/.cargo-checksum.json +1 -0
  523. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/Cargo.toml +79 -0
  524. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/bindgen.rs +436 -0
  525. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/src/component.rs +1295 -0
  526. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/tests/codegen.rs +576 -0
  527. data/ext/cargo-vendor/wasmtime-component-macro-21.0.1/tests/codegen_no_std.rs +16 -0
  528. data/ext/cargo-vendor/wasmtime-component-util-21.0.1/.cargo-checksum.json +1 -0
  529. data/ext/cargo-vendor/wasmtime-component-util-21.0.1/Cargo.toml +25 -0
  530. data/ext/cargo-vendor/wasmtime-component-util-21.0.1/src/lib.rs +182 -0
  531. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/.cargo-checksum.json +1 -0
  532. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/Cargo.toml +114 -0
  533. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler/component.rs +968 -0
  534. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/compiler.rs +1383 -0
  535. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/gc.rs +252 -0
  536. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/attr.rs +320 -0
  537. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/expression.rs +1248 -0
  538. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/line_program.rs +287 -0
  539. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/mod.rs +256 -0
  540. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/unit.rs +529 -0
  541. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/transform/utils.rs +186 -0
  542. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug/write_debuginfo.rs +196 -0
  543. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/debug.rs +18 -0
  544. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/func_environ.rs +2888 -0
  545. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/gc/enabled.rs +648 -0
  546. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/gc.rs +198 -0
  547. data/ext/cargo-vendor/wasmtime-cranelift-21.0.1/src/lib.rs +511 -0
  548. data/ext/cargo-vendor/wasmtime-environ-21.0.1/.cargo-checksum.json +1 -0
  549. data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.lock +772 -0
  550. data/ext/cargo-vendor/wasmtime-environ-21.0.1/Cargo.toml +154 -0
  551. data/ext/cargo-vendor/wasmtime-environ-21.0.1/examples/factc.rs +198 -0
  552. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/address_map.rs +73 -0
  553. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/mod.rs +419 -0
  554. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_artifacts.rs +315 -0
  555. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_environ.rs +1337 -0
  556. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/module_types.rs +362 -0
  557. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/compile/trap_encoding.rs +70 -0
  558. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/compiler.rs +20 -0
  559. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/dfg.rs +691 -0
  560. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/info.rs +672 -0
  561. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate/adapt.rs +455 -0
  562. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/translate.rs +978 -0
  563. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types.rs +1029 -0
  564. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder/resources.rs +233 -0
  565. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component/types_builder.rs +997 -0
  566. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/component.rs +107 -0
  567. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/demangling.rs +28 -0
  568. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/core_types.rs +25 -0
  569. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/signature.rs +119 -0
  570. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/trampoline.rs +3234 -0
  571. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/transcode.rs +90 -0
  572. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact/traps.rs +116 -0
  573. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/fact.rs +714 -0
  574. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/lib.rs +161 -0
  575. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module.rs +697 -0
  576. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_artifacts.rs +146 -0
  577. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/module_types.rs +91 -0
  578. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/scopevec.rs +80 -0
  579. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/stack_map.rs +37 -0
  580. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/trap_encoding.rs +189 -0
  581. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/tunables.rs +168 -0
  582. data/ext/cargo-vendor/wasmtime-environ-21.0.1/src/vmoffsets.rs +1015 -0
  583. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/.cargo-checksum.json +1 -0
  584. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/Cargo.toml +64 -0
  585. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/build.rs +38 -0
  586. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/lib.rs +328 -0
  587. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/unix.rs +490 -0
  588. data/ext/cargo-vendor/wasmtime-fiber-21.0.1/src/windows.rs +166 -0
  589. data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/.cargo-checksum.json +1 -0
  590. data/ext/cargo-vendor/wasmtime-jit-debug-21.0.1/Cargo.toml +67 -0
  591. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/.cargo-checksum.json +1 -0
  592. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/Cargo.toml +51 -0
  593. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/lib.rs +109 -0
  594. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/libc.rs +163 -0
  595. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/miri.rs +10 -0
  596. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-21.0.1/src/win.rs +49 -0
  597. data/ext/cargo-vendor/wasmtime-slab-21.0.1/.cargo-checksum.json +1 -0
  598. data/ext/cargo-vendor/wasmtime-slab-21.0.1/Cargo.toml +21 -0
  599. data/ext/cargo-vendor/wasmtime-slab-21.0.1/src/lib.rs +498 -0
  600. data/ext/cargo-vendor/wasmtime-types-21.0.1/.cargo-checksum.json +1 -0
  601. data/ext/cargo-vendor/wasmtime-types-21.0.1/Cargo.toml +55 -0
  602. data/ext/cargo-vendor/wasmtime-types-21.0.1/src/error.rs +81 -0
  603. data/ext/cargo-vendor/wasmtime-types-21.0.1/src/lib.rs +1572 -0
  604. data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/.cargo-checksum.json +1 -0
  605. data/ext/cargo-vendor/wasmtime-versioned-export-macros-21.0.1/Cargo.toml +32 -0
  606. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/.cargo-checksum.json +1 -0
  607. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/Cargo.toml +200 -0
  608. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/bindings.rs +280 -0
  609. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/ctx.rs +667 -0
  610. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/filesystem.rs +446 -0
  611. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/lib.rs +426 -0
  612. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview0.rs +877 -0
  613. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/src/preview1.rs +2660 -0
  614. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/api.rs +198 -0
  615. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/async_.rs +397 -0
  616. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/main.rs +91 -0
  617. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/preview1.rs +251 -0
  618. data/ext/cargo-vendor/wasmtime-wasi-21.0.1/tests/all/sync.rs +331 -0
  619. data/ext/cargo-vendor/wasmtime-winch-21.0.1/.cargo-checksum.json +1 -0
  620. data/ext/cargo-vendor/wasmtime-winch-21.0.1/Cargo.toml +81 -0
  621. data/ext/cargo-vendor/wasmtime-winch-21.0.1/src/compiler.rs +261 -0
  622. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/.cargo-checksum.json +1 -0
  623. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/Cargo.toml +46 -0
  624. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/lib.rs +2541 -0
  625. data/ext/cargo-vendor/wasmtime-wit-bindgen-21.0.1/src/rust.rs +421 -0
  626. data/ext/cargo-vendor/wiggle-21.0.1/.cargo-checksum.json +1 -0
  627. data/ext/cargo-vendor/wiggle-21.0.1/Cargo.toml +123 -0
  628. data/ext/cargo-vendor/wiggle-generate-21.0.1/.cargo-checksum.json +1 -0
  629. data/ext/cargo-vendor/wiggle-generate-21.0.1/Cargo.toml +66 -0
  630. data/ext/cargo-vendor/wiggle-macro-21.0.1/.cargo-checksum.json +1 -0
  631. data/ext/cargo-vendor/wiggle-macro-21.0.1/Cargo.toml +55 -0
  632. data/ext/cargo-vendor/winch-codegen-0.19.1/.cargo-checksum.json +1 -0
  633. data/ext/cargo-vendor/winch-codegen-0.19.1/Cargo.toml +76 -0
  634. data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/context.rs +534 -0
  635. data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/env.rs +440 -0
  636. data/ext/cargo-vendor/winch-codegen-0.19.1/src/codegen/mod.rs +882 -0
  637. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/abi.rs +291 -0
  638. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/address.rs +143 -0
  639. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/asm.rs +380 -0
  640. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/masm.rs +566 -0
  641. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/mod.rs +158 -0
  642. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/aarch64/regs.rs +161 -0
  643. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/reg.rs +73 -0
  644. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/asm.rs +1423 -0
  645. data/ext/cargo-vendor/winch-codegen-0.19.1/src/isa/x64/masm.rs +1120 -0
  646. data/ext/cargo-vendor/winch-codegen-0.19.1/src/masm.rs +941 -0
  647. data/ext/cargo-vendor/winch-codegen-0.19.1/src/regalloc.rs +65 -0
  648. data/ext/cargo-vendor/winch-codegen-0.19.1/src/regset.rs +194 -0
  649. data/ext/cargo-vendor/winch-codegen-0.19.1/src/visitor.rs +2144 -0
  650. data/ext/cargo-vendor/wit-parser-0.207.0/.cargo-checksum.json +1 -0
  651. data/ext/cargo-vendor/wit-parser-0.207.0/Cargo.toml +109 -0
  652. data/ext/cargo-vendor/wit-parser-0.207.0/src/ast/resolve.rs +1442 -0
  653. data/ext/cargo-vendor/wit-parser-0.207.0/src/decoding.rs +1764 -0
  654. data/ext/cargo-vendor/wit-parser-0.207.0/src/lib.rs +777 -0
  655. data/ext/cargo-vendor/wit-parser-0.207.0/src/live.rs +126 -0
  656. data/ext/cargo-vendor/wit-parser-0.207.0/src/resolve.rs +2337 -0
  657. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +5 -0
  658. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/resources-return-borrow.wit.result +5 -0
  659. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow1.wit +7 -0
  660. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow1.wit.result +5 -0
  661. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow2.wit +8 -0
  662. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow2.wit.result +5 -0
  663. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow3.wit +7 -0
  664. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow3.wit.result +5 -0
  665. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow4.wit +7 -0
  666. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow4.wit.result +5 -0
  667. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow5.wit +7 -0
  668. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow5.wit.result +5 -0
  669. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow6.wit +7 -0
  670. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow6.wit.result +5 -0
  671. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow7.wit +11 -0
  672. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow7.wit.result +5 -0
  673. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8/deps/baz.wit +9 -0
  674. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8/foo.wit +7 -0
  675. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/parse-fail/return-borrow8.wit.result +8 -0
  676. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-top-level-resources.wit +24 -0
  677. data/ext/cargo-vendor/wit-parser-0.207.0/tests/ui/world-top-level-resources.wit.json +231 -0
  678. data/ext/src/lib.rs +1 -0
  679. data/ext/src/ruby_api/config.rs +1 -12
  680. data/ext/src/ruby_api/engine.rs +3 -6
  681. data/ext/src/ruby_api/store.rs +68 -5
  682. data/lib/wasmtime/version.rb +1 -1
  683. metadata +1601 -1408
  684. data/ext/cargo-vendor/bincode-1.3.3/.cargo-checksum.json +0 -1
  685. data/ext/cargo-vendor/bincode-1.3.3/Cargo.toml +0 -37
  686. data/ext/cargo-vendor/bincode-1.3.3/LICENSE.md +0 -21
  687. data/ext/cargo-vendor/bincode-1.3.3/readme.md +0 -112
  688. data/ext/cargo-vendor/bincode-1.3.3/src/byteorder.rs +0 -385
  689. data/ext/cargo-vendor/bincode-1.3.3/src/config/endian.rs +0 -27
  690. data/ext/cargo-vendor/bincode-1.3.3/src/config/int.rs +0 -682
  691. data/ext/cargo-vendor/bincode-1.3.3/src/config/legacy.rs +0 -253
  692. data/ext/cargo-vendor/bincode-1.3.3/src/config/limit.rs +0 -49
  693. data/ext/cargo-vendor/bincode-1.3.3/src/config/mod.rs +0 -408
  694. data/ext/cargo-vendor/bincode-1.3.3/src/config/trailing.rs +0 -37
  695. data/ext/cargo-vendor/bincode-1.3.3/src/de/mod.rs +0 -515
  696. data/ext/cargo-vendor/bincode-1.3.3/src/de/read.rs +0 -202
  697. data/ext/cargo-vendor/bincode-1.3.3/src/error.rs +0 -115
  698. data/ext/cargo-vendor/bincode-1.3.3/src/internal.rs +0 -124
  699. data/ext/cargo-vendor/bincode-1.3.3/src/lib.rs +0 -201
  700. data/ext/cargo-vendor/bincode-1.3.3/src/ser/mod.rs +0 -772
  701. data/ext/cargo-vendor/bincode-1.3.3/tests/test.rs +0 -899
  702. data/ext/cargo-vendor/cranelift-bforest-0.107.2/.cargo-checksum.json +0 -1
  703. data/ext/cargo-vendor/cranelift-bforest-0.107.2/Cargo.toml +0 -40
  704. data/ext/cargo-vendor/cranelift-codegen-0.107.2/.cargo-checksum.json +0 -1
  705. data/ext/cargo-vendor/cranelift-codegen-0.107.2/Cargo.toml +0 -178
  706. data/ext/cargo-vendor/cranelift-codegen-0.107.2/build.rs +0 -396
  707. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/alias_analysis.rs +0 -403
  708. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/context.rs +0 -386
  709. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ctxhash.rs +0 -167
  710. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph/elaborate.rs +0 -835
  711. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph.rs +0 -838
  712. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/fx.rs +0 -105
  713. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/incremental_cache.rs +0 -256
  714. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/instructions.rs +0 -1019
  715. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/abi.rs +0 -1707
  716. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/args.rs +0 -779
  717. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/emit.rs +0 -3932
  718. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/emit_tests.rs +0 -7919
  719. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/imms.rs +0 -1218
  720. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/mod.rs +0 -3083
  721. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/regs.rs +0 -292
  722. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst.isle +0 -4218
  723. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower/isle.rs +0 -884
  724. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/pcc.rs +0 -565
  725. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/mod.rs +0 -432
  726. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/abi.rs +0 -1109
  727. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/args.rs +0 -1968
  728. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/emit.rs +0 -3466
  729. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/emit_tests.rs +0 -2146
  730. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/mod.rs +0 -2041
  731. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/regs.rs +0 -175
  732. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/vector.rs +0 -1162
  733. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst.isle +0 -2944
  734. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower/isle.rs +0 -625
  735. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower.isle +0 -2872
  736. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/abi.rs +0 -1047
  737. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/args.rs +0 -347
  738. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/emit.rs +0 -3646
  739. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/imms.rs +0 -202
  740. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/mod.rs +0 -3423
  741. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/regs.rs +0 -187
  742. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/abi.rs +0 -1369
  743. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/args.rs +0 -2289
  744. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit.rs +0 -4383
  745. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit_tests.rs +0 -5131
  746. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/mod.rs +0 -2798
  747. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/regs.rs +0 -276
  748. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst.isle +0 -5304
  749. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower/isle.rs +0 -1066
  750. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.isle +0 -4809
  751. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.rs +0 -339
  752. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/pcc.rs +0 -1003
  753. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/lib.rs +0 -106
  754. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/abi.rs +0 -2594
  755. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/blockorder.rs +0 -465
  756. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/isle.rs +0 -914
  757. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/lower.rs +0 -1452
  758. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/mod.rs +0 -555
  759. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/reg.rs +0 -562
  760. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/valueregs.rs +0 -132
  761. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/vcode.rs +0 -1807
  762. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/nan_canonicalization.rs +0 -110
  763. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/arithmetic.isle +0 -179
  764. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/icmp.isle +0 -197
  765. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/remove_constant_phis.rs +0 -420
  766. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/scoped_hash_map.rs +0 -310
  767. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/settings.rs +0 -591
  768. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/.cargo-checksum.json +0 -1
  769. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/Cargo.toml +0 -35
  770. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/gen_inst.rs +0 -1784
  771. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/gen_settings.rs +0 -508
  772. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/gen_types.rs +0 -75
  773. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/isa/riscv64.rs +0 -160
  774. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/isa/x86.rs +0 -402
  775. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/lib.rs +0 -59
  776. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/settings.rs +0 -355
  777. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/srcgen.rs +0 -470
  778. data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/.cargo-checksum.json +0 -1
  779. data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/Cargo.toml +0 -22
  780. data/ext/cargo-vendor/cranelift-control-0.107.2/.cargo-checksum.json +0 -1
  781. data/ext/cargo-vendor/cranelift-control-0.107.2/Cargo.toml +0 -30
  782. data/ext/cargo-vendor/cranelift-entity-0.107.2/.cargo-checksum.json +0 -1
  783. data/ext/cargo-vendor/cranelift-entity-0.107.2/Cargo.toml +0 -50
  784. data/ext/cargo-vendor/cranelift-entity-0.107.2/src/lib.rs +0 -317
  785. data/ext/cargo-vendor/cranelift-frontend-0.107.2/.cargo-checksum.json +0 -1
  786. data/ext/cargo-vendor/cranelift-frontend-0.107.2/Cargo.toml +0 -69
  787. data/ext/cargo-vendor/cranelift-frontend-0.107.2/src/switch.rs +0 -654
  788. data/ext/cargo-vendor/cranelift-isle-0.107.2/.cargo-checksum.json +0 -1
  789. data/ext/cargo-vendor/cranelift-isle-0.107.2/Cargo.toml +0 -46
  790. data/ext/cargo-vendor/cranelift-isle-0.107.2/src/codegen.rs +0 -886
  791. data/ext/cargo-vendor/cranelift-isle-0.107.2/src/lib.rs +0 -271
  792. data/ext/cargo-vendor/cranelift-isle-0.107.2/src/sema.rs +0 -2492
  793. data/ext/cargo-vendor/cranelift-isle-0.107.2/src/serialize.rs +0 -846
  794. data/ext/cargo-vendor/cranelift-isle-0.107.2/src/trie_again.rs +0 -683
  795. data/ext/cargo-vendor/cranelift-native-0.107.2/.cargo-checksum.json +0 -1
  796. data/ext/cargo-vendor/cranelift-native-0.107.2/Cargo.toml +0 -45
  797. data/ext/cargo-vendor/cranelift-wasm-0.107.2/.cargo-checksum.json +0 -1
  798. data/ext/cargo-vendor/cranelift-wasm-0.107.2/Cargo.toml +0 -107
  799. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/code_translator.rs +0 -3683
  800. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/dummy.rs +0 -912
  801. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/spec.rs +0 -945
  802. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/sections_translator.rs +0 -409
  803. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/.cargo-checksum.json +0 -1
  804. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/Cargo.toml +0 -48
  805. data/ext/cargo-vendor/rb-sys-0.9.97/.cargo-checksum.json +0 -1
  806. data/ext/cargo-vendor/rb-sys-0.9.97/Cargo.toml +0 -54
  807. data/ext/cargo-vendor/rb-sys-0.9.97/build/main.rs +0 -238
  808. data/ext/cargo-vendor/rb-sys-0.9.97/build/stable_api_config.rs +0 -133
  809. data/ext/cargo-vendor/rb-sys-0.9.97/src/bindings.rs +0 -20
  810. data/ext/cargo-vendor/rb-sys-0.9.97/src/tracking_allocator.rs +0 -265
  811. data/ext/cargo-vendor/rb-sys-build-0.9.97/.cargo-checksum.json +0 -1
  812. data/ext/cargo-vendor/rb-sys-build-0.9.97/Cargo.toml +0 -62
  813. data/ext/cargo-vendor/rb-sys-build-0.9.97/src/bindings/stable_api.rs +0 -202
  814. data/ext/cargo-vendor/rb-sys-build-0.9.97/src/bindings.rs +0 -250
  815. data/ext/cargo-vendor/rb-sys-build-0.9.97/src/cc.rs +0 -365
  816. data/ext/cargo-vendor/rb-sys-build-0.9.97/src/utils.rs +0 -52
  817. data/ext/cargo-vendor/wasi-common-20.0.2/.cargo-checksum.json +0 -1
  818. data/ext/cargo-vendor/wasi-common-20.0.2/Cargo.toml +0 -220
  819. data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/async_.rs +0 -293
  820. data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/main.rs +0 -21
  821. data/ext/cargo-vendor/wasi-common-20.0.2/tests/all/sync.rs +0 -279
  822. data/ext/cargo-vendor/wasm-encoder-0.202.0/.cargo-checksum.json +0 -1
  823. data/ext/cargo-vendor/wasm-encoder-0.202.0/Cargo.toml +0 -43
  824. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/code.rs +0 -3444
  825. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/data.rs +0 -185
  826. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/elements.rs +0 -220
  827. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/globals.rs +0 -101
  828. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/imports.rs +0 -156
  829. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/memories.rs +0 -111
  830. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/tables.rs +0 -116
  831. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/core/types.rs +0 -673
  832. data/ext/cargo-vendor/wasmparser-0.202.0/.cargo-checksum.json +0 -1
  833. data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.lock +0 -744
  834. data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.toml +0 -66
  835. data/ext/cargo-vendor/wasmparser-0.202.0/src/binary_reader.rs +0 -1849
  836. data/ext/cargo-vendor/wasmparser-0.202.0/src/lib.rs +0 -766
  837. data/ext/cargo-vendor/wasmparser-0.202.0/src/limits.rs +0 -64
  838. data/ext/cargo-vendor/wasmparser-0.202.0/src/parser.rs +0 -1611
  839. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/canonicals.rs +0 -120
  840. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/instances.rs +0 -163
  841. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/names.rs +0 -102
  842. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/start.rs +0 -30
  843. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/types.rs +0 -549
  844. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/code.rs +0 -146
  845. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/coredumps.rs +0 -243
  846. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/custom.rs +0 -63
  847. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/data.rs +0 -96
  848. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/dylink0.rs +0 -109
  849. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/elements.rs +0 -152
  850. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/globals.rs +0 -49
  851. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/linking.rs +0 -449
  852. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/memories.rs +0 -56
  853. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/names.rs +0 -156
  854. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/operators.rs +0 -411
  855. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/tables.rs +0 -87
  856. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/types/matches.rs +0 -277
  857. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core/types.rs +0 -1680
  858. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/core.rs +0 -41
  859. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers.rs +0 -316
  860. data/ext/cargo-vendor/wasmparser-0.202.0/src/resources.rs +0 -235
  861. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/component.rs +0 -3238
  862. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/core/canonical.rs +0 -233
  863. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/core.rs +0 -1400
  864. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/func.rs +0 -338
  865. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/names.rs +0 -929
  866. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/operators.rs +0 -4076
  867. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/types.rs +0 -4449
  868. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator.rs +0 -1619
  869. data/ext/cargo-vendor/wasmprinter-0.202.0/.cargo-checksum.json +0 -1
  870. data/ext/cargo-vendor/wasmprinter-0.202.0/Cargo.toml +0 -45
  871. data/ext/cargo-vendor/wasmprinter-0.202.0/src/lib.rs +0 -3202
  872. data/ext/cargo-vendor/wasmprinter-0.202.0/src/operator.rs +0 -1131
  873. data/ext/cargo-vendor/wasmprinter-0.202.0/tests/all.rs +0 -279
  874. data/ext/cargo-vendor/wasmtime-20.0.2/.cargo-checksum.json +0 -1
  875. data/ext/cargo-vendor/wasmtime-20.0.2/Cargo.toml +0 -268
  876. data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/code_builder.rs +0 -201
  877. data/ext/cargo-vendor/wasmtime-20.0.2/src/compile/runtime.rs +0 -175
  878. data/ext/cargo-vendor/wasmtime-20.0.2/src/compile.rs +0 -897
  879. data/ext/cargo-vendor/wasmtime-20.0.2/src/config.rs +0 -2695
  880. data/ext/cargo-vendor/wasmtime-20.0.2/src/engine/serialization.rs +0 -849
  881. data/ext/cargo-vendor/wasmtime-20.0.2/src/engine.rs +0 -741
  882. data/ext/cargo-vendor/wasmtime-20.0.2/src/lib.rs +0 -303
  883. data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent/jitdump.rs +0 -66
  884. data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent/perfmap.rs +0 -47
  885. data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent/vtune.rs +0 -80
  886. data/ext/cargo-vendor/wasmtime-20.0.2/src/profiling_agent.rs +0 -105
  887. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/code.rs +0 -102
  888. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/code_memory.rs +0 -335
  889. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/component.rs +0 -661
  890. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/host.rs +0 -439
  891. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/options.rs +0 -554
  892. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func/typed.rs +0 -2484
  893. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/func.rs +0 -747
  894. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/instance.rs +0 -804
  895. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/linker.rs +0 -786
  896. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/matching.rs +0 -217
  897. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/mod.rs +0 -756
  898. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/resource_table.rs +0 -350
  899. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/resources.rs +0 -1133
  900. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/storage.rs +0 -43
  901. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/store.rs +0 -28
  902. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/types.rs +0 -892
  903. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/component/values.rs +0 -978
  904. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/coredump.rs +0 -336
  905. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/debug.rs +0 -165
  906. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/global.rs +0 -300
  907. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals/table.rs +0 -480
  908. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/externals.rs +0 -236
  909. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func/typed.rs +0 -898
  910. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/func.rs +0 -2633
  911. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/anyref.rs +0 -46
  912. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/externref.rs +0 -50
  913. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/disabled/rooting.rs +0 -222
  914. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/anyref.rs +0 -472
  915. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/externref.rs +0 -644
  916. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/i31.rs +0 -345
  917. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc/enabled/rooting.rs +0 -1543
  918. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/gc.rs +0 -87
  919. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instance.rs +0 -992
  920. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/instantiate.rs +0 -345
  921. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/limits.rs +0 -398
  922. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/linker.rs +0 -1521
  923. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/memory.rs +0 -999
  924. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module/registry.rs +0 -354
  925. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/module.rs +0 -1295
  926. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/profiling.rs +0 -224
  927. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/resources.rs +0 -33
  928. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/signatures.rs +0 -216
  929. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/stack.rs +0 -73
  930. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/context.rs +0 -243
  931. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/data.rs +0 -289
  932. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store/func_refs.rs +0 -85
  933. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/store.rs +0 -2796
  934. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/func.rs +0 -138
  935. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/global.rs +0 -68
  936. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/memory.rs +0 -286
  937. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline/table.rs +0 -34
  938. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trampoline.rs +0 -77
  939. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/trap.rs +0 -641
  940. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/type_registry.rs +0 -632
  941. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types/matching.rs +0 -367
  942. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/types.rs +0 -1378
  943. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/unix.rs +0 -39
  944. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/v128.rs +0 -131
  945. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/values.rs +0 -945
  946. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime/windows.rs +0 -34
  947. data/ext/cargo-vendor/wasmtime-20.0.2/src/runtime.rs +0 -112
  948. data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/.cargo-checksum.json +0 -1
  949. data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/Cargo.toml +0 -22
  950. data/ext/cargo-vendor/wasmtime-asm-macros-20.0.2/src/lib.rs +0 -81
  951. data/ext/cargo-vendor/wasmtime-cache-20.0.2/.cargo-checksum.json +0 -1
  952. data/ext/cargo-vendor/wasmtime-cache-20.0.2/Cargo.toml +0 -81
  953. data/ext/cargo-vendor/wasmtime-cache-20.0.2/src/lib.rs +0 -235
  954. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/.cargo-checksum.json +0 -1
  955. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/Cargo.toml +0 -67
  956. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/src/bindgen.rs +0 -390
  957. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/src/component.rs +0 -1295
  958. data/ext/cargo-vendor/wasmtime-component-macro-20.0.2/tests/codegen.rs +0 -342
  959. data/ext/cargo-vendor/wasmtime-component-util-20.0.2/.cargo-checksum.json +0 -1
  960. data/ext/cargo-vendor/wasmtime-component-util-20.0.2/Cargo.toml +0 -25
  961. data/ext/cargo-vendor/wasmtime-component-util-20.0.2/src/lib.rs +0 -180
  962. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/.cargo-checksum.json +0 -1
  963. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/Cargo.toml +0 -114
  964. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler/component.rs +0 -962
  965. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/compiler.rs +0 -1369
  966. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/gc.rs +0 -239
  967. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/attr.rs +0 -345
  968. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/expression.rs +0 -1252
  969. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/line_program.rs +0 -282
  970. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/mod.rs +0 -126
  971. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/unit.rs +0 -522
  972. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/transform/utils.rs +0 -187
  973. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug/write_debuginfo.rs +0 -187
  974. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/debug.rs +0 -18
  975. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/func_environ.rs +0 -2672
  976. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc/enabled.rs +0 -649
  977. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/gc.rs +0 -198
  978. data/ext/cargo-vendor/wasmtime-cranelift-20.0.2/src/lib.rs +0 -505
  979. data/ext/cargo-vendor/wasmtime-environ-20.0.2/.cargo-checksum.json +0 -1
  980. data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.lock +0 -782
  981. data/ext/cargo-vendor/wasmtime-environ-20.0.2/Cargo.toml +0 -144
  982. data/ext/cargo-vendor/wasmtime-environ-20.0.2/examples/factc.rs +0 -205
  983. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/address_map.rs +0 -72
  984. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/mod.rs +0 -389
  985. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/module_artifacts.rs +0 -300
  986. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/compile/trap_encoding.rs +0 -69
  987. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/compiler.rs +0 -19
  988. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/dfg.rs +0 -690
  989. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/info.rs +0 -672
  990. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate/adapt.rs +0 -459
  991. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/translate.rs +0 -965
  992. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/types/resources.rs +0 -234
  993. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component/types.rs +0 -1972
  994. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/component.rs +0 -103
  995. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/demangling.rs +0 -28
  996. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/core_types.rs +0 -24
  997. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/signature.rs +0 -135
  998. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/trampoline.rs +0 -3233
  999. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/transcode.rs +0 -89
  1000. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact/traps.rs +0 -115
  1001. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/fact.rs +0 -711
  1002. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/lib.rs +0 -70
  1003. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module.rs +0 -780
  1004. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_artifacts.rs +0 -145
  1005. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_environ.rs +0 -1288
  1006. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/module_types.rs +0 -122
  1007. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/scopevec.rs +0 -78
  1008. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/stack_map.rs +0 -36
  1009. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/trap_encoding.rs +0 -188
  1010. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/tunables.rs +0 -158
  1011. data/ext/cargo-vendor/wasmtime-environ-20.0.2/src/vmoffsets.rs +0 -952
  1012. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/.cargo-checksum.json +0 -1
  1013. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/Cargo.toml +0 -63
  1014. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/build.rs +0 -26
  1015. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/lib.rs +0 -328
  1016. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/unix.rs +0 -265
  1017. data/ext/cargo-vendor/wasmtime-fiber-20.0.2/src/windows.rs +0 -166
  1018. data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/.cargo-checksum.json +0 -1
  1019. data/ext/cargo-vendor/wasmtime-jit-debug-20.0.2/Cargo.toml +0 -67
  1020. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/.cargo-checksum.json +0 -1
  1021. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/Cargo.toml +0 -47
  1022. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/lib.rs +0 -108
  1023. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/libc.rs +0 -149
  1024. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/miri.rs +0 -10
  1025. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.2/src/win.rs +0 -45
  1026. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/.cargo-checksum.json +0 -1
  1027. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/Cargo.toml +0 -147
  1028. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/build.rs +0 -24
  1029. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/aarch64.rs +0 -76
  1030. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/arch/x86_64.rs +0 -41
  1031. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/async_yield.rs +0 -35
  1032. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component/libcalls.rs +0 -571
  1033. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component/resources.rs +0 -351
  1034. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/component.rs +0 -860
  1035. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/cow.rs +0 -888
  1036. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/debug_builtins.rs +0 -59
  1037. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/export.rs +0 -108
  1038. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/disabled.rs +0 -23
  1039. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/drc.rs +0 -963
  1040. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/externref.rs +0 -115
  1041. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled/free_list.rs +0 -767
  1042. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/enabled.rs +0 -18
  1043. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_ref.rs +0 -486
  1044. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/gc_runtime.rs +0 -503
  1045. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/host_data.rs +0 -81
  1046. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc/i31.rs +0 -86
  1047. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/gc.rs +0 -244
  1048. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/imports.rs +0 -27
  1049. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/on_demand.rs +0 -217
  1050. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/gc_heap_pool.rs +0 -92
  1051. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/index_allocator.rs +0 -704
  1052. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/memory_pool.rs +0 -996
  1053. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/stack_pool.rs +0 -242
  1054. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling/table_pool.rs +0 -231
  1055. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator/pooling.rs +0 -699
  1056. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance/allocator.rs +0 -780
  1057. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/instance.rs +0 -1566
  1058. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/lib.rs +0 -289
  1059. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/libcalls.rs +0 -777
  1060. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/memory.rs +0 -751
  1061. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mmap.rs +0 -214
  1062. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mmap_vec.rs +0 -201
  1063. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/module_id.rs +0 -43
  1064. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/enabled.rs +0 -213
  1065. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/mod.rs +0 -54
  1066. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/pkru.rs +0 -104
  1067. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/mpk/sys.rs +0 -113
  1068. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/send_sync_ptr.rs +0 -106
  1069. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/store_box.rs +0 -35
  1070. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/capi.rs +0 -189
  1071. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/mmap.rs +0 -111
  1072. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/mod.rs +0 -24
  1073. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/traphandlers.rs +0 -55
  1074. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/custom/vm.rs +0 -108
  1075. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/mmap.rs +0 -94
  1076. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/mod.rs +0 -10
  1077. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/miri/traphandlers.rs +0 -47
  1078. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/mod.rs +0 -33
  1079. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/machports.rs +0 -416
  1080. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/mmap.rs +0 -151
  1081. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/mod.rs +0 -21
  1082. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/signals.rs +0 -401
  1083. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/unwind.rs +0 -149
  1084. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/unix/vm.rs +0 -208
  1085. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/mmap.rs +0 -216
  1086. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/mod.rs +0 -6
  1087. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/sys/windows/traphandlers.rs +0 -104
  1088. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/table.rs +0 -851
  1089. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/parking_spot.rs +0 -621
  1090. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory.rs +0 -230
  1091. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/threads/shared_memory_disabled.rs +0 -100
  1092. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/backtrace.rs +0 -265
  1093. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_disabled.rs +0 -16
  1094. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers/coredump_enabled.rs +0 -40
  1095. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/traphandlers.rs +0 -785
  1096. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/vmcontext/vm_host_func_context.rs +0 -137
  1097. data/ext/cargo-vendor/wasmtime-runtime-20.0.2/src/vmcontext.rs +0 -1293
  1098. data/ext/cargo-vendor/wasmtime-slab-20.0.2/.cargo-checksum.json +0 -1
  1099. data/ext/cargo-vendor/wasmtime-slab-20.0.2/Cargo.toml +0 -21
  1100. data/ext/cargo-vendor/wasmtime-slab-20.0.2/src/lib.rs +0 -493
  1101. data/ext/cargo-vendor/wasmtime-types-20.0.2/.cargo-checksum.json +0 -1
  1102. data/ext/cargo-vendor/wasmtime-types-20.0.2/Cargo.toml +0 -36
  1103. data/ext/cargo-vendor/wasmtime-types-20.0.2/src/error.rs +0 -59
  1104. data/ext/cargo-vendor/wasmtime-types-20.0.2/src/lib.rs +0 -832
  1105. data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/.cargo-checksum.json +0 -1
  1106. data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.2/Cargo.toml +0 -32
  1107. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/.cargo-checksum.json +0 -1
  1108. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/Cargo.toml +0 -194
  1109. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/bindings.rs +0 -283
  1110. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/ctx.rs +0 -659
  1111. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/filesystem.rs +0 -433
  1112. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/lib.rs +0 -404
  1113. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview0.rs +0 -879
  1114. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/src/preview1.rs +0 -2601
  1115. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/api.rs +0 -194
  1116. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/async_.rs +0 -397
  1117. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/main.rs +0 -91
  1118. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/preview1.rs +0 -251
  1119. data/ext/cargo-vendor/wasmtime-wasi-20.0.2/tests/all/sync.rs +0 -333
  1120. data/ext/cargo-vendor/wasmtime-winch-20.0.2/.cargo-checksum.json +0 -1
  1121. data/ext/cargo-vendor/wasmtime-winch-20.0.2/Cargo.toml +0 -81
  1122. data/ext/cargo-vendor/wasmtime-winch-20.0.2/src/compiler.rs +0 -257
  1123. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/.cargo-checksum.json +0 -1
  1124. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/Cargo.toml +0 -41
  1125. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/lib.rs +0 -2213
  1126. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.2/src/rust.rs +0 -421
  1127. data/ext/cargo-vendor/wiggle-20.0.2/.cargo-checksum.json +0 -1
  1128. data/ext/cargo-vendor/wiggle-20.0.2/Cargo.toml +0 -122
  1129. data/ext/cargo-vendor/wiggle-generate-20.0.2/.cargo-checksum.json +0 -1
  1130. data/ext/cargo-vendor/wiggle-generate-20.0.2/Cargo.toml +0 -65
  1131. data/ext/cargo-vendor/wiggle-generate-20.0.2/LICENSE +0 -220
  1132. data/ext/cargo-vendor/wiggle-macro-20.0.2/.cargo-checksum.json +0 -1
  1133. data/ext/cargo-vendor/wiggle-macro-20.0.2/Cargo.toml +0 -55
  1134. data/ext/cargo-vendor/wiggle-macro-20.0.2/LICENSE +0 -220
  1135. data/ext/cargo-vendor/winch-codegen-0.18.2/.cargo-checksum.json +0 -1
  1136. data/ext/cargo-vendor/winch-codegen-0.18.2/Cargo.toml +0 -81
  1137. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/context.rs +0 -534
  1138. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/env.rs +0 -435
  1139. data/ext/cargo-vendor/winch-codegen-0.18.2/src/codegen/mod.rs +0 -756
  1140. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/abi.rs +0 -291
  1141. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/address.rs +0 -144
  1142. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/asm.rs +0 -252
  1143. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/masm.rs +0 -573
  1144. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/mod.rs +0 -154
  1145. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/aarch64/regs.rs +0 -149
  1146. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/reg.rs +0 -86
  1147. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/asm.rs +0 -1423
  1148. data/ext/cargo-vendor/winch-codegen-0.18.2/src/isa/x64/masm.rs +0 -1256
  1149. data/ext/cargo-vendor/winch-codegen-0.18.2/src/masm.rs +0 -947
  1150. data/ext/cargo-vendor/winch-codegen-0.18.2/src/regalloc.rs +0 -65
  1151. data/ext/cargo-vendor/winch-codegen-0.18.2/src/regset.rs +0 -194
  1152. data/ext/cargo-vendor/winch-codegen-0.18.2/src/visitor.rs +0 -2149
  1153. data/ext/cargo-vendor/wit-parser-0.202.0/.cargo-checksum.json +0 -1
  1154. data/ext/cargo-vendor/wit-parser-0.202.0/Cargo.toml +0 -101
  1155. data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/resolve.rs +0 -1443
  1156. data/ext/cargo-vendor/wit-parser-0.202.0/src/decoding.rs +0 -1764
  1157. data/ext/cargo-vendor/wit-parser-0.202.0/src/lib.rs +0 -765
  1158. data/ext/cargo-vendor/wit-parser-0.202.0/src/live.rs +0 -111
  1159. data/ext/cargo-vendor/wit-parser-0.202.0/src/resolve.rs +0 -2240
  1160. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple-returns-borrow.wit.json +0 -74
  1161. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-return-borrow.wit.json +0 -69
  1162. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/world-top-level-resources.wit +0 -24
  1163. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/world-top-level-resources.wit.json +0 -240
  1164. data/ext/src/ruby_api/config/tracked_memory_creator.rs +0 -82
  1165. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/LICENSE +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/README.md +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/lib.rs +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/map.rs +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/node.rs +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/path.rs +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/pool.rs +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-bforest-0.107.2 → cranelift-bforest-0.108.1}/src/set.rs +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/LICENSE +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/README.md +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/benches/x64-evex-encoding.rs +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/binemit/mod.rs +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/binemit/stack_map.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/bitset.rs +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/cfg_printer.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/constant_hash.rs +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/cursor.rs +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/data_value.rs +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/dbg.rs +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/dce.rs +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/dominator_tree.rs +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/egraph/cost.rs +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/flowgraph.rs +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/inst_predicates.rs +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/atomic_rmw_op.rs +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/builder.rs +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/condcodes.rs +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/constant.rs +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/dfg.rs +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/dynamic_type.rs +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/entities.rs +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/extfunc.rs +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/extname.rs +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/function.rs +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/globalvalue.rs +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/immediates.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/jumptable.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/known_symbol.rs +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/layout.rs +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/libcall.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/memflags.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/memtype.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/mod.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/pcc.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/progpoint.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/sourceloc.rs +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/stackslot.rs +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/trapcode.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/ir/types.rs +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/inst/unwind.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/inst_neon.isle +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower.isle +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/mod.rs +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/aarch64/settings.rs +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/call_conv.rs +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/encode.rs +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/imms.rs +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst/unwind.rs +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/inst_vector.isle +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/lower.rs +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/mod.rs +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/riscv64/settings.rs +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst/unwind.rs +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/inst.isle +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower/isle.rs +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower.isle +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/lower.rs +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/mod.rs +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/s390x/settings.rs +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/unwind/systemv.rs +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/unwind/winx64.rs +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/unwind.rs +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/evex.rs +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/mod.rs +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/rex.rs +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/encoding/vex.rs +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/emit_state.rs +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/inst/unwind.rs +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/mod.rs +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isa/x64/settings.rs +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/isle_prelude.rs +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/iterators.rs +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/legalizer/globalvalue.rs +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/legalizer/mod.rs +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/loop_analysis.rs +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/buffer.rs +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/compile.rs +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/helpers.rs +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/inst_common.rs +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/machinst/pcc.rs +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/README.md +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/bitops.isle +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/cprop.isle +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/extends.isle +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/generated_code.rs +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/remat.isle +0 -0
  1273. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/selects.isle +0 -0
  1274. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/shifts.isle +0 -0
  1275. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/spaceship.isle +0 -0
  1276. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/spectre.isle +0 -0
  1277. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts/vector.isle +0 -0
  1278. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/opts.rs +0 -0
  1279. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/prelude.isle +0 -0
  1280. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/prelude_lower.isle +0 -0
  1281. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/prelude_opt.isle +0 -0
  1282. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/print_errors.rs +0 -0
  1283. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/result.rs +0 -0
  1284. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/souper_harvest.rs +0 -0
  1285. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/timing.rs +0 -0
  1286. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/unionfind.rs +0 -0
  1287. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/unreachable_code.rs +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/value_label.rs +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/verifier/mod.rs +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-codegen-0.107.2 → cranelift-codegen-0.108.1}/src/write.rs +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/LICENSE +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/README.md +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/formats.rs +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/instructions.rs +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/isa.rs +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/mod.rs +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/operands.rs +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/settings.rs +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/types.rs +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/cdsl/typevar.rs +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/constant_hash.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/error.rs +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/isa/arm64.rs +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/isa/mod.rs +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/isa/s390x.rs +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/entities.rs +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/formats.rs +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/immediates.rs +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/instructions.rs +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/mod.rs +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/shared/types.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.107.2 → cranelift-codegen-meta-0.108.1}/src/unique_table.rs +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/LICENSE +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/README.md +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/src/constant_hash.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/src/constants.rs +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.107.2 → cranelift-codegen-shared-0.108.1}/src/lib.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/LICENSE +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/README.md +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/src/chaos.rs +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/src/lib.rs +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-control-0.107.2 → cranelift-control-0.108.1}/src/zero_sized.rs +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/LICENSE +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/README.md +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/boxed_slice.rs +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/iter.rs +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/keys.rs +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/list.rs +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/map.rs +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/packed_option.rs +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/primary.rs +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/set.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/sparse.rs +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-entity-0.107.2 → cranelift-entity-0.108.1}/src/unsigned.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/LICENSE +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/README.md +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/frontend.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/lib.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/ssa.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-frontend-0.107.2 → cranelift-frontend-0.108.1}/src/variable.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/README.md +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/build.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/bad_converters.isle +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/error1.isle +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/extra_parens.isle +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/impure_expression.isle +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/impure_rhs.isle +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/fail/multi_prio.isle +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/borrows.isle +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/borrows_main.rs +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/iflets.isle +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/iflets_main.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_constructor.isle +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_constructor_main.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_extractor.isle +0 -0
  1359. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/multi_extractor_main.rs +0 -0
  1360. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/test.isle +0 -0
  1361. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/link/test_main.rs +0 -0
  1362. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/bound_var.isle +0 -0
  1363. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/construct_and_extract.isle +0 -0
  1364. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/conversions.isle +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/conversions_extern.isle +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/let.isle +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/nodebug.isle +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/test2.isle +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/test3.isle +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/test4.isle +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/pass/tutorial.isle +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/iconst.isle +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/iconst_main.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/let_shadowing.isle +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/isle_examples/run/let_shadowing_main.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/ast.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/compile.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/error.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/lexer.rs +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/log.rs +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/overlap.rs +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/src/parser.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-isle-0.107.2 → cranelift-isle-0.108.1}/tests/run_tests.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/LICENSE +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/README.md +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/src/lib.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-native-0.107.2 → cranelift-native-0.108.1}/src/riscv.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/LICENSE +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/README.md +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/code_translator/bounds_checks.rs +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/environ/mod.rs +0 -0
  1393. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/func_translator.rs +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/heap.rs +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/lib.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/module_translator.rs +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/state.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/table.rs +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-wasm-0.107.2 → cranelift-wasm-0.108.1}/src/translation_utils.rs +0 -0
  1400. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/README.md +0 -0
  1401. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/src/clocks.rs +0 -0
  1402. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/src/lib.rs +0 -0
  1403. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/src/noop_scheduler.rs +0 -0
  1404. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/clocks.rs +0 -0
  1405. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/common/mod.rs +0 -0
  1406. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/random.rs +0 -0
  1407. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.21 → deterministic-wasi-ctx-0.1.22}/tests/scheduler.rs +0 -0
  1408. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/LICENSE-APACHE +0 -0
  1409. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/LICENSE-MIT +0 -0
  1410. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/bin/release.sh +0 -0
  1411. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/build/features.rs +0 -0
  1412. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/build/version.rs +0 -0
  1413. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/readme.md +0 -0
  1414. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/hidden.rs +0 -0
  1415. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/lib.rs +0 -0
  1416. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/macros.rs +0 -0
  1417. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/memory.rs +0 -0
  1418. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/ruby_abi_version.rs +0 -0
  1419. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/special_consts.rs +0 -0
  1420. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/compiled.c +0 -0
  1421. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/compiled.rs +0 -0
  1422. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_2_6.rs +0 -0
  1423. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_2_7.rs +0 -0
  1424. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_0.rs +0 -0
  1425. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_1.rs +0 -0
  1426. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_2.rs +0 -0
  1427. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api/ruby_3_3.rs +0 -0
  1428. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/stable_api.rs +0 -0
  1429. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/symbol.rs +0 -0
  1430. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/utils.rs +0 -0
  1431. /data/ext/cargo-vendor/{rb-sys-0.9.97 → rb-sys-0.9.100}/src/value_type.rs +0 -0
  1432. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/LICENSE-APACHE +0 -0
  1433. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/LICENSE-MIT +0 -0
  1434. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/bindings/sanitizer.rs +0 -0
  1435. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/bindings/wrapper.h +0 -0
  1436. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/lib.rs +0 -0
  1437. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config/flags.rs +0 -0
  1438. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config/library.rs +0 -0
  1439. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config/search_path.rs +0 -0
  1440. /data/ext/cargo-vendor/{rb-sys-build-0.9.97 → rb-sys-build-0.9.100}/src/rb_config.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/LICENSE +0 -0
  1442. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/README.md +0 -0
  1443. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/clocks.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/ctx.rs +0 -0
  1445. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/dir.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/error.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/file.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/lib.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/pipe.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/random.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sched/subscription.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sched.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/mod.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/preview_0.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/preview_1/error.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/snapshots/preview_1.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/string_array.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/clocks.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/dir.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/file.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/mod.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/net.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/sched/unix.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/sched/windows.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/sched.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/sync/stdio.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/table.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/dir.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/file.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/mod.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/net.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/sched/unix.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/sched/windows.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/sched.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/src/tokio/stdio.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview0/typenames.witx +0 -0
  1477. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview0/wasi_unstable.witx +0 -0
  1478. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview1/typenames.witx +0 -0
  1479. /data/ext/cargo-vendor/{wasi-common-20.0.2 → wasi-common-21.0.1}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1480. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/LICENSE +0 -0
  1481. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/README.md +0 -0
  1482. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/aliases.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/builder.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/canonicals.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/components.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/exports.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/imports.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/instances.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/modules.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/names.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/start.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component/types.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/component.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/custom.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/dump.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/exports.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/functions.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/linking.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/names.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/producers.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/start.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core/tags.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/core.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/lib.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasm-encoder-0.202.0 → wasm-encoder-0.207.0}/src/raw.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/README.md +0 -0
  1507. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/benches/benchmark.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/examples/simple.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component/aliases.rs +0 -0
  1510. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component/exports.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component/imports.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/component.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/branch_hinting.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/exports.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/functions.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/imports.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/init.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/producers.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/src/readers/core/tags.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmparser-0.207.0}/tests/big-module.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmparser-0.202.0 → wasmprinter-0.207.0}/LICENSE +0 -0
  1522. /data/ext/cargo-vendor/{wasmprinter-0.202.0 → wasmprinter-0.207.0}/README.md +0 -0
  1523. /data/ext/cargo-vendor/{wasmprinter-0.202.0 → wasmtime-21.0.1}/LICENSE +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/README.md +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/proptest-regressions → wasmtime-21.0.1/proptest-regressions/runtime/vm}/instance/allocator/pooling/memory_pool.txt +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/gc/disabled/i31.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/gc/disabled.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/gc/enabled.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-21.0.1}/src/runtime/uninhabited.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/mod.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/riscv64.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/s390x.S +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/arch/s390x.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/helpers.c +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/mpk/disabled.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/custom/unwind.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/miri/unwind.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/miri/vm.rs +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/unix/macos_traphandlers.rs +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/windows/unwind.rs +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/sys/windows/vm.rs +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2/src → wasmtime-21.0.1/src/runtime/vm}/threads/mod.rs +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-20.0.2 → wasmtime-cache-21.0.1}/LICENSE +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/build.rs +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/config/tests.rs +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/config.rs +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/tests.rs +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/worker/tests/system_time_stub.rs +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/worker/tests.rs +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/src/worker.rs +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cache-21.0.1}/tests/cache_write_default_config.rs +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/build.rs +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/src/lib.rs +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/char.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/conventions.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/dead-code.wit +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/direct-import.wit +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/empty.wit +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/flags.wit +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/floats.wit +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/function-new.wit +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/integers.wit +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/lists.wit +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/many-arguments.wit +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multi-return.wit +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/multiversion/root.wit +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/records.wit +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/rename.wit +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/resources-export.wit +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/resources-import.wit +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/share-types.wit +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/simple-functions.wit +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/simple-lists.wit +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/simple-wasi.wit +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/small-anonymous.wit +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/smoke-default.wit +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/smoke-export.wit +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/smoke.wit +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/strings.wit +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/unversioned-foo.wit +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/use-paths.wit +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/variants.wit +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/wat.wit +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-component-macro-20.0.2 → wasmtime-component-macro-21.0.1}/tests/codegen/worlds-with-types.wit +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-cache-20.0.2 → wasmtime-cranelift-21.0.1}/LICENSE +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/SECURITY.md +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/builder.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/compiled_function.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/address_transform.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/range_info_builder.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/refs.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/debug/transform/simulate.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/gc/disabled.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/isa_builder.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-cranelift-21.0.1}/src/obj.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-cranelift-20.0.2 → wasmtime-environ-21.0.1}/LICENSE +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/address_map.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/builtin.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/component/artifacts.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/component/translate/inline.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/component/vmcomponent_offsets.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/gc.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/obj.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-environ-21.0.1}/src/ref_bits.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-environ-20.0.2 → wasmtime-fiber-21.0.1}/LICENSE +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/aarch64.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/arm.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/riscv64.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/s390x.S +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/x86.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/unix/x86_64.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-fiber-21.0.1}/src/windows.c +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/README.md +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/src/gdb_jit_int.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/src/lib.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-jit-debug-20.0.2 → wasmtime-jit-debug-21.0.1}/src/perf_jitdump.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-fiber-20.0.2 → wasmtime-types-21.0.1}/LICENSE +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-20.0.2 → wasmtime-versioned-export-macros-21.0.1}/src/lib.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-runtime-20.0.2 → wasmtime-wasi-21.0.1}/LICENSE +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/README.md +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/clocks/host.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/clocks.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/error.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/clocks.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/env.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/exit.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/filesystem/sync.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/filesystem.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/instance_network.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/io.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/mod.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/network.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/random.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/tcp.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/tcp_create_socket.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/udp.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/host/udp_create_socket.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/ip_name_lookup.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/network.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/pipe.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/poll.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/random.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/runtime.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/stdio/worker_thread_stdin.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/stdio.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/stream.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/tcp.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/udp.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/src/write_stream.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/tests/process_stdin.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/command-extended.wit +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/command.wit +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/environment.wit +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/exit.wit +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/imports.wit +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/run.wit +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/stdio.wit +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/cli/terminal.wit +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/clocks/wall-clock.wit +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/clocks/world.wit +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/filesystem/preopens.wit +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/filesystem/types.wit +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/filesystem/world.wit +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/http/handler.wit +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/http/proxy.wit +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/http/types.wit +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/error.wit +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/poll.wit +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/streams.wit +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/io/world.wit +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/insecure-seed.wit +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/insecure.wit +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/random.wit +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/random/world.wit +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/instance-network.wit +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/network.wit +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/tcp.wit +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/udp.wit +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/deps/sockets/world.wit +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/wit/test.wit +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview0/typenames.witx +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview0/wasi_unstable.witx +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview1/typenames.witx +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wasmtime-wasi-21.0.1}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-winch-20.0.2 → wasmtime-winch-21.0.1}/LICENSE +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-winch-20.0.2 → wasmtime-winch-21.0.1}/src/builder.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-winch-20.0.2 → wasmtime-winch-21.0.1}/src/lib.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-20.0.2 → wasmtime-wit-bindgen-21.0.1}/src/source.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-20.0.2 → wasmtime-wit-bindgen-21.0.1}/src/types.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-types-20.0.2 → wiggle-21.0.1}/LICENSE +0 -0
  1697. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/README.md +0 -0
  1698. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/borrow.rs +0 -0
  1699. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/error.rs +0 -0
  1700. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/guest_type.rs +0 -0
  1701. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/lib.rs +0 -0
  1702. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/region.rs +0 -0
  1703. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-21.0.1}/src/wasmtime.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-wasi-20.0.2 → wiggle-generate-21.0.1}/LICENSE +0 -0
  1705. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/README.md +0 -0
  1706. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/codegen_settings.rs +0 -0
  1707. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/config.rs +0 -0
  1708. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/funcs.rs +0 -0
  1709. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/lib.rs +0 -0
  1710. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/lifetimes.rs +0 -0
  1711. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/module_trait.rs +0 -0
  1712. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/names.rs +0 -0
  1713. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/error.rs +0 -0
  1714. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/flags.rs +0 -0
  1715. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/handle.rs +0 -0
  1716. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/mod.rs +0 -0
  1717. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/record.rs +0 -0
  1718. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/types/variant.rs +0 -0
  1719. /data/ext/cargo-vendor/{wiggle-generate-20.0.2 → wiggle-generate-21.0.1}/src/wasmtime.rs +0 -0
  1720. /data/ext/cargo-vendor/{wiggle-20.0.2 → wiggle-macro-21.0.1}/LICENSE +0 -0
  1721. /data/ext/cargo-vendor/{wiggle-macro-20.0.2 → wiggle-macro-21.0.1}/src/lib.rs +0 -0
  1722. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/LICENSE +0 -0
  1723. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/build.rs +0 -0
  1724. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/abi/local.rs +0 -0
  1725. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/abi/mod.rs +0 -0
  1726. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/bounds.rs +0 -0
  1727. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/builtin.rs +0 -0
  1728. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/call.rs +0 -0
  1729. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/codegen/control.rs +0 -0
  1730. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/frame/mod.rs +0 -0
  1731. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/mod.rs +0 -0
  1732. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/abi.rs +0 -0
  1733. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/address.rs +0 -0
  1734. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/mod.rs +0 -0
  1735. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/isa/x64/regs.rs +0 -0
  1736. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{winch-codegen-0.18.2 → winch-codegen-0.19.1}/src/stack.rs +0 -0
  1738. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/README.md +0 -0
  1739. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/abi.rs +0 -0
  1740. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/ast/lex.rs +0 -0
  1741. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/ast/toposort.rs +0 -0
  1742. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/ast.rs +0 -0
  1743. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/docs.rs +0 -0
  1744. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/serde_.rs +0 -0
  1745. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/src/sizealign.rs +0 -0
  1746. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/all.rs +0 -0
  1747. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/comments.wit +0 -0
  1748. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/comments.wit.json +0 -0
  1749. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  1750. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  1751. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include/root.wit +0 -0
  1752. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/complex-include.wit.json +0 -0
  1753. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  1754. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/cross-package-resource/foo.wit +0 -0
  1755. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/cross-package-resource.wit.json +0 -0
  1756. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  1757. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  1758. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1/join.wit +0 -0
  1759. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/diamond1.wit.json +0 -0
  1760. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  1761. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  1762. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
  1763. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
  1764. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/empty.wit +0 -0
  1765. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/empty.wit.json +0 -0
  1766. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  1767. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  1768. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  1769. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  1770. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  1771. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  1772. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  1773. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps/root.wit +0 -0
  1774. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  1775. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  1776. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  1777. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  1778. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  1779. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  1780. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  1781. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  1782. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union/root.wit +0 -0
  1783. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps-union.wit.json +0 -0
  1784. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/foreign-deps.wit.json +0 -0
  1785. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/functions.wit +0 -0
  1786. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/functions.wit.json +0 -0
  1787. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  1788. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  1789. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps/world.wit +0 -0
  1790. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/ignore-files-deps.wit.json +0 -0
  1791. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap1.wit +0 -0
  1792. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap1.wit.json +0 -0
  1793. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap2.wit +0 -0
  1794. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/import-export-overlap2.wit.json +0 -0
  1795. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/include-reps.wit +0 -0
  1796. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/include-reps.wit.json +0 -0
  1797. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kebab-name-include-with.wit +0 -0
  1798. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
  1799. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/a.wit +0 -0
  1800. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
  1801. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
  1802. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
  1803. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
  1804. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/kinds-of-deps.wit.json +0 -0
  1805. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/many-names/a.wit +0 -0
  1806. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/many-names/b.wit +0 -0
  1807. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/many-names.wit.json +0 -0
  1808. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/bar.wit +0 -0
  1809. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/cycle-a.wit +0 -0
  1810. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/cycle-b.wit +0 -0
  1811. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file/foo.wit +0 -0
  1812. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/multi-file.wit.json +0 -0
  1813. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  1814. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  1815. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  1816. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax1.wit +0 -0
  1817. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax1.wit.json +0 -0
  1818. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax3.wit +0 -0
  1819. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax3.wit.json +0 -0
  1820. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax4.wit +0 -0
  1821. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/package-syntax4.wit.json +0 -0
  1822. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  1823. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  1824. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/async.wit.result +0 -0
  1825. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  1826. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function.wit +0 -0
  1827. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  1828. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
  1829. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  1830. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
  1831. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  1832. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
  1833. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  1834. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
  1835. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  1836. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  1837. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  1838. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  1839. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  1840. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  1841. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  1842. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  1843. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  1844. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  1845. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  1846. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  1847. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  1848. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  1849. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  1850. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  1851. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  1852. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  1853. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  1854. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  1855. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  1856. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  1857. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  1858. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  1859. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  1860. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  1861. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  1862. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  1863. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  1864. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  1865. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  1866. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  1867. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  1868. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  1869. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  1870. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  1871. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  1872. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  1873. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  1874. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  1875. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  1876. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  1877. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  1878. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  1879. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  1880. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  1881. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  1882. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  1883. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  1884. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  1885. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  1886. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  1887. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  1888. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  1889. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  1890. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  1891. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle.wit +0 -0
  1892. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
  1893. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle2.wit +0 -0
  1894. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  1895. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle3.wit +0 -0
  1896. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  1897. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle4.wit +0 -0
  1898. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  1899. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle5.wit +0 -0
  1900. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  1901. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  1902. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  1903. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  1904. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  1905. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  1906. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  1907. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  1908. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  1909. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  1910. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  1911. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  1912. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  1913. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  1914. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
  1915. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  1916. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  1917. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  1918. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/export-twice.wit +0 -0
  1919. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  1920. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  1921. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  1922. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  1923. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  1924. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  1925. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  1926. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  1927. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  1928. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  1929. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  1930. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-twice.wit +0 -0
  1931. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  1932. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
  1933. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  1934. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  1935. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  1936. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  1937. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
  1938. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  1939. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  1940. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  1941. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  1942. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  1943. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  1944. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  1945. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  1946. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  1947. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  1948. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  1949. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  1950. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  1951. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/keyword.wit +0 -0
  1952. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  1953. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/missing-package.wit +0 -0
  1954. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  1955. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  1956. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  1957. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
  1958. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  1959. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  1960. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  1961. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  1962. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  1963. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  1964. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  1965. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  1966. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  1967. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  1968. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  1969. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  1970. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  1971. /data/ext/cargo-vendor/{wit-parser-0.202.0/tests/ui → wit-parser-0.207.0/tests/ui/parse-fail}/resources-multiple-returns-borrow.wit +0 -0
  1972. /data/ext/cargo-vendor/{wit-parser-0.202.0/tests/ui → wit-parser-0.207.0/tests/ui/parse-fail}/resources-return-borrow.wit +0 -0
  1973. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  1974. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  1975. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  1976. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  1977. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  1978. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  1979. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  1980. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  1981. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  1982. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  1983. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  1984. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  1985. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  1986. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  1987. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  1988. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  1989. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  1990. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  1991. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  1992. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  1993. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  1994. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  1995. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  1996. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  1997. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  1998. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  1999. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2000. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2001. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2002. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2003. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2004. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2005. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2006. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2007. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2008. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2009. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2010. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2011. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2012. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2013. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2014. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2015. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2016. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2017. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2018. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2019. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2020. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2021. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2022. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2023. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2024. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2025. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2026. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2027. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2028. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2029. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2030. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2031. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2032. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/random.wit +0 -0
  2033. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/random.wit.json +0 -0
  2034. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-empty.wit +0 -0
  2035. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-empty.wit.json +0 -0
  2036. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2037. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2038. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple.wit +0 -0
  2039. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-multiple.wit.json +0 -0
  2040. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-return-own.wit +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources-return-own.wit.json +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources.wit +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources.wit.json +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources1.wit +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/resources1.wit.json +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/same-name-import-export.wit +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/same-name-import-export.wit.json +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/shared-types.wit +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/shared-types.wit.json +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/simple-wasm-text.wat +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/simple-wasm-text.wit.json +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/stress-export-elaborate.wit +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/type-then-eof.wit +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/type-then-eof.wit.json +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/types.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/types.wit.json +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-1.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-1.wit.json +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-2.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/union-fuzz-2.wit.json +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use-chain.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use-chain.wit.json +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use.wit +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/use.wit.json +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions/foo.wit +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/versions.wit.json +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/wasi.wit +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/wasi.wit.json +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-diamond.wit +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-diamond.wit.json +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-iface-no-collide.wit +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import1.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import1.wit.json +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import2.wit +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import2.wit.json +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import3.wit +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-implicit-import3.wit.json +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-same-fields4.wit +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-same-fields4.wit.json +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-top-level-funcs.wit +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-union-dedup.wit +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-with-types.wit +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.202.0 → wit-parser-0.207.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -0,0 +1,3094 @@
1
+ //! This module defines aarch64-specific machine instruction types.
2
+
3
+ use crate::binemit::{Addend, CodeOffset, Reloc};
4
+ use crate::ir::types::{F32, F64, I128, I16, I32, I64, I8, I8X16, R32, R64};
5
+ use crate::ir::{types, ExternalName, MemFlags, Opcode, Type};
6
+ use crate::isa::{CallConv, FunctionAlignment};
7
+ use crate::machinst::*;
8
+ use crate::{settings, CodegenError, CodegenResult};
9
+
10
+ use crate::machinst::{PrettyPrint, Reg, RegClass, Writable};
11
+
12
+ use alloc::vec::Vec;
13
+ use regalloc2::PRegSet;
14
+ use smallvec::{smallvec, SmallVec};
15
+ use std::fmt::Write;
16
+ use std::string::{String, ToString};
17
+
18
+ pub(crate) mod regs;
19
+ pub(crate) use self::regs::*;
20
+ pub mod imms;
21
+ pub use self::imms::*;
22
+ pub mod args;
23
+ pub use self::args::*;
24
+ pub mod emit;
25
+ pub(crate) use self::emit::*;
26
+ use crate::isa::aarch64::abi::AArch64MachineDeps;
27
+
28
+ pub(crate) mod unwind;
29
+
30
+ #[cfg(test)]
31
+ mod emit_tests;
32
+
33
+ //=============================================================================
34
+ // Instructions (top level): definition
35
+
36
+ pub use crate::isa::aarch64::lower::isle::generated_code::{
37
+ ALUOp, ALUOp3, AMode, APIKey, AtomicRMWLoopOp, AtomicRMWOp, BitOp, BranchTargetType, FPUOp1,
38
+ FPUOp2, FPUOp3, FpuRoundMode, FpuToIntOp, IntToFpuOp, MInst as Inst, MoveWideOp, VecALUModOp,
39
+ VecALUOp, VecExtendOp, VecLanesOp, VecMisc2, VecPairOp, VecRRLongOp, VecRRNarrowOp,
40
+ VecRRPairLongOp, VecRRRLongModOp, VecRRRLongOp, VecShiftImmModOp, VecShiftImmOp,
41
+ };
42
+
43
+ /// A floating-point unit (FPU) operation with two args, a register and an immediate.
44
+ #[derive(Copy, Clone, Debug)]
45
+ pub enum FPUOpRI {
46
+ /// Unsigned right shift. Rd = Rn << #imm
47
+ UShr32(FPURightShiftImm),
48
+ /// Unsigned right shift. Rd = Rn << #imm
49
+ UShr64(FPURightShiftImm),
50
+ }
51
+
52
+ /// A floating-point unit (FPU) operation with two args, a register and
53
+ /// an immediate that modifies its dest (so takes that input value as a
54
+ /// separate virtual register).
55
+ #[derive(Copy, Clone, Debug)]
56
+ pub enum FPUOpRIMod {
57
+ /// Shift left and insert. Rd |= Rn << #imm
58
+ Sli32(FPULeftShiftImm),
59
+ /// Shift left and insert. Rd |= Rn << #imm
60
+ Sli64(FPULeftShiftImm),
61
+ }
62
+
63
+ impl BitOp {
64
+ /// Get the assembly mnemonic for this opcode.
65
+ pub fn op_str(&self) -> &'static str {
66
+ match self {
67
+ BitOp::RBit => "rbit",
68
+ BitOp::Clz => "clz",
69
+ BitOp::Cls => "cls",
70
+ BitOp::Rev16 => "rev16",
71
+ BitOp::Rev32 => "rev32",
72
+ BitOp::Rev64 => "rev64",
73
+ }
74
+ }
75
+ }
76
+
77
+ /// Additional information for (direct) Call instructions, left out of line to lower the size of
78
+ /// the Inst enum.
79
+ #[derive(Clone, Debug)]
80
+ pub struct CallInfo {
81
+ /// Call destination.
82
+ pub dest: ExternalName,
83
+ /// Arguments to the call instruction.
84
+ pub uses: CallArgList,
85
+ /// Return values from the call instruction.
86
+ pub defs: CallRetList,
87
+ /// Clobbers register set.
88
+ pub clobbers: PRegSet,
89
+ /// Instruction opcode.
90
+ pub opcode: Opcode,
91
+ /// Caller calling convention.
92
+ pub caller_callconv: CallConv,
93
+ /// Callee calling convention.
94
+ pub callee_callconv: CallConv,
95
+ /// The number of bytes that the callee will pop from the stack for the
96
+ /// caller, if any. (Used for popping stack arguments with the `tail`
97
+ /// calling convention.)
98
+ pub callee_pop_size: u32,
99
+ }
100
+
101
+ /// Additional information for CallInd instructions, left out of line to lower the size of the Inst
102
+ /// enum.
103
+ #[derive(Clone, Debug)]
104
+ pub struct CallIndInfo {
105
+ /// Function pointer for indirect call.
106
+ pub rn: Reg,
107
+ /// Arguments to the call instruction.
108
+ pub uses: SmallVec<[CallArgPair; 8]>,
109
+ /// Return values from the call instruction.
110
+ pub defs: SmallVec<[CallRetPair; 8]>,
111
+ /// Clobbers register set.
112
+ pub clobbers: PRegSet,
113
+ /// Instruction opcode.
114
+ pub opcode: Opcode,
115
+ /// Caller calling convention.
116
+ pub caller_callconv: CallConv,
117
+ /// Callee calling convention.
118
+ pub callee_callconv: CallConv,
119
+ /// The number of bytes that the callee will pop from the stack for the
120
+ /// caller, if any. (Used for popping stack arguments with the `tail`
121
+ /// calling convention.)
122
+ pub callee_pop_size: u32,
123
+ }
124
+
125
+ /// Additional information for `return_call[_ind]` instructions, left out of
126
+ /// line to lower the size of the `Inst` enum.
127
+ #[derive(Clone, Debug)]
128
+ pub struct ReturnCallInfo {
129
+ /// Arguments to the call instruction.
130
+ pub uses: CallArgList,
131
+ /// Instruction opcode.
132
+ pub opcode: Opcode,
133
+ /// The size of the new stack frame's stack arguments. This is necessary
134
+ /// for copying the frame over our current frame. It must already be
135
+ /// allocated on the stack.
136
+ pub new_stack_arg_size: u32,
137
+ /// API key to use to restore the return address, if any.
138
+ pub key: Option<APIKey>,
139
+ }
140
+
141
+ fn count_zero_half_words(mut value: u64, num_half_words: u8) -> usize {
142
+ let mut count = 0;
143
+ for _ in 0..num_half_words {
144
+ if value & 0xffff == 0 {
145
+ count += 1;
146
+ }
147
+ value >>= 16;
148
+ }
149
+
150
+ count
151
+ }
152
+
153
+ #[test]
154
+ fn inst_size_test() {
155
+ // This test will help with unintentionally growing the size
156
+ // of the Inst enum.
157
+ assert_eq!(32, std::mem::size_of::<Inst>());
158
+ }
159
+
160
+ impl Inst {
161
+ /// Create an instruction that loads a constant, using one of serveral options (MOVZ, MOVN,
162
+ /// logical immediate, or constant pool).
163
+ pub fn load_constant<F: FnMut(Type) -> Writable<Reg>>(
164
+ rd: Writable<Reg>,
165
+ value: u64,
166
+ alloc_tmp: &mut F,
167
+ ) -> SmallVec<[Inst; 4]> {
168
+ // NB: this is duplicated in `lower/isle.rs` and `inst.isle` right now,
169
+ // if modifications are made here before this is deleted after moving to
170
+ // ISLE then those locations should be updated as well.
171
+
172
+ if let Some(imm) = MoveWideConst::maybe_from_u64(value) {
173
+ // 16-bit immediate (shifted by 0, 16, 32 or 48 bits) in MOVZ
174
+ smallvec![Inst::MovWide {
175
+ op: MoveWideOp::MovZ,
176
+ rd,
177
+ imm,
178
+ size: OperandSize::Size64
179
+ }]
180
+ } else if let Some(imm) = MoveWideConst::maybe_from_u64(!value) {
181
+ // 16-bit immediate (shifted by 0, 16, 32 or 48 bits) in MOVN
182
+ smallvec![Inst::MovWide {
183
+ op: MoveWideOp::MovN,
184
+ rd,
185
+ imm,
186
+ size: OperandSize::Size64
187
+ }]
188
+ } else if let Some(imml) = ImmLogic::maybe_from_u64(value, I64) {
189
+ // Weird logical-instruction immediate in ORI using zero register
190
+ smallvec![Inst::AluRRImmLogic {
191
+ alu_op: ALUOp::Orr,
192
+ size: OperandSize::Size64,
193
+ rd,
194
+ rn: zero_reg(),
195
+ imml,
196
+ }]
197
+ } else {
198
+ let mut insts = smallvec![];
199
+
200
+ // If the top 32 bits are zero, use 32-bit `mov` operations.
201
+ let (num_half_words, size, negated) = if value >> 32 == 0 {
202
+ (2, OperandSize::Size32, (!value << 32) >> 32)
203
+ } else {
204
+ (4, OperandSize::Size64, !value)
205
+ };
206
+
207
+ // If the number of 0xffff half words is greater than the number of 0x0000 half words
208
+ // it is more efficient to use `movn` for the first instruction.
209
+ let first_is_inverted = count_zero_half_words(negated, num_half_words)
210
+ > count_zero_half_words(value, num_half_words);
211
+
212
+ // Either 0xffff or 0x0000 half words can be skipped, depending on the first
213
+ // instruction used.
214
+ let ignored_halfword = if first_is_inverted { 0xffff } else { 0 };
215
+
216
+ let halfwords: SmallVec<[_; 4]> = (0..num_half_words)
217
+ .filter_map(|i| {
218
+ let imm16 = (value >> (16 * i)) & 0xffff;
219
+ if imm16 == ignored_halfword {
220
+ None
221
+ } else {
222
+ Some((i, imm16))
223
+ }
224
+ })
225
+ .collect();
226
+
227
+ let mut prev_result = None;
228
+ let last_index = halfwords.last().unwrap().0;
229
+ for (i, imm16) in halfwords {
230
+ let shift = i * 16;
231
+ let rd = if i == last_index { rd } else { alloc_tmp(I16) };
232
+
233
+ if let Some(rn) = prev_result {
234
+ let imm = MoveWideConst::maybe_with_shift(imm16 as u16, shift).unwrap();
235
+ insts.push(Inst::MovK { rd, rn, imm, size });
236
+ } else {
237
+ if first_is_inverted {
238
+ let imm =
239
+ MoveWideConst::maybe_with_shift(((!imm16) & 0xffff) as u16, shift)
240
+ .unwrap();
241
+ insts.push(Inst::MovWide {
242
+ op: MoveWideOp::MovN,
243
+ rd,
244
+ imm,
245
+ size,
246
+ });
247
+ } else {
248
+ let imm = MoveWideConst::maybe_with_shift(imm16 as u16, shift).unwrap();
249
+ insts.push(Inst::MovWide {
250
+ op: MoveWideOp::MovZ,
251
+ rd,
252
+ imm,
253
+ size,
254
+ });
255
+ }
256
+ }
257
+
258
+ prev_result = Some(rd.to_reg());
259
+ }
260
+
261
+ assert!(prev_result.is_some());
262
+
263
+ insts
264
+ }
265
+ }
266
+
267
+ /// Generic constructor for a load (zero-extending where appropriate).
268
+ pub fn gen_load(into_reg: Writable<Reg>, mem: AMode, ty: Type, flags: MemFlags) -> Inst {
269
+ match ty {
270
+ I8 => Inst::ULoad8 {
271
+ rd: into_reg,
272
+ mem,
273
+ flags,
274
+ },
275
+ I16 => Inst::ULoad16 {
276
+ rd: into_reg,
277
+ mem,
278
+ flags,
279
+ },
280
+ I32 | R32 => Inst::ULoad32 {
281
+ rd: into_reg,
282
+ mem,
283
+ flags,
284
+ },
285
+ I64 | R64 => Inst::ULoad64 {
286
+ rd: into_reg,
287
+ mem,
288
+ flags,
289
+ },
290
+ F32 => Inst::FpuLoad32 {
291
+ rd: into_reg,
292
+ mem,
293
+ flags,
294
+ },
295
+ F64 => Inst::FpuLoad64 {
296
+ rd: into_reg,
297
+ mem,
298
+ flags,
299
+ },
300
+ _ => {
301
+ if ty.is_vector() {
302
+ let bits = ty_bits(ty);
303
+ let rd = into_reg;
304
+
305
+ if bits == 128 {
306
+ Inst::FpuLoad128 { rd, mem, flags }
307
+ } else {
308
+ assert_eq!(bits, 64);
309
+ Inst::FpuLoad64 { rd, mem, flags }
310
+ }
311
+ } else {
312
+ unimplemented!("gen_load({})", ty);
313
+ }
314
+ }
315
+ }
316
+ }
317
+
318
+ /// Generic constructor for a store.
319
+ pub fn gen_store(mem: AMode, from_reg: Reg, ty: Type, flags: MemFlags) -> Inst {
320
+ match ty {
321
+ I8 => Inst::Store8 {
322
+ rd: from_reg,
323
+ mem,
324
+ flags,
325
+ },
326
+ I16 => Inst::Store16 {
327
+ rd: from_reg,
328
+ mem,
329
+ flags,
330
+ },
331
+ I32 | R32 => Inst::Store32 {
332
+ rd: from_reg,
333
+ mem,
334
+ flags,
335
+ },
336
+ I64 | R64 => Inst::Store64 {
337
+ rd: from_reg,
338
+ mem,
339
+ flags,
340
+ },
341
+ F32 => Inst::FpuStore32 {
342
+ rd: from_reg,
343
+ mem,
344
+ flags,
345
+ },
346
+ F64 => Inst::FpuStore64 {
347
+ rd: from_reg,
348
+ mem,
349
+ flags,
350
+ },
351
+ _ => {
352
+ if ty.is_vector() {
353
+ let bits = ty_bits(ty);
354
+ let rd = from_reg;
355
+
356
+ if bits == 128 {
357
+ Inst::FpuStore128 { rd, mem, flags }
358
+ } else {
359
+ assert_eq!(bits, 64);
360
+ Inst::FpuStore64 { rd, mem, flags }
361
+ }
362
+ } else {
363
+ unimplemented!("gen_store({})", ty);
364
+ }
365
+ }
366
+ }
367
+ }
368
+
369
+ /// What type does this load or store instruction access in memory? When
370
+ /// uimm12 encoding is used, the size of this type is the amount that
371
+ /// immediate offsets are scaled by.
372
+ pub fn mem_type(&self) -> Option<Type> {
373
+ match self {
374
+ Inst::ULoad8 { .. } => Some(I8),
375
+ Inst::SLoad8 { .. } => Some(I8),
376
+ Inst::ULoad16 { .. } => Some(I16),
377
+ Inst::SLoad16 { .. } => Some(I16),
378
+ Inst::ULoad32 { .. } => Some(I32),
379
+ Inst::SLoad32 { .. } => Some(I32),
380
+ Inst::ULoad64 { .. } => Some(I64),
381
+ Inst::FpuLoad32 { .. } => Some(F32),
382
+ Inst::FpuLoad64 { .. } => Some(F64),
383
+ Inst::FpuLoad128 { .. } => Some(I8X16),
384
+ Inst::Store8 { .. } => Some(I8),
385
+ Inst::Store16 { .. } => Some(I16),
386
+ Inst::Store32 { .. } => Some(I32),
387
+ Inst::Store64 { .. } => Some(I64),
388
+ Inst::FpuStore32 { .. } => Some(F32),
389
+ Inst::FpuStore64 { .. } => Some(F64),
390
+ Inst::FpuStore128 { .. } => Some(I8X16),
391
+ _ => None,
392
+ }
393
+ }
394
+ }
395
+
396
+ //=============================================================================
397
+ // Instructions: get_regs
398
+
399
+ fn memarg_operands(memarg: &mut AMode, collector: &mut impl OperandVisitor) {
400
+ // This should match `AMode::with_allocs()`.
401
+ match memarg {
402
+ AMode::Unscaled { rn, .. } | AMode::UnsignedOffset { rn, .. } => {
403
+ collector.reg_use(rn);
404
+ }
405
+ AMode::RegReg { rn, rm, .. }
406
+ | AMode::RegScaled { rn, rm, .. }
407
+ | AMode::RegScaledExtended { rn, rm, .. }
408
+ | AMode::RegExtended { rn, rm, .. } => {
409
+ collector.reg_use(rn);
410
+ collector.reg_use(rm);
411
+ }
412
+ AMode::Label { .. } => {}
413
+ AMode::SPPreIndexed { .. } | AMode::SPPostIndexed { .. } => {}
414
+ AMode::FPOffset { .. } | AMode::IncomingArg { .. } => {}
415
+ AMode::SPOffset { .. } | AMode::NominalSPOffset { .. } => {}
416
+ AMode::RegOffset { rn, .. } => {
417
+ collector.reg_use(rn);
418
+ }
419
+ AMode::Const { .. } => {}
420
+ }
421
+ }
422
+
423
+ fn pairmemarg_operands(pairmemarg: &mut PairAMode, collector: &mut impl OperandVisitor) {
424
+ // This should match `PairAMode::with_allocs()`.
425
+ match pairmemarg {
426
+ PairAMode::SignedOffset { reg, .. } => {
427
+ collector.reg_use(reg);
428
+ }
429
+ PairAMode::SPPreIndexed { .. } | PairAMode::SPPostIndexed { .. } => {}
430
+ }
431
+ }
432
+
433
+ fn aarch64_get_operands(inst: &mut Inst, collector: &mut impl OperandVisitor) {
434
+ match inst {
435
+ Inst::AluRRR { rd, rn, rm, .. } => {
436
+ collector.reg_def(rd);
437
+ collector.reg_use(rn);
438
+ collector.reg_use(rm);
439
+ }
440
+ Inst::AluRRRR { rd, rn, rm, ra, .. } => {
441
+ collector.reg_def(rd);
442
+ collector.reg_use(rn);
443
+ collector.reg_use(rm);
444
+ collector.reg_use(ra);
445
+ }
446
+ Inst::AluRRImm12 { rd, rn, .. } => {
447
+ collector.reg_def(rd);
448
+ collector.reg_use(rn);
449
+ }
450
+ Inst::AluRRImmLogic { rd, rn, .. } => {
451
+ collector.reg_def(rd);
452
+ collector.reg_use(rn);
453
+ }
454
+ Inst::AluRRImmShift { rd, rn, .. } => {
455
+ collector.reg_def(rd);
456
+ collector.reg_use(rn);
457
+ }
458
+ Inst::AluRRRShift { rd, rn, rm, .. } => {
459
+ collector.reg_def(rd);
460
+ collector.reg_use(rn);
461
+ collector.reg_use(rm);
462
+ }
463
+ Inst::AluRRRExtend { rd, rn, rm, .. } => {
464
+ collector.reg_def(rd);
465
+ collector.reg_use(rn);
466
+ collector.reg_use(rm);
467
+ }
468
+ Inst::BitRR { rd, rn, .. } => {
469
+ collector.reg_def(rd);
470
+ collector.reg_use(rn);
471
+ }
472
+ Inst::ULoad8 { rd, mem, .. }
473
+ | Inst::SLoad8 { rd, mem, .. }
474
+ | Inst::ULoad16 { rd, mem, .. }
475
+ | Inst::SLoad16 { rd, mem, .. }
476
+ | Inst::ULoad32 { rd, mem, .. }
477
+ | Inst::SLoad32 { rd, mem, .. }
478
+ | Inst::ULoad64 { rd, mem, .. } => {
479
+ collector.reg_def(rd);
480
+ memarg_operands(mem, collector);
481
+ }
482
+ Inst::Store8 { rd, mem, .. }
483
+ | Inst::Store16 { rd, mem, .. }
484
+ | Inst::Store32 { rd, mem, .. }
485
+ | Inst::Store64 { rd, mem, .. } => {
486
+ collector.reg_use(rd);
487
+ memarg_operands(mem, collector);
488
+ }
489
+ Inst::StoreP64 { rt, rt2, mem, .. } => {
490
+ collector.reg_use(rt);
491
+ collector.reg_use(rt2);
492
+ pairmemarg_operands(mem, collector);
493
+ }
494
+ Inst::LoadP64 { rt, rt2, mem, .. } => {
495
+ collector.reg_def(rt);
496
+ collector.reg_def(rt2);
497
+ pairmemarg_operands(mem, collector);
498
+ }
499
+ Inst::Mov { rd, rm, .. } => {
500
+ collector.reg_def(rd);
501
+ collector.reg_use(rm);
502
+ }
503
+ Inst::MovFromPReg { rd, rm } => {
504
+ debug_assert!(rd.to_reg().is_virtual());
505
+ collector.reg_def(rd);
506
+ collector.reg_fixed_nonallocatable(*rm);
507
+ }
508
+ Inst::MovToPReg { rd, rm } => {
509
+ debug_assert!(rm.is_virtual());
510
+ collector.reg_fixed_nonallocatable(*rd);
511
+ collector.reg_use(rm);
512
+ }
513
+ Inst::MovK { rd, rn, .. } => {
514
+ collector.reg_use(rn);
515
+ collector.reg_reuse_def(rd, 0); // `rn` == `rd`.
516
+ }
517
+ Inst::MovWide { rd, .. } => {
518
+ collector.reg_def(rd);
519
+ }
520
+ Inst::CSel { rd, rn, rm, .. } => {
521
+ collector.reg_def(rd);
522
+ collector.reg_use(rn);
523
+ collector.reg_use(rm);
524
+ }
525
+ Inst::CSNeg { rd, rn, rm, .. } => {
526
+ collector.reg_def(rd);
527
+ collector.reg_use(rn);
528
+ collector.reg_use(rm);
529
+ }
530
+ Inst::CSet { rd, .. } | Inst::CSetm { rd, .. } => {
531
+ collector.reg_def(rd);
532
+ }
533
+ Inst::CCmp { rn, rm, .. } => {
534
+ collector.reg_use(rn);
535
+ collector.reg_use(rm);
536
+ }
537
+ Inst::CCmpImm { rn, .. } => {
538
+ collector.reg_use(rn);
539
+ }
540
+ Inst::AtomicRMWLoop {
541
+ op,
542
+ addr,
543
+ operand,
544
+ oldval,
545
+ scratch1,
546
+ scratch2,
547
+ ..
548
+ } => {
549
+ collector.reg_fixed_use(addr, xreg(25));
550
+ collector.reg_fixed_use(operand, xreg(26));
551
+ collector.reg_fixed_def(oldval, xreg(27));
552
+ collector.reg_fixed_def(scratch1, xreg(24));
553
+ if *op != AtomicRMWLoopOp::Xchg {
554
+ collector.reg_fixed_def(scratch2, xreg(28));
555
+ }
556
+ }
557
+ Inst::AtomicRMW { rs, rt, rn, .. } => {
558
+ collector.reg_use(rs);
559
+ collector.reg_def(rt);
560
+ collector.reg_use(rn);
561
+ }
562
+ Inst::AtomicCAS { rd, rs, rt, rn, .. } => {
563
+ collector.reg_reuse_def(rd, 1); // reuse `rs`.
564
+ collector.reg_use(rs);
565
+ collector.reg_use(rt);
566
+ collector.reg_use(rn);
567
+ }
568
+ Inst::AtomicCASLoop {
569
+ addr,
570
+ expected,
571
+ replacement,
572
+ oldval,
573
+ scratch,
574
+ ..
575
+ } => {
576
+ collector.reg_fixed_use(addr, xreg(25));
577
+ collector.reg_fixed_use(expected, xreg(26));
578
+ collector.reg_fixed_use(replacement, xreg(28));
579
+ collector.reg_fixed_def(oldval, xreg(27));
580
+ collector.reg_fixed_def(scratch, xreg(24));
581
+ }
582
+ Inst::LoadAcquire { rt, rn, .. } => {
583
+ collector.reg_use(rn);
584
+ collector.reg_def(rt);
585
+ }
586
+ Inst::StoreRelease { rt, rn, .. } => {
587
+ collector.reg_use(rn);
588
+ collector.reg_use(rt);
589
+ }
590
+ Inst::Fence {} | Inst::Csdb {} => {}
591
+ Inst::FpuMove32 { rd, rn } => {
592
+ collector.reg_def(rd);
593
+ collector.reg_use(rn);
594
+ }
595
+ Inst::FpuMove64 { rd, rn } => {
596
+ collector.reg_def(rd);
597
+ collector.reg_use(rn);
598
+ }
599
+ Inst::FpuMove128 { rd, rn } => {
600
+ collector.reg_def(rd);
601
+ collector.reg_use(rn);
602
+ }
603
+ Inst::FpuMoveFromVec { rd, rn, .. } => {
604
+ collector.reg_def(rd);
605
+ collector.reg_use(rn);
606
+ }
607
+ Inst::FpuExtend { rd, rn, .. } => {
608
+ collector.reg_def(rd);
609
+ collector.reg_use(rn);
610
+ }
611
+ Inst::FpuRR { rd, rn, .. } => {
612
+ collector.reg_def(rd);
613
+ collector.reg_use(rn);
614
+ }
615
+ Inst::FpuRRR { rd, rn, rm, .. } => {
616
+ collector.reg_def(rd);
617
+ collector.reg_use(rn);
618
+ collector.reg_use(rm);
619
+ }
620
+ Inst::FpuRRI { rd, rn, .. } => {
621
+ collector.reg_def(rd);
622
+ collector.reg_use(rn);
623
+ }
624
+ Inst::FpuRRIMod { rd, ri, rn, .. } => {
625
+ collector.reg_reuse_def(rd, 1); // reuse `ri`.
626
+ collector.reg_use(ri);
627
+ collector.reg_use(rn);
628
+ }
629
+ Inst::FpuRRRR { rd, rn, rm, ra, .. } => {
630
+ collector.reg_def(rd);
631
+ collector.reg_use(rn);
632
+ collector.reg_use(rm);
633
+ collector.reg_use(ra);
634
+ }
635
+ Inst::VecMisc { rd, rn, .. } => {
636
+ collector.reg_def(rd);
637
+ collector.reg_use(rn);
638
+ }
639
+
640
+ Inst::VecLanes { rd, rn, .. } => {
641
+ collector.reg_def(rd);
642
+ collector.reg_use(rn);
643
+ }
644
+ Inst::VecShiftImm { rd, rn, .. } => {
645
+ collector.reg_def(rd);
646
+ collector.reg_use(rn);
647
+ }
648
+ Inst::VecShiftImmMod { rd, ri, rn, .. } => {
649
+ collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
650
+ collector.reg_use(ri);
651
+ collector.reg_use(rn);
652
+ }
653
+ Inst::VecExtract { rd, rn, rm, .. } => {
654
+ collector.reg_def(rd);
655
+ collector.reg_use(rn);
656
+ collector.reg_use(rm);
657
+ }
658
+ Inst::VecTbl { rd, rn, rm } => {
659
+ collector.reg_use(rn);
660
+ collector.reg_use(rm);
661
+ collector.reg_def(rd);
662
+ }
663
+ Inst::VecTblExt { rd, ri, rn, rm } => {
664
+ collector.reg_use(rn);
665
+ collector.reg_use(rm);
666
+ collector.reg_reuse_def(rd, 3); // `rd` == `ri`.
667
+ collector.reg_use(ri);
668
+ }
669
+
670
+ Inst::VecTbl2 { rd, rn, rn2, rm } => {
671
+ // Constrain to v30 / v31 so that we satisfy the "adjacent
672
+ // registers" constraint without use of pinned vregs in
673
+ // lowering.
674
+ collector.reg_fixed_use(rn, vreg(30));
675
+ collector.reg_fixed_use(rn2, vreg(31));
676
+ collector.reg_use(rm);
677
+ collector.reg_def(rd);
678
+ }
679
+ Inst::VecTbl2Ext {
680
+ rd,
681
+ ri,
682
+ rn,
683
+ rn2,
684
+ rm,
685
+ } => {
686
+ // Constrain to v30 / v31 so that we satisfy the "adjacent
687
+ // registers" constraint without use of pinned vregs in
688
+ // lowering.
689
+ collector.reg_fixed_use(rn, vreg(30));
690
+ collector.reg_fixed_use(rn2, vreg(31));
691
+ collector.reg_use(rm);
692
+ collector.reg_reuse_def(rd, 4); // `rd` == `ri`.
693
+ collector.reg_use(ri);
694
+ }
695
+ Inst::VecLoadReplicate { rd, rn, .. } => {
696
+ collector.reg_def(rd);
697
+ collector.reg_use(rn);
698
+ }
699
+ Inst::VecCSel { rd, rn, rm, .. } => {
700
+ collector.reg_def(rd);
701
+ collector.reg_use(rn);
702
+ collector.reg_use(rm);
703
+ }
704
+ Inst::FpuCmp { rn, rm, .. } => {
705
+ collector.reg_use(rn);
706
+ collector.reg_use(rm);
707
+ }
708
+ Inst::FpuLoad32 { rd, mem, .. } => {
709
+ collector.reg_def(rd);
710
+ memarg_operands(mem, collector);
711
+ }
712
+ Inst::FpuLoad64 { rd, mem, .. } => {
713
+ collector.reg_def(rd);
714
+ memarg_operands(mem, collector);
715
+ }
716
+ Inst::FpuLoad128 { rd, mem, .. } => {
717
+ collector.reg_def(rd);
718
+ memarg_operands(mem, collector);
719
+ }
720
+ Inst::FpuStore32 { rd, mem, .. } => {
721
+ collector.reg_use(rd);
722
+ memarg_operands(mem, collector);
723
+ }
724
+ Inst::FpuStore64 { rd, mem, .. } => {
725
+ collector.reg_use(rd);
726
+ memarg_operands(mem, collector);
727
+ }
728
+ Inst::FpuStore128 { rd, mem, .. } => {
729
+ collector.reg_use(rd);
730
+ memarg_operands(mem, collector);
731
+ }
732
+ Inst::FpuLoadP64 { rt, rt2, mem, .. } => {
733
+ collector.reg_def(rt);
734
+ collector.reg_def(rt2);
735
+ pairmemarg_operands(mem, collector);
736
+ }
737
+ Inst::FpuStoreP64 { rt, rt2, mem, .. } => {
738
+ collector.reg_use(rt);
739
+ collector.reg_use(rt2);
740
+ pairmemarg_operands(mem, collector);
741
+ }
742
+ Inst::FpuLoadP128 { rt, rt2, mem, .. } => {
743
+ collector.reg_def(rt);
744
+ collector.reg_def(rt2);
745
+ pairmemarg_operands(mem, collector);
746
+ }
747
+ Inst::FpuStoreP128 { rt, rt2, mem, .. } => {
748
+ collector.reg_use(rt);
749
+ collector.reg_use(rt2);
750
+ pairmemarg_operands(mem, collector);
751
+ }
752
+ Inst::FpuToInt { rd, rn, .. } => {
753
+ collector.reg_def(rd);
754
+ collector.reg_use(rn);
755
+ }
756
+ Inst::IntToFpu { rd, rn, .. } => {
757
+ collector.reg_def(rd);
758
+ collector.reg_use(rn);
759
+ }
760
+ Inst::FpuCSel32 { rd, rn, rm, .. } | Inst::FpuCSel64 { rd, rn, rm, .. } => {
761
+ collector.reg_def(rd);
762
+ collector.reg_use(rn);
763
+ collector.reg_use(rm);
764
+ }
765
+ Inst::FpuRound { rd, rn, .. } => {
766
+ collector.reg_def(rd);
767
+ collector.reg_use(rn);
768
+ }
769
+ Inst::MovToFpu { rd, rn, .. } => {
770
+ collector.reg_def(rd);
771
+ collector.reg_use(rn);
772
+ }
773
+ Inst::FpuMoveFPImm { rd, .. } => {
774
+ collector.reg_def(rd);
775
+ }
776
+ Inst::MovToVec { rd, ri, rn, .. } => {
777
+ collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
778
+ collector.reg_use(ri);
779
+ collector.reg_use(rn);
780
+ }
781
+ Inst::MovFromVec { rd, rn, .. } | Inst::MovFromVecSigned { rd, rn, .. } => {
782
+ collector.reg_def(rd);
783
+ collector.reg_use(rn);
784
+ }
785
+ Inst::VecDup { rd, rn, .. } => {
786
+ collector.reg_def(rd);
787
+ collector.reg_use(rn);
788
+ }
789
+ Inst::VecDupFromFpu { rd, rn, .. } => {
790
+ collector.reg_def(rd);
791
+ collector.reg_use(rn);
792
+ }
793
+ Inst::VecDupFPImm { rd, .. } => {
794
+ collector.reg_def(rd);
795
+ }
796
+ Inst::VecDupImm { rd, .. } => {
797
+ collector.reg_def(rd);
798
+ }
799
+ Inst::VecExtend { rd, rn, .. } => {
800
+ collector.reg_def(rd);
801
+ collector.reg_use(rn);
802
+ }
803
+ Inst::VecMovElement { rd, ri, rn, .. } => {
804
+ collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
805
+ collector.reg_use(ri);
806
+ collector.reg_use(rn);
807
+ }
808
+ Inst::VecRRLong { rd, rn, .. } => {
809
+ collector.reg_def(rd);
810
+ collector.reg_use(rn);
811
+ }
812
+ Inst::VecRRNarrowLow { rd, rn, .. } => {
813
+ collector.reg_use(rn);
814
+ collector.reg_def(rd);
815
+ }
816
+ Inst::VecRRNarrowHigh { rd, ri, rn, .. } => {
817
+ collector.reg_use(rn);
818
+ collector.reg_reuse_def(rd, 2); // `rd` == `ri`.
819
+ collector.reg_use(ri);
820
+ }
821
+ Inst::VecRRPair { rd, rn, .. } => {
822
+ collector.reg_def(rd);
823
+ collector.reg_use(rn);
824
+ }
825
+ Inst::VecRRRLong { rd, rn, rm, .. } => {
826
+ collector.reg_def(rd);
827
+ collector.reg_use(rn);
828
+ collector.reg_use(rm);
829
+ }
830
+ Inst::VecRRRLongMod { rd, ri, rn, rm, .. } => {
831
+ collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
832
+ collector.reg_use(ri);
833
+ collector.reg_use(rn);
834
+ collector.reg_use(rm);
835
+ }
836
+ Inst::VecRRPairLong { rd, rn, .. } => {
837
+ collector.reg_def(rd);
838
+ collector.reg_use(rn);
839
+ }
840
+ Inst::VecRRR { rd, rn, rm, .. } => {
841
+ collector.reg_def(rd);
842
+ collector.reg_use(rn);
843
+ collector.reg_use(rm);
844
+ }
845
+ Inst::VecRRRMod { rd, ri, rn, rm, .. } | Inst::VecFmlaElem { rd, ri, rn, rm, .. } => {
846
+ collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
847
+ collector.reg_use(ri);
848
+ collector.reg_use(rn);
849
+ collector.reg_use(rm);
850
+ }
851
+ Inst::MovToNZCV { rn } => {
852
+ collector.reg_use(rn);
853
+ }
854
+ Inst::MovFromNZCV { rd } => {
855
+ collector.reg_def(rd);
856
+ }
857
+ Inst::Extend { rd, rn, .. } => {
858
+ collector.reg_def(rd);
859
+ collector.reg_use(rn);
860
+ }
861
+ Inst::Args { args } => {
862
+ for ArgPair { vreg, preg } in args {
863
+ collector.reg_fixed_def(vreg, *preg);
864
+ }
865
+ }
866
+ Inst::Rets { rets } => {
867
+ for RetPair { vreg, preg } in rets {
868
+ collector.reg_fixed_use(vreg, *preg);
869
+ }
870
+ }
871
+ Inst::Ret { .. } | Inst::AuthenticatedRet { .. } => {}
872
+ Inst::Jump { .. } => {}
873
+ Inst::Call { info, .. } => {
874
+ let CallInfo { uses, defs, .. } = &mut **info;
875
+ for CallArgPair { vreg, preg } in uses {
876
+ collector.reg_fixed_use(vreg, *preg);
877
+ }
878
+ for CallRetPair { vreg, preg } in defs {
879
+ collector.reg_fixed_def(vreg, *preg);
880
+ }
881
+ collector.reg_clobbers(info.clobbers);
882
+ }
883
+ Inst::CallInd { info, .. } => {
884
+ let CallIndInfo { rn, uses, defs, .. } = &mut **info;
885
+ collector.reg_use(rn);
886
+ for CallArgPair { vreg, preg } in uses {
887
+ collector.reg_fixed_use(vreg, *preg);
888
+ }
889
+ for CallRetPair { vreg, preg } in defs {
890
+ collector.reg_fixed_def(vreg, *preg);
891
+ }
892
+ collector.reg_clobbers(info.clobbers);
893
+ }
894
+ Inst::ReturnCall { info, callee: _ } => {
895
+ for CallArgPair { vreg, preg } in &mut info.uses {
896
+ collector.reg_fixed_use(vreg, *preg);
897
+ }
898
+ }
899
+ Inst::ReturnCallInd { info, callee } => {
900
+ // TODO(https://github.com/bytecodealliance/regalloc2/issues/145):
901
+ // This shouldn't be a fixed register constraint, but it's not clear how to pick a
902
+ // register that won't be clobbered by the callee-save restore code emitted with a
903
+ // return_call_indirect.
904
+ collector.reg_fixed_use(callee, xreg(1));
905
+ for CallArgPair { vreg, preg } in &mut info.uses {
906
+ collector.reg_fixed_use(vreg, *preg);
907
+ }
908
+ }
909
+ Inst::CondBr { kind, .. } => match kind {
910
+ CondBrKind::Zero(rt) | CondBrKind::NotZero(rt) => collector.reg_use(rt),
911
+ CondBrKind::Cond(_) => {}
912
+ },
913
+ Inst::TestBitAndBranch { rn, .. } => {
914
+ collector.reg_use(rn);
915
+ }
916
+ Inst::IndirectBr { rn, .. } => {
917
+ collector.reg_use(rn);
918
+ }
919
+ Inst::Nop0 | Inst::Nop4 => {}
920
+ Inst::Brk => {}
921
+ Inst::Udf { .. } => {}
922
+ Inst::TrapIf { kind, .. } => match kind {
923
+ CondBrKind::Zero(rt) | CondBrKind::NotZero(rt) => collector.reg_use(rt),
924
+ CondBrKind::Cond(_) => {}
925
+ },
926
+ Inst::Adr { rd, .. } | Inst::Adrp { rd, .. } => {
927
+ collector.reg_def(rd);
928
+ }
929
+ Inst::Word4 { .. } | Inst::Word8 { .. } => {}
930
+ Inst::JTSequence {
931
+ ridx, rtmp1, rtmp2, ..
932
+ } => {
933
+ collector.reg_use(ridx);
934
+ collector.reg_early_def(rtmp1);
935
+ collector.reg_early_def(rtmp2);
936
+ }
937
+ Inst::LoadExtName { rd, .. } => {
938
+ collector.reg_def(rd);
939
+ }
940
+ Inst::LoadAddr { rd, mem } => {
941
+ collector.reg_def(rd);
942
+ memarg_operands(mem, collector);
943
+ }
944
+ Inst::Paci { .. } | Inst::Xpaclri => {
945
+ // Neither LR nor SP is an allocatable register, so there is no need
946
+ // to do anything.
947
+ }
948
+ Inst::Bti { .. } => {}
949
+ Inst::VirtualSPOffsetAdj { .. } => {}
950
+
951
+ Inst::ElfTlsGetAddr { rd, tmp, .. } => {
952
+ // TLSDESC has a very neat calling convention. It is required to preserve
953
+ // all registers except x0 and x30. X30 is non allocatable in cranelift since
954
+ // its the link register.
955
+ //
956
+ // Additionally we need a second register as a temporary register for the
957
+ // TLSDESC sequence. This register can be any register other than x0 (and x30).
958
+ collector.reg_fixed_def(rd, regs::xreg(0));
959
+ collector.reg_early_def(tmp);
960
+ }
961
+ Inst::MachOTlsGetAddr { rd, .. } => {
962
+ collector.reg_fixed_def(rd, regs::xreg(0));
963
+ let mut clobbers =
964
+ AArch64MachineDeps::get_regs_clobbered_by_call(CallConv::AppleAarch64);
965
+ clobbers.remove(regs::xreg_preg(0));
966
+ collector.reg_clobbers(clobbers);
967
+ }
968
+ Inst::Unwind { .. } => {}
969
+ Inst::EmitIsland { .. } => {}
970
+ Inst::DummyUse { reg } => {
971
+ collector.reg_use(reg);
972
+ }
973
+ Inst::StackProbeLoop { start, end, .. } => {
974
+ collector.reg_early_def(start);
975
+ collector.reg_use(end);
976
+ }
977
+ }
978
+ }
979
+
980
+ //=============================================================================
981
+ // Instructions: misc functions and external interface
982
+
983
+ impl MachInst for Inst {
984
+ type ABIMachineSpec = AArch64MachineDeps;
985
+ type LabelUse = LabelUse;
986
+
987
+ // "CLIF" in hex, to make the trap recognizable during
988
+ // debugging.
989
+ const TRAP_OPCODE: &'static [u8] = &0xc11f_u32.to_le_bytes();
990
+
991
+ fn get_operands(&mut self, collector: &mut impl OperandVisitor) {
992
+ aarch64_get_operands(self, collector);
993
+ }
994
+
995
+ fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
996
+ match self {
997
+ &Inst::Mov {
998
+ size: OperandSize::Size64,
999
+ rd,
1000
+ rm,
1001
+ } => Some((rd, rm)),
1002
+ &Inst::FpuMove64 { rd, rn } => Some((rd, rn)),
1003
+ &Inst::FpuMove128 { rd, rn } => Some((rd, rn)),
1004
+ _ => None,
1005
+ }
1006
+ }
1007
+
1008
+ fn is_included_in_clobbers(&self) -> bool {
1009
+ let (caller_callconv, callee_callconv) = match self {
1010
+ Inst::Args { .. } => return false,
1011
+ Inst::Call { info } => (info.caller_callconv, info.callee_callconv),
1012
+ Inst::CallInd { info } => (info.caller_callconv, info.callee_callconv),
1013
+ _ => return true,
1014
+ };
1015
+
1016
+ // We exclude call instructions from the clobber-set when they are calls
1017
+ // from caller to callee that both clobber the same register (such as
1018
+ // using the same or similar ABIs). Such calls cannot possibly force any
1019
+ // new registers to be saved in the prologue, because anything that the
1020
+ // callee clobbers, the caller is also allowed to clobber. This both
1021
+ // saves work and enables us to more precisely follow the
1022
+ // half-caller-save, half-callee-save SysV ABI for some vector
1023
+ // registers.
1024
+ //
1025
+ // See the note in [crate::isa::aarch64::abi::is_caller_save_reg] for
1026
+ // more information on this ABI-implementation hack.
1027
+ let caller_clobbers = AArch64MachineDeps::get_regs_clobbered_by_call(caller_callconv);
1028
+ let callee_clobbers = AArch64MachineDeps::get_regs_clobbered_by_call(callee_callconv);
1029
+
1030
+ let mut all_clobbers = caller_clobbers;
1031
+ all_clobbers.union_from(callee_clobbers);
1032
+ all_clobbers != caller_clobbers
1033
+ }
1034
+
1035
+ fn is_trap(&self) -> bool {
1036
+ match self {
1037
+ Self::Udf { .. } => true,
1038
+ _ => false,
1039
+ }
1040
+ }
1041
+
1042
+ fn is_args(&self) -> bool {
1043
+ match self {
1044
+ Self::Args { .. } => true,
1045
+ _ => false,
1046
+ }
1047
+ }
1048
+
1049
+ fn is_term(&self) -> MachTerminator {
1050
+ match self {
1051
+ &Inst::Rets { .. } => MachTerminator::Ret,
1052
+ &Inst::ReturnCall { .. } | &Inst::ReturnCallInd { .. } => MachTerminator::RetCall,
1053
+ &Inst::Jump { .. } => MachTerminator::Uncond,
1054
+ &Inst::CondBr { .. } => MachTerminator::Cond,
1055
+ &Inst::TestBitAndBranch { .. } => MachTerminator::Cond,
1056
+ &Inst::IndirectBr { .. } => MachTerminator::Indirect,
1057
+ &Inst::JTSequence { .. } => MachTerminator::Indirect,
1058
+ _ => MachTerminator::None,
1059
+ }
1060
+ }
1061
+
1062
+ fn is_mem_access(&self) -> bool {
1063
+ match self {
1064
+ &Inst::ULoad8 { .. }
1065
+ | &Inst::SLoad8 { .. }
1066
+ | &Inst::ULoad16 { .. }
1067
+ | &Inst::SLoad16 { .. }
1068
+ | &Inst::ULoad32 { .. }
1069
+ | &Inst::SLoad32 { .. }
1070
+ | &Inst::ULoad64 { .. }
1071
+ | &Inst::LoadP64 { .. }
1072
+ | &Inst::FpuLoad32 { .. }
1073
+ | &Inst::FpuLoad64 { .. }
1074
+ | &Inst::FpuLoad128 { .. }
1075
+ | &Inst::FpuLoadP64 { .. }
1076
+ | &Inst::FpuLoadP128 { .. }
1077
+ | &Inst::Store8 { .. }
1078
+ | &Inst::Store16 { .. }
1079
+ | &Inst::Store32 { .. }
1080
+ | &Inst::Store64 { .. }
1081
+ | &Inst::StoreP64 { .. }
1082
+ | &Inst::FpuStore32 { .. }
1083
+ | &Inst::FpuStore64 { .. }
1084
+ | &Inst::FpuStore128 { .. } => true,
1085
+ // TODO: verify this carefully
1086
+ _ => false,
1087
+ }
1088
+ }
1089
+
1090
+ fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Inst {
1091
+ let bits = ty.bits();
1092
+
1093
+ assert!(bits <= 128);
1094
+ assert!(to_reg.to_reg().class() == from_reg.class());
1095
+ match from_reg.class() {
1096
+ RegClass::Int => Inst::Mov {
1097
+ size: OperandSize::Size64,
1098
+ rd: to_reg,
1099
+ rm: from_reg,
1100
+ },
1101
+ RegClass::Float => {
1102
+ if bits > 64 {
1103
+ Inst::FpuMove128 {
1104
+ rd: to_reg,
1105
+ rn: from_reg,
1106
+ }
1107
+ } else {
1108
+ Inst::FpuMove64 {
1109
+ rd: to_reg,
1110
+ rn: from_reg,
1111
+ }
1112
+ }
1113
+ }
1114
+ RegClass::Vector => unreachable!(),
1115
+ }
1116
+ }
1117
+
1118
+ fn is_safepoint(&self) -> bool {
1119
+ match self {
1120
+ &Inst::Call { .. }
1121
+ | &Inst::CallInd { .. }
1122
+ | &Inst::TrapIf { .. }
1123
+ | &Inst::Udf { .. } => true,
1124
+ _ => false,
1125
+ }
1126
+ }
1127
+
1128
+ fn gen_dummy_use(reg: Reg) -> Inst {
1129
+ Inst::DummyUse { reg }
1130
+ }
1131
+
1132
+ fn gen_nop(preferred_size: usize) -> Inst {
1133
+ if preferred_size == 0 {
1134
+ return Inst::Nop0;
1135
+ }
1136
+ // We can't give a NOP (or any insn) < 4 bytes.
1137
+ assert!(preferred_size >= 4);
1138
+ Inst::Nop4
1139
+ }
1140
+
1141
+ fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
1142
+ match ty {
1143
+ I8 => Ok((&[RegClass::Int], &[I8])),
1144
+ I16 => Ok((&[RegClass::Int], &[I16])),
1145
+ I32 => Ok((&[RegClass::Int], &[I32])),
1146
+ I64 => Ok((&[RegClass::Int], &[I64])),
1147
+ R32 => panic!("32-bit reftype pointer should never be seen on AArch64"),
1148
+ R64 => Ok((&[RegClass::Int], &[R64])),
1149
+ F32 => Ok((&[RegClass::Float], &[F32])),
1150
+ F64 => Ok((&[RegClass::Float], &[F64])),
1151
+ I128 => Ok((&[RegClass::Int, RegClass::Int], &[I64, I64])),
1152
+ _ if ty.is_vector() => {
1153
+ assert!(ty.bits() <= 128);
1154
+ Ok((&[RegClass::Float], &[I8X16]))
1155
+ }
1156
+ _ if ty.is_dynamic_vector() => Ok((&[RegClass::Float], &[I8X16])),
1157
+ _ => Err(CodegenError::Unsupported(format!(
1158
+ "Unexpected SSA-value type: {}",
1159
+ ty
1160
+ ))),
1161
+ }
1162
+ }
1163
+
1164
+ fn canonical_type_for_rc(rc: RegClass) -> Type {
1165
+ match rc {
1166
+ RegClass::Float => types::I8X16,
1167
+ RegClass::Int => types::I64,
1168
+ RegClass::Vector => unreachable!(),
1169
+ }
1170
+ }
1171
+
1172
+ fn gen_jump(target: MachLabel) -> Inst {
1173
+ Inst::Jump {
1174
+ dest: BranchTarget::Label(target),
1175
+ }
1176
+ }
1177
+
1178
+ fn worst_case_size() -> CodeOffset {
1179
+ // The maximum size, in bytes, of any `Inst`'s emitted code. We have at least one case of
1180
+ // an 8-instruction sequence (saturating int-to-float conversions) with three embedded
1181
+ // 64-bit f64 constants.
1182
+ //
1183
+ // Note that inline jump-tables handle island/pool insertion separately, so we do not need
1184
+ // to account for them here (otherwise the worst case would be 2^31 * 4, clearly not
1185
+ // feasible for other reasons).
1186
+ 44
1187
+ }
1188
+
1189
+ fn ref_type_regclass(_: &settings::Flags) -> RegClass {
1190
+ RegClass::Int
1191
+ }
1192
+
1193
+ fn gen_block_start(
1194
+ is_indirect_branch_target: bool,
1195
+ is_forward_edge_cfi_enabled: bool,
1196
+ ) -> Option<Self> {
1197
+ if is_indirect_branch_target && is_forward_edge_cfi_enabled {
1198
+ Some(Inst::Bti {
1199
+ targets: BranchTargetType::J,
1200
+ })
1201
+ } else {
1202
+ None
1203
+ }
1204
+ }
1205
+
1206
+ fn function_alignment() -> FunctionAlignment {
1207
+ // We use 32-byte alignment for performance reasons, but for correctness
1208
+ // we would only need 4-byte alignment.
1209
+ FunctionAlignment {
1210
+ minimum: 4,
1211
+ preferred: 32,
1212
+ }
1213
+ }
1214
+ }
1215
+
1216
+ //=============================================================================
1217
+ // Pretty-printing of instructions.
1218
+
1219
+ fn mem_finalize_for_show(mem: &AMode, access_ty: Type, state: &EmitState) -> (String, String) {
1220
+ let (mem_insts, mem) = mem_finalize(None, mem, access_ty, state);
1221
+ let mut mem_str = mem_insts
1222
+ .into_iter()
1223
+ .map(|inst| {
1224
+ inst.print_with_state(&mut EmitState::default(), &mut AllocationConsumer::new(&[]))
1225
+ })
1226
+ .collect::<Vec<_>>()
1227
+ .join(" ; ");
1228
+ if !mem_str.is_empty() {
1229
+ mem_str += " ; ";
1230
+ }
1231
+
1232
+ let mem = mem.pretty_print(access_ty.bytes() as u8, &mut AllocationConsumer::new(&[]));
1233
+ (mem_str, mem)
1234
+ }
1235
+
1236
+ impl Inst {
1237
+ fn print_with_state(&self, state: &mut EmitState, allocs: &mut AllocationConsumer) -> String {
1238
+ let mut empty_allocs = AllocationConsumer::default();
1239
+
1240
+ fn op_name(alu_op: ALUOp) -> &'static str {
1241
+ match alu_op {
1242
+ ALUOp::Add => "add",
1243
+ ALUOp::Sub => "sub",
1244
+ ALUOp::Orr => "orr",
1245
+ ALUOp::And => "and",
1246
+ ALUOp::AndS => "ands",
1247
+ ALUOp::Eor => "eor",
1248
+ ALUOp::AddS => "adds",
1249
+ ALUOp::SubS => "subs",
1250
+ ALUOp::SMulH => "smulh",
1251
+ ALUOp::UMulH => "umulh",
1252
+ ALUOp::SDiv => "sdiv",
1253
+ ALUOp::UDiv => "udiv",
1254
+ ALUOp::AndNot => "bic",
1255
+ ALUOp::OrrNot => "orn",
1256
+ ALUOp::EorNot => "eon",
1257
+ ALUOp::RotR => "ror",
1258
+ ALUOp::Lsr => "lsr",
1259
+ ALUOp::Asr => "asr",
1260
+ ALUOp::Lsl => "lsl",
1261
+ ALUOp::Adc => "adc",
1262
+ ALUOp::AdcS => "adcs",
1263
+ ALUOp::Sbc => "sbc",
1264
+ ALUOp::SbcS => "sbcs",
1265
+ }
1266
+ }
1267
+
1268
+ // N.B.: order of `allocs` consumption (via register
1269
+ // pretty-printing or memarg.with_allocs()) needs to match the
1270
+ // order in `aarch64_get_operands` above.
1271
+ match self {
1272
+ &Inst::Nop0 => "nop-zero-len".to_string(),
1273
+ &Inst::Nop4 => "nop".to_string(),
1274
+ &Inst::AluRRR {
1275
+ alu_op,
1276
+ size,
1277
+ rd,
1278
+ rn,
1279
+ rm,
1280
+ } => {
1281
+ let op = op_name(alu_op);
1282
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1283
+ let rn = pretty_print_ireg(rn, size, allocs);
1284
+ let rm = pretty_print_ireg(rm, size, allocs);
1285
+ format!("{} {}, {}, {}", op, rd, rn, rm)
1286
+ }
1287
+ &Inst::AluRRRR {
1288
+ alu_op,
1289
+ size,
1290
+ rd,
1291
+ rn,
1292
+ rm,
1293
+ ra,
1294
+ } => {
1295
+ let (op, da_size) = match alu_op {
1296
+ ALUOp3::MAdd => ("madd", size),
1297
+ ALUOp3::MSub => ("msub", size),
1298
+ ALUOp3::UMAddL => ("umaddl", OperandSize::Size64),
1299
+ ALUOp3::SMAddL => ("smaddl", OperandSize::Size64),
1300
+ };
1301
+ let rd = pretty_print_ireg(rd.to_reg(), da_size, allocs);
1302
+ let rn = pretty_print_ireg(rn, size, allocs);
1303
+ let rm = pretty_print_ireg(rm, size, allocs);
1304
+ let ra = pretty_print_ireg(ra, da_size, allocs);
1305
+
1306
+ format!("{} {}, {}, {}, {}", op, rd, rn, rm, ra)
1307
+ }
1308
+ &Inst::AluRRImm12 {
1309
+ alu_op,
1310
+ size,
1311
+ rd,
1312
+ rn,
1313
+ ref imm12,
1314
+ } => {
1315
+ let op = op_name(alu_op);
1316
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1317
+ let rn = pretty_print_ireg(rn, size, allocs);
1318
+
1319
+ if imm12.bits == 0 && alu_op == ALUOp::Add && size.is64() {
1320
+ // special-case MOV (used for moving into SP).
1321
+ format!("mov {}, {}", rd, rn)
1322
+ } else {
1323
+ let imm12 = imm12.pretty_print(0, allocs);
1324
+ format!("{} {}, {}, {}", op, rd, rn, imm12)
1325
+ }
1326
+ }
1327
+ &Inst::AluRRImmLogic {
1328
+ alu_op,
1329
+ size,
1330
+ rd,
1331
+ rn,
1332
+ ref imml,
1333
+ } => {
1334
+ let op = op_name(alu_op);
1335
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1336
+ let rn = pretty_print_ireg(rn, size, allocs);
1337
+ let imml = imml.pretty_print(0, allocs);
1338
+ format!("{} {}, {}, {}", op, rd, rn, imml)
1339
+ }
1340
+ &Inst::AluRRImmShift {
1341
+ alu_op,
1342
+ size,
1343
+ rd,
1344
+ rn,
1345
+ ref immshift,
1346
+ } => {
1347
+ let op = op_name(alu_op);
1348
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1349
+ let rn = pretty_print_ireg(rn, size, allocs);
1350
+ let immshift = immshift.pretty_print(0, allocs);
1351
+ format!("{} {}, {}, {}", op, rd, rn, immshift)
1352
+ }
1353
+ &Inst::AluRRRShift {
1354
+ alu_op,
1355
+ size,
1356
+ rd,
1357
+ rn,
1358
+ rm,
1359
+ ref shiftop,
1360
+ } => {
1361
+ let op = op_name(alu_op);
1362
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1363
+ let rn = pretty_print_ireg(rn, size, allocs);
1364
+ let rm = pretty_print_ireg(rm, size, allocs);
1365
+ let shiftop = shiftop.pretty_print(0, allocs);
1366
+ format!("{} {}, {}, {}, {}", op, rd, rn, rm, shiftop)
1367
+ }
1368
+ &Inst::AluRRRExtend {
1369
+ alu_op,
1370
+ size,
1371
+ rd,
1372
+ rn,
1373
+ rm,
1374
+ ref extendop,
1375
+ } => {
1376
+ let op = op_name(alu_op);
1377
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1378
+ let rn = pretty_print_ireg(rn, size, allocs);
1379
+ let rm = pretty_print_ireg(rm, size, allocs);
1380
+ let extendop = extendop.pretty_print(0, allocs);
1381
+ format!("{} {}, {}, {}, {}", op, rd, rn, rm, extendop)
1382
+ }
1383
+ &Inst::BitRR { op, size, rd, rn } => {
1384
+ let op = op.op_str();
1385
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1386
+ let rn = pretty_print_ireg(rn, size, allocs);
1387
+ format!("{} {}, {}", op, rd, rn)
1388
+ }
1389
+ &Inst::ULoad8 { rd, ref mem, .. }
1390
+ | &Inst::SLoad8 { rd, ref mem, .. }
1391
+ | &Inst::ULoad16 { rd, ref mem, .. }
1392
+ | &Inst::SLoad16 { rd, ref mem, .. }
1393
+ | &Inst::ULoad32 { rd, ref mem, .. }
1394
+ | &Inst::SLoad32 { rd, ref mem, .. }
1395
+ | &Inst::ULoad64 { rd, ref mem, .. } => {
1396
+ let is_unscaled = match &mem {
1397
+ &AMode::Unscaled { .. } => true,
1398
+ _ => false,
1399
+ };
1400
+ let (op, size) = match (self, is_unscaled) {
1401
+ (&Inst::ULoad8 { .. }, false) => ("ldrb", OperandSize::Size32),
1402
+ (&Inst::ULoad8 { .. }, true) => ("ldurb", OperandSize::Size32),
1403
+ (&Inst::SLoad8 { .. }, false) => ("ldrsb", OperandSize::Size64),
1404
+ (&Inst::SLoad8 { .. }, true) => ("ldursb", OperandSize::Size64),
1405
+ (&Inst::ULoad16 { .. }, false) => ("ldrh", OperandSize::Size32),
1406
+ (&Inst::ULoad16 { .. }, true) => ("ldurh", OperandSize::Size32),
1407
+ (&Inst::SLoad16 { .. }, false) => ("ldrsh", OperandSize::Size64),
1408
+ (&Inst::SLoad16 { .. }, true) => ("ldursh", OperandSize::Size64),
1409
+ (&Inst::ULoad32 { .. }, false) => ("ldr", OperandSize::Size32),
1410
+ (&Inst::ULoad32 { .. }, true) => ("ldur", OperandSize::Size32),
1411
+ (&Inst::SLoad32 { .. }, false) => ("ldrsw", OperandSize::Size64),
1412
+ (&Inst::SLoad32 { .. }, true) => ("ldursw", OperandSize::Size64),
1413
+ (&Inst::ULoad64 { .. }, false) => ("ldr", OperandSize::Size64),
1414
+ (&Inst::ULoad64 { .. }, true) => ("ldur", OperandSize::Size64),
1415
+ _ => unreachable!(),
1416
+ };
1417
+
1418
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1419
+ let mem = mem.with_allocs(allocs);
1420
+ let access_ty = self.mem_type().unwrap();
1421
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1422
+
1423
+ format!("{}{} {}, {}", mem_str, op, rd, mem)
1424
+ }
1425
+ &Inst::Store8 { rd, ref mem, .. }
1426
+ | &Inst::Store16 { rd, ref mem, .. }
1427
+ | &Inst::Store32 { rd, ref mem, .. }
1428
+ | &Inst::Store64 { rd, ref mem, .. } => {
1429
+ let is_unscaled = match &mem {
1430
+ &AMode::Unscaled { .. } => true,
1431
+ _ => false,
1432
+ };
1433
+ let (op, size) = match (self, is_unscaled) {
1434
+ (&Inst::Store8 { .. }, false) => ("strb", OperandSize::Size32),
1435
+ (&Inst::Store8 { .. }, true) => ("sturb", OperandSize::Size32),
1436
+ (&Inst::Store16 { .. }, false) => ("strh", OperandSize::Size32),
1437
+ (&Inst::Store16 { .. }, true) => ("sturh", OperandSize::Size32),
1438
+ (&Inst::Store32 { .. }, false) => ("str", OperandSize::Size32),
1439
+ (&Inst::Store32 { .. }, true) => ("stur", OperandSize::Size32),
1440
+ (&Inst::Store64 { .. }, false) => ("str", OperandSize::Size64),
1441
+ (&Inst::Store64 { .. }, true) => ("stur", OperandSize::Size64),
1442
+ _ => unreachable!(),
1443
+ };
1444
+
1445
+ let rd = pretty_print_ireg(rd, size, allocs);
1446
+ let mem = mem.with_allocs(allocs);
1447
+ let access_ty = self.mem_type().unwrap();
1448
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1449
+
1450
+ format!("{}{} {}, {}", mem_str, op, rd, mem)
1451
+ }
1452
+ &Inst::StoreP64 {
1453
+ rt, rt2, ref mem, ..
1454
+ } => {
1455
+ let rt = pretty_print_ireg(rt, OperandSize::Size64, allocs);
1456
+ let rt2 = pretty_print_ireg(rt2, OperandSize::Size64, allocs);
1457
+ let mem = mem.with_allocs(allocs);
1458
+ let mem = mem.pretty_print_default();
1459
+ format!("stp {}, {}, {}", rt, rt2, mem)
1460
+ }
1461
+ &Inst::LoadP64 {
1462
+ rt, rt2, ref mem, ..
1463
+ } => {
1464
+ let rt = pretty_print_ireg(rt.to_reg(), OperandSize::Size64, allocs);
1465
+ let rt2 = pretty_print_ireg(rt2.to_reg(), OperandSize::Size64, allocs);
1466
+ let mem = mem.with_allocs(allocs);
1467
+ let mem = mem.pretty_print_default();
1468
+ format!("ldp {}, {}, {}", rt, rt2, mem)
1469
+ }
1470
+ &Inst::Mov { size, rd, rm } => {
1471
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1472
+ let rm = pretty_print_ireg(rm, size, allocs);
1473
+ format!("mov {}, {}", rd, rm)
1474
+ }
1475
+ &Inst::MovFromPReg { rd, rm } => {
1476
+ let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1477
+ allocs.next_fixed_nonallocatable(rm);
1478
+ let rm = show_ireg_sized(rm.into(), OperandSize::Size64);
1479
+ format!("mov {}, {}", rd, rm)
1480
+ }
1481
+ &Inst::MovToPReg { rd, rm } => {
1482
+ allocs.next_fixed_nonallocatable(rd);
1483
+ let rd = show_ireg_sized(rd.into(), OperandSize::Size64);
1484
+ let rm = pretty_print_ireg(rm, OperandSize::Size64, allocs);
1485
+ format!("mov {}, {}", rd, rm)
1486
+ }
1487
+ &Inst::MovWide {
1488
+ op,
1489
+ rd,
1490
+ ref imm,
1491
+ size,
1492
+ } => {
1493
+ let op_str = match op {
1494
+ MoveWideOp::MovZ => "movz",
1495
+ MoveWideOp::MovN => "movn",
1496
+ };
1497
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1498
+ let imm = imm.pretty_print(0, allocs);
1499
+ format!("{} {}, {}", op_str, rd, imm)
1500
+ }
1501
+ &Inst::MovK {
1502
+ rd,
1503
+ rn,
1504
+ ref imm,
1505
+ size,
1506
+ } => {
1507
+ let rn = pretty_print_ireg(rn, size, allocs);
1508
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1509
+ let imm = imm.pretty_print(0, allocs);
1510
+ format!("movk {}, {}, {}", rd, rn, imm)
1511
+ }
1512
+ &Inst::CSel { rd, rn, rm, cond } => {
1513
+ let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1514
+ let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1515
+ let rm = pretty_print_ireg(rm, OperandSize::Size64, allocs);
1516
+ let cond = cond.pretty_print(0, allocs);
1517
+ format!("csel {}, {}, {}, {}", rd, rn, rm, cond)
1518
+ }
1519
+ &Inst::CSNeg { rd, rn, rm, cond } => {
1520
+ let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1521
+ let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1522
+ let rm = pretty_print_ireg(rm, OperandSize::Size64, allocs);
1523
+ let cond = cond.pretty_print(0, allocs);
1524
+ format!("csneg {}, {}, {}, {}", rd, rn, rm, cond)
1525
+ }
1526
+ &Inst::CSet { rd, cond } => {
1527
+ let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1528
+ let cond = cond.pretty_print(0, allocs);
1529
+ format!("cset {}, {}", rd, cond)
1530
+ }
1531
+ &Inst::CSetm { rd, cond } => {
1532
+ let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1533
+ let cond = cond.pretty_print(0, allocs);
1534
+ format!("csetm {}, {}", rd, cond)
1535
+ }
1536
+ &Inst::CCmp {
1537
+ size,
1538
+ rn,
1539
+ rm,
1540
+ nzcv,
1541
+ cond,
1542
+ } => {
1543
+ let rn = pretty_print_ireg(rn, size, allocs);
1544
+ let rm = pretty_print_ireg(rm, size, allocs);
1545
+ let nzcv = nzcv.pretty_print(0, allocs);
1546
+ let cond = cond.pretty_print(0, allocs);
1547
+ format!("ccmp {}, {}, {}, {}", rn, rm, nzcv, cond)
1548
+ }
1549
+ &Inst::CCmpImm {
1550
+ size,
1551
+ rn,
1552
+ imm,
1553
+ nzcv,
1554
+ cond,
1555
+ } => {
1556
+ let rn = pretty_print_ireg(rn, size, allocs);
1557
+ let imm = imm.pretty_print(0, allocs);
1558
+ let nzcv = nzcv.pretty_print(0, allocs);
1559
+ let cond = cond.pretty_print(0, allocs);
1560
+ format!("ccmp {}, {}, {}, {}", rn, imm, nzcv, cond)
1561
+ }
1562
+ &Inst::AtomicRMW {
1563
+ rs, rt, rn, ty, op, ..
1564
+ } => {
1565
+ let op = match op {
1566
+ AtomicRMWOp::Add => "ldaddal",
1567
+ AtomicRMWOp::Clr => "ldclral",
1568
+ AtomicRMWOp::Eor => "ldeoral",
1569
+ AtomicRMWOp::Set => "ldsetal",
1570
+ AtomicRMWOp::Smax => "ldsmaxal",
1571
+ AtomicRMWOp::Umax => "ldumaxal",
1572
+ AtomicRMWOp::Smin => "ldsminal",
1573
+ AtomicRMWOp::Umin => "lduminal",
1574
+ AtomicRMWOp::Swp => "swpal",
1575
+ };
1576
+
1577
+ let size = OperandSize::from_ty(ty);
1578
+ let rs = pretty_print_ireg(rs, size, allocs);
1579
+ let rt = pretty_print_ireg(rt.to_reg(), size, allocs);
1580
+ let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1581
+
1582
+ let ty_suffix = match ty {
1583
+ I8 => "b",
1584
+ I16 => "h",
1585
+ _ => "",
1586
+ };
1587
+ format!("{}{} {}, {}, [{}]", op, ty_suffix, rs, rt, rn)
1588
+ }
1589
+ &Inst::AtomicRMWLoop {
1590
+ ty,
1591
+ op,
1592
+ addr,
1593
+ operand,
1594
+ oldval,
1595
+ scratch1,
1596
+ scratch2,
1597
+ ..
1598
+ } => {
1599
+ let op = match op {
1600
+ AtomicRMWLoopOp::Add => "add",
1601
+ AtomicRMWLoopOp::Sub => "sub",
1602
+ AtomicRMWLoopOp::Eor => "eor",
1603
+ AtomicRMWLoopOp::Orr => "orr",
1604
+ AtomicRMWLoopOp::And => "and",
1605
+ AtomicRMWLoopOp::Nand => "nand",
1606
+ AtomicRMWLoopOp::Smin => "smin",
1607
+ AtomicRMWLoopOp::Smax => "smax",
1608
+ AtomicRMWLoopOp::Umin => "umin",
1609
+ AtomicRMWLoopOp::Umax => "umax",
1610
+ AtomicRMWLoopOp::Xchg => "xchg",
1611
+ };
1612
+ let addr = pretty_print_ireg(addr, OperandSize::Size64, allocs);
1613
+ let operand = pretty_print_ireg(operand, OperandSize::Size64, allocs);
1614
+ let oldval = pretty_print_ireg(oldval.to_reg(), OperandSize::Size64, allocs);
1615
+ let scratch1 = pretty_print_ireg(scratch1.to_reg(), OperandSize::Size64, allocs);
1616
+ let scratch2 = pretty_print_ireg(scratch2.to_reg(), OperandSize::Size64, allocs);
1617
+ format!(
1618
+ "atomic_rmw_loop_{}_{} addr={} operand={} oldval={} scratch1={} scratch2={}",
1619
+ op,
1620
+ ty.bits(),
1621
+ addr,
1622
+ operand,
1623
+ oldval,
1624
+ scratch1,
1625
+ scratch2,
1626
+ )
1627
+ }
1628
+ &Inst::AtomicCAS {
1629
+ rd, rs, rt, rn, ty, ..
1630
+ } => {
1631
+ let op = match ty {
1632
+ I8 => "casalb",
1633
+ I16 => "casalh",
1634
+ I32 | I64 => "casal",
1635
+ _ => panic!("Unsupported type: {}", ty),
1636
+ };
1637
+ let size = OperandSize::from_ty(ty);
1638
+ let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1639
+ let rs = pretty_print_ireg(rs, size, allocs);
1640
+ let rt = pretty_print_ireg(rt, size, allocs);
1641
+ let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1642
+
1643
+ format!("{} {}, {}, {}, [{}]", op, rd, rs, rt, rn)
1644
+ }
1645
+ &Inst::AtomicCASLoop {
1646
+ ty,
1647
+ addr,
1648
+ expected,
1649
+ replacement,
1650
+ oldval,
1651
+ scratch,
1652
+ ..
1653
+ } => {
1654
+ let addr = pretty_print_ireg(addr, OperandSize::Size64, allocs);
1655
+ let expected = pretty_print_ireg(expected, OperandSize::Size64, allocs);
1656
+ let replacement = pretty_print_ireg(replacement, OperandSize::Size64, allocs);
1657
+ let oldval = pretty_print_ireg(oldval.to_reg(), OperandSize::Size64, allocs);
1658
+ let scratch = pretty_print_ireg(scratch.to_reg(), OperandSize::Size64, allocs);
1659
+ format!(
1660
+ "atomic_cas_loop_{} addr={}, expect={}, replacement={}, oldval={}, scratch={}",
1661
+ ty.bits(),
1662
+ addr,
1663
+ expected,
1664
+ replacement,
1665
+ oldval,
1666
+ scratch,
1667
+ )
1668
+ }
1669
+ &Inst::LoadAcquire {
1670
+ access_ty, rt, rn, ..
1671
+ } => {
1672
+ let (op, ty) = match access_ty {
1673
+ I8 => ("ldarb", I32),
1674
+ I16 => ("ldarh", I32),
1675
+ I32 => ("ldar", I32),
1676
+ I64 => ("ldar", I64),
1677
+ _ => panic!("Unsupported type: {}", access_ty),
1678
+ };
1679
+ let size = OperandSize::from_ty(ty);
1680
+ let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1681
+ let rt = pretty_print_ireg(rt.to_reg(), size, allocs);
1682
+ format!("{} {}, [{}]", op, rt, rn)
1683
+ }
1684
+ &Inst::StoreRelease {
1685
+ access_ty, rt, rn, ..
1686
+ } => {
1687
+ let (op, ty) = match access_ty {
1688
+ I8 => ("stlrb", I32),
1689
+ I16 => ("stlrh", I32),
1690
+ I32 => ("stlr", I32),
1691
+ I64 => ("stlr", I64),
1692
+ _ => panic!("Unsupported type: {}", access_ty),
1693
+ };
1694
+ let size = OperandSize::from_ty(ty);
1695
+ let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1696
+ let rt = pretty_print_ireg(rt, size, allocs);
1697
+ format!("{} {}, [{}]", op, rt, rn)
1698
+ }
1699
+ &Inst::Fence {} => {
1700
+ format!("dmb ish")
1701
+ }
1702
+ &Inst::Csdb {} => {
1703
+ format!("csdb")
1704
+ }
1705
+ &Inst::FpuMove32 { rd, rn } => {
1706
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32, allocs);
1707
+ let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size32, allocs);
1708
+ format!("fmov {}, {}", rd, rn)
1709
+ }
1710
+ &Inst::FpuMove64 { rd, rn } => {
1711
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
1712
+ let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs);
1713
+ format!("fmov {}, {}", rd, rn)
1714
+ }
1715
+ &Inst::FpuMove128 { rd, rn } => {
1716
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
1717
+ let rn = pretty_print_reg(rn, allocs);
1718
+ format!("mov {}.16b, {}.16b", rd, rn)
1719
+ }
1720
+ &Inst::FpuMoveFromVec { rd, rn, idx, size } => {
1721
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size.lane_size(), allocs);
1722
+ let rn = pretty_print_vreg_element(rn, idx as usize, size.lane_size(), allocs);
1723
+ format!("mov {}, {}", rd, rn)
1724
+ }
1725
+ &Inst::FpuExtend { rd, rn, size } => {
1726
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1727
+ let rn = pretty_print_vreg_scalar(rn, size, allocs);
1728
+ format!("fmov {}, {}", rd, rn)
1729
+ }
1730
+ &Inst::FpuRR {
1731
+ fpu_op,
1732
+ size,
1733
+ rd,
1734
+ rn,
1735
+ } => {
1736
+ let op = match fpu_op {
1737
+ FPUOp1::Abs => "fabs",
1738
+ FPUOp1::Neg => "fneg",
1739
+ FPUOp1::Sqrt => "fsqrt",
1740
+ FPUOp1::Cvt32To64 | FPUOp1::Cvt64To32 => "fcvt",
1741
+ };
1742
+ let dst_size = match fpu_op {
1743
+ FPUOp1::Cvt32To64 => ScalarSize::Size64,
1744
+ FPUOp1::Cvt64To32 => ScalarSize::Size32,
1745
+ _ => size,
1746
+ };
1747
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), dst_size, allocs);
1748
+ let rn = pretty_print_vreg_scalar(rn, size, allocs);
1749
+ format!("{} {}, {}", op, rd, rn)
1750
+ }
1751
+ &Inst::FpuRRR {
1752
+ fpu_op,
1753
+ size,
1754
+ rd,
1755
+ rn,
1756
+ rm,
1757
+ } => {
1758
+ let op = match fpu_op {
1759
+ FPUOp2::Add => "fadd",
1760
+ FPUOp2::Sub => "fsub",
1761
+ FPUOp2::Mul => "fmul",
1762
+ FPUOp2::Div => "fdiv",
1763
+ FPUOp2::Max => "fmax",
1764
+ FPUOp2::Min => "fmin",
1765
+ };
1766
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1767
+ let rn = pretty_print_vreg_scalar(rn, size, allocs);
1768
+ let rm = pretty_print_vreg_scalar(rm, size, allocs);
1769
+ format!("{} {}, {}, {}", op, rd, rn, rm)
1770
+ }
1771
+ &Inst::FpuRRI { fpu_op, rd, rn } => {
1772
+ let (op, imm, vector) = match fpu_op {
1773
+ FPUOpRI::UShr32(imm) => ("ushr", imm.pretty_print(0, allocs), true),
1774
+ FPUOpRI::UShr64(imm) => ("ushr", imm.pretty_print(0, allocs), false),
1775
+ };
1776
+
1777
+ let (rd, rn) = if vector {
1778
+ (
1779
+ pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size32x2, allocs),
1780
+ pretty_print_vreg_vector(rn, VectorSize::Size32x2, allocs),
1781
+ )
1782
+ } else {
1783
+ (
1784
+ pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs),
1785
+ pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs),
1786
+ )
1787
+ };
1788
+ format!("{} {}, {}, {}", op, rd, rn, imm)
1789
+ }
1790
+ &Inst::FpuRRIMod { fpu_op, rd, ri, rn } => {
1791
+ let (op, imm, vector) = match fpu_op {
1792
+ FPUOpRIMod::Sli32(imm) => ("sli", imm.pretty_print(0, allocs), true),
1793
+ FPUOpRIMod::Sli64(imm) => ("sli", imm.pretty_print(0, allocs), false),
1794
+ };
1795
+
1796
+ let (rd, ri, rn) = if vector {
1797
+ (
1798
+ pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size32x2, allocs),
1799
+ pretty_print_vreg_vector(ri, VectorSize::Size32x2, allocs),
1800
+ pretty_print_vreg_vector(rn, VectorSize::Size32x2, allocs),
1801
+ )
1802
+ } else {
1803
+ (
1804
+ pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs),
1805
+ pretty_print_vreg_scalar(ri, ScalarSize::Size64, allocs),
1806
+ pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs),
1807
+ )
1808
+ };
1809
+ format!("{} {}, {}, {}, {}", op, rd, ri, rn, imm)
1810
+ }
1811
+ &Inst::FpuRRRR {
1812
+ fpu_op,
1813
+ size,
1814
+ rd,
1815
+ rn,
1816
+ rm,
1817
+ ra,
1818
+ } => {
1819
+ let op = match fpu_op {
1820
+ FPUOp3::MAdd => "fmadd",
1821
+ };
1822
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1823
+ let rn = pretty_print_vreg_scalar(rn, size, allocs);
1824
+ let rm = pretty_print_vreg_scalar(rm, size, allocs);
1825
+ let ra = pretty_print_vreg_scalar(ra, size, allocs);
1826
+ format!("{} {}, {}, {}, {}", op, rd, rn, rm, ra)
1827
+ }
1828
+ &Inst::FpuCmp { size, rn, rm } => {
1829
+ let rn = pretty_print_vreg_scalar(rn, size, allocs);
1830
+ let rm = pretty_print_vreg_scalar(rm, size, allocs);
1831
+ format!("fcmp {}, {}", rn, rm)
1832
+ }
1833
+ &Inst::FpuLoad32 { rd, ref mem, .. } => {
1834
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32, allocs);
1835
+ let mem = mem.with_allocs(allocs);
1836
+ let access_ty = self.mem_type().unwrap();
1837
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1838
+ format!("{}ldr {}, {}", mem_str, rd, mem)
1839
+ }
1840
+ &Inst::FpuLoad64 { rd, ref mem, .. } => {
1841
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
1842
+ let mem = mem.with_allocs(allocs);
1843
+ let access_ty = self.mem_type().unwrap();
1844
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1845
+ format!("{}ldr {}, {}", mem_str, rd, mem)
1846
+ }
1847
+ &Inst::FpuLoad128 { rd, ref mem, .. } => {
1848
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
1849
+ let rd = "q".to_string() + &rd[1..];
1850
+ let mem = mem.with_allocs(allocs);
1851
+ let access_ty = self.mem_type().unwrap();
1852
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1853
+ format!("{}ldr {}, {}", mem_str, rd, mem)
1854
+ }
1855
+ &Inst::FpuStore32 { rd, ref mem, .. } => {
1856
+ let rd = pretty_print_vreg_scalar(rd, ScalarSize::Size32, allocs);
1857
+ let mem = mem.with_allocs(allocs);
1858
+ let access_ty = self.mem_type().unwrap();
1859
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1860
+ format!("{}str {}, {}", mem_str, rd, mem)
1861
+ }
1862
+ &Inst::FpuStore64 { rd, ref mem, .. } => {
1863
+ let rd = pretty_print_vreg_scalar(rd, ScalarSize::Size64, allocs);
1864
+ let mem = mem.with_allocs(allocs);
1865
+ let access_ty = self.mem_type().unwrap();
1866
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1867
+ format!("{}str {}, {}", mem_str, rd, mem)
1868
+ }
1869
+ &Inst::FpuStore128 { rd, ref mem, .. } => {
1870
+ let rd = pretty_print_reg(rd, allocs);
1871
+ let rd = "q".to_string() + &rd[1..];
1872
+ let mem = mem.with_allocs(allocs);
1873
+ let access_ty = self.mem_type().unwrap();
1874
+ let (mem_str, mem) = mem_finalize_for_show(&mem, access_ty, state);
1875
+ format!("{}str {}, {}", mem_str, rd, mem)
1876
+ }
1877
+ &Inst::FpuLoadP64 {
1878
+ rt, rt2, ref mem, ..
1879
+ } => {
1880
+ let rt = pretty_print_vreg_scalar(rt.to_reg(), ScalarSize::Size64, allocs);
1881
+ let rt2 = pretty_print_vreg_scalar(rt2.to_reg(), ScalarSize::Size64, allocs);
1882
+ let mem = mem.with_allocs(allocs);
1883
+ let mem = mem.pretty_print_default();
1884
+
1885
+ format!("ldp {}, {}, {}", rt, rt2, mem)
1886
+ }
1887
+ &Inst::FpuStoreP64 {
1888
+ rt, rt2, ref mem, ..
1889
+ } => {
1890
+ let rt = pretty_print_vreg_scalar(rt, ScalarSize::Size64, allocs);
1891
+ let rt2 = pretty_print_vreg_scalar(rt2, ScalarSize::Size64, allocs);
1892
+ let mem = mem.with_allocs(allocs);
1893
+ let mem = mem.pretty_print_default();
1894
+
1895
+ format!("stp {}, {}, {}", rt, rt2, mem)
1896
+ }
1897
+ &Inst::FpuLoadP128 {
1898
+ rt, rt2, ref mem, ..
1899
+ } => {
1900
+ let rt = pretty_print_vreg_scalar(rt.to_reg(), ScalarSize::Size128, allocs);
1901
+ let rt2 = pretty_print_vreg_scalar(rt2.to_reg(), ScalarSize::Size128, allocs);
1902
+ let mem = mem.with_allocs(allocs);
1903
+ let mem = mem.pretty_print_default();
1904
+
1905
+ format!("ldp {}, {}, {}", rt, rt2, mem)
1906
+ }
1907
+ &Inst::FpuStoreP128 {
1908
+ rt, rt2, ref mem, ..
1909
+ } => {
1910
+ let rt = pretty_print_vreg_scalar(rt, ScalarSize::Size128, allocs);
1911
+ let rt2 = pretty_print_vreg_scalar(rt2, ScalarSize::Size128, allocs);
1912
+ let mem = mem.with_allocs(allocs);
1913
+ let mem = mem.pretty_print_default();
1914
+
1915
+ format!("stp {}, {}, {}", rt, rt2, mem)
1916
+ }
1917
+ &Inst::FpuToInt { op, rd, rn } => {
1918
+ let (op, sizesrc, sizedest) = match op {
1919
+ FpuToIntOp::F32ToI32 => ("fcvtzs", ScalarSize::Size32, OperandSize::Size32),
1920
+ FpuToIntOp::F32ToU32 => ("fcvtzu", ScalarSize::Size32, OperandSize::Size32),
1921
+ FpuToIntOp::F32ToI64 => ("fcvtzs", ScalarSize::Size32, OperandSize::Size64),
1922
+ FpuToIntOp::F32ToU64 => ("fcvtzu", ScalarSize::Size32, OperandSize::Size64),
1923
+ FpuToIntOp::F64ToI32 => ("fcvtzs", ScalarSize::Size64, OperandSize::Size32),
1924
+ FpuToIntOp::F64ToU32 => ("fcvtzu", ScalarSize::Size64, OperandSize::Size32),
1925
+ FpuToIntOp::F64ToI64 => ("fcvtzs", ScalarSize::Size64, OperandSize::Size64),
1926
+ FpuToIntOp::F64ToU64 => ("fcvtzu", ScalarSize::Size64, OperandSize::Size64),
1927
+ };
1928
+ let rd = pretty_print_ireg(rd.to_reg(), sizedest, allocs);
1929
+ let rn = pretty_print_vreg_scalar(rn, sizesrc, allocs);
1930
+ format!("{} {}, {}", op, rd, rn)
1931
+ }
1932
+ &Inst::IntToFpu { op, rd, rn } => {
1933
+ let (op, sizesrc, sizedest) = match op {
1934
+ IntToFpuOp::I32ToF32 => ("scvtf", OperandSize::Size32, ScalarSize::Size32),
1935
+ IntToFpuOp::U32ToF32 => ("ucvtf", OperandSize::Size32, ScalarSize::Size32),
1936
+ IntToFpuOp::I64ToF32 => ("scvtf", OperandSize::Size64, ScalarSize::Size32),
1937
+ IntToFpuOp::U64ToF32 => ("ucvtf", OperandSize::Size64, ScalarSize::Size32),
1938
+ IntToFpuOp::I32ToF64 => ("scvtf", OperandSize::Size32, ScalarSize::Size64),
1939
+ IntToFpuOp::U32ToF64 => ("ucvtf", OperandSize::Size32, ScalarSize::Size64),
1940
+ IntToFpuOp::I64ToF64 => ("scvtf", OperandSize::Size64, ScalarSize::Size64),
1941
+ IntToFpuOp::U64ToF64 => ("ucvtf", OperandSize::Size64, ScalarSize::Size64),
1942
+ };
1943
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), sizedest, allocs);
1944
+ let rn = pretty_print_ireg(rn, sizesrc, allocs);
1945
+ format!("{} {}, {}", op, rd, rn)
1946
+ }
1947
+ &Inst::FpuCSel32 { rd, rn, rm, cond } => {
1948
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32, allocs);
1949
+ let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size32, allocs);
1950
+ let rm = pretty_print_vreg_scalar(rm, ScalarSize::Size32, allocs);
1951
+ let cond = cond.pretty_print(0, allocs);
1952
+ format!("fcsel {}, {}, {}, {}", rd, rn, rm, cond)
1953
+ }
1954
+ &Inst::FpuCSel64 { rd, rn, rm, cond } => {
1955
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
1956
+ let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs);
1957
+ let rm = pretty_print_vreg_scalar(rm, ScalarSize::Size64, allocs);
1958
+ let cond = cond.pretty_print(0, allocs);
1959
+ format!("fcsel {}, {}, {}, {}", rd, rn, rm, cond)
1960
+ }
1961
+ &Inst::FpuRound { op, rd, rn } => {
1962
+ let (inst, size) = match op {
1963
+ FpuRoundMode::Minus32 => ("frintm", ScalarSize::Size32),
1964
+ FpuRoundMode::Minus64 => ("frintm", ScalarSize::Size64),
1965
+ FpuRoundMode::Plus32 => ("frintp", ScalarSize::Size32),
1966
+ FpuRoundMode::Plus64 => ("frintp", ScalarSize::Size64),
1967
+ FpuRoundMode::Zero32 => ("frintz", ScalarSize::Size32),
1968
+ FpuRoundMode::Zero64 => ("frintz", ScalarSize::Size64),
1969
+ FpuRoundMode::Nearest32 => ("frintn", ScalarSize::Size32),
1970
+ FpuRoundMode::Nearest64 => ("frintn", ScalarSize::Size64),
1971
+ };
1972
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1973
+ let rn = pretty_print_vreg_scalar(rn, size, allocs);
1974
+ format!("{} {}, {}", inst, rd, rn)
1975
+ }
1976
+ &Inst::MovToFpu { rd, rn, size } => {
1977
+ let operand_size = size.operand_size();
1978
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1979
+ let rn = pretty_print_ireg(rn, operand_size, allocs);
1980
+ format!("fmov {}, {}", rd, rn)
1981
+ }
1982
+ &Inst::FpuMoveFPImm { rd, imm, size } => {
1983
+ let imm = imm.pretty_print(0, allocs);
1984
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1985
+
1986
+ format!("fmov {}, {}", rd, imm)
1987
+ }
1988
+ &Inst::MovToVec {
1989
+ rd,
1990
+ ri,
1991
+ rn,
1992
+ idx,
1993
+ size,
1994
+ } => {
1995
+ let rd =
1996
+ pretty_print_vreg_element(rd.to_reg(), idx as usize, size.lane_size(), allocs);
1997
+ let ri = pretty_print_vreg_element(ri, idx as usize, size.lane_size(), allocs);
1998
+ let rn = pretty_print_ireg(rn, size.operand_size(), allocs);
1999
+ format!("mov {}, {}, {}", rd, ri, rn)
2000
+ }
2001
+ &Inst::MovFromVec { rd, rn, idx, size } => {
2002
+ let op = match size {
2003
+ ScalarSize::Size8 => "umov",
2004
+ ScalarSize::Size16 => "umov",
2005
+ ScalarSize::Size32 => "mov",
2006
+ ScalarSize::Size64 => "mov",
2007
+ _ => unimplemented!(),
2008
+ };
2009
+ let rd = pretty_print_ireg(rd.to_reg(), size.operand_size(), allocs);
2010
+ let rn = pretty_print_vreg_element(rn, idx as usize, size, allocs);
2011
+ format!("{} {}, {}", op, rd, rn)
2012
+ }
2013
+ &Inst::MovFromVecSigned {
2014
+ rd,
2015
+ rn,
2016
+ idx,
2017
+ size,
2018
+ scalar_size,
2019
+ } => {
2020
+ let rd = pretty_print_ireg(rd.to_reg(), scalar_size, allocs);
2021
+ let rn = pretty_print_vreg_element(rn, idx as usize, size.lane_size(), allocs);
2022
+ format!("smov {}, {}", rd, rn)
2023
+ }
2024
+ &Inst::VecDup { rd, rn, size } => {
2025
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2026
+ let rn = pretty_print_ireg(rn, size.operand_size(), allocs);
2027
+ format!("dup {}, {}", rd, rn)
2028
+ }
2029
+ &Inst::VecDupFromFpu { rd, rn, size, lane } => {
2030
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2031
+ let rn = pretty_print_vreg_element(rn, lane.into(), size.lane_size(), allocs);
2032
+ format!("dup {}, {}", rd, rn)
2033
+ }
2034
+ &Inst::VecDupFPImm { rd, imm, size } => {
2035
+ let imm = imm.pretty_print(0, allocs);
2036
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2037
+
2038
+ format!("fmov {}, {}", rd, imm)
2039
+ }
2040
+ &Inst::VecDupImm {
2041
+ rd,
2042
+ imm,
2043
+ invert,
2044
+ size,
2045
+ } => {
2046
+ let imm = imm.pretty_print(0, allocs);
2047
+ let op = if invert { "mvni" } else { "movi" };
2048
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2049
+
2050
+ format!("{} {}, {}", op, rd, imm)
2051
+ }
2052
+ &Inst::VecExtend {
2053
+ t,
2054
+ rd,
2055
+ rn,
2056
+ high_half,
2057
+ lane_size,
2058
+ } => {
2059
+ let vec64 = VectorSize::from_lane_size(lane_size.narrow(), false);
2060
+ let vec128 = VectorSize::from_lane_size(lane_size.narrow(), true);
2061
+ let rd_size = VectorSize::from_lane_size(lane_size, true);
2062
+ let (op, rn_size) = match (t, high_half) {
2063
+ (VecExtendOp::Sxtl, false) => ("sxtl", vec64),
2064
+ (VecExtendOp::Sxtl, true) => ("sxtl2", vec128),
2065
+ (VecExtendOp::Uxtl, false) => ("uxtl", vec64),
2066
+ (VecExtendOp::Uxtl, true) => ("uxtl2", vec128),
2067
+ };
2068
+ let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size, allocs);
2069
+ let rn = pretty_print_vreg_vector(rn, rn_size, allocs);
2070
+ format!("{} {}, {}", op, rd, rn)
2071
+ }
2072
+ &Inst::VecMovElement {
2073
+ rd,
2074
+ ri,
2075
+ rn,
2076
+ dest_idx,
2077
+ src_idx,
2078
+ size,
2079
+ } => {
2080
+ let rd = pretty_print_vreg_element(
2081
+ rd.to_reg(),
2082
+ dest_idx as usize,
2083
+ size.lane_size(),
2084
+ allocs,
2085
+ );
2086
+ let ri = pretty_print_vreg_element(ri, dest_idx as usize, size.lane_size(), allocs);
2087
+ let rn = pretty_print_vreg_element(rn, src_idx as usize, size.lane_size(), allocs);
2088
+ format!("mov {}, {}, {}", rd, ri, rn)
2089
+ }
2090
+ &Inst::VecRRLong {
2091
+ op,
2092
+ rd,
2093
+ rn,
2094
+ high_half,
2095
+ } => {
2096
+ let (op, rd_size, size, suffix) = match (op, high_half) {
2097
+ (VecRRLongOp::Fcvtl16, false) => {
2098
+ ("fcvtl", VectorSize::Size32x4, VectorSize::Size16x4, "")
2099
+ }
2100
+ (VecRRLongOp::Fcvtl16, true) => {
2101
+ ("fcvtl2", VectorSize::Size32x4, VectorSize::Size16x8, "")
2102
+ }
2103
+ (VecRRLongOp::Fcvtl32, false) => {
2104
+ ("fcvtl", VectorSize::Size64x2, VectorSize::Size32x2, "")
2105
+ }
2106
+ (VecRRLongOp::Fcvtl32, true) => {
2107
+ ("fcvtl2", VectorSize::Size64x2, VectorSize::Size32x4, "")
2108
+ }
2109
+ (VecRRLongOp::Shll8, false) => {
2110
+ ("shll", VectorSize::Size16x8, VectorSize::Size8x8, ", #8")
2111
+ }
2112
+ (VecRRLongOp::Shll8, true) => {
2113
+ ("shll2", VectorSize::Size16x8, VectorSize::Size8x16, ", #8")
2114
+ }
2115
+ (VecRRLongOp::Shll16, false) => {
2116
+ ("shll", VectorSize::Size32x4, VectorSize::Size16x4, ", #16")
2117
+ }
2118
+ (VecRRLongOp::Shll16, true) => {
2119
+ ("shll2", VectorSize::Size32x4, VectorSize::Size16x8, ", #16")
2120
+ }
2121
+ (VecRRLongOp::Shll32, false) => {
2122
+ ("shll", VectorSize::Size64x2, VectorSize::Size32x2, ", #32")
2123
+ }
2124
+ (VecRRLongOp::Shll32, true) => {
2125
+ ("shll2", VectorSize::Size64x2, VectorSize::Size32x4, ", #32")
2126
+ }
2127
+ };
2128
+ let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size, allocs);
2129
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2130
+
2131
+ format!("{} {}, {}{}", op, rd, rn, suffix)
2132
+ }
2133
+ &Inst::VecRRNarrowLow {
2134
+ op,
2135
+ rd,
2136
+ rn,
2137
+ lane_size,
2138
+ ..
2139
+ }
2140
+ | &Inst::VecRRNarrowHigh {
2141
+ op,
2142
+ rd,
2143
+ rn,
2144
+ lane_size,
2145
+ ..
2146
+ } => {
2147
+ let vec64 = VectorSize::from_lane_size(lane_size, false);
2148
+ let vec128 = VectorSize::from_lane_size(lane_size, true);
2149
+ let rn_size = VectorSize::from_lane_size(lane_size.widen(), true);
2150
+ let high_half = match self {
2151
+ &Inst::VecRRNarrowLow { .. } => false,
2152
+ &Inst::VecRRNarrowHigh { .. } => true,
2153
+ _ => unreachable!(),
2154
+ };
2155
+ let (op, rd_size) = match (op, high_half) {
2156
+ (VecRRNarrowOp::Xtn, false) => ("xtn", vec64),
2157
+ (VecRRNarrowOp::Xtn, true) => ("xtn2", vec128),
2158
+ (VecRRNarrowOp::Sqxtn, false) => ("sqxtn", vec64),
2159
+ (VecRRNarrowOp::Sqxtn, true) => ("sqxtn2", vec128),
2160
+ (VecRRNarrowOp::Sqxtun, false) => ("sqxtun", vec64),
2161
+ (VecRRNarrowOp::Sqxtun, true) => ("sqxtun2", vec128),
2162
+ (VecRRNarrowOp::Uqxtn, false) => ("uqxtn", vec64),
2163
+ (VecRRNarrowOp::Uqxtn, true) => ("uqxtn2", vec128),
2164
+ (VecRRNarrowOp::Fcvtn, false) => ("fcvtn", vec64),
2165
+ (VecRRNarrowOp::Fcvtn, true) => ("fcvtn2", vec128),
2166
+ };
2167
+ let rn = pretty_print_vreg_vector(rn, rn_size, allocs);
2168
+ let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size, allocs);
2169
+ let ri = match self {
2170
+ &Inst::VecRRNarrowLow { .. } => "".to_string(),
2171
+ &Inst::VecRRNarrowHigh { ri, .. } => {
2172
+ format!("{}, ", pretty_print_vreg_vector(ri, rd_size, allocs))
2173
+ }
2174
+ _ => unreachable!(),
2175
+ };
2176
+
2177
+ format!("{} {}, {}{}", op, rd, ri, rn)
2178
+ }
2179
+ &Inst::VecRRPair { op, rd, rn } => {
2180
+ let op = match op {
2181
+ VecPairOp::Addp => "addp",
2182
+ };
2183
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
2184
+ let rn = pretty_print_vreg_vector(rn, VectorSize::Size64x2, allocs);
2185
+
2186
+ format!("{} {}, {}", op, rd, rn)
2187
+ }
2188
+ &Inst::VecRRPairLong { op, rd, rn } => {
2189
+ let (op, dest, src) = match op {
2190
+ VecRRPairLongOp::Saddlp8 => {
2191
+ ("saddlp", VectorSize::Size16x8, VectorSize::Size8x16)
2192
+ }
2193
+ VecRRPairLongOp::Saddlp16 => {
2194
+ ("saddlp", VectorSize::Size32x4, VectorSize::Size16x8)
2195
+ }
2196
+ VecRRPairLongOp::Uaddlp8 => {
2197
+ ("uaddlp", VectorSize::Size16x8, VectorSize::Size8x16)
2198
+ }
2199
+ VecRRPairLongOp::Uaddlp16 => {
2200
+ ("uaddlp", VectorSize::Size32x4, VectorSize::Size16x8)
2201
+ }
2202
+ };
2203
+ let rd = pretty_print_vreg_vector(rd.to_reg(), dest, allocs);
2204
+ let rn = pretty_print_vreg_vector(rn, src, allocs);
2205
+
2206
+ format!("{} {}, {}", op, rd, rn)
2207
+ }
2208
+ &Inst::VecRRR {
2209
+ rd,
2210
+ rn,
2211
+ rm,
2212
+ alu_op,
2213
+ size,
2214
+ } => {
2215
+ let (op, size) = match alu_op {
2216
+ VecALUOp::Sqadd => ("sqadd", size),
2217
+ VecALUOp::Uqadd => ("uqadd", size),
2218
+ VecALUOp::Sqsub => ("sqsub", size),
2219
+ VecALUOp::Uqsub => ("uqsub", size),
2220
+ VecALUOp::Cmeq => ("cmeq", size),
2221
+ VecALUOp::Cmge => ("cmge", size),
2222
+ VecALUOp::Cmgt => ("cmgt", size),
2223
+ VecALUOp::Cmhs => ("cmhs", size),
2224
+ VecALUOp::Cmhi => ("cmhi", size),
2225
+ VecALUOp::Fcmeq => ("fcmeq", size),
2226
+ VecALUOp::Fcmgt => ("fcmgt", size),
2227
+ VecALUOp::Fcmge => ("fcmge", size),
2228
+ VecALUOp::And => ("and", VectorSize::Size8x16),
2229
+ VecALUOp::Bic => ("bic", VectorSize::Size8x16),
2230
+ VecALUOp::Orr => ("orr", VectorSize::Size8x16),
2231
+ VecALUOp::Eor => ("eor", VectorSize::Size8x16),
2232
+ VecALUOp::Umaxp => ("umaxp", size),
2233
+ VecALUOp::Add => ("add", size),
2234
+ VecALUOp::Sub => ("sub", size),
2235
+ VecALUOp::Mul => ("mul", size),
2236
+ VecALUOp::Sshl => ("sshl", size),
2237
+ VecALUOp::Ushl => ("ushl", size),
2238
+ VecALUOp::Umin => ("umin", size),
2239
+ VecALUOp::Smin => ("smin", size),
2240
+ VecALUOp::Umax => ("umax", size),
2241
+ VecALUOp::Smax => ("smax", size),
2242
+ VecALUOp::Urhadd => ("urhadd", size),
2243
+ VecALUOp::Fadd => ("fadd", size),
2244
+ VecALUOp::Fsub => ("fsub", size),
2245
+ VecALUOp::Fdiv => ("fdiv", size),
2246
+ VecALUOp::Fmax => ("fmax", size),
2247
+ VecALUOp::Fmin => ("fmin", size),
2248
+ VecALUOp::Fmul => ("fmul", size),
2249
+ VecALUOp::Addp => ("addp", size),
2250
+ VecALUOp::Zip1 => ("zip1", size),
2251
+ VecALUOp::Zip2 => ("zip2", size),
2252
+ VecALUOp::Sqrdmulh => ("sqrdmulh", size),
2253
+ VecALUOp::Uzp1 => ("uzp1", size),
2254
+ VecALUOp::Uzp2 => ("uzp2", size),
2255
+ VecALUOp::Trn1 => ("trn1", size),
2256
+ VecALUOp::Trn2 => ("trn2", size),
2257
+ };
2258
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2259
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2260
+ let rm = pretty_print_vreg_vector(rm, size, allocs);
2261
+ format!("{} {}, {}, {}", op, rd, rn, rm)
2262
+ }
2263
+ &Inst::VecRRRMod {
2264
+ rd,
2265
+ ri,
2266
+ rn,
2267
+ rm,
2268
+ alu_op,
2269
+ size,
2270
+ } => {
2271
+ let (op, size) = match alu_op {
2272
+ VecALUModOp::Bsl => ("bsl", VectorSize::Size8x16),
2273
+ VecALUModOp::Fmla => ("fmla", size),
2274
+ VecALUModOp::Fmls => ("fmls", size),
2275
+ };
2276
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2277
+ let ri = pretty_print_vreg_vector(ri, size, allocs);
2278
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2279
+ let rm = pretty_print_vreg_vector(rm, size, allocs);
2280
+ format!("{} {}, {}, {}, {}", op, rd, ri, rn, rm)
2281
+ }
2282
+ &Inst::VecFmlaElem {
2283
+ rd,
2284
+ ri,
2285
+ rn,
2286
+ rm,
2287
+ alu_op,
2288
+ size,
2289
+ idx,
2290
+ } => {
2291
+ let (op, size) = match alu_op {
2292
+ VecALUModOp::Fmla => ("fmla", size),
2293
+ VecALUModOp::Fmls => ("fmls", size),
2294
+ _ => unreachable!(),
2295
+ };
2296
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2297
+ let ri = pretty_print_vreg_vector(ri, size, allocs);
2298
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2299
+ let rm = pretty_print_vreg_element(rm, idx.into(), size.lane_size(), allocs);
2300
+ format!("{} {}, {}, {}, {}", op, rd, ri, rn, rm)
2301
+ }
2302
+ &Inst::VecRRRLong {
2303
+ rd,
2304
+ rn,
2305
+ rm,
2306
+ alu_op,
2307
+ high_half,
2308
+ } => {
2309
+ let (op, dest_size, src_size) = match (alu_op, high_half) {
2310
+ (VecRRRLongOp::Smull8, false) => {
2311
+ ("smull", VectorSize::Size16x8, VectorSize::Size8x8)
2312
+ }
2313
+ (VecRRRLongOp::Smull8, true) => {
2314
+ ("smull2", VectorSize::Size16x8, VectorSize::Size8x16)
2315
+ }
2316
+ (VecRRRLongOp::Smull16, false) => {
2317
+ ("smull", VectorSize::Size32x4, VectorSize::Size16x4)
2318
+ }
2319
+ (VecRRRLongOp::Smull16, true) => {
2320
+ ("smull2", VectorSize::Size32x4, VectorSize::Size16x8)
2321
+ }
2322
+ (VecRRRLongOp::Smull32, false) => {
2323
+ ("smull", VectorSize::Size64x2, VectorSize::Size32x2)
2324
+ }
2325
+ (VecRRRLongOp::Smull32, true) => {
2326
+ ("smull2", VectorSize::Size64x2, VectorSize::Size32x4)
2327
+ }
2328
+ (VecRRRLongOp::Umull8, false) => {
2329
+ ("umull", VectorSize::Size16x8, VectorSize::Size8x8)
2330
+ }
2331
+ (VecRRRLongOp::Umull8, true) => {
2332
+ ("umull2", VectorSize::Size16x8, VectorSize::Size8x16)
2333
+ }
2334
+ (VecRRRLongOp::Umull16, false) => {
2335
+ ("umull", VectorSize::Size32x4, VectorSize::Size16x4)
2336
+ }
2337
+ (VecRRRLongOp::Umull16, true) => {
2338
+ ("umull2", VectorSize::Size32x4, VectorSize::Size16x8)
2339
+ }
2340
+ (VecRRRLongOp::Umull32, false) => {
2341
+ ("umull", VectorSize::Size64x2, VectorSize::Size32x2)
2342
+ }
2343
+ (VecRRRLongOp::Umull32, true) => {
2344
+ ("umull2", VectorSize::Size64x2, VectorSize::Size32x4)
2345
+ }
2346
+ };
2347
+ let rd = pretty_print_vreg_vector(rd.to_reg(), dest_size, allocs);
2348
+ let rn = pretty_print_vreg_vector(rn, src_size, allocs);
2349
+ let rm = pretty_print_vreg_vector(rm, src_size, allocs);
2350
+ format!("{} {}, {}, {}", op, rd, rn, rm)
2351
+ }
2352
+ &Inst::VecRRRLongMod {
2353
+ rd,
2354
+ ri,
2355
+ rn,
2356
+ rm,
2357
+ alu_op,
2358
+ high_half,
2359
+ } => {
2360
+ let (op, dest_size, src_size) = match (alu_op, high_half) {
2361
+ (VecRRRLongModOp::Umlal8, false) => {
2362
+ ("umlal", VectorSize::Size16x8, VectorSize::Size8x8)
2363
+ }
2364
+ (VecRRRLongModOp::Umlal8, true) => {
2365
+ ("umlal2", VectorSize::Size16x8, VectorSize::Size8x16)
2366
+ }
2367
+ (VecRRRLongModOp::Umlal16, false) => {
2368
+ ("umlal", VectorSize::Size32x4, VectorSize::Size16x4)
2369
+ }
2370
+ (VecRRRLongModOp::Umlal16, true) => {
2371
+ ("umlal2", VectorSize::Size32x4, VectorSize::Size16x8)
2372
+ }
2373
+ (VecRRRLongModOp::Umlal32, false) => {
2374
+ ("umlal", VectorSize::Size64x2, VectorSize::Size32x2)
2375
+ }
2376
+ (VecRRRLongModOp::Umlal32, true) => {
2377
+ ("umlal2", VectorSize::Size64x2, VectorSize::Size32x4)
2378
+ }
2379
+ };
2380
+ let rd = pretty_print_vreg_vector(rd.to_reg(), dest_size, allocs);
2381
+ let ri = pretty_print_vreg_vector(ri, dest_size, allocs);
2382
+ let rn = pretty_print_vreg_vector(rn, src_size, allocs);
2383
+ let rm = pretty_print_vreg_vector(rm, src_size, allocs);
2384
+ format!("{} {}, {}, {}, {}", op, rd, ri, rn, rm)
2385
+ }
2386
+ &Inst::VecMisc { op, rd, rn, size } => {
2387
+ let (op, size, suffix) = match op {
2388
+ VecMisc2::Not => (
2389
+ "mvn",
2390
+ if size.is_128bits() {
2391
+ VectorSize::Size8x16
2392
+ } else {
2393
+ VectorSize::Size8x8
2394
+ },
2395
+ "",
2396
+ ),
2397
+ VecMisc2::Neg => ("neg", size, ""),
2398
+ VecMisc2::Abs => ("abs", size, ""),
2399
+ VecMisc2::Fabs => ("fabs", size, ""),
2400
+ VecMisc2::Fneg => ("fneg", size, ""),
2401
+ VecMisc2::Fsqrt => ("fsqrt", size, ""),
2402
+ VecMisc2::Rev16 => ("rev16", size, ""),
2403
+ VecMisc2::Rev32 => ("rev32", size, ""),
2404
+ VecMisc2::Rev64 => ("rev64", size, ""),
2405
+ VecMisc2::Fcvtzs => ("fcvtzs", size, ""),
2406
+ VecMisc2::Fcvtzu => ("fcvtzu", size, ""),
2407
+ VecMisc2::Scvtf => ("scvtf", size, ""),
2408
+ VecMisc2::Ucvtf => ("ucvtf", size, ""),
2409
+ VecMisc2::Frintn => ("frintn", size, ""),
2410
+ VecMisc2::Frintz => ("frintz", size, ""),
2411
+ VecMisc2::Frintm => ("frintm", size, ""),
2412
+ VecMisc2::Frintp => ("frintp", size, ""),
2413
+ VecMisc2::Cnt => ("cnt", size, ""),
2414
+ VecMisc2::Cmeq0 => ("cmeq", size, ", #0"),
2415
+ VecMisc2::Cmge0 => ("cmge", size, ", #0"),
2416
+ VecMisc2::Cmgt0 => ("cmgt", size, ", #0"),
2417
+ VecMisc2::Cmle0 => ("cmle", size, ", #0"),
2418
+ VecMisc2::Cmlt0 => ("cmlt", size, ", #0"),
2419
+ VecMisc2::Fcmeq0 => ("fcmeq", size, ", #0.0"),
2420
+ VecMisc2::Fcmge0 => ("fcmge", size, ", #0.0"),
2421
+ VecMisc2::Fcmgt0 => ("fcmgt", size, ", #0.0"),
2422
+ VecMisc2::Fcmle0 => ("fcmle", size, ", #0.0"),
2423
+ VecMisc2::Fcmlt0 => ("fcmlt", size, ", #0.0"),
2424
+ };
2425
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2426
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2427
+ format!("{} {}, {}{}", op, rd, rn, suffix)
2428
+ }
2429
+ &Inst::VecLanes { op, rd, rn, size } => {
2430
+ let op = match op {
2431
+ VecLanesOp::Uminv => "uminv",
2432
+ VecLanesOp::Addv => "addv",
2433
+ };
2434
+ let rd = pretty_print_vreg_scalar(rd.to_reg(), size.lane_size(), allocs);
2435
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2436
+ format!("{} {}, {}", op, rd, rn)
2437
+ }
2438
+ &Inst::VecShiftImm {
2439
+ op,
2440
+ rd,
2441
+ rn,
2442
+ size,
2443
+ imm,
2444
+ } => {
2445
+ let op = match op {
2446
+ VecShiftImmOp::Shl => "shl",
2447
+ VecShiftImmOp::Ushr => "ushr",
2448
+ VecShiftImmOp::Sshr => "sshr",
2449
+ };
2450
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2451
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2452
+ format!("{} {}, {}, #{}", op, rd, rn, imm)
2453
+ }
2454
+ &Inst::VecShiftImmMod {
2455
+ op,
2456
+ rd,
2457
+ ri,
2458
+ rn,
2459
+ size,
2460
+ imm,
2461
+ } => {
2462
+ let op = match op {
2463
+ VecShiftImmModOp::Sli => "sli",
2464
+ };
2465
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2466
+ let ri = pretty_print_vreg_vector(ri, size, allocs);
2467
+ let rn = pretty_print_vreg_vector(rn, size, allocs);
2468
+ format!("{} {}, {}, {}, #{}", op, rd, ri, rn, imm)
2469
+ }
2470
+ &Inst::VecExtract { rd, rn, rm, imm4 } => {
2471
+ let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2472
+ let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2473
+ let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2474
+ format!("ext {}, {}, {}, #{}", rd, rn, rm, imm4)
2475
+ }
2476
+ &Inst::VecTbl { rd, rn, rm } => {
2477
+ let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2478
+ let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2479
+ let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2480
+ format!("tbl {}, {{ {} }}, {}", rd, rn, rm)
2481
+ }
2482
+ &Inst::VecTblExt { rd, ri, rn, rm } => {
2483
+ let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2484
+ let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2485
+ let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2486
+ let ri = pretty_print_vreg_vector(ri, VectorSize::Size8x16, allocs);
2487
+ format!("tbx {}, {}, {{ {} }}, {}", rd, ri, rn, rm)
2488
+ }
2489
+ &Inst::VecTbl2 { rd, rn, rn2, rm } => {
2490
+ let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2491
+ let rn2 = pretty_print_vreg_vector(rn2, VectorSize::Size8x16, allocs);
2492
+ let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2493
+ let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2494
+ format!("tbl {}, {{ {}, {} }}, {}", rd, rn, rn2, rm)
2495
+ }
2496
+ &Inst::VecTbl2Ext {
2497
+ rd,
2498
+ ri,
2499
+ rn,
2500
+ rn2,
2501
+ rm,
2502
+ } => {
2503
+ let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2504
+ let rn2 = pretty_print_vreg_vector(rn2, VectorSize::Size8x16, allocs);
2505
+ let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2506
+ let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2507
+ let ri = pretty_print_vreg_vector(ri, VectorSize::Size8x16, allocs);
2508
+ format!("tbx {}, {}, {{ {}, {} }}, {}", rd, ri, rn, rn2, rm)
2509
+ }
2510
+ &Inst::VecLoadReplicate { rd, rn, size, .. } => {
2511
+ let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2512
+ let rn = pretty_print_reg(rn, allocs);
2513
+
2514
+ format!("ld1r {{ {} }}, [{}]", rd, rn)
2515
+ }
2516
+ &Inst::VecCSel { rd, rn, rm, cond } => {
2517
+ let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2518
+ let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2519
+ let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2520
+ let cond = cond.pretty_print(0, allocs);
2521
+ format!(
2522
+ "vcsel {}, {}, {}, {} (if-then-else diamond)",
2523
+ rd, rn, rm, cond
2524
+ )
2525
+ }
2526
+ &Inst::MovToNZCV { rn } => {
2527
+ let rn = pretty_print_reg(rn, allocs);
2528
+ format!("msr nzcv, {}", rn)
2529
+ }
2530
+ &Inst::MovFromNZCV { rd } => {
2531
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
2532
+ format!("mrs {}, nzcv", rd)
2533
+ }
2534
+ &Inst::Extend {
2535
+ rd,
2536
+ rn,
2537
+ signed: false,
2538
+ from_bits: 1,
2539
+ ..
2540
+ } => {
2541
+ let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size32, allocs);
2542
+ let rn = pretty_print_ireg(rn, OperandSize::Size32, allocs);
2543
+ format!("and {}, {}, #1", rd, rn)
2544
+ }
2545
+ &Inst::Extend {
2546
+ rd,
2547
+ rn,
2548
+ signed: false,
2549
+ from_bits: 32,
2550
+ to_bits: 64,
2551
+ } => {
2552
+ // The case of a zero extension from 32 to 64 bits, is implemented
2553
+ // with a "mov" to a 32-bit (W-reg) dest, because this zeroes
2554
+ // the top 32 bits.
2555
+ let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size32, allocs);
2556
+ let rn = pretty_print_ireg(rn, OperandSize::Size32, allocs);
2557
+ format!("mov {}, {}", rd, rn)
2558
+ }
2559
+ &Inst::Extend {
2560
+ rd,
2561
+ rn,
2562
+ signed,
2563
+ from_bits,
2564
+ to_bits,
2565
+ } => {
2566
+ assert!(from_bits <= to_bits);
2567
+ let op = match (signed, from_bits) {
2568
+ (false, 8) => "uxtb",
2569
+ (true, 8) => "sxtb",
2570
+ (false, 16) => "uxth",
2571
+ (true, 16) => "sxth",
2572
+ (true, 32) => "sxtw",
2573
+ (true, _) => "sbfx",
2574
+ (false, _) => "ubfx",
2575
+ };
2576
+ if op == "sbfx" || op == "ubfx" {
2577
+ let dest_size = OperandSize::from_bits(to_bits);
2578
+ let rd = pretty_print_ireg(rd.to_reg(), dest_size, allocs);
2579
+ let rn = pretty_print_ireg(rn, dest_size, allocs);
2580
+ format!("{} {}, {}, #0, #{}", op, rd, rn, from_bits)
2581
+ } else {
2582
+ let dest_size = if signed {
2583
+ OperandSize::from_bits(to_bits)
2584
+ } else {
2585
+ OperandSize::Size32
2586
+ };
2587
+ let rd = pretty_print_ireg(rd.to_reg(), dest_size, allocs);
2588
+ let rn = pretty_print_ireg(rn, OperandSize::from_bits(from_bits), allocs);
2589
+ format!("{} {}, {}", op, rd, rn)
2590
+ }
2591
+ }
2592
+ &Inst::Call { .. } => format!("bl 0"),
2593
+ &Inst::CallInd { ref info, .. } => {
2594
+ let rn = pretty_print_reg(info.rn, allocs);
2595
+ format!("blr {}", rn)
2596
+ }
2597
+ &Inst::ReturnCall {
2598
+ ref callee,
2599
+ ref info,
2600
+ } => {
2601
+ let mut s = format!(
2602
+ "return_call {callee:?} new_stack_arg_size:{}",
2603
+ info.new_stack_arg_size
2604
+ );
2605
+ for ret in &info.uses {
2606
+ let preg = pretty_print_reg(ret.preg, &mut empty_allocs);
2607
+ let vreg = pretty_print_reg(ret.vreg, allocs);
2608
+ write!(&mut s, " {vreg}={preg}").unwrap();
2609
+ }
2610
+ s
2611
+ }
2612
+ &Inst::ReturnCallInd { callee, ref info } => {
2613
+ let callee = pretty_print_reg(callee, allocs);
2614
+ let mut s = format!(
2615
+ "return_call_ind {callee} new_stack_arg_size:{}",
2616
+ info.new_stack_arg_size
2617
+ );
2618
+ for ret in &info.uses {
2619
+ let preg = pretty_print_reg(ret.preg, &mut empty_allocs);
2620
+ let vreg = pretty_print_reg(ret.vreg, allocs);
2621
+ write!(&mut s, " {vreg}={preg}").unwrap();
2622
+ }
2623
+ s
2624
+ }
2625
+ &Inst::Args { ref args } => {
2626
+ let mut s = "args".to_string();
2627
+ for arg in args {
2628
+ let preg = pretty_print_reg(arg.preg, &mut empty_allocs);
2629
+ let def = pretty_print_reg(arg.vreg.to_reg(), allocs);
2630
+ write!(&mut s, " {}={}", def, preg).unwrap();
2631
+ }
2632
+ s
2633
+ }
2634
+ &Inst::Rets { ref rets } => {
2635
+ let mut s = "rets".to_string();
2636
+ for ret in rets {
2637
+ let preg = pretty_print_reg(ret.preg, &mut empty_allocs);
2638
+ let vreg = pretty_print_reg(ret.vreg, allocs);
2639
+ write!(&mut s, " {vreg}={preg}").unwrap();
2640
+ }
2641
+ s
2642
+ }
2643
+ &Inst::Ret {} => "ret".to_string(),
2644
+ &Inst::AuthenticatedRet { key, is_hint } => {
2645
+ let key = match key {
2646
+ APIKey::AZ => "az",
2647
+ APIKey::BZ => "bz",
2648
+ APIKey::ASP => "asp",
2649
+ APIKey::BSP => "bsp",
2650
+ };
2651
+ match is_hint {
2652
+ false => format!("reta{key}"),
2653
+ true => format!("auti{key} ; ret"),
2654
+ }
2655
+ }
2656
+ &Inst::Jump { ref dest } => {
2657
+ let dest = dest.pretty_print(0, allocs);
2658
+ format!("b {}", dest)
2659
+ }
2660
+ &Inst::CondBr {
2661
+ ref taken,
2662
+ ref not_taken,
2663
+ ref kind,
2664
+ } => {
2665
+ let taken = taken.pretty_print(0, allocs);
2666
+ let not_taken = not_taken.pretty_print(0, allocs);
2667
+ match kind {
2668
+ &CondBrKind::Zero(reg) => {
2669
+ let reg = pretty_print_reg(reg, allocs);
2670
+ format!("cbz {}, {} ; b {}", reg, taken, not_taken)
2671
+ }
2672
+ &CondBrKind::NotZero(reg) => {
2673
+ let reg = pretty_print_reg(reg, allocs);
2674
+ format!("cbnz {}, {} ; b {}", reg, taken, not_taken)
2675
+ }
2676
+ &CondBrKind::Cond(c) => {
2677
+ let c = c.pretty_print(0, allocs);
2678
+ format!("b.{} {} ; b {}", c, taken, not_taken)
2679
+ }
2680
+ }
2681
+ }
2682
+ &Inst::TestBitAndBranch {
2683
+ kind,
2684
+ ref taken,
2685
+ ref not_taken,
2686
+ rn,
2687
+ bit,
2688
+ } => {
2689
+ let cond = match kind {
2690
+ TestBitAndBranchKind::Z => "z",
2691
+ TestBitAndBranchKind::NZ => "nz",
2692
+ };
2693
+ let taken = taken.pretty_print(0, allocs);
2694
+ let not_taken = not_taken.pretty_print(0, allocs);
2695
+ let rn = pretty_print_reg(rn, allocs);
2696
+ format!("tb{cond} {rn}, #{bit}, {taken} ; b {not_taken}")
2697
+ }
2698
+ &Inst::IndirectBr { rn, .. } => {
2699
+ let rn = pretty_print_reg(rn, allocs);
2700
+ format!("br {}", rn)
2701
+ }
2702
+ &Inst::Brk => "brk #0".to_string(),
2703
+ &Inst::Udf { .. } => "udf #0xc11f".to_string(),
2704
+ &Inst::TrapIf {
2705
+ ref kind,
2706
+ trap_code,
2707
+ } => match kind {
2708
+ &CondBrKind::Zero(reg) => {
2709
+ let reg = pretty_print_reg(reg, allocs);
2710
+ format!("cbz {reg}, #trap={trap_code}")
2711
+ }
2712
+ &CondBrKind::NotZero(reg) => {
2713
+ let reg = pretty_print_reg(reg, allocs);
2714
+ format!("cbnz {reg}, #trap={trap_code}")
2715
+ }
2716
+ &CondBrKind::Cond(c) => {
2717
+ let c = c.pretty_print(0, allocs);
2718
+ format!("b.{c} #trap={trap_code}")
2719
+ }
2720
+ },
2721
+ &Inst::Adr { rd, off } => {
2722
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
2723
+ format!("adr {}, pc+{}", rd, off)
2724
+ }
2725
+ &Inst::Adrp { rd, off } => {
2726
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
2727
+ // This instruction addresses 4KiB pages, so multiply it by the page size.
2728
+ let byte_offset = off * 4096;
2729
+ format!("adrp {}, pc+{}", rd, byte_offset)
2730
+ }
2731
+ &Inst::Word4 { data } => format!("data.i32 {}", data),
2732
+ &Inst::Word8 { data } => format!("data.i64 {}", data),
2733
+ &Inst::JTSequence {
2734
+ default,
2735
+ ref targets,
2736
+ ridx,
2737
+ rtmp1,
2738
+ rtmp2,
2739
+ ..
2740
+ } => {
2741
+ let ridx = pretty_print_reg(ridx, allocs);
2742
+ let rtmp1 = pretty_print_reg(rtmp1.to_reg(), allocs);
2743
+ let rtmp2 = pretty_print_reg(rtmp2.to_reg(), allocs);
2744
+ let default_target = BranchTarget::Label(default).pretty_print(0, allocs);
2745
+ format!(
2746
+ concat!(
2747
+ "b.hs {} ; ",
2748
+ "csel {}, xzr, {}, hs ; ",
2749
+ "csdb ; ",
2750
+ "adr {}, pc+16 ; ",
2751
+ "ldrsw {}, [{}, {}, uxtw #2] ; ",
2752
+ "add {}, {}, {} ; ",
2753
+ "br {} ; ",
2754
+ "jt_entries {:?}"
2755
+ ),
2756
+ default_target,
2757
+ rtmp2,
2758
+ ridx,
2759
+ rtmp1,
2760
+ rtmp2,
2761
+ rtmp1,
2762
+ rtmp2,
2763
+ rtmp1,
2764
+ rtmp1,
2765
+ rtmp2,
2766
+ rtmp1,
2767
+ targets
2768
+ )
2769
+ }
2770
+ &Inst::LoadExtName {
2771
+ rd,
2772
+ ref name,
2773
+ offset,
2774
+ } => {
2775
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
2776
+ format!("load_ext_name {rd}, {name:?}+{offset}")
2777
+ }
2778
+ &Inst::LoadAddr { rd, ref mem } => {
2779
+ // TODO: we really should find a better way to avoid duplication of
2780
+ // this logic between `emit()` and `show_rru()` -- a separate 1-to-N
2781
+ // expansion stage (i.e., legalization, but without the slow edit-in-place
2782
+ // of the existing legalization framework).
2783
+ let rd = allocs.next_writable(rd);
2784
+ let mem = mem.with_allocs(allocs);
2785
+ let (mem_insts, mem) = mem_finalize(None, &mem, I8, state);
2786
+ let mut ret = String::new();
2787
+ for inst in mem_insts.into_iter() {
2788
+ ret.push_str(
2789
+ &inst.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2790
+ );
2791
+ }
2792
+ let (reg, index_reg, offset) = match mem {
2793
+ AMode::RegExtended { rn, rm, extendop } => (rn, Some((rm, extendop)), 0),
2794
+ AMode::Unscaled { rn, simm9 } => (rn, None, simm9.value()),
2795
+ AMode::UnsignedOffset { rn, uimm12 } => (rn, None, uimm12.value() as i32),
2796
+ _ => panic!("Unsupported case for LoadAddr: {:?}", mem),
2797
+ };
2798
+ let abs_offset = if offset < 0 {
2799
+ -offset as u64
2800
+ } else {
2801
+ offset as u64
2802
+ };
2803
+ let alu_op = if offset < 0 { ALUOp::Sub } else { ALUOp::Add };
2804
+
2805
+ if let Some((idx, extendop)) = index_reg {
2806
+ let add = Inst::AluRRRExtend {
2807
+ alu_op: ALUOp::Add,
2808
+ size: OperandSize::Size64,
2809
+ rd,
2810
+ rn: reg,
2811
+ rm: idx,
2812
+ extendop,
2813
+ };
2814
+
2815
+ ret.push_str(
2816
+ &add.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2817
+ );
2818
+ } else if offset == 0 {
2819
+ let mov = Inst::gen_move(rd, reg, I64);
2820
+ ret.push_str(
2821
+ &mov.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2822
+ );
2823
+ } else if let Some(imm12) = Imm12::maybe_from_u64(abs_offset) {
2824
+ let add = Inst::AluRRImm12 {
2825
+ alu_op,
2826
+ size: OperandSize::Size64,
2827
+ rd,
2828
+ rn: reg,
2829
+ imm12,
2830
+ };
2831
+ ret.push_str(
2832
+ &add.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2833
+ );
2834
+ } else {
2835
+ let tmp = writable_spilltmp_reg();
2836
+ for inst in Inst::load_constant(tmp, abs_offset, &mut |_| tmp).into_iter() {
2837
+ ret.push_str(
2838
+ &inst.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2839
+ );
2840
+ }
2841
+ let add = Inst::AluRRR {
2842
+ alu_op,
2843
+ size: OperandSize::Size64,
2844
+ rd,
2845
+ rn: reg,
2846
+ rm: tmp.to_reg(),
2847
+ };
2848
+ ret.push_str(
2849
+ &add.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2850
+ );
2851
+ }
2852
+ ret
2853
+ }
2854
+ &Inst::Paci { key } => {
2855
+ let key = match key {
2856
+ APIKey::AZ => "az",
2857
+ APIKey::BZ => "bz",
2858
+ APIKey::ASP => "asp",
2859
+ APIKey::BSP => "bsp",
2860
+ };
2861
+
2862
+ "paci".to_string() + key
2863
+ }
2864
+ &Inst::Xpaclri => "xpaclri".to_string(),
2865
+ &Inst::Bti { targets } => {
2866
+ let targets = match targets {
2867
+ BranchTargetType::None => "",
2868
+ BranchTargetType::C => " c",
2869
+ BranchTargetType::J => " j",
2870
+ BranchTargetType::JC => " jc",
2871
+ };
2872
+
2873
+ "bti".to_string() + targets
2874
+ }
2875
+ &Inst::VirtualSPOffsetAdj { offset } => {
2876
+ state.virtual_sp_offset += offset;
2877
+ format!("virtual_sp_offset_adjust {}", offset)
2878
+ }
2879
+ &Inst::EmitIsland { needed_space } => format!("emit_island {}", needed_space),
2880
+
2881
+ &Inst::ElfTlsGetAddr {
2882
+ ref symbol,
2883
+ rd,
2884
+ tmp,
2885
+ } => {
2886
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
2887
+ let tmp = pretty_print_reg(tmp.to_reg(), allocs);
2888
+ format!("elf_tls_get_addr {}, {}, {}", rd, tmp, symbol.display(None))
2889
+ }
2890
+ &Inst::MachOTlsGetAddr { ref symbol, rd } => {
2891
+ let rd = pretty_print_reg(rd.to_reg(), allocs);
2892
+ format!("macho_tls_get_addr {}, {}", rd, symbol.display(None))
2893
+ }
2894
+ &Inst::Unwind { ref inst } => {
2895
+ format!("unwind {:?}", inst)
2896
+ }
2897
+ &Inst::DummyUse { reg } => {
2898
+ let reg = pretty_print_reg(reg, allocs);
2899
+ format!("dummy_use {}", reg)
2900
+ }
2901
+ &Inst::StackProbeLoop { start, end, step } => {
2902
+ let start = pretty_print_reg(start.to_reg(), allocs);
2903
+ let end = pretty_print_reg(end, allocs);
2904
+ let step = step.pretty_print(0, allocs);
2905
+ format!("stack_probe_loop {start}, {end}, {step}")
2906
+ }
2907
+ }
2908
+ }
2909
+ }
2910
+
2911
+ //=============================================================================
2912
+ // Label fixups and jump veneers.
2913
+
2914
+ /// Different forms of label references for different instruction formats.
2915
+ #[derive(Clone, Copy, Debug, PartialEq, Eq)]
2916
+ pub enum LabelUse {
2917
+ /// 14-bit branch offset (conditional branches). PC-rel, offset is imm <<
2918
+ /// 2. Immediate is 14 signed bits, in bits 18:5. Used by tbz and tbnz.
2919
+ Branch14,
2920
+ /// 19-bit branch offset (conditional branches). PC-rel, offset is imm << 2. Immediate is 19
2921
+ /// signed bits, in bits 23:5. Used by cbz, cbnz, b.cond.
2922
+ Branch19,
2923
+ /// 26-bit branch offset (unconditional branches). PC-rel, offset is imm << 2. Immediate is 26
2924
+ /// signed bits, in bits 25:0. Used by b, bl.
2925
+ Branch26,
2926
+ #[allow(dead_code)]
2927
+ /// 19-bit offset for LDR (load literal). PC-rel, offset is imm << 2. Immediate is 19 signed bits,
2928
+ /// in bits 23:5.
2929
+ Ldr19,
2930
+ #[allow(dead_code)]
2931
+ /// 21-bit offset for ADR (get address of label). PC-rel, offset is not shifted. Immediate is
2932
+ /// 21 signed bits, with high 19 bits in bits 23:5 and low 2 bits in bits 30:29.
2933
+ Adr21,
2934
+ /// 32-bit PC relative constant offset (from address of constant itself),
2935
+ /// signed. Used in jump tables.
2936
+ PCRel32,
2937
+ }
2938
+
2939
+ impl MachInstLabelUse for LabelUse {
2940
+ /// Alignment for veneer code. Every AArch64 instruction must be 4-byte-aligned.
2941
+ const ALIGN: CodeOffset = 4;
2942
+
2943
+ /// Maximum PC-relative range (positive), inclusive.
2944
+ fn max_pos_range(self) -> CodeOffset {
2945
+ match self {
2946
+ // N-bit immediate, left-shifted by 2, for (N+2) bits of total
2947
+ // range. Signed, so +2^(N+1) from zero. Likewise for two other
2948
+ // shifted cases below.
2949
+ LabelUse::Branch14 => (1 << 15) - 1,
2950
+ LabelUse::Branch19 => (1 << 20) - 1,
2951
+ LabelUse::Branch26 => (1 << 27) - 1,
2952
+ LabelUse::Ldr19 => (1 << 20) - 1,
2953
+ // Adr does not shift its immediate, so the 21-bit immediate gives 21 bits of total
2954
+ // range.
2955
+ LabelUse::Adr21 => (1 << 20) - 1,
2956
+ LabelUse::PCRel32 => 0x7fffffff,
2957
+ }
2958
+ }
2959
+
2960
+ /// Maximum PC-relative range (negative).
2961
+ fn max_neg_range(self) -> CodeOffset {
2962
+ // All forms are twos-complement signed offsets, so negative limit is one more than
2963
+ // positive limit.
2964
+ self.max_pos_range() + 1
2965
+ }
2966
+
2967
+ /// Size of window into code needed to do the patch.
2968
+ fn patch_size(self) -> CodeOffset {
2969
+ // Patch is on one instruction only for all of these label reference types.
2970
+ 4
2971
+ }
2972
+
2973
+ /// Perform the patch.
2974
+ fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
2975
+ let pc_rel = (label_offset as i64) - (use_offset as i64);
2976
+ debug_assert!(pc_rel <= self.max_pos_range() as i64);
2977
+ debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
2978
+ let pc_rel = pc_rel as u32;
2979
+ let insn_word = u32::from_le_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
2980
+ let mask = match self {
2981
+ LabelUse::Branch14 => 0x0007ffe0, // bits 18..5 inclusive
2982
+ LabelUse::Branch19 => 0x00ffffe0, // bits 23..5 inclusive
2983
+ LabelUse::Branch26 => 0x03ffffff, // bits 25..0 inclusive
2984
+ LabelUse::Ldr19 => 0x00ffffe0, // bits 23..5 inclusive
2985
+ LabelUse::Adr21 => 0x60ffffe0, // bits 30..29, 25..5 inclusive
2986
+ LabelUse::PCRel32 => 0xffffffff,
2987
+ };
2988
+ let pc_rel_shifted = match self {
2989
+ LabelUse::Adr21 | LabelUse::PCRel32 => pc_rel,
2990
+ _ => {
2991
+ debug_assert!(pc_rel & 3 == 0);
2992
+ pc_rel >> 2
2993
+ }
2994
+ };
2995
+ let pc_rel_inserted = match self {
2996
+ LabelUse::Branch14 => (pc_rel_shifted & 0x3fff) << 5,
2997
+ LabelUse::Branch19 | LabelUse::Ldr19 => (pc_rel_shifted & 0x7ffff) << 5,
2998
+ LabelUse::Branch26 => pc_rel_shifted & 0x3ffffff,
2999
+ LabelUse::Adr21 => (pc_rel_shifted & 0x7ffff) << 5 | (pc_rel_shifted & 0x180000) << 10,
3000
+ LabelUse::PCRel32 => pc_rel_shifted,
3001
+ };
3002
+ let is_add = match self {
3003
+ LabelUse::PCRel32 => true,
3004
+ _ => false,
3005
+ };
3006
+ let insn_word = if is_add {
3007
+ insn_word.wrapping_add(pc_rel_inserted)
3008
+ } else {
3009
+ (insn_word & !mask) | pc_rel_inserted
3010
+ };
3011
+ buffer[0..4].clone_from_slice(&u32::to_le_bytes(insn_word));
3012
+ }
3013
+
3014
+ /// Is a veneer supported for this label reference type?
3015
+ fn supports_veneer(self) -> bool {
3016
+ match self {
3017
+ LabelUse::Branch14 | LabelUse::Branch19 => true, // veneer is a Branch26
3018
+ LabelUse::Branch26 => true, // veneer is a PCRel32
3019
+ _ => false,
3020
+ }
3021
+ }
3022
+
3023
+ /// How large is the veneer, if supported?
3024
+ fn veneer_size(self) -> CodeOffset {
3025
+ match self {
3026
+ LabelUse::Branch14 | LabelUse::Branch19 => 4,
3027
+ LabelUse::Branch26 => 20,
3028
+ _ => unreachable!(),
3029
+ }
3030
+ }
3031
+
3032
+ fn worst_case_veneer_size() -> CodeOffset {
3033
+ 20
3034
+ }
3035
+
3036
+ /// Generate a veneer into the buffer, given that this veneer is at `veneer_offset`, and return
3037
+ /// an offset and label-use for the veneer's use of the original label.
3038
+ fn generate_veneer(
3039
+ self,
3040
+ buffer: &mut [u8],
3041
+ veneer_offset: CodeOffset,
3042
+ ) -> (CodeOffset, LabelUse) {
3043
+ match self {
3044
+ LabelUse::Branch14 | LabelUse::Branch19 => {
3045
+ // veneer is a Branch26 (unconditional branch). Just encode directly here -- don't
3046
+ // bother with constructing an Inst.
3047
+ let insn_word = 0b000101 << 26;
3048
+ buffer[0..4].clone_from_slice(&u32::to_le_bytes(insn_word));
3049
+ (veneer_offset, LabelUse::Branch26)
3050
+ }
3051
+
3052
+ // This is promoting a 26-bit call/jump to a 32-bit call/jump to
3053
+ // get a further range. This jump translates to a jump to a
3054
+ // relative location based on the address of the constant loaded
3055
+ // from here.
3056
+ //
3057
+ // If this path is taken from a call instruction then caller-saved
3058
+ // registers are available (minus arguments), so x16/x17 are
3059
+ // available. Otherwise for intra-function jumps we also reserve
3060
+ // x16/x17 as spill-style registers. In both cases these are
3061
+ // available for us to use.
3062
+ LabelUse::Branch26 => {
3063
+ let tmp1 = regs::spilltmp_reg();
3064
+ let tmp1_w = regs::writable_spilltmp_reg();
3065
+ let tmp2 = regs::tmp2_reg();
3066
+ let tmp2_w = regs::writable_tmp2_reg();
3067
+ // ldrsw x16, 16
3068
+ let ldr = emit::enc_ldst_imm19(0b1001_1000, 16 / 4, tmp1);
3069
+ // adr x17, 12
3070
+ let adr = emit::enc_adr(12, tmp2_w);
3071
+ // add x16, x16, x17
3072
+ let add = emit::enc_arith_rrr(0b10001011_000, 0, tmp1_w, tmp1, tmp2);
3073
+ // br x16
3074
+ let br = emit::enc_br(tmp1);
3075
+ buffer[0..4].clone_from_slice(&u32::to_le_bytes(ldr));
3076
+ buffer[4..8].clone_from_slice(&u32::to_le_bytes(adr));
3077
+ buffer[8..12].clone_from_slice(&u32::to_le_bytes(add));
3078
+ buffer[12..16].clone_from_slice(&u32::to_le_bytes(br));
3079
+ // the 4-byte signed immediate we'll load is after these
3080
+ // instructions, 16-bytes in.
3081
+ (veneer_offset + 16, LabelUse::PCRel32)
3082
+ }
3083
+
3084
+ _ => panic!("Unsupported label-reference type for veneer generation!"),
3085
+ }
3086
+ }
3087
+
3088
+ fn from_reloc(reloc: Reloc, addend: Addend) -> Option<LabelUse> {
3089
+ match (reloc, addend) {
3090
+ (Reloc::Arm64Call, 0) => Some(LabelUse::Branch26),
3091
+ _ => None,
3092
+ }
3093
+ }
3094
+ }