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
@@ -1,3083 +0,0 @@
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, VReg};
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 current/old stack frame's stack arguments.
134
- pub old_stack_arg_size: u32,
135
- /// The size of the new stack frame's stack arguments. This is necessary
136
- /// for copying the frame over our current frame. It must already be
137
- /// allocated on the stack.
138
- pub new_stack_arg_size: u32,
139
- /// API key to use to restore the return address, if any.
140
- pub key: Option<APIKey>,
141
- }
142
-
143
- fn count_zero_half_words(mut value: u64, num_half_words: u8) -> usize {
144
- let mut count = 0;
145
- for _ in 0..num_half_words {
146
- if value & 0xffff == 0 {
147
- count += 1;
148
- }
149
- value >>= 16;
150
- }
151
-
152
- count
153
- }
154
-
155
- #[test]
156
- fn inst_size_test() {
157
- // This test will help with unintentionally growing the size
158
- // of the Inst enum.
159
- assert_eq!(32, std::mem::size_of::<Inst>());
160
- }
161
-
162
- impl Inst {
163
- /// Create an instruction that loads a constant, using one of serveral options (MOVZ, MOVN,
164
- /// logical immediate, or constant pool).
165
- pub fn load_constant<F: FnMut(Type) -> Writable<Reg>>(
166
- rd: Writable<Reg>,
167
- value: u64,
168
- alloc_tmp: &mut F,
169
- ) -> SmallVec<[Inst; 4]> {
170
- // NB: this is duplicated in `lower/isle.rs` and `inst.isle` right now,
171
- // if modifications are made here before this is deleted after moving to
172
- // ISLE then those locations should be updated as well.
173
-
174
- if let Some(imm) = MoveWideConst::maybe_from_u64(value) {
175
- // 16-bit immediate (shifted by 0, 16, 32 or 48 bits) in MOVZ
176
- smallvec![Inst::MovWide {
177
- op: MoveWideOp::MovZ,
178
- rd,
179
- imm,
180
- size: OperandSize::Size64
181
- }]
182
- } else if let Some(imm) = MoveWideConst::maybe_from_u64(!value) {
183
- // 16-bit immediate (shifted by 0, 16, 32 or 48 bits) in MOVN
184
- smallvec![Inst::MovWide {
185
- op: MoveWideOp::MovN,
186
- rd,
187
- imm,
188
- size: OperandSize::Size64
189
- }]
190
- } else if let Some(imml) = ImmLogic::maybe_from_u64(value, I64) {
191
- // Weird logical-instruction immediate in ORI using zero register
192
- smallvec![Inst::AluRRImmLogic {
193
- alu_op: ALUOp::Orr,
194
- size: OperandSize::Size64,
195
- rd,
196
- rn: zero_reg(),
197
- imml,
198
- }]
199
- } else {
200
- let mut insts = smallvec![];
201
-
202
- // If the top 32 bits are zero, use 32-bit `mov` operations.
203
- let (num_half_words, size, negated) = if value >> 32 == 0 {
204
- (2, OperandSize::Size32, (!value << 32) >> 32)
205
- } else {
206
- (4, OperandSize::Size64, !value)
207
- };
208
-
209
- // If the number of 0xffff half words is greater than the number of 0x0000 half words
210
- // it is more efficient to use `movn` for the first instruction.
211
- let first_is_inverted = count_zero_half_words(negated, num_half_words)
212
- > count_zero_half_words(value, num_half_words);
213
-
214
- // Either 0xffff or 0x0000 half words can be skipped, depending on the first
215
- // instruction used.
216
- let ignored_halfword = if first_is_inverted { 0xffff } else { 0 };
217
-
218
- let halfwords: SmallVec<[_; 4]> = (0..num_half_words)
219
- .filter_map(|i| {
220
- let imm16 = (value >> (16 * i)) & 0xffff;
221
- if imm16 == ignored_halfword {
222
- None
223
- } else {
224
- Some((i, imm16))
225
- }
226
- })
227
- .collect();
228
-
229
- let mut prev_result = None;
230
- let last_index = halfwords.last().unwrap().0;
231
- for (i, imm16) in halfwords {
232
- let shift = i * 16;
233
- let rd = if i == last_index { rd } else { alloc_tmp(I16) };
234
-
235
- if let Some(rn) = prev_result {
236
- let imm = MoveWideConst::maybe_with_shift(imm16 as u16, shift).unwrap();
237
- insts.push(Inst::MovK { rd, rn, imm, size });
238
- } else {
239
- if first_is_inverted {
240
- let imm =
241
- MoveWideConst::maybe_with_shift(((!imm16) & 0xffff) as u16, shift)
242
- .unwrap();
243
- insts.push(Inst::MovWide {
244
- op: MoveWideOp::MovN,
245
- rd,
246
- imm,
247
- size,
248
- });
249
- } else {
250
- let imm = MoveWideConst::maybe_with_shift(imm16 as u16, shift).unwrap();
251
- insts.push(Inst::MovWide {
252
- op: MoveWideOp::MovZ,
253
- rd,
254
- imm,
255
- size,
256
- });
257
- }
258
- }
259
-
260
- prev_result = Some(rd.to_reg());
261
- }
262
-
263
- assert!(prev_result.is_some());
264
-
265
- insts
266
- }
267
- }
268
-
269
- /// Generic constructor for a load (zero-extending where appropriate).
270
- pub fn gen_load(into_reg: Writable<Reg>, mem: AMode, ty: Type, flags: MemFlags) -> Inst {
271
- match ty {
272
- I8 => Inst::ULoad8 {
273
- rd: into_reg,
274
- mem,
275
- flags,
276
- },
277
- I16 => Inst::ULoad16 {
278
- rd: into_reg,
279
- mem,
280
- flags,
281
- },
282
- I32 | R32 => Inst::ULoad32 {
283
- rd: into_reg,
284
- mem,
285
- flags,
286
- },
287
- I64 | R64 => Inst::ULoad64 {
288
- rd: into_reg,
289
- mem,
290
- flags,
291
- },
292
- F32 => Inst::FpuLoad32 {
293
- rd: into_reg,
294
- mem,
295
- flags,
296
- },
297
- F64 => Inst::FpuLoad64 {
298
- rd: into_reg,
299
- mem,
300
- flags,
301
- },
302
- _ => {
303
- if ty.is_vector() {
304
- let bits = ty_bits(ty);
305
- let rd = into_reg;
306
-
307
- if bits == 128 {
308
- Inst::FpuLoad128 { rd, mem, flags }
309
- } else {
310
- assert_eq!(bits, 64);
311
- Inst::FpuLoad64 { rd, mem, flags }
312
- }
313
- } else {
314
- unimplemented!("gen_load({})", ty);
315
- }
316
- }
317
- }
318
- }
319
-
320
- /// Generic constructor for a store.
321
- pub fn gen_store(mem: AMode, from_reg: Reg, ty: Type, flags: MemFlags) -> Inst {
322
- match ty {
323
- I8 => Inst::Store8 {
324
- rd: from_reg,
325
- mem,
326
- flags,
327
- },
328
- I16 => Inst::Store16 {
329
- rd: from_reg,
330
- mem,
331
- flags,
332
- },
333
- I32 | R32 => Inst::Store32 {
334
- rd: from_reg,
335
- mem,
336
- flags,
337
- },
338
- I64 | R64 => Inst::Store64 {
339
- rd: from_reg,
340
- mem,
341
- flags,
342
- },
343
- F32 => Inst::FpuStore32 {
344
- rd: from_reg,
345
- mem,
346
- flags,
347
- },
348
- F64 => Inst::FpuStore64 {
349
- rd: from_reg,
350
- mem,
351
- flags,
352
- },
353
- _ => {
354
- if ty.is_vector() {
355
- let bits = ty_bits(ty);
356
- let rd = from_reg;
357
-
358
- if bits == 128 {
359
- Inst::FpuStore128 { rd, mem, flags }
360
- } else {
361
- assert_eq!(bits, 64);
362
- Inst::FpuStore64 { rd, mem, flags }
363
- }
364
- } else {
365
- unimplemented!("gen_store({})", ty);
366
- }
367
- }
368
- }
369
- }
370
- }
371
-
372
- //=============================================================================
373
- // Instructions: get_regs
374
-
375
- fn memarg_operands<F: Fn(VReg) -> VReg>(memarg: &AMode, collector: &mut OperandCollector<'_, F>) {
376
- // This should match `AMode::with_allocs()`.
377
- match memarg {
378
- &AMode::Unscaled { rn, .. } | &AMode::UnsignedOffset { rn, .. } => {
379
- collector.reg_use(rn);
380
- }
381
- &AMode::RegReg { rn, rm, .. }
382
- | &AMode::RegScaled { rn, rm, .. }
383
- | &AMode::RegScaledExtended { rn, rm, .. }
384
- | &AMode::RegExtended { rn, rm, .. } => {
385
- collector.reg_use(rn);
386
- collector.reg_use(rm);
387
- }
388
- &AMode::Label { .. } => {}
389
- &AMode::SPPreIndexed { .. } | &AMode::SPPostIndexed { .. } => {}
390
- &AMode::FPOffset { .. } => {}
391
- &AMode::SPOffset { .. } | &AMode::NominalSPOffset { .. } => {}
392
- &AMode::RegOffset { rn, .. } => {
393
- collector.reg_use(rn);
394
- }
395
- &AMode::Const { .. } => {}
396
- }
397
- }
398
-
399
- fn pairmemarg_operands<F: Fn(VReg) -> VReg>(
400
- pairmemarg: &PairAMode,
401
- collector: &mut OperandCollector<'_, F>,
402
- ) {
403
- // This should match `PairAMode::with_allocs()`.
404
- match pairmemarg {
405
- &PairAMode::SignedOffset { reg, .. } => {
406
- collector.reg_use(reg);
407
- }
408
- &PairAMode::SPPreIndexed { .. } | &PairAMode::SPPostIndexed { .. } => {}
409
- }
410
- }
411
-
412
- fn aarch64_get_operands<F: Fn(VReg) -> VReg>(inst: &Inst, collector: &mut OperandCollector<'_, F>) {
413
- match inst {
414
- &Inst::AluRRR { rd, rn, rm, .. } => {
415
- collector.reg_def(rd);
416
- collector.reg_use(rn);
417
- collector.reg_use(rm);
418
- }
419
- &Inst::AluRRRR { rd, rn, rm, ra, .. } => {
420
- collector.reg_def(rd);
421
- collector.reg_use(rn);
422
- collector.reg_use(rm);
423
- collector.reg_use(ra);
424
- }
425
- &Inst::AluRRImm12 { rd, rn, .. } => {
426
- collector.reg_def(rd);
427
- collector.reg_use(rn);
428
- }
429
- &Inst::AluRRImmLogic { rd, rn, .. } => {
430
- collector.reg_def(rd);
431
- collector.reg_use(rn);
432
- }
433
- &Inst::AluRRImmShift { rd, rn, .. } => {
434
- collector.reg_def(rd);
435
- collector.reg_use(rn);
436
- }
437
- &Inst::AluRRRShift { rd, rn, rm, .. } => {
438
- collector.reg_def(rd);
439
- collector.reg_use(rn);
440
- collector.reg_use(rm);
441
- }
442
- &Inst::AluRRRExtend { rd, rn, rm, .. } => {
443
- collector.reg_def(rd);
444
- collector.reg_use(rn);
445
- collector.reg_use(rm);
446
- }
447
- &Inst::BitRR { rd, rn, .. } => {
448
- collector.reg_def(rd);
449
- collector.reg_use(rn);
450
- }
451
- &Inst::ULoad8 { rd, ref mem, .. }
452
- | &Inst::SLoad8 { rd, ref mem, .. }
453
- | &Inst::ULoad16 { rd, ref mem, .. }
454
- | &Inst::SLoad16 { rd, ref mem, .. }
455
- | &Inst::ULoad32 { rd, ref mem, .. }
456
- | &Inst::SLoad32 { rd, ref mem, .. }
457
- | &Inst::ULoad64 { rd, ref mem, .. } => {
458
- collector.reg_def(rd);
459
- memarg_operands(mem, collector);
460
- }
461
- &Inst::Store8 { rd, ref mem, .. }
462
- | &Inst::Store16 { rd, ref mem, .. }
463
- | &Inst::Store32 { rd, ref mem, .. }
464
- | &Inst::Store64 { rd, ref mem, .. } => {
465
- collector.reg_use(rd);
466
- memarg_operands(mem, collector);
467
- }
468
- &Inst::StoreP64 {
469
- rt, rt2, ref mem, ..
470
- } => {
471
- collector.reg_use(rt);
472
- collector.reg_use(rt2);
473
- pairmemarg_operands(mem, collector);
474
- }
475
- &Inst::LoadP64 {
476
- rt, rt2, ref mem, ..
477
- } => {
478
- collector.reg_def(rt);
479
- collector.reg_def(rt2);
480
- pairmemarg_operands(mem, collector);
481
- }
482
- &Inst::Mov { rd, rm, .. } => {
483
- collector.reg_def(rd);
484
- collector.reg_use(rm);
485
- }
486
- &Inst::MovFromPReg { rd, rm } => {
487
- debug_assert!(rd.to_reg().is_virtual());
488
- collector.reg_def(rd);
489
- collector.reg_fixed_nonallocatable(rm);
490
- }
491
- &Inst::MovToPReg { rd, rm } => {
492
- debug_assert!(rm.is_virtual());
493
- collector.reg_fixed_nonallocatable(rd);
494
- collector.reg_use(rm);
495
- }
496
- &Inst::MovK { rd, rn, .. } => {
497
- collector.reg_use(rn);
498
- collector.reg_reuse_def(rd, 0); // `rn` == `rd`.
499
- }
500
- &Inst::MovWide { rd, .. } => {
501
- collector.reg_def(rd);
502
- }
503
- &Inst::CSel { rd, rn, rm, .. } => {
504
- collector.reg_def(rd);
505
- collector.reg_use(rn);
506
- collector.reg_use(rm);
507
- }
508
- &Inst::CSNeg { rd, rn, rm, .. } => {
509
- collector.reg_def(rd);
510
- collector.reg_use(rn);
511
- collector.reg_use(rm);
512
- }
513
- &Inst::CSet { rd, .. } | &Inst::CSetm { rd, .. } => {
514
- collector.reg_def(rd);
515
- }
516
- &Inst::CCmp { rn, rm, .. } => {
517
- collector.reg_use(rn);
518
- collector.reg_use(rm);
519
- }
520
- &Inst::CCmpImm { rn, .. } => {
521
- collector.reg_use(rn);
522
- }
523
- &Inst::AtomicRMWLoop {
524
- op,
525
- addr,
526
- operand,
527
- oldval,
528
- scratch1,
529
- scratch2,
530
- ..
531
- } => {
532
- collector.reg_fixed_use(addr, xreg(25));
533
- collector.reg_fixed_use(operand, xreg(26));
534
- collector.reg_fixed_def(oldval, xreg(27));
535
- collector.reg_fixed_def(scratch1, xreg(24));
536
- if op != AtomicRMWLoopOp::Xchg {
537
- collector.reg_fixed_def(scratch2, xreg(28));
538
- }
539
- }
540
- &Inst::AtomicRMW { rs, rt, rn, .. } => {
541
- collector.reg_use(rs);
542
- collector.reg_def(rt);
543
- collector.reg_use(rn);
544
- }
545
- &Inst::AtomicCAS { rd, rs, rt, rn, .. } => {
546
- collector.reg_reuse_def(rd, 1); // reuse `rs`.
547
- collector.reg_use(rs);
548
- collector.reg_use(rt);
549
- collector.reg_use(rn);
550
- }
551
- &Inst::AtomicCASLoop {
552
- addr,
553
- expected,
554
- replacement,
555
- oldval,
556
- scratch,
557
- ..
558
- } => {
559
- collector.reg_fixed_use(addr, xreg(25));
560
- collector.reg_fixed_use(expected, xreg(26));
561
- collector.reg_fixed_use(replacement, xreg(28));
562
- collector.reg_fixed_def(oldval, xreg(27));
563
- collector.reg_fixed_def(scratch, xreg(24));
564
- }
565
- &Inst::LoadAcquire { rt, rn, .. } => {
566
- collector.reg_use(rn);
567
- collector.reg_def(rt);
568
- }
569
- &Inst::StoreRelease { rt, rn, .. } => {
570
- collector.reg_use(rn);
571
- collector.reg_use(rt);
572
- }
573
- &Inst::Fence {} | &Inst::Csdb {} => {}
574
- &Inst::FpuMove64 { rd, rn } => {
575
- collector.reg_def(rd);
576
- collector.reg_use(rn);
577
- }
578
- &Inst::FpuMove128 { rd, rn } => {
579
- collector.reg_def(rd);
580
- collector.reg_use(rn);
581
- }
582
- &Inst::FpuMoveFromVec { rd, rn, .. } => {
583
- collector.reg_def(rd);
584
- collector.reg_use(rn);
585
- }
586
- &Inst::FpuExtend { rd, rn, .. } => {
587
- collector.reg_def(rd);
588
- collector.reg_use(rn);
589
- }
590
- &Inst::FpuRR { rd, rn, .. } => {
591
- collector.reg_def(rd);
592
- collector.reg_use(rn);
593
- }
594
- &Inst::FpuRRR { rd, rn, rm, .. } => {
595
- collector.reg_def(rd);
596
- collector.reg_use(rn);
597
- collector.reg_use(rm);
598
- }
599
- &Inst::FpuRRI { rd, rn, .. } => {
600
- collector.reg_def(rd);
601
- collector.reg_use(rn);
602
- }
603
- &Inst::FpuRRIMod { rd, ri, rn, .. } => {
604
- collector.reg_reuse_def(rd, 1); // reuse `ri`.
605
- collector.reg_use(ri);
606
- collector.reg_use(rn);
607
- }
608
- &Inst::FpuRRRR { rd, rn, rm, ra, .. } => {
609
- collector.reg_def(rd);
610
- collector.reg_use(rn);
611
- collector.reg_use(rm);
612
- collector.reg_use(ra);
613
- }
614
- &Inst::VecMisc { rd, rn, .. } => {
615
- collector.reg_def(rd);
616
- collector.reg_use(rn);
617
- }
618
-
619
- &Inst::VecLanes { rd, rn, .. } => {
620
- collector.reg_def(rd);
621
- collector.reg_use(rn);
622
- }
623
- &Inst::VecShiftImm { rd, rn, .. } => {
624
- collector.reg_def(rd);
625
- collector.reg_use(rn);
626
- }
627
- &Inst::VecShiftImmMod { rd, ri, rn, .. } => {
628
- collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
629
- collector.reg_use(ri);
630
- collector.reg_use(rn);
631
- }
632
- &Inst::VecExtract { rd, rn, rm, .. } => {
633
- collector.reg_def(rd);
634
- collector.reg_use(rn);
635
- collector.reg_use(rm);
636
- }
637
- &Inst::VecTbl { rd, rn, rm } => {
638
- collector.reg_use(rn);
639
- collector.reg_use(rm);
640
- collector.reg_def(rd);
641
- }
642
- &Inst::VecTblExt { rd, ri, rn, rm } => {
643
- collector.reg_use(rn);
644
- collector.reg_use(rm);
645
- collector.reg_reuse_def(rd, 3); // `rd` == `ri`.
646
- collector.reg_use(ri);
647
- }
648
-
649
- &Inst::VecTbl2 { rd, rn, rn2, rm } => {
650
- // Constrain to v30 / v31 so that we satisfy the "adjacent
651
- // registers" constraint without use of pinned vregs in
652
- // lowering.
653
- collector.reg_fixed_use(rn, vreg(30));
654
- collector.reg_fixed_use(rn2, vreg(31));
655
- collector.reg_use(rm);
656
- collector.reg_def(rd);
657
- }
658
- &Inst::VecTbl2Ext {
659
- rd,
660
- ri,
661
- rn,
662
- rn2,
663
- rm,
664
- } => {
665
- // Constrain to v30 / v31 so that we satisfy the "adjacent
666
- // registers" constraint without use of pinned vregs in
667
- // lowering.
668
- collector.reg_fixed_use(rn, vreg(30));
669
- collector.reg_fixed_use(rn2, vreg(31));
670
- collector.reg_use(rm);
671
- collector.reg_reuse_def(rd, 4); // `rd` == `ri`.
672
- collector.reg_use(ri);
673
- }
674
- &Inst::VecLoadReplicate { rd, rn, .. } => {
675
- collector.reg_def(rd);
676
- collector.reg_use(rn);
677
- }
678
- &Inst::VecCSel { rd, rn, rm, .. } => {
679
- collector.reg_def(rd);
680
- collector.reg_use(rn);
681
- collector.reg_use(rm);
682
- }
683
- &Inst::FpuCmp { rn, rm, .. } => {
684
- collector.reg_use(rn);
685
- collector.reg_use(rm);
686
- }
687
- &Inst::FpuLoad32 { rd, ref mem, .. } => {
688
- collector.reg_def(rd);
689
- memarg_operands(mem, collector);
690
- }
691
- &Inst::FpuLoad64 { rd, ref mem, .. } => {
692
- collector.reg_def(rd);
693
- memarg_operands(mem, collector);
694
- }
695
- &Inst::FpuLoad128 { rd, ref mem, .. } => {
696
- collector.reg_def(rd);
697
- memarg_operands(mem, collector);
698
- }
699
- &Inst::FpuStore32 { rd, ref mem, .. } => {
700
- collector.reg_use(rd);
701
- memarg_operands(mem, collector);
702
- }
703
- &Inst::FpuStore64 { rd, ref mem, .. } => {
704
- collector.reg_use(rd);
705
- memarg_operands(mem, collector);
706
- }
707
- &Inst::FpuStore128 { rd, ref mem, .. } => {
708
- collector.reg_use(rd);
709
- memarg_operands(mem, collector);
710
- }
711
- &Inst::FpuLoadP64 {
712
- rt, rt2, ref mem, ..
713
- } => {
714
- collector.reg_def(rt);
715
- collector.reg_def(rt2);
716
- pairmemarg_operands(mem, collector);
717
- }
718
- &Inst::FpuStoreP64 {
719
- rt, rt2, ref mem, ..
720
- } => {
721
- collector.reg_use(rt);
722
- collector.reg_use(rt2);
723
- pairmemarg_operands(mem, collector);
724
- }
725
- &Inst::FpuLoadP128 {
726
- rt, rt2, ref mem, ..
727
- } => {
728
- collector.reg_def(rt);
729
- collector.reg_def(rt2);
730
- pairmemarg_operands(mem, collector);
731
- }
732
- &Inst::FpuStoreP128 {
733
- rt, rt2, ref mem, ..
734
- } => {
735
- collector.reg_use(rt);
736
- collector.reg_use(rt2);
737
- pairmemarg_operands(mem, collector);
738
- }
739
- &Inst::FpuToInt { rd, rn, .. } => {
740
- collector.reg_def(rd);
741
- collector.reg_use(rn);
742
- }
743
- &Inst::IntToFpu { rd, rn, .. } => {
744
- collector.reg_def(rd);
745
- collector.reg_use(rn);
746
- }
747
- &Inst::FpuCSel32 { rd, rn, rm, .. } | &Inst::FpuCSel64 { rd, rn, rm, .. } => {
748
- collector.reg_def(rd);
749
- collector.reg_use(rn);
750
- collector.reg_use(rm);
751
- }
752
- &Inst::FpuRound { rd, rn, .. } => {
753
- collector.reg_def(rd);
754
- collector.reg_use(rn);
755
- }
756
- &Inst::MovToFpu { rd, rn, .. } => {
757
- collector.reg_def(rd);
758
- collector.reg_use(rn);
759
- }
760
- &Inst::FpuMoveFPImm { rd, .. } => {
761
- collector.reg_def(rd);
762
- }
763
- &Inst::MovToVec { rd, ri, rn, .. } => {
764
- collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
765
- collector.reg_use(ri);
766
- collector.reg_use(rn);
767
- }
768
- &Inst::MovFromVec { rd, rn, .. } | &Inst::MovFromVecSigned { rd, rn, .. } => {
769
- collector.reg_def(rd);
770
- collector.reg_use(rn);
771
- }
772
- &Inst::VecDup { rd, rn, .. } => {
773
- collector.reg_def(rd);
774
- collector.reg_use(rn);
775
- }
776
- &Inst::VecDupFromFpu { rd, rn, .. } => {
777
- collector.reg_def(rd);
778
- collector.reg_use(rn);
779
- }
780
- &Inst::VecDupFPImm { rd, .. } => {
781
- collector.reg_def(rd);
782
- }
783
- &Inst::VecDupImm { rd, .. } => {
784
- collector.reg_def(rd);
785
- }
786
- &Inst::VecExtend { rd, rn, .. } => {
787
- collector.reg_def(rd);
788
- collector.reg_use(rn);
789
- }
790
- &Inst::VecMovElement { rd, ri, rn, .. } => {
791
- collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
792
- collector.reg_use(ri);
793
- collector.reg_use(rn);
794
- }
795
- &Inst::VecRRLong { rd, rn, .. } => {
796
- collector.reg_def(rd);
797
- collector.reg_use(rn);
798
- }
799
- &Inst::VecRRNarrowLow { rd, rn, .. } => {
800
- collector.reg_use(rn);
801
- collector.reg_def(rd);
802
- }
803
- &Inst::VecRRNarrowHigh { rd, ri, rn, .. } => {
804
- collector.reg_use(rn);
805
- collector.reg_reuse_def(rd, 2); // `rd` == `ri`.
806
- collector.reg_use(ri);
807
- }
808
- &Inst::VecRRPair { rd, rn, .. } => {
809
- collector.reg_def(rd);
810
- collector.reg_use(rn);
811
- }
812
- &Inst::VecRRRLong { rd, rn, rm, .. } => {
813
- collector.reg_def(rd);
814
- collector.reg_use(rn);
815
- collector.reg_use(rm);
816
- }
817
- &Inst::VecRRRLongMod { rd, ri, rn, rm, .. } => {
818
- collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
819
- collector.reg_use(ri);
820
- collector.reg_use(rn);
821
- collector.reg_use(rm);
822
- }
823
- &Inst::VecRRPairLong { rd, rn, .. } => {
824
- collector.reg_def(rd);
825
- collector.reg_use(rn);
826
- }
827
- &Inst::VecRRR { rd, rn, rm, .. } => {
828
- collector.reg_def(rd);
829
- collector.reg_use(rn);
830
- collector.reg_use(rm);
831
- }
832
- &Inst::VecRRRMod { rd, ri, rn, rm, .. } | &Inst::VecFmlaElem { rd, ri, rn, rm, .. } => {
833
- collector.reg_reuse_def(rd, 1); // `rd` == `ri`.
834
- collector.reg_use(ri);
835
- collector.reg_use(rn);
836
- collector.reg_use(rm);
837
- }
838
- &Inst::MovToNZCV { rn } => {
839
- collector.reg_use(rn);
840
- }
841
- &Inst::MovFromNZCV { rd } => {
842
- collector.reg_def(rd);
843
- }
844
- &Inst::Extend { rd, rn, .. } => {
845
- collector.reg_def(rd);
846
- collector.reg_use(rn);
847
- }
848
- &Inst::Args { ref args } => {
849
- for arg in args {
850
- collector.reg_fixed_def(arg.vreg, arg.preg);
851
- }
852
- }
853
- &Inst::Rets { ref rets } => {
854
- for ret in rets {
855
- collector.reg_fixed_use(ret.vreg, ret.preg);
856
- }
857
- }
858
- &Inst::Ret { .. } | &Inst::AuthenticatedRet { .. } => {}
859
- &Inst::Jump { .. } => {}
860
- &Inst::Call { ref info, .. } => {
861
- for u in &info.uses {
862
- collector.reg_fixed_use(u.vreg, u.preg);
863
- }
864
- for d in &info.defs {
865
- collector.reg_fixed_def(d.vreg, d.preg);
866
- }
867
- collector.reg_clobbers(info.clobbers);
868
- }
869
- &Inst::CallInd { ref info, .. } => {
870
- match info.callee_callconv {
871
- CallConv::Tail => {
872
- // TODO(https://github.com/bytecodealliance/regalloc2/issues/145):
873
- // This shouldn't be a fixed register constraint.
874
- collector.reg_fixed_use(info.rn, xreg(1))
875
- }
876
- _ => collector.reg_use(info.rn),
877
- }
878
- for u in &info.uses {
879
- collector.reg_fixed_use(u.vreg, u.preg);
880
- }
881
- for d in &info.defs {
882
- collector.reg_fixed_def(d.vreg, d.preg);
883
- }
884
- collector.reg_clobbers(info.clobbers);
885
- }
886
- &Inst::ReturnCall {
887
- ref info,
888
- callee: _,
889
- } => {
890
- for u in &info.uses {
891
- collector.reg_fixed_use(u.vreg, u.preg);
892
- }
893
- }
894
- &Inst::ReturnCallInd { ref info, callee } => {
895
- collector.reg_use(callee);
896
- for u in &info.uses {
897
- collector.reg_fixed_use(u.vreg, u.preg);
898
- }
899
- }
900
- &Inst::CondBr { ref kind, .. } => match kind {
901
- CondBrKind::Zero(rt) | CondBrKind::NotZero(rt) => {
902
- collector.reg_use(*rt);
903
- }
904
- CondBrKind::Cond(_) => {}
905
- },
906
- &Inst::TestBitAndBranch { rn, .. } => {
907
- collector.reg_use(rn);
908
- }
909
- &Inst::IndirectBr { rn, .. } => {
910
- collector.reg_use(rn);
911
- }
912
- &Inst::Nop0 | Inst::Nop4 => {}
913
- &Inst::Brk => {}
914
- &Inst::Udf { .. } => {}
915
- &Inst::TrapIf { ref kind, .. } => match kind {
916
- CondBrKind::Zero(rt) | CondBrKind::NotZero(rt) => {
917
- collector.reg_use(*rt);
918
- }
919
- CondBrKind::Cond(_) => {}
920
- },
921
- &Inst::Adr { rd, .. } | &Inst::Adrp { rd, .. } => {
922
- collector.reg_def(rd);
923
- }
924
- &Inst::Word4 { .. } | &Inst::Word8 { .. } => {}
925
- &Inst::JTSequence {
926
- ridx, rtmp1, rtmp2, ..
927
- } => {
928
- collector.reg_use(ridx);
929
- collector.reg_early_def(rtmp1);
930
- collector.reg_early_def(rtmp2);
931
- }
932
- &Inst::LoadExtName { rd, .. } => {
933
- collector.reg_def(rd);
934
- }
935
- &Inst::LoadAddr { rd, ref mem } => {
936
- collector.reg_def(rd);
937
- memarg_operands(mem, collector);
938
- }
939
- &Inst::Paci { .. } | &Inst::Xpaclri => {
940
- // Neither LR nor SP is an allocatable register, so there is no need
941
- // to do anything.
942
- }
943
- &Inst::Bti { .. } => {}
944
- &Inst::VirtualSPOffsetAdj { .. } => {}
945
-
946
- &Inst::ElfTlsGetAddr { rd, tmp, .. } => {
947
- // TLSDESC has a very neat calling convention. It is required to preserve
948
- // all registers except x0 and x30. X30 is non allocatable in cranelift since
949
- // its the link register.
950
- //
951
- // Additionally we need a second register as a temporary register for the
952
- // TLSDESC sequence. This register can be any register other than x0 (and x30).
953
- collector.reg_fixed_def(rd, regs::xreg(0));
954
- collector.reg_early_def(tmp);
955
- }
956
- &Inst::MachOTlsGetAddr { rd, .. } => {
957
- collector.reg_fixed_def(rd, regs::xreg(0));
958
- let mut clobbers =
959
- AArch64MachineDeps::get_regs_clobbered_by_call(CallConv::AppleAarch64);
960
- clobbers.remove(regs::xreg_preg(0));
961
- collector.reg_clobbers(clobbers);
962
- }
963
- &Inst::Unwind { .. } => {}
964
- &Inst::EmitIsland { .. } => {}
965
- &Inst::DummyUse { reg } => {
966
- collector.reg_use(reg);
967
- }
968
- &Inst::StackProbeLoop { start, end, .. } => {
969
- collector.reg_early_def(start);
970
- collector.reg_use(end);
971
- }
972
- }
973
- }
974
-
975
- //=============================================================================
976
- // Instructions: misc functions and external interface
977
-
978
- impl MachInst for Inst {
979
- type ABIMachineSpec = AArch64MachineDeps;
980
- type LabelUse = LabelUse;
981
-
982
- // "CLIF" in hex, to make the trap recognizable during
983
- // debugging.
984
- const TRAP_OPCODE: &'static [u8] = &0xc11f_u32.to_le_bytes();
985
-
986
- fn get_operands<F: Fn(VReg) -> VReg>(&self, collector: &mut OperandCollector<'_, F>) {
987
- aarch64_get_operands(self, collector);
988
- }
989
-
990
- fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
991
- match self {
992
- &Inst::Mov {
993
- size: OperandSize::Size64,
994
- rd,
995
- rm,
996
- } => Some((rd, rm)),
997
- &Inst::FpuMove64 { rd, rn } => Some((rd, rn)),
998
- &Inst::FpuMove128 { rd, rn } => Some((rd, rn)),
999
- _ => None,
1000
- }
1001
- }
1002
-
1003
- fn is_included_in_clobbers(&self) -> bool {
1004
- let (caller_callconv, callee_callconv) = match self {
1005
- Inst::Args { .. } => return false,
1006
- Inst::Call { info } => (info.caller_callconv, info.callee_callconv),
1007
- Inst::CallInd { info } => (info.caller_callconv, info.callee_callconv),
1008
- _ => return true,
1009
- };
1010
-
1011
- // We exclude call instructions from the clobber-set when they are calls
1012
- // from caller to callee that both clobber the same register (such as
1013
- // using the same or similar ABIs). Such calls cannot possibly force any
1014
- // new registers to be saved in the prologue, because anything that the
1015
- // callee clobbers, the caller is also allowed to clobber. This both
1016
- // saves work and enables us to more precisely follow the
1017
- // half-caller-save, half-callee-save SysV ABI for some vector
1018
- // registers.
1019
- //
1020
- // See the note in [crate::isa::aarch64::abi::is_caller_save_reg] for
1021
- // more information on this ABI-implementation hack.
1022
- let caller_clobbers = AArch64MachineDeps::get_regs_clobbered_by_call(caller_callconv);
1023
- let callee_clobbers = AArch64MachineDeps::get_regs_clobbered_by_call(callee_callconv);
1024
-
1025
- let mut all_clobbers = caller_clobbers;
1026
- all_clobbers.union_from(callee_clobbers);
1027
- all_clobbers != caller_clobbers
1028
- }
1029
-
1030
- fn is_trap(&self) -> bool {
1031
- match self {
1032
- Self::Udf { .. } => true,
1033
- _ => false,
1034
- }
1035
- }
1036
-
1037
- fn is_args(&self) -> bool {
1038
- match self {
1039
- Self::Args { .. } => true,
1040
- _ => false,
1041
- }
1042
- }
1043
-
1044
- fn is_term(&self) -> MachTerminator {
1045
- match self {
1046
- &Inst::Rets { .. } => MachTerminator::Ret,
1047
- &Inst::ReturnCall { .. } | &Inst::ReturnCallInd { .. } => MachTerminator::RetCall,
1048
- &Inst::Jump { .. } => MachTerminator::Uncond,
1049
- &Inst::CondBr { .. } => MachTerminator::Cond,
1050
- &Inst::TestBitAndBranch { .. } => MachTerminator::Cond,
1051
- &Inst::IndirectBr { .. } => MachTerminator::Indirect,
1052
- &Inst::JTSequence { .. } => MachTerminator::Indirect,
1053
- _ => MachTerminator::None,
1054
- }
1055
- }
1056
-
1057
- fn is_mem_access(&self) -> bool {
1058
- match self {
1059
- &Inst::ULoad8 { .. }
1060
- | &Inst::SLoad8 { .. }
1061
- | &Inst::ULoad16 { .. }
1062
- | &Inst::SLoad16 { .. }
1063
- | &Inst::ULoad32 { .. }
1064
- | &Inst::SLoad32 { .. }
1065
- | &Inst::ULoad64 { .. }
1066
- | &Inst::LoadP64 { .. }
1067
- | &Inst::FpuLoad32 { .. }
1068
- | &Inst::FpuLoad64 { .. }
1069
- | &Inst::FpuLoad128 { .. }
1070
- | &Inst::FpuLoadP64 { .. }
1071
- | &Inst::FpuLoadP128 { .. }
1072
- | &Inst::Store8 { .. }
1073
- | &Inst::Store16 { .. }
1074
- | &Inst::Store32 { .. }
1075
- | &Inst::Store64 { .. }
1076
- | &Inst::StoreP64 { .. }
1077
- | &Inst::FpuStore32 { .. }
1078
- | &Inst::FpuStore64 { .. }
1079
- | &Inst::FpuStore128 { .. } => true,
1080
- // TODO: verify this carefully
1081
- _ => false,
1082
- }
1083
- }
1084
-
1085
- fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Inst {
1086
- let bits = ty.bits();
1087
-
1088
- assert!(bits <= 128);
1089
- assert!(to_reg.to_reg().class() == from_reg.class());
1090
- match from_reg.class() {
1091
- RegClass::Int => Inst::Mov {
1092
- size: OperandSize::Size64,
1093
- rd: to_reg,
1094
- rm: from_reg,
1095
- },
1096
- RegClass::Float => {
1097
- if bits > 64 {
1098
- Inst::FpuMove128 {
1099
- rd: to_reg,
1100
- rn: from_reg,
1101
- }
1102
- } else {
1103
- Inst::FpuMove64 {
1104
- rd: to_reg,
1105
- rn: from_reg,
1106
- }
1107
- }
1108
- }
1109
- RegClass::Vector => unreachable!(),
1110
- }
1111
- }
1112
-
1113
- fn is_safepoint(&self) -> bool {
1114
- match self {
1115
- &Inst::Call { .. }
1116
- | &Inst::CallInd { .. }
1117
- | &Inst::TrapIf { .. }
1118
- | &Inst::Udf { .. } => true,
1119
- _ => false,
1120
- }
1121
- }
1122
-
1123
- fn gen_dummy_use(reg: Reg) -> Inst {
1124
- Inst::DummyUse { reg }
1125
- }
1126
-
1127
- fn gen_nop(preferred_size: usize) -> Inst {
1128
- if preferred_size == 0 {
1129
- return Inst::Nop0;
1130
- }
1131
- // We can't give a NOP (or any insn) < 4 bytes.
1132
- assert!(preferred_size >= 4);
1133
- Inst::Nop4
1134
- }
1135
-
1136
- fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
1137
- match ty {
1138
- I8 => Ok((&[RegClass::Int], &[I8])),
1139
- I16 => Ok((&[RegClass::Int], &[I16])),
1140
- I32 => Ok((&[RegClass::Int], &[I32])),
1141
- I64 => Ok((&[RegClass::Int], &[I64])),
1142
- R32 => panic!("32-bit reftype pointer should never be seen on AArch64"),
1143
- R64 => Ok((&[RegClass::Int], &[R64])),
1144
- F32 => Ok((&[RegClass::Float], &[F32])),
1145
- F64 => Ok((&[RegClass::Float], &[F64])),
1146
- I128 => Ok((&[RegClass::Int, RegClass::Int], &[I64, I64])),
1147
- _ if ty.is_vector() => {
1148
- assert!(ty.bits() <= 128);
1149
- Ok((&[RegClass::Float], &[I8X16]))
1150
- }
1151
- _ if ty.is_dynamic_vector() => Ok((&[RegClass::Float], &[I8X16])),
1152
- _ => Err(CodegenError::Unsupported(format!(
1153
- "Unexpected SSA-value type: {}",
1154
- ty
1155
- ))),
1156
- }
1157
- }
1158
-
1159
- fn canonical_type_for_rc(rc: RegClass) -> Type {
1160
- match rc {
1161
- RegClass::Float => types::I8X16,
1162
- RegClass::Int => types::I64,
1163
- RegClass::Vector => unreachable!(),
1164
- }
1165
- }
1166
-
1167
- fn gen_jump(target: MachLabel) -> Inst {
1168
- Inst::Jump {
1169
- dest: BranchTarget::Label(target),
1170
- }
1171
- }
1172
-
1173
- fn worst_case_size() -> CodeOffset {
1174
- // The maximum size, in bytes, of any `Inst`'s emitted code. We have at least one case of
1175
- // an 8-instruction sequence (saturating int-to-float conversions) with three embedded
1176
- // 64-bit f64 constants.
1177
- //
1178
- // Note that inline jump-tables handle island/pool insertion separately, so we do not need
1179
- // to account for them here (otherwise the worst case would be 2^31 * 4, clearly not
1180
- // feasible for other reasons).
1181
- 44
1182
- }
1183
-
1184
- fn ref_type_regclass(_: &settings::Flags) -> RegClass {
1185
- RegClass::Int
1186
- }
1187
-
1188
- fn gen_block_start(
1189
- is_indirect_branch_target: bool,
1190
- is_forward_edge_cfi_enabled: bool,
1191
- ) -> Option<Self> {
1192
- if is_indirect_branch_target && is_forward_edge_cfi_enabled {
1193
- Some(Inst::Bti {
1194
- targets: BranchTargetType::J,
1195
- })
1196
- } else {
1197
- None
1198
- }
1199
- }
1200
-
1201
- fn function_alignment() -> FunctionAlignment {
1202
- // We use 32-byte alignment for performance reasons, but for correctness
1203
- // we would only need 4-byte alignment.
1204
- FunctionAlignment {
1205
- minimum: 4,
1206
- preferred: 32,
1207
- }
1208
- }
1209
- }
1210
-
1211
- //=============================================================================
1212
- // Pretty-printing of instructions.
1213
-
1214
- fn mem_finalize_for_show(mem: &AMode, state: &EmitState) -> (String, AMode) {
1215
- let (mem_insts, mem) = mem_finalize(None, mem, state);
1216
- let mut mem_str = mem_insts
1217
- .into_iter()
1218
- .map(|inst| {
1219
- inst.print_with_state(&mut EmitState::default(), &mut AllocationConsumer::new(&[]))
1220
- })
1221
- .collect::<Vec<_>>()
1222
- .join(" ; ");
1223
- if !mem_str.is_empty() {
1224
- mem_str += " ; ";
1225
- }
1226
-
1227
- (mem_str, mem)
1228
- }
1229
-
1230
- impl Inst {
1231
- fn print_with_state(&self, state: &mut EmitState, allocs: &mut AllocationConsumer) -> String {
1232
- let mut empty_allocs = AllocationConsumer::default();
1233
-
1234
- fn op_name(alu_op: ALUOp) -> &'static str {
1235
- match alu_op {
1236
- ALUOp::Add => "add",
1237
- ALUOp::Sub => "sub",
1238
- ALUOp::Orr => "orr",
1239
- ALUOp::And => "and",
1240
- ALUOp::AndS => "ands",
1241
- ALUOp::Eor => "eor",
1242
- ALUOp::AddS => "adds",
1243
- ALUOp::SubS => "subs",
1244
- ALUOp::SMulH => "smulh",
1245
- ALUOp::UMulH => "umulh",
1246
- ALUOp::SDiv => "sdiv",
1247
- ALUOp::UDiv => "udiv",
1248
- ALUOp::AndNot => "bic",
1249
- ALUOp::OrrNot => "orn",
1250
- ALUOp::EorNot => "eon",
1251
- ALUOp::RotR => "ror",
1252
- ALUOp::Lsr => "lsr",
1253
- ALUOp::Asr => "asr",
1254
- ALUOp::Lsl => "lsl",
1255
- ALUOp::Adc => "adc",
1256
- ALUOp::AdcS => "adcs",
1257
- ALUOp::Sbc => "sbc",
1258
- ALUOp::SbcS => "sbcs",
1259
- }
1260
- }
1261
-
1262
- // N.B.: order of `allocs` consumption (via register
1263
- // pretty-printing or memarg.with_allocs()) needs to match the
1264
- // order in `aarch64_get_operands` above.
1265
- match self {
1266
- &Inst::Nop0 => "nop-zero-len".to_string(),
1267
- &Inst::Nop4 => "nop".to_string(),
1268
- &Inst::AluRRR {
1269
- alu_op,
1270
- size,
1271
- rd,
1272
- rn,
1273
- rm,
1274
- } => {
1275
- let op = op_name(alu_op);
1276
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1277
- let rn = pretty_print_ireg(rn, size, allocs);
1278
- let rm = pretty_print_ireg(rm, size, allocs);
1279
- format!("{} {}, {}, {}", op, rd, rn, rm)
1280
- }
1281
- &Inst::AluRRRR {
1282
- alu_op,
1283
- size,
1284
- rd,
1285
- rn,
1286
- rm,
1287
- ra,
1288
- } => {
1289
- let (op, da_size) = match alu_op {
1290
- ALUOp3::MAdd => ("madd", size),
1291
- ALUOp3::MSub => ("msub", size),
1292
- ALUOp3::UMAddL => ("umaddl", OperandSize::Size64),
1293
- ALUOp3::SMAddL => ("smaddl", OperandSize::Size64),
1294
- };
1295
- let rd = pretty_print_ireg(rd.to_reg(), da_size, allocs);
1296
- let rn = pretty_print_ireg(rn, size, allocs);
1297
- let rm = pretty_print_ireg(rm, size, allocs);
1298
- let ra = pretty_print_ireg(ra, da_size, allocs);
1299
-
1300
- format!("{} {}, {}, {}, {}", op, rd, rn, rm, ra)
1301
- }
1302
- &Inst::AluRRImm12 {
1303
- alu_op,
1304
- size,
1305
- rd,
1306
- rn,
1307
- ref imm12,
1308
- } => {
1309
- let op = op_name(alu_op);
1310
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1311
- let rn = pretty_print_ireg(rn, size, allocs);
1312
-
1313
- if imm12.bits == 0 && alu_op == ALUOp::Add && size.is64() {
1314
- // special-case MOV (used for moving into SP).
1315
- format!("mov {}, {}", rd, rn)
1316
- } else {
1317
- let imm12 = imm12.pretty_print(0, allocs);
1318
- format!("{} {}, {}, {}", op, rd, rn, imm12)
1319
- }
1320
- }
1321
- &Inst::AluRRImmLogic {
1322
- alu_op,
1323
- size,
1324
- rd,
1325
- rn,
1326
- ref imml,
1327
- } => {
1328
- let op = op_name(alu_op);
1329
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1330
- let rn = pretty_print_ireg(rn, size, allocs);
1331
- let imml = imml.pretty_print(0, allocs);
1332
- format!("{} {}, {}, {}", op, rd, rn, imml)
1333
- }
1334
- &Inst::AluRRImmShift {
1335
- alu_op,
1336
- size,
1337
- rd,
1338
- rn,
1339
- ref immshift,
1340
- } => {
1341
- let op = op_name(alu_op);
1342
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1343
- let rn = pretty_print_ireg(rn, size, allocs);
1344
- let immshift = immshift.pretty_print(0, allocs);
1345
- format!("{} {}, {}, {}", op, rd, rn, immshift)
1346
- }
1347
- &Inst::AluRRRShift {
1348
- alu_op,
1349
- size,
1350
- rd,
1351
- rn,
1352
- rm,
1353
- ref shiftop,
1354
- } => {
1355
- let op = op_name(alu_op);
1356
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1357
- let rn = pretty_print_ireg(rn, size, allocs);
1358
- let rm = pretty_print_ireg(rm, size, allocs);
1359
- let shiftop = shiftop.pretty_print(0, allocs);
1360
- format!("{} {}, {}, {}, {}", op, rd, rn, rm, shiftop)
1361
- }
1362
- &Inst::AluRRRExtend {
1363
- alu_op,
1364
- size,
1365
- rd,
1366
- rn,
1367
- rm,
1368
- ref extendop,
1369
- } => {
1370
- let op = op_name(alu_op);
1371
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1372
- let rn = pretty_print_ireg(rn, size, allocs);
1373
- let rm = pretty_print_ireg(rm, size, allocs);
1374
- let extendop = extendop.pretty_print(0, allocs);
1375
- format!("{} {}, {}, {}, {}", op, rd, rn, rm, extendop)
1376
- }
1377
- &Inst::BitRR { op, size, rd, rn } => {
1378
- let op = op.op_str();
1379
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1380
- let rn = pretty_print_ireg(rn, size, allocs);
1381
- format!("{} {}, {}", op, rd, rn)
1382
- }
1383
- &Inst::ULoad8 { rd, ref mem, .. }
1384
- | &Inst::SLoad8 { rd, ref mem, .. }
1385
- | &Inst::ULoad16 { rd, ref mem, .. }
1386
- | &Inst::SLoad16 { rd, ref mem, .. }
1387
- | &Inst::ULoad32 { rd, ref mem, .. }
1388
- | &Inst::SLoad32 { rd, ref mem, .. }
1389
- | &Inst::ULoad64 { rd, ref mem, .. } => {
1390
- let is_unscaled = match &mem {
1391
- &AMode::Unscaled { .. } => true,
1392
- _ => false,
1393
- };
1394
- let (op, size) = match (self, is_unscaled) {
1395
- (&Inst::ULoad8 { .. }, false) => ("ldrb", OperandSize::Size32),
1396
- (&Inst::ULoad8 { .. }, true) => ("ldurb", OperandSize::Size32),
1397
- (&Inst::SLoad8 { .. }, false) => ("ldrsb", OperandSize::Size64),
1398
- (&Inst::SLoad8 { .. }, true) => ("ldursb", OperandSize::Size64),
1399
- (&Inst::ULoad16 { .. }, false) => ("ldrh", OperandSize::Size32),
1400
- (&Inst::ULoad16 { .. }, true) => ("ldurh", OperandSize::Size32),
1401
- (&Inst::SLoad16 { .. }, false) => ("ldrsh", OperandSize::Size64),
1402
- (&Inst::SLoad16 { .. }, true) => ("ldursh", OperandSize::Size64),
1403
- (&Inst::ULoad32 { .. }, false) => ("ldr", OperandSize::Size32),
1404
- (&Inst::ULoad32 { .. }, true) => ("ldur", OperandSize::Size32),
1405
- (&Inst::SLoad32 { .. }, false) => ("ldrsw", OperandSize::Size64),
1406
- (&Inst::SLoad32 { .. }, true) => ("ldursw", OperandSize::Size64),
1407
- (&Inst::ULoad64 { .. }, false) => ("ldr", OperandSize::Size64),
1408
- (&Inst::ULoad64 { .. }, true) => ("ldur", OperandSize::Size64),
1409
- _ => unreachable!(),
1410
- };
1411
-
1412
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1413
- let mem = mem.with_allocs(allocs);
1414
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1415
- let mem = mem.pretty_print_default();
1416
-
1417
- format!("{}{} {}, {}", mem_str, op, rd, mem)
1418
- }
1419
- &Inst::Store8 { rd, ref mem, .. }
1420
- | &Inst::Store16 { rd, ref mem, .. }
1421
- | &Inst::Store32 { rd, ref mem, .. }
1422
- | &Inst::Store64 { rd, ref mem, .. } => {
1423
- let is_unscaled = match &mem {
1424
- &AMode::Unscaled { .. } => true,
1425
- _ => false,
1426
- };
1427
- let (op, size) = match (self, is_unscaled) {
1428
- (&Inst::Store8 { .. }, false) => ("strb", OperandSize::Size32),
1429
- (&Inst::Store8 { .. }, true) => ("sturb", OperandSize::Size32),
1430
- (&Inst::Store16 { .. }, false) => ("strh", OperandSize::Size32),
1431
- (&Inst::Store16 { .. }, true) => ("sturh", OperandSize::Size32),
1432
- (&Inst::Store32 { .. }, false) => ("str", OperandSize::Size32),
1433
- (&Inst::Store32 { .. }, true) => ("stur", OperandSize::Size32),
1434
- (&Inst::Store64 { .. }, false) => ("str", OperandSize::Size64),
1435
- (&Inst::Store64 { .. }, true) => ("stur", OperandSize::Size64),
1436
- _ => unreachable!(),
1437
- };
1438
-
1439
- let rd = pretty_print_ireg(rd, size, allocs);
1440
- let mem = mem.with_allocs(allocs);
1441
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1442
- let mem = mem.pretty_print_default();
1443
-
1444
- format!("{}{} {}, {}", mem_str, op, rd, mem)
1445
- }
1446
- &Inst::StoreP64 {
1447
- rt, rt2, ref mem, ..
1448
- } => {
1449
- let rt = pretty_print_ireg(rt, OperandSize::Size64, allocs);
1450
- let rt2 = pretty_print_ireg(rt2, OperandSize::Size64, allocs);
1451
- let mem = mem.with_allocs(allocs);
1452
- let mem = mem.pretty_print_default();
1453
- format!("stp {}, {}, {}", rt, rt2, mem)
1454
- }
1455
- &Inst::LoadP64 {
1456
- rt, rt2, ref mem, ..
1457
- } => {
1458
- let rt = pretty_print_ireg(rt.to_reg(), OperandSize::Size64, allocs);
1459
- let rt2 = pretty_print_ireg(rt2.to_reg(), OperandSize::Size64, allocs);
1460
- let mem = mem.with_allocs(allocs);
1461
- let mem = mem.pretty_print_default();
1462
- format!("ldp {}, {}, {}", rt, rt2, mem)
1463
- }
1464
- &Inst::Mov { size, rd, rm } => {
1465
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1466
- let rm = pretty_print_ireg(rm, size, allocs);
1467
- format!("mov {}, {}", rd, rm)
1468
- }
1469
- &Inst::MovFromPReg { rd, rm } => {
1470
- let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1471
- allocs.next_fixed_nonallocatable(rm);
1472
- let rm = show_ireg_sized(rm.into(), OperandSize::Size64);
1473
- format!("mov {}, {}", rd, rm)
1474
- }
1475
- &Inst::MovToPReg { rd, rm } => {
1476
- allocs.next_fixed_nonallocatable(rd);
1477
- let rd = show_ireg_sized(rd.into(), OperandSize::Size64);
1478
- let rm = pretty_print_ireg(rm, OperandSize::Size64, allocs);
1479
- format!("mov {}, {}", rd, rm)
1480
- }
1481
- &Inst::MovWide {
1482
- op,
1483
- rd,
1484
- ref imm,
1485
- size,
1486
- } => {
1487
- let op_str = match op {
1488
- MoveWideOp::MovZ => "movz",
1489
- MoveWideOp::MovN => "movn",
1490
- };
1491
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1492
- let imm = imm.pretty_print(0, allocs);
1493
- format!("{} {}, {}", op_str, rd, imm)
1494
- }
1495
- &Inst::MovK {
1496
- rd,
1497
- rn,
1498
- ref imm,
1499
- size,
1500
- } => {
1501
- let rn = pretty_print_ireg(rn, size, allocs);
1502
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1503
- let imm = imm.pretty_print(0, allocs);
1504
- format!("movk {}, {}, {}", rd, rn, imm)
1505
- }
1506
- &Inst::CSel { rd, rn, rm, cond } => {
1507
- let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1508
- let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1509
- let rm = pretty_print_ireg(rm, OperandSize::Size64, allocs);
1510
- let cond = cond.pretty_print(0, allocs);
1511
- format!("csel {}, {}, {}, {}", rd, rn, rm, cond)
1512
- }
1513
- &Inst::CSNeg { rd, rn, rm, cond } => {
1514
- let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1515
- let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1516
- let rm = pretty_print_ireg(rm, OperandSize::Size64, allocs);
1517
- let cond = cond.pretty_print(0, allocs);
1518
- format!("csneg {}, {}, {}, {}", rd, rn, rm, cond)
1519
- }
1520
- &Inst::CSet { rd, cond } => {
1521
- let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1522
- let cond = cond.pretty_print(0, allocs);
1523
- format!("cset {}, {}", rd, cond)
1524
- }
1525
- &Inst::CSetm { rd, cond } => {
1526
- let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size64, allocs);
1527
- let cond = cond.pretty_print(0, allocs);
1528
- format!("csetm {}, {}", rd, cond)
1529
- }
1530
- &Inst::CCmp {
1531
- size,
1532
- rn,
1533
- rm,
1534
- nzcv,
1535
- cond,
1536
- } => {
1537
- let rn = pretty_print_ireg(rn, size, allocs);
1538
- let rm = pretty_print_ireg(rm, size, allocs);
1539
- let nzcv = nzcv.pretty_print(0, allocs);
1540
- let cond = cond.pretty_print(0, allocs);
1541
- format!("ccmp {}, {}, {}, {}", rn, rm, nzcv, cond)
1542
- }
1543
- &Inst::CCmpImm {
1544
- size,
1545
- rn,
1546
- imm,
1547
- nzcv,
1548
- cond,
1549
- } => {
1550
- let rn = pretty_print_ireg(rn, size, allocs);
1551
- let imm = imm.pretty_print(0, allocs);
1552
- let nzcv = nzcv.pretty_print(0, allocs);
1553
- let cond = cond.pretty_print(0, allocs);
1554
- format!("ccmp {}, {}, {}, {}", rn, imm, nzcv, cond)
1555
- }
1556
- &Inst::AtomicRMW {
1557
- rs, rt, rn, ty, op, ..
1558
- } => {
1559
- let op = match op {
1560
- AtomicRMWOp::Add => "ldaddal",
1561
- AtomicRMWOp::Clr => "ldclral",
1562
- AtomicRMWOp::Eor => "ldeoral",
1563
- AtomicRMWOp::Set => "ldsetal",
1564
- AtomicRMWOp::Smax => "ldsmaxal",
1565
- AtomicRMWOp::Umax => "ldumaxal",
1566
- AtomicRMWOp::Smin => "ldsminal",
1567
- AtomicRMWOp::Umin => "lduminal",
1568
- AtomicRMWOp::Swp => "swpal",
1569
- };
1570
-
1571
- let size = OperandSize::from_ty(ty);
1572
- let rs = pretty_print_ireg(rs, size, allocs);
1573
- let rt = pretty_print_ireg(rt.to_reg(), size, allocs);
1574
- let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1575
-
1576
- let ty_suffix = match ty {
1577
- I8 => "b",
1578
- I16 => "h",
1579
- _ => "",
1580
- };
1581
- format!("{}{} {}, {}, [{}]", op, ty_suffix, rs, rt, rn)
1582
- }
1583
- &Inst::AtomicRMWLoop {
1584
- ty,
1585
- op,
1586
- addr,
1587
- operand,
1588
- oldval,
1589
- scratch1,
1590
- scratch2,
1591
- ..
1592
- } => {
1593
- let op = match op {
1594
- AtomicRMWLoopOp::Add => "add",
1595
- AtomicRMWLoopOp::Sub => "sub",
1596
- AtomicRMWLoopOp::Eor => "eor",
1597
- AtomicRMWLoopOp::Orr => "orr",
1598
- AtomicRMWLoopOp::And => "and",
1599
- AtomicRMWLoopOp::Nand => "nand",
1600
- AtomicRMWLoopOp::Smin => "smin",
1601
- AtomicRMWLoopOp::Smax => "smax",
1602
- AtomicRMWLoopOp::Umin => "umin",
1603
- AtomicRMWLoopOp::Umax => "umax",
1604
- AtomicRMWLoopOp::Xchg => "xchg",
1605
- };
1606
- let addr = pretty_print_ireg(addr, OperandSize::Size64, allocs);
1607
- let operand = pretty_print_ireg(operand, OperandSize::Size64, allocs);
1608
- let oldval = pretty_print_ireg(oldval.to_reg(), OperandSize::Size64, allocs);
1609
- let scratch1 = pretty_print_ireg(scratch1.to_reg(), OperandSize::Size64, allocs);
1610
- let scratch2 = pretty_print_ireg(scratch2.to_reg(), OperandSize::Size64, allocs);
1611
- format!(
1612
- "atomic_rmw_loop_{}_{} addr={} operand={} oldval={} scratch1={} scratch2={}",
1613
- op,
1614
- ty.bits(),
1615
- addr,
1616
- operand,
1617
- oldval,
1618
- scratch1,
1619
- scratch2,
1620
- )
1621
- }
1622
- &Inst::AtomicCAS {
1623
- rd, rs, rt, rn, ty, ..
1624
- } => {
1625
- let op = match ty {
1626
- I8 => "casalb",
1627
- I16 => "casalh",
1628
- I32 | I64 => "casal",
1629
- _ => panic!("Unsupported type: {}", ty),
1630
- };
1631
- let size = OperandSize::from_ty(ty);
1632
- let rd = pretty_print_ireg(rd.to_reg(), size, allocs);
1633
- let rs = pretty_print_ireg(rs, size, allocs);
1634
- let rt = pretty_print_ireg(rt, size, allocs);
1635
- let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1636
-
1637
- format!("{} {}, {}, {}, [{}]", op, rd, rs, rt, rn)
1638
- }
1639
- &Inst::AtomicCASLoop {
1640
- ty,
1641
- addr,
1642
- expected,
1643
- replacement,
1644
- oldval,
1645
- scratch,
1646
- ..
1647
- } => {
1648
- let addr = pretty_print_ireg(addr, OperandSize::Size64, allocs);
1649
- let expected = pretty_print_ireg(expected, OperandSize::Size64, allocs);
1650
- let replacement = pretty_print_ireg(replacement, OperandSize::Size64, allocs);
1651
- let oldval = pretty_print_ireg(oldval.to_reg(), OperandSize::Size64, allocs);
1652
- let scratch = pretty_print_ireg(scratch.to_reg(), OperandSize::Size64, allocs);
1653
- format!(
1654
- "atomic_cas_loop_{} addr={}, expect={}, replacement={}, oldval={}, scratch={}",
1655
- ty.bits(),
1656
- addr,
1657
- expected,
1658
- replacement,
1659
- oldval,
1660
- scratch,
1661
- )
1662
- }
1663
- &Inst::LoadAcquire {
1664
- access_ty, rt, rn, ..
1665
- } => {
1666
- let (op, ty) = match access_ty {
1667
- I8 => ("ldarb", I32),
1668
- I16 => ("ldarh", I32),
1669
- I32 => ("ldar", I32),
1670
- I64 => ("ldar", I64),
1671
- _ => panic!("Unsupported type: {}", access_ty),
1672
- };
1673
- let size = OperandSize::from_ty(ty);
1674
- let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1675
- let rt = pretty_print_ireg(rt.to_reg(), size, allocs);
1676
- format!("{} {}, [{}]", op, rt, rn)
1677
- }
1678
- &Inst::StoreRelease {
1679
- access_ty, rt, rn, ..
1680
- } => {
1681
- let (op, ty) = match access_ty {
1682
- I8 => ("stlrb", I32),
1683
- I16 => ("stlrh", I32),
1684
- I32 => ("stlr", I32),
1685
- I64 => ("stlr", I64),
1686
- _ => panic!("Unsupported type: {}", access_ty),
1687
- };
1688
- let size = OperandSize::from_ty(ty);
1689
- let rn = pretty_print_ireg(rn, OperandSize::Size64, allocs);
1690
- let rt = pretty_print_ireg(rt, size, allocs);
1691
- format!("{} {}, [{}]", op, rt, rn)
1692
- }
1693
- &Inst::Fence {} => {
1694
- format!("dmb ish")
1695
- }
1696
- &Inst::Csdb {} => {
1697
- format!("csdb")
1698
- }
1699
- &Inst::FpuMove64 { rd, rn } => {
1700
- let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
1701
- let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs);
1702
- format!("fmov {}, {}", rd, rn)
1703
- }
1704
- &Inst::FpuMove128 { rd, rn } => {
1705
- let rd = pretty_print_reg(rd.to_reg(), allocs);
1706
- let rn = pretty_print_reg(rn, allocs);
1707
- format!("mov {}.16b, {}.16b", rd, rn)
1708
- }
1709
- &Inst::FpuMoveFromVec { rd, rn, idx, size } => {
1710
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size.lane_size(), allocs);
1711
- let rn = pretty_print_vreg_element(rn, idx as usize, size.lane_size(), allocs);
1712
- format!("mov {}, {}", rd, rn)
1713
- }
1714
- &Inst::FpuExtend { rd, rn, size } => {
1715
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1716
- let rn = pretty_print_vreg_scalar(rn, size, allocs);
1717
- format!("fmov {}, {}", rd, rn)
1718
- }
1719
- &Inst::FpuRR {
1720
- fpu_op,
1721
- size,
1722
- rd,
1723
- rn,
1724
- } => {
1725
- let op = match fpu_op {
1726
- FPUOp1::Abs => "fabs",
1727
- FPUOp1::Neg => "fneg",
1728
- FPUOp1::Sqrt => "fsqrt",
1729
- FPUOp1::Cvt32To64 | FPUOp1::Cvt64To32 => "fcvt",
1730
- };
1731
- let dst_size = match fpu_op {
1732
- FPUOp1::Cvt32To64 => ScalarSize::Size64,
1733
- FPUOp1::Cvt64To32 => ScalarSize::Size32,
1734
- _ => size,
1735
- };
1736
- let rd = pretty_print_vreg_scalar(rd.to_reg(), dst_size, allocs);
1737
- let rn = pretty_print_vreg_scalar(rn, size, allocs);
1738
- format!("{} {}, {}", op, rd, rn)
1739
- }
1740
- &Inst::FpuRRR {
1741
- fpu_op,
1742
- size,
1743
- rd,
1744
- rn,
1745
- rm,
1746
- } => {
1747
- let op = match fpu_op {
1748
- FPUOp2::Add => "fadd",
1749
- FPUOp2::Sub => "fsub",
1750
- FPUOp2::Mul => "fmul",
1751
- FPUOp2::Div => "fdiv",
1752
- FPUOp2::Max => "fmax",
1753
- FPUOp2::Min => "fmin",
1754
- };
1755
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1756
- let rn = pretty_print_vreg_scalar(rn, size, allocs);
1757
- let rm = pretty_print_vreg_scalar(rm, size, allocs);
1758
- format!("{} {}, {}, {}", op, rd, rn, rm)
1759
- }
1760
- &Inst::FpuRRI { fpu_op, rd, rn } => {
1761
- let (op, imm, vector) = match fpu_op {
1762
- FPUOpRI::UShr32(imm) => ("ushr", imm.pretty_print(0, allocs), true),
1763
- FPUOpRI::UShr64(imm) => ("ushr", imm.pretty_print(0, allocs), false),
1764
- };
1765
-
1766
- let (rd, rn) = if vector {
1767
- (
1768
- pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size32x2, allocs),
1769
- pretty_print_vreg_vector(rn, VectorSize::Size32x2, allocs),
1770
- )
1771
- } else {
1772
- (
1773
- pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs),
1774
- pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs),
1775
- )
1776
- };
1777
- format!("{} {}, {}, {}", op, rd, rn, imm)
1778
- }
1779
- &Inst::FpuRRIMod { fpu_op, rd, ri, rn } => {
1780
- let (op, imm, vector) = match fpu_op {
1781
- FPUOpRIMod::Sli32(imm) => ("sli", imm.pretty_print(0, allocs), true),
1782
- FPUOpRIMod::Sli64(imm) => ("sli", imm.pretty_print(0, allocs), false),
1783
- };
1784
-
1785
- let (rd, ri, rn) = if vector {
1786
- (
1787
- pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size32x2, allocs),
1788
- pretty_print_vreg_vector(ri, VectorSize::Size32x2, allocs),
1789
- pretty_print_vreg_vector(rn, VectorSize::Size32x2, allocs),
1790
- )
1791
- } else {
1792
- (
1793
- pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs),
1794
- pretty_print_vreg_scalar(ri, ScalarSize::Size64, allocs),
1795
- pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs),
1796
- )
1797
- };
1798
- format!("{} {}, {}, {}, {}", op, rd, ri, rn, imm)
1799
- }
1800
- &Inst::FpuRRRR {
1801
- fpu_op,
1802
- size,
1803
- rd,
1804
- rn,
1805
- rm,
1806
- ra,
1807
- } => {
1808
- let op = match fpu_op {
1809
- FPUOp3::MAdd => "fmadd",
1810
- };
1811
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1812
- let rn = pretty_print_vreg_scalar(rn, size, allocs);
1813
- let rm = pretty_print_vreg_scalar(rm, size, allocs);
1814
- let ra = pretty_print_vreg_scalar(ra, size, allocs);
1815
- format!("{} {}, {}, {}, {}", op, rd, rn, rm, ra)
1816
- }
1817
- &Inst::FpuCmp { size, rn, rm } => {
1818
- let rn = pretty_print_vreg_scalar(rn, size, allocs);
1819
- let rm = pretty_print_vreg_scalar(rm, size, allocs);
1820
- format!("fcmp {}, {}", rn, rm)
1821
- }
1822
- &Inst::FpuLoad32 { rd, ref mem, .. } => {
1823
- let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32, allocs);
1824
- let mem = mem.with_allocs(allocs);
1825
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1826
- let mem = mem.pretty_print_default();
1827
- format!("{}ldr {}, {}", mem_str, rd, mem)
1828
- }
1829
- &Inst::FpuLoad64 { rd, ref mem, .. } => {
1830
- let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
1831
- let mem = mem.with_allocs(allocs);
1832
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1833
- let mem = mem.pretty_print_default();
1834
- format!("{}ldr {}, {}", mem_str, rd, mem)
1835
- }
1836
- &Inst::FpuLoad128 { rd, ref mem, .. } => {
1837
- let rd = pretty_print_reg(rd.to_reg(), allocs);
1838
- let rd = "q".to_string() + &rd[1..];
1839
- let mem = mem.with_allocs(allocs);
1840
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1841
- let mem = mem.pretty_print_default();
1842
- format!("{}ldr {}, {}", mem_str, rd, mem)
1843
- }
1844
- &Inst::FpuStore32 { rd, ref mem, .. } => {
1845
- let rd = pretty_print_vreg_scalar(rd, ScalarSize::Size32, allocs);
1846
- let mem = mem.with_allocs(allocs);
1847
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1848
- let mem = mem.pretty_print_default();
1849
- format!("{}str {}, {}", mem_str, rd, mem)
1850
- }
1851
- &Inst::FpuStore64 { rd, ref mem, .. } => {
1852
- let rd = pretty_print_vreg_scalar(rd, ScalarSize::Size64, allocs);
1853
- let mem = mem.with_allocs(allocs);
1854
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1855
- let mem = mem.pretty_print_default();
1856
- format!("{}str {}, {}", mem_str, rd, mem)
1857
- }
1858
- &Inst::FpuStore128 { rd, ref mem, .. } => {
1859
- let rd = pretty_print_reg(rd, allocs);
1860
- let rd = "q".to_string() + &rd[1..];
1861
- let mem = mem.with_allocs(allocs);
1862
- let (mem_str, mem) = mem_finalize_for_show(&mem, state);
1863
- let mem = mem.pretty_print_default();
1864
- format!("{}str {}, {}", mem_str, rd, mem)
1865
- }
1866
- &Inst::FpuLoadP64 {
1867
- rt, rt2, ref mem, ..
1868
- } => {
1869
- let rt = pretty_print_vreg_scalar(rt.to_reg(), ScalarSize::Size64, allocs);
1870
- let rt2 = pretty_print_vreg_scalar(rt2.to_reg(), ScalarSize::Size64, allocs);
1871
- let mem = mem.with_allocs(allocs);
1872
- let mem = mem.pretty_print_default();
1873
-
1874
- format!("ldp {}, {}, {}", rt, rt2, mem)
1875
- }
1876
- &Inst::FpuStoreP64 {
1877
- rt, rt2, ref mem, ..
1878
- } => {
1879
- let rt = pretty_print_vreg_scalar(rt, ScalarSize::Size64, allocs);
1880
- let rt2 = pretty_print_vreg_scalar(rt2, ScalarSize::Size64, allocs);
1881
- let mem = mem.with_allocs(allocs);
1882
- let mem = mem.pretty_print_default();
1883
-
1884
- format!("stp {}, {}, {}", rt, rt2, mem)
1885
- }
1886
- &Inst::FpuLoadP128 {
1887
- rt, rt2, ref mem, ..
1888
- } => {
1889
- let rt = pretty_print_vreg_scalar(rt.to_reg(), ScalarSize::Size128, allocs);
1890
- let rt2 = pretty_print_vreg_scalar(rt2.to_reg(), ScalarSize::Size128, allocs);
1891
- let mem = mem.with_allocs(allocs);
1892
- let mem = mem.pretty_print_default();
1893
-
1894
- format!("ldp {}, {}, {}", rt, rt2, mem)
1895
- }
1896
- &Inst::FpuStoreP128 {
1897
- rt, rt2, ref mem, ..
1898
- } => {
1899
- let rt = pretty_print_vreg_scalar(rt, ScalarSize::Size128, allocs);
1900
- let rt2 = pretty_print_vreg_scalar(rt2, ScalarSize::Size128, allocs);
1901
- let mem = mem.with_allocs(allocs);
1902
- let mem = mem.pretty_print_default();
1903
-
1904
- format!("stp {}, {}, {}", rt, rt2, mem)
1905
- }
1906
- &Inst::FpuToInt { op, rd, rn } => {
1907
- let (op, sizesrc, sizedest) = match op {
1908
- FpuToIntOp::F32ToI32 => ("fcvtzs", ScalarSize::Size32, OperandSize::Size32),
1909
- FpuToIntOp::F32ToU32 => ("fcvtzu", ScalarSize::Size32, OperandSize::Size32),
1910
- FpuToIntOp::F32ToI64 => ("fcvtzs", ScalarSize::Size32, OperandSize::Size64),
1911
- FpuToIntOp::F32ToU64 => ("fcvtzu", ScalarSize::Size32, OperandSize::Size64),
1912
- FpuToIntOp::F64ToI32 => ("fcvtzs", ScalarSize::Size64, OperandSize::Size32),
1913
- FpuToIntOp::F64ToU32 => ("fcvtzu", ScalarSize::Size64, OperandSize::Size32),
1914
- FpuToIntOp::F64ToI64 => ("fcvtzs", ScalarSize::Size64, OperandSize::Size64),
1915
- FpuToIntOp::F64ToU64 => ("fcvtzu", ScalarSize::Size64, OperandSize::Size64),
1916
- };
1917
- let rd = pretty_print_ireg(rd.to_reg(), sizedest, allocs);
1918
- let rn = pretty_print_vreg_scalar(rn, sizesrc, allocs);
1919
- format!("{} {}, {}", op, rd, rn)
1920
- }
1921
- &Inst::IntToFpu { op, rd, rn } => {
1922
- let (op, sizesrc, sizedest) = match op {
1923
- IntToFpuOp::I32ToF32 => ("scvtf", OperandSize::Size32, ScalarSize::Size32),
1924
- IntToFpuOp::U32ToF32 => ("ucvtf", OperandSize::Size32, ScalarSize::Size32),
1925
- IntToFpuOp::I64ToF32 => ("scvtf", OperandSize::Size64, ScalarSize::Size32),
1926
- IntToFpuOp::U64ToF32 => ("ucvtf", OperandSize::Size64, ScalarSize::Size32),
1927
- IntToFpuOp::I32ToF64 => ("scvtf", OperandSize::Size32, ScalarSize::Size64),
1928
- IntToFpuOp::U32ToF64 => ("ucvtf", OperandSize::Size32, ScalarSize::Size64),
1929
- IntToFpuOp::I64ToF64 => ("scvtf", OperandSize::Size64, ScalarSize::Size64),
1930
- IntToFpuOp::U64ToF64 => ("ucvtf", OperandSize::Size64, ScalarSize::Size64),
1931
- };
1932
- let rd = pretty_print_vreg_scalar(rd.to_reg(), sizedest, allocs);
1933
- let rn = pretty_print_ireg(rn, sizesrc, allocs);
1934
- format!("{} {}, {}", op, rd, rn)
1935
- }
1936
- &Inst::FpuCSel32 { rd, rn, rm, cond } => {
1937
- let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size32, allocs);
1938
- let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size32, allocs);
1939
- let rm = pretty_print_vreg_scalar(rm, ScalarSize::Size32, allocs);
1940
- let cond = cond.pretty_print(0, allocs);
1941
- format!("fcsel {}, {}, {}, {}", rd, rn, rm, cond)
1942
- }
1943
- &Inst::FpuCSel64 { rd, rn, rm, cond } => {
1944
- let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
1945
- let rn = pretty_print_vreg_scalar(rn, ScalarSize::Size64, allocs);
1946
- let rm = pretty_print_vreg_scalar(rm, ScalarSize::Size64, allocs);
1947
- let cond = cond.pretty_print(0, allocs);
1948
- format!("fcsel {}, {}, {}, {}", rd, rn, rm, cond)
1949
- }
1950
- &Inst::FpuRound { op, rd, rn } => {
1951
- let (inst, size) = match op {
1952
- FpuRoundMode::Minus32 => ("frintm", ScalarSize::Size32),
1953
- FpuRoundMode::Minus64 => ("frintm", ScalarSize::Size64),
1954
- FpuRoundMode::Plus32 => ("frintp", ScalarSize::Size32),
1955
- FpuRoundMode::Plus64 => ("frintp", ScalarSize::Size64),
1956
- FpuRoundMode::Zero32 => ("frintz", ScalarSize::Size32),
1957
- FpuRoundMode::Zero64 => ("frintz", ScalarSize::Size64),
1958
- FpuRoundMode::Nearest32 => ("frintn", ScalarSize::Size32),
1959
- FpuRoundMode::Nearest64 => ("frintn", ScalarSize::Size64),
1960
- };
1961
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1962
- let rn = pretty_print_vreg_scalar(rn, size, allocs);
1963
- format!("{} {}, {}", inst, rd, rn)
1964
- }
1965
- &Inst::MovToFpu { rd, rn, size } => {
1966
- let operand_size = size.operand_size();
1967
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1968
- let rn = pretty_print_ireg(rn, operand_size, allocs);
1969
- format!("fmov {}, {}", rd, rn)
1970
- }
1971
- &Inst::FpuMoveFPImm { rd, imm, size } => {
1972
- let imm = imm.pretty_print(0, allocs);
1973
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size, allocs);
1974
-
1975
- format!("fmov {}, {}", rd, imm)
1976
- }
1977
- &Inst::MovToVec {
1978
- rd,
1979
- ri,
1980
- rn,
1981
- idx,
1982
- size,
1983
- } => {
1984
- let rd =
1985
- pretty_print_vreg_element(rd.to_reg(), idx as usize, size.lane_size(), allocs);
1986
- let ri = pretty_print_vreg_element(ri, idx as usize, size.lane_size(), allocs);
1987
- let rn = pretty_print_ireg(rn, size.operand_size(), allocs);
1988
- format!("mov {}, {}, {}", rd, ri, rn)
1989
- }
1990
- &Inst::MovFromVec { rd, rn, idx, size } => {
1991
- let op = match size {
1992
- ScalarSize::Size8 => "umov",
1993
- ScalarSize::Size16 => "umov",
1994
- ScalarSize::Size32 => "mov",
1995
- ScalarSize::Size64 => "mov",
1996
- _ => unimplemented!(),
1997
- };
1998
- let rd = pretty_print_ireg(rd.to_reg(), size.operand_size(), allocs);
1999
- let rn = pretty_print_vreg_element(rn, idx as usize, size, allocs);
2000
- format!("{} {}, {}", op, rd, rn)
2001
- }
2002
- &Inst::MovFromVecSigned {
2003
- rd,
2004
- rn,
2005
- idx,
2006
- size,
2007
- scalar_size,
2008
- } => {
2009
- let rd = pretty_print_ireg(rd.to_reg(), scalar_size, allocs);
2010
- let rn = pretty_print_vreg_element(rn, idx as usize, size.lane_size(), allocs);
2011
- format!("smov {}, {}", rd, rn)
2012
- }
2013
- &Inst::VecDup { rd, rn, size } => {
2014
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2015
- let rn = pretty_print_ireg(rn, size.operand_size(), allocs);
2016
- format!("dup {}, {}", rd, rn)
2017
- }
2018
- &Inst::VecDupFromFpu { rd, rn, size, lane } => {
2019
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2020
- let rn = pretty_print_vreg_element(rn, lane.into(), size.lane_size(), allocs);
2021
- format!("dup {}, {}", rd, rn)
2022
- }
2023
- &Inst::VecDupFPImm { rd, imm, size } => {
2024
- let imm = imm.pretty_print(0, allocs);
2025
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2026
-
2027
- format!("fmov {}, {}", rd, imm)
2028
- }
2029
- &Inst::VecDupImm {
2030
- rd,
2031
- imm,
2032
- invert,
2033
- size,
2034
- } => {
2035
- let imm = imm.pretty_print(0, allocs);
2036
- let op = if invert { "mvni" } else { "movi" };
2037
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2038
-
2039
- format!("{} {}, {}", op, rd, imm)
2040
- }
2041
- &Inst::VecExtend {
2042
- t,
2043
- rd,
2044
- rn,
2045
- high_half,
2046
- lane_size,
2047
- } => {
2048
- let vec64 = VectorSize::from_lane_size(lane_size.narrow(), false);
2049
- let vec128 = VectorSize::from_lane_size(lane_size.narrow(), true);
2050
- let rd_size = VectorSize::from_lane_size(lane_size, true);
2051
- let (op, rn_size) = match (t, high_half) {
2052
- (VecExtendOp::Sxtl, false) => ("sxtl", vec64),
2053
- (VecExtendOp::Sxtl, true) => ("sxtl2", vec128),
2054
- (VecExtendOp::Uxtl, false) => ("uxtl", vec64),
2055
- (VecExtendOp::Uxtl, true) => ("uxtl2", vec128),
2056
- };
2057
- let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size, allocs);
2058
- let rn = pretty_print_vreg_vector(rn, rn_size, allocs);
2059
- format!("{} {}, {}", op, rd, rn)
2060
- }
2061
- &Inst::VecMovElement {
2062
- rd,
2063
- ri,
2064
- rn,
2065
- dest_idx,
2066
- src_idx,
2067
- size,
2068
- } => {
2069
- let rd = pretty_print_vreg_element(
2070
- rd.to_reg(),
2071
- dest_idx as usize,
2072
- size.lane_size(),
2073
- allocs,
2074
- );
2075
- let ri = pretty_print_vreg_element(ri, dest_idx as usize, size.lane_size(), allocs);
2076
- let rn = pretty_print_vreg_element(rn, src_idx as usize, size.lane_size(), allocs);
2077
- format!("mov {}, {}, {}", rd, ri, rn)
2078
- }
2079
- &Inst::VecRRLong {
2080
- op,
2081
- rd,
2082
- rn,
2083
- high_half,
2084
- } => {
2085
- let (op, rd_size, size, suffix) = match (op, high_half) {
2086
- (VecRRLongOp::Fcvtl16, false) => {
2087
- ("fcvtl", VectorSize::Size32x4, VectorSize::Size16x4, "")
2088
- }
2089
- (VecRRLongOp::Fcvtl16, true) => {
2090
- ("fcvtl2", VectorSize::Size32x4, VectorSize::Size16x8, "")
2091
- }
2092
- (VecRRLongOp::Fcvtl32, false) => {
2093
- ("fcvtl", VectorSize::Size64x2, VectorSize::Size32x2, "")
2094
- }
2095
- (VecRRLongOp::Fcvtl32, true) => {
2096
- ("fcvtl2", VectorSize::Size64x2, VectorSize::Size32x4, "")
2097
- }
2098
- (VecRRLongOp::Shll8, false) => {
2099
- ("shll", VectorSize::Size16x8, VectorSize::Size8x8, ", #8")
2100
- }
2101
- (VecRRLongOp::Shll8, true) => {
2102
- ("shll2", VectorSize::Size16x8, VectorSize::Size8x16, ", #8")
2103
- }
2104
- (VecRRLongOp::Shll16, false) => {
2105
- ("shll", VectorSize::Size32x4, VectorSize::Size16x4, ", #16")
2106
- }
2107
- (VecRRLongOp::Shll16, true) => {
2108
- ("shll2", VectorSize::Size32x4, VectorSize::Size16x8, ", #16")
2109
- }
2110
- (VecRRLongOp::Shll32, false) => {
2111
- ("shll", VectorSize::Size64x2, VectorSize::Size32x2, ", #32")
2112
- }
2113
- (VecRRLongOp::Shll32, true) => {
2114
- ("shll2", VectorSize::Size64x2, VectorSize::Size32x4, ", #32")
2115
- }
2116
- };
2117
- let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size, allocs);
2118
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2119
-
2120
- format!("{} {}, {}{}", op, rd, rn, suffix)
2121
- }
2122
- &Inst::VecRRNarrowLow {
2123
- op,
2124
- rd,
2125
- rn,
2126
- lane_size,
2127
- ..
2128
- }
2129
- | &Inst::VecRRNarrowHigh {
2130
- op,
2131
- rd,
2132
- rn,
2133
- lane_size,
2134
- ..
2135
- } => {
2136
- let vec64 = VectorSize::from_lane_size(lane_size, false);
2137
- let vec128 = VectorSize::from_lane_size(lane_size, true);
2138
- let rn_size = VectorSize::from_lane_size(lane_size.widen(), true);
2139
- let high_half = match self {
2140
- &Inst::VecRRNarrowLow { .. } => false,
2141
- &Inst::VecRRNarrowHigh { .. } => true,
2142
- _ => unreachable!(),
2143
- };
2144
- let (op, rd_size) = match (op, high_half) {
2145
- (VecRRNarrowOp::Xtn, false) => ("xtn", vec64),
2146
- (VecRRNarrowOp::Xtn, true) => ("xtn2", vec128),
2147
- (VecRRNarrowOp::Sqxtn, false) => ("sqxtn", vec64),
2148
- (VecRRNarrowOp::Sqxtn, true) => ("sqxtn2", vec128),
2149
- (VecRRNarrowOp::Sqxtun, false) => ("sqxtun", vec64),
2150
- (VecRRNarrowOp::Sqxtun, true) => ("sqxtun2", vec128),
2151
- (VecRRNarrowOp::Uqxtn, false) => ("uqxtn", vec64),
2152
- (VecRRNarrowOp::Uqxtn, true) => ("uqxtn2", vec128),
2153
- (VecRRNarrowOp::Fcvtn, false) => ("fcvtn", vec64),
2154
- (VecRRNarrowOp::Fcvtn, true) => ("fcvtn2", vec128),
2155
- };
2156
- let rn = pretty_print_vreg_vector(rn, rn_size, allocs);
2157
- let rd = pretty_print_vreg_vector(rd.to_reg(), rd_size, allocs);
2158
- let ri = match self {
2159
- &Inst::VecRRNarrowLow { .. } => "".to_string(),
2160
- &Inst::VecRRNarrowHigh { ri, .. } => {
2161
- format!("{}, ", pretty_print_vreg_vector(ri, rd_size, allocs))
2162
- }
2163
- _ => unreachable!(),
2164
- };
2165
-
2166
- format!("{} {}, {}{}", op, rd, ri, rn)
2167
- }
2168
- &Inst::VecRRPair { op, rd, rn } => {
2169
- let op = match op {
2170
- VecPairOp::Addp => "addp",
2171
- };
2172
- let rd = pretty_print_vreg_scalar(rd.to_reg(), ScalarSize::Size64, allocs);
2173
- let rn = pretty_print_vreg_vector(rn, VectorSize::Size64x2, allocs);
2174
-
2175
- format!("{} {}, {}", op, rd, rn)
2176
- }
2177
- &Inst::VecRRPairLong { op, rd, rn } => {
2178
- let (op, dest, src) = match op {
2179
- VecRRPairLongOp::Saddlp8 => {
2180
- ("saddlp", VectorSize::Size16x8, VectorSize::Size8x16)
2181
- }
2182
- VecRRPairLongOp::Saddlp16 => {
2183
- ("saddlp", VectorSize::Size32x4, VectorSize::Size16x8)
2184
- }
2185
- VecRRPairLongOp::Uaddlp8 => {
2186
- ("uaddlp", VectorSize::Size16x8, VectorSize::Size8x16)
2187
- }
2188
- VecRRPairLongOp::Uaddlp16 => {
2189
- ("uaddlp", VectorSize::Size32x4, VectorSize::Size16x8)
2190
- }
2191
- };
2192
- let rd = pretty_print_vreg_vector(rd.to_reg(), dest, allocs);
2193
- let rn = pretty_print_vreg_vector(rn, src, allocs);
2194
-
2195
- format!("{} {}, {}", op, rd, rn)
2196
- }
2197
- &Inst::VecRRR {
2198
- rd,
2199
- rn,
2200
- rm,
2201
- alu_op,
2202
- size,
2203
- } => {
2204
- let (op, size) = match alu_op {
2205
- VecALUOp::Sqadd => ("sqadd", size),
2206
- VecALUOp::Uqadd => ("uqadd", size),
2207
- VecALUOp::Sqsub => ("sqsub", size),
2208
- VecALUOp::Uqsub => ("uqsub", size),
2209
- VecALUOp::Cmeq => ("cmeq", size),
2210
- VecALUOp::Cmge => ("cmge", size),
2211
- VecALUOp::Cmgt => ("cmgt", size),
2212
- VecALUOp::Cmhs => ("cmhs", size),
2213
- VecALUOp::Cmhi => ("cmhi", size),
2214
- VecALUOp::Fcmeq => ("fcmeq", size),
2215
- VecALUOp::Fcmgt => ("fcmgt", size),
2216
- VecALUOp::Fcmge => ("fcmge", size),
2217
- VecALUOp::And => ("and", VectorSize::Size8x16),
2218
- VecALUOp::Bic => ("bic", VectorSize::Size8x16),
2219
- VecALUOp::Orr => ("orr", VectorSize::Size8x16),
2220
- VecALUOp::Eor => ("eor", VectorSize::Size8x16),
2221
- VecALUOp::Umaxp => ("umaxp", size),
2222
- VecALUOp::Add => ("add", size),
2223
- VecALUOp::Sub => ("sub", size),
2224
- VecALUOp::Mul => ("mul", size),
2225
- VecALUOp::Sshl => ("sshl", size),
2226
- VecALUOp::Ushl => ("ushl", size),
2227
- VecALUOp::Umin => ("umin", size),
2228
- VecALUOp::Smin => ("smin", size),
2229
- VecALUOp::Umax => ("umax", size),
2230
- VecALUOp::Smax => ("smax", size),
2231
- VecALUOp::Urhadd => ("urhadd", size),
2232
- VecALUOp::Fadd => ("fadd", size),
2233
- VecALUOp::Fsub => ("fsub", size),
2234
- VecALUOp::Fdiv => ("fdiv", size),
2235
- VecALUOp::Fmax => ("fmax", size),
2236
- VecALUOp::Fmin => ("fmin", size),
2237
- VecALUOp::Fmul => ("fmul", size),
2238
- VecALUOp::Addp => ("addp", size),
2239
- VecALUOp::Zip1 => ("zip1", size),
2240
- VecALUOp::Zip2 => ("zip2", size),
2241
- VecALUOp::Sqrdmulh => ("sqrdmulh", size),
2242
- VecALUOp::Uzp1 => ("uzp1", size),
2243
- VecALUOp::Uzp2 => ("uzp2", size),
2244
- VecALUOp::Trn1 => ("trn1", size),
2245
- VecALUOp::Trn2 => ("trn2", size),
2246
- };
2247
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2248
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2249
- let rm = pretty_print_vreg_vector(rm, size, allocs);
2250
- format!("{} {}, {}, {}", op, rd, rn, rm)
2251
- }
2252
- &Inst::VecRRRMod {
2253
- rd,
2254
- ri,
2255
- rn,
2256
- rm,
2257
- alu_op,
2258
- size,
2259
- } => {
2260
- let (op, size) = match alu_op {
2261
- VecALUModOp::Bsl => ("bsl", VectorSize::Size8x16),
2262
- VecALUModOp::Fmla => ("fmla", size),
2263
- VecALUModOp::Fmls => ("fmls", size),
2264
- };
2265
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2266
- let ri = pretty_print_vreg_vector(ri, size, allocs);
2267
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2268
- let rm = pretty_print_vreg_vector(rm, size, allocs);
2269
- format!("{} {}, {}, {}, {}", op, rd, ri, rn, rm)
2270
- }
2271
- &Inst::VecFmlaElem {
2272
- rd,
2273
- ri,
2274
- rn,
2275
- rm,
2276
- alu_op,
2277
- size,
2278
- idx,
2279
- } => {
2280
- let (op, size) = match alu_op {
2281
- VecALUModOp::Fmla => ("fmla", size),
2282
- VecALUModOp::Fmls => ("fmls", size),
2283
- _ => unreachable!(),
2284
- };
2285
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2286
- let ri = pretty_print_vreg_vector(ri, size, allocs);
2287
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2288
- let rm = pretty_print_vreg_element(rm, idx.into(), size.lane_size(), allocs);
2289
- format!("{} {}, {}, {}, {}", op, rd, ri, rn, rm)
2290
- }
2291
- &Inst::VecRRRLong {
2292
- rd,
2293
- rn,
2294
- rm,
2295
- alu_op,
2296
- high_half,
2297
- } => {
2298
- let (op, dest_size, src_size) = match (alu_op, high_half) {
2299
- (VecRRRLongOp::Smull8, false) => {
2300
- ("smull", VectorSize::Size16x8, VectorSize::Size8x8)
2301
- }
2302
- (VecRRRLongOp::Smull8, true) => {
2303
- ("smull2", VectorSize::Size16x8, VectorSize::Size8x16)
2304
- }
2305
- (VecRRRLongOp::Smull16, false) => {
2306
- ("smull", VectorSize::Size32x4, VectorSize::Size16x4)
2307
- }
2308
- (VecRRRLongOp::Smull16, true) => {
2309
- ("smull2", VectorSize::Size32x4, VectorSize::Size16x8)
2310
- }
2311
- (VecRRRLongOp::Smull32, false) => {
2312
- ("smull", VectorSize::Size64x2, VectorSize::Size32x2)
2313
- }
2314
- (VecRRRLongOp::Smull32, true) => {
2315
- ("smull2", VectorSize::Size64x2, VectorSize::Size32x4)
2316
- }
2317
- (VecRRRLongOp::Umull8, false) => {
2318
- ("umull", VectorSize::Size16x8, VectorSize::Size8x8)
2319
- }
2320
- (VecRRRLongOp::Umull8, true) => {
2321
- ("umull2", VectorSize::Size16x8, VectorSize::Size8x16)
2322
- }
2323
- (VecRRRLongOp::Umull16, false) => {
2324
- ("umull", VectorSize::Size32x4, VectorSize::Size16x4)
2325
- }
2326
- (VecRRRLongOp::Umull16, true) => {
2327
- ("umull2", VectorSize::Size32x4, VectorSize::Size16x8)
2328
- }
2329
- (VecRRRLongOp::Umull32, false) => {
2330
- ("umull", VectorSize::Size64x2, VectorSize::Size32x2)
2331
- }
2332
- (VecRRRLongOp::Umull32, true) => {
2333
- ("umull2", VectorSize::Size64x2, VectorSize::Size32x4)
2334
- }
2335
- };
2336
- let rd = pretty_print_vreg_vector(rd.to_reg(), dest_size, allocs);
2337
- let rn = pretty_print_vreg_vector(rn, src_size, allocs);
2338
- let rm = pretty_print_vreg_vector(rm, src_size, allocs);
2339
- format!("{} {}, {}, {}", op, rd, rn, rm)
2340
- }
2341
- &Inst::VecRRRLongMod {
2342
- rd,
2343
- ri,
2344
- rn,
2345
- rm,
2346
- alu_op,
2347
- high_half,
2348
- } => {
2349
- let (op, dest_size, src_size) = match (alu_op, high_half) {
2350
- (VecRRRLongModOp::Umlal8, false) => {
2351
- ("umlal", VectorSize::Size16x8, VectorSize::Size8x8)
2352
- }
2353
- (VecRRRLongModOp::Umlal8, true) => {
2354
- ("umlal2", VectorSize::Size16x8, VectorSize::Size8x16)
2355
- }
2356
- (VecRRRLongModOp::Umlal16, false) => {
2357
- ("umlal", VectorSize::Size32x4, VectorSize::Size16x4)
2358
- }
2359
- (VecRRRLongModOp::Umlal16, true) => {
2360
- ("umlal2", VectorSize::Size32x4, VectorSize::Size16x8)
2361
- }
2362
- (VecRRRLongModOp::Umlal32, false) => {
2363
- ("umlal", VectorSize::Size64x2, VectorSize::Size32x2)
2364
- }
2365
- (VecRRRLongModOp::Umlal32, true) => {
2366
- ("umlal2", VectorSize::Size64x2, VectorSize::Size32x4)
2367
- }
2368
- };
2369
- let rd = pretty_print_vreg_vector(rd.to_reg(), dest_size, allocs);
2370
- let ri = pretty_print_vreg_vector(ri, dest_size, allocs);
2371
- let rn = pretty_print_vreg_vector(rn, src_size, allocs);
2372
- let rm = pretty_print_vreg_vector(rm, src_size, allocs);
2373
- format!("{} {}, {}, {}, {}", op, rd, ri, rn, rm)
2374
- }
2375
- &Inst::VecMisc { op, rd, rn, size } => {
2376
- let (op, size, suffix) = match op {
2377
- VecMisc2::Not => (
2378
- "mvn",
2379
- if size.is_128bits() {
2380
- VectorSize::Size8x16
2381
- } else {
2382
- VectorSize::Size8x8
2383
- },
2384
- "",
2385
- ),
2386
- VecMisc2::Neg => ("neg", size, ""),
2387
- VecMisc2::Abs => ("abs", size, ""),
2388
- VecMisc2::Fabs => ("fabs", size, ""),
2389
- VecMisc2::Fneg => ("fneg", size, ""),
2390
- VecMisc2::Fsqrt => ("fsqrt", size, ""),
2391
- VecMisc2::Rev16 => ("rev16", size, ""),
2392
- VecMisc2::Rev32 => ("rev32", size, ""),
2393
- VecMisc2::Rev64 => ("rev64", size, ""),
2394
- VecMisc2::Fcvtzs => ("fcvtzs", size, ""),
2395
- VecMisc2::Fcvtzu => ("fcvtzu", size, ""),
2396
- VecMisc2::Scvtf => ("scvtf", size, ""),
2397
- VecMisc2::Ucvtf => ("ucvtf", size, ""),
2398
- VecMisc2::Frintn => ("frintn", size, ""),
2399
- VecMisc2::Frintz => ("frintz", size, ""),
2400
- VecMisc2::Frintm => ("frintm", size, ""),
2401
- VecMisc2::Frintp => ("frintp", size, ""),
2402
- VecMisc2::Cnt => ("cnt", size, ""),
2403
- VecMisc2::Cmeq0 => ("cmeq", size, ", #0"),
2404
- VecMisc2::Cmge0 => ("cmge", size, ", #0"),
2405
- VecMisc2::Cmgt0 => ("cmgt", size, ", #0"),
2406
- VecMisc2::Cmle0 => ("cmle", size, ", #0"),
2407
- VecMisc2::Cmlt0 => ("cmlt", size, ", #0"),
2408
- VecMisc2::Fcmeq0 => ("fcmeq", size, ", #0.0"),
2409
- VecMisc2::Fcmge0 => ("fcmge", size, ", #0.0"),
2410
- VecMisc2::Fcmgt0 => ("fcmgt", size, ", #0.0"),
2411
- VecMisc2::Fcmle0 => ("fcmle", size, ", #0.0"),
2412
- VecMisc2::Fcmlt0 => ("fcmlt", size, ", #0.0"),
2413
- };
2414
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2415
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2416
- format!("{} {}, {}{}", op, rd, rn, suffix)
2417
- }
2418
- &Inst::VecLanes { op, rd, rn, size } => {
2419
- let op = match op {
2420
- VecLanesOp::Uminv => "uminv",
2421
- VecLanesOp::Addv => "addv",
2422
- };
2423
- let rd = pretty_print_vreg_scalar(rd.to_reg(), size.lane_size(), allocs);
2424
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2425
- format!("{} {}, {}", op, rd, rn)
2426
- }
2427
- &Inst::VecShiftImm {
2428
- op,
2429
- rd,
2430
- rn,
2431
- size,
2432
- imm,
2433
- } => {
2434
- let op = match op {
2435
- VecShiftImmOp::Shl => "shl",
2436
- VecShiftImmOp::Ushr => "ushr",
2437
- VecShiftImmOp::Sshr => "sshr",
2438
- };
2439
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2440
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2441
- format!("{} {}, {}, #{}", op, rd, rn, imm)
2442
- }
2443
- &Inst::VecShiftImmMod {
2444
- op,
2445
- rd,
2446
- ri,
2447
- rn,
2448
- size,
2449
- imm,
2450
- } => {
2451
- let op = match op {
2452
- VecShiftImmModOp::Sli => "sli",
2453
- };
2454
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2455
- let ri = pretty_print_vreg_vector(ri, size, allocs);
2456
- let rn = pretty_print_vreg_vector(rn, size, allocs);
2457
- format!("{} {}, {}, {}, #{}", op, rd, ri, rn, imm)
2458
- }
2459
- &Inst::VecExtract { rd, rn, rm, imm4 } => {
2460
- let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2461
- let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2462
- let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2463
- format!("ext {}, {}, {}, #{}", rd, rn, rm, imm4)
2464
- }
2465
- &Inst::VecTbl { rd, rn, rm } => {
2466
- let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2467
- let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2468
- let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2469
- format!("tbl {}, {{ {} }}, {}", rd, rn, rm)
2470
- }
2471
- &Inst::VecTblExt { rd, ri, rn, rm } => {
2472
- let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2473
- let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2474
- let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2475
- let ri = pretty_print_vreg_vector(ri, VectorSize::Size8x16, allocs);
2476
- format!("tbx {}, {}, {{ {} }}, {}", rd, ri, rn, rm)
2477
- }
2478
- &Inst::VecTbl2 { rd, rn, rn2, rm } => {
2479
- let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2480
- let rn2 = pretty_print_vreg_vector(rn2, VectorSize::Size8x16, allocs);
2481
- let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2482
- let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2483
- format!("tbl {}, {{ {}, {} }}, {}", rd, rn, rn2, rm)
2484
- }
2485
- &Inst::VecTbl2Ext {
2486
- rd,
2487
- ri,
2488
- rn,
2489
- rn2,
2490
- rm,
2491
- } => {
2492
- let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2493
- let rn2 = pretty_print_vreg_vector(rn2, VectorSize::Size8x16, allocs);
2494
- let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2495
- let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2496
- let ri = pretty_print_vreg_vector(ri, VectorSize::Size8x16, allocs);
2497
- format!("tbx {}, {}, {{ {}, {} }}, {}", rd, ri, rn, rn2, rm)
2498
- }
2499
- &Inst::VecLoadReplicate { rd, rn, size, .. } => {
2500
- let rd = pretty_print_vreg_vector(rd.to_reg(), size, allocs);
2501
- let rn = pretty_print_reg(rn, allocs);
2502
-
2503
- format!("ld1r {{ {} }}, [{}]", rd, rn)
2504
- }
2505
- &Inst::VecCSel { rd, rn, rm, cond } => {
2506
- let rd = pretty_print_vreg_vector(rd.to_reg(), VectorSize::Size8x16, allocs);
2507
- let rn = pretty_print_vreg_vector(rn, VectorSize::Size8x16, allocs);
2508
- let rm = pretty_print_vreg_vector(rm, VectorSize::Size8x16, allocs);
2509
- let cond = cond.pretty_print(0, allocs);
2510
- format!(
2511
- "vcsel {}, {}, {}, {} (if-then-else diamond)",
2512
- rd, rn, rm, cond
2513
- )
2514
- }
2515
- &Inst::MovToNZCV { rn } => {
2516
- let rn = pretty_print_reg(rn, allocs);
2517
- format!("msr nzcv, {}", rn)
2518
- }
2519
- &Inst::MovFromNZCV { rd } => {
2520
- let rd = pretty_print_reg(rd.to_reg(), allocs);
2521
- format!("mrs {}, nzcv", rd)
2522
- }
2523
- &Inst::Extend {
2524
- rd,
2525
- rn,
2526
- signed: false,
2527
- from_bits: 1,
2528
- ..
2529
- } => {
2530
- let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size32, allocs);
2531
- let rn = pretty_print_ireg(rn, OperandSize::Size32, allocs);
2532
- format!("and {}, {}, #1", rd, rn)
2533
- }
2534
- &Inst::Extend {
2535
- rd,
2536
- rn,
2537
- signed: false,
2538
- from_bits: 32,
2539
- to_bits: 64,
2540
- } => {
2541
- // The case of a zero extension from 32 to 64 bits, is implemented
2542
- // with a "mov" to a 32-bit (W-reg) dest, because this zeroes
2543
- // the top 32 bits.
2544
- let rd = pretty_print_ireg(rd.to_reg(), OperandSize::Size32, allocs);
2545
- let rn = pretty_print_ireg(rn, OperandSize::Size32, allocs);
2546
- format!("mov {}, {}", rd, rn)
2547
- }
2548
- &Inst::Extend {
2549
- rd,
2550
- rn,
2551
- signed,
2552
- from_bits,
2553
- to_bits,
2554
- } => {
2555
- assert!(from_bits <= to_bits);
2556
- let op = match (signed, from_bits) {
2557
- (false, 8) => "uxtb",
2558
- (true, 8) => "sxtb",
2559
- (false, 16) => "uxth",
2560
- (true, 16) => "sxth",
2561
- (true, 32) => "sxtw",
2562
- (true, _) => "sbfx",
2563
- (false, _) => "ubfx",
2564
- };
2565
- if op == "sbfx" || op == "ubfx" {
2566
- let dest_size = OperandSize::from_bits(to_bits);
2567
- let rd = pretty_print_ireg(rd.to_reg(), dest_size, allocs);
2568
- let rn = pretty_print_ireg(rn, dest_size, allocs);
2569
- format!("{} {}, {}, #0, #{}", op, rd, rn, from_bits)
2570
- } else {
2571
- let dest_size = if signed {
2572
- OperandSize::from_bits(to_bits)
2573
- } else {
2574
- OperandSize::Size32
2575
- };
2576
- let rd = pretty_print_ireg(rd.to_reg(), dest_size, allocs);
2577
- let rn = pretty_print_ireg(rn, OperandSize::from_bits(from_bits), allocs);
2578
- format!("{} {}, {}", op, rd, rn)
2579
- }
2580
- }
2581
- &Inst::Call { .. } => format!("bl 0"),
2582
- &Inst::CallInd { ref info, .. } => {
2583
- let rn = pretty_print_reg(info.rn, allocs);
2584
- format!("blr {}", rn)
2585
- }
2586
- &Inst::ReturnCall {
2587
- ref callee,
2588
- ref info,
2589
- } => {
2590
- let mut s = format!(
2591
- "return_call {callee:?} old_stack_arg_size:{} new_stack_arg_size:{}",
2592
- info.old_stack_arg_size, info.new_stack_arg_size
2593
- );
2594
- for ret in &info.uses {
2595
- let preg = pretty_print_reg(ret.preg, &mut empty_allocs);
2596
- let vreg = pretty_print_reg(ret.vreg, allocs);
2597
- write!(&mut s, " {vreg}={preg}").unwrap();
2598
- }
2599
- s
2600
- }
2601
- &Inst::ReturnCallInd { callee, ref info } => {
2602
- let callee = pretty_print_reg(callee, allocs);
2603
- let mut s = format!(
2604
- "return_call_ind {callee} old_stack_arg_size:{} new_stack_arg_size:{}",
2605
- info.old_stack_arg_size, info.new_stack_arg_size
2606
- );
2607
- for ret in &info.uses {
2608
- let preg = pretty_print_reg(ret.preg, &mut empty_allocs);
2609
- let vreg = pretty_print_reg(ret.vreg, allocs);
2610
- write!(&mut s, " {vreg}={preg}").unwrap();
2611
- }
2612
- s
2613
- }
2614
- &Inst::Args { ref args } => {
2615
- let mut s = "args".to_string();
2616
- for arg in args {
2617
- let preg = pretty_print_reg(arg.preg, &mut empty_allocs);
2618
- let def = pretty_print_reg(arg.vreg.to_reg(), allocs);
2619
- write!(&mut s, " {}={}", def, preg).unwrap();
2620
- }
2621
- s
2622
- }
2623
- &Inst::Rets { ref rets } => {
2624
- let mut s = "rets".to_string();
2625
- for ret in rets {
2626
- let preg = pretty_print_reg(ret.preg, &mut empty_allocs);
2627
- let vreg = pretty_print_reg(ret.vreg, allocs);
2628
- write!(&mut s, " {vreg}={preg}").unwrap();
2629
- }
2630
- s
2631
- }
2632
- &Inst::Ret {} => "ret".to_string(),
2633
- &Inst::AuthenticatedRet { key, is_hint } => {
2634
- let key = match key {
2635
- APIKey::AZ => "az",
2636
- APIKey::BZ => "bz",
2637
- APIKey::ASP => "asp",
2638
- APIKey::BSP => "bsp",
2639
- };
2640
- match is_hint {
2641
- false => format!("reta{key}"),
2642
- true => format!("auti{key} ; ret"),
2643
- }
2644
- }
2645
- &Inst::Jump { ref dest } => {
2646
- let dest = dest.pretty_print(0, allocs);
2647
- format!("b {}", dest)
2648
- }
2649
- &Inst::CondBr {
2650
- ref taken,
2651
- ref not_taken,
2652
- ref kind,
2653
- } => {
2654
- let taken = taken.pretty_print(0, allocs);
2655
- let not_taken = not_taken.pretty_print(0, allocs);
2656
- match kind {
2657
- &CondBrKind::Zero(reg) => {
2658
- let reg = pretty_print_reg(reg, allocs);
2659
- format!("cbz {}, {} ; b {}", reg, taken, not_taken)
2660
- }
2661
- &CondBrKind::NotZero(reg) => {
2662
- let reg = pretty_print_reg(reg, allocs);
2663
- format!("cbnz {}, {} ; b {}", reg, taken, not_taken)
2664
- }
2665
- &CondBrKind::Cond(c) => {
2666
- let c = c.pretty_print(0, allocs);
2667
- format!("b.{} {} ; b {}", c, taken, not_taken)
2668
- }
2669
- }
2670
- }
2671
- &Inst::TestBitAndBranch {
2672
- kind,
2673
- ref taken,
2674
- ref not_taken,
2675
- rn,
2676
- bit,
2677
- } => {
2678
- let cond = match kind {
2679
- TestBitAndBranchKind::Z => "z",
2680
- TestBitAndBranchKind::NZ => "nz",
2681
- };
2682
- let taken = taken.pretty_print(0, allocs);
2683
- let not_taken = not_taken.pretty_print(0, allocs);
2684
- let rn = pretty_print_reg(rn, allocs);
2685
- format!("tb{cond} {rn}, #{bit}, {taken} ; b {not_taken}")
2686
- }
2687
- &Inst::IndirectBr { rn, .. } => {
2688
- let rn = pretty_print_reg(rn, allocs);
2689
- format!("br {}", rn)
2690
- }
2691
- &Inst::Brk => "brk #0".to_string(),
2692
- &Inst::Udf { .. } => "udf #0xc11f".to_string(),
2693
- &Inst::TrapIf {
2694
- ref kind,
2695
- trap_code,
2696
- } => match kind {
2697
- &CondBrKind::Zero(reg) => {
2698
- let reg = pretty_print_reg(reg, allocs);
2699
- format!("cbz {reg}, #trap={trap_code}")
2700
- }
2701
- &CondBrKind::NotZero(reg) => {
2702
- let reg = pretty_print_reg(reg, allocs);
2703
- format!("cbnz {reg}, #trap={trap_code}")
2704
- }
2705
- &CondBrKind::Cond(c) => {
2706
- let c = c.pretty_print(0, allocs);
2707
- format!("b.{c} #trap={trap_code}")
2708
- }
2709
- },
2710
- &Inst::Adr { rd, off } => {
2711
- let rd = pretty_print_reg(rd.to_reg(), allocs);
2712
- format!("adr {}, pc+{}", rd, off)
2713
- }
2714
- &Inst::Adrp { rd, off } => {
2715
- let rd = pretty_print_reg(rd.to_reg(), allocs);
2716
- // This instruction addresses 4KiB pages, so multiply it by the page size.
2717
- let byte_offset = off * 4096;
2718
- format!("adrp {}, pc+{}", rd, byte_offset)
2719
- }
2720
- &Inst::Word4 { data } => format!("data.i32 {}", data),
2721
- &Inst::Word8 { data } => format!("data.i64 {}", data),
2722
- &Inst::JTSequence {
2723
- default,
2724
- ref targets,
2725
- ridx,
2726
- rtmp1,
2727
- rtmp2,
2728
- ..
2729
- } => {
2730
- let ridx = pretty_print_reg(ridx, allocs);
2731
- let rtmp1 = pretty_print_reg(rtmp1.to_reg(), allocs);
2732
- let rtmp2 = pretty_print_reg(rtmp2.to_reg(), allocs);
2733
- let default_target = BranchTarget::Label(default).pretty_print(0, allocs);
2734
- format!(
2735
- concat!(
2736
- "b.hs {} ; ",
2737
- "csel {}, xzr, {}, hs ; ",
2738
- "csdb ; ",
2739
- "adr {}, pc+16 ; ",
2740
- "ldrsw {}, [{}, {}, uxtw #2] ; ",
2741
- "add {}, {}, {} ; ",
2742
- "br {} ; ",
2743
- "jt_entries {:?}"
2744
- ),
2745
- default_target,
2746
- rtmp2,
2747
- ridx,
2748
- rtmp1,
2749
- rtmp2,
2750
- rtmp1,
2751
- rtmp2,
2752
- rtmp1,
2753
- rtmp1,
2754
- rtmp2,
2755
- rtmp1,
2756
- targets
2757
- )
2758
- }
2759
- &Inst::LoadExtName {
2760
- rd,
2761
- ref name,
2762
- offset,
2763
- } => {
2764
- let rd = pretty_print_reg(rd.to_reg(), allocs);
2765
- format!("load_ext_name {rd}, {name:?}+{offset}")
2766
- }
2767
- &Inst::LoadAddr { rd, ref mem } => {
2768
- // TODO: we really should find a better way to avoid duplication of
2769
- // this logic between `emit()` and `show_rru()` -- a separate 1-to-N
2770
- // expansion stage (i.e., legalization, but without the slow edit-in-place
2771
- // of the existing legalization framework).
2772
- let rd = allocs.next_writable(rd);
2773
- let mem = mem.with_allocs(allocs);
2774
- let (mem_insts, mem) = mem_finalize(None, &mem, state);
2775
- let mut ret = String::new();
2776
- for inst in mem_insts.into_iter() {
2777
- ret.push_str(
2778
- &inst.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2779
- );
2780
- }
2781
- let (reg, index_reg, offset) = match mem {
2782
- AMode::RegExtended { rn, rm, extendop } => (rn, Some((rm, extendop)), 0),
2783
- AMode::Unscaled { rn, simm9 } => (rn, None, simm9.value()),
2784
- AMode::UnsignedOffset { rn, uimm12 } => (rn, None, uimm12.value() as i32),
2785
- _ => panic!("Unsupported case for LoadAddr: {:?}", mem),
2786
- };
2787
- let abs_offset = if offset < 0 {
2788
- -offset as u64
2789
- } else {
2790
- offset as u64
2791
- };
2792
- let alu_op = if offset < 0 { ALUOp::Sub } else { ALUOp::Add };
2793
-
2794
- if let Some((idx, extendop)) = index_reg {
2795
- let add = Inst::AluRRRExtend {
2796
- alu_op: ALUOp::Add,
2797
- size: OperandSize::Size64,
2798
- rd,
2799
- rn: reg,
2800
- rm: idx,
2801
- extendop,
2802
- };
2803
-
2804
- ret.push_str(
2805
- &add.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2806
- );
2807
- } else if offset == 0 {
2808
- let mov = Inst::gen_move(rd, reg, I64);
2809
- ret.push_str(
2810
- &mov.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2811
- );
2812
- } else if let Some(imm12) = Imm12::maybe_from_u64(abs_offset) {
2813
- let add = Inst::AluRRImm12 {
2814
- alu_op,
2815
- size: OperandSize::Size64,
2816
- rd,
2817
- rn: reg,
2818
- imm12,
2819
- };
2820
- ret.push_str(
2821
- &add.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2822
- );
2823
- } else {
2824
- let tmp = writable_spilltmp_reg();
2825
- for inst in Inst::load_constant(tmp, abs_offset, &mut |_| tmp).into_iter() {
2826
- ret.push_str(
2827
- &inst.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2828
- );
2829
- }
2830
- let add = Inst::AluRRR {
2831
- alu_op,
2832
- size: OperandSize::Size64,
2833
- rd,
2834
- rn: reg,
2835
- rm: tmp.to_reg(),
2836
- };
2837
- ret.push_str(
2838
- &add.print_with_state(&mut EmitState::default(), &mut empty_allocs),
2839
- );
2840
- }
2841
- ret
2842
- }
2843
- &Inst::Paci { key } => {
2844
- let key = match key {
2845
- APIKey::AZ => "az",
2846
- APIKey::BZ => "bz",
2847
- APIKey::ASP => "asp",
2848
- APIKey::BSP => "bsp",
2849
- };
2850
-
2851
- "paci".to_string() + key
2852
- }
2853
- &Inst::Xpaclri => "xpaclri".to_string(),
2854
- &Inst::Bti { targets } => {
2855
- let targets = match targets {
2856
- BranchTargetType::None => "",
2857
- BranchTargetType::C => " c",
2858
- BranchTargetType::J => " j",
2859
- BranchTargetType::JC => " jc",
2860
- };
2861
-
2862
- "bti".to_string() + targets
2863
- }
2864
- &Inst::VirtualSPOffsetAdj { offset } => {
2865
- state.virtual_sp_offset += offset;
2866
- format!("virtual_sp_offset_adjust {}", offset)
2867
- }
2868
- &Inst::EmitIsland { needed_space } => format!("emit_island {}", needed_space),
2869
-
2870
- &Inst::ElfTlsGetAddr {
2871
- ref symbol,
2872
- rd,
2873
- tmp,
2874
- } => {
2875
- let rd = pretty_print_reg(rd.to_reg(), allocs);
2876
- let tmp = pretty_print_reg(tmp.to_reg(), allocs);
2877
- format!("elf_tls_get_addr {}, {}, {}", rd, tmp, symbol.display(None))
2878
- }
2879
- &Inst::MachOTlsGetAddr { ref symbol, rd } => {
2880
- let rd = pretty_print_reg(rd.to_reg(), allocs);
2881
- format!("macho_tls_get_addr {}, {}", rd, symbol.display(None))
2882
- }
2883
- &Inst::Unwind { ref inst } => {
2884
- format!("unwind {:?}", inst)
2885
- }
2886
- &Inst::DummyUse { reg } => {
2887
- let reg = pretty_print_reg(reg, allocs);
2888
- format!("dummy_use {}", reg)
2889
- }
2890
- &Inst::StackProbeLoop { start, end, step } => {
2891
- let start = pretty_print_reg(start.to_reg(), allocs);
2892
- let end = pretty_print_reg(end, allocs);
2893
- let step = step.pretty_print(0, allocs);
2894
- format!("stack_probe_loop {start}, {end}, {step}")
2895
- }
2896
- }
2897
- }
2898
- }
2899
-
2900
- //=============================================================================
2901
- // Label fixups and jump veneers.
2902
-
2903
- /// Different forms of label references for different instruction formats.
2904
- #[derive(Clone, Copy, Debug, PartialEq, Eq)]
2905
- pub enum LabelUse {
2906
- /// 14-bit branch offset (conditional branches). PC-rel, offset is imm <<
2907
- /// 2. Immediate is 14 signed bits, in bits 18:5. Used by tbz and tbnz.
2908
- Branch14,
2909
- /// 19-bit branch offset (conditional branches). PC-rel, offset is imm << 2. Immediate is 19
2910
- /// signed bits, in bits 23:5. Used by cbz, cbnz, b.cond.
2911
- Branch19,
2912
- /// 26-bit branch offset (unconditional branches). PC-rel, offset is imm << 2. Immediate is 26
2913
- /// signed bits, in bits 25:0. Used by b, bl.
2914
- Branch26,
2915
- #[allow(dead_code)]
2916
- /// 19-bit offset for LDR (load literal). PC-rel, offset is imm << 2. Immediate is 19 signed bits,
2917
- /// in bits 23:5.
2918
- Ldr19,
2919
- #[allow(dead_code)]
2920
- /// 21-bit offset for ADR (get address of label). PC-rel, offset is not shifted. Immediate is
2921
- /// 21 signed bits, with high 19 bits in bits 23:5 and low 2 bits in bits 30:29.
2922
- Adr21,
2923
- /// 32-bit PC relative constant offset (from address of constant itself),
2924
- /// signed. Used in jump tables.
2925
- PCRel32,
2926
- }
2927
-
2928
- impl MachInstLabelUse for LabelUse {
2929
- /// Alignment for veneer code. Every AArch64 instruction must be 4-byte-aligned.
2930
- const ALIGN: CodeOffset = 4;
2931
-
2932
- /// Maximum PC-relative range (positive), inclusive.
2933
- fn max_pos_range(self) -> CodeOffset {
2934
- match self {
2935
- // N-bit immediate, left-shifted by 2, for (N+2) bits of total
2936
- // range. Signed, so +2^(N+1) from zero. Likewise for two other
2937
- // shifted cases below.
2938
- LabelUse::Branch14 => (1 << 15) - 1,
2939
- LabelUse::Branch19 => (1 << 20) - 1,
2940
- LabelUse::Branch26 => (1 << 27) - 1,
2941
- LabelUse::Ldr19 => (1 << 20) - 1,
2942
- // Adr does not shift its immediate, so the 21-bit immediate gives 21 bits of total
2943
- // range.
2944
- LabelUse::Adr21 => (1 << 20) - 1,
2945
- LabelUse::PCRel32 => 0x7fffffff,
2946
- }
2947
- }
2948
-
2949
- /// Maximum PC-relative range (negative).
2950
- fn max_neg_range(self) -> CodeOffset {
2951
- // All forms are twos-complement signed offsets, so negative limit is one more than
2952
- // positive limit.
2953
- self.max_pos_range() + 1
2954
- }
2955
-
2956
- /// Size of window into code needed to do the patch.
2957
- fn patch_size(self) -> CodeOffset {
2958
- // Patch is on one instruction only for all of these label reference types.
2959
- 4
2960
- }
2961
-
2962
- /// Perform the patch.
2963
- fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
2964
- let pc_rel = (label_offset as i64) - (use_offset as i64);
2965
- debug_assert!(pc_rel <= self.max_pos_range() as i64);
2966
- debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
2967
- let pc_rel = pc_rel as u32;
2968
- let insn_word = u32::from_le_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
2969
- let mask = match self {
2970
- LabelUse::Branch14 => 0x0007ffe0, // bits 18..5 inclusive
2971
- LabelUse::Branch19 => 0x00ffffe0, // bits 23..5 inclusive
2972
- LabelUse::Branch26 => 0x03ffffff, // bits 25..0 inclusive
2973
- LabelUse::Ldr19 => 0x00ffffe0, // bits 23..5 inclusive
2974
- LabelUse::Adr21 => 0x60ffffe0, // bits 30..29, 25..5 inclusive
2975
- LabelUse::PCRel32 => 0xffffffff,
2976
- };
2977
- let pc_rel_shifted = match self {
2978
- LabelUse::Adr21 | LabelUse::PCRel32 => pc_rel,
2979
- _ => {
2980
- debug_assert!(pc_rel & 3 == 0);
2981
- pc_rel >> 2
2982
- }
2983
- };
2984
- let pc_rel_inserted = match self {
2985
- LabelUse::Branch14 => (pc_rel_shifted & 0x3fff) << 5,
2986
- LabelUse::Branch19 | LabelUse::Ldr19 => (pc_rel_shifted & 0x7ffff) << 5,
2987
- LabelUse::Branch26 => pc_rel_shifted & 0x3ffffff,
2988
- LabelUse::Adr21 => (pc_rel_shifted & 0x7ffff) << 5 | (pc_rel_shifted & 0x180000) << 10,
2989
- LabelUse::PCRel32 => pc_rel_shifted,
2990
- };
2991
- let is_add = match self {
2992
- LabelUse::PCRel32 => true,
2993
- _ => false,
2994
- };
2995
- let insn_word = if is_add {
2996
- insn_word.wrapping_add(pc_rel_inserted)
2997
- } else {
2998
- (insn_word & !mask) | pc_rel_inserted
2999
- };
3000
- buffer[0..4].clone_from_slice(&u32::to_le_bytes(insn_word));
3001
- }
3002
-
3003
- /// Is a veneer supported for this label reference type?
3004
- fn supports_veneer(self) -> bool {
3005
- match self {
3006
- LabelUse::Branch14 | LabelUse::Branch19 => true, // veneer is a Branch26
3007
- LabelUse::Branch26 => true, // veneer is a PCRel32
3008
- _ => false,
3009
- }
3010
- }
3011
-
3012
- /// How large is the veneer, if supported?
3013
- fn veneer_size(self) -> CodeOffset {
3014
- match self {
3015
- LabelUse::Branch14 | LabelUse::Branch19 => 4,
3016
- LabelUse::Branch26 => 20,
3017
- _ => unreachable!(),
3018
- }
3019
- }
3020
-
3021
- fn worst_case_veneer_size() -> CodeOffset {
3022
- 20
3023
- }
3024
-
3025
- /// Generate a veneer into the buffer, given that this veneer is at `veneer_offset`, and return
3026
- /// an offset and label-use for the veneer's use of the original label.
3027
- fn generate_veneer(
3028
- self,
3029
- buffer: &mut [u8],
3030
- veneer_offset: CodeOffset,
3031
- ) -> (CodeOffset, LabelUse) {
3032
- match self {
3033
- LabelUse::Branch14 | LabelUse::Branch19 => {
3034
- // veneer is a Branch26 (unconditional branch). Just encode directly here -- don't
3035
- // bother with constructing an Inst.
3036
- let insn_word = 0b000101 << 26;
3037
- buffer[0..4].clone_from_slice(&u32::to_le_bytes(insn_word));
3038
- (veneer_offset, LabelUse::Branch26)
3039
- }
3040
-
3041
- // This is promoting a 26-bit call/jump to a 32-bit call/jump to
3042
- // get a further range. This jump translates to a jump to a
3043
- // relative location based on the address of the constant loaded
3044
- // from here.
3045
- //
3046
- // If this path is taken from a call instruction then caller-saved
3047
- // registers are available (minus arguments), so x16/x17 are
3048
- // available. Otherwise for intra-function jumps we also reserve
3049
- // x16/x17 as spill-style registers. In both cases these are
3050
- // available for us to use.
3051
- LabelUse::Branch26 => {
3052
- let tmp1 = regs::spilltmp_reg();
3053
- let tmp1_w = regs::writable_spilltmp_reg();
3054
- let tmp2 = regs::tmp2_reg();
3055
- let tmp2_w = regs::writable_tmp2_reg();
3056
- // ldrsw x16, 16
3057
- let ldr = emit::enc_ldst_imm19(0b1001_1000, 16 / 4, tmp1);
3058
- // adr x17, 12
3059
- let adr = emit::enc_adr(12, tmp2_w);
3060
- // add x16, x16, x17
3061
- let add = emit::enc_arith_rrr(0b10001011_000, 0, tmp1_w, tmp1, tmp2);
3062
- // br x16
3063
- let br = emit::enc_br(tmp1);
3064
- buffer[0..4].clone_from_slice(&u32::to_le_bytes(ldr));
3065
- buffer[4..8].clone_from_slice(&u32::to_le_bytes(adr));
3066
- buffer[8..12].clone_from_slice(&u32::to_le_bytes(add));
3067
- buffer[12..16].clone_from_slice(&u32::to_le_bytes(br));
3068
- // the 4-byte signed immediate we'll load is after these
3069
- // instructions, 16-bytes in.
3070
- (veneer_offset + 16, LabelUse::PCRel32)
3071
- }
3072
-
3073
- _ => panic!("Unsupported label-reference type for veneer generation!"),
3074
- }
3075
- }
3076
-
3077
- fn from_reloc(reloc: Reloc, addend: Addend) -> Option<LabelUse> {
3078
- match (reloc, addend) {
3079
- (Reloc::Arm64Call, 0) => Some(LabelUse::Branch26),
3080
- _ => None,
3081
- }
3082
- }
3083
- }