wasmtime 28.0.0 → 29.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2967) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +155 -120
  3. data/ext/Cargo.toml +5 -5
  4. data/ext/cargo-vendor/bitflags-2.8.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/bitflags-2.8.0/CHANGELOG.md +581 -0
  6. data/ext/cargo-vendor/bitflags-2.8.0/Cargo.lock +384 -0
  7. data/ext/cargo-vendor/bitflags-2.8.0/Cargo.toml +130 -0
  8. data/ext/cargo-vendor/bitflags-2.8.0/README.md +77 -0
  9. data/ext/cargo-vendor/bitflags-2.8.0/examples/custom_derive.rs +23 -0
  10. data/ext/cargo-vendor/bitflags-2.8.0/src/external/arbitrary.rs +33 -0
  11. data/ext/cargo-vendor/bitflags-2.8.0/src/lib.rs +1025 -0
  12. data/ext/cargo-vendor/bitflags-2.8.0/src/tests/bitflags_match.rs +93 -0
  13. data/ext/cargo-vendor/bitflags-2.8.0/src/tests/truncate.rs +29 -0
  14. data/ext/cargo-vendor/bitflags-2.8.0/src/tests/unknown.rs +40 -0
  15. data/ext/cargo-vendor/bitflags-2.8.0/src/tests.rs +134 -0
  16. data/ext/cargo-vendor/bitflags-2.8.0/src/traits.rs +444 -0
  17. data/ext/cargo-vendor/cc-1.2.10/.cargo-checksum.json +1 -0
  18. data/ext/cargo-vendor/cc-1.2.10/CHANGELOG.md +379 -0
  19. data/ext/cargo-vendor/cc-1.2.10/Cargo.lock +191 -0
  20. data/ext/cargo-vendor/cc-1.2.10/Cargo.toml +67 -0
  21. data/ext/cargo-vendor/cc-1.2.10/src/flags.rs +492 -0
  22. data/ext/cargo-vendor/cc-1.2.10/src/lib.rs +4216 -0
  23. data/ext/cargo-vendor/cc-1.2.10/src/target/generated.rs +3403 -0
  24. data/ext/cargo-vendor/cc-1.2.10/src/tool.rs +512 -0
  25. data/ext/cargo-vendor/cc-1.2.10/src/windows/windows_sys.rs +134 -0
  26. data/ext/cargo-vendor/cpufeatures-0.2.17/.cargo-checksum.json +1 -0
  27. data/ext/cargo-vendor/cpufeatures-0.2.17/CHANGELOG.md +168 -0
  28. data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.lock +16 -0
  29. data/ext/cargo-vendor/cpufeatures-0.2.17/Cargo.toml +71 -0
  30. data/ext/cargo-vendor/cpufeatures-0.2.17/LICENSE-MIT +25 -0
  31. data/ext/cargo-vendor/cpufeatures-0.2.17/README.md +126 -0
  32. data/ext/cargo-vendor/cranelift-bforest-0.116.1/.cargo-checksum.json +1 -0
  33. data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.lock +25 -0
  34. data/ext/cargo-vendor/cranelift-bforest-0.116.1/Cargo.toml +73 -0
  35. data/ext/cargo-vendor/cranelift-bitset-0.116.1/.cargo-checksum.json +1 -0
  36. data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.lock +73 -0
  37. data/ext/cargo-vendor/cranelift-bitset-0.116.1/Cargo.toml +88 -0
  38. data/ext/cargo-vendor/cranelift-bitset-0.116.1/src/scalar.rs +629 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.116.0/.cargo-checksum.json +1 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.lock +1078 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.116.0/Cargo.toml +242 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.116.0/build.rs +223 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/binemit/mod.rs +174 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/ir/immediates.rs +1961 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/abi.rs +1540 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/args.rs +711 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit.rs +3577 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/mod.rs +3056 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst/regs.rs +281 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/inst.isle +5102 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower/isle.rs +765 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/lower.isle +3161 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/aarch64/mod.rs +260 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/mod.rs +476 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/abi.rs +943 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/args.rs +580 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/emit.rs +710 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/mod.rs +846 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst/regs.rs +164 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/inst.isle +489 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower/isle.rs +162 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/lower.isle +1414 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/pulley_shared/mod.rs +287 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/abi.rs +995 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/args.rs +1957 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/abi.rs +1399 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/s390x/inst/emit.rs +3435 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/abi.rs +1386 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/inst.isle +5758 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle/generated_code.rs +16 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isa/x64/lower/isle.rs +997 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/isle_prelude.rs +1156 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/abi.rs +2451 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/buffer.rs +2496 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/machinst/lower.rs +1603 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude.isle +836 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.116.0/src/prelude_lower.isle +1128 -0
  80. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/.cargo-checksum.json +1 -0
  81. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.lock +46 -0
  82. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/Cargo.toml +75 -0
  83. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/cdsl/instructions.rs +494 -0
  84. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isa/pulley.rs +20 -0
  85. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/isle.rs +186 -0
  86. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/lib.rs +111 -0
  87. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/pulley.rs +401 -0
  88. data/ext/cargo-vendor/cranelift-codegen-meta-0.116.0/src/shared/instructions.rs +3786 -0
  89. data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/.cargo-checksum.json +1 -0
  90. data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.lock +7 -0
  91. data/ext/cargo-vendor/cranelift-codegen-shared-0.116.1/Cargo.toml +33 -0
  92. data/ext/cargo-vendor/cranelift-control-0.116.1/.cargo-checksum.json +1 -0
  93. data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.lock +16 -0
  94. data/ext/cargo-vendor/cranelift-control-0.116.1/Cargo.toml +44 -0
  95. data/ext/cargo-vendor/cranelift-entity-0.116.1/.cargo-checksum.json +1 -0
  96. data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.lock +77 -0
  97. data/ext/cargo-vendor/cranelift-entity-0.116.1/Cargo.toml +89 -0
  98. data/ext/cargo-vendor/cranelift-entity-0.116.1/src/sparse.rs +411 -0
  99. data/ext/cargo-vendor/cranelift-frontend-0.116.0/.cargo-checksum.json +1 -0
  100. data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.lock +544 -0
  101. data/ext/cargo-vendor/cranelift-frontend-0.116.0/Cargo.toml +111 -0
  102. data/ext/cargo-vendor/cranelift-isle-0.116.0/.cargo-checksum.json +1 -0
  103. data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.lock +294 -0
  104. data/ext/cargo-vendor/cranelift-isle-0.116.0/Cargo.toml +83 -0
  105. data/ext/cargo-vendor/cranelift-native-0.116.0/.cargo-checksum.json +1 -0
  106. data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.lock +261 -0
  107. data/ext/cargo-vendor/cranelift-native-0.116.0/Cargo.toml +53 -0
  108. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/.cargo-checksum.json +1 -0
  109. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/Cargo.toml +70 -0
  110. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/README.md +52 -0
  111. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.29/tests/common/mod.rs +33 -0
  112. data/ext/cargo-vendor/indexmap-2.7.1/.cargo-checksum.json +1 -0
  113. data/ext/cargo-vendor/indexmap-2.7.1/Cargo.lock +333 -0
  114. data/ext/cargo-vendor/indexmap-2.7.1/Cargo.toml +150 -0
  115. data/ext/cargo-vendor/indexmap-2.7.1/RELEASES.md +541 -0
  116. data/ext/cargo-vendor/indexmap-2.7.1/src/lib.rs +273 -0
  117. data/ext/cargo-vendor/indexmap-2.7.1/src/map/core/entry.rs +571 -0
  118. data/ext/cargo-vendor/indexmap-2.7.1/src/map/core.rs +738 -0
  119. data/ext/cargo-vendor/indexmap-2.7.1/src/map/iter.rs +776 -0
  120. data/ext/cargo-vendor/indexmap-2.7.1/src/map.rs +1608 -0
  121. data/ext/cargo-vendor/indexmap-2.7.1/src/set/iter.rs +628 -0
  122. data/ext/cargo-vendor/indexmap-2.7.1/src/set.rs +1301 -0
  123. data/ext/cargo-vendor/indexmap-2.7.1/src/util.rs +58 -0
  124. data/ext/cargo-vendor/ipnet-2.11.0/.cargo-checksum.json +1 -0
  125. data/ext/cargo-vendor/ipnet-2.11.0/Cargo.lock +179 -0
  126. data/ext/cargo-vendor/ipnet-2.11.0/Cargo.toml +69 -0
  127. data/ext/cargo-vendor/ipnet-2.11.0/src/ipext.rs +989 -0
  128. data/ext/cargo-vendor/ipnet-2.11.0/src/ipnet.rs +2001 -0
  129. data/ext/cargo-vendor/ipnet-2.11.0/src/lib.rs +106 -0
  130. data/ext/cargo-vendor/js-sys-0.3.77/.cargo-checksum.json +1 -0
  131. data/ext/cargo-vendor/js-sys-0.3.77/Cargo.lock +127 -0
  132. data/ext/cargo-vendor/js-sys-0.3.77/Cargo.toml +69 -0
  133. data/ext/cargo-vendor/js-sys-0.3.77/src/lib.rs +6439 -0
  134. data/ext/cargo-vendor/log-0.4.25/.cargo-checksum.json +1 -0
  135. data/ext/cargo-vendor/log-0.4.25/CHANGELOG.md +368 -0
  136. data/ext/cargo-vendor/log-0.4.25/Cargo.toml +143 -0
  137. data/ext/cargo-vendor/log-0.4.25/README.md +134 -0
  138. data/ext/cargo-vendor/log-0.4.25/src/kv/key.rs +163 -0
  139. data/ext/cargo-vendor/log-0.4.25/src/kv/mod.rs +265 -0
  140. data/ext/cargo-vendor/log-0.4.25/src/kv/value.rs +1394 -0
  141. data/ext/cargo-vendor/log-0.4.25/src/lib.rs +1884 -0
  142. data/ext/cargo-vendor/log-0.4.25/src/serde.rs +397 -0
  143. data/ext/cargo-vendor/miniz_oxide-0.8.3/.cargo-checksum.json +1 -0
  144. data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.lock +48 -0
  145. data/ext/cargo-vendor/miniz_oxide-0.8.3/Cargo.toml +90 -0
  146. data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE +25 -0
  147. data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-MIT.md +24 -0
  148. data/ext/cargo-vendor/miniz_oxide-0.8.3/LICENSE-ZLIB.md +14 -0
  149. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/core.rs +2459 -0
  150. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/mod.rs +237 -0
  151. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/stored.rs +306 -0
  152. data/ext/cargo-vendor/miniz_oxide-0.8.3/src/deflate/zlib.rs +112 -0
  153. data/ext/cargo-vendor/proc-macro2-1.0.93/.cargo-checksum.json +1 -0
  154. data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.lock +304 -0
  155. data/ext/cargo-vendor/proc-macro2-1.0.93/Cargo.toml +105 -0
  156. data/ext/cargo-vendor/proc-macro2-1.0.93/src/fallback.rs +1277 -0
  157. data/ext/cargo-vendor/proc-macro2-1.0.93/src/lib.rs +1389 -0
  158. data/ext/cargo-vendor/proc-macro2-1.0.93/src/rcvec.rs +146 -0
  159. data/ext/cargo-vendor/pulley-interpreter-29.0.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/pulley-interpreter-29.0.0/CONTRIBUTING.md +278 -0
  161. data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.lock +402 -0
  162. data/ext/cargo-vendor/pulley-interpreter-29.0.0/Cargo.toml +126 -0
  163. data/ext/cargo-vendor/pulley-interpreter-29.0.0/examples/objdump.rs +48 -0
  164. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/decode.rs +761 -0
  165. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/disas.rs +333 -0
  166. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/encode.rs +288 -0
  167. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/imms.rs +69 -0
  168. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/debug.rs +128 -0
  169. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/match_loop.rs +39 -0
  170. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp/tail_loop.rs +152 -0
  171. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/interp.rs +4655 -0
  172. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/lib.rs +1287 -0
  173. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/op.rs +279 -0
  174. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/opcode.rs +106 -0
  175. data/ext/cargo-vendor/pulley-interpreter-29.0.0/src/regs.rs +375 -0
  176. data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/disas.rs +189 -0
  177. data/ext/cargo-vendor/pulley-interpreter-29.0.0/tests/all/interp.rs +853 -0
  178. data/ext/cargo-vendor/rustix-0.38.44/.cargo-checksum.json +1 -0
  179. data/ext/cargo-vendor/rustix-0.38.44/Cargo.lock +1012 -0
  180. data/ext/cargo-vendor/rustix-0.38.44/Cargo.toml +308 -0
  181. data/ext/cargo-vendor/rustix-0.38.44/src/backend/libc/system/syscalls.rs +159 -0
  182. data/ext/cargo-vendor/rustix-0.38.44/src/backend/linux_raw/system/syscalls.rs +92 -0
  183. data/ext/cargo-vendor/rustix-0.38.44/src/lib.rs +408 -0
  184. data/ext/cargo-vendor/rustix-0.38.44/src/maybe_polyfill/std/mod.rs +41 -0
  185. data/ext/cargo-vendor/rustix-0.38.44/src/system.rs +284 -0
  186. data/ext/cargo-vendor/rustix-0.38.44/src/weak.rs +287 -0
  187. data/ext/cargo-vendor/rustversion-1.0.19/.cargo-checksum.json +1 -0
  188. data/ext/cargo-vendor/rustversion-1.0.19/Cargo.lock +294 -0
  189. data/ext/cargo-vendor/rustversion-1.0.19/Cargo.toml +62 -0
  190. data/ext/cargo-vendor/rustversion-1.0.19/README.md +167 -0
  191. data/ext/cargo-vendor/rustversion-1.0.19/build/build.rs +102 -0
  192. data/ext/cargo-vendor/rustversion-1.0.19/build/rustc.rs +126 -0
  193. data/ext/cargo-vendor/rustversion-1.0.19/src/attr.rs +35 -0
  194. data/ext/cargo-vendor/rustversion-1.0.19/src/bound.rs +63 -0
  195. data/ext/cargo-vendor/rustversion-1.0.19/src/constfn.rs +58 -0
  196. data/ext/cargo-vendor/rustversion-1.0.19/src/date.rs +50 -0
  197. data/ext/cargo-vendor/rustversion-1.0.19/src/error.rs +56 -0
  198. data/ext/cargo-vendor/rustversion-1.0.19/src/expand.rs +72 -0
  199. data/ext/cargo-vendor/rustversion-1.0.19/src/expr.rs +163 -0
  200. data/ext/cargo-vendor/rustversion-1.0.19/src/iter.rs +42 -0
  201. data/ext/cargo-vendor/rustversion-1.0.19/src/lib.rs +282 -0
  202. data/ext/cargo-vendor/rustversion-1.0.19/src/release.rs +34 -0
  203. data/ext/cargo-vendor/rustversion-1.0.19/src/time.rs +51 -0
  204. data/ext/cargo-vendor/rustversion-1.0.19/src/token.rs +78 -0
  205. data/ext/cargo-vendor/rustversion-1.0.19/src/version.rs +18 -0
  206. data/ext/cargo-vendor/rustversion-1.0.19/tests/test_const.rs +42 -0
  207. data/ext/cargo-vendor/rustversion-1.0.19/tests/test_eval.rs +20 -0
  208. data/ext/cargo-vendor/rustversion-1.0.19/tests/test_parse.rs +103 -0
  209. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.rs +7 -0
  210. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-bound.stderr +11 -0
  211. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.rs +7 -0
  212. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-date.stderr +11 -0
  213. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.rs +7 -0
  214. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-not.stderr +11 -0
  215. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.rs +7 -0
  216. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/bad-version.stderr +11 -0
  217. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.rs +4 -0
  218. data/ext/cargo-vendor/rustversion-1.0.19/tests/ui/const-not-fn.stderr +5 -0
  219. data/ext/cargo-vendor/semver-1.0.25/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/semver-1.0.25/Cargo.lock +65 -0
  221. data/ext/cargo-vendor/semver-1.0.25/Cargo.toml +74 -0
  222. data/ext/cargo-vendor/semver-1.0.25/src/lib.rs +580 -0
  223. data/ext/cargo-vendor/serde_json-1.0.137/.cargo-checksum.json +1 -0
  224. data/ext/cargo-vendor/serde_json-1.0.137/Cargo.lock +417 -0
  225. data/ext/cargo-vendor/serde_json-1.0.137/Cargo.toml +153 -0
  226. data/ext/cargo-vendor/serde_json-1.0.137/src/lib.rs +435 -0
  227. data/ext/cargo-vendor/serde_json-1.0.137/src/value/ser.rs +1063 -0
  228. data/ext/cargo-vendor/serde_json-1.0.137/tests/compiletest.rs +7 -0
  229. data/ext/cargo-vendor/syn-2.0.96/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/syn-2.0.96/Cargo.lock +1749 -0
  231. data/ext/cargo-vendor/syn-2.0.96/Cargo.toml +268 -0
  232. data/ext/cargo-vendor/syn-2.0.96/src/expr.rs +4102 -0
  233. data/ext/cargo-vendor/syn-2.0.96/src/fixup.rs +770 -0
  234. data/ext/cargo-vendor/syn-2.0.96/src/lib.rs +1010 -0
  235. data/ext/cargo-vendor/syn-2.0.96/tests/test_expr.rs +1646 -0
  236. data/ext/cargo-vendor/target-lexicon-0.13.1/.cargo-checksum.json +1 -0
  237. data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.lock +96 -0
  238. data/ext/cargo-vendor/target-lexicon-0.13.1/Cargo.toml +66 -0
  239. data/ext/cargo-vendor/target-lexicon-0.13.1/README.md +24 -0
  240. data/ext/cargo-vendor/target-lexicon-0.13.1/src/host.rs +63 -0
  241. data/ext/cargo-vendor/target-lexicon-0.13.1/src/lib.rs +109 -0
  242. data/ext/cargo-vendor/target-lexicon-0.13.1/src/targets.rs +2120 -0
  243. data/ext/cargo-vendor/target-lexicon-0.13.1/src/triple.rs +554 -0
  244. data/ext/cargo-vendor/trait-variant-0.1.2/.cargo-checksum.json +1 -0
  245. data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.lock +151 -0
  246. data/ext/cargo-vendor/trait-variant-0.1.2/Cargo.toml +47 -0
  247. data/ext/cargo-vendor/trait-variant-0.1.2/README.md +50 -0
  248. data/ext/cargo-vendor/trait-variant-0.1.2/examples/variant.rs +60 -0
  249. data/ext/cargo-vendor/trait-variant-0.1.2/src/lib.rs +60 -0
  250. data/ext/cargo-vendor/trait-variant-0.1.2/src/variant.rs +248 -0
  251. data/ext/cargo-vendor/unicode-ident-1.0.15/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.lock +557 -0
  253. data/ext/cargo-vendor/unicode-ident-1.0.15/Cargo.toml +80 -0
  254. data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-APACHE +176 -0
  255. data/ext/cargo-vendor/unicode-ident-1.0.15/LICENSE-MIT +23 -0
  256. data/ext/cargo-vendor/unicode-ident-1.0.15/README.md +282 -0
  257. data/ext/cargo-vendor/unicode-ident-1.0.15/benches/xid.rs +125 -0
  258. data/ext/cargo-vendor/unicode-ident-1.0.15/src/lib.rs +269 -0
  259. data/ext/cargo-vendor/uuid-1.12.1/.cargo-checksum.json +1 -0
  260. data/ext/cargo-vendor/uuid-1.12.1/Cargo.toml +220 -0
  261. data/ext/cargo-vendor/uuid-1.12.1/README.md +90 -0
  262. data/ext/cargo-vendor/uuid-1.12.1/src/builder.rs +879 -0
  263. data/ext/cargo-vendor/uuid-1.12.1/src/error.rs +175 -0
  264. data/ext/cargo-vendor/uuid-1.12.1/src/external/arbitrary_support.rs +71 -0
  265. data/ext/cargo-vendor/uuid-1.12.1/src/external/serde_support.rs +767 -0
  266. data/ext/cargo-vendor/uuid-1.12.1/src/external/slog_support.rs +48 -0
  267. data/ext/cargo-vendor/uuid-1.12.1/src/lib.rs +1894 -0
  268. data/ext/cargo-vendor/uuid-1.12.1/src/non_nil.rs +142 -0
  269. data/ext/cargo-vendor/uuid-1.12.1/src/timestamp.rs +978 -0
  270. data/ext/cargo-vendor/uuid-1.12.1/src/v5.rs +188 -0
  271. data/ext/cargo-vendor/uuid-1.12.1/src/v7.rs +242 -0
  272. data/ext/cargo-vendor/wasi-common-29.0.0/.cargo-checksum.json +1 -0
  273. data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.lock +1843 -0
  274. data/ext/cargo-vendor/wasi-common-29.0.0/Cargo.toml +252 -0
  275. data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
  276. data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/typenames.witx +750 -0
  277. data/ext/cargo-vendor/wasi-common-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
  278. data/ext/cargo-vendor/wasm-bindgen-0.2.100/.cargo-checksum.json +1 -0
  279. data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.lock +184 -0
  280. data/ext/cargo-vendor/wasm-bindgen-0.2.100/Cargo.toml +106 -0
  281. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/cache/intern.rs +100 -0
  282. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/closure.rs +915 -0
  283. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/convert/closures.rs +253 -0
  284. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/externref.rs +174 -0
  285. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/lib.rs +1778 -0
  286. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/marker.rs +47 -0
  287. data/ext/cargo-vendor/wasm-bindgen-0.2.100/src/rt/mod.rs +711 -0
  288. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/.cargo-checksum.json +1 -0
  289. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.lock +71 -0
  290. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/Cargo.toml +68 -0
  291. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/ast.rs +607 -0
  292. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/codegen.rs +1976 -0
  293. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.100/src/encode.rs +626 -0
  294. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/.cargo-checksum.json +1 -0
  295. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.lock +337 -0
  296. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/Cargo.toml +60 -0
  297. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.100/src/lib.rs +75 -0
  298. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/.cargo-checksum.json +1 -0
  299. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.lock +84 -0
  300. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/Cargo.toml +70 -0
  301. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/lib.rs +203 -0
  302. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.100/src/parser.rs +2332 -0
  303. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/.cargo-checksum.json +1 -0
  304. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.lock +16 -0
  305. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/Cargo.toml +52 -0
  306. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/identifier.rs +42 -0
  307. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/lib.rs +239 -0
  308. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.100/src/schema_hash_approval.rs +16 -0
  309. data/ext/cargo-vendor/wasm-encoder-0.224.0/.cargo-checksum.json +1 -0
  310. data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.lock +248 -0
  311. data/ext/cargo-vendor/wasm-encoder-0.224.0/Cargo.toml +82 -0
  312. data/ext/cargo-vendor/wasm-encoder-0.224.0/src/component/types.rs +792 -0
  313. data/ext/cargo-vendor/wasm-encoder-0.224.0/src/reencode/component.rs +1446 -0
  314. data/ext/cargo-vendor/wasmparser-0.224.0/.cargo-checksum.json +1 -0
  315. data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.lock +646 -0
  316. data/ext/cargo-vendor/wasmparser-0.224.0/Cargo.toml +139 -0
  317. data/ext/cargo-vendor/wasmparser-0.224.0/src/readers/component/types.rs +574 -0
  318. data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component.rs +4019 -0
  319. data/ext/cargo-vendor/wasmparser-0.224.0/src/validator/component_types.rs +3388 -0
  320. data/ext/cargo-vendor/wasmtime-29.0.0/.cargo-checksum.json +1 -0
  321. data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.lock +1914 -0
  322. data/ext/cargo-vendor/wasmtime-29.0.0/Cargo.toml +477 -0
  323. data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/code_builder.rs +317 -0
  324. data/ext/cargo-vendor/wasmtime-29.0.0/src/compile/runtime.rs +208 -0
  325. data/ext/cargo-vendor/wasmtime-29.0.0/src/compile.rs +888 -0
  326. data/ext/cargo-vendor/wasmtime-29.0.0/src/config.rs +3461 -0
  327. data/ext/cargo-vendor/wasmtime-29.0.0/src/engine/serialization.rs +947 -0
  328. data/ext/cargo-vendor/wasmtime-29.0.0/src/engine.rs +858 -0
  329. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/code_memory.rs +470 -0
  330. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/_7_async.rs +47 -0
  331. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/bindgen_examples/mod.rs +557 -0
  332. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/host.rs +455 -0
  333. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/func/typed.rs +2469 -0
  334. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/component/mod.rs +670 -0
  335. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/externals/global.rs +312 -0
  336. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func/typed.rs +788 -0
  337. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/func.rs +2674 -0
  338. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/instance.rs +988 -0
  339. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/memory.rs +1092 -0
  340. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/module/registry.rs +344 -0
  341. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/profiling.rs +280 -0
  342. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/store.rs +2988 -0
  343. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/global.rs +70 -0
  344. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trampoline/memory.rs +261 -0
  345. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/trap.rs +620 -0
  346. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/values.rs +1092 -0
  347. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/arm.rs +28 -0
  348. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/mod.rs +48 -0
  349. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/unsupported.rs +28 -0
  350. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/arch/x86.rs +39 -0
  351. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component/libcalls.rs +559 -0
  352. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/component.rs +873 -0
  353. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/cow.rs +1144 -0
  354. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/gc/enabled/drc.rs +1094 -0
  355. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/helpers.c +207 -0
  356. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +1016 -0
  357. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +255 -0
  358. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +307 -0
  359. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/instance/allocator/pooling.rs +798 -0
  360. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter.rs +351 -0
  361. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/interpreter_disabled.rs +49 -0
  362. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/libcalls.rs +1346 -0
  363. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/malloc.rs +203 -0
  364. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/mmap.rs +235 -0
  365. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory/static_.rs +78 -0
  366. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/memory.rs +751 -0
  367. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap.rs +443 -0
  368. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/mmap_vec.rs +265 -0
  369. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/mmap.rs +140 -0
  370. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/custom/vm.rs +102 -0
  371. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/mmap.rs +124 -0
  372. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/miri/vm.rs +55 -0
  373. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/mmap.rs +210 -0
  374. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/signals.rs +491 -0
  375. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/unwind.rs +135 -0
  376. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/unix/vm.rs +174 -0
  377. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mmap.rs +246 -0
  378. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/mod.rs +29 -0
  379. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/traphandlers.rs +141 -0
  380. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind32.rs +23 -0
  381. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/sys/windows/vm.rs +71 -0
  382. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/backtrace.rs +274 -0
  383. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +43 -0
  384. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers/signals.rs +64 -0
  385. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/traphandlers.rs +955 -0
  386. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/unwind.rs +56 -0
  387. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm/vmcontext.rs +1364 -0
  388. data/ext/cargo-vendor/wasmtime-29.0.0/src/runtime/vm.rs +411 -0
  389. data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/.cargo-checksum.json +1 -0
  390. data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.lock +16 -0
  391. data/ext/cargo-vendor/wasmtime-asm-macros-29.0.0/Cargo.toml +34 -0
  392. data/ext/cargo-vendor/wasmtime-cache-29.0.0/.cargo-checksum.json +1 -0
  393. data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.lock +767 -0
  394. data/ext/cargo-vendor/wasmtime-cache-29.0.0/Cargo.toml +122 -0
  395. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/.cargo-checksum.json +1 -0
  396. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.lock +277 -0
  397. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/Cargo.toml +129 -0
  398. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char.rs +387 -0
  399. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_async.rs +413 -0
  400. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/char_tracing_async.rs +460 -0
  401. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions.rs +824 -0
  402. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_async.rs +898 -0
  403. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/conventions_tracing_async.rs +1189 -0
  404. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code.rs +279 -0
  405. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_async.rs +298 -0
  406. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/dead-code_tracing_async.rs +311 -0
  407. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_async.rs +218 -0
  408. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/direct-import_tracing_async.rs +231 -0
  409. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags.rs +859 -0
  410. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_async.rs +920 -0
  411. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/flags_tracing_async.rs +1095 -0
  412. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats.rs +447 -0
  413. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_async.rs +487 -0
  414. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/floats_tracing_async.rs +581 -0
  415. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_async.rs +218 -0
  416. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/host-world_tracing_async.rs +231 -0
  417. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers.rs +989 -0
  418. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_async.rs +1127 -0
  419. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/integers_tracing_async.rs +1554 -0
  420. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists.rs +2032 -0
  421. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_async.rs +2287 -0
  422. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/lists_tracing_async.rs +2979 -0
  423. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments.rs +730 -0
  424. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_async.rs +757 -0
  425. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/many-arguments_tracing_async.rs +818 -0
  426. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return.rs +475 -0
  427. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_async.rs +518 -0
  428. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multi-return_tracing_async.rs +632 -0
  429. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion.rs +508 -0
  430. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_async.rs +535 -0
  431. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/multiversion_tracing_async.rs +583 -0
  432. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1.rs +208 -0
  433. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_async.rs +220 -0
  434. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path1_tracing_async.rs +220 -0
  435. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2.rs +208 -0
  436. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_async.rs +220 -0
  437. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/path2_tracing_async.rs +220 -0
  438. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records.rs +1056 -0
  439. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_async.rs +1145 -0
  440. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/records_tracing_async.rs +1405 -0
  441. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename.rs +268 -0
  442. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_async.rs +287 -0
  443. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/rename_tracing_async.rs +300 -0
  444. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export.rs +879 -0
  445. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_async.rs +935 -0
  446. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-export_tracing_async.rs +1009 -0
  447. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import.rs +1217 -0
  448. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_async.rs +1350 -0
  449. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/resources-import_tracing_async.rs +1763 -0
  450. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types.rs +429 -0
  451. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_async.rs +451 -0
  452. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/share-types_tracing_async.rs +475 -0
  453. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions.rs +522 -0
  454. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_async.rs +573 -0
  455. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-functions_tracing_async.rs +717 -0
  456. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists.rs +545 -0
  457. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_async.rs +589 -0
  458. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-lists_tracing_async.rs +686 -0
  459. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi.rs +331 -0
  460. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_async.rs +352 -0
  461. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/simple-wasi_tracing_async.rs +378 -0
  462. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous.rs +454 -0
  463. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_async.rs +473 -0
  464. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/small-anonymous_tracing_async.rs +495 -0
  465. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export.rs +263 -0
  466. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_async.rs +272 -0
  467. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
  468. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke.rs +218 -0
  469. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_async.rs +232 -0
  470. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/smoke_tracing_async.rs +245 -0
  471. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings.rs +432 -0
  472. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_async.rs +465 -0
  473. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/strings_tracing_async.rs +537 -0
  474. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features.rs +482 -0
  475. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_async.rs +523 -0
  476. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unstable-features_tracing_async.rs +581 -0
  477. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo.rs +250 -0
  478. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_async.rs +264 -0
  479. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/unversioned-foo_tracing_async.rs +277 -0
  480. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths.rs +402 -0
  481. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_async.rs +438 -0
  482. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/use-paths_tracing_async.rs +490 -0
  483. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants.rs +2016 -0
  484. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_async.rs +2182 -0
  485. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/variants_tracing_async.rs +2704 -0
  486. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat.rs +265 -0
  487. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_async.rs +271 -0
  488. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/wat_tracing_async.rs +271 -0
  489. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types.rs +263 -0
  490. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_async.rs +278 -0
  491. data/ext/cargo-vendor/wasmtime-component-macro-29.0.0/tests/expanded/worlds-with-types_tracing_async.rs +286 -0
  492. data/ext/cargo-vendor/wasmtime-component-util-29.0.0/.cargo-checksum.json +1 -0
  493. data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.lock +7 -0
  494. data/ext/cargo-vendor/wasmtime-component-util-29.0.0/Cargo.toml +37 -0
  495. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/.cargo-checksum.json +1 -0
  496. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.lock +647 -0
  497. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/Cargo.toml +170 -0
  498. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler/component.rs +996 -0
  499. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/compiler.rs +1192 -0
  500. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/gc.rs +288 -0
  501. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/attr.rs +453 -0
  502. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/debug_transform_logging.rs +276 -0
  503. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/mod.rs +274 -0
  504. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/unit.rs +539 -0
  505. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/debug/transform/utils.rs +62 -0
  506. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/func_environ.rs +3435 -0
  507. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/drc.rs +747 -0
  508. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled/null.rs +285 -0
  509. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/gc/enabled.rs +1496 -0
  510. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/lib.rs +430 -0
  511. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/obj.rs +657 -0
  512. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator/bounds_checks.rs +798 -0
  513. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/code_translator.rs +4082 -0
  514. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/mod.rs +6 -0
  515. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/environ/spec.rs +55 -0
  516. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/func_translator.rs +284 -0
  517. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/mod.rs +26 -0
  518. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/state.rs +546 -0
  519. data/ext/cargo-vendor/wasmtime-cranelift-29.0.0/src/translate/table.rs +122 -0
  520. data/ext/cargo-vendor/wasmtime-environ-29.0.0/.cargo-checksum.json +1 -0
  521. data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.lock +713 -0
  522. data/ext/cargo-vendor/wasmtime-environ-29.0.0/Cargo.toml +217 -0
  523. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/builtin.rs +385 -0
  524. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/mod.rs +390 -0
  525. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/compile/module_artifacts.rs +318 -0
  526. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/info.rs +693 -0
  527. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component/vmcomponent_offsets.rs +316 -0
  528. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/component.rs +108 -0
  529. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/demangling.rs +31 -0
  530. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/ext.rs +40 -0
  531. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/hostcall.rs +59 -0
  532. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/lib.rs +74 -0
  533. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/module_artifacts.rs +142 -0
  534. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/tunables.rs +244 -0
  535. data/ext/cargo-vendor/wasmtime-environ-29.0.0/src/vmoffsets.rs +903 -0
  536. data/ext/cargo-vendor/wasmtime-fiber-29.0.0/.cargo-checksum.json +1 -0
  537. data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.lock +279 -0
  538. data/ext/cargo-vendor/wasmtime-fiber-29.0.0/Cargo.toml +101 -0
  539. data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/.cargo-checksum.json +1 -0
  540. data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.lock +187 -0
  541. data/ext/cargo-vendor/wasmtime-jit-debug-29.0.0/Cargo.toml +95 -0
  542. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/.cargo-checksum.json +1 -0
  543. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.lock +104 -0
  544. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-29.0.0/Cargo.toml +85 -0
  545. data/ext/cargo-vendor/wasmtime-math-29.0.0/.cargo-checksum.json +1 -0
  546. data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.lock +16 -0
  547. data/ext/cargo-vendor/wasmtime-math-29.0.0/Cargo.toml +72 -0
  548. data/ext/cargo-vendor/wasmtime-math-29.0.0/src/lib.rs +281 -0
  549. data/ext/cargo-vendor/wasmtime-slab-29.0.0/.cargo-checksum.json +1 -0
  550. data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.lock +7 -0
  551. data/ext/cargo-vendor/wasmtime-slab-29.0.0/Cargo.toml +64 -0
  552. data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/.cargo-checksum.json +1 -0
  553. data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.lock +47 -0
  554. data/ext/cargo-vendor/wasmtime-versioned-export-macros-29.0.0/Cargo.toml +42 -0
  555. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/.cargo-checksum.json +1 -0
  556. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.lock +2112 -0
  557. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/Cargo.toml +238 -0
  558. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/bindings.rs +565 -0
  559. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/filesystem.rs +1088 -0
  560. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/io.rs +370 -0
  561. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/tcp.rs +546 -0
  562. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/host/udp.rs +760 -0
  563. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/ip_name_lookup.rs +130 -0
  564. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/pipe.rs +836 -0
  565. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/src/poll.rs +243 -0
  566. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/command.wit +10 -0
  567. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/imports.wit +36 -0
  568. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/cli/stdio.wit +26 -0
  569. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
  570. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/timezone.wit +55 -0
  571. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/wall-clock.wit +46 -0
  572. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/clocks/world.wit +11 -0
  573. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/preopens.wit +11 -0
  574. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/types.wit +672 -0
  575. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/filesystem/world.wit +9 -0
  576. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/error.wit +34 -0
  577. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/poll.wit +47 -0
  578. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/streams.wit +290 -0
  579. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/io/world.wit +10 -0
  580. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure-seed.wit +27 -0
  581. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/insecure.wit +25 -0
  582. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/random.wit +29 -0
  583. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/random/world.wit +13 -0
  584. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
  585. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/network.wit +169 -0
  586. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/tcp.wit +387 -0
  587. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/udp.wit +288 -0
  588. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/deps/sockets/world.wit +19 -0
  589. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/test.wit +13 -0
  590. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/wit/world.wit +6 -0
  591. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview0/wasi_unstable.witx +513 -0
  592. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/typenames.witx +750 -0
  593. data/ext/cargo-vendor/wasmtime-wasi-29.0.0/witx/preview1/wasi_snapshot_preview1.witx +521 -0
  594. data/ext/cargo-vendor/wasmtime-winch-29.0.0/.cargo-checksum.json +1 -0
  595. data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.lock +587 -0
  596. data/ext/cargo-vendor/wasmtime-winch-29.0.0/Cargo.toml +120 -0
  597. data/ext/cargo-vendor/wasmtime-winch-29.0.0/src/builder.rs +100 -0
  598. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/.cargo-checksum.json +1 -0
  599. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.lock +185 -0
  600. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/Cargo.toml +80 -0
  601. data/ext/cargo-vendor/wasmtime-wit-bindgen-29.0.0/src/lib.rs +3356 -0
  602. data/ext/cargo-vendor/wast-224.0.0/.cargo-checksum.json +1 -0
  603. data/ext/cargo-vendor/wast-224.0.0/Cargo.lock +518 -0
  604. data/ext/cargo-vendor/wast-224.0.0/Cargo.toml +111 -0
  605. data/ext/cargo-vendor/wast-224.0.0/src/component/binary.rs +959 -0
  606. data/ext/cargo-vendor/wast-224.0.0/src/component/expand.rs +1078 -0
  607. data/ext/cargo-vendor/wast-224.0.0/src/component/resolve.rs +1178 -0
  608. data/ext/cargo-vendor/wast-224.0.0/src/component/types.rs +1041 -0
  609. data/ext/cargo-vendor/wat-1.224.0/.cargo-checksum.json +1 -0
  610. data/ext/cargo-vendor/wat-1.224.0/Cargo.lock +126 -0
  611. data/ext/cargo-vendor/wat-1.224.0/Cargo.toml +61 -0
  612. data/ext/cargo-vendor/wiggle-29.0.0/.cargo-checksum.json +1 -0
  613. data/ext/cargo-vendor/wiggle-29.0.0/Cargo.lock +1233 -0
  614. data/ext/cargo-vendor/wiggle-29.0.0/Cargo.toml +133 -0
  615. data/ext/cargo-vendor/wiggle-generate-29.0.0/.cargo-checksum.json +1 -0
  616. data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.lock +223 -0
  617. data/ext/cargo-vendor/wiggle-generate-29.0.0/Cargo.toml +99 -0
  618. data/ext/cargo-vendor/wiggle-macro-29.0.0/.cargo-checksum.json +1 -0
  619. data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.lock +235 -0
  620. data/ext/cargo-vendor/wiggle-macro-29.0.0/Cargo.toml +92 -0
  621. data/ext/cargo-vendor/winch-codegen-29.0.0/.cargo-checksum.json +1 -0
  622. data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.lock +559 -0
  623. data/ext/cargo-vendor/winch-codegen-29.0.0/Cargo.toml +118 -0
  624. data/ext/cargo-vendor/winch-codegen-29.0.0/src/abi/mod.rs +666 -0
  625. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/bounds.rs +230 -0
  626. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/builtin.rs +274 -0
  627. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/call.rs +444 -0
  628. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/context.rs +710 -0
  629. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/control.rs +1055 -0
  630. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/error.rs +182 -0
  631. data/ext/cargo-vendor/winch-codegen-29.0.0/src/codegen/mod.rs +1304 -0
  632. data/ext/cargo-vendor/winch-codegen-29.0.0/src/frame/mod.rs +294 -0
  633. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/abi.rs +299 -0
  634. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/asm.rs +1085 -0
  635. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/masm.rs +886 -0
  636. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/aarch64/mod.rs +175 -0
  637. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/mod.rs +338 -0
  638. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/abi.rs +494 -0
  639. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/asm.rs +1478 -0
  640. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/masm.rs +1361 -0
  641. data/ext/cargo-vendor/winch-codegen-29.0.0/src/isa/x64/mod.rs +176 -0
  642. data/ext/cargo-vendor/winch-codegen-29.0.0/src/masm.rs +1131 -0
  643. data/ext/cargo-vendor/winch-codegen-29.0.0/src/regalloc.rs +74 -0
  644. data/ext/cargo-vendor/winch-codegen-29.0.0/src/stack.rs +458 -0
  645. data/ext/cargo-vendor/winch-codegen-29.0.0/src/visitor.rs +2312 -0
  646. data/ext/cargo-vendor/winnow-0.6.24/.cargo-checksum.json +1 -0
  647. data/ext/cargo-vendor/winnow-0.6.24/Cargo.lock +1567 -0
  648. data/ext/cargo-vendor/winnow-0.6.24/Cargo.toml +359 -0
  649. data/ext/cargo-vendor/winnow-0.6.24/examples/json/parser_partial.rs +350 -0
  650. data/ext/cargo-vendor/winnow-0.6.24/src/_topic/nom.rs +104 -0
  651. data/ext/cargo-vendor/winnow-0.6.24/src/_topic/stream.rs +65 -0
  652. data/ext/cargo-vendor/winnow-0.6.24/src/_topic/why.rs +127 -0
  653. data/ext/cargo-vendor/winnow-0.6.24/src/ascii/mod.rs +1895 -0
  654. data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/mod.rs +412 -0
  655. data/ext/cargo-vendor/winnow-0.6.24/src/binary/bits/tests.rs +192 -0
  656. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/core.rs +528 -0
  657. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/impls.rs +728 -0
  658. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/mod.rs +182 -0
  659. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/multi.rs +1612 -0
  660. data/ext/cargo-vendor/winnow-0.6.24/src/combinator/tests.rs +1373 -0
  661. data/ext/cargo-vendor/winnow-0.6.24/src/error.rs +1422 -0
  662. data/ext/cargo-vendor/winnow-0.6.24/src/lib.rs +166 -0
  663. data/ext/cargo-vendor/winnow-0.6.24/src/macros/mod.rs +5 -0
  664. data/ext/cargo-vendor/winnow-0.6.24/src/parser.rs +1373 -0
  665. data/ext/cargo-vendor/winnow-0.6.24/src/stream/mod.rs +3827 -0
  666. data/ext/cargo-vendor/winnow-0.6.24/src/token/mod.rs +1105 -0
  667. data/ext/cargo-vendor/winnow-0.6.24/src/token/tests.rs +863 -0
  668. data/lib/wasmtime/version.rb +1 -1
  669. metadata +2408 -2300
  670. data/ext/cargo-vendor/bitflags-2.6.0/.cargo-checksum.json +0 -1
  671. data/ext/cargo-vendor/bitflags-2.6.0/CHANGELOG.md +0 -553
  672. data/ext/cargo-vendor/bitflags-2.6.0/Cargo.lock +0 -383
  673. data/ext/cargo-vendor/bitflags-2.6.0/Cargo.toml +0 -96
  674. data/ext/cargo-vendor/bitflags-2.6.0/README.md +0 -77
  675. data/ext/cargo-vendor/bitflags-2.6.0/examples/custom_derive.rs +0 -23
  676. data/ext/cargo-vendor/bitflags-2.6.0/src/external/arbitrary.rs +0 -33
  677. data/ext/cargo-vendor/bitflags-2.6.0/src/lib.rs +0 -927
  678. data/ext/cargo-vendor/bitflags-2.6.0/src/tests.rs +0 -131
  679. data/ext/cargo-vendor/bitflags-2.6.0/src/traits.rs +0 -431
  680. data/ext/cargo-vendor/cc-1.2.7/.cargo-checksum.json +0 -1
  681. data/ext/cargo-vendor/cc-1.2.7/CHANGELOG.md +0 -352
  682. data/ext/cargo-vendor/cc-1.2.7/Cargo.lock +0 -191
  683. data/ext/cargo-vendor/cc-1.2.7/Cargo.toml +0 -67
  684. data/ext/cargo-vendor/cc-1.2.7/src/flags.rs +0 -480
  685. data/ext/cargo-vendor/cc-1.2.7/src/lib.rs +0 -4210
  686. data/ext/cargo-vendor/cc-1.2.7/src/target/generated.rs +0 -3343
  687. data/ext/cargo-vendor/cc-1.2.7/src/tool.rs +0 -478
  688. data/ext/cargo-vendor/cc-1.2.7/src/windows/windows_sys.rs +0 -121
  689. data/ext/cargo-vendor/cpufeatures-0.2.16/.cargo-checksum.json +0 -1
  690. data/ext/cargo-vendor/cpufeatures-0.2.16/CHANGELOG.md +0 -162
  691. data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.lock +0 -16
  692. data/ext/cargo-vendor/cpufeatures-0.2.16/Cargo.toml +0 -67
  693. data/ext/cargo-vendor/cpufeatures-0.2.16/LICENSE-MIT +0 -25
  694. data/ext/cargo-vendor/cpufeatures-0.2.16/README.md +0 -126
  695. data/ext/cargo-vendor/cranelift-bforest-0.115.0/.cargo-checksum.json +0 -1
  696. data/ext/cargo-vendor/cranelift-bforest-0.115.0/Cargo.toml +0 -70
  697. data/ext/cargo-vendor/cranelift-bitset-0.115.0/.cargo-checksum.json +0 -1
  698. data/ext/cargo-vendor/cranelift-bitset-0.115.0/Cargo.toml +0 -85
  699. data/ext/cargo-vendor/cranelift-bitset-0.115.0/src/scalar.rs +0 -626
  700. data/ext/cargo-vendor/cranelift-codegen-0.115.0/.cargo-checksum.json +0 -1
  701. data/ext/cargo-vendor/cranelift-codegen-0.115.0/Cargo.toml +0 -238
  702. data/ext/cargo-vendor/cranelift-codegen-0.115.0/build.rs +0 -255
  703. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/binemit/mod.rs +0 -173
  704. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/ir/immediates.rs +0 -1941
  705. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/abi.rs +0 -1536
  706. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/args.rs +0 -711
  707. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit.rs +0 -3567
  708. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/emit_tests.rs +0 -7972
  709. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/mod.rs +0 -3056
  710. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst/regs.rs +0 -269
  711. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/inst.isle +0 -5097
  712. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower/isle.rs +0 -752
  713. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/lower.isle +0 -3123
  714. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/aarch64/mod.rs +0 -260
  715. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/mod.rs +0 -472
  716. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/abi.rs +0 -762
  717. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/args.rs +0 -226
  718. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/emit.rs +0 -598
  719. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/mod.rs +0 -976
  720. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst/regs.rs +0 -164
  721. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/inst.isle +0 -589
  722. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower/isle.rs +0 -148
  723. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/lower.isle +0 -251
  724. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/pulley_shared/mod.rs +0 -281
  725. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/abi.rs +0 -989
  726. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/args.rs +0 -1957
  727. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/riscv64/inst/emit_tests.rs +0 -2277
  728. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/abi.rs +0 -1397
  729. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/s390x/inst/emit.rs +0 -3426
  730. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/abi.rs +0 -1384
  731. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/inst.isle +0 -5758
  732. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle/generated_code.rs +0 -15
  733. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isa/x64/lower/isle.rs +0 -1001
  734. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/isle_prelude.rs +0 -1144
  735. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/abi.rs +0 -2451
  736. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/buffer.rs +0 -2496
  737. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/machinst/lower.rs +0 -1602
  738. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude.isle +0 -827
  739. data/ext/cargo-vendor/cranelift-codegen-0.115.0/src/prelude_lower.isle +0 -1116
  740. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/.cargo-checksum.json +0 -1
  741. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/Cargo.toml +0 -65
  742. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/cdsl/instructions.rs +0 -494
  743. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isa/pulley.rs +0 -14
  744. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/isle.rs +0 -182
  745. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/lib.rs +0 -98
  746. data/ext/cargo-vendor/cranelift-codegen-meta-0.115.0/src/shared/instructions.rs +0 -3786
  747. data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/.cargo-checksum.json +0 -1
  748. data/ext/cargo-vendor/cranelift-codegen-shared-0.115.0/Cargo.toml +0 -33
  749. data/ext/cargo-vendor/cranelift-control-0.115.0/.cargo-checksum.json +0 -1
  750. data/ext/cargo-vendor/cranelift-control-0.115.0/Cargo.toml +0 -44
  751. data/ext/cargo-vendor/cranelift-entity-0.115.0/.cargo-checksum.json +0 -1
  752. data/ext/cargo-vendor/cranelift-entity-0.115.0/Cargo.toml +0 -86
  753. data/ext/cargo-vendor/cranelift-entity-0.115.0/src/sparse.rs +0 -367
  754. data/ext/cargo-vendor/cranelift-frontend-0.115.0/.cargo-checksum.json +0 -1
  755. data/ext/cargo-vendor/cranelift-frontend-0.115.0/Cargo.toml +0 -108
  756. data/ext/cargo-vendor/cranelift-isle-0.115.0/.cargo-checksum.json +0 -1
  757. data/ext/cargo-vendor/cranelift-isle-0.115.0/Cargo.toml +0 -80
  758. data/ext/cargo-vendor/cranelift-native-0.115.0/.cargo-checksum.json +0 -1
  759. data/ext/cargo-vendor/cranelift-native-0.115.0/Cargo.toml +0 -53
  760. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/.cargo-checksum.json +0 -1
  761. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/Cargo.toml +0 -70
  762. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/README.md +0 -52
  763. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.28/tests/common/mod.rs +0 -33
  764. data/ext/cargo-vendor/indexmap-2.7.0/.cargo-checksum.json +0 -1
  765. data/ext/cargo-vendor/indexmap-2.7.0/Cargo.toml +0 -153
  766. data/ext/cargo-vendor/indexmap-2.7.0/RELEASES.md +0 -536
  767. data/ext/cargo-vendor/indexmap-2.7.0/src/lib.rs +0 -274
  768. data/ext/cargo-vendor/indexmap-2.7.0/src/map/core/entry.rs +0 -569
  769. data/ext/cargo-vendor/indexmap-2.7.0/src/map/core.rs +0 -722
  770. data/ext/cargo-vendor/indexmap-2.7.0/src/map/iter.rs +0 -775
  771. data/ext/cargo-vendor/indexmap-2.7.0/src/map.rs +0 -1578
  772. data/ext/cargo-vendor/indexmap-2.7.0/src/set/iter.rs +0 -627
  773. data/ext/cargo-vendor/indexmap-2.7.0/src/set.rs +0 -1290
  774. data/ext/cargo-vendor/indexmap-2.7.0/src/util.rs +0 -53
  775. data/ext/cargo-vendor/ipnet-2.10.1/.cargo-checksum.json +0 -1
  776. data/ext/cargo-vendor/ipnet-2.10.1/Cargo.toml +0 -68
  777. data/ext/cargo-vendor/ipnet-2.10.1/src/ipext.rs +0 -995
  778. data/ext/cargo-vendor/ipnet-2.10.1/src/ipnet.rs +0 -2002
  779. data/ext/cargo-vendor/ipnet-2.10.1/src/lib.rs +0 -108
  780. data/ext/cargo-vendor/js-sys-0.3.76/.cargo-checksum.json +0 -1
  781. data/ext/cargo-vendor/js-sys-0.3.76/Cargo.toml +0 -69
  782. data/ext/cargo-vendor/js-sys-0.3.76/src/lib.rs +0 -6426
  783. data/ext/cargo-vendor/log-0.4.22/.cargo-checksum.json +0 -1
  784. data/ext/cargo-vendor/log-0.4.22/CHANGELOG.md +0 -324
  785. data/ext/cargo-vendor/log-0.4.22/Cargo.toml +0 -139
  786. data/ext/cargo-vendor/log-0.4.22/README.md +0 -130
  787. data/ext/cargo-vendor/log-0.4.22/src/kv/key.rs +0 -143
  788. data/ext/cargo-vendor/log-0.4.22/src/kv/mod.rs +0 -265
  789. data/ext/cargo-vendor/log-0.4.22/src/kv/value.rs +0 -1394
  790. data/ext/cargo-vendor/log-0.4.22/src/lib.rs +0 -1878
  791. data/ext/cargo-vendor/log-0.4.22/src/serde.rs +0 -397
  792. data/ext/cargo-vendor/miniz_oxide-0.8.2/.cargo-checksum.json +0 -1
  793. data/ext/cargo-vendor/miniz_oxide-0.8.2/Cargo.toml +0 -87
  794. data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE +0 -21
  795. data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-MIT.md +0 -21
  796. data/ext/cargo-vendor/miniz_oxide-0.8.2/LICENSE-ZLIB.md +0 -11
  797. data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/core.rs +0 -2528
  798. data/ext/cargo-vendor/miniz_oxide-0.8.2/src/deflate/mod.rs +0 -226
  799. data/ext/cargo-vendor/proc-macro2-1.0.92/.cargo-checksum.json +0 -1
  800. data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.lock +0 -313
  801. data/ext/cargo-vendor/proc-macro2-1.0.92/Cargo.toml +0 -105
  802. data/ext/cargo-vendor/proc-macro2-1.0.92/src/fallback.rs +0 -1266
  803. data/ext/cargo-vendor/proc-macro2-1.0.92/src/lib.rs +0 -1389
  804. data/ext/cargo-vendor/proc-macro2-1.0.92/src/rcvec.rs +0 -145
  805. data/ext/cargo-vendor/pulley-interpreter-28.0.0/.cargo-checksum.json +0 -1
  806. data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.lock +0 -386
  807. data/ext/cargo-vendor/pulley-interpreter-28.0.0/Cargo.toml +0 -118
  808. data/ext/cargo-vendor/pulley-interpreter-28.0.0/examples/objdump.rs +0 -48
  809. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/decode.rs +0 -734
  810. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/disas.rs +0 -292
  811. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/encode.rs +0 -198
  812. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/imms.rs +0 -31
  813. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/match_loop.rs +0 -38
  814. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp/tail_loop.rs +0 -137
  815. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/interp.rs +0 -1269
  816. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/lib.rs +0 -258
  817. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/op.rs +0 -256
  818. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/opcode.rs +0 -123
  819. data/ext/cargo-vendor/pulley-interpreter-28.0.0/src/regs.rs +0 -345
  820. data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/disas.rs +0 -189
  821. data/ext/cargo-vendor/pulley-interpreter-28.0.0/tests/all/interp.rs +0 -1216
  822. data/ext/cargo-vendor/rustix-0.38.43/.cargo-checksum.json +0 -1
  823. data/ext/cargo-vendor/rustix-0.38.43/Cargo.lock +0 -1012
  824. data/ext/cargo-vendor/rustix-0.38.43/Cargo.toml +0 -308
  825. data/ext/cargo-vendor/rustix-0.38.43/src/backend/libc/system/syscalls.rs +0 -121
  826. data/ext/cargo-vendor/rustix-0.38.43/src/backend/linux_raw/system/syscalls.rs +0 -86
  827. data/ext/cargo-vendor/rustix-0.38.43/src/lib.rs +0 -401
  828. data/ext/cargo-vendor/rustix-0.38.43/src/maybe_polyfill/std/mod.rs +0 -43
  829. data/ext/cargo-vendor/rustix-0.38.43/src/system.rs +0 -261
  830. data/ext/cargo-vendor/rustix-0.38.43/src/weak.rs +0 -287
  831. data/ext/cargo-vendor/semver-1.0.24/.cargo-checksum.json +0 -1
  832. data/ext/cargo-vendor/semver-1.0.24/Cargo.lock +0 -65
  833. data/ext/cargo-vendor/semver-1.0.24/Cargo.toml +0 -71
  834. data/ext/cargo-vendor/semver-1.0.24/src/lib.rs +0 -580
  835. data/ext/cargo-vendor/serde_json-1.0.135/.cargo-checksum.json +0 -1
  836. data/ext/cargo-vendor/serde_json-1.0.135/Cargo.lock +0 -417
  837. data/ext/cargo-vendor/serde_json-1.0.135/Cargo.toml +0 -149
  838. data/ext/cargo-vendor/serde_json-1.0.135/src/lib.rs +0 -435
  839. data/ext/cargo-vendor/serde_json-1.0.135/src/value/ser.rs +0 -1063
  840. data/ext/cargo-vendor/syn-2.0.95/.cargo-checksum.json +0 -1
  841. data/ext/cargo-vendor/syn-2.0.95/Cargo.lock +0 -1749
  842. data/ext/cargo-vendor/syn-2.0.95/Cargo.toml +0 -268
  843. data/ext/cargo-vendor/syn-2.0.95/src/expr.rs +0 -4099
  844. data/ext/cargo-vendor/syn-2.0.95/src/fixup.rs +0 -725
  845. data/ext/cargo-vendor/syn-2.0.95/src/lib.rs +0 -1010
  846. data/ext/cargo-vendor/syn-2.0.95/tests/test_expr.rs +0 -1631
  847. data/ext/cargo-vendor/target-lexicon-0.12.16/.cargo-checksum.json +0 -1
  848. data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.lock +0 -89
  849. data/ext/cargo-vendor/target-lexicon-0.12.16/Cargo.toml +0 -65
  850. data/ext/cargo-vendor/target-lexicon-0.12.16/README.md +0 -20
  851. data/ext/cargo-vendor/target-lexicon-0.12.16/src/host.rs +0 -63
  852. data/ext/cargo-vendor/target-lexicon-0.12.16/src/lib.rs +0 -109
  853. data/ext/cargo-vendor/target-lexicon-0.12.16/src/targets.rs +0 -1955
  854. data/ext/cargo-vendor/target-lexicon-0.12.16/src/triple.rs +0 -554
  855. data/ext/cargo-vendor/unicode-ident-1.0.14/.cargo-checksum.json +0 -1
  856. data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.lock +0 -566
  857. data/ext/cargo-vendor/unicode-ident-1.0.14/Cargo.toml +0 -80
  858. data/ext/cargo-vendor/unicode-ident-1.0.14/README.md +0 -282
  859. data/ext/cargo-vendor/unicode-ident-1.0.14/benches/xid.rs +0 -127
  860. data/ext/cargo-vendor/unicode-ident-1.0.14/src/lib.rs +0 -269
  861. data/ext/cargo-vendor/uuid-1.11.0/.cargo-checksum.json +0 -1
  862. data/ext/cargo-vendor/uuid-1.11.0/Cargo.toml +0 -219
  863. data/ext/cargo-vendor/uuid-1.11.0/README.md +0 -93
  864. data/ext/cargo-vendor/uuid-1.11.0/src/builder.rs +0 -930
  865. data/ext/cargo-vendor/uuid-1.11.0/src/error.rs +0 -172
  866. data/ext/cargo-vendor/uuid-1.11.0/src/external/arbitrary_support.rs +0 -45
  867. data/ext/cargo-vendor/uuid-1.11.0/src/external/serde_support.rs +0 -735
  868. data/ext/cargo-vendor/uuid-1.11.0/src/external/slog_support.rs +0 -37
  869. data/ext/cargo-vendor/uuid-1.11.0/src/lib.rs +0 -1895
  870. data/ext/cargo-vendor/uuid-1.11.0/src/timestamp.rs +0 -972
  871. data/ext/cargo-vendor/uuid-1.11.0/src/v5.rs +0 -188
  872. data/ext/cargo-vendor/uuid-1.11.0/src/v7.rs +0 -241
  873. data/ext/cargo-vendor/wasi-common-28.0.0/.cargo-checksum.json +0 -1
  874. data/ext/cargo-vendor/wasi-common-28.0.0/Cargo.toml +0 -249
  875. data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
  876. data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/typenames.witx +0 -750
  877. data/ext/cargo-vendor/wasi-common-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
  878. data/ext/cargo-vendor/wasm-bindgen-0.2.99/.cargo-checksum.json +0 -1
  879. data/ext/cargo-vendor/wasm-bindgen-0.2.99/Cargo.toml +0 -104
  880. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/cache/intern.rs +0 -103
  881. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/closure.rs +0 -913
  882. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/convert/closures.rs +0 -249
  883. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/externref.rs +0 -177
  884. data/ext/cargo-vendor/wasm-bindgen-0.2.99/src/lib.rs +0 -2525
  885. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/.cargo-checksum.json +0 -1
  886. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/Cargo.toml +0 -71
  887. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/ast.rs +0 -581
  888. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/codegen.rs +0 -1945
  889. data/ext/cargo-vendor/wasm-bindgen-backend-0.2.99/src/encode.rs +0 -616
  890. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/.cargo-checksum.json +0 -1
  891. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/Cargo.toml +0 -64
  892. data/ext/cargo-vendor/wasm-bindgen-macro-0.2.99/src/lib.rs +0 -61
  893. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/.cargo-checksum.json +0 -1
  894. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/Cargo.toml +0 -74
  895. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/lib.rs +0 -170
  896. data/ext/cargo-vendor/wasm-bindgen-macro-support-0.2.99/src/parser.rs +0 -2067
  897. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/.cargo-checksum.json +0 -1
  898. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/Cargo.toml +0 -49
  899. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/lib.rs +0 -230
  900. data/ext/cargo-vendor/wasm-bindgen-shared-0.2.99/src/schema_hash_approval.rs +0 -16
  901. data/ext/cargo-vendor/wasm-encoder-0.223.0/.cargo-checksum.json +0 -1
  902. data/ext/cargo-vendor/wasm-encoder-0.223.0/Cargo.toml +0 -82
  903. data/ext/cargo-vendor/wasm-encoder-0.223.0/src/component/types.rs +0 -792
  904. data/ext/cargo-vendor/wasm-encoder-0.223.0/src/reencode/component.rs +0 -1446
  905. data/ext/cargo-vendor/wasmparser-0.223.0/.cargo-checksum.json +0 -1
  906. data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.lock +0 -646
  907. data/ext/cargo-vendor/wasmparser-0.223.0/Cargo.toml +0 -139
  908. data/ext/cargo-vendor/wasmparser-0.223.0/src/readers/component/types.rs +0 -574
  909. data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component.rs +0 -4006
  910. data/ext/cargo-vendor/wasmparser-0.223.0/src/validator/component_types.rs +0 -3377
  911. data/ext/cargo-vendor/wasmtime-28.0.0/.cargo-checksum.json +0 -1
  912. data/ext/cargo-vendor/wasmtime-28.0.0/Cargo.toml +0 -467
  913. data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/code_builder.rs +0 -317
  914. data/ext/cargo-vendor/wasmtime-28.0.0/src/compile/runtime.rs +0 -171
  915. data/ext/cargo-vendor/wasmtime-28.0.0/src/compile.rs +0 -914
  916. data/ext/cargo-vendor/wasmtime-28.0.0/src/config.rs +0 -3439
  917. data/ext/cargo-vendor/wasmtime-28.0.0/src/engine/serialization.rs +0 -942
  918. data/ext/cargo-vendor/wasmtime-28.0.0/src/engine.rs +0 -823
  919. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/code_memory.rs +0 -395
  920. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -488
  921. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/host.rs +0 -455
  922. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/func/typed.rs +0 -2482
  923. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/component/mod.rs +0 -677
  924. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/externals/global.rs +0 -312
  925. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func/typed.rs +0 -788
  926. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/func.rs +0 -2672
  927. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/instance.rs +0 -986
  928. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/memory.rs +0 -1092
  929. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/module/registry.rs +0 -344
  930. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/profiling.rs +0 -280
  931. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/store.rs +0 -2962
  932. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/global.rs +0 -70
  933. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trampoline/memory.rs +0 -261
  934. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/trap.rs +0 -625
  935. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/values.rs +0 -1080
  936. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/mod.rs +0 -45
  937. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/unsupported.rs +0 -36
  938. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/arch/x86_64.rs +0 -28
  939. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component/libcalls.rs +0 -570
  940. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/component.rs +0 -863
  941. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/cow.rs +0 -1155
  942. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1093
  943. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/helpers.c +0 -200
  944. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -1007
  945. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -256
  946. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -308
  947. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -797
  948. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/libcalls.rs +0 -1439
  949. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/malloc.rs +0 -203
  950. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/mmap.rs +0 -229
  951. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory/static_.rs +0 -79
  952. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/memory.rs +0 -700
  953. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap.rs +0 -355
  954. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/mmap_vec.rs +0 -201
  955. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -125
  956. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/custom/vm.rs +0 -106
  957. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -116
  958. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/miri/vm.rs +0 -59
  959. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -192
  960. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/signals.rs +0 -479
  961. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -118
  962. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/unix/vm.rs +0 -187
  963. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -231
  964. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/mod.rs +0 -20
  965. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -136
  966. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/sys/windows/vm.rs +0 -75
  967. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/backtrace.rs +0 -267
  968. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -42
  969. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers/signals.rs +0 -164
  970. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/traphandlers.rs +0 -740
  971. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm/vmcontext.rs +0 -1321
  972. data/ext/cargo-vendor/wasmtime-28.0.0/src/runtime/vm.rs +0 -401
  973. data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/.cargo-checksum.json +0 -1
  974. data/ext/cargo-vendor/wasmtime-asm-macros-28.0.0/Cargo.toml +0 -34
  975. data/ext/cargo-vendor/wasmtime-cache-28.0.0/.cargo-checksum.json +0 -1
  976. data/ext/cargo-vendor/wasmtime-cache-28.0.0/Cargo.toml +0 -119
  977. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/.cargo-checksum.json +0 -1
  978. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/Cargo.toml +0 -126
  979. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char.rs +0 -387
  980. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_async.rs +0 -414
  981. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/char_tracing_async.rs +0 -461
  982. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions.rs +0 -824
  983. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_async.rs +0 -899
  984. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/conventions_tracing_async.rs +0 -1190
  985. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code.rs +0 -279
  986. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_async.rs +0 -300
  987. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/dead-code_tracing_async.rs +0 -313
  988. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_async.rs +0 -219
  989. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/direct-import_tracing_async.rs +0 -232
  990. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags.rs +0 -859
  991. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_async.rs +0 -921
  992. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/flags_tracing_async.rs +0 -1096
  993. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats.rs +0 -447
  994. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_async.rs +0 -488
  995. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/floats_tracing_async.rs +0 -582
  996. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_async.rs +0 -219
  997. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/host-world_tracing_async.rs +0 -232
  998. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers.rs +0 -989
  999. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_async.rs +0 -1128
  1000. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/integers_tracing_async.rs +0 -1555
  1001. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists.rs +0 -2032
  1002. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_async.rs +0 -2288
  1003. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/lists_tracing_async.rs +0 -2980
  1004. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments.rs +0 -730
  1005. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_async.rs +0 -758
  1006. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/many-arguments_tracing_async.rs +0 -819
  1007. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return.rs +0 -475
  1008. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_async.rs +0 -519
  1009. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multi-return_tracing_async.rs +0 -633
  1010. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion.rs +0 -508
  1011. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_async.rs +0 -537
  1012. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/multiversion_tracing_async.rs +0 -585
  1013. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1.rs +0 -208
  1014. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_async.rs +0 -221
  1015. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path1_tracing_async.rs +0 -221
  1016. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2.rs +0 -208
  1017. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_async.rs +0 -221
  1018. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/path2_tracing_async.rs +0 -221
  1019. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records.rs +0 -1056
  1020. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_async.rs +0 -1146
  1021. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/records_tracing_async.rs +0 -1406
  1022. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename.rs +0 -268
  1023. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_async.rs +0 -289
  1024. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/rename_tracing_async.rs +0 -302
  1025. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export.rs +0 -879
  1026. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_async.rs +0 -937
  1027. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-export_tracing_async.rs +0 -1011
  1028. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import.rs +0 -1217
  1029. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_async.rs +0 -1361
  1030. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/resources-import_tracing_async.rs +0 -1774
  1031. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types.rs +0 -429
  1032. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_async.rs +0 -453
  1033. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/share-types_tracing_async.rs +0 -477
  1034. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions.rs +0 -522
  1035. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_async.rs +0 -574
  1036. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-functions_tracing_async.rs +0 -718
  1037. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists.rs +0 -545
  1038. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_async.rs +0 -590
  1039. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-lists_tracing_async.rs +0 -687
  1040. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi.rs +0 -331
  1041. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_async.rs +0 -354
  1042. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/simple-wasi_tracing_async.rs +0 -380
  1043. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous.rs +0 -454
  1044. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_async.rs +0 -474
  1045. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/small-anonymous_tracing_async.rs +0 -496
  1046. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export.rs +0 -263
  1047. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_async.rs +0 -272
  1048. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke-export_tracing_async.rs +0 -280
  1049. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke.rs +0 -218
  1050. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_async.rs +0 -233
  1051. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/smoke_tracing_async.rs +0 -246
  1052. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings.rs +0 -432
  1053. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_async.rs +0 -466
  1054. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/strings_tracing_async.rs +0 -538
  1055. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features.rs +0 -482
  1056. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_async.rs +0 -527
  1057. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unstable-features_tracing_async.rs +0 -585
  1058. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo.rs +0 -250
  1059. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_async.rs +0 -265
  1060. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/unversioned-foo_tracing_async.rs +0 -278
  1061. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths.rs +0 -402
  1062. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_async.rs +0 -442
  1063. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/use-paths_tracing_async.rs +0 -494
  1064. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants.rs +0 -2016
  1065. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_async.rs +0 -2183
  1066. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/variants_tracing_async.rs +0 -2705
  1067. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat.rs +0 -265
  1068. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_async.rs +0 -271
  1069. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/wat_tracing_async.rs +0 -271
  1070. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types.rs +0 -263
  1071. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_async.rs +0 -279
  1072. data/ext/cargo-vendor/wasmtime-component-macro-28.0.0/tests/expanded/worlds-with-types_tracing_async.rs +0 -287
  1073. data/ext/cargo-vendor/wasmtime-component-util-28.0.0/.cargo-checksum.json +0 -1
  1074. data/ext/cargo-vendor/wasmtime-component-util-28.0.0/Cargo.toml +0 -37
  1075. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/.cargo-checksum.json +0 -1
  1076. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/Cargo.toml +0 -167
  1077. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler/component.rs +0 -982
  1078. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/compiler.rs +0 -1175
  1079. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/gc.rs +0 -259
  1080. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/attr.rs +0 -309
  1081. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/debug_transform_logging.rs +0 -252
  1082. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/mod.rs +0 -274
  1083. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/unit.rs +0 -529
  1084. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/debug/transform/utils.rs +0 -46
  1085. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/func_environ.rs +0 -3403
  1086. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/drc.rs +0 -748
  1087. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled/null.rs +0 -286
  1088. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/gc/enabled.rs +0 -1497
  1089. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/lib.rs +0 -435
  1090. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/obj.rs +0 -638
  1091. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator/bounds_checks.rs +0 -721
  1092. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/code_translator.rs +0 -4090
  1093. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/mod.rs +0 -8
  1094. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/environ/spec.rs +0 -961
  1095. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/func_translator.rs +0 -283
  1096. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/mod.rs +0 -26
  1097. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/state.rs +0 -548
  1098. data/ext/cargo-vendor/wasmtime-cranelift-28.0.0/src/translate/table.rs +0 -117
  1099. data/ext/cargo-vendor/wasmtime-environ-28.0.0/.cargo-checksum.json +0 -1
  1100. data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.lock +0 -713
  1101. data/ext/cargo-vendor/wasmtime-environ-28.0.0/Cargo.toml +0 -214
  1102. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/builtin.rs +0 -290
  1103. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/mod.rs +0 -384
  1104. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/compile/module_artifacts.rs +0 -329
  1105. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/info.rs +0 -682
  1106. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component/vmcomponent_offsets.rs +0 -316
  1107. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/component.rs +0 -111
  1108. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/demangling.rs +0 -28
  1109. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/lib.rs +0 -69
  1110. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/module_artifacts.rs +0 -146
  1111. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/tunables.rs +0 -241
  1112. data/ext/cargo-vendor/wasmtime-environ-28.0.0/src/vmoffsets.rs +0 -894
  1113. data/ext/cargo-vendor/wasmtime-fiber-28.0.0/.cargo-checksum.json +0 -1
  1114. data/ext/cargo-vendor/wasmtime-fiber-28.0.0/Cargo.toml +0 -98
  1115. data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/.cargo-checksum.json +0 -1
  1116. data/ext/cargo-vendor/wasmtime-jit-debug-28.0.0/Cargo.toml +0 -92
  1117. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/.cargo-checksum.json +0 -1
  1118. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-28.0.0/Cargo.toml +0 -82
  1119. data/ext/cargo-vendor/wasmtime-slab-28.0.0/.cargo-checksum.json +0 -1
  1120. data/ext/cargo-vendor/wasmtime-slab-28.0.0/Cargo.toml +0 -61
  1121. data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/.cargo-checksum.json +0 -1
  1122. data/ext/cargo-vendor/wasmtime-versioned-export-macros-28.0.0/Cargo.toml +0 -42
  1123. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/.cargo-checksum.json +0 -1
  1124. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/Cargo.toml +0 -232
  1125. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/bindings.rs +0 -566
  1126. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/filesystem.rs +0 -1091
  1127. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/io.rs +0 -372
  1128. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/tcp.rs +0 -547
  1129. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/host/udp.rs +0 -762
  1130. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/ip_name_lookup.rs +0 -132
  1131. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/pipe.rs +0 -833
  1132. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/src/poll.rs +0 -245
  1133. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/command.wit +0 -10
  1134. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/imports.wit +0 -36
  1135. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/cli/stdio.wit +0 -26
  1136. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/monotonic-clock.wit +0 -50
  1137. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/timezone.wit +0 -55
  1138. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/wall-clock.wit +0 -46
  1139. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/clocks/world.wit +0 -11
  1140. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/preopens.wit +0 -11
  1141. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/types.wit +0 -672
  1142. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/filesystem/world.wit +0 -9
  1143. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/error.wit +0 -34
  1144. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/poll.wit +0 -47
  1145. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/streams.wit +0 -290
  1146. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/io/world.wit +0 -10
  1147. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure-seed.wit +0 -27
  1148. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/insecure.wit +0 -25
  1149. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/random.wit +0 -29
  1150. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/random/world.wit +0 -13
  1151. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -56
  1152. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/network.wit +0 -169
  1153. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/tcp.wit +0 -387
  1154. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/udp.wit +0 -288
  1155. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/deps/sockets/world.wit +0 -19
  1156. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/test.wit +0 -13
  1157. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/wit/world.wit +0 -6
  1158. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview0/wasi_unstable.witx +0 -513
  1159. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/typenames.witx +0 -750
  1160. data/ext/cargo-vendor/wasmtime-wasi-28.0.0/witx/preview1/wasi_snapshot_preview1.witx +0 -521
  1161. data/ext/cargo-vendor/wasmtime-winch-28.0.0/.cargo-checksum.json +0 -1
  1162. data/ext/cargo-vendor/wasmtime-winch-28.0.0/Cargo.toml +0 -117
  1163. data/ext/cargo-vendor/wasmtime-winch-28.0.0/src/builder.rs +0 -104
  1164. data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/.cargo-checksum.json +0 -1
  1165. data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/Cargo.toml +0 -77
  1166. data/ext/cargo-vendor/wasmtime-wit-bindgen-28.0.0/src/lib.rs +0 -3360
  1167. data/ext/cargo-vendor/wast-223.0.0/.cargo-checksum.json +0 -1
  1168. data/ext/cargo-vendor/wast-223.0.0/Cargo.toml +0 -111
  1169. data/ext/cargo-vendor/wast-223.0.0/src/component/binary.rs +0 -959
  1170. data/ext/cargo-vendor/wast-223.0.0/src/component/expand.rs +0 -1076
  1171. data/ext/cargo-vendor/wast-223.0.0/src/component/resolve.rs +0 -1176
  1172. data/ext/cargo-vendor/wast-223.0.0/src/component/types.rs +0 -1041
  1173. data/ext/cargo-vendor/wat-1.223.0/.cargo-checksum.json +0 -1
  1174. data/ext/cargo-vendor/wat-1.223.0/Cargo.toml +0 -61
  1175. data/ext/cargo-vendor/wiggle-28.0.0/.cargo-checksum.json +0 -1
  1176. data/ext/cargo-vendor/wiggle-28.0.0/Cargo.toml +0 -130
  1177. data/ext/cargo-vendor/wiggle-generate-28.0.0/.cargo-checksum.json +0 -1
  1178. data/ext/cargo-vendor/wiggle-generate-28.0.0/Cargo.toml +0 -96
  1179. data/ext/cargo-vendor/wiggle-macro-28.0.0/.cargo-checksum.json +0 -1
  1180. data/ext/cargo-vendor/wiggle-macro-28.0.0/Cargo.toml +0 -89
  1181. data/ext/cargo-vendor/winch-codegen-28.0.0/.cargo-checksum.json +0 -1
  1182. data/ext/cargo-vendor/winch-codegen-28.0.0/Cargo.toml +0 -112
  1183. data/ext/cargo-vendor/winch-codegen-28.0.0/src/abi/mod.rs +0 -652
  1184. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/bounds.rs +0 -224
  1185. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/builtin.rs +0 -274
  1186. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/call.rs +0 -414
  1187. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/context.rs +0 -627
  1188. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/control.rs +0 -995
  1189. data/ext/cargo-vendor/winch-codegen-28.0.0/src/codegen/mod.rs +0 -1152
  1190. data/ext/cargo-vendor/winch-codegen-28.0.0/src/frame/mod.rs +0 -294
  1191. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/abi.rs +0 -299
  1192. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/asm.rs +0 -904
  1193. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/masm.rs +0 -736
  1194. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/aarch64/mod.rs +0 -175
  1195. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/mod.rs +0 -327
  1196. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/abi.rs +0 -494
  1197. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/asm.rs +0 -1482
  1198. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/masm.rs +0 -1217
  1199. data/ext/cargo-vendor/winch-codegen-28.0.0/src/isa/x64/mod.rs +0 -176
  1200. data/ext/cargo-vendor/winch-codegen-28.0.0/src/masm.rs +0 -1057
  1201. data/ext/cargo-vendor/winch-codegen-28.0.0/src/regalloc.rs +0 -65
  1202. data/ext/cargo-vendor/winch-codegen-28.0.0/src/stack.rs +0 -447
  1203. data/ext/cargo-vendor/winch-codegen-28.0.0/src/visitor.rs +0 -2274
  1204. data/ext/cargo-vendor/winnow-0.6.22/.cargo-checksum.json +0 -1
  1205. data/ext/cargo-vendor/winnow-0.6.22/Cargo.lock +0 -1567
  1206. data/ext/cargo-vendor/winnow-0.6.22/Cargo.toml +0 -359
  1207. data/ext/cargo-vendor/winnow-0.6.22/examples/json/parser_partial.rs +0 -350
  1208. data/ext/cargo-vendor/winnow-0.6.22/src/_topic/nom.rs +0 -104
  1209. data/ext/cargo-vendor/winnow-0.6.22/src/_topic/stream.rs +0 -65
  1210. data/ext/cargo-vendor/winnow-0.6.22/src/_topic/why.rs +0 -126
  1211. data/ext/cargo-vendor/winnow-0.6.22/src/ascii/mod.rs +0 -1895
  1212. data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/mod.rs +0 -420
  1213. data/ext/cargo-vendor/winnow-0.6.22/src/binary/bits/tests.rs +0 -191
  1214. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/core.rs +0 -580
  1215. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/mod.rs +0 -180
  1216. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/multi.rs +0 -1328
  1217. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/parser.rs +0 -1093
  1218. data/ext/cargo-vendor/winnow-0.6.22/src/combinator/tests.rs +0 -1393
  1219. data/ext/cargo-vendor/winnow-0.6.22/src/error.rs +0 -1423
  1220. data/ext/cargo-vendor/winnow-0.6.22/src/lib.rs +0 -164
  1221. data/ext/cargo-vendor/winnow-0.6.22/src/macros/mod.rs +0 -5
  1222. data/ext/cargo-vendor/winnow-0.6.22/src/parser.rs +0 -1245
  1223. data/ext/cargo-vendor/winnow-0.6.22/src/stream/mod.rs +0 -3822
  1224. data/ext/cargo-vendor/winnow-0.6.22/src/token/mod.rs +0 -1031
  1225. data/ext/cargo-vendor/winnow-0.6.22/src/token/tests.rs +0 -836
  1226. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CODE_OF_CONDUCT.md +0 -0
  1227. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/CONTRIBUTING.md +0 -0
  1228. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-APACHE +0 -0
  1229. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/LICENSE-MIT +0 -0
  1230. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/SECURITY.md +0 -0
  1231. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/benches/parse.rs +0 -0
  1232. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/custom_bits_type.rs +0 -0
  1233. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/fmt.rs +0 -0
  1234. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/macro_free.rs +0 -0
  1235. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/examples/serde.rs +0 -0
  1236. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/spec.md +0 -0
  1237. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/example_generated.rs +0 -0
  1238. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/bytemuck.rs +0 -0
  1239. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external/serde.rs +0 -0
  1240. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/external.rs +0 -0
  1241. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/internal.rs +0 -0
  1242. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/iter.rs +0 -0
  1243. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/parser.rs +0 -0
  1244. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/public.rs +0 -0
  1245. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/all.rs +0 -0
  1246. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/bits.rs +0 -0
  1247. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/complement.rs +0 -0
  1248. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/contains.rs +0 -0
  1249. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/difference.rs +0 -0
  1250. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/empty.rs +0 -0
  1251. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/eq.rs +0 -0
  1252. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/extend.rs +0 -0
  1253. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/flags.rs +0 -0
  1254. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/fmt.rs +0 -0
  1255. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits.rs +0 -0
  1256. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_retain.rs +0 -0
  1257. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_bits_truncate.rs +0 -0
  1258. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/from_name.rs +0 -0
  1259. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/insert.rs +0 -0
  1260. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersection.rs +0 -0
  1261. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/intersects.rs +0 -0
  1262. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_all.rs +0 -0
  1263. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/is_empty.rs +0 -0
  1264. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/iter.rs +0 -0
  1265. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/parser.rs +0 -0
  1266. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/remove.rs +0 -0
  1267. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/symmetric_difference.rs +0 -0
  1268. /data/ext/cargo-vendor/{bitflags-2.6.0 → bitflags-2.8.0}/src/tests/union.rs +0 -0
  1269. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-APACHE +0 -0
  1270. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/LICENSE-MIT +0 -0
  1271. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/README.md +0 -0
  1272. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/clippy.toml +0 -0
  1273. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/command_helpers.rs +0 -0
  1274. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/detect_compiler_family.c +0 -0
  1275. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/async_executor.rs +0 -0
  1276. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/job_token.rs +0 -0
  1277. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/mod.rs +0 -0
  1278. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/parallel/stderr.rs +0 -0
  1279. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/apple.rs +0 -0
  1280. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/llvm.rs +0 -0
  1281. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target/parser.rs +0 -0
  1282. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/target.rs +0 -0
  1283. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/tempfile.rs +0 -0
  1284. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/utilities.rs +0 -0
  1285. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/com.rs +0 -0
  1286. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/find_tools.rs +0 -0
  1287. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/mod.rs +0 -0
  1288. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/registry.rs +0 -0
  1289. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/setup_config.rs +0 -0
  1290. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/vs_instances.rs +0 -0
  1291. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/winapi.rs +0 -0
  1292. /data/ext/cargo-vendor/{cc-1.2.7 → cc-1.2.10}/src/windows/windows_targets.rs +0 -0
  1293. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/LICENSE-APACHE +0 -0
  1294. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/aarch64.rs +0 -0
  1295. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/lib.rs +0 -0
  1296. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/loongarch64.rs +0 -0
  1297. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/miri.rs +0 -0
  1298. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/src/x86.rs +0 -0
  1299. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/aarch64.rs +0 -0
  1300. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/loongarch64.rs +0 -0
  1301. /data/ext/cargo-vendor/{cpufeatures-0.2.16 → cpufeatures-0.2.17}/tests/x86.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/LICENSE +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/README.md +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/lib.rs +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/map.rs +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/node.rs +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/path.rs +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/pool.rs +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-bforest-0.115.0 → cranelift-bforest-0.116.1}/src/set.rs +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/compound.rs +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/src/lib.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-bitset-0.115.0 → cranelift-bitset-0.116.1}/tests/bitset.rs +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/LICENSE +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/README.md +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/benches/x64-evex-encoding.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/alias_analysis.rs +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cfg_printer.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/constant_hash.rs +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/context.rs +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ctxhash.rs +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/cursor.rs +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/data_value.rs +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dbg.rs +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/dominator_tree.rs +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/cost.rs +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph/elaborate.rs +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/egraph.rs +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/flowgraph.rs +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/incremental_cache.rs +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_predicates.rs +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/inst_specs.isle +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/atomic_rmw_op.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/builder.rs +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/condcodes.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/constant.rs +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dfg.rs +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/dynamic_type.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/entities.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extfunc.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/extname.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/function.rs +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/globalvalue.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/instructions.rs +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/jumptable.rs +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/known_symbol.rs +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/layout.rs +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/libcall.rs +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memflags.rs +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/memtype.rs +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/mod.rs +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/pcc.rs +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/progpoint.rs +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/sourceloc.rs +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/stackslot.rs +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/trapcode.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/types.rs +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ir/user_stack_maps.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/imms.rs +0 -0
  1359. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1360. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst/unwind.rs +0 -0
  1361. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/inst_neon.isle +0 -0
  1362. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1363. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower.rs +0 -0
  1364. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/pcc.rs +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/aarch64/settings.rs +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/call_conv.rs +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley32.rs +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley64.rs +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/lower.rs +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/pulley_shared/settings.rs +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/emit.rs +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/encode.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/imms.rs +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/mod.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/regs.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/unwind.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst/vector.rs +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst.isle +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/inst_vector.isle +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower/isle.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.isle +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/lower.rs +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/mod.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/riscv64/settings.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/args.rs +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/imms.rs +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/mod.rs +0 -0
  1393. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/regs.rs +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst/unwind.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/inst.isle +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower/isle.rs +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.isle +0 -0
  1400. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/lower.rs +0 -0
  1401. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/mod.rs +0 -0
  1402. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/s390x/settings.rs +0 -0
  1403. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/systemv.rs +0 -0
  1404. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winarm64.rs +0 -0
  1405. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind/winx64.rs +0 -0
  1406. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/unwind.rs +0 -0
  1407. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/winch.rs +0 -0
  1408. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/evex.rs +0 -0
  1409. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/mod.rs +0 -0
  1410. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/rex.rs +0 -0
  1411. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/encoding/vex.rs +0 -0
  1412. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/args.rs +0 -0
  1413. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit.rs +0 -0
  1414. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_state.rs +0 -0
  1415. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/emit_tests.rs +0 -0
  1416. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/mod.rs +0 -0
  1417. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/regs.rs +0 -0
  1418. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/stack_switch.rs +0 -0
  1419. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1420. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1421. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/inst/unwind.rs +0 -0
  1422. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.isle +0 -0
  1423. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/lower.rs +0 -0
  1424. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/mod.rs +0 -0
  1425. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/pcc.rs +0 -0
  1426. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/isa/x64/settings.rs +0 -0
  1427. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/iterators.rs +0 -0
  1428. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/globalvalue.rs +0 -0
  1429. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/legalizer/mod.rs +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/lib.rs +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/loop_analysis.rs +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/blockorder.rs +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/compile.rs +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/helpers.rs +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/inst_common.rs +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/isle.rs +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/mod.rs +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/pcc.rs +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/reg.rs +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/valueregs.rs +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/machinst/vcode.rs +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/nan_canonicalization.rs +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/README.md +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/arithmetic.isle +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/bitops.isle +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/cprop.isle +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/extends.isle +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/generated_code.rs +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/icmp.isle +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/remat.isle +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/selects.isle +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/shifts.isle +0 -0
  1453. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spaceship.isle +0 -0
  1454. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/spectre.isle +0 -0
  1455. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts/vector.isle +0 -0
  1456. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/opts.rs +0 -0
  1457. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/prelude_opt.isle +0 -0
  1458. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/print_errors.rs +0 -0
  1459. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/ranges.rs +0 -0
  1460. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/remove_constant_phis.rs +0 -0
  1461. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/result.rs +0 -0
  1462. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/scoped_hash_map.rs +0 -0
  1463. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/settings.rs +0 -0
  1464. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/souper_harvest.rs +0 -0
  1465. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/timing.rs +0 -0
  1466. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/traversals.rs +0 -0
  1467. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unionfind.rs +0 -0
  1468. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/unreachable_code.rs +0 -0
  1469. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/value_label.rs +0 -0
  1470. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/verifier/mod.rs +0 -0
  1471. /data/ext/cargo-vendor/{cranelift-codegen-0.115.0 → cranelift-codegen-0.116.0}/src/write.rs +0 -0
  1472. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/LICENSE +0 -0
  1473. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/README.md +0 -0
  1474. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/formats.rs +0 -0
  1475. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/isa.rs +0 -0
  1476. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/mod.rs +0 -0
  1477. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/operands.rs +0 -0
  1478. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/settings.rs +0 -0
  1479. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/types.rs +0 -0
  1480. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/cdsl/typevar.rs +0 -0
  1481. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/constant_hash.rs +0 -0
  1482. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/error.rs +0 -0
  1483. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_inst.rs +0 -0
  1484. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_isle.rs +0 -0
  1485. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_settings.rs +0 -0
  1486. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/gen_types.rs +0 -0
  1487. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/arm64.rs +0 -0
  1488. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/mod.rs +0 -0
  1489. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/riscv64.rs +0 -0
  1490. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/s390x.rs +0 -0
  1491. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/isa/x86.rs +0 -0
  1492. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/entities.rs +0 -0
  1493. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/formats.rs +0 -0
  1494. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/immediates.rs +0 -0
  1495. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/mod.rs +0 -0
  1496. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/settings.rs +0 -0
  1497. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/shared/types.rs +0 -0
  1498. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/srcgen.rs +0 -0
  1499. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.115.0 → cranelift-codegen-meta-0.116.0}/src/unique_table.rs +0 -0
  1500. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/LICENSE +0 -0
  1501. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/README.md +0 -0
  1502. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constant_hash.rs +0 -0
  1503. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/constants.rs +0 -0
  1504. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.115.0 → cranelift-codegen-shared-0.116.1}/src/lib.rs +0 -0
  1505. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/LICENSE +0 -0
  1506. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/README.md +0 -0
  1507. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/chaos.rs +0 -0
  1508. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/lib.rs +0 -0
  1509. /data/ext/cargo-vendor/{cranelift-control-0.115.0 → cranelift-control-0.116.1}/src/zero_sized.rs +0 -0
  1510. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/LICENSE +0 -0
  1511. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/README.md +0 -0
  1512. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/boxed_slice.rs +0 -0
  1513. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/iter.rs +0 -0
  1514. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/keys.rs +0 -0
  1515. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/lib.rs +0 -0
  1516. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/list.rs +0 -0
  1517. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/map.rs +0 -0
  1518. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/packed_option.rs +0 -0
  1519. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/primary.rs +0 -0
  1520. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/set.rs +0 -0
  1521. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/signed.rs +0 -0
  1522. /data/ext/cargo-vendor/{cranelift-entity-0.115.0 → cranelift-entity-0.116.1}/src/unsigned.rs +0 -0
  1523. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/LICENSE +0 -0
  1524. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/README.md +0 -0
  1525. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend/safepoints.rs +0 -0
  1526. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/frontend.rs +0 -0
  1527. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/lib.rs +0 -0
  1528. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/ssa.rs +0 -0
  1529. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/switch.rs +0 -0
  1530. /data/ext/cargo-vendor/{cranelift-frontend-0.115.0 → cranelift-frontend-0.116.0}/src/variable.rs +0 -0
  1531. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/README.md +0 -0
  1532. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/build.rs +0 -0
  1533. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bad_converters.isle +0 -0
  1534. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1535. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1536. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/error1.isle +0 -0
  1537. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/extra_parens.isle +0 -0
  1538. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_expression.isle +0 -0
  1539. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/impure_rhs.isle +0 -0
  1540. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1541. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/fail/multi_prio.isle +0 -0
  1542. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows.isle +0 -0
  1543. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/borrows_main.rs +0 -0
  1544. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets.isle +0 -0
  1545. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/iflets_main.rs +0 -0
  1546. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor.isle +0 -0
  1547. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_constructor_main.rs +0 -0
  1548. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor.isle +0 -0
  1549. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/multi_extractor_main.rs +0 -0
  1550. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test.isle +0 -0
  1551. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/link/test_main.rs +0 -0
  1552. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/bound_var.isle +0 -0
  1553. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/construct_and_extract.isle +0 -0
  1554. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions.isle +0 -0
  1555. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/conversions_extern.isle +0 -0
  1556. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/let.isle +0 -0
  1557. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/nodebug.isle +0 -0
  1558. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1559. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test2.isle +0 -0
  1560. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test3.isle +0 -0
  1561. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/test4.isle +0 -0
  1562. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/tutorial.isle +0 -0
  1563. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/pass/veri_spec.isle +0 -0
  1564. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst.isle +0 -0
  1565. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/iconst_main.rs +0 -0
  1566. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing.isle +0 -0
  1567. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/isle_examples/run/let_shadowing_main.rs +0 -0
  1568. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/ast.rs +0 -0
  1569. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/codegen.rs +0 -0
  1570. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/compile.rs +0 -0
  1571. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/disjointsets.rs +0 -0
  1572. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/error.rs +0 -0
  1573. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/files.rs +0 -0
  1574. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lexer.rs +0 -0
  1575. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/lib.rs +0 -0
  1576. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/log.rs +0 -0
  1577. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/overlap.rs +0 -0
  1578. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/parser.rs +0 -0
  1579. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/sema.rs +0 -0
  1580. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/serialize.rs +0 -0
  1581. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/stablemapset.rs +0 -0
  1582. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/src/trie_again.rs +0 -0
  1583. /data/ext/cargo-vendor/{cranelift-isle-0.115.0 → cranelift-isle-0.116.0}/tests/run_tests.rs +0 -0
  1584. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/LICENSE +0 -0
  1585. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/README.md +0 -0
  1586. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/lib.rs +0 -0
  1587. /data/ext/cargo-vendor/{cranelift-native-0.115.0 → cranelift-native-0.116.0}/src/riscv.rs +0 -0
  1588. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/clocks.rs +0 -0
  1589. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/lib.rs +0 -0
  1590. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/src/noop_scheduler.rs +0 -0
  1591. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/clocks.rs +0 -0
  1592. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/random.rs +0 -0
  1593. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.28 → deterministic-wasi-ctx-0.1.29}/tests/scheduler.rs +0 -0
  1594. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-APACHE +0 -0
  1595. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/LICENSE-MIT +0 -0
  1596. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/README.md +0 -0
  1597. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/bench.rs +0 -0
  1598. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/benches/faststring.rs +0 -0
  1599. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/arbitrary.rs +0 -0
  1600. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/borsh.rs +0 -0
  1601. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/macros.rs +0 -0
  1602. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/core/raw_entry_v1.rs +0 -0
  1603. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/mutable.rs +0 -0
  1604. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/serde_seq.rs +0 -0
  1605. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/slice.rs +0 -0
  1606. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/map/tests.rs +0 -0
  1607. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/map.rs +0 -0
  1608. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/mod.rs +0 -0
  1609. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rayon/set.rs +0 -0
  1610. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/rustc.rs +0 -0
  1611. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/serde.rs +0 -0
  1612. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/mutable.rs +0 -0
  1613. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/slice.rs +0 -0
  1614. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/src/set/tests.rs +0 -0
  1615. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/equivalent_trait.rs +0 -0
  1616. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/macros_full_path.rs +0 -0
  1617. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/quick.rs +0 -0
  1618. /data/ext/cargo-vendor/{indexmap-2.7.0 → indexmap-2.7.1}/tests/tests.rs +0 -0
  1619. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-APACHE +0 -0
  1620. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/LICENSE-MIT +0 -0
  1621. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/README.md +0 -0
  1622. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/RELEASES.md +0 -0
  1623. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_schemars.rs +0 -0
  1624. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/ipnet_serde.rs +0 -0
  1625. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/mask.rs +0 -0
  1626. /data/ext/cargo-vendor/{ipnet-2.10.1 → ipnet-2.11.0}/src/parser.rs +0 -0
  1627. /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-APACHE +0 -0
  1628. /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/LICENSE-MIT +0 -0
  1629. /data/ext/cargo-vendor/{js-sys-0.3.76 → js-sys-0.3.77}/src/Temporal.rs +0 -0
  1630. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-APACHE +0 -0
  1631. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/LICENSE-MIT +0 -0
  1632. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/benches/value.rs +0 -0
  1633. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/__private_api.rs +0 -0
  1634. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/error.rs +0 -0
  1635. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/kv/source.rs +0 -0
  1636. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/src/macros.rs +0 -0
  1637. /data/ext/cargo-vendor/{log-0.4.22 → log-0.4.25}/triagebot.toml +0 -0
  1638. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/LICENSE-APACHE.md +0 -0
  1639. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/Readme.md +0 -0
  1640. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/buffer.rs +0 -0
  1641. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/deflate/stream.rs +0 -0
  1642. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/core.rs +0 -0
  1643. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/mod.rs +0 -0
  1644. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/output_buffer.rs +0 -0
  1645. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/inflate/stream.rs +0 -0
  1646. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/lib.rs +0 -0
  1647. /data/ext/cargo-vendor/{miniz_oxide-0.8.2 → miniz_oxide-0.8.3}/src/shared.rs +0 -0
  1648. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-APACHE +0 -0
  1649. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/LICENSE-MIT +0 -0
  1650. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/README.md +0 -0
  1651. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build/probe.rs +0 -0
  1652. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/build.rs +0 -0
  1653. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/rust-toolchain.toml +0 -0
  1654. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/detection.rs +0 -0
  1655. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/extra.rs +0 -0
  1656. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/location.rs +0 -0
  1657. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/marker.rs +0 -0
  1658. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/parse.rs +0 -0
  1659. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/src/wrapper.rs +0 -0
  1660. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/comments.rs +0 -0
  1661. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/features.rs +0 -0
  1662. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/marker.rs +0 -0
  1663. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test.rs +0 -0
  1664. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_fmt.rs +0 -0
  1665. /data/ext/cargo-vendor/{proc-macro2-1.0.92 → proc-macro2-1.0.93}/tests/test_size.rs +0 -0
  1666. /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/README.md +0 -0
  1667. /data/ext/cargo-vendor/{pulley-interpreter-28.0.0 → pulley-interpreter-29.0.0}/tests/all/main.rs +0 -0
  1668. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CODE_OF_CONDUCT.md +0 -0
  1669. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/CONTRIBUTING.md +0 -0
  1670. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/COPYRIGHT +0 -0
  1671. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-APACHE +0 -0
  1672. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  1673. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/LICENSE-MIT +0 -0
  1674. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/ORG_CODE_OF_CONDUCT.md +0 -0
  1675. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/README.md +0 -0
  1676. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/SECURITY.md +0 -0
  1677. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/benches/mod.rs +0 -0
  1678. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/build.rs +0 -0
  1679. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/c.rs +0 -0
  1680. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/conv.rs +0 -0
  1681. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/epoll.rs +0 -0
  1682. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/mod.rs +0 -0
  1683. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/poll_fd.rs +0 -0
  1684. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/syscalls.rs +0 -0
  1685. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/types.rs +0 -0
  1686. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/event/windows_syscalls.rs +0 -0
  1687. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/dir.rs +0 -0
  1688. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/inotify.rs +0 -0
  1689. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/makedev.rs +0 -0
  1690. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/mod.rs +0 -0
  1691. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/syscalls.rs +0 -0
  1692. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/fs/types.rs +0 -0
  1693. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/errno.rs +0 -0
  1694. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/mod.rs +0 -0
  1695. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/syscalls.rs +0 -0
  1696. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/types.rs +0 -0
  1697. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io/windows_syscalls.rs +0 -0
  1698. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/mod.rs +0 -0
  1699. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/io_uring/syscalls.rs +0 -0
  1700. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/mod.rs +0 -0
  1701. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/syscalls.rs +0 -0
  1702. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mm/types.rs +0 -0
  1703. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mod.rs +0 -0
  1704. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/mod.rs +0 -0
  1705. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/syscalls.rs +0 -0
  1706. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/mount/types.rs +0 -0
  1707. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/addr.rs +0 -0
  1708. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/ext.rs +0 -0
  1709. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/mod.rs +0 -0
  1710. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/msghdr.rs +0 -0
  1711. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/netdevice.rs +0 -0
  1712. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/read_sockaddr.rs +0 -0
  1713. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/send_recv.rs +0 -0
  1714. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/sockopt.rs +0 -0
  1715. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/syscalls.rs +0 -0
  1716. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/net/write_sockaddr.rs +0 -0
  1717. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/auxv.rs +0 -0
  1718. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/param/mod.rs +0 -0
  1719. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/mod.rs +0 -0
  1720. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pid/syscalls.rs +0 -0
  1721. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/mod.rs +0 -0
  1722. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/syscalls.rs +0 -0
  1723. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pipe/types.rs +0 -0
  1724. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/mod.rs +0 -0
  1725. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/prctl/syscalls.rs +0 -0
  1726. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/cpu_set.rs +0 -0
  1727. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/mod.rs +0 -0
  1728. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/syscalls.rs +0 -0
  1729. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/types.rs +0 -0
  1730. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/process/wait.rs +0 -0
  1731. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/mod.rs +0 -0
  1732. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/pty/syscalls.rs +0 -0
  1733. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/mod.rs +0 -0
  1734. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/syscalls.rs +0 -0
  1735. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/rand/types.rs +0 -0
  1736. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/mod.rs +0 -0
  1737. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/syscalls.rs +0 -0
  1738. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/shm/types.rs +0 -0
  1739. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/mod.rs +0 -0
  1740. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/system/types.rs +0 -0
  1741. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/mod.rs +0 -0
  1742. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/termios/syscalls.rs +0 -0
  1743. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/futex.rs +0 -0
  1744. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/mod.rs +0 -0
  1745. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/thread/syscalls.rs +0 -0
  1746. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/mod.rs +0 -0
  1747. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/syscalls.rs +0 -0
  1748. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/time/types.rs +0 -0
  1749. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/mod.rs +0 -0
  1750. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/ugid/syscalls.rs +0 -0
  1751. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/libc/winsock_c.rs +0 -0
  1752. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/aarch64.rs +0 -0
  1753. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/arm.rs +0 -0
  1754. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips.rs +0 -0
  1755. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips32r6.rs +0 -0
  1756. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64.rs +0 -0
  1757. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mips64r6.rs +0 -0
  1758. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/mod.rs +0 -0
  1759. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/powerpc64.rs +0 -0
  1760. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/riscv64.rs +0 -0
  1761. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/s390x.rs +0 -0
  1762. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/thumb.rs +0 -0
  1763. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86.rs +0 -0
  1764. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/arch/x86_64.rs +0 -0
  1765. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/c.rs +0 -0
  1766. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/conv.rs +0 -0
  1767. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/epoll.rs +0 -0
  1768. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/mod.rs +0 -0
  1769. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/poll_fd.rs +0 -0
  1770. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/syscalls.rs +0 -0
  1771. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/event/types.rs +0 -0
  1772. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/dir.rs +0 -0
  1773. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/inotify.rs +0 -0
  1774. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/makedev.rs +0 -0
  1775. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/mod.rs +0 -0
  1776. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/syscalls.rs +0 -0
  1777. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/fs/types.rs +0 -0
  1778. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/errno.rs +0 -0
  1779. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/mod.rs +0 -0
  1780. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/syscalls.rs +0 -0
  1781. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io/types.rs +0 -0
  1782. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/mod.rs +0 -0
  1783. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
  1784. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/mod.rs +0 -0
  1785. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/syscalls.rs +0 -0
  1786. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mm/types.rs +0 -0
  1787. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mod.rs +0 -0
  1788. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/mod.rs +0 -0
  1789. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/syscalls.rs +0 -0
  1790. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/mount/types.rs +0 -0
  1791. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/addr.rs +0 -0
  1792. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/mod.rs +0 -0
  1793. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/msghdr.rs +0 -0
  1794. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/netdevice.rs +0 -0
  1795. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
  1796. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/send_recv.rs +0 -0
  1797. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/sockopt.rs +0 -0
  1798. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/syscalls.rs +0 -0
  1799. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
  1800. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/auxv.rs +0 -0
  1801. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/init.rs +0 -0
  1802. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
  1803. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/param/mod.rs +0 -0
  1804. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/mod.rs +0 -0
  1805. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pid/syscalls.rs +0 -0
  1806. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/mod.rs +0 -0
  1807. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/syscalls.rs +0 -0
  1808. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pipe/types.rs +0 -0
  1809. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/mod.rs +0 -0
  1810. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/prctl/syscalls.rs +0 -0
  1811. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/cpu_set.rs +0 -0
  1812. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/mod.rs +0 -0
  1813. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/syscalls.rs +0 -0
  1814. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/types.rs +0 -0
  1815. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/process/wait.rs +0 -0
  1816. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/mod.rs +0 -0
  1817. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/pty/syscalls.rs +0 -0
  1818. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/mod.rs +0 -0
  1819. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/syscalls.rs +0 -0
  1820. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/rand/types.rs +0 -0
  1821. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/reg.rs +0 -0
  1822. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/mod.rs +0 -0
  1823. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
  1824. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/runtime/tls.rs +0 -0
  1825. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/mod.rs +0 -0
  1826. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/syscalls.rs +0 -0
  1827. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/shm/types.rs +0 -0
  1828. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/mod.rs +0 -0
  1829. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/system/types.rs +0 -0
  1830. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/mod.rs +0 -0
  1831. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/termios/syscalls.rs +0 -0
  1832. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/futex.rs +0 -0
  1833. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/mod.rs +0 -0
  1834. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/thread/syscalls.rs +0 -0
  1835. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/mod.rs +0 -0
  1836. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/syscalls.rs +0 -0
  1837. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/time/types.rs +0 -0
  1838. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/mod.rs +0 -0
  1839. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/ugid/syscalls.rs +0 -0
  1840. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso.rs +0 -0
  1841. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
  1842. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/bitcast.rs +0 -0
  1843. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/buffer.rs +0 -0
  1844. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/check_types.rs +0 -0
  1845. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/clockid.rs +0 -0
  1846. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/cstr.rs +0 -0
  1847. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/epoll.rs +0 -0
  1848. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/eventfd.rs +0 -0
  1849. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/kqueue.rs +0 -0
  1850. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/mod.rs +0 -0
  1851. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/pause.rs +0 -0
  1852. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/poll.rs +0 -0
  1853. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/port.rs +0 -0
  1854. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/event/select.rs +0 -0
  1855. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ffi.rs +0 -0
  1856. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/abs.rs +0 -0
  1857. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/at.rs +0 -0
  1858. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/constants.rs +0 -0
  1859. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/copy_file_range.rs +0 -0
  1860. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/cwd.rs +0 -0
  1861. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/dir.rs +0 -0
  1862. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fadvise.rs +0 -0
  1863. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl.rs +0 -0
  1864. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcntl_apple.rs +0 -0
  1865. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fcopyfile.rs +0 -0
  1866. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/fd.rs +0 -0
  1867. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/getpath.rs +0 -0
  1868. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/id.rs +0 -0
  1869. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/inotify.rs +0 -0
  1870. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/ioctl.rs +0 -0
  1871. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/makedev.rs +0 -0
  1872. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/memfd_create.rs +0 -0
  1873. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mod.rs +0 -0
  1874. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/mount.rs +0 -0
  1875. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/openat2.rs +0 -0
  1876. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/raw_dir.rs +0 -0
  1877. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/seek_from.rs +0 -0
  1878. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sendfile.rs +0 -0
  1879. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/special.rs +0 -0
  1880. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/statx.rs +0 -0
  1881. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/sync.rs +0 -0
  1882. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/fs/xattr.rs +0 -0
  1883. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/close.rs +0 -0
  1884. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/dup.rs +0 -0
  1885. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/errno.rs +0 -0
  1886. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/fcntl.rs +0 -0
  1887. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/ioctl.rs +0 -0
  1888. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/is_read_write.rs +0 -0
  1889. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/mod.rs +0 -0
  1890. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io/read_write.rs +0 -0
  1891. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/io_uring.rs +0 -0
  1892. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/bsd.rs +0 -0
  1893. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/linux.rs +0 -0
  1894. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/mod.rs +0 -0
  1895. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ioctl/patterns.rs +0 -0
  1896. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/io/mod.rs +0 -0
  1897. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/mod.rs +0 -0
  1898. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/net/mod.rs +0 -0
  1899. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/mod.rs +0 -0
  1900. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/owned.rs +0 -0
  1901. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/fd/raw.rs +0 -0
  1902. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/mod.rs +0 -0
  1903. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/mod.rs +0 -0
  1904. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/raw.rs +0 -0
  1905. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/io/socket.rs +0 -0
  1906. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/maybe_polyfill/no_std/os/windows/mod.rs +0 -0
  1907. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/madvise.rs +0 -0
  1908. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mmap.rs +0 -0
  1909. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/mod.rs +0 -0
  1910. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/msync.rs +0 -0
  1911. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mm/userfaultfd.rs +0 -0
  1912. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/fsopen.rs +0 -0
  1913. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mod.rs +0 -0
  1914. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/mount_unmount.rs +0 -0
  1915. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/mount/types.rs +0 -0
  1916. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/mod.rs +0 -0
  1917. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/netdevice.rs +0 -0
  1918. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/mod.rs +0 -0
  1919. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/send_recv/msg.rs +0 -0
  1920. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket.rs +0 -0
  1921. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socket_addr_any.rs +0 -0
  1922. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/socketpair.rs +0 -0
  1923. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/sockopt.rs +0 -0
  1924. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/types.rs +0 -0
  1925. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/net/wsa.rs +0 -0
  1926. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/auxv.rs +0 -0
  1927. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/init.rs +0 -0
  1928. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/param/mod.rs +0 -0
  1929. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/arg.rs +0 -0
  1930. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/dec_int.rs +0 -0
  1931. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/path/mod.rs +0 -0
  1932. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pid.rs +0 -0
  1933. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pipe.rs +0 -0
  1934. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/prctl.rs +0 -0
  1935. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chdir.rs +0 -0
  1936. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/chroot.rs +0 -0
  1937. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/exit.rs +0 -0
  1938. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/id.rs +0 -0
  1939. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/ioctl.rs +0 -0
  1940. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/kill.rs +0 -0
  1941. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/membarrier.rs +0 -0
  1942. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/mod.rs +0 -0
  1943. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd.rs +0 -0
  1944. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pidfd_getfd.rs +0 -0
  1945. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/pivot_root.rs +0 -0
  1946. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/prctl.rs +0 -0
  1947. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/priority.rs +0 -0
  1948. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/procctl.rs +0 -0
  1949. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/rlimit.rs +0 -0
  1950. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched.rs +0 -0
  1951. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/sched_yield.rs +0 -0
  1952. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/umask.rs +0 -0
  1953. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/process/wait.rs +0 -0
  1954. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/procfs.rs +0 -0
  1955. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/pty.rs +0 -0
  1956. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/getrandom.rs +0 -0
  1957. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/rand/mod.rs +0 -0
  1958. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/runtime.rs +0 -0
  1959. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/shm.rs +0 -0
  1960. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/signal.rs +0 -0
  1961. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/static_assertions.rs +0 -0
  1962. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/stdio.rs +0 -0
  1963. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/ioctl.rs +0 -0
  1964. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/mod.rs +0 -0
  1965. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tc.rs +0 -0
  1966. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/tty.rs +0 -0
  1967. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/termios/types.rs +0 -0
  1968. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/clock.rs +0 -0
  1969. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/futex.rs +0 -0
  1970. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/id.rs +0 -0
  1971. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/libcap.rs +0 -0
  1972. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/mod.rs +0 -0
  1973. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/prctl.rs +0 -0
  1974. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/thread/setns.rs +0 -0
  1975. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/clock.rs +0 -0
  1976. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/mod.rs +0 -0
  1977. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/time/timerfd.rs +0 -0
  1978. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/timespec.rs +0 -0
  1979. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/ugid.rs +0 -0
  1980. /data/ext/cargo-vendor/{rustix-0.38.43 → rustix-0.38.44}/src/utils.rs +0 -0
  1981. /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-APACHE +0 -0
  1982. /data/ext/cargo-vendor/{semver-1.0.24 → rustversion-1.0.19}/LICENSE-MIT +0 -0
  1983. /data/ext/cargo-vendor/{serde_json-1.0.135 → rustversion-1.0.19}/tests/compiletest.rs +0 -0
  1984. /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-APACHE +0 -0
  1985. /data/ext/cargo-vendor/{serde_json-1.0.135 → semver-1.0.25}/LICENSE-MIT +0 -0
  1986. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/README.md +0 -0
  1987. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/benches/parse.rs +0 -0
  1988. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/build.rs +0 -0
  1989. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/backport.rs +0 -0
  1990. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/display.rs +0 -0
  1991. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/error.rs +0 -0
  1992. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/eval.rs +0 -0
  1993. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/identifier.rs +0 -0
  1994. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/impls.rs +0 -0
  1995. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/parse.rs +0 -0
  1996. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/src/serde.rs +0 -0
  1997. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/node/mod.rs +0 -0
  1998. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_autotrait.rs +0 -0
  1999. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_identifier.rs +0 -0
  2000. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version.rs +0 -0
  2001. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/test_version_req.rs +0 -0
  2002. /data/ext/cargo-vendor/{semver-1.0.24 → semver-1.0.25}/tests/util/mod.rs +0 -0
  2003. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/CONTRIBUTING.md +0 -0
  2004. /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-APACHE +0 -0
  2005. /data/ext/cargo-vendor/{syn-2.0.95 → serde_json-1.0.137}/LICENSE-MIT +0 -0
  2006. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/README.md +0 -0
  2007. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/build.rs +0 -0
  2008. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/de.rs +0 -0
  2009. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/error.rs +0 -0
  2010. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/core.rs +0 -0
  2011. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/io/mod.rs +0 -0
  2012. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/iter.rs +0 -0
  2013. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/algorithm.rs +0 -0
  2014. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bhcomp.rs +0 -0
  2015. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/bignum.rs +0 -0
  2016. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached.rs +0 -0
  2017. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/cached_float80.rs +0 -0
  2018. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/digit.rs +0 -0
  2019. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/errors.rs +0 -0
  2020. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/exponent.rs +0 -0
  2021. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/float.rs +0 -0
  2022. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers.rs +0 -0
  2023. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers32.rs +0 -0
  2024. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/large_powers64.rs +0 -0
  2025. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/math.rs +0 -0
  2026. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/mod.rs +0 -0
  2027. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/num.rs +0 -0
  2028. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/parse.rs +0 -0
  2029. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/rounding.rs +0 -0
  2030. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/shift.rs +0 -0
  2031. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/lexical/small_powers.rs +0 -0
  2032. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/macros.rs +0 -0
  2033. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/map.rs +0 -0
  2034. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/number.rs +0 -0
  2035. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/raw.rs +0 -0
  2036. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/read.rs +0 -0
  2037. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/ser.rs +0 -0
  2038. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/de.rs +0 -0
  2039. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/from.rs +0 -0
  2040. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/index.rs +0 -0
  2041. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/mod.rs +0 -0
  2042. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/src/value/partial_eq.rs +0 -0
  2043. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/debug.rs +0 -0
  2044. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/algorithm.rs +0 -0
  2045. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/exponent.rs +0 -0
  2046. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/float.rs +0 -0
  2047. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/math.rs +0 -0
  2048. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/num.rs +0 -0
  2049. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/parse.rs +0 -0
  2050. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical/rounding.rs +0 -0
  2051. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/lexical.rs +0 -0
  2052. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/macros/mod.rs +0 -0
  2053. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/map.rs +0 -0
  2054. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue1004.rs +0 -0
  2055. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue520.rs +0 -0
  2056. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue795.rs +0 -0
  2057. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue845.rs +0 -0
  2058. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression/issue953.rs +0 -0
  2059. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/regression.rs +0 -0
  2060. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/stream.rs +0 -0
  2061. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/test.rs +0 -0
  2062. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.rs +0 -0
  2063. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_colon.stderr +0 -0
  2064. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.rs +0 -0
  2065. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_comma.stderr +0 -0
  2066. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.rs +0 -0
  2067. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/missing_value.stderr +0 -0
  2068. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.rs +0 -0
  2069. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/not_found.stderr +0 -0
  2070. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.rs +0 -0
  2071. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_expr.stderr +0 -0
  2072. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.rs +0 -0
  2073. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/parse_key.stderr +0 -0
  2074. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.rs +0 -0
  2075. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_array_element.stderr +0 -0
  2076. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.rs +0 -0
  2077. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_after_map_entry.stderr +0 -0
  2078. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.rs +0 -0
  2079. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_colon.stderr +0 -0
  2080. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.rs +0 -0
  2081. /data/ext/cargo-vendor/{serde_json-1.0.135 → serde_json-1.0.137}/tests/ui/unexpected_comma.stderr +0 -0
  2082. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-APACHE +0 -0
  2083. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → syn-2.0.96}/LICENSE-MIT +0 -0
  2084. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/README.md +0 -0
  2085. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/file.rs +0 -0
  2086. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/benches/rust.rs +0 -0
  2087. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/attr.rs +0 -0
  2088. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/bigint.rs +0 -0
  2089. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/buffer.rs +0 -0
  2090. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/classify.rs +0 -0
  2091. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_keyword.rs +0 -0
  2092. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/custom_punctuation.rs +0 -0
  2093. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/data.rs +0 -0
  2094. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/derive.rs +0 -0
  2095. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/discouraged.rs +0 -0
  2096. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/drops.rs +0 -0
  2097. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/error.rs +0 -0
  2098. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/export.rs +0 -0
  2099. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ext.rs +0 -0
  2100. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/file.rs +0 -0
  2101. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/clone.rs +0 -0
  2102. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/debug.rs +0 -0
  2103. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/eq.rs +0 -0
  2104. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/fold.rs +0 -0
  2105. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/hash.rs +0 -0
  2106. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/token.css +0 -0
  2107. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit.rs +0 -0
  2108. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/gen/visit_mut.rs +0 -0
  2109. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/generics.rs +0 -0
  2110. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/group.rs +0 -0
  2111. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ident.rs +0 -0
  2112. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/item.rs +0 -0
  2113. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lifetime.rs +0 -0
  2114. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lit.rs +0 -0
  2115. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/lookahead.rs +0 -0
  2116. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/mac.rs +0 -0
  2117. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/macros.rs +0 -0
  2118. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/meta.rs +0 -0
  2119. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/op.rs +0 -0
  2120. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse.rs +0 -0
  2121. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_macro_input.rs +0 -0
  2122. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/parse_quote.rs +0 -0
  2123. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/pat.rs +0 -0
  2124. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/path.rs +0 -0
  2125. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/precedence.rs +0 -0
  2126. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/print.rs +0 -0
  2127. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/punctuated.rs +0 -0
  2128. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/restriction.rs +0 -0
  2129. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/scan_expr.rs +0 -0
  2130. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/sealed.rs +0 -0
  2131. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/span.rs +0 -0
  2132. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/spanned.rs +0 -0
  2133. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/stmt.rs +0 -0
  2134. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/thread.rs +0 -0
  2135. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/token.rs +0 -0
  2136. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/tt.rs +0 -0
  2137. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/ty.rs +0 -0
  2138. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/verbatim.rs +0 -0
  2139. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/src/whitespace.rs +0 -0
  2140. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/eq.rs +0 -0
  2141. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/mod.rs +0 -0
  2142. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/parse.rs +0 -0
  2143. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/common/visit.rs +0 -0
  2144. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/gen.rs +0 -0
  2145. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/debug/mod.rs +0 -0
  2146. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/macros/mod.rs +0 -0
  2147. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1108.rs +0 -0
  2148. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression/issue1235.rs +0 -0
  2149. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/regression.rs +0 -0
  2150. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/mod.rs +0 -0
  2151. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/repo/progress.rs +0 -0
  2152. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_asyncness.rs +0 -0
  2153. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_attribute.rs +0 -0
  2154. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_derive_input.rs +0 -0
  2155. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_generics.rs +0 -0
  2156. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_grouping.rs +0 -0
  2157. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ident.rs +0 -0
  2158. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_item.rs +0 -0
  2159. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_iterators.rs +0 -0
  2160. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_lit.rs +0 -0
  2161. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_meta.rs +0 -0
  2162. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_buffer.rs +0 -0
  2163. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_quote.rs +0 -0
  2164. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_parse_stream.rs +0 -0
  2165. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_pat.rs +0 -0
  2166. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_path.rs +0 -0
  2167. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_precedence.rs +0 -0
  2168. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_receiver.rs +0 -0
  2169. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_round_trip.rs +0 -0
  2170. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_shebang.rs +0 -0
  2171. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_size.rs +0 -0
  2172. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_stmt.rs +0 -0
  2173. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_token_trees.rs +0 -0
  2174. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_ty.rs +0 -0
  2175. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_unparenthesize.rs +0 -0
  2176. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/test_visibility.rs +0 -0
  2177. /data/ext/cargo-vendor/{syn-2.0.95 → syn-2.0.96}/tests/zzz_stable.rs +0 -0
  2178. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/LICENSE +0 -0
  2179. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/build.rs +0 -0
  2180. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/host.rs +0 -0
  2181. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/examples/misc.rs +0 -0
  2182. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/scripts/rust-targets.sh +0 -0
  2183. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/data_model.rs +0 -0
  2184. /data/ext/cargo-vendor/{target-lexicon-0.12.16 → target-lexicon-0.13.1}/src/parse_error.rs +0 -0
  2185. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/LICENSE-UNICODE +0 -0
  2186. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/src/tables.rs +0 -0
  2187. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/compare.rs +0 -0
  2188. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/mod.rs +0 -0
  2189. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_continue.fst +0 -0
  2190. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/fst/xid_start.fst +0 -0
  2191. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/roaring/mod.rs +0 -0
  2192. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/static_size.rs +0 -0
  2193. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/mod.rs +0 -0
  2194. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/tables/tables.rs +0 -0
  2195. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/mod.rs +0 -0
  2196. /data/ext/cargo-vendor/{unicode-ident-1.0.14 → unicode-ident-1.0.15}/tests/trie/trie.rs +0 -0
  2197. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-APACHE +0 -0
  2198. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/LICENSE-MIT +0 -0
  2199. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external/borsh_support.rs +0 -0
  2200. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/external.rs +0 -0
  2201. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/fmt.rs +0 -0
  2202. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/macros.rs +0 -0
  2203. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/md5.rs +0 -0
  2204. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/parser.rs +0 -0
  2205. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/rng.rs +0 -0
  2206. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/sha1.rs +0 -0
  2207. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v1.rs +0 -0
  2208. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v3.rs +0 -0
  2209. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v4.rs +0 -0
  2210. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v6.rs +0 -0
  2211. /data/ext/cargo-vendor/{uuid-1.11.0 → uuid-1.12.1}/src/v8.rs +0 -0
  2212. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/LICENSE +0 -0
  2213. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/README.md +0 -0
  2214. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/clocks.rs +0 -0
  2215. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/ctx.rs +0 -0
  2216. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/dir.rs +0 -0
  2217. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/error.rs +0 -0
  2218. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/file.rs +0 -0
  2219. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/lib.rs +0 -0
  2220. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/pipe.rs +0 -0
  2221. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/random.rs +0 -0
  2222. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched/subscription.rs +0 -0
  2223. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sched.rs +0 -0
  2224. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/mod.rs +0 -0
  2225. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_0.rs +0 -0
  2226. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1/error.rs +0 -0
  2227. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/snapshots/preview_1.rs +0 -0
  2228. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/string_array.rs +0 -0
  2229. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/clocks.rs +0 -0
  2230. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/dir.rs +0 -0
  2231. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/file.rs +0 -0
  2232. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/mod.rs +0 -0
  2233. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/net.rs +0 -0
  2234. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/unix.rs +0 -0
  2235. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched/windows.rs +0 -0
  2236. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/sched.rs +0 -0
  2237. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/sync/stdio.rs +0 -0
  2238. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/table.rs +0 -0
  2239. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/dir.rs +0 -0
  2240. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/file.rs +0 -0
  2241. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/mod.rs +0 -0
  2242. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/net.rs +0 -0
  2243. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/unix.rs +0 -0
  2244. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched/windows.rs +0 -0
  2245. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/sched.rs +0 -0
  2246. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/src/tokio/stdio.rs +0 -0
  2247. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/async_.rs +0 -0
  2248. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/main.rs +0 -0
  2249. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/tests/all/sync.rs +0 -0
  2250. /data/ext/cargo-vendor/{wasi-common-28.0.0 → wasi-common-29.0.0}/witx/preview0/typenames.witx +0 -0
  2251. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-APACHE +0 -0
  2252. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/LICENSE-MIT +0 -0
  2253. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/build.rs +0 -0
  2254. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cache/mod.rs +0 -0
  2255. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/cast.rs +0 -0
  2256. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/impls.rs +0 -0
  2257. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/mod.rs +0 -0
  2258. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/slices.rs +0 -0
  2259. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/convert/traits.rs +0 -0
  2260. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/describe.rs +0 -0
  2261. /data/ext/cargo-vendor/{wasm-bindgen-0.2.99 → wasm-bindgen-0.2.100}/src/link.rs +0 -0
  2262. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-APACHE +0 -0
  2263. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/LICENSE-MIT +0 -0
  2264. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/error.rs +0 -0
  2265. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/lib.rs +0 -0
  2266. /data/ext/cargo-vendor/{wasm-bindgen-backend-0.2.99 → wasm-bindgen-backend-0.2.100}/src/util.rs +0 -0
  2267. /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-APACHE +0 -0
  2268. /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/LICENSE-MIT +0 -0
  2269. /data/ext/cargo-vendor/{wasm-bindgen-macro-0.2.99 → wasm-bindgen-macro-0.2.100}/src/worker.js +0 -0
  2270. /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-APACHE +0 -0
  2271. /data/ext/cargo-vendor/{wasm-bindgen-macro-support-0.2.99 → wasm-bindgen-macro-support-0.2.100}/LICENSE-MIT +0 -0
  2272. /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-APACHE +0 -0
  2273. /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/LICENSE-MIT +0 -0
  2274. /data/ext/cargo-vendor/{wasm-bindgen-shared-0.2.99 → wasm-bindgen-shared-0.2.100}/build.rs +0 -0
  2275. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/README.md +0 -0
  2276. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/build.rs +0 -0
  2277. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/aliases.rs +0 -0
  2278. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/builder.rs +0 -0
  2279. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/canonicals.rs +0 -0
  2280. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/components.rs +0 -0
  2281. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/exports.rs +0 -0
  2282. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/imports.rs +0 -0
  2283. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/instances.rs +0 -0
  2284. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/modules.rs +0 -0
  2285. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/names.rs +0 -0
  2286. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component/start.rs +0 -0
  2287. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/component.rs +0 -0
  2288. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/branch_hints.rs +0 -0
  2289. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/code.rs +0 -0
  2290. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/custom.rs +0 -0
  2291. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/data.rs +0 -0
  2292. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/dump.rs +0 -0
  2293. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/elements.rs +0 -0
  2294. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/exports.rs +0 -0
  2295. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/functions.rs +0 -0
  2296. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/globals.rs +0 -0
  2297. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/imports.rs +0 -0
  2298. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/linking.rs +0 -0
  2299. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/memories.rs +0 -0
  2300. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/names.rs +0 -0
  2301. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/producers.rs +0 -0
  2302. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/start.rs +0 -0
  2303. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tables.rs +0 -0
  2304. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/tags.rs +0 -0
  2305. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core/types.rs +0 -0
  2306. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/core.rs +0 -0
  2307. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/lib.rs +0 -0
  2308. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/raw.rs +0 -0
  2309. /data/ext/cargo-vendor/{wasm-encoder-0.223.0 → wasm-encoder-0.224.0}/src/reencode.rs +0 -0
  2310. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/README.md +0 -0
  2311. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/benches/benchmark.rs +0 -0
  2312. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/build.rs +0 -0
  2313. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/examples/simple.rs +0 -0
  2314. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/arity.rs +0 -0
  2315. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader/simd.rs +0 -0
  2316. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/binary_reader.rs +0 -0
  2317. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/hash.rs +0 -0
  2318. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/detail.rs +0 -0
  2319. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map/tests.rs +0 -0
  2320. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_map.rs +0 -0
  2321. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/index_set.rs +0 -0
  2322. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/map.rs +0 -0
  2323. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/mod.rs +0 -0
  2324. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/collections/set.rs +0 -0
  2325. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/features.rs +0 -0
  2326. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/lib.rs +0 -0
  2327. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/limits.rs +0 -0
  2328. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/parser.rs +0 -0
  2329. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/aliases.rs +0 -0
  2330. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/canonicals.rs +0 -0
  2331. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/exports.rs +0 -0
  2332. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/imports.rs +0 -0
  2333. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/instances.rs +0 -0
  2334. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/names.rs +0 -0
  2335. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component/start.rs +0 -0
  2336. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/component.rs +0 -0
  2337. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/branch_hinting.rs +0 -0
  2338. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/code.rs +0 -0
  2339. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/coredumps.rs +0 -0
  2340. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/custom.rs +0 -0
  2341. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/data.rs +0 -0
  2342. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/dylink0.rs +0 -0
  2343. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/elements.rs +0 -0
  2344. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/exports.rs +0 -0
  2345. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/functions.rs +0 -0
  2346. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/globals.rs +0 -0
  2347. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/imports.rs +0 -0
  2348. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/init.rs +0 -0
  2349. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/linking.rs +0 -0
  2350. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/memories.rs +0 -0
  2351. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/names.rs +0 -0
  2352. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/operators.rs +0 -0
  2353. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/producers.rs +0 -0
  2354. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/reloc.rs +0 -0
  2355. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tables.rs +0 -0
  2356. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/tags.rs +0 -0
  2357. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types/matches.rs +0 -0
  2358. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core/types.rs +0 -0
  2359. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers/core.rs +0 -0
  2360. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/readers.rs +0 -0
  2361. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/resources.rs +0 -0
  2362. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core/canonical.rs +0 -0
  2363. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/core.rs +0 -0
  2364. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/func.rs +0 -0
  2365. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/names.rs +0 -0
  2366. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators/simd.rs +0 -0
  2367. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/operators.rs +0 -0
  2368. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator/types.rs +0 -0
  2369. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/src/validator.rs +0 -0
  2370. /data/ext/cargo-vendor/{wasmparser-0.223.0 → wasmparser-0.224.0}/tests/big-module.rs +0 -0
  2371. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/LICENSE +0 -0
  2372. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/README.md +0 -0
  2373. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/build.rs +0 -0
  2374. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  2375. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/lib.rs +0 -0
  2376. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/jitdump.rs +0 -0
  2377. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/perfmap.rs +0 -0
  2378. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent/vtune.rs +0 -0
  2379. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/profiling_agent.rs +0 -0
  2380. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/code.rs +0 -0
  2381. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  2382. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  2383. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  2384. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  2385. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  2386. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  2387. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  2388. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/component.rs +0 -0
  2389. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func/options.rs +0 -0
  2390. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/func.rs +0 -0
  2391. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/instance.rs +0 -0
  2392. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/linker.rs +0 -0
  2393. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/matching.rs +0 -0
  2394. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resource_table.rs +0 -0
  2395. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/resources.rs +0 -0
  2396. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/storage.rs +0 -0
  2397. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/store.rs +0 -0
  2398. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/types.rs +0 -0
  2399. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/component/values.rs +0 -0
  2400. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/coredump.rs +0 -0
  2401. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/debug.rs +0 -0
  2402. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals/table.rs +0 -0
  2403. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/externals.rs +0 -0
  2404. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/anyref.rs +0 -0
  2405. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/arrayref.rs +0 -0
  2406. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/eqref.rs +0 -0
  2407. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
  2408. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
  2409. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/rooting.rs +0 -0
  2410. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
  2411. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/disabled.rs +0 -0
  2412. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/anyref.rs +0 -0
  2413. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/arrayref.rs +0 -0
  2414. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/eqref.rs +0 -0
  2415. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
  2416. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/i31.rs +0 -0
  2417. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/rooting.rs +0 -0
  2418. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
  2419. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/enabled.rs +0 -0
  2420. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/noextern.rs +0 -0
  2421. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc/none_ref.rs +0 -0
  2422. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/gc.rs +0 -0
  2423. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/instantiate.rs +0 -0
  2424. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/limits.rs +0 -0
  2425. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/linker.rs +0 -0
  2426. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/module.rs +0 -0
  2427. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/resources.rs +0 -0
  2428. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/stack.rs +0 -0
  2429. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/context.rs +0 -0
  2430. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/data.rs +0 -0
  2431. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/store/func_refs.rs +0 -0
  2432. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/func.rs +0 -0
  2433. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline/table.rs +0 -0
  2434. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/trampoline.rs +0 -0
  2435. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/type_registry.rs +0 -0
  2436. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types/matching.rs +0 -0
  2437. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/types.rs +0 -0
  2438. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/uninhabited.rs +0 -0
  2439. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/unix.rs +0 -0
  2440. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/v128.rs +0 -0
  2441. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
  2442. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
  2443. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.S +0 -0
  2444. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
  2445. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/async_yield.rs +0 -0
  2446. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/byte_count.rs +0 -0
  2447. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/component/resources.rs +0 -0
  2448. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/const_expr.rs +0 -0
  2449. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/cow_disabled.rs +0 -0
  2450. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
  2451. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/export.rs +0 -0
  2452. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/disabled.rs +0 -0
  2453. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  2454. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/data.rs +0 -0
  2455. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  2456. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  2457. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/null.rs +0 -0
  2458. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  2459. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/enabled.rs +0 -0
  2460. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/func_ref.rs +0 -0
  2461. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_ref.rs +0 -0
  2462. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  2463. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
  2464. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc/i31.rs +0 -0
  2465. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/gc.rs +0 -0
  2466. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/imports.rs +0 -0
  2467. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  2468. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  2469. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  2470. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  2471. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  2472. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
  2473. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/instance.rs +0 -0
  2474. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory.rs +0 -0
  2475. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
  2476. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/module_id.rs +0 -0
  2477. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
  2478. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
  2479. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
  2480. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
  2481. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
  2482. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/parking_spot.rs +0 -0
  2483. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
  2484. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
  2485. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/store_box.rs +0 -0
  2486. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
  2487. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
  2488. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  2489. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  2490. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
  2491. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  2492. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  2493. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/mod.rs +0 -0
  2494. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/machports.rs +0 -0
  2495. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
  2496. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/sys/unix/traphandlers.rs +0 -0
  2497. /data/ext/cargo-vendor/{wasmtime-28.0.0/src/runtime/vm/sys/windows/unwind.rs → wasmtime-29.0.0/src/runtime/vm/sys/windows/unwind64.rs} +0 -0
  2498. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/table.rs +0 -0
  2499. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  2500. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  2501. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/component.rs +0 -0
  2502. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave/core.rs +0 -0
  2503. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/wave.rs +0 -0
  2504. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime/windows.rs +0 -0
  2505. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/runtime.rs +0 -0
  2506. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_nostd.rs +0 -0
  2507. /data/ext/cargo-vendor/{wasmtime-28.0.0 → wasmtime-29.0.0}/src/sync_std.rs +0 -0
  2508. /data/ext/cargo-vendor/{wasmtime-asm-macros-28.0.0 → wasmtime-asm-macros-29.0.0}/src/lib.rs +0 -0
  2509. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/LICENSE +0 -0
  2510. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/build.rs +0 -0
  2511. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config/tests.rs +0 -0
  2512. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/config.rs +0 -0
  2513. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/lib.rs +0 -0
  2514. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/tests.rs +0 -0
  2515. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  2516. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker/tests.rs +0 -0
  2517. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/src/worker.rs +0 -0
  2518. /data/ext/cargo-vendor/{wasmtime-cache-28.0.0 → wasmtime-cache-29.0.0}/tests/cache_write_default_config.rs +0 -0
  2519. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/build.rs +0 -0
  2520. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/bindgen.rs +0 -0
  2521. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/component.rs +0 -0
  2522. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/src/lib.rs +0 -0
  2523. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/char.wit +0 -0
  2524. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/conventions.wit +0 -0
  2525. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/dead-code.wit +0 -0
  2526. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/direct-import.wit +0 -0
  2527. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/empty.wit +0 -0
  2528. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/flags.wit +0 -0
  2529. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/floats.wit +0 -0
  2530. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/function-new.wit +0 -0
  2531. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/host-world.wit +0 -0
  2532. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/integers.wit +0 -0
  2533. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/lists.wit +0 -0
  2534. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/many-arguments.wit +0 -0
  2535. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multi-return.wit +0 -0
  2536. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  2537. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  2538. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/multiversion/root.wit +0 -0
  2539. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path1/world.wit +0 -0
  2540. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/path2/world.wit +0 -0
  2541. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/records.wit +0 -0
  2542. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/rename.wit +0 -0
  2543. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-export.wit +0 -0
  2544. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/resources-import.wit +0 -0
  2545. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/share-types.wit +0 -0
  2546. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-functions.wit +0 -0
  2547. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-lists.wit +0 -0
  2548. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/simple-wasi.wit +0 -0
  2549. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/small-anonymous.wit +0 -0
  2550. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-default.wit +0 -0
  2551. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke-export.wit +0 -0
  2552. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/smoke.wit +0 -0
  2553. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/strings.wit +0 -0
  2554. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unstable-features.wit +0 -0
  2555. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/unversioned-foo.wit +0 -0
  2556. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/use-paths.wit +0 -0
  2557. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/variants.wit +0 -0
  2558. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/wat.wit +0 -0
  2559. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  2560. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen.rs +0 -0
  2561. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/codegen_no_std.rs +0 -0
  2562. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/direct-import.rs +0 -0
  2563. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty.rs +0 -0
  2564. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_async.rs +0 -0
  2565. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/empty_tracing_async.rs +0 -0
  2566. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new.rs +0 -0
  2567. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_async.rs +0 -0
  2568. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/function-new_tracing_async.rs +0 -0
  2569. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/host-world.rs +0 -0
  2570. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default.rs +0 -0
  2571. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_async.rs +0 -0
  2572. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  2573. /data/ext/cargo-vendor/{wasmtime-component-macro-28.0.0 → wasmtime-component-macro-29.0.0}/tests/expanded.rs +0 -0
  2574. /data/ext/cargo-vendor/{wasmtime-component-util-28.0.0 → wasmtime-component-util-29.0.0}/src/lib.rs +0 -0
  2575. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/LICENSE +0 -0
  2576. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/SECURITY.md +0 -0
  2577. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/builder.rs +0 -0
  2578. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/compiled_function.rs +0 -0
  2579. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/address_transform.rs +0 -0
  2580. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/expression.rs +0 -0
  2581. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/line_program.rs +0 -0
  2582. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  2583. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/refs.rs +0 -0
  2584. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/simulate.rs +0 -0
  2585. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/transform/synthetic.rs +0 -0
  2586. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug/write_debuginfo.rs +0 -0
  2587. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/debug.rs +0 -0
  2588. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc/disabled.rs +0 -0
  2589. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/gc.rs +0 -0
  2590. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/isa_builder.rs +0 -0
  2591. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/heap.rs +0 -0
  2592. /data/ext/cargo-vendor/{wasmtime-cranelift-28.0.0 → wasmtime-cranelift-29.0.0}/src/translate/translation_utils.rs +0 -0
  2593. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/LICENSE +0 -0
  2594. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/examples/factc.rs +0 -0
  2595. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/address_map.rs +0 -0
  2596. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/address_map.rs +0 -0
  2597. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_environ.rs +0 -0
  2598. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/module_types.rs +0 -0
  2599. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/compile/trap_encoding.rs +0 -0
  2600. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/artifacts.rs +0 -0
  2601. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/compiler.rs +0 -0
  2602. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/dfg.rs +0 -0
  2603. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/names.rs +0 -0
  2604. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/adapt.rs +0 -0
  2605. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate/inline.rs +0 -0
  2606. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/translate.rs +0 -0
  2607. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types.rs +0 -0
  2608. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder/resources.rs +0 -0
  2609. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/component/types_builder.rs +0 -0
  2610. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/error.rs +0 -0
  2611. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/core_types.rs +0 -0
  2612. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/signature.rs +0 -0
  2613. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/trampoline.rs +0 -0
  2614. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/transcode.rs +0 -0
  2615. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact/traps.rs +0 -0
  2616. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/fact.rs +0 -0
  2617. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/drc.rs +0 -0
  2618. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc/null.rs +0 -0
  2619. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/gc.rs +0 -0
  2620. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module.rs +0 -0
  2621. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/module_types.rs +0 -0
  2622. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/obj.rs +0 -0
  2623. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/prelude.rs +0 -0
  2624. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/ref_bits.rs +0 -0
  2625. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/scopevec.rs +0 -0
  2626. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/stack_map.rs +0 -0
  2627. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/trap_encoding.rs +0 -0
  2628. /data/ext/cargo-vendor/{wasmtime-environ-28.0.0 → wasmtime-environ-29.0.0}/src/types.rs +0 -0
  2629. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/LICENSE +0 -0
  2630. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/build.rs +0 -0
  2631. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/lib.rs +0 -0
  2632. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/nostd.rs +0 -0
  2633. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/aarch64.rs +0 -0
  2634. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/arm.rs +0 -0
  2635. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/riscv64.rs +0 -0
  2636. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/s390x.S +0 -0
  2637. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86.rs +0 -0
  2638. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch/x86_64.rs +0 -0
  2639. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/stackswitch.rs +0 -0
  2640. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/unix.rs +0 -0
  2641. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.c +0 -0
  2642. /data/ext/cargo-vendor/{wasmtime-fiber-28.0.0 → wasmtime-fiber-29.0.0}/src/windows.rs +0 -0
  2643. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/README.md +0 -0
  2644. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/gdb_jit_int.rs +0 -0
  2645. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/lib.rs +0 -0
  2646. /data/ext/cargo-vendor/{wasmtime-jit-debug-28.0.0 → wasmtime-jit-debug-29.0.0}/src/perf_jitdump.rs +0 -0
  2647. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/lib.rs +0 -0
  2648. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/libc.rs +0 -0
  2649. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/miri.rs +0 -0
  2650. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-28.0.0 → wasmtime-jit-icache-coherence-29.0.0}/src/win.rs +0 -0
  2651. /data/ext/cargo-vendor/{wasmtime-slab-28.0.0 → wasmtime-slab-29.0.0}/src/lib.rs +0 -0
  2652. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-28.0.0 → wasmtime-versioned-export-macros-29.0.0}/src/lib.rs +0 -0
  2653. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/LICENSE +0 -0
  2654. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/README.md +0 -0
  2655. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks/host.rs +0 -0
  2656. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/clocks.rs +0 -0
  2657. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/ctx.rs +0 -0
  2658. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/error.rs +0 -0
  2659. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/filesystem.rs +0 -0
  2660. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/clocks.rs +0 -0
  2661. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/env.rs +0 -0
  2662. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/exit.rs +0 -0
  2663. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/filesystem/sync.rs +0 -0
  2664. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/instance_network.rs +0 -0
  2665. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/mod.rs +0 -0
  2666. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/network.rs +0 -0
  2667. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/random.rs +0 -0
  2668. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/tcp_create_socket.rs +0 -0
  2669. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/host/udp_create_socket.rs +0 -0
  2670. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/lib.rs +0 -0
  2671. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/network.rs +0 -0
  2672. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview0.rs +0 -0
  2673. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/preview1.rs +0 -0
  2674. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/random.rs +0 -0
  2675. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/runtime.rs +0 -0
  2676. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
  2677. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stdio.rs +0 -0
  2678. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/stream.rs +0 -0
  2679. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/tcp.rs +0 -0
  2680. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/udp.rs +0 -0
  2681. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/src/write_stream.rs +0 -0
  2682. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/api.rs +0 -0
  2683. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/async_.rs +0 -0
  2684. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/main.rs +0 -0
  2685. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/preview1.rs +0 -0
  2686. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/all/sync.rs +0 -0
  2687. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/tests/process_stdin.rs +0 -0
  2688. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/environment.wit +0 -0
  2689. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/exit.wit +0 -0
  2690. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/run.wit +0 -0
  2691. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/cli/terminal.wit +0 -0
  2692. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  2693. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  2694. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
  2695. /data/ext/cargo-vendor/{wasmtime-wasi-28.0.0 → wasmtime-wasi-29.0.0}/witx/preview0/typenames.witx +0 -0
  2696. /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/LICENSE +0 -0
  2697. /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/compiler.rs +0 -0
  2698. /data/ext/cargo-vendor/{wasmtime-winch-28.0.0 → wasmtime-winch-29.0.0}/src/lib.rs +0 -0
  2699. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/rust.rs +0 -0
  2700. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/source.rs +0 -0
  2701. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-28.0.0 → wasmtime-wit-bindgen-29.0.0}/src/types.rs +0 -0
  2702. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/README.md +0 -0
  2703. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/alias.rs +0 -0
  2704. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/component.rs +0 -0
  2705. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/custom.rs +0 -0
  2706. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/export.rs +0 -0
  2707. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/func.rs +0 -0
  2708. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/import.rs +0 -0
  2709. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/instance.rs +0 -0
  2710. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/item_ref.rs +0 -0
  2711. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/module.rs +0 -0
  2712. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component/wast.rs +0 -0
  2713. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component.rs +0 -0
  2714. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/component_disabled.rs +0 -0
  2715. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf.rs +0 -0
  2716. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  2717. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/binary.rs +0 -0
  2718. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/custom.rs +0 -0
  2719. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/export.rs +0 -0
  2720. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/expr.rs +0 -0
  2721. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/func.rs +0 -0
  2722. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/global.rs +0 -0
  2723. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/import.rs +0 -0
  2724. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/memory.rs +0 -0
  2725. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/module.rs +0 -0
  2726. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
  2727. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/mod.rs +0 -0
  2728. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/names.rs +0 -0
  2729. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/resolve/types.rs +0 -0
  2730. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/table.rs +0 -0
  2731. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/tag.rs +0 -0
  2732. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/types.rs +0 -0
  2733. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core/wast.rs +0 -0
  2734. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/core.rs +0 -0
  2735. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/encode.rs +0 -0
  2736. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/error.rs +0 -0
  2737. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/gensym.rs +0 -0
  2738. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lexer.rs +0 -0
  2739. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/lib.rs +0 -0
  2740. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/names.rs +0 -0
  2741. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/parser.rs +0 -0
  2742. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/token.rs +0 -0
  2743. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wast.rs +0 -0
  2744. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/src/wat.rs +0 -0
  2745. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/annotations.rs +0 -0
  2746. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/comments.rs +0 -0
  2747. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  2748. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  2749. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  2750. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  2751. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat +0 -0
  2752. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  2753. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat +0 -0
  2754. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  2755. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  2756. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  2757. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  2758. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  2759. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat +0 -0
  2760. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block1.wat.err +0 -0
  2761. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat +0 -0
  2762. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block2.wat.err +0 -0
  2763. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat +0 -0
  2764. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/block3.wat.err +0 -0
  2765. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  2766. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  2767. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  2768. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  2769. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  2770. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  2771. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  2772. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  2773. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  2774. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  2775. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  2776. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  2777. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  2778. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  2779. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  2780. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  2781. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  2782. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  2783. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  2784. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  2785. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  2786. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  2787. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  2788. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  2789. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  2790. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  2791. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  2792. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  2793. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  2794. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  2795. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  2796. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  2797. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  2798. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  2799. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  2800. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  2801. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  2802. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  2803. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  2804. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  2805. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  2806. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  2807. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  2808. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  2809. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  2810. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  2811. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  2812. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  2813. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  2814. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  2815. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  2816. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  2817. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  2818. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  2819. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat +0 -0
  2820. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  2821. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  2822. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  2823. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat +0 -0
  2824. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string1.wat.err +0 -0
  2825. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat +0 -0
  2826. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string10.wat.err +0 -0
  2827. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat +0 -0
  2828. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string11.wat.err +0 -0
  2829. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat +0 -0
  2830. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string12.wat.err +0 -0
  2831. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat +0 -0
  2832. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string13.wat.err +0 -0
  2833. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat +0 -0
  2834. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string14.wat.err +0 -0
  2835. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat +0 -0
  2836. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string15.wat.err +0 -0
  2837. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat +0 -0
  2838. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string16.wat.err +0 -0
  2839. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat +0 -0
  2840. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string2.wat.err +0 -0
  2841. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat +0 -0
  2842. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string3.wat.err +0 -0
  2843. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat +0 -0
  2844. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string4.wat.err +0 -0
  2845. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat +0 -0
  2846. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string5.wat.err +0 -0
  2847. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat +0 -0
  2848. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string6.wat.err +0 -0
  2849. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat +0 -0
  2850. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string7.wat.err +0 -0
  2851. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat +0 -0
  2852. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string8.wat.err +0 -0
  2853. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat +0 -0
  2854. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/string9.wat.err +0 -0
  2855. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  2856. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  2857. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/parse-fail.rs +0 -0
  2858. /data/ext/cargo-vendor/{wast-223.0.0 → wast-224.0.0}/tests/recursive.rs +0 -0
  2859. /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/README.md +0 -0
  2860. /data/ext/cargo-vendor/{wat-1.223.0 → wat-1.224.0}/src/lib.rs +0 -0
  2861. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/LICENSE +0 -0
  2862. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/README.md +0 -0
  2863. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/error.rs +0 -0
  2864. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/guest_type.rs +0 -0
  2865. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/lib.rs +0 -0
  2866. /data/ext/cargo-vendor/{wiggle-28.0.0 → wiggle-29.0.0}/src/region.rs +0 -0
  2867. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/LICENSE +0 -0
  2868. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/README.md +0 -0
  2869. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/codegen_settings.rs +0 -0
  2870. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/config.rs +0 -0
  2871. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/funcs.rs +0 -0
  2872. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lib.rs +0 -0
  2873. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/lifetimes.rs +0 -0
  2874. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/module_trait.rs +0 -0
  2875. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/names.rs +0 -0
  2876. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/error.rs +0 -0
  2877. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/flags.rs +0 -0
  2878. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/handle.rs +0 -0
  2879. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/mod.rs +0 -0
  2880. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/record.rs +0 -0
  2881. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/types/variant.rs +0 -0
  2882. /data/ext/cargo-vendor/{wiggle-generate-28.0.0 → wiggle-generate-29.0.0}/src/wasmtime.rs +0 -0
  2883. /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/LICENSE +0 -0
  2884. /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/build.rs +0 -0
  2885. /data/ext/cargo-vendor/{wiggle-macro-28.0.0 → wiggle-macro-29.0.0}/src/lib.rs +0 -0
  2886. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/LICENSE +0 -0
  2887. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/build.rs +0 -0
  2888. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/abi/local.rs +0 -0
  2889. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/env.rs +0 -0
  2890. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/codegen/phase.rs +0 -0
  2891. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/address.rs +0 -0
  2892. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/aarch64/regs.rs +0 -0
  2893. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/reg.rs +0 -0
  2894. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/address.rs +0 -0
  2895. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/isa/x64/regs.rs +0 -0
  2896. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/lib.rs +0 -0
  2897. /data/ext/cargo-vendor/{winch-codegen-28.0.0 → winch-codegen-29.0.0}/src/regset.rs +0 -0
  2898. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/LICENSE-MIT +0 -0
  2899. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/README.md +0 -0
  2900. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/contains_token.rs +0 -0
  2901. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/find_slice.rs +0 -0
  2902. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/iter.rs +0 -0
  2903. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/next_slice.rs +0 -0
  2904. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/benches/number.rs +0 -0
  2905. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/bench.rs +0 -0
  2906. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/main.rs +0 -0
  2907. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser.rs +0 -0
  2908. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_ast.rs +0 -0
  2909. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/arithmetic/parser_lexer.rs +0 -0
  2910. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/main.rs +0 -0
  2911. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/css/parser.rs +0 -0
  2912. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/custom_error.rs +0 -0
  2913. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/bench.rs +0 -0
  2914. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/main.rs +0 -0
  2915. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser.rs +0 -0
  2916. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/http/parser_streaming.rs +0 -0
  2917. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/bench.rs +0 -0
  2918. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/main.rs +0 -0
  2919. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser.rs +0 -0
  2920. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ini/parser_str.rs +0 -0
  2921. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/iterator.rs +0 -0
  2922. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/bench.rs +0 -0
  2923. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/json.rs +0 -0
  2924. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/main.rs +0 -0
  2925. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser.rs +0 -0
  2926. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json/parser_dispatch.rs +0 -0
  2927. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/json_iterator.rs +0 -0
  2928. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/example.ndjson +0 -0
  2929. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/main.rs +0 -0
  2930. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/ndjson/parser.rs +0 -0
  2931. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/main.rs +0 -0
  2932. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/s_expression/parser.rs +0 -0
  2933. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/main.rs +0 -0
  2934. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/examples/string/parser.rs +0 -0
  2935. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/arithmetic.rs +0 -0
  2936. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/error.rs +0 -0
  2937. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/fromstr.rs +0 -0
  2938. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/http.rs +0 -0
  2939. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/ini.rs +0 -0
  2940. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/json.rs +0 -0
  2941. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/language.rs +0 -0
  2942. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/mod.rs +0 -0
  2943. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/partial.rs +0 -0
  2944. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/performance.rs +0 -0
  2945. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_topic/s_expression.rs +0 -0
  2946. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_0.rs +0 -0
  2947. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_1.rs +0 -0
  2948. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_2.rs +0 -0
  2949. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_3.rs +0 -0
  2950. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_4.rs +0 -0
  2951. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_5.rs +0 -0
  2952. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_6.rs +0 -0
  2953. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_7.rs +0 -0
  2954. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/chapter_8.rs +0 -0
  2955. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/_tutorial/mod.rs +0 -0
  2956. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/ascii/tests.rs +0 -0
  2957. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/mod.rs +0 -0
  2958. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/binary/tests.rs +0 -0
  2959. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/branch.rs +0 -0
  2960. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/internals.rs +0 -0
  2961. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/debug/mod.rs +0 -0
  2962. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/combinator/sequence.rs +0 -0
  2963. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/dispatch.rs +0 -0
  2964. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/macros/seq.rs +0 -0
  2965. /data/ext/cargo-vendor/{winnow-0.6.22/src/macros/test.rs → winnow-0.6.24/src/macros/tests.rs} +0 -0
  2966. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/impls.rs +0 -0
  2967. /data/ext/cargo-vendor/{winnow-0.6.22 → winnow-0.6.24}/src/stream/tests.rs +0 -0
@@ -1,4090 +0,0 @@
1
- //! This module contains the bulk of the interesting code performing the translation between
2
- //! WebAssembly and Cranelift IR.
3
- //!
4
- //! The translation is done in one pass, opcode by opcode. Two main data structures are used during
5
- //! code translations: the value stack and the control stack. The value stack mimics the execution
6
- //! of the WebAssembly stack machine: each instruction result is pushed onto the stack and
7
- //! instruction arguments are popped off the stack. Similarly, when encountering a control flow
8
- //! block, it is pushed onto the control stack and popped off when encountering the corresponding
9
- //! `End`.
10
- //!
11
- //! Another data structure, the translation state, records information concerning unreachable code
12
- //! status and about if inserting a return at the end of the function is necessary.
13
- //!
14
- //! Some of the WebAssembly instructions need information about the environment for which they
15
- //! are being translated:
16
- //!
17
- //! - the loads and stores need the memory base address;
18
- //! - the `get_global` and `set_global` instructions depend on how the globals are implemented;
19
- //! - `memory.size` and `memory.grow` are runtime functions;
20
- //! - `call_indirect` has to translate the function index into the address of where this
21
- //! is;
22
- //!
23
- //! That is why `translate_function_body` takes an object having the `WasmRuntime` trait as
24
- //! argument.
25
- //!
26
- //! There is extra complexity associated with translation of 128-bit SIMD instructions.
27
- //! Wasm only considers there to be a single 128-bit vector type. But CLIF's type system
28
- //! distinguishes different lane configurations, so considers 8X16, 16X8, 32X4 and 64X2 to be
29
- //! different types. The result is that, in wasm, it's perfectly OK to take the output of (eg)
30
- //! an `add.16x8` and use that as an operand of a `sub.32x4`, without using any cast. But when
31
- //! translated into CLIF, that will cause a verifier error due to the apparent type mismatch.
32
- //!
33
- //! This file works around that problem by liberally inserting `bitcast` instructions in many
34
- //! places -- mostly, before the use of vector values, either as arguments to CLIF instructions
35
- //! or as block actual parameters. These are no-op casts which nevertheless have different
36
- //! input and output types, and are used (mostly) to "convert" 16X8, 32X4 and 64X2-typed vectors
37
- //! to the "canonical" type, 8X16. Hence the functions `optionally_bitcast_vector`,
38
- //! `bitcast_arguments`, `pop*_with_bitcast`, `canonicalise_then_jump`,
39
- //! `canonicalise_then_br{z,nz}`, `is_non_canonical_v128` and `canonicalise_v128_values`.
40
- //! Note that the `bitcast*` functions are occasionally used to convert to some type other than
41
- //! 8X16, but the `canonicalise*` functions always convert to type 8X16.
42
- //!
43
- //! Be careful when adding support for new vector instructions. And when adding new jumps, even
44
- //! if they are apparently don't have any connection to vectors. Never generate any kind of
45
- //! (inter-block) jump directly. Instead use `canonicalise_then_jump` and
46
- //! `canonicalise_then_br{z,nz}`.
47
- //!
48
- //! The use of bitcasts is ugly and inefficient, but currently unavoidable:
49
- //!
50
- //! * they make the logic in this file fragile: miss out a bitcast for any reason, and there is
51
- //! the risk of the system failing in the verifier. At least for debug builds.
52
- //!
53
- //! * in the new backends, they potentially interfere with pattern matching on CLIF -- the
54
- //! patterns need to take into account the presence of bitcast nodes.
55
- //!
56
- //! * in the new backends, they get translated into machine-level vector-register-copy
57
- //! instructions, none of which are actually necessary. We then depend on the register
58
- //! allocator to coalesce them all out.
59
- //!
60
- //! * they increase the total number of CLIF nodes that have to be processed, hence slowing down
61
- //! the compilation pipeline. Also, the extra coalescing work generates a slowdown.
62
- //!
63
- //! A better solution which would avoid all four problems would be to remove the 8X16, 16X8,
64
- //! 32X4 and 64X2 types from CLIF and instead have a single V128 type.
65
- //!
66
- //! For further background see also:
67
- //! <https://github.com/bytecodealliance/wasmtime/issues/1147>
68
- //! ("Too many raw_bitcasts in SIMD code")
69
- //! <https://github.com/bytecodealliance/cranelift/pull/1251>
70
- //! ("Add X128 type to represent WebAssembly's V128 type")
71
- //! <https://github.com/bytecodealliance/cranelift/pull/1236>
72
- //! ("Relax verification to allow I8X16 to act as a default vector type")
73
-
74
- mod bounds_checks;
75
-
76
- use crate::translate::environ::{FuncEnvironment, GlobalVariable, StructFieldsVec};
77
- use crate::translate::state::{ControlStackFrame, ElseData, FuncTranslationState};
78
- use crate::translate::translation_utils::{
79
- block_with_params, blocktype_params_results, f32_translation, f64_translation,
80
- };
81
- use cranelift_codegen::ir::condcodes::{FloatCC, IntCC};
82
- use cranelift_codegen::ir::immediates::Offset32;
83
- use cranelift_codegen::ir::types::*;
84
- use cranelift_codegen::ir::{
85
- self, AtomicRmwOp, ConstantData, InstBuilder, JumpTableData, MemFlags, Value, ValueLabel,
86
- };
87
- use cranelift_codegen::packed_option::ReservedValue;
88
- use cranelift_frontend::{FunctionBuilder, Variable};
89
- use itertools::Itertools;
90
- use smallvec::SmallVec;
91
- use std::collections::{hash_map, HashMap};
92
- use std::vec::Vec;
93
- use wasmparser::{FuncValidator, MemArg, Operator, WasmModuleResources};
94
- use wasmtime_environ::{
95
- wasm_unsupported, DataIndex, ElemIndex, FuncIndex, GlobalIndex, MemoryIndex, Signed,
96
- TableIndex, TypeIndex, Unsigned, WasmRefType, WasmResult,
97
- };
98
-
99
- /// Given a `Reachability<T>`, unwrap the inner `T` or, when unreachable, set
100
- /// `state.reachable = false` and return.
101
- ///
102
- /// Used in combination with calling `prepare_addr` and `prepare_atomic_addr`
103
- /// when we can statically determine that a Wasm access will unconditionally
104
- /// trap.
105
- macro_rules! unwrap_or_return_unreachable_state {
106
- ($state:ident, $value:expr) => {
107
- match $value {
108
- Reachability::Reachable(x) => x,
109
- Reachability::Unreachable => {
110
- $state.reachable = false;
111
- return Ok(());
112
- }
113
- }
114
- };
115
- }
116
-
117
- /// Translates wasm operators into Cranelift IR instructions.
118
- pub fn translate_operator<FE: FuncEnvironment + ?Sized>(
119
- validator: &mut FuncValidator<impl WasmModuleResources>,
120
- op: &Operator,
121
- builder: &mut FunctionBuilder,
122
- state: &mut FuncTranslationState,
123
- environ: &mut FE,
124
- ) -> WasmResult<()> {
125
- if !state.reachable {
126
- translate_unreachable_operator(validator, &op, builder, state, environ)?;
127
- return Ok(());
128
- }
129
-
130
- // Given that we believe the current block is reachable, the FunctionBuilder ought to agree.
131
- debug_assert!(!builder.is_unreachable());
132
-
133
- // This big match treats all Wasm code operators.
134
- match op {
135
- /********************************** Locals ****************************************
136
- * `get_local` and `set_local` are treated as non-SSA variables and will completely
137
- * disappear in the Cranelift Code
138
- ***********************************************************************************/
139
- Operator::LocalGet { local_index } => {
140
- let val = builder.use_var(Variable::from_u32(*local_index));
141
- state.push1(val);
142
- let label = ValueLabel::from_u32(*local_index);
143
- builder.set_val_label(val, label);
144
- }
145
- Operator::LocalSet { local_index } => {
146
- let mut val = state.pop1();
147
-
148
- // Ensure SIMD values are cast to their default Cranelift type, I8x16.
149
- let ty = builder.func.dfg.value_type(val);
150
- if ty.is_vector() {
151
- val = optionally_bitcast_vector(val, I8X16, builder);
152
- }
153
-
154
- builder.def_var(Variable::from_u32(*local_index), val);
155
- let label = ValueLabel::from_u32(*local_index);
156
- builder.set_val_label(val, label);
157
- }
158
- Operator::LocalTee { local_index } => {
159
- let mut val = state.peek1();
160
-
161
- // Ensure SIMD values are cast to their default Cranelift type, I8x16.
162
- let ty = builder.func.dfg.value_type(val);
163
- if ty.is_vector() {
164
- val = optionally_bitcast_vector(val, I8X16, builder);
165
- }
166
-
167
- builder.def_var(Variable::from_u32(*local_index), val);
168
- let label = ValueLabel::from_u32(*local_index);
169
- builder.set_val_label(val, label);
170
- }
171
- /********************************** Globals ****************************************
172
- * `get_global` and `set_global` are handled by the environment.
173
- ***********************************************************************************/
174
- Operator::GlobalGet { global_index } => {
175
- let val = match state.get_global(builder.func, *global_index, environ)? {
176
- GlobalVariable::Memory { gv, offset, ty } => {
177
- let addr = builder.ins().global_value(environ.pointer_type(), gv);
178
- let mut flags = ir::MemFlags::trusted();
179
- // Put globals in the "table" abstract heap category as well.
180
- flags.set_alias_region(Some(ir::AliasRegion::Table));
181
- builder.ins().load(ty, flags, addr, offset)
182
- }
183
- GlobalVariable::Custom => environ
184
- .translate_custom_global_get(builder, GlobalIndex::from_u32(*global_index))?,
185
- };
186
- state.push1(val);
187
- }
188
- Operator::GlobalSet { global_index } => {
189
- match state.get_global(builder.func, *global_index, environ)? {
190
- GlobalVariable::Memory { gv, offset, ty } => {
191
- let addr = builder.ins().global_value(environ.pointer_type(), gv);
192
- let mut flags = ir::MemFlags::trusted();
193
- // Put globals in the "table" abstract heap category as well.
194
- flags.set_alias_region(Some(ir::AliasRegion::Table));
195
- let mut val = state.pop1();
196
- // Ensure SIMD values are cast to their default Cranelift type, I8x16.
197
- if ty.is_vector() {
198
- val = optionally_bitcast_vector(val, I8X16, builder);
199
- }
200
- debug_assert_eq!(ty, builder.func.dfg.value_type(val));
201
- builder.ins().store(flags, val, addr, offset);
202
- environ.update_global(builder, *global_index, val);
203
- }
204
- GlobalVariable::Custom => {
205
- let val = state.pop1();
206
- environ.translate_custom_global_set(
207
- builder,
208
- GlobalIndex::from_u32(*global_index),
209
- val,
210
- )?;
211
- }
212
- }
213
- }
214
- /********************************* Stack misc ***************************************
215
- * `drop`, `nop`, `unreachable` and `select`.
216
- ***********************************************************************************/
217
- Operator::Drop => {
218
- state.pop1();
219
- }
220
- Operator::Select => {
221
- let (mut arg1, mut arg2, cond) = state.pop3();
222
- if builder.func.dfg.value_type(arg1).is_vector() {
223
- arg1 = optionally_bitcast_vector(arg1, I8X16, builder);
224
- }
225
- if builder.func.dfg.value_type(arg2).is_vector() {
226
- arg2 = optionally_bitcast_vector(arg2, I8X16, builder);
227
- }
228
- state.push1(builder.ins().select(cond, arg1, arg2));
229
- }
230
- Operator::TypedSelect { ty: _ } => {
231
- // We ignore the explicit type parameter as it is only needed for
232
- // validation, which we require to have been performed before
233
- // translation.
234
- let (mut arg1, mut arg2, cond) = state.pop3();
235
- if builder.func.dfg.value_type(arg1).is_vector() {
236
- arg1 = optionally_bitcast_vector(arg1, I8X16, builder);
237
- }
238
- if builder.func.dfg.value_type(arg2).is_vector() {
239
- arg2 = optionally_bitcast_vector(arg2, I8X16, builder);
240
- }
241
- state.push1(builder.ins().select(cond, arg1, arg2));
242
- }
243
- Operator::Nop => {
244
- // We do nothing
245
- }
246
- Operator::Unreachable => {
247
- environ.trap(builder, crate::TRAP_UNREACHABLE);
248
- state.reachable = false;
249
- }
250
- /***************************** Control flow blocks **********************************
251
- * When starting a control flow block, we create a new `Block` that will hold the code
252
- * after the block, and we push a frame on the control stack. Depending on the type
253
- * of block, we create a new `Block` for the body of the block with an associated
254
- * jump instruction.
255
- *
256
- * The `End` instruction pops the last control frame from the control stack, seals
257
- * the destination block (since `br` instructions targeting it only appear inside the
258
- * block and have already been translated) and modify the value stack to use the
259
- * possible `Block`'s arguments values.
260
- ***********************************************************************************/
261
- Operator::Block { blockty } => {
262
- let (params, results) = blocktype_params_results(validator, *blockty)?;
263
- let next = block_with_params(builder, results.clone(), environ)?;
264
- state.push_block(next, params.len(), results.len());
265
- }
266
- Operator::Loop { blockty } => {
267
- let (params, results) = blocktype_params_results(validator, *blockty)?;
268
- let loop_body = block_with_params(builder, params.clone(), environ)?;
269
- let next = block_with_params(builder, results.clone(), environ)?;
270
- canonicalise_then_jump(builder, loop_body, state.peekn(params.len()));
271
- state.push_loop(loop_body, next, params.len(), results.len());
272
-
273
- // Pop the initial `Block` actuals and replace them with the `Block`'s
274
- // params since control flow joins at the top of the loop.
275
- state.popn(params.len());
276
- state
277
- .stack
278
- .extend_from_slice(builder.block_params(loop_body));
279
-
280
- builder.switch_to_block(loop_body);
281
- environ.translate_loop_header(builder)?;
282
- }
283
- Operator::If { blockty } => {
284
- let val = state.pop1();
285
-
286
- let next_block = builder.create_block();
287
- let (params, results) = blocktype_params_results(validator, *blockty)?;
288
- let (destination, else_data) = if params.clone().eq(results.clone()) {
289
- // It is possible there is no `else` block, so we will only
290
- // allocate a block for it if/when we find the `else`. For now,
291
- // we if the condition isn't true, then we jump directly to the
292
- // destination block following the whole `if...end`. If we do end
293
- // up discovering an `else`, then we will allocate a block for it
294
- // and go back and patch the jump.
295
- let destination = block_with_params(builder, results.clone(), environ)?;
296
- let branch_inst = canonicalise_brif(
297
- builder,
298
- val,
299
- next_block,
300
- &[],
301
- destination,
302
- state.peekn(params.len()),
303
- );
304
- (
305
- destination,
306
- ElseData::NoElse {
307
- branch_inst,
308
- placeholder: destination,
309
- },
310
- )
311
- } else {
312
- // The `if` type signature is not valid without an `else` block,
313
- // so we eagerly allocate the `else` block here.
314
- let destination = block_with_params(builder, results.clone(), environ)?;
315
- let else_block = block_with_params(builder, params.clone(), environ)?;
316
- canonicalise_brif(
317
- builder,
318
- val,
319
- next_block,
320
- &[],
321
- else_block,
322
- state.peekn(params.len()),
323
- );
324
- builder.seal_block(else_block);
325
- (destination, ElseData::WithElse { else_block })
326
- };
327
-
328
- builder.seal_block(next_block); // Only predecessor is the current block.
329
- builder.switch_to_block(next_block);
330
-
331
- // Here we append an argument to a Block targeted by an argumentless jump instruction
332
- // But in fact there are two cases:
333
- // - either the If does not have a Else clause, in that case ty = EmptyBlock
334
- // and we add nothing;
335
- // - either the If have an Else clause, in that case the destination of this jump
336
- // instruction will be changed later when we translate the Else operator.
337
- state.push_if(
338
- destination,
339
- else_data,
340
- params.len(),
341
- results.len(),
342
- *blockty,
343
- );
344
- }
345
- Operator::Else => {
346
- let i = state.control_stack.len() - 1;
347
- match state.control_stack[i] {
348
- ControlStackFrame::If {
349
- ref else_data,
350
- head_is_reachable,
351
- ref mut consequent_ends_reachable,
352
- num_return_values,
353
- blocktype,
354
- destination,
355
- ..
356
- } => {
357
- // We finished the consequent, so record its final
358
- // reachability state.
359
- debug_assert!(consequent_ends_reachable.is_none());
360
- *consequent_ends_reachable = Some(state.reachable);
361
-
362
- if head_is_reachable {
363
- // We have a branch from the head of the `if` to the `else`.
364
- state.reachable = true;
365
-
366
- // Ensure we have a block for the `else` block (it may have
367
- // already been pre-allocated, see `ElseData` for details).
368
- let else_block = match *else_data {
369
- ElseData::NoElse {
370
- branch_inst,
371
- placeholder,
372
- } => {
373
- let (params, _results) =
374
- blocktype_params_results(validator, blocktype)?;
375
- debug_assert_eq!(params.len(), num_return_values);
376
- let else_block =
377
- block_with_params(builder, params.clone(), environ)?;
378
- canonicalise_then_jump(
379
- builder,
380
- destination,
381
- state.peekn(params.len()),
382
- );
383
- state.popn(params.len());
384
-
385
- builder.change_jump_destination(
386
- branch_inst,
387
- placeholder,
388
- else_block,
389
- );
390
- builder.seal_block(else_block);
391
- else_block
392
- }
393
- ElseData::WithElse { else_block } => {
394
- canonicalise_then_jump(
395
- builder,
396
- destination,
397
- state.peekn(num_return_values),
398
- );
399
- state.popn(num_return_values);
400
- else_block
401
- }
402
- };
403
-
404
- // You might be expecting that we push the parameters for this
405
- // `else` block here, something like this:
406
- //
407
- // state.pushn(&control_stack_frame.params);
408
- //
409
- // We don't do that because they are already on the top of the stack
410
- // for us: we pushed the parameters twice when we saw the initial
411
- // `if` so that we wouldn't have to save the parameters in the
412
- // `ControlStackFrame` as another `Vec` allocation.
413
-
414
- builder.switch_to_block(else_block);
415
-
416
- // We don't bother updating the control frame's `ElseData`
417
- // to `WithElse` because nothing else will read it.
418
- }
419
- }
420
- _ => unreachable!(),
421
- }
422
- }
423
- Operator::End => {
424
- let frame = state.control_stack.pop().unwrap();
425
- let next_block = frame.following_code();
426
- let return_count = frame.num_return_values();
427
- let return_args = state.peekn_mut(return_count);
428
-
429
- canonicalise_then_jump(builder, next_block, return_args);
430
- // You might expect that if we just finished an `if` block that
431
- // didn't have a corresponding `else` block, then we would clean
432
- // up our duplicate set of parameters that we pushed earlier
433
- // right here. However, we don't have to explicitly do that,
434
- // since we truncate the stack back to the original height
435
- // below.
436
-
437
- builder.switch_to_block(next_block);
438
- builder.seal_block(next_block);
439
-
440
- // If it is a loop we also have to seal the body loop block
441
- if let ControlStackFrame::Loop { header, .. } = frame {
442
- builder.seal_block(header)
443
- }
444
-
445
- frame.truncate_value_stack_to_original_size(&mut state.stack);
446
- state
447
- .stack
448
- .extend_from_slice(builder.block_params(next_block));
449
- }
450
- /**************************** Branch instructions *********************************
451
- * The branch instructions all have as arguments a target nesting level, which
452
- * corresponds to how many control stack frames do we have to pop to get the
453
- * destination `Block`.
454
- *
455
- * Once the destination `Block` is found, we sometimes have to declare a certain depth
456
- * of the stack unreachable, because some branch instructions are terminator.
457
- *
458
- * The `br_table` case is much more complicated because Cranelift's `br_table` instruction
459
- * does not support jump arguments like all the other branch instructions. That is why, in
460
- * the case where we would use jump arguments for every other branch instruction, we
461
- * need to split the critical edges leaving the `br_tables` by creating one `Block` per
462
- * table destination; the `br_table` will point to these newly created `Blocks` and these
463
- * `Block`s contain only a jump instruction pointing to the final destination, this time with
464
- * jump arguments.
465
- *
466
- * This system is also implemented in Cranelift's SSA construction algorithm, because
467
- * `use_var` located in a destination `Block` of a `br_table` might trigger the addition
468
- * of jump arguments in each predecessor branch instruction, one of which might be a
469
- * `br_table`.
470
- ***********************************************************************************/
471
- Operator::Br { relative_depth } => {
472
- let i = state.control_stack.len() - 1 - (*relative_depth as usize);
473
- let (return_count, br_destination) = {
474
- let frame = &mut state.control_stack[i];
475
- // We signal that all the code that follows until the next End is unreachable
476
- frame.set_branched_to_exit();
477
- let return_count = if frame.is_loop() {
478
- frame.num_param_values()
479
- } else {
480
- frame.num_return_values()
481
- };
482
- (return_count, frame.br_destination())
483
- };
484
- let destination_args = state.peekn_mut(return_count);
485
- canonicalise_then_jump(builder, br_destination, destination_args);
486
- state.popn(return_count);
487
- state.reachable = false;
488
- }
489
- Operator::BrIf { relative_depth } => translate_br_if(*relative_depth, builder, state),
490
- Operator::BrTable { targets } => {
491
- let default = targets.default();
492
- let mut min_depth = default;
493
- for depth in targets.targets() {
494
- let depth = depth?;
495
- if depth < min_depth {
496
- min_depth = depth;
497
- }
498
- }
499
- let jump_args_count = {
500
- let i = state.control_stack.len() - 1 - (min_depth as usize);
501
- let min_depth_frame = &state.control_stack[i];
502
- if min_depth_frame.is_loop() {
503
- min_depth_frame.num_param_values()
504
- } else {
505
- min_depth_frame.num_return_values()
506
- }
507
- };
508
- let val = state.pop1();
509
- let mut data = Vec::with_capacity(targets.len() as usize);
510
- if jump_args_count == 0 {
511
- // No jump arguments
512
- for depth in targets.targets() {
513
- let depth = depth?;
514
- let block = {
515
- let i = state.control_stack.len() - 1 - (depth as usize);
516
- let frame = &mut state.control_stack[i];
517
- frame.set_branched_to_exit();
518
- frame.br_destination()
519
- };
520
- data.push(builder.func.dfg.block_call(block, &[]));
521
- }
522
- let block = {
523
- let i = state.control_stack.len() - 1 - (default as usize);
524
- let frame = &mut state.control_stack[i];
525
- frame.set_branched_to_exit();
526
- frame.br_destination()
527
- };
528
- let block = builder.func.dfg.block_call(block, &[]);
529
- let jt = builder.create_jump_table(JumpTableData::new(block, &data));
530
- builder.ins().br_table(val, jt);
531
- } else {
532
- // Here we have jump arguments, but Cranelift's br_table doesn't support them
533
- // We then proceed to split the edges going out of the br_table
534
- let return_count = jump_args_count;
535
- let mut dest_block_sequence = vec![];
536
- let mut dest_block_map = HashMap::new();
537
- for depth in targets.targets() {
538
- let depth = depth?;
539
- let branch_block = match dest_block_map.entry(depth as usize) {
540
- hash_map::Entry::Occupied(entry) => *entry.get(),
541
- hash_map::Entry::Vacant(entry) => {
542
- let block = builder.create_block();
543
- dest_block_sequence.push((depth as usize, block));
544
- *entry.insert(block)
545
- }
546
- };
547
- data.push(builder.func.dfg.block_call(branch_block, &[]));
548
- }
549
- let default_branch_block = match dest_block_map.entry(default as usize) {
550
- hash_map::Entry::Occupied(entry) => *entry.get(),
551
- hash_map::Entry::Vacant(entry) => {
552
- let block = builder.create_block();
553
- dest_block_sequence.push((default as usize, block));
554
- *entry.insert(block)
555
- }
556
- };
557
- let default_branch_block = builder.func.dfg.block_call(default_branch_block, &[]);
558
- let jt = builder.create_jump_table(JumpTableData::new(default_branch_block, &data));
559
- builder.ins().br_table(val, jt);
560
- for (depth, dest_block) in dest_block_sequence {
561
- builder.switch_to_block(dest_block);
562
- builder.seal_block(dest_block);
563
- let real_dest_block = {
564
- let i = state.control_stack.len() - 1 - depth;
565
- let frame = &mut state.control_stack[i];
566
- frame.set_branched_to_exit();
567
- frame.br_destination()
568
- };
569
- let destination_args = state.peekn_mut(return_count);
570
- canonicalise_then_jump(builder, real_dest_block, destination_args);
571
- }
572
- state.popn(return_count);
573
- }
574
- state.reachable = false;
575
- }
576
- Operator::Return => {
577
- let return_count = {
578
- let frame = &mut state.control_stack[0];
579
- frame.num_return_values()
580
- };
581
- {
582
- let return_args = state.peekn_mut(return_count);
583
- environ.handle_before_return(&return_args, builder);
584
- bitcast_wasm_returns(environ, return_args, builder);
585
- builder.ins().return_(return_args);
586
- }
587
- state.popn(return_count);
588
- state.reachable = false;
589
- }
590
- /********************************** Exception handing **********************************/
591
- Operator::Try { .. }
592
- | Operator::Catch { .. }
593
- | Operator::Throw { .. }
594
- | Operator::Rethrow { .. }
595
- | Operator::Delegate { .. }
596
- | Operator::CatchAll => {
597
- return Err(wasm_unsupported!(
598
- "proposed exception handling operator {:?}",
599
- op
600
- ));
601
- }
602
- /************************************ Calls ****************************************
603
- * The call instructions pop off their arguments from the stack and append their
604
- * return values to it. `call_indirect` needs environment support because there is an
605
- * argument referring to an index in the external functions table of the module.
606
- ************************************************************************************/
607
- Operator::Call { function_index } => {
608
- let (fref, num_args) = state.get_direct_func(builder.func, *function_index, environ)?;
609
-
610
- // Bitcast any vector arguments to their default type, I8X16, before calling.
611
- let args = state.peekn_mut(num_args);
612
- bitcast_wasm_params(
613
- environ,
614
- builder.func.dfg.ext_funcs[fref].signature,
615
- args,
616
- builder,
617
- );
618
-
619
- let call = environ.translate_call(
620
- builder,
621
- FuncIndex::from_u32(*function_index),
622
- fref,
623
- args,
624
- )?;
625
- let inst_results = builder.inst_results(call);
626
- debug_assert_eq!(
627
- inst_results.len(),
628
- builder.func.dfg.signatures[builder.func.dfg.ext_funcs[fref].signature]
629
- .returns
630
- .len(),
631
- "translate_call results should match the call signature"
632
- );
633
- state.popn(num_args);
634
- state.pushn(inst_results);
635
- }
636
- Operator::CallIndirect {
637
- type_index,
638
- table_index,
639
- } => {
640
- // `type_index` is the index of the function's signature and
641
- // `table_index` is the index of the table to search the function
642
- // in.
643
- let (sigref, num_args) = state.get_indirect_sig(builder.func, *type_index, environ)?;
644
- let callee = state.pop1();
645
-
646
- // Bitcast any vector arguments to their default type, I8X16, before calling.
647
- let args = state.peekn_mut(num_args);
648
- bitcast_wasm_params(environ, sigref, args, builder);
649
-
650
- let call = environ.translate_call_indirect(
651
- builder,
652
- validator.features(),
653
- TableIndex::from_u32(*table_index),
654
- TypeIndex::from_u32(*type_index),
655
- sigref,
656
- callee,
657
- state.peekn(num_args),
658
- )?;
659
- let call = match call {
660
- Some(call) => call,
661
- None => {
662
- state.reachable = false;
663
- return Ok(());
664
- }
665
- };
666
- let inst_results = builder.inst_results(call);
667
- debug_assert_eq!(
668
- inst_results.len(),
669
- builder.func.dfg.signatures[sigref].returns.len(),
670
- "translate_call_indirect results should match the call signature"
671
- );
672
- state.popn(num_args);
673
- state.pushn(inst_results);
674
- }
675
- /******************************* Tail Calls ******************************************
676
- * The tail call instructions pop their arguments from the stack and
677
- * then permanently transfer control to their callee. The indirect
678
- * version requires environment support (while the direct version can
679
- * optionally be hooked but doesn't require it) it interacts with the
680
- * VM's runtime state via tables.
681
- ************************************************************************************/
682
- Operator::ReturnCall { function_index } => {
683
- let (fref, num_args) = state.get_direct_func(builder.func, *function_index, environ)?;
684
-
685
- // Bitcast any vector arguments to their default type, I8X16, before calling.
686
- let args = state.peekn_mut(num_args);
687
- bitcast_wasm_params(
688
- environ,
689
- builder.func.dfg.ext_funcs[fref].signature,
690
- args,
691
- builder,
692
- );
693
-
694
- environ.translate_return_call(
695
- builder,
696
- FuncIndex::from_u32(*function_index),
697
- fref,
698
- args,
699
- )?;
700
-
701
- state.popn(num_args);
702
- state.reachable = false;
703
- }
704
- Operator::ReturnCallIndirect {
705
- type_index,
706
- table_index,
707
- } => {
708
- // `type_index` is the index of the function's signature and
709
- // `table_index` is the index of the table to search the function
710
- // in.
711
- let (sigref, num_args) = state.get_indirect_sig(builder.func, *type_index, environ)?;
712
- let callee = state.pop1();
713
-
714
- // Bitcast any vector arguments to their default type, I8X16, before calling.
715
- let args = state.peekn_mut(num_args);
716
- bitcast_wasm_params(environ, sigref, args, builder);
717
-
718
- environ.translate_return_call_indirect(
719
- builder,
720
- validator.features(),
721
- TableIndex::from_u32(*table_index),
722
- TypeIndex::from_u32(*type_index),
723
- sigref,
724
- callee,
725
- state.peekn(num_args),
726
- )?;
727
-
728
- state.popn(num_args);
729
- state.reachable = false;
730
- }
731
- Operator::ReturnCallRef { type_index } => {
732
- // Get function signature
733
- // `index` is the index of the function's signature and `table_index` is the index of
734
- // the table to search the function in.
735
- let (sigref, num_args) = state.get_indirect_sig(builder.func, *type_index, environ)?;
736
- let callee = state.pop1();
737
-
738
- // Bitcast any vector arguments to their default type, I8X16, before calling.
739
- let args = state.peekn_mut(num_args);
740
- bitcast_wasm_params(environ, sigref, args, builder);
741
-
742
- environ.translate_return_call_ref(builder, sigref, callee, state.peekn(num_args))?;
743
-
744
- state.popn(num_args);
745
- state.reachable = false;
746
- }
747
- /******************************* Memory management ***********************************
748
- * Memory management is handled by environment. It is usually translated into calls to
749
- * special functions.
750
- ************************************************************************************/
751
- Operator::MemoryGrow { mem } => {
752
- // The WebAssembly MVP only supports one linear memory, but we expect the reserved
753
- // argument to be a memory index.
754
- let heap_index = MemoryIndex::from_u32(*mem);
755
- let heap = state.get_heap(builder.func, *mem, environ)?;
756
- let val = state.pop1();
757
- environ.before_memory_grow(builder, val, heap_index);
758
- state.push1(environ.translate_memory_grow(builder.cursor(), heap_index, heap, val)?)
759
- }
760
- Operator::MemorySize { mem } => {
761
- let heap_index = MemoryIndex::from_u32(*mem);
762
- let heap = state.get_heap(builder.func, *mem, environ)?;
763
- state.push1(environ.translate_memory_size(builder.cursor(), heap_index, heap)?);
764
- }
765
- /******************************* Load instructions ***********************************
766
- * Wasm specifies an integer alignment flag but we drop it in Cranelift.
767
- * The memory base address is provided by the environment.
768
- ************************************************************************************/
769
- Operator::I32Load8U { memarg } => {
770
- unwrap_or_return_unreachable_state!(
771
- state,
772
- translate_load(memarg, ir::Opcode::Uload8, I32, builder, state, environ)?
773
- );
774
- }
775
- Operator::I32Load16U { memarg } => {
776
- unwrap_or_return_unreachable_state!(
777
- state,
778
- translate_load(memarg, ir::Opcode::Uload16, I32, builder, state, environ)?
779
- );
780
- }
781
- Operator::I32Load8S { memarg } => {
782
- unwrap_or_return_unreachable_state!(
783
- state,
784
- translate_load(memarg, ir::Opcode::Sload8, I32, builder, state, environ)?
785
- );
786
- }
787
- Operator::I32Load16S { memarg } => {
788
- unwrap_or_return_unreachable_state!(
789
- state,
790
- translate_load(memarg, ir::Opcode::Sload16, I32, builder, state, environ)?
791
- );
792
- }
793
- Operator::I64Load8U { memarg } => {
794
- unwrap_or_return_unreachable_state!(
795
- state,
796
- translate_load(memarg, ir::Opcode::Uload8, I64, builder, state, environ)?
797
- );
798
- }
799
- Operator::I64Load16U { memarg } => {
800
- unwrap_or_return_unreachable_state!(
801
- state,
802
- translate_load(memarg, ir::Opcode::Uload16, I64, builder, state, environ)?
803
- );
804
- }
805
- Operator::I64Load8S { memarg } => {
806
- unwrap_or_return_unreachable_state!(
807
- state,
808
- translate_load(memarg, ir::Opcode::Sload8, I64, builder, state, environ)?
809
- );
810
- }
811
- Operator::I64Load16S { memarg } => {
812
- unwrap_or_return_unreachable_state!(
813
- state,
814
- translate_load(memarg, ir::Opcode::Sload16, I64, builder, state, environ)?
815
- );
816
- }
817
- Operator::I64Load32S { memarg } => {
818
- unwrap_or_return_unreachable_state!(
819
- state,
820
- translate_load(memarg, ir::Opcode::Sload32, I64, builder, state, environ)?
821
- );
822
- }
823
- Operator::I64Load32U { memarg } => {
824
- unwrap_or_return_unreachable_state!(
825
- state,
826
- translate_load(memarg, ir::Opcode::Uload32, I64, builder, state, environ)?
827
- );
828
- }
829
- Operator::I32Load { memarg } => {
830
- unwrap_or_return_unreachable_state!(
831
- state,
832
- translate_load(memarg, ir::Opcode::Load, I32, builder, state, environ)?
833
- );
834
- }
835
- Operator::F32Load { memarg } => {
836
- unwrap_or_return_unreachable_state!(
837
- state,
838
- translate_load(memarg, ir::Opcode::Load, F32, builder, state, environ)?
839
- );
840
- }
841
- Operator::I64Load { memarg } => {
842
- unwrap_or_return_unreachable_state!(
843
- state,
844
- translate_load(memarg, ir::Opcode::Load, I64, builder, state, environ)?
845
- );
846
- }
847
- Operator::F64Load { memarg } => {
848
- unwrap_or_return_unreachable_state!(
849
- state,
850
- translate_load(memarg, ir::Opcode::Load, F64, builder, state, environ)?
851
- );
852
- }
853
- Operator::V128Load { memarg } => {
854
- unwrap_or_return_unreachable_state!(
855
- state,
856
- translate_load(memarg, ir::Opcode::Load, I8X16, builder, state, environ)?
857
- );
858
- }
859
- Operator::V128Load8x8S { memarg } => {
860
- //TODO(#6829): add before_load() and before_store() hooks for SIMD loads and stores.
861
- let (flags, _, base) = unwrap_or_return_unreachable_state!(
862
- state,
863
- prepare_addr(memarg, 8, builder, state, environ)?
864
- );
865
- let loaded = builder.ins().sload8x8(flags, base, 0);
866
- state.push1(loaded);
867
- }
868
- Operator::V128Load8x8U { memarg } => {
869
- let (flags, _, base) = unwrap_or_return_unreachable_state!(
870
- state,
871
- prepare_addr(memarg, 8, builder, state, environ)?
872
- );
873
- let loaded = builder.ins().uload8x8(flags, base, 0);
874
- state.push1(loaded);
875
- }
876
- Operator::V128Load16x4S { memarg } => {
877
- let (flags, _, base) = unwrap_or_return_unreachable_state!(
878
- state,
879
- prepare_addr(memarg, 8, builder, state, environ)?
880
- );
881
- let loaded = builder.ins().sload16x4(flags, base, 0);
882
- state.push1(loaded);
883
- }
884
- Operator::V128Load16x4U { memarg } => {
885
- let (flags, _, base) = unwrap_or_return_unreachable_state!(
886
- state,
887
- prepare_addr(memarg, 8, builder, state, environ)?
888
- );
889
- let loaded = builder.ins().uload16x4(flags, base, 0);
890
- state.push1(loaded);
891
- }
892
- Operator::V128Load32x2S { memarg } => {
893
- let (flags, _, base) = unwrap_or_return_unreachable_state!(
894
- state,
895
- prepare_addr(memarg, 8, builder, state, environ)?
896
- );
897
- let loaded = builder.ins().sload32x2(flags, base, 0);
898
- state.push1(loaded);
899
- }
900
- Operator::V128Load32x2U { memarg } => {
901
- let (flags, _, base) = unwrap_or_return_unreachable_state!(
902
- state,
903
- prepare_addr(memarg, 8, builder, state, environ)?
904
- );
905
- let loaded = builder.ins().uload32x2(flags, base, 0);
906
- state.push1(loaded);
907
- }
908
- /****************************** Store instructions ***********************************
909
- * Wasm specifies an integer alignment flag but we drop it in Cranelift.
910
- * The memory base address is provided by the environment.
911
- ************************************************************************************/
912
- Operator::I32Store { memarg }
913
- | Operator::I64Store { memarg }
914
- | Operator::F32Store { memarg }
915
- | Operator::F64Store { memarg } => {
916
- translate_store(memarg, ir::Opcode::Store, builder, state, environ)?;
917
- }
918
- Operator::I32Store8 { memarg } | Operator::I64Store8 { memarg } => {
919
- translate_store(memarg, ir::Opcode::Istore8, builder, state, environ)?;
920
- }
921
- Operator::I32Store16 { memarg } | Operator::I64Store16 { memarg } => {
922
- translate_store(memarg, ir::Opcode::Istore16, builder, state, environ)?;
923
- }
924
- Operator::I64Store32 { memarg } => {
925
- translate_store(memarg, ir::Opcode::Istore32, builder, state, environ)?;
926
- }
927
- Operator::V128Store { memarg } => {
928
- translate_store(memarg, ir::Opcode::Store, builder, state, environ)?;
929
- }
930
- /****************************** Nullary Operators ************************************/
931
- Operator::I32Const { value } => {
932
- state.push1(builder.ins().iconst(I32, i64::from(value.unsigned())));
933
- }
934
- Operator::I64Const { value } => state.push1(builder.ins().iconst(I64, *value)),
935
- Operator::F32Const { value } => {
936
- state.push1(builder.ins().f32const(f32_translation(*value)));
937
- }
938
- Operator::F64Const { value } => {
939
- state.push1(builder.ins().f64const(f64_translation(*value)));
940
- }
941
- /******************************* Unary Operators *************************************/
942
- Operator::I32Clz | Operator::I64Clz => {
943
- let arg = state.pop1();
944
- state.push1(builder.ins().clz(arg));
945
- }
946
- Operator::I32Ctz | Operator::I64Ctz => {
947
- let arg = state.pop1();
948
- state.push1(builder.ins().ctz(arg));
949
- }
950
- Operator::I32Popcnt | Operator::I64Popcnt => {
951
- let arg = state.pop1();
952
- state.push1(builder.ins().popcnt(arg));
953
- }
954
- Operator::I64ExtendI32S => {
955
- let val = state.pop1();
956
- state.push1(builder.ins().sextend(I64, val));
957
- }
958
- Operator::I64ExtendI32U => {
959
- let val = state.pop1();
960
- state.push1(builder.ins().uextend(I64, val));
961
- }
962
- Operator::I32WrapI64 => {
963
- let val = state.pop1();
964
- state.push1(builder.ins().ireduce(I32, val));
965
- }
966
- Operator::F32Sqrt | Operator::F64Sqrt => {
967
- let arg = state.pop1();
968
- state.push1(builder.ins().sqrt(arg));
969
- }
970
- Operator::F32Ceil | Operator::F64Ceil => {
971
- let arg = state.pop1();
972
- state.push1(builder.ins().ceil(arg));
973
- }
974
- Operator::F32Floor | Operator::F64Floor => {
975
- let arg = state.pop1();
976
- state.push1(builder.ins().floor(arg));
977
- }
978
- Operator::F32Trunc | Operator::F64Trunc => {
979
- let arg = state.pop1();
980
- state.push1(builder.ins().trunc(arg));
981
- }
982
- Operator::F32Nearest | Operator::F64Nearest => {
983
- let arg = state.pop1();
984
- state.push1(builder.ins().nearest(arg));
985
- }
986
- Operator::F32Abs | Operator::F64Abs => {
987
- let val = state.pop1();
988
- state.push1(builder.ins().fabs(val));
989
- }
990
- Operator::F32Neg | Operator::F64Neg => {
991
- let arg = state.pop1();
992
- state.push1(builder.ins().fneg(arg));
993
- }
994
- Operator::F64ConvertI64U | Operator::F64ConvertI32U => {
995
- let val = state.pop1();
996
- state.push1(builder.ins().fcvt_from_uint(F64, val));
997
- }
998
- Operator::F64ConvertI64S | Operator::F64ConvertI32S => {
999
- let val = state.pop1();
1000
- state.push1(builder.ins().fcvt_from_sint(F64, val));
1001
- }
1002
- Operator::F32ConvertI64S | Operator::F32ConvertI32S => {
1003
- let val = state.pop1();
1004
- state.push1(builder.ins().fcvt_from_sint(F32, val));
1005
- }
1006
- Operator::F32ConvertI64U | Operator::F32ConvertI32U => {
1007
- let val = state.pop1();
1008
- state.push1(builder.ins().fcvt_from_uint(F32, val));
1009
- }
1010
- Operator::F64PromoteF32 => {
1011
- let val = state.pop1();
1012
- state.push1(builder.ins().fpromote(F64, val));
1013
- }
1014
- Operator::F32DemoteF64 => {
1015
- let val = state.pop1();
1016
- state.push1(builder.ins().fdemote(F32, val));
1017
- }
1018
- Operator::I64TruncF64S | Operator::I64TruncF32S => {
1019
- let val = state.pop1();
1020
- state.push1(environ.translate_fcvt_to_sint(builder, I64, val));
1021
- }
1022
- Operator::I32TruncF64S | Operator::I32TruncF32S => {
1023
- let val = state.pop1();
1024
- state.push1(environ.translate_fcvt_to_sint(builder, I32, val));
1025
- }
1026
- Operator::I64TruncF64U | Operator::I64TruncF32U => {
1027
- let val = state.pop1();
1028
- state.push1(environ.translate_fcvt_to_uint(builder, I64, val));
1029
- }
1030
- Operator::I32TruncF64U | Operator::I32TruncF32U => {
1031
- let val = state.pop1();
1032
- state.push1(environ.translate_fcvt_to_uint(builder, I32, val));
1033
- }
1034
- Operator::I64TruncSatF64S | Operator::I64TruncSatF32S => {
1035
- let val = state.pop1();
1036
- state.push1(builder.ins().fcvt_to_sint_sat(I64, val));
1037
- }
1038
- Operator::I32TruncSatF64S | Operator::I32TruncSatF32S => {
1039
- let val = state.pop1();
1040
- state.push1(builder.ins().fcvt_to_sint_sat(I32, val));
1041
- }
1042
- Operator::I64TruncSatF64U | Operator::I64TruncSatF32U => {
1043
- let val = state.pop1();
1044
- state.push1(builder.ins().fcvt_to_uint_sat(I64, val));
1045
- }
1046
- Operator::I32TruncSatF64U | Operator::I32TruncSatF32U => {
1047
- let val = state.pop1();
1048
- state.push1(builder.ins().fcvt_to_uint_sat(I32, val));
1049
- }
1050
- Operator::F32ReinterpretI32 => {
1051
- let val = state.pop1();
1052
- state.push1(builder.ins().bitcast(F32, MemFlags::new(), val));
1053
- }
1054
- Operator::F64ReinterpretI64 => {
1055
- let val = state.pop1();
1056
- state.push1(builder.ins().bitcast(F64, MemFlags::new(), val));
1057
- }
1058
- Operator::I32ReinterpretF32 => {
1059
- let val = state.pop1();
1060
- state.push1(builder.ins().bitcast(I32, MemFlags::new(), val));
1061
- }
1062
- Operator::I64ReinterpretF64 => {
1063
- let val = state.pop1();
1064
- state.push1(builder.ins().bitcast(I64, MemFlags::new(), val));
1065
- }
1066
- Operator::I32Extend8S => {
1067
- let val = state.pop1();
1068
- state.push1(builder.ins().ireduce(I8, val));
1069
- let val = state.pop1();
1070
- state.push1(builder.ins().sextend(I32, val));
1071
- }
1072
- Operator::I32Extend16S => {
1073
- let val = state.pop1();
1074
- state.push1(builder.ins().ireduce(I16, val));
1075
- let val = state.pop1();
1076
- state.push1(builder.ins().sextend(I32, val));
1077
- }
1078
- Operator::I64Extend8S => {
1079
- let val = state.pop1();
1080
- state.push1(builder.ins().ireduce(I8, val));
1081
- let val = state.pop1();
1082
- state.push1(builder.ins().sextend(I64, val));
1083
- }
1084
- Operator::I64Extend16S => {
1085
- let val = state.pop1();
1086
- state.push1(builder.ins().ireduce(I16, val));
1087
- let val = state.pop1();
1088
- state.push1(builder.ins().sextend(I64, val));
1089
- }
1090
- Operator::I64Extend32S => {
1091
- let val = state.pop1();
1092
- state.push1(builder.ins().ireduce(I32, val));
1093
- let val = state.pop1();
1094
- state.push1(builder.ins().sextend(I64, val));
1095
- }
1096
- /****************************** Binary Operators ************************************/
1097
- Operator::I32Add | Operator::I64Add => {
1098
- let (arg1, arg2) = state.pop2();
1099
- state.push1(builder.ins().iadd(arg1, arg2));
1100
- }
1101
- Operator::I32And | Operator::I64And => {
1102
- let (arg1, arg2) = state.pop2();
1103
- state.push1(builder.ins().band(arg1, arg2));
1104
- }
1105
- Operator::I32Or | Operator::I64Or => {
1106
- let (arg1, arg2) = state.pop2();
1107
- state.push1(builder.ins().bor(arg1, arg2));
1108
- }
1109
- Operator::I32Xor | Operator::I64Xor => {
1110
- let (arg1, arg2) = state.pop2();
1111
- state.push1(builder.ins().bxor(arg1, arg2));
1112
- }
1113
- Operator::I32Shl | Operator::I64Shl => {
1114
- let (arg1, arg2) = state.pop2();
1115
- state.push1(builder.ins().ishl(arg1, arg2));
1116
- }
1117
- Operator::I32ShrS | Operator::I64ShrS => {
1118
- let (arg1, arg2) = state.pop2();
1119
- state.push1(builder.ins().sshr(arg1, arg2));
1120
- }
1121
- Operator::I32ShrU | Operator::I64ShrU => {
1122
- let (arg1, arg2) = state.pop2();
1123
- state.push1(builder.ins().ushr(arg1, arg2));
1124
- }
1125
- Operator::I32Rotl | Operator::I64Rotl => {
1126
- let (arg1, arg2) = state.pop2();
1127
- state.push1(builder.ins().rotl(arg1, arg2));
1128
- }
1129
- Operator::I32Rotr | Operator::I64Rotr => {
1130
- let (arg1, arg2) = state.pop2();
1131
- state.push1(builder.ins().rotr(arg1, arg2));
1132
- }
1133
- Operator::F32Add | Operator::F64Add => {
1134
- let (arg1, arg2) = state.pop2();
1135
- state.push1(builder.ins().fadd(arg1, arg2));
1136
- }
1137
- Operator::I32Sub | Operator::I64Sub => {
1138
- let (arg1, arg2) = state.pop2();
1139
- state.push1(builder.ins().isub(arg1, arg2));
1140
- }
1141
- Operator::F32Sub | Operator::F64Sub => {
1142
- let (arg1, arg2) = state.pop2();
1143
- state.push1(builder.ins().fsub(arg1, arg2));
1144
- }
1145
- Operator::I32Mul | Operator::I64Mul => {
1146
- let (arg1, arg2) = state.pop2();
1147
- state.push1(builder.ins().imul(arg1, arg2));
1148
- }
1149
- Operator::F32Mul | Operator::F64Mul => {
1150
- let (arg1, arg2) = state.pop2();
1151
- state.push1(builder.ins().fmul(arg1, arg2));
1152
- }
1153
- Operator::F32Div | Operator::F64Div => {
1154
- let (arg1, arg2) = state.pop2();
1155
- state.push1(builder.ins().fdiv(arg1, arg2));
1156
- }
1157
- Operator::I32DivS | Operator::I64DivS => {
1158
- let (arg1, arg2) = state.pop2();
1159
- state.push1(environ.translate_sdiv(builder, arg1, arg2));
1160
- }
1161
- Operator::I32DivU | Operator::I64DivU => {
1162
- let (arg1, arg2) = state.pop2();
1163
- state.push1(environ.translate_udiv(builder, arg1, arg2));
1164
- }
1165
- Operator::I32RemS | Operator::I64RemS => {
1166
- let (arg1, arg2) = state.pop2();
1167
- state.push1(environ.translate_srem(builder, arg1, arg2));
1168
- }
1169
- Operator::I32RemU | Operator::I64RemU => {
1170
- let (arg1, arg2) = state.pop2();
1171
- state.push1(environ.translate_urem(builder, arg1, arg2));
1172
- }
1173
- Operator::F32Min | Operator::F64Min => {
1174
- let (arg1, arg2) = state.pop2();
1175
- state.push1(builder.ins().fmin(arg1, arg2));
1176
- }
1177
- Operator::F32Max | Operator::F64Max => {
1178
- let (arg1, arg2) = state.pop2();
1179
- state.push1(builder.ins().fmax(arg1, arg2));
1180
- }
1181
- Operator::F32Copysign | Operator::F64Copysign => {
1182
- let (arg1, arg2) = state.pop2();
1183
- state.push1(builder.ins().fcopysign(arg1, arg2));
1184
- }
1185
- /**************************** Comparison Operators **********************************/
1186
- Operator::I32LtS | Operator::I64LtS => {
1187
- translate_icmp(IntCC::SignedLessThan, builder, state)
1188
- }
1189
- Operator::I32LtU | Operator::I64LtU => {
1190
- translate_icmp(IntCC::UnsignedLessThan, builder, state)
1191
- }
1192
- Operator::I32LeS | Operator::I64LeS => {
1193
- translate_icmp(IntCC::SignedLessThanOrEqual, builder, state)
1194
- }
1195
- Operator::I32LeU | Operator::I64LeU => {
1196
- translate_icmp(IntCC::UnsignedLessThanOrEqual, builder, state)
1197
- }
1198
- Operator::I32GtS | Operator::I64GtS => {
1199
- translate_icmp(IntCC::SignedGreaterThan, builder, state)
1200
- }
1201
- Operator::I32GtU | Operator::I64GtU => {
1202
- translate_icmp(IntCC::UnsignedGreaterThan, builder, state)
1203
- }
1204
- Operator::I32GeS | Operator::I64GeS => {
1205
- translate_icmp(IntCC::SignedGreaterThanOrEqual, builder, state)
1206
- }
1207
- Operator::I32GeU | Operator::I64GeU => {
1208
- translate_icmp(IntCC::UnsignedGreaterThanOrEqual, builder, state)
1209
- }
1210
- Operator::I32Eqz | Operator::I64Eqz => {
1211
- let arg = state.pop1();
1212
- let val = builder.ins().icmp_imm(IntCC::Equal, arg, 0);
1213
- state.push1(builder.ins().uextend(I32, val));
1214
- }
1215
- Operator::I32Eq | Operator::I64Eq => translate_icmp(IntCC::Equal, builder, state),
1216
- Operator::F32Eq | Operator::F64Eq => translate_fcmp(FloatCC::Equal, builder, state),
1217
- Operator::I32Ne | Operator::I64Ne => translate_icmp(IntCC::NotEqual, builder, state),
1218
- Operator::F32Ne | Operator::F64Ne => translate_fcmp(FloatCC::NotEqual, builder, state),
1219
- Operator::F32Gt | Operator::F64Gt => translate_fcmp(FloatCC::GreaterThan, builder, state),
1220
- Operator::F32Ge | Operator::F64Ge => {
1221
- translate_fcmp(FloatCC::GreaterThanOrEqual, builder, state)
1222
- }
1223
- Operator::F32Lt | Operator::F64Lt => translate_fcmp(FloatCC::LessThan, builder, state),
1224
- Operator::F32Le | Operator::F64Le => {
1225
- translate_fcmp(FloatCC::LessThanOrEqual, builder, state)
1226
- }
1227
- Operator::RefNull { hty } => {
1228
- let hty = environ.convert_heap_type(*hty);
1229
- state.push1(environ.translate_ref_null(builder.cursor(), hty)?)
1230
- }
1231
- Operator::RefIsNull => {
1232
- let value = state.pop1();
1233
- state.push1(environ.translate_ref_is_null(builder.cursor(), value)?);
1234
- }
1235
- Operator::RefFunc { function_index } => {
1236
- let index = FuncIndex::from_u32(*function_index);
1237
- state.push1(environ.translate_ref_func(builder.cursor(), index)?);
1238
- }
1239
- Operator::MemoryAtomicWait32 { memarg } | Operator::MemoryAtomicWait64 { memarg } => {
1240
- // The WebAssembly MVP only supports one linear memory and
1241
- // wasmparser will ensure that the memory indices specified are
1242
- // zero.
1243
- let implied_ty = match op {
1244
- Operator::MemoryAtomicWait64 { .. } => I64,
1245
- Operator::MemoryAtomicWait32 { .. } => I32,
1246
- _ => unreachable!(),
1247
- };
1248
- let heap_index = MemoryIndex::from_u32(memarg.memory);
1249
- let heap = state.get_heap(builder.func, memarg.memory, environ)?;
1250
- let timeout = state.pop1(); // 64 (fixed)
1251
- let expected = state.pop1(); // 32 or 64 (per the `Ixx` in `IxxAtomicWait`)
1252
- assert!(builder.func.dfg.value_type(expected) == implied_ty);
1253
- let addr = state.pop1();
1254
- let effective_addr = if memarg.offset == 0 {
1255
- addr
1256
- } else {
1257
- let index_type = environ.heaps()[heap].index_type();
1258
- let offset = builder.ins().iconst(index_type, memarg.offset as i64);
1259
- environ.uadd_overflow_trap(builder, addr, offset, ir::TrapCode::HEAP_OUT_OF_BOUNDS)
1260
- };
1261
- // `fn translate_atomic_wait` can inspect the type of `expected` to figure out what
1262
- // code it needs to generate, if it wants.
1263
- let res = environ.translate_atomic_wait(
1264
- builder.cursor(),
1265
- heap_index,
1266
- heap,
1267
- effective_addr,
1268
- expected,
1269
- timeout,
1270
- )?;
1271
- state.push1(res);
1272
- }
1273
- Operator::MemoryAtomicNotify { memarg } => {
1274
- let heap_index = MemoryIndex::from_u32(memarg.memory);
1275
- let heap = state.get_heap(builder.func, memarg.memory, environ)?;
1276
- let count = state.pop1(); // 32 (fixed)
1277
- let addr = state.pop1();
1278
- let effective_addr = if memarg.offset == 0 {
1279
- addr
1280
- } else {
1281
- let index_type = environ.heaps()[heap].index_type();
1282
- let offset = builder.ins().iconst(index_type, memarg.offset as i64);
1283
- environ.uadd_overflow_trap(builder, addr, offset, ir::TrapCode::HEAP_OUT_OF_BOUNDS)
1284
- };
1285
- let res = environ.translate_atomic_notify(
1286
- builder.cursor(),
1287
- heap_index,
1288
- heap,
1289
- effective_addr,
1290
- count,
1291
- )?;
1292
- state.push1(res);
1293
- }
1294
- Operator::I32AtomicLoad { memarg } => {
1295
- translate_atomic_load(I32, I32, memarg, builder, state, environ)?
1296
- }
1297
- Operator::I64AtomicLoad { memarg } => {
1298
- translate_atomic_load(I64, I64, memarg, builder, state, environ)?
1299
- }
1300
- Operator::I32AtomicLoad8U { memarg } => {
1301
- translate_atomic_load(I32, I8, memarg, builder, state, environ)?
1302
- }
1303
- Operator::I32AtomicLoad16U { memarg } => {
1304
- translate_atomic_load(I32, I16, memarg, builder, state, environ)?
1305
- }
1306
- Operator::I64AtomicLoad8U { memarg } => {
1307
- translate_atomic_load(I64, I8, memarg, builder, state, environ)?
1308
- }
1309
- Operator::I64AtomicLoad16U { memarg } => {
1310
- translate_atomic_load(I64, I16, memarg, builder, state, environ)?
1311
- }
1312
- Operator::I64AtomicLoad32U { memarg } => {
1313
- translate_atomic_load(I64, I32, memarg, builder, state, environ)?
1314
- }
1315
-
1316
- Operator::I32AtomicStore { memarg } => {
1317
- translate_atomic_store(I32, memarg, builder, state, environ)?
1318
- }
1319
- Operator::I64AtomicStore { memarg } => {
1320
- translate_atomic_store(I64, memarg, builder, state, environ)?
1321
- }
1322
- Operator::I32AtomicStore8 { memarg } => {
1323
- translate_atomic_store(I8, memarg, builder, state, environ)?
1324
- }
1325
- Operator::I32AtomicStore16 { memarg } => {
1326
- translate_atomic_store(I16, memarg, builder, state, environ)?
1327
- }
1328
- Operator::I64AtomicStore8 { memarg } => {
1329
- translate_atomic_store(I8, memarg, builder, state, environ)?
1330
- }
1331
- Operator::I64AtomicStore16 { memarg } => {
1332
- translate_atomic_store(I16, memarg, builder, state, environ)?
1333
- }
1334
- Operator::I64AtomicStore32 { memarg } => {
1335
- translate_atomic_store(I32, memarg, builder, state, environ)?
1336
- }
1337
-
1338
- Operator::I32AtomicRmwAdd { memarg } => {
1339
- translate_atomic_rmw(I32, I32, AtomicRmwOp::Add, memarg, builder, state, environ)?
1340
- }
1341
- Operator::I64AtomicRmwAdd { memarg } => {
1342
- translate_atomic_rmw(I64, I64, AtomicRmwOp::Add, memarg, builder, state, environ)?
1343
- }
1344
- Operator::I32AtomicRmw8AddU { memarg } => {
1345
- translate_atomic_rmw(I32, I8, AtomicRmwOp::Add, memarg, builder, state, environ)?
1346
- }
1347
- Operator::I32AtomicRmw16AddU { memarg } => {
1348
- translate_atomic_rmw(I32, I16, AtomicRmwOp::Add, memarg, builder, state, environ)?
1349
- }
1350
- Operator::I64AtomicRmw8AddU { memarg } => {
1351
- translate_atomic_rmw(I64, I8, AtomicRmwOp::Add, memarg, builder, state, environ)?
1352
- }
1353
- Operator::I64AtomicRmw16AddU { memarg } => {
1354
- translate_atomic_rmw(I64, I16, AtomicRmwOp::Add, memarg, builder, state, environ)?
1355
- }
1356
- Operator::I64AtomicRmw32AddU { memarg } => {
1357
- translate_atomic_rmw(I64, I32, AtomicRmwOp::Add, memarg, builder, state, environ)?
1358
- }
1359
-
1360
- Operator::I32AtomicRmwSub { memarg } => {
1361
- translate_atomic_rmw(I32, I32, AtomicRmwOp::Sub, memarg, builder, state, environ)?
1362
- }
1363
- Operator::I64AtomicRmwSub { memarg } => {
1364
- translate_atomic_rmw(I64, I64, AtomicRmwOp::Sub, memarg, builder, state, environ)?
1365
- }
1366
- Operator::I32AtomicRmw8SubU { memarg } => {
1367
- translate_atomic_rmw(I32, I8, AtomicRmwOp::Sub, memarg, builder, state, environ)?
1368
- }
1369
- Operator::I32AtomicRmw16SubU { memarg } => {
1370
- translate_atomic_rmw(I32, I16, AtomicRmwOp::Sub, memarg, builder, state, environ)?
1371
- }
1372
- Operator::I64AtomicRmw8SubU { memarg } => {
1373
- translate_atomic_rmw(I64, I8, AtomicRmwOp::Sub, memarg, builder, state, environ)?
1374
- }
1375
- Operator::I64AtomicRmw16SubU { memarg } => {
1376
- translate_atomic_rmw(I64, I16, AtomicRmwOp::Sub, memarg, builder, state, environ)?
1377
- }
1378
- Operator::I64AtomicRmw32SubU { memarg } => {
1379
- translate_atomic_rmw(I64, I32, AtomicRmwOp::Sub, memarg, builder, state, environ)?
1380
- }
1381
-
1382
- Operator::I32AtomicRmwAnd { memarg } => {
1383
- translate_atomic_rmw(I32, I32, AtomicRmwOp::And, memarg, builder, state, environ)?
1384
- }
1385
- Operator::I64AtomicRmwAnd { memarg } => {
1386
- translate_atomic_rmw(I64, I64, AtomicRmwOp::And, memarg, builder, state, environ)?
1387
- }
1388
- Operator::I32AtomicRmw8AndU { memarg } => {
1389
- translate_atomic_rmw(I32, I8, AtomicRmwOp::And, memarg, builder, state, environ)?
1390
- }
1391
- Operator::I32AtomicRmw16AndU { memarg } => {
1392
- translate_atomic_rmw(I32, I16, AtomicRmwOp::And, memarg, builder, state, environ)?
1393
- }
1394
- Operator::I64AtomicRmw8AndU { memarg } => {
1395
- translate_atomic_rmw(I64, I8, AtomicRmwOp::And, memarg, builder, state, environ)?
1396
- }
1397
- Operator::I64AtomicRmw16AndU { memarg } => {
1398
- translate_atomic_rmw(I64, I16, AtomicRmwOp::And, memarg, builder, state, environ)?
1399
- }
1400
- Operator::I64AtomicRmw32AndU { memarg } => {
1401
- translate_atomic_rmw(I64, I32, AtomicRmwOp::And, memarg, builder, state, environ)?
1402
- }
1403
-
1404
- Operator::I32AtomicRmwOr { memarg } => {
1405
- translate_atomic_rmw(I32, I32, AtomicRmwOp::Or, memarg, builder, state, environ)?
1406
- }
1407
- Operator::I64AtomicRmwOr { memarg } => {
1408
- translate_atomic_rmw(I64, I64, AtomicRmwOp::Or, memarg, builder, state, environ)?
1409
- }
1410
- Operator::I32AtomicRmw8OrU { memarg } => {
1411
- translate_atomic_rmw(I32, I8, AtomicRmwOp::Or, memarg, builder, state, environ)?
1412
- }
1413
- Operator::I32AtomicRmw16OrU { memarg } => {
1414
- translate_atomic_rmw(I32, I16, AtomicRmwOp::Or, memarg, builder, state, environ)?
1415
- }
1416
- Operator::I64AtomicRmw8OrU { memarg } => {
1417
- translate_atomic_rmw(I64, I8, AtomicRmwOp::Or, memarg, builder, state, environ)?
1418
- }
1419
- Operator::I64AtomicRmw16OrU { memarg } => {
1420
- translate_atomic_rmw(I64, I16, AtomicRmwOp::Or, memarg, builder, state, environ)?
1421
- }
1422
- Operator::I64AtomicRmw32OrU { memarg } => {
1423
- translate_atomic_rmw(I64, I32, AtomicRmwOp::Or, memarg, builder, state, environ)?
1424
- }
1425
-
1426
- Operator::I32AtomicRmwXor { memarg } => {
1427
- translate_atomic_rmw(I32, I32, AtomicRmwOp::Xor, memarg, builder, state, environ)?
1428
- }
1429
- Operator::I64AtomicRmwXor { memarg } => {
1430
- translate_atomic_rmw(I64, I64, AtomicRmwOp::Xor, memarg, builder, state, environ)?
1431
- }
1432
- Operator::I32AtomicRmw8XorU { memarg } => {
1433
- translate_atomic_rmw(I32, I8, AtomicRmwOp::Xor, memarg, builder, state, environ)?
1434
- }
1435
- Operator::I32AtomicRmw16XorU { memarg } => {
1436
- translate_atomic_rmw(I32, I16, AtomicRmwOp::Xor, memarg, builder, state, environ)?
1437
- }
1438
- Operator::I64AtomicRmw8XorU { memarg } => {
1439
- translate_atomic_rmw(I64, I8, AtomicRmwOp::Xor, memarg, builder, state, environ)?
1440
- }
1441
- Operator::I64AtomicRmw16XorU { memarg } => {
1442
- translate_atomic_rmw(I64, I16, AtomicRmwOp::Xor, memarg, builder, state, environ)?
1443
- }
1444
- Operator::I64AtomicRmw32XorU { memarg } => {
1445
- translate_atomic_rmw(I64, I32, AtomicRmwOp::Xor, memarg, builder, state, environ)?
1446
- }
1447
-
1448
- Operator::I32AtomicRmwXchg { memarg } => {
1449
- translate_atomic_rmw(I32, I32, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
1450
- }
1451
- Operator::I64AtomicRmwXchg { memarg } => {
1452
- translate_atomic_rmw(I64, I64, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
1453
- }
1454
- Operator::I32AtomicRmw8XchgU { memarg } => {
1455
- translate_atomic_rmw(I32, I8, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
1456
- }
1457
- Operator::I32AtomicRmw16XchgU { memarg } => {
1458
- translate_atomic_rmw(I32, I16, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
1459
- }
1460
- Operator::I64AtomicRmw8XchgU { memarg } => {
1461
- translate_atomic_rmw(I64, I8, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
1462
- }
1463
- Operator::I64AtomicRmw16XchgU { memarg } => {
1464
- translate_atomic_rmw(I64, I16, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
1465
- }
1466
- Operator::I64AtomicRmw32XchgU { memarg } => {
1467
- translate_atomic_rmw(I64, I32, AtomicRmwOp::Xchg, memarg, builder, state, environ)?
1468
- }
1469
-
1470
- Operator::I32AtomicRmwCmpxchg { memarg } => {
1471
- translate_atomic_cas(I32, I32, memarg, builder, state, environ)?
1472
- }
1473
- Operator::I64AtomicRmwCmpxchg { memarg } => {
1474
- translate_atomic_cas(I64, I64, memarg, builder, state, environ)?
1475
- }
1476
- Operator::I32AtomicRmw8CmpxchgU { memarg } => {
1477
- translate_atomic_cas(I32, I8, memarg, builder, state, environ)?
1478
- }
1479
- Operator::I32AtomicRmw16CmpxchgU { memarg } => {
1480
- translate_atomic_cas(I32, I16, memarg, builder, state, environ)?
1481
- }
1482
- Operator::I64AtomicRmw8CmpxchgU { memarg } => {
1483
- translate_atomic_cas(I64, I8, memarg, builder, state, environ)?
1484
- }
1485
- Operator::I64AtomicRmw16CmpxchgU { memarg } => {
1486
- translate_atomic_cas(I64, I16, memarg, builder, state, environ)?
1487
- }
1488
- Operator::I64AtomicRmw32CmpxchgU { memarg } => {
1489
- translate_atomic_cas(I64, I32, memarg, builder, state, environ)?
1490
- }
1491
-
1492
- Operator::AtomicFence { .. } => {
1493
- builder.ins().fence();
1494
- }
1495
- Operator::MemoryCopy { src_mem, dst_mem } => {
1496
- let src_index = MemoryIndex::from_u32(*src_mem);
1497
- let dst_index = MemoryIndex::from_u32(*dst_mem);
1498
- let src_heap = state.get_heap(builder.func, *src_mem, environ)?;
1499
- let dst_heap = state.get_heap(builder.func, *dst_mem, environ)?;
1500
- let len = state.pop1();
1501
- let src_pos = state.pop1();
1502
- let dst_pos = state.pop1();
1503
- environ.translate_memory_copy(
1504
- builder.cursor(),
1505
- src_index,
1506
- src_heap,
1507
- dst_index,
1508
- dst_heap,
1509
- dst_pos,
1510
- src_pos,
1511
- len,
1512
- )?;
1513
- }
1514
- Operator::MemoryFill { mem } => {
1515
- let heap_index = MemoryIndex::from_u32(*mem);
1516
- let heap = state.get_heap(builder.func, *mem, environ)?;
1517
- let len = state.pop1();
1518
- let val = state.pop1();
1519
- let dest = state.pop1();
1520
- environ.translate_memory_fill(builder.cursor(), heap_index, heap, dest, val, len)?;
1521
- }
1522
- Operator::MemoryInit { data_index, mem } => {
1523
- let heap_index = MemoryIndex::from_u32(*mem);
1524
- let heap = state.get_heap(builder.func, *mem, environ)?;
1525
- let len = state.pop1();
1526
- let src = state.pop1();
1527
- let dest = state.pop1();
1528
- environ.translate_memory_init(
1529
- builder.cursor(),
1530
- heap_index,
1531
- heap,
1532
- *data_index,
1533
- dest,
1534
- src,
1535
- len,
1536
- )?;
1537
- }
1538
- Operator::DataDrop { data_index } => {
1539
- environ.translate_data_drop(builder.cursor(), *data_index)?;
1540
- }
1541
- Operator::TableSize { table: index } => {
1542
- state.push1(
1543
- environ.translate_table_size(builder.cursor(), TableIndex::from_u32(*index))?,
1544
- );
1545
- }
1546
- Operator::TableGrow { table: index } => {
1547
- let table_index = TableIndex::from_u32(*index);
1548
- let delta = state.pop1();
1549
- let init_value = state.pop1();
1550
- state.push1(environ.translate_table_grow(
1551
- builder.cursor(),
1552
- table_index,
1553
- delta,
1554
- init_value,
1555
- )?);
1556
- }
1557
- Operator::TableGet { table: index } => {
1558
- let table_index = TableIndex::from_u32(*index);
1559
- let index = state.pop1();
1560
- state.push1(environ.translate_table_get(builder, table_index, index)?);
1561
- }
1562
- Operator::TableSet { table: index } => {
1563
- let table_index = TableIndex::from_u32(*index);
1564
- let value = state.pop1();
1565
- let index = state.pop1();
1566
- environ.translate_table_set(builder, table_index, value, index)?;
1567
- }
1568
- Operator::TableCopy {
1569
- dst_table: dst_table_index,
1570
- src_table: src_table_index,
1571
- } => {
1572
- let len = state.pop1();
1573
- let src = state.pop1();
1574
- let dest = state.pop1();
1575
- environ.translate_table_copy(
1576
- builder.cursor(),
1577
- TableIndex::from_u32(*dst_table_index),
1578
- TableIndex::from_u32(*src_table_index),
1579
- dest,
1580
- src,
1581
- len,
1582
- )?;
1583
- }
1584
- Operator::TableFill { table } => {
1585
- let table_index = TableIndex::from_u32(*table);
1586
- let len = state.pop1();
1587
- let val = state.pop1();
1588
- let dest = state.pop1();
1589
- environ.translate_table_fill(builder.cursor(), table_index, dest, val, len)?;
1590
- }
1591
- Operator::TableInit {
1592
- elem_index,
1593
- table: table_index,
1594
- } => {
1595
- let len = state.pop1();
1596
- let src = state.pop1();
1597
- let dest = state.pop1();
1598
- environ.translate_table_init(
1599
- builder.cursor(),
1600
- *elem_index,
1601
- TableIndex::from_u32(*table_index),
1602
- dest,
1603
- src,
1604
- len,
1605
- )?;
1606
- }
1607
- Operator::ElemDrop { elem_index } => {
1608
- environ.translate_elem_drop(builder.cursor(), *elem_index)?;
1609
- }
1610
- Operator::V128Const { value } => {
1611
- let data = value.bytes().to_vec().into();
1612
- let handle = builder.func.dfg.constants.insert(data);
1613
- let value = builder.ins().vconst(I8X16, handle);
1614
- // the v128.const is typed in CLIF as a I8x16 but bitcast to a different type
1615
- // before use
1616
- state.push1(value)
1617
- }
1618
- Operator::I8x16Splat | Operator::I16x8Splat => {
1619
- let reduced = builder.ins().ireduce(type_of(op).lane_type(), state.pop1());
1620
- let splatted = builder.ins().splat(type_of(op), reduced);
1621
- state.push1(splatted)
1622
- }
1623
- Operator::I32x4Splat
1624
- | Operator::I64x2Splat
1625
- | Operator::F32x4Splat
1626
- | Operator::F64x2Splat => {
1627
- let splatted = builder.ins().splat(type_of(op), state.pop1());
1628
- state.push1(splatted)
1629
- }
1630
- Operator::V128Load8Splat { memarg }
1631
- | Operator::V128Load16Splat { memarg }
1632
- | Operator::V128Load32Splat { memarg }
1633
- | Operator::V128Load64Splat { memarg } => {
1634
- unwrap_or_return_unreachable_state!(
1635
- state,
1636
- translate_load(
1637
- memarg,
1638
- ir::Opcode::Load,
1639
- type_of(op).lane_type(),
1640
- builder,
1641
- state,
1642
- environ,
1643
- )?
1644
- );
1645
- let splatted = builder.ins().splat(type_of(op), state.pop1());
1646
- state.push1(splatted)
1647
- }
1648
- Operator::V128Load32Zero { memarg } | Operator::V128Load64Zero { memarg } => {
1649
- unwrap_or_return_unreachable_state!(
1650
- state,
1651
- translate_load(
1652
- memarg,
1653
- ir::Opcode::Load,
1654
- type_of(op).lane_type(),
1655
- builder,
1656
- state,
1657
- environ,
1658
- )?
1659
- );
1660
- let as_vector = builder.ins().scalar_to_vector(type_of(op), state.pop1());
1661
- state.push1(as_vector)
1662
- }
1663
- Operator::V128Load8Lane { memarg, lane }
1664
- | Operator::V128Load16Lane { memarg, lane }
1665
- | Operator::V128Load32Lane { memarg, lane }
1666
- | Operator::V128Load64Lane { memarg, lane } => {
1667
- let vector = pop1_with_bitcast(state, type_of(op), builder);
1668
- unwrap_or_return_unreachable_state!(
1669
- state,
1670
- translate_load(
1671
- memarg,
1672
- ir::Opcode::Load,
1673
- type_of(op).lane_type(),
1674
- builder,
1675
- state,
1676
- environ,
1677
- )?
1678
- );
1679
- let replacement = state.pop1();
1680
- state.push1(builder.ins().insertlane(vector, replacement, *lane))
1681
- }
1682
- Operator::V128Store8Lane { memarg, lane }
1683
- | Operator::V128Store16Lane { memarg, lane }
1684
- | Operator::V128Store32Lane { memarg, lane }
1685
- | Operator::V128Store64Lane { memarg, lane } => {
1686
- let vector = pop1_with_bitcast(state, type_of(op), builder);
1687
- state.push1(builder.ins().extractlane(vector, *lane));
1688
- translate_store(memarg, ir::Opcode::Store, builder, state, environ)?;
1689
- }
1690
- Operator::I8x16ExtractLaneS { lane } | Operator::I16x8ExtractLaneS { lane } => {
1691
- let vector = pop1_with_bitcast(state, type_of(op), builder);
1692
- let extracted = builder.ins().extractlane(vector, *lane);
1693
- state.push1(builder.ins().sextend(I32, extracted))
1694
- }
1695
- Operator::I8x16ExtractLaneU { lane } | Operator::I16x8ExtractLaneU { lane } => {
1696
- let vector = pop1_with_bitcast(state, type_of(op), builder);
1697
- let extracted = builder.ins().extractlane(vector, *lane);
1698
- state.push1(builder.ins().uextend(I32, extracted));
1699
- // On x86, PEXTRB zeroes the upper bits of the destination register of extractlane so
1700
- // uextend could be elided; for now, uextend is needed for Cranelift's type checks to
1701
- // work.
1702
- }
1703
- Operator::I32x4ExtractLane { lane }
1704
- | Operator::I64x2ExtractLane { lane }
1705
- | Operator::F32x4ExtractLane { lane }
1706
- | Operator::F64x2ExtractLane { lane } => {
1707
- let vector = pop1_with_bitcast(state, type_of(op), builder);
1708
- state.push1(builder.ins().extractlane(vector, *lane))
1709
- }
1710
- Operator::I8x16ReplaceLane { lane } | Operator::I16x8ReplaceLane { lane } => {
1711
- let (vector, replacement) = state.pop2();
1712
- let ty = type_of(op);
1713
- let reduced = builder.ins().ireduce(ty.lane_type(), replacement);
1714
- let vector = optionally_bitcast_vector(vector, ty, builder);
1715
- state.push1(builder.ins().insertlane(vector, reduced, *lane))
1716
- }
1717
- Operator::I32x4ReplaceLane { lane }
1718
- | Operator::I64x2ReplaceLane { lane }
1719
- | Operator::F32x4ReplaceLane { lane }
1720
- | Operator::F64x2ReplaceLane { lane } => {
1721
- let (vector, replacement) = state.pop2();
1722
- let vector = optionally_bitcast_vector(vector, type_of(op), builder);
1723
- state.push1(builder.ins().insertlane(vector, replacement, *lane))
1724
- }
1725
- Operator::I8x16Shuffle { lanes, .. } => {
1726
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
1727
- let lanes = ConstantData::from(lanes.as_ref());
1728
- let mask = builder.func.dfg.immediates.push(lanes);
1729
- let shuffled = builder.ins().shuffle(a, b, mask);
1730
- state.push1(shuffled)
1731
- // At this point the original types of a and b are lost; users of this value (i.e. this
1732
- // WASM-to-CLIF translator) may need to bitcast for type-correctness. This is due
1733
- // to WASM using the less specific v128 type for certain operations and more specific
1734
- // types (e.g. i8x16) for others.
1735
- }
1736
- Operator::I8x16Swizzle => {
1737
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
1738
- state.push1(builder.ins().swizzle(a, b))
1739
- }
1740
- Operator::I8x16Add | Operator::I16x8Add | Operator::I32x4Add | Operator::I64x2Add => {
1741
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1742
- state.push1(builder.ins().iadd(a, b))
1743
- }
1744
- Operator::I8x16AddSatS | Operator::I16x8AddSatS => {
1745
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1746
- state.push1(builder.ins().sadd_sat(a, b))
1747
- }
1748
- Operator::I8x16AddSatU | Operator::I16x8AddSatU => {
1749
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1750
- state.push1(builder.ins().uadd_sat(a, b))
1751
- }
1752
- Operator::I8x16Sub | Operator::I16x8Sub | Operator::I32x4Sub | Operator::I64x2Sub => {
1753
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1754
- state.push1(builder.ins().isub(a, b))
1755
- }
1756
- Operator::I8x16SubSatS | Operator::I16x8SubSatS => {
1757
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1758
- state.push1(builder.ins().ssub_sat(a, b))
1759
- }
1760
- Operator::I8x16SubSatU | Operator::I16x8SubSatU => {
1761
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1762
- state.push1(builder.ins().usub_sat(a, b))
1763
- }
1764
- Operator::I8x16MinS | Operator::I16x8MinS | Operator::I32x4MinS => {
1765
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1766
- state.push1(builder.ins().smin(a, b))
1767
- }
1768
- Operator::I8x16MinU | Operator::I16x8MinU | Operator::I32x4MinU => {
1769
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1770
- state.push1(builder.ins().umin(a, b))
1771
- }
1772
- Operator::I8x16MaxS | Operator::I16x8MaxS | Operator::I32x4MaxS => {
1773
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1774
- state.push1(builder.ins().smax(a, b))
1775
- }
1776
- Operator::I8x16MaxU | Operator::I16x8MaxU | Operator::I32x4MaxU => {
1777
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1778
- state.push1(builder.ins().umax(a, b))
1779
- }
1780
- Operator::I8x16AvgrU | Operator::I16x8AvgrU => {
1781
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1782
- state.push1(builder.ins().avg_round(a, b))
1783
- }
1784
- Operator::I8x16Neg | Operator::I16x8Neg | Operator::I32x4Neg | Operator::I64x2Neg => {
1785
- let a = pop1_with_bitcast(state, type_of(op), builder);
1786
- state.push1(builder.ins().ineg(a))
1787
- }
1788
- Operator::I8x16Abs | Operator::I16x8Abs | Operator::I32x4Abs | Operator::I64x2Abs => {
1789
- let a = pop1_with_bitcast(state, type_of(op), builder);
1790
- state.push1(builder.ins().iabs(a))
1791
- }
1792
- Operator::I16x8Mul | Operator::I32x4Mul | Operator::I64x2Mul => {
1793
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1794
- state.push1(builder.ins().imul(a, b))
1795
- }
1796
- Operator::V128Or => {
1797
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1798
- state.push1(builder.ins().bor(a, b))
1799
- }
1800
- Operator::V128Xor => {
1801
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1802
- state.push1(builder.ins().bxor(a, b))
1803
- }
1804
- Operator::V128And => {
1805
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1806
- state.push1(builder.ins().band(a, b))
1807
- }
1808
- Operator::V128AndNot => {
1809
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1810
- state.push1(builder.ins().band_not(a, b))
1811
- }
1812
- Operator::V128Not => {
1813
- let a = state.pop1();
1814
- state.push1(builder.ins().bnot(a));
1815
- }
1816
- Operator::I8x16Shl | Operator::I16x8Shl | Operator::I32x4Shl | Operator::I64x2Shl => {
1817
- let (a, b) = state.pop2();
1818
- let bitcast_a = optionally_bitcast_vector(a, type_of(op), builder);
1819
- // The spec expects to shift with `b mod lanewidth`; This is directly compatible
1820
- // with cranelift's instruction.
1821
- state.push1(builder.ins().ishl(bitcast_a, b))
1822
- }
1823
- Operator::I8x16ShrU | Operator::I16x8ShrU | Operator::I32x4ShrU | Operator::I64x2ShrU => {
1824
- let (a, b) = state.pop2();
1825
- let bitcast_a = optionally_bitcast_vector(a, type_of(op), builder);
1826
- // The spec expects to shift with `b mod lanewidth`; This is directly compatible
1827
- // with cranelift's instruction.
1828
- state.push1(builder.ins().ushr(bitcast_a, b))
1829
- }
1830
- Operator::I8x16ShrS | Operator::I16x8ShrS | Operator::I32x4ShrS | Operator::I64x2ShrS => {
1831
- let (a, b) = state.pop2();
1832
- let bitcast_a = optionally_bitcast_vector(a, type_of(op), builder);
1833
- // The spec expects to shift with `b mod lanewidth`; This is directly compatible
1834
- // with cranelift's instruction.
1835
- state.push1(builder.ins().sshr(bitcast_a, b))
1836
- }
1837
- Operator::V128Bitselect => {
1838
- let (a, b, c) = pop3_with_bitcast(state, I8X16, builder);
1839
- // The CLIF operand ordering is slightly different and the types of all three
1840
- // operands must match (hence the bitcast).
1841
- state.push1(builder.ins().bitselect(c, a, b))
1842
- }
1843
- Operator::V128AnyTrue => {
1844
- let a = pop1_with_bitcast(state, type_of(op), builder);
1845
- let bool_result = builder.ins().vany_true(a);
1846
- state.push1(builder.ins().uextend(I32, bool_result))
1847
- }
1848
- Operator::I8x16AllTrue
1849
- | Operator::I16x8AllTrue
1850
- | Operator::I32x4AllTrue
1851
- | Operator::I64x2AllTrue => {
1852
- let a = pop1_with_bitcast(state, type_of(op), builder);
1853
- let bool_result = builder.ins().vall_true(a);
1854
- state.push1(builder.ins().uextend(I32, bool_result))
1855
- }
1856
- Operator::I8x16Bitmask
1857
- | Operator::I16x8Bitmask
1858
- | Operator::I32x4Bitmask
1859
- | Operator::I64x2Bitmask => {
1860
- let a = pop1_with_bitcast(state, type_of(op), builder);
1861
- state.push1(builder.ins().vhigh_bits(I32, a));
1862
- }
1863
- Operator::I8x16Eq | Operator::I16x8Eq | Operator::I32x4Eq | Operator::I64x2Eq => {
1864
- translate_vector_icmp(IntCC::Equal, type_of(op), builder, state)
1865
- }
1866
- Operator::I8x16Ne | Operator::I16x8Ne | Operator::I32x4Ne | Operator::I64x2Ne => {
1867
- translate_vector_icmp(IntCC::NotEqual, type_of(op), builder, state)
1868
- }
1869
- Operator::I8x16GtS | Operator::I16x8GtS | Operator::I32x4GtS | Operator::I64x2GtS => {
1870
- translate_vector_icmp(IntCC::SignedGreaterThan, type_of(op), builder, state)
1871
- }
1872
- Operator::I8x16LtS | Operator::I16x8LtS | Operator::I32x4LtS | Operator::I64x2LtS => {
1873
- translate_vector_icmp(IntCC::SignedLessThan, type_of(op), builder, state)
1874
- }
1875
- Operator::I8x16GtU | Operator::I16x8GtU | Operator::I32x4GtU => {
1876
- translate_vector_icmp(IntCC::UnsignedGreaterThan, type_of(op), builder, state)
1877
- }
1878
- Operator::I8x16LtU | Operator::I16x8LtU | Operator::I32x4LtU => {
1879
- translate_vector_icmp(IntCC::UnsignedLessThan, type_of(op), builder, state)
1880
- }
1881
- Operator::I8x16GeS | Operator::I16x8GeS | Operator::I32x4GeS | Operator::I64x2GeS => {
1882
- translate_vector_icmp(IntCC::SignedGreaterThanOrEqual, type_of(op), builder, state)
1883
- }
1884
- Operator::I8x16LeS | Operator::I16x8LeS | Operator::I32x4LeS | Operator::I64x2LeS => {
1885
- translate_vector_icmp(IntCC::SignedLessThanOrEqual, type_of(op), builder, state)
1886
- }
1887
- Operator::I8x16GeU | Operator::I16x8GeU | Operator::I32x4GeU => translate_vector_icmp(
1888
- IntCC::UnsignedGreaterThanOrEqual,
1889
- type_of(op),
1890
- builder,
1891
- state,
1892
- ),
1893
- Operator::I8x16LeU | Operator::I16x8LeU | Operator::I32x4LeU => {
1894
- translate_vector_icmp(IntCC::UnsignedLessThanOrEqual, type_of(op), builder, state)
1895
- }
1896
- Operator::F32x4Eq | Operator::F64x2Eq => {
1897
- translate_vector_fcmp(FloatCC::Equal, type_of(op), builder, state)
1898
- }
1899
- Operator::F32x4Ne | Operator::F64x2Ne => {
1900
- translate_vector_fcmp(FloatCC::NotEqual, type_of(op), builder, state)
1901
- }
1902
- Operator::F32x4Lt | Operator::F64x2Lt => {
1903
- translate_vector_fcmp(FloatCC::LessThan, type_of(op), builder, state)
1904
- }
1905
- Operator::F32x4Gt | Operator::F64x2Gt => {
1906
- translate_vector_fcmp(FloatCC::GreaterThan, type_of(op), builder, state)
1907
- }
1908
- Operator::F32x4Le | Operator::F64x2Le => {
1909
- translate_vector_fcmp(FloatCC::LessThanOrEqual, type_of(op), builder, state)
1910
- }
1911
- Operator::F32x4Ge | Operator::F64x2Ge => {
1912
- translate_vector_fcmp(FloatCC::GreaterThanOrEqual, type_of(op), builder, state)
1913
- }
1914
- Operator::F32x4Add | Operator::F64x2Add => {
1915
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1916
- state.push1(builder.ins().fadd(a, b))
1917
- }
1918
- Operator::F32x4Sub | Operator::F64x2Sub => {
1919
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1920
- state.push1(builder.ins().fsub(a, b))
1921
- }
1922
- Operator::F32x4Mul | Operator::F64x2Mul => {
1923
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1924
- state.push1(builder.ins().fmul(a, b))
1925
- }
1926
- Operator::F32x4Div | Operator::F64x2Div => {
1927
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1928
- state.push1(builder.ins().fdiv(a, b))
1929
- }
1930
- Operator::F32x4Max | Operator::F64x2Max => {
1931
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1932
- state.push1(builder.ins().fmax(a, b))
1933
- }
1934
- Operator::F32x4Min | Operator::F64x2Min => {
1935
- let (a, b) = pop2_with_bitcast(state, type_of(op), builder);
1936
- state.push1(builder.ins().fmin(a, b))
1937
- }
1938
- Operator::F32x4PMax | Operator::F64x2PMax => {
1939
- // Note the careful ordering here with respect to `fcmp` and
1940
- // `bitselect`. This matches the spec definition of:
1941
- //
1942
- // fpmax(z1, z2) =
1943
- // * If z1 is less than z2 then return z2.
1944
- // * Else return z1.
1945
- let ty = type_of(op);
1946
- let (a, b) = pop2_with_bitcast(state, ty, builder);
1947
- let cmp = builder.ins().fcmp(FloatCC::LessThan, a, b);
1948
- let cmp = optionally_bitcast_vector(cmp, ty, builder);
1949
- state.push1(builder.ins().bitselect(cmp, b, a))
1950
- }
1951
- Operator::F32x4PMin | Operator::F64x2PMin => {
1952
- // Note the careful ordering here which is similar to `pmax` above:
1953
- //
1954
- // fpmin(z1, z2) =
1955
- // * If z2 is less than z1 then return z2.
1956
- // * Else return z1.
1957
- let ty = type_of(op);
1958
- let (a, b) = pop2_with_bitcast(state, ty, builder);
1959
- let cmp = builder.ins().fcmp(FloatCC::LessThan, b, a);
1960
- let cmp = optionally_bitcast_vector(cmp, ty, builder);
1961
- state.push1(builder.ins().bitselect(cmp, b, a))
1962
- }
1963
- Operator::F32x4Sqrt | Operator::F64x2Sqrt => {
1964
- let a = pop1_with_bitcast(state, type_of(op), builder);
1965
- state.push1(builder.ins().sqrt(a))
1966
- }
1967
- Operator::F32x4Neg | Operator::F64x2Neg => {
1968
- let a = pop1_with_bitcast(state, type_of(op), builder);
1969
- state.push1(builder.ins().fneg(a))
1970
- }
1971
- Operator::F32x4Abs | Operator::F64x2Abs => {
1972
- let a = pop1_with_bitcast(state, type_of(op), builder);
1973
- state.push1(builder.ins().fabs(a))
1974
- }
1975
- Operator::F32x4ConvertI32x4S => {
1976
- let a = pop1_with_bitcast(state, I32X4, builder);
1977
- state.push1(builder.ins().fcvt_from_sint(F32X4, a))
1978
- }
1979
- Operator::F32x4ConvertI32x4U => {
1980
- let a = pop1_with_bitcast(state, I32X4, builder);
1981
- state.push1(builder.ins().fcvt_from_uint(F32X4, a))
1982
- }
1983
- Operator::F64x2ConvertLowI32x4S => {
1984
- let a = pop1_with_bitcast(state, I32X4, builder);
1985
- let widened_a = builder.ins().swiden_low(a);
1986
- state.push1(builder.ins().fcvt_from_sint(F64X2, widened_a));
1987
- }
1988
- Operator::F64x2ConvertLowI32x4U => {
1989
- let a = pop1_with_bitcast(state, I32X4, builder);
1990
- let widened_a = builder.ins().uwiden_low(a);
1991
- state.push1(builder.ins().fcvt_from_uint(F64X2, widened_a));
1992
- }
1993
- Operator::F64x2PromoteLowF32x4 => {
1994
- let a = pop1_with_bitcast(state, F32X4, builder);
1995
- state.push1(builder.ins().fvpromote_low(a));
1996
- }
1997
- Operator::F32x4DemoteF64x2Zero => {
1998
- let a = pop1_with_bitcast(state, F64X2, builder);
1999
- state.push1(builder.ins().fvdemote(a));
2000
- }
2001
- Operator::I32x4TruncSatF32x4S => {
2002
- let a = pop1_with_bitcast(state, F32X4, builder);
2003
- state.push1(builder.ins().fcvt_to_sint_sat(I32X4, a))
2004
- }
2005
- Operator::I32x4TruncSatF64x2SZero => {
2006
- let a = pop1_with_bitcast(state, F64X2, builder);
2007
- let converted_a = builder.ins().fcvt_to_sint_sat(I64X2, a);
2008
- let handle = builder.func.dfg.constants.insert(vec![0u8; 16].into());
2009
- let zero = builder.ins().vconst(I64X2, handle);
2010
-
2011
- state.push1(builder.ins().snarrow(converted_a, zero));
2012
- }
2013
-
2014
- // FIXME(#5913): the relaxed instructions here are translated the same
2015
- // as the saturating instructions, even when the code generator
2016
- // configuration allow for different semantics across hosts. On x86,
2017
- // however, it's theoretically possible to have a slightly more optimal
2018
- // lowering which accounts for NaN differently, although the lowering is
2019
- // still not trivial (e.g. one instruction). At this time the
2020
- // more-optimal-but-still-large lowering for x86 is not implemented so
2021
- // the relaxed instructions are listed here instead of down below with
2022
- // the other relaxed instructions. An x86-specific implementation (or
2023
- // perhaps for other backends too) should be added and the codegen for
2024
- // the relaxed instruction should conditionally be different.
2025
- Operator::I32x4RelaxedTruncF32x4U | Operator::I32x4TruncSatF32x4U => {
2026
- let a = pop1_with_bitcast(state, F32X4, builder);
2027
- state.push1(builder.ins().fcvt_to_uint_sat(I32X4, a))
2028
- }
2029
- Operator::I32x4RelaxedTruncF64x2UZero | Operator::I32x4TruncSatF64x2UZero => {
2030
- let a = pop1_with_bitcast(state, F64X2, builder);
2031
- let converted_a = builder.ins().fcvt_to_uint_sat(I64X2, a);
2032
- let handle = builder.func.dfg.constants.insert(vec![0u8; 16].into());
2033
- let zero = builder.ins().vconst(I64X2, handle);
2034
-
2035
- state.push1(builder.ins().uunarrow(converted_a, zero));
2036
- }
2037
-
2038
- Operator::I8x16NarrowI16x8S => {
2039
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2040
- state.push1(builder.ins().snarrow(a, b))
2041
- }
2042
- Operator::I16x8NarrowI32x4S => {
2043
- let (a, b) = pop2_with_bitcast(state, I32X4, builder);
2044
- state.push1(builder.ins().snarrow(a, b))
2045
- }
2046
- Operator::I8x16NarrowI16x8U => {
2047
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2048
- state.push1(builder.ins().unarrow(a, b))
2049
- }
2050
- Operator::I16x8NarrowI32x4U => {
2051
- let (a, b) = pop2_with_bitcast(state, I32X4, builder);
2052
- state.push1(builder.ins().unarrow(a, b))
2053
- }
2054
- Operator::I16x8ExtendLowI8x16S => {
2055
- let a = pop1_with_bitcast(state, I8X16, builder);
2056
- state.push1(builder.ins().swiden_low(a))
2057
- }
2058
- Operator::I16x8ExtendHighI8x16S => {
2059
- let a = pop1_with_bitcast(state, I8X16, builder);
2060
- state.push1(builder.ins().swiden_high(a))
2061
- }
2062
- Operator::I16x8ExtendLowI8x16U => {
2063
- let a = pop1_with_bitcast(state, I8X16, builder);
2064
- state.push1(builder.ins().uwiden_low(a))
2065
- }
2066
- Operator::I16x8ExtendHighI8x16U => {
2067
- let a = pop1_with_bitcast(state, I8X16, builder);
2068
- state.push1(builder.ins().uwiden_high(a))
2069
- }
2070
- Operator::I32x4ExtendLowI16x8S => {
2071
- let a = pop1_with_bitcast(state, I16X8, builder);
2072
- state.push1(builder.ins().swiden_low(a))
2073
- }
2074
- Operator::I32x4ExtendHighI16x8S => {
2075
- let a = pop1_with_bitcast(state, I16X8, builder);
2076
- state.push1(builder.ins().swiden_high(a))
2077
- }
2078
- Operator::I32x4ExtendLowI16x8U => {
2079
- let a = pop1_with_bitcast(state, I16X8, builder);
2080
- state.push1(builder.ins().uwiden_low(a))
2081
- }
2082
- Operator::I32x4ExtendHighI16x8U => {
2083
- let a = pop1_with_bitcast(state, I16X8, builder);
2084
- state.push1(builder.ins().uwiden_high(a))
2085
- }
2086
- Operator::I64x2ExtendLowI32x4S => {
2087
- let a = pop1_with_bitcast(state, I32X4, builder);
2088
- state.push1(builder.ins().swiden_low(a))
2089
- }
2090
- Operator::I64x2ExtendHighI32x4S => {
2091
- let a = pop1_with_bitcast(state, I32X4, builder);
2092
- state.push1(builder.ins().swiden_high(a))
2093
- }
2094
- Operator::I64x2ExtendLowI32x4U => {
2095
- let a = pop1_with_bitcast(state, I32X4, builder);
2096
- state.push1(builder.ins().uwiden_low(a))
2097
- }
2098
- Operator::I64x2ExtendHighI32x4U => {
2099
- let a = pop1_with_bitcast(state, I32X4, builder);
2100
- state.push1(builder.ins().uwiden_high(a))
2101
- }
2102
- Operator::I16x8ExtAddPairwiseI8x16S => {
2103
- let a = pop1_with_bitcast(state, I8X16, builder);
2104
- let widen_low = builder.ins().swiden_low(a);
2105
- let widen_high = builder.ins().swiden_high(a);
2106
- state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
2107
- }
2108
- Operator::I32x4ExtAddPairwiseI16x8S => {
2109
- let a = pop1_with_bitcast(state, I16X8, builder);
2110
- let widen_low = builder.ins().swiden_low(a);
2111
- let widen_high = builder.ins().swiden_high(a);
2112
- state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
2113
- }
2114
- Operator::I16x8ExtAddPairwiseI8x16U => {
2115
- let a = pop1_with_bitcast(state, I8X16, builder);
2116
- let widen_low = builder.ins().uwiden_low(a);
2117
- let widen_high = builder.ins().uwiden_high(a);
2118
- state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
2119
- }
2120
- Operator::I32x4ExtAddPairwiseI16x8U => {
2121
- let a = pop1_with_bitcast(state, I16X8, builder);
2122
- let widen_low = builder.ins().uwiden_low(a);
2123
- let widen_high = builder.ins().uwiden_high(a);
2124
- state.push1(builder.ins().iadd_pairwise(widen_low, widen_high));
2125
- }
2126
- Operator::F32x4Ceil | Operator::F64x2Ceil => {
2127
- // This is something of a misuse of `type_of`, because that produces the return type
2128
- // of `op`. In this case we want the arg type, but we know it's the same as the
2129
- // return type. Same for the 3 cases below.
2130
- let arg = pop1_with_bitcast(state, type_of(op), builder);
2131
- state.push1(builder.ins().ceil(arg));
2132
- }
2133
- Operator::F32x4Floor | Operator::F64x2Floor => {
2134
- let arg = pop1_with_bitcast(state, type_of(op), builder);
2135
- state.push1(builder.ins().floor(arg));
2136
- }
2137
- Operator::F32x4Trunc | Operator::F64x2Trunc => {
2138
- let arg = pop1_with_bitcast(state, type_of(op), builder);
2139
- state.push1(builder.ins().trunc(arg));
2140
- }
2141
- Operator::F32x4Nearest | Operator::F64x2Nearest => {
2142
- let arg = pop1_with_bitcast(state, type_of(op), builder);
2143
- state.push1(builder.ins().nearest(arg));
2144
- }
2145
- Operator::I32x4DotI16x8S => {
2146
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2147
- let alow = builder.ins().swiden_low(a);
2148
- let blow = builder.ins().swiden_low(b);
2149
- let low = builder.ins().imul(alow, blow);
2150
- let ahigh = builder.ins().swiden_high(a);
2151
- let bhigh = builder.ins().swiden_high(b);
2152
- let high = builder.ins().imul(ahigh, bhigh);
2153
- state.push1(builder.ins().iadd_pairwise(low, high));
2154
- }
2155
- Operator::I8x16Popcnt => {
2156
- let arg = pop1_with_bitcast(state, type_of(op), builder);
2157
- state.push1(builder.ins().popcnt(arg));
2158
- }
2159
- Operator::I16x8Q15MulrSatS => {
2160
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2161
- state.push1(builder.ins().sqmul_round_sat(a, b))
2162
- }
2163
- Operator::I16x8ExtMulLowI8x16S => {
2164
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
2165
- let a_low = builder.ins().swiden_low(a);
2166
- let b_low = builder.ins().swiden_low(b);
2167
- state.push1(builder.ins().imul(a_low, b_low));
2168
- }
2169
- Operator::I16x8ExtMulHighI8x16S => {
2170
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
2171
- let a_high = builder.ins().swiden_high(a);
2172
- let b_high = builder.ins().swiden_high(b);
2173
- state.push1(builder.ins().imul(a_high, b_high));
2174
- }
2175
- Operator::I16x8ExtMulLowI8x16U => {
2176
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
2177
- let a_low = builder.ins().uwiden_low(a);
2178
- let b_low = builder.ins().uwiden_low(b);
2179
- state.push1(builder.ins().imul(a_low, b_low));
2180
- }
2181
- Operator::I16x8ExtMulHighI8x16U => {
2182
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
2183
- let a_high = builder.ins().uwiden_high(a);
2184
- let b_high = builder.ins().uwiden_high(b);
2185
- state.push1(builder.ins().imul(a_high, b_high));
2186
- }
2187
- Operator::I32x4ExtMulLowI16x8S => {
2188
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2189
- let a_low = builder.ins().swiden_low(a);
2190
- let b_low = builder.ins().swiden_low(b);
2191
- state.push1(builder.ins().imul(a_low, b_low));
2192
- }
2193
- Operator::I32x4ExtMulHighI16x8S => {
2194
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2195
- let a_high = builder.ins().swiden_high(a);
2196
- let b_high = builder.ins().swiden_high(b);
2197
- state.push1(builder.ins().imul(a_high, b_high));
2198
- }
2199
- Operator::I32x4ExtMulLowI16x8U => {
2200
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2201
- let a_low = builder.ins().uwiden_low(a);
2202
- let b_low = builder.ins().uwiden_low(b);
2203
- state.push1(builder.ins().imul(a_low, b_low));
2204
- }
2205
- Operator::I32x4ExtMulHighI16x8U => {
2206
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2207
- let a_high = builder.ins().uwiden_high(a);
2208
- let b_high = builder.ins().uwiden_high(b);
2209
- state.push1(builder.ins().imul(a_high, b_high));
2210
- }
2211
- Operator::I64x2ExtMulLowI32x4S => {
2212
- let (a, b) = pop2_with_bitcast(state, I32X4, builder);
2213
- let a_low = builder.ins().swiden_low(a);
2214
- let b_low = builder.ins().swiden_low(b);
2215
- state.push1(builder.ins().imul(a_low, b_low));
2216
- }
2217
- Operator::I64x2ExtMulHighI32x4S => {
2218
- let (a, b) = pop2_with_bitcast(state, I32X4, builder);
2219
- let a_high = builder.ins().swiden_high(a);
2220
- let b_high = builder.ins().swiden_high(b);
2221
- state.push1(builder.ins().imul(a_high, b_high));
2222
- }
2223
- Operator::I64x2ExtMulLowI32x4U => {
2224
- let (a, b) = pop2_with_bitcast(state, I32X4, builder);
2225
- let a_low = builder.ins().uwiden_low(a);
2226
- let b_low = builder.ins().uwiden_low(b);
2227
- state.push1(builder.ins().imul(a_low, b_low));
2228
- }
2229
- Operator::I64x2ExtMulHighI32x4U => {
2230
- let (a, b) = pop2_with_bitcast(state, I32X4, builder);
2231
- let a_high = builder.ins().uwiden_high(a);
2232
- let b_high = builder.ins().uwiden_high(b);
2233
- state.push1(builder.ins().imul(a_high, b_high));
2234
- }
2235
- Operator::MemoryDiscard { .. } => {
2236
- return Err(wasm_unsupported!(
2237
- "proposed memory-control operator {:?}",
2238
- op
2239
- ));
2240
- }
2241
-
2242
- Operator::F32x4RelaxedMax | Operator::F64x2RelaxedMax => {
2243
- let ty = type_of(op);
2244
- let (a, b) = pop2_with_bitcast(state, ty, builder);
2245
- state.push1(
2246
- if environ.relaxed_simd_deterministic() || !environ.is_x86() {
2247
- // Deterministic semantics match the `fmax` instruction, or
2248
- // the `fAAxBB.max` wasm instruction.
2249
- builder.ins().fmax(a, b)
2250
- } else {
2251
- // Note that this matches the `pmax` translation which has
2252
- // careful ordering of its operands to trigger
2253
- // pattern-matches in the x86 backend.
2254
- let cmp = builder.ins().fcmp(FloatCC::LessThan, a, b);
2255
- let cmp = optionally_bitcast_vector(cmp, ty, builder);
2256
- builder.ins().bitselect(cmp, b, a)
2257
- },
2258
- )
2259
- }
2260
-
2261
- Operator::F32x4RelaxedMin | Operator::F64x2RelaxedMin => {
2262
- let ty = type_of(op);
2263
- let (a, b) = pop2_with_bitcast(state, ty, builder);
2264
- state.push1(
2265
- if environ.relaxed_simd_deterministic() || !environ.is_x86() {
2266
- // Deterministic semantics match the `fmin` instruction, or
2267
- // the `fAAxBB.min` wasm instruction.
2268
- builder.ins().fmin(a, b)
2269
- } else {
2270
- // Note that this matches the `pmin` translation which has
2271
- // careful ordering of its operands to trigger
2272
- // pattern-matches in the x86 backend.
2273
- let cmp = builder.ins().fcmp(FloatCC::LessThan, b, a);
2274
- let cmp = optionally_bitcast_vector(cmp, ty, builder);
2275
- builder.ins().bitselect(cmp, b, a)
2276
- },
2277
- );
2278
- }
2279
-
2280
- Operator::I8x16RelaxedSwizzle => {
2281
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
2282
- state.push1(
2283
- if environ.relaxed_simd_deterministic()
2284
- || !environ.use_x86_pshufb_for_relaxed_swizzle()
2285
- {
2286
- // Deterministic semantics match the `i8x16.swizzle`
2287
- // instruction which is the CLIF `swizzle`.
2288
- builder.ins().swizzle(a, b)
2289
- } else {
2290
- builder.ins().x86_pshufb(a, b)
2291
- },
2292
- );
2293
- }
2294
-
2295
- Operator::F32x4RelaxedMadd | Operator::F64x2RelaxedMadd => {
2296
- let (a, b, c) = pop3_with_bitcast(state, type_of(op), builder);
2297
- state.push1(
2298
- if environ.relaxed_simd_deterministic() || environ.has_native_fma() {
2299
- // Deterministic semantics are "fused multiply and add"
2300
- // which the CLIF `fma` guarantees.
2301
- builder.ins().fma(a, b, c)
2302
- } else {
2303
- let mul = builder.ins().fmul(a, b);
2304
- builder.ins().fadd(mul, c)
2305
- },
2306
- );
2307
- }
2308
- Operator::F32x4RelaxedNmadd | Operator::F64x2RelaxedNmadd => {
2309
- let (a, b, c) = pop3_with_bitcast(state, type_of(op), builder);
2310
- let a = builder.ins().fneg(a);
2311
- state.push1(
2312
- if environ.relaxed_simd_deterministic() || environ.has_native_fma() {
2313
- // Deterministic semantics are "fused multiply and add"
2314
- // which the CLIF `fma` guarantees.
2315
- builder.ins().fma(a, b, c)
2316
- } else {
2317
- let mul = builder.ins().fmul(a, b);
2318
- builder.ins().fadd(mul, c)
2319
- },
2320
- );
2321
- }
2322
-
2323
- Operator::I8x16RelaxedLaneselect
2324
- | Operator::I16x8RelaxedLaneselect
2325
- | Operator::I32x4RelaxedLaneselect
2326
- | Operator::I64x2RelaxedLaneselect => {
2327
- let ty = type_of(op);
2328
- let (a, b, c) = pop3_with_bitcast(state, ty, builder);
2329
- // Note that the variable swaps here are intentional due to
2330
- // the difference of the order of the wasm op and the clif
2331
- // op.
2332
- state.push1(
2333
- if environ.relaxed_simd_deterministic()
2334
- || !environ.use_x86_blendv_for_relaxed_laneselect(ty)
2335
- {
2336
- // Deterministic semantics are a `bitselect` along the lines
2337
- // of the wasm `v128.bitselect` instruction.
2338
- builder.ins().bitselect(c, a, b)
2339
- } else {
2340
- builder.ins().x86_blendv(c, a, b)
2341
- },
2342
- );
2343
- }
2344
-
2345
- Operator::I32x4RelaxedTruncF32x4S => {
2346
- let a = pop1_with_bitcast(state, F32X4, builder);
2347
- state.push1(
2348
- if environ.relaxed_simd_deterministic() || !environ.is_x86() {
2349
- // Deterministic semantics are to match the
2350
- // `i32x4.trunc_sat_f32x4_s` instruction.
2351
- builder.ins().fcvt_to_sint_sat(I32X4, a)
2352
- } else {
2353
- builder.ins().x86_cvtt2dq(I32X4, a)
2354
- },
2355
- )
2356
- }
2357
- Operator::I32x4RelaxedTruncF64x2SZero => {
2358
- let a = pop1_with_bitcast(state, F64X2, builder);
2359
- let converted_a = if environ.relaxed_simd_deterministic() || !environ.is_x86() {
2360
- // Deterministic semantics are to match the
2361
- // `i32x4.trunc_sat_f64x2_s_zero` instruction.
2362
- builder.ins().fcvt_to_sint_sat(I64X2, a)
2363
- } else {
2364
- builder.ins().x86_cvtt2dq(I64X2, a)
2365
- };
2366
- let handle = builder.func.dfg.constants.insert(vec![0u8; 16].into());
2367
- let zero = builder.ins().vconst(I64X2, handle);
2368
-
2369
- state.push1(builder.ins().snarrow(converted_a, zero));
2370
- }
2371
- Operator::I16x8RelaxedQ15mulrS => {
2372
- let (a, b) = pop2_with_bitcast(state, I16X8, builder);
2373
- state.push1(
2374
- if environ.relaxed_simd_deterministic()
2375
- || !environ.use_x86_pmulhrsw_for_relaxed_q15mul()
2376
- {
2377
- // Deterministic semantics are to match the
2378
- // `i16x8.q15mulr_sat_s` instruction.
2379
- builder.ins().sqmul_round_sat(a, b)
2380
- } else {
2381
- builder.ins().x86_pmulhrsw(a, b)
2382
- },
2383
- );
2384
- }
2385
- Operator::I16x8RelaxedDotI8x16I7x16S => {
2386
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
2387
- state.push1(
2388
- if environ.relaxed_simd_deterministic() || !environ.use_x86_pmaddubsw_for_dot() {
2389
- // Deterministic semantics are to treat both operands as
2390
- // signed integers and perform the dot product.
2391
- let alo = builder.ins().swiden_low(a);
2392
- let blo = builder.ins().swiden_low(b);
2393
- let lo = builder.ins().imul(alo, blo);
2394
- let ahi = builder.ins().swiden_high(a);
2395
- let bhi = builder.ins().swiden_high(b);
2396
- let hi = builder.ins().imul(ahi, bhi);
2397
- builder.ins().iadd_pairwise(lo, hi)
2398
- } else {
2399
- builder.ins().x86_pmaddubsw(a, b)
2400
- },
2401
- );
2402
- }
2403
-
2404
- Operator::I32x4RelaxedDotI8x16I7x16AddS => {
2405
- let c = pop1_with_bitcast(state, I32X4, builder);
2406
- let (a, b) = pop2_with_bitcast(state, I8X16, builder);
2407
- let dot =
2408
- if environ.relaxed_simd_deterministic() || !environ.use_x86_pmaddubsw_for_dot() {
2409
- // Deterministic semantics are to treat both operands as
2410
- // signed integers and perform the dot product.
2411
- let alo = builder.ins().swiden_low(a);
2412
- let blo = builder.ins().swiden_low(b);
2413
- let lo = builder.ins().imul(alo, blo);
2414
- let ahi = builder.ins().swiden_high(a);
2415
- let bhi = builder.ins().swiden_high(b);
2416
- let hi = builder.ins().imul(ahi, bhi);
2417
- builder.ins().iadd_pairwise(lo, hi)
2418
- } else {
2419
- builder.ins().x86_pmaddubsw(a, b)
2420
- };
2421
- let dotlo = builder.ins().swiden_low(dot);
2422
- let dothi = builder.ins().swiden_high(dot);
2423
- let dot32 = builder.ins().iadd_pairwise(dotlo, dothi);
2424
- state.push1(builder.ins().iadd(dot32, c));
2425
- }
2426
-
2427
- Operator::BrOnNull { relative_depth } => {
2428
- let r = state.pop1();
2429
- let (br_destination, inputs) = translate_br_if_args(*relative_depth, state);
2430
- let is_null = environ.translate_ref_is_null(builder.cursor(), r)?;
2431
- let else_block = builder.create_block();
2432
- canonicalise_brif(builder, is_null, br_destination, inputs, else_block, &[]);
2433
-
2434
- builder.seal_block(else_block); // The only predecessor is the current block.
2435
- builder.switch_to_block(else_block);
2436
- state.push1(r);
2437
- }
2438
- Operator::BrOnNonNull { relative_depth } => {
2439
- // We write this a bit differently from the spec to avoid an extra
2440
- // block/branch and the typed accounting thereof. Instead of the
2441
- // spec's approach, it's described as such:
2442
- // Peek the value val from the stack.
2443
- // If val is ref.null ht, then: pop the value val from the stack.
2444
- // Else: Execute the instruction (br relative_depth).
2445
- let is_null = environ.translate_ref_is_null(builder.cursor(), state.peek1())?;
2446
- let (br_destination, inputs) = translate_br_if_args(*relative_depth, state);
2447
- let else_block = builder.create_block();
2448
- canonicalise_brif(builder, is_null, else_block, &[], br_destination, inputs);
2449
-
2450
- // In the null case, pop the ref
2451
- state.pop1();
2452
-
2453
- builder.seal_block(else_block); // The only predecessor is the current block.
2454
-
2455
- // The rest of the translation operates on our is null case, which is
2456
- // currently an empty block
2457
- builder.switch_to_block(else_block);
2458
- }
2459
- Operator::CallRef { type_index } => {
2460
- // Get function signature
2461
- // `index` is the index of the function's signature and `table_index` is the index of
2462
- // the table to search the function in.
2463
- let (sigref, num_args) = state.get_indirect_sig(builder.func, *type_index, environ)?;
2464
- let callee = state.pop1();
2465
-
2466
- // Bitcast any vector arguments to their default type, I8X16, before calling.
2467
- let args = state.peekn_mut(num_args);
2468
- bitcast_wasm_params(environ, sigref, args, builder);
2469
-
2470
- let call =
2471
- environ.translate_call_ref(builder, sigref, callee, state.peekn(num_args))?;
2472
-
2473
- let inst_results = builder.inst_results(call);
2474
- debug_assert_eq!(
2475
- inst_results.len(),
2476
- builder.func.dfg.signatures[sigref].returns.len(),
2477
- "translate_call_ref results should match the call signature"
2478
- );
2479
- state.popn(num_args);
2480
- state.pushn(inst_results);
2481
- }
2482
- Operator::RefAsNonNull => {
2483
- let r = state.pop1();
2484
- let is_null = environ.translate_ref_is_null(builder.cursor(), r)?;
2485
- environ.trapnz(builder, is_null, crate::TRAP_NULL_REFERENCE);
2486
- state.push1(r);
2487
- }
2488
-
2489
- Operator::RefI31 => {
2490
- let val = state.pop1();
2491
- let i31ref = environ.translate_ref_i31(builder.cursor(), val)?;
2492
- state.push1(i31ref);
2493
- }
2494
- Operator::I31GetS => {
2495
- let i31ref = state.pop1();
2496
- let val = environ.translate_i31_get_s(builder, i31ref)?;
2497
- state.push1(val);
2498
- }
2499
- Operator::I31GetU => {
2500
- let i31ref = state.pop1();
2501
- let val = environ.translate_i31_get_u(builder, i31ref)?;
2502
- state.push1(val);
2503
- }
2504
-
2505
- Operator::StructNew { struct_type_index } => {
2506
- let struct_type_index = TypeIndex::from_u32(*struct_type_index);
2507
- let arity = environ.struct_fields_len(struct_type_index)?;
2508
- let fields: StructFieldsVec = state.peekn(arity).iter().copied().collect();
2509
- state.popn(arity);
2510
- let struct_ref = environ.translate_struct_new(builder, struct_type_index, fields)?;
2511
- state.push1(struct_ref);
2512
- }
2513
-
2514
- Operator::StructNewDefault { struct_type_index } => {
2515
- let struct_type_index = TypeIndex::from_u32(*struct_type_index);
2516
- let struct_ref = environ.translate_struct_new_default(builder, struct_type_index)?;
2517
- state.push1(struct_ref);
2518
- }
2519
-
2520
- Operator::StructSet {
2521
- struct_type_index,
2522
- field_index,
2523
- } => {
2524
- let struct_type_index = TypeIndex::from_u32(*struct_type_index);
2525
- let val = state.pop1();
2526
- let struct_ref = state.pop1();
2527
- environ.translate_struct_set(
2528
- builder,
2529
- struct_type_index,
2530
- *field_index,
2531
- struct_ref,
2532
- val,
2533
- )?;
2534
- }
2535
-
2536
- Operator::StructGetS {
2537
- struct_type_index,
2538
- field_index,
2539
- } => {
2540
- let struct_type_index = TypeIndex::from_u32(*struct_type_index);
2541
- let struct_ref = state.pop1();
2542
- let val = environ.translate_struct_get_s(
2543
- builder,
2544
- struct_type_index,
2545
- *field_index,
2546
- struct_ref,
2547
- )?;
2548
- state.push1(val);
2549
- }
2550
-
2551
- Operator::StructGetU {
2552
- struct_type_index,
2553
- field_index,
2554
- } => {
2555
- let struct_type_index = TypeIndex::from_u32(*struct_type_index);
2556
- let struct_ref = state.pop1();
2557
- let val = environ.translate_struct_get_u(
2558
- builder,
2559
- struct_type_index,
2560
- *field_index,
2561
- struct_ref,
2562
- )?;
2563
- state.push1(val);
2564
- }
2565
-
2566
- Operator::StructGet {
2567
- struct_type_index,
2568
- field_index,
2569
- } => {
2570
- let struct_type_index = TypeIndex::from_u32(*struct_type_index);
2571
- let struct_ref = state.pop1();
2572
- let val = environ.translate_struct_get(
2573
- builder,
2574
- struct_type_index,
2575
- *field_index,
2576
- struct_ref,
2577
- )?;
2578
- state.push1(val);
2579
- }
2580
-
2581
- Operator::TryTable { .. } | Operator::ThrowRef => {
2582
- return Err(wasm_unsupported!(
2583
- "exception operators are not yet implemented"
2584
- ));
2585
- }
2586
-
2587
- Operator::ArrayNew { array_type_index } => {
2588
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2589
- let (elem, len) = state.pop2();
2590
- let array_ref = environ.translate_array_new(builder, array_type_index, elem, len)?;
2591
- state.push1(array_ref);
2592
- }
2593
- Operator::ArrayNewDefault { array_type_index } => {
2594
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2595
- let len = state.pop1();
2596
- let array_ref = environ.translate_array_new_default(builder, array_type_index, len)?;
2597
- state.push1(array_ref);
2598
- }
2599
- Operator::ArrayNewFixed {
2600
- array_type_index,
2601
- array_size,
2602
- } => {
2603
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2604
- let array_size = usize::try_from(*array_size).unwrap();
2605
- let elems = state.peekn(array_size);
2606
- let array_ref = environ.translate_array_new_fixed(builder, array_type_index, elems)?;
2607
- state.popn(array_size);
2608
- state.push1(array_ref);
2609
- }
2610
- Operator::ArrayNewData {
2611
- array_type_index,
2612
- array_data_index,
2613
- } => {
2614
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2615
- let array_data_index = DataIndex::from_u32(*array_data_index);
2616
- let (data_offset, len) = state.pop2();
2617
- let array_ref = environ.translate_array_new_data(
2618
- builder,
2619
- array_type_index,
2620
- array_data_index,
2621
- data_offset,
2622
- len,
2623
- )?;
2624
- state.push1(array_ref);
2625
- }
2626
- Operator::ArrayNewElem {
2627
- array_type_index,
2628
- array_elem_index,
2629
- } => {
2630
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2631
- let array_elem_index = ElemIndex::from_u32(*array_elem_index);
2632
- let (elem_offset, len) = state.pop2();
2633
- let array_ref = environ.translate_array_new_elem(
2634
- builder,
2635
- array_type_index,
2636
- array_elem_index,
2637
- elem_offset,
2638
- len,
2639
- )?;
2640
- state.push1(array_ref);
2641
- }
2642
- Operator::ArrayCopy {
2643
- array_type_index_dst,
2644
- array_type_index_src,
2645
- } => {
2646
- let array_type_index_dst = TypeIndex::from_u32(*array_type_index_dst);
2647
- let array_type_index_src = TypeIndex::from_u32(*array_type_index_src);
2648
- let (dst_array, dst_index, src_array, src_index, len) = state.pop5();
2649
- environ.translate_array_copy(
2650
- builder,
2651
- array_type_index_dst,
2652
- dst_array,
2653
- dst_index,
2654
- array_type_index_src,
2655
- src_array,
2656
- src_index,
2657
- len,
2658
- )?;
2659
- }
2660
- Operator::ArrayFill { array_type_index } => {
2661
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2662
- let (array, index, val, len) = state.pop4();
2663
- environ.translate_array_fill(builder, array_type_index, array, index, val, len)?;
2664
- }
2665
- Operator::ArrayInitData {
2666
- array_type_index,
2667
- array_data_index,
2668
- } => {
2669
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2670
- let array_data_index = DataIndex::from_u32(*array_data_index);
2671
- let (array, dst_index, src_index, len) = state.pop4();
2672
- environ.translate_array_init_data(
2673
- builder,
2674
- array_type_index,
2675
- array,
2676
- dst_index,
2677
- array_data_index,
2678
- src_index,
2679
- len,
2680
- )?;
2681
- }
2682
- Operator::ArrayInitElem {
2683
- array_type_index,
2684
- array_elem_index,
2685
- } => {
2686
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2687
- let array_elem_index = ElemIndex::from_u32(*array_elem_index);
2688
- let (array, dst_index, src_index, len) = state.pop4();
2689
- environ.translate_array_init_elem(
2690
- builder,
2691
- array_type_index,
2692
- array,
2693
- dst_index,
2694
- array_elem_index,
2695
- src_index,
2696
- len,
2697
- )?;
2698
- }
2699
- Operator::ArrayLen => {
2700
- let array = state.pop1();
2701
- let len = environ.translate_array_len(builder, array)?;
2702
- state.push1(len);
2703
- }
2704
- Operator::ArrayGet { array_type_index } => {
2705
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2706
- let (array, index) = state.pop2();
2707
- let elem = environ.translate_array_get(builder, array_type_index, array, index)?;
2708
- state.push1(elem);
2709
- }
2710
- Operator::ArrayGetS { array_type_index } => {
2711
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2712
- let (array, index) = state.pop2();
2713
- let elem = environ.translate_array_get_s(builder, array_type_index, array, index)?;
2714
- state.push1(elem);
2715
- }
2716
- Operator::ArrayGetU { array_type_index } => {
2717
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2718
- let (array, index) = state.pop2();
2719
- let elem = environ.translate_array_get_u(builder, array_type_index, array, index)?;
2720
- state.push1(elem);
2721
- }
2722
- Operator::ArraySet { array_type_index } => {
2723
- let array_type_index = TypeIndex::from_u32(*array_type_index);
2724
- let (array, index, elem) = state.pop3();
2725
- environ.translate_array_set(builder, array_type_index, array, index, elem)?;
2726
- }
2727
- Operator::RefEq => {
2728
- let (r1, r2) = state.pop2();
2729
- let eq = builder.ins().icmp(ir::condcodes::IntCC::Equal, r1, r2);
2730
- let eq = builder.ins().uextend(ir::types::I32, eq);
2731
- state.push1(eq);
2732
- }
2733
- Operator::RefTestNonNull { hty } => {
2734
- let r = state.pop1();
2735
- let heap_type = environ.convert_heap_type(*hty);
2736
- let result = environ.translate_ref_test(
2737
- builder,
2738
- WasmRefType {
2739
- heap_type,
2740
- nullable: false,
2741
- },
2742
- r,
2743
- )?;
2744
- state.push1(result);
2745
- }
2746
- Operator::RefTestNullable { hty } => {
2747
- let r = state.pop1();
2748
- let heap_type = environ.convert_heap_type(*hty);
2749
- let result = environ.translate_ref_test(
2750
- builder,
2751
- WasmRefType {
2752
- heap_type,
2753
- nullable: true,
2754
- },
2755
- r,
2756
- )?;
2757
- state.push1(result);
2758
- }
2759
- Operator::RefCastNonNull { hty } => {
2760
- let r = state.pop1();
2761
- let heap_type = environ.convert_heap_type(*hty);
2762
- let cast_okay = environ.translate_ref_test(
2763
- builder,
2764
- WasmRefType {
2765
- heap_type,
2766
- nullable: false,
2767
- },
2768
- r,
2769
- )?;
2770
- environ.trapz(builder, cast_okay, crate::TRAP_CAST_FAILURE);
2771
- state.push1(r);
2772
- }
2773
- Operator::RefCastNullable { hty } => {
2774
- let r = state.pop1();
2775
- let heap_type = environ.convert_heap_type(*hty);
2776
- let cast_okay = environ.translate_ref_test(
2777
- builder,
2778
- WasmRefType {
2779
- heap_type,
2780
- nullable: true,
2781
- },
2782
- r,
2783
- )?;
2784
- environ.trapz(builder, cast_okay, crate::TRAP_CAST_FAILURE);
2785
- state.push1(r);
2786
- }
2787
- Operator::BrOnCast {
2788
- relative_depth,
2789
- to_ref_type,
2790
- // TODO: we should take advantage of our knowledge of the type we
2791
- // are casting from when generating the test.
2792
- from_ref_type: _,
2793
- } => {
2794
- let r = state.peek1();
2795
-
2796
- let to_ref_type = environ.convert_ref_type(*to_ref_type);
2797
- let cast_is_okay = environ.translate_ref_test(builder, to_ref_type, r)?;
2798
-
2799
- let (cast_succeeds_block, inputs) = translate_br_if_args(*relative_depth, state);
2800
- let cast_fails_block = builder.create_block();
2801
- canonicalise_brif(
2802
- builder,
2803
- cast_is_okay,
2804
- cast_succeeds_block,
2805
- inputs,
2806
- cast_fails_block,
2807
- &[
2808
- // NB: the `cast_fails_block` is dominated by the current
2809
- // block, and therefore doesn't need any block params.
2810
- ],
2811
- );
2812
-
2813
- // The only predecessor is the current block.
2814
- builder.seal_block(cast_fails_block);
2815
-
2816
- // The next Wasm instruction is executed when the cast failed and we
2817
- // did not branch away.
2818
- builder.switch_to_block(cast_fails_block);
2819
- }
2820
- Operator::BrOnCastFail {
2821
- relative_depth,
2822
- to_ref_type,
2823
- // TODO: we should take advantage of our knowledge of the type we
2824
- // are casting from when generating the test.
2825
- from_ref_type: _,
2826
- } => {
2827
- let r = state.peek1();
2828
-
2829
- let to_ref_type = environ.convert_ref_type(*to_ref_type);
2830
- let cast_is_okay = environ.translate_ref_test(builder, to_ref_type, r)?;
2831
-
2832
- let (cast_fails_block, inputs) = translate_br_if_args(*relative_depth, state);
2833
- let cast_succeeds_block = builder.create_block();
2834
- canonicalise_brif(
2835
- builder,
2836
- cast_is_okay,
2837
- cast_succeeds_block,
2838
- &[
2839
- // NB: the `cast_succeeds_block` is dominated by the current
2840
- // block, and therefore doesn't need any block params.
2841
- ],
2842
- cast_fails_block,
2843
- inputs,
2844
- );
2845
-
2846
- // The only predecessor is the current block.
2847
- builder.seal_block(cast_succeeds_block);
2848
-
2849
- // The next Wasm instruction is executed when the cast succeeded and
2850
- // we did not branch away.
2851
- builder.switch_to_block(cast_succeeds_block);
2852
- }
2853
-
2854
- Operator::AnyConvertExtern => {
2855
- // Pop an `externref`, push an `anyref`. But they have the same
2856
- // representation, so we don't actually need to do anything.
2857
- }
2858
- Operator::ExternConvertAny => {
2859
- // Pop an `anyref`, push an `externref`. But they have the same
2860
- // representation, so we don't actually need to do anything.
2861
- }
2862
-
2863
- Operator::GlobalAtomicGet { .. }
2864
- | Operator::GlobalAtomicSet { .. }
2865
- | Operator::GlobalAtomicRmwAdd { .. }
2866
- | Operator::GlobalAtomicRmwSub { .. }
2867
- | Operator::GlobalAtomicRmwOr { .. }
2868
- | Operator::GlobalAtomicRmwXor { .. }
2869
- | Operator::GlobalAtomicRmwAnd { .. }
2870
- | Operator::GlobalAtomicRmwXchg { .. }
2871
- | Operator::GlobalAtomicRmwCmpxchg { .. }
2872
- | Operator::TableAtomicGet { .. }
2873
- | Operator::TableAtomicSet { .. }
2874
- | Operator::TableAtomicRmwXchg { .. }
2875
- | Operator::TableAtomicRmwCmpxchg { .. }
2876
- | Operator::StructAtomicGet { .. }
2877
- | Operator::StructAtomicGetS { .. }
2878
- | Operator::StructAtomicGetU { .. }
2879
- | Operator::StructAtomicSet { .. }
2880
- | Operator::StructAtomicRmwAdd { .. }
2881
- | Operator::StructAtomicRmwSub { .. }
2882
- | Operator::StructAtomicRmwOr { .. }
2883
- | Operator::StructAtomicRmwXor { .. }
2884
- | Operator::StructAtomicRmwAnd { .. }
2885
- | Operator::StructAtomicRmwXchg { .. }
2886
- | Operator::StructAtomicRmwCmpxchg { .. }
2887
- | Operator::ArrayAtomicGet { .. }
2888
- | Operator::ArrayAtomicGetS { .. }
2889
- | Operator::ArrayAtomicGetU { .. }
2890
- | Operator::ArrayAtomicSet { .. }
2891
- | Operator::ArrayAtomicRmwAdd { .. }
2892
- | Operator::ArrayAtomicRmwSub { .. }
2893
- | Operator::ArrayAtomicRmwOr { .. }
2894
- | Operator::ArrayAtomicRmwXor { .. }
2895
- | Operator::ArrayAtomicRmwAnd { .. }
2896
- | Operator::ArrayAtomicRmwXchg { .. }
2897
- | Operator::ArrayAtomicRmwCmpxchg { .. }
2898
- | Operator::RefI31Shared { .. } => {
2899
- return Err(wasm_unsupported!(
2900
- "shared-everything-threads operators are not yet implemented"
2901
- ));
2902
- }
2903
-
2904
- Operator::ContNew { .. }
2905
- | Operator::ContBind { .. }
2906
- | Operator::Suspend { .. }
2907
- | Operator::Resume { .. }
2908
- | Operator::ResumeThrow { .. }
2909
- | Operator::Switch { .. } => {
2910
- return Err(wasm_unsupported!(
2911
- "stack-switching operators are not yet implemented"
2912
- ));
2913
- }
2914
-
2915
- Operator::I64MulWideS => {
2916
- let (arg1, arg2) = state.pop2();
2917
- let arg1 = builder.ins().sextend(I128, arg1);
2918
- let arg2 = builder.ins().sextend(I128, arg2);
2919
- let result = builder.ins().imul(arg1, arg2);
2920
- let (lo, hi) = builder.ins().isplit(result);
2921
- state.push2(lo, hi);
2922
- }
2923
- Operator::I64MulWideU => {
2924
- let (arg1, arg2) = state.pop2();
2925
- let arg1 = builder.ins().uextend(I128, arg1);
2926
- let arg2 = builder.ins().uextend(I128, arg2);
2927
- let result = builder.ins().imul(arg1, arg2);
2928
- let (lo, hi) = builder.ins().isplit(result);
2929
- state.push2(lo, hi);
2930
- }
2931
- Operator::I64Add128 => {
2932
- let (arg1, arg2, arg3, arg4) = state.pop4();
2933
- let arg1 = builder.ins().iconcat(arg1, arg2);
2934
- let arg2 = builder.ins().iconcat(arg3, arg4);
2935
- let result = builder.ins().iadd(arg1, arg2);
2936
- let (res1, res2) = builder.ins().isplit(result);
2937
- state.push2(res1, res2);
2938
- }
2939
- Operator::I64Sub128 => {
2940
- let (arg1, arg2, arg3, arg4) = state.pop4();
2941
- let arg1 = builder.ins().iconcat(arg1, arg2);
2942
- let arg2 = builder.ins().iconcat(arg3, arg4);
2943
- let result = builder.ins().isub(arg1, arg2);
2944
- let (res1, res2) = builder.ins().isplit(result);
2945
- state.push2(res1, res2);
2946
- }
2947
-
2948
- // catch-all as `Operator` is `#[non_exhaustive]`
2949
- op => return Err(wasm_unsupported!("operator {op:?}")),
2950
- };
2951
- Ok(())
2952
- }
2953
-
2954
- /// Deals with a Wasm instruction located in an unreachable portion of the code. Most of them
2955
- /// are dropped but special ones like `End` or `Else` signal the potential end of the unreachable
2956
- /// portion so the translation state must be updated accordingly.
2957
- fn translate_unreachable_operator<FE: FuncEnvironment + ?Sized>(
2958
- validator: &FuncValidator<impl WasmModuleResources>,
2959
- op: &Operator,
2960
- builder: &mut FunctionBuilder,
2961
- state: &mut FuncTranslationState,
2962
- environ: &mut FE,
2963
- ) -> WasmResult<()> {
2964
- debug_assert!(!state.reachable);
2965
- match *op {
2966
- Operator::If { blockty } => {
2967
- // Push a placeholder control stack entry. The if isn't reachable,
2968
- // so we don't have any branches anywhere.
2969
- state.push_if(
2970
- ir::Block::reserved_value(),
2971
- ElseData::NoElse {
2972
- branch_inst: ir::Inst::reserved_value(),
2973
- placeholder: ir::Block::reserved_value(),
2974
- },
2975
- 0,
2976
- 0,
2977
- blockty,
2978
- );
2979
- }
2980
- Operator::Loop { blockty: _ } | Operator::Block { blockty: _ } => {
2981
- state.push_block(ir::Block::reserved_value(), 0, 0);
2982
- }
2983
- Operator::Else => {
2984
- let i = state.control_stack.len() - 1;
2985
- match state.control_stack[i] {
2986
- ControlStackFrame::If {
2987
- ref else_data,
2988
- head_is_reachable,
2989
- ref mut consequent_ends_reachable,
2990
- blocktype,
2991
- ..
2992
- } => {
2993
- debug_assert!(consequent_ends_reachable.is_none());
2994
- *consequent_ends_reachable = Some(state.reachable);
2995
-
2996
- if head_is_reachable {
2997
- // We have a branch from the head of the `if` to the `else`.
2998
- state.reachable = true;
2999
-
3000
- let else_block = match *else_data {
3001
- ElseData::NoElse {
3002
- branch_inst,
3003
- placeholder,
3004
- } => {
3005
- let (params, _results) =
3006
- blocktype_params_results(validator, blocktype)?;
3007
- let else_block = block_with_params(builder, params, environ)?;
3008
- let frame = state.control_stack.last().unwrap();
3009
- frame.truncate_value_stack_to_else_params(&mut state.stack);
3010
-
3011
- // We change the target of the branch instruction.
3012
- builder.change_jump_destination(
3013
- branch_inst,
3014
- placeholder,
3015
- else_block,
3016
- );
3017
- builder.seal_block(else_block);
3018
- else_block
3019
- }
3020
- ElseData::WithElse { else_block } => {
3021
- let frame = state.control_stack.last().unwrap();
3022
- frame.truncate_value_stack_to_else_params(&mut state.stack);
3023
- else_block
3024
- }
3025
- };
3026
-
3027
- builder.switch_to_block(else_block);
3028
-
3029
- // Again, no need to push the parameters for the `else`,
3030
- // since we already did when we saw the original `if`. See
3031
- // the comment for translating `Operator::Else` in
3032
- // `translate_operator` for details.
3033
- }
3034
- }
3035
- _ => unreachable!(),
3036
- }
3037
- }
3038
- Operator::End => {
3039
- let stack = &mut state.stack;
3040
- let control_stack = &mut state.control_stack;
3041
- let frame = control_stack.pop().unwrap();
3042
-
3043
- // Pop unused parameters from stack.
3044
- frame.truncate_value_stack_to_original_size(stack);
3045
-
3046
- let reachable_anyway = match frame {
3047
- // If it is a loop we also have to seal the body loop block
3048
- ControlStackFrame::Loop { header, .. } => {
3049
- builder.seal_block(header);
3050
- // And loops can't have branches to the end.
3051
- false
3052
- }
3053
- // If we never set `consequent_ends_reachable` then that means
3054
- // we are finishing the consequent now, and there was no
3055
- // `else`. Whether the following block is reachable depends only
3056
- // on if the head was reachable.
3057
- ControlStackFrame::If {
3058
- head_is_reachable,
3059
- consequent_ends_reachable: None,
3060
- ..
3061
- } => head_is_reachable,
3062
- // Since we are only in this function when in unreachable code,
3063
- // we know that the alternative just ended unreachable. Whether
3064
- // the following block is reachable depends on if the consequent
3065
- // ended reachable or not.
3066
- ControlStackFrame::If {
3067
- head_is_reachable,
3068
- consequent_ends_reachable: Some(consequent_ends_reachable),
3069
- ..
3070
- } => head_is_reachable && consequent_ends_reachable,
3071
- // All other control constructs are already handled.
3072
- _ => false,
3073
- };
3074
-
3075
- if frame.exit_is_branched_to() || reachable_anyway {
3076
- builder.switch_to_block(frame.following_code());
3077
- builder.seal_block(frame.following_code());
3078
-
3079
- // And add the return values of the block but only if the next block is reachable
3080
- // (which corresponds to testing if the stack depth is 1)
3081
- stack.extend_from_slice(builder.block_params(frame.following_code()));
3082
- state.reachable = true;
3083
- }
3084
- }
3085
- _ => {
3086
- // We don't translate because this is unreachable code
3087
- }
3088
- }
3089
-
3090
- Ok(())
3091
- }
3092
-
3093
- /// This function is a generalized helper for validating that a wasm-supplied
3094
- /// heap address is in-bounds.
3095
- ///
3096
- /// This function takes a litany of parameters and requires that the *Wasm*
3097
- /// address to be verified is at the top of the stack in `state`. This will
3098
- /// generate necessary IR to validate that the heap address is correctly
3099
- /// in-bounds, and various parameters are returned describing the valid *native*
3100
- /// heap address if execution reaches that point.
3101
- ///
3102
- /// Returns `None` when the Wasm access will unconditionally trap.
3103
- ///
3104
- /// Returns `(flags, wasm_addr, native_addr)`.
3105
- fn prepare_addr<FE>(
3106
- memarg: &MemArg,
3107
- access_size: u8,
3108
- builder: &mut FunctionBuilder,
3109
- state: &mut FuncTranslationState,
3110
- environ: &mut FE,
3111
- ) -> WasmResult<Reachability<(MemFlags, Value, Value)>>
3112
- where
3113
- FE: FuncEnvironment + ?Sized,
3114
- {
3115
- let index = state.pop1();
3116
- let heap = state.get_heap(builder.func, memarg.memory, environ)?;
3117
-
3118
- // How exactly the bounds check is performed here and what it's performed
3119
- // on is a bit tricky. Generally we want to rely on access violations (e.g.
3120
- // segfaults) to generate traps since that means we don't have to bounds
3121
- // check anything explicitly.
3122
- //
3123
- // (1) If we don't have a guard page of unmapped memory, though, then we
3124
- // can't rely on this trapping behavior through segfaults. Instead we need
3125
- // to bounds-check the entire memory access here which is everything from
3126
- // `addr32 + offset` to `addr32 + offset + width` (not inclusive). In this
3127
- // scenario our adjusted offset that we're checking is `memarg.offset +
3128
- // access_size`. Note that we do saturating arithmetic here to avoid
3129
- // overflow. The addition here is in the 64-bit space, which means that
3130
- // we'll never overflow for 32-bit wasm but for 64-bit this is an issue. If
3131
- // our effective offset is u64::MAX though then it's impossible for for
3132
- // that to actually be a valid offset because otherwise the wasm linear
3133
- // memory would take all of the host memory!
3134
- //
3135
- // (2) If we have a guard page, however, then we can perform a further
3136
- // optimization of the generated code by only checking multiples of the
3137
- // offset-guard size to be more CSE-friendly. Knowing that we have at least
3138
- // 1 page of a guard page we're then able to disregard the `width` since we
3139
- // know it's always less than one page. Our bounds check will be for the
3140
- // first byte which will either succeed and be guaranteed to fault if it's
3141
- // actually out of bounds, or the bounds check itself will fail. In any case
3142
- // we assert that the width is reasonably small for now so this assumption
3143
- // can be adjusted in the future if we get larger widths.
3144
- //
3145
- // Put another way we can say, where `y < offset_guard_size`:
3146
- //
3147
- // n * offset_guard_size + y = offset
3148
- //
3149
- // We'll then pass `n * offset_guard_size` as the bounds check value. If
3150
- // this traps then our `offset` would have trapped anyway. If this check
3151
- // passes we know
3152
- //
3153
- // addr32 + n * offset_guard_size < bound
3154
- //
3155
- // which means
3156
- //
3157
- // addr32 + n * offset_guard_size + y < bound + offset_guard_size
3158
- //
3159
- // because `y < offset_guard_size`, which then means:
3160
- //
3161
- // addr32 + offset < bound + offset_guard_size
3162
- //
3163
- // Since we know that that guard size bytes are all unmapped we're
3164
- // guaranteed that `offset` and the `width` bytes after it are either
3165
- // in-bounds or will hit the guard page, meaning we'll get the desired
3166
- // semantics we want.
3167
- //
3168
- // ---
3169
- //
3170
- // With all that in mind remember that the goal is to bounds check as few
3171
- // things as possible. To facilitate this the "fast path" is expected to be
3172
- // hit like so:
3173
- //
3174
- // * For wasm32, wasmtime defaults to 4gb "static" memories with 2gb guard
3175
- // regions. This means that for all offsets <=2gb, we hit the optimized
3176
- // case for `heap_addr` on static memories 4gb in size in cranelift's
3177
- // legalization of `heap_addr`, eliding the bounds check entirely.
3178
- //
3179
- // * For wasm64 offsets <=2gb will generate a single `heap_addr`
3180
- // instruction, but at this time all heaps are "dynamic" which means that
3181
- // a single bounds check is forced. Ideally we'd do better here, but
3182
- // that's the current state of affairs.
3183
- //
3184
- // Basically we assume that most configurations have a guard page and most
3185
- // offsets in `memarg` are <=2gb, which means we get the fast path of one
3186
- // `heap_addr` instruction plus a hardcoded i32-offset in memory-related
3187
- // instructions.
3188
- let heap = environ.heaps()[heap].clone();
3189
- let addr = match u32::try_from(memarg.offset) {
3190
- // If our offset fits within a u32, then we can place the it into the
3191
- // offset immediate of the `heap_addr` instruction.
3192
- Ok(offset) => bounds_checks::bounds_check_and_compute_addr(
3193
- builder,
3194
- environ,
3195
- &heap,
3196
- index,
3197
- offset,
3198
- access_size,
3199
- )?,
3200
-
3201
- // If the offset doesn't fit within a u32, then we can't pass it
3202
- // directly into `heap_addr`.
3203
- //
3204
- // One reasonable question you might ask is "why not?". There's no
3205
- // fundamental reason why `heap_addr` *must* take a 32-bit offset. The
3206
- // reason this isn't done, though, is that blindly changing the offset
3207
- // to a 64-bit offset increases the size of the `InstructionData` enum
3208
- // in cranelift by 8 bytes (16 to 24). This can have significant
3209
- // performance implications so the conclusion when this was written was
3210
- // that we shouldn't do that.
3211
- //
3212
- // Without the ability to put the whole offset into the `heap_addr`
3213
- // instruction we need to fold the offset into the address itself with
3214
- // an unsigned addition. In doing so though we need to check for
3215
- // overflow because that would mean the address is out-of-bounds (wasm
3216
- // bounds checks happen on the effective 33 or 65 bit address once the
3217
- // offset is factored in).
3218
- //
3219
- // Once we have the effective address, offset already folded in, then
3220
- // `heap_addr` is used to verify that the address is indeed in-bounds.
3221
- //
3222
- // Note that this is generating what's likely to be at least two
3223
- // branches, one for the overflow and one for the bounds check itself.
3224
- // For now though that should hopefully be ok since 4gb+ offsets are
3225
- // relatively odd/rare. In the future if needed we can look into
3226
- // optimizing this more.
3227
- Err(_) => {
3228
- let offset = builder
3229
- .ins()
3230
- .iconst(heap.index_type(), memarg.offset.signed());
3231
- let adjusted_index = environ.uadd_overflow_trap(
3232
- builder,
3233
- index,
3234
- offset,
3235
- ir::TrapCode::HEAP_OUT_OF_BOUNDS,
3236
- );
3237
- bounds_checks::bounds_check_and_compute_addr(
3238
- builder,
3239
- environ,
3240
- &heap,
3241
- adjusted_index,
3242
- 0,
3243
- access_size,
3244
- )?
3245
- }
3246
- };
3247
- let addr = match addr {
3248
- Reachability::Unreachable => return Ok(Reachability::Unreachable),
3249
- Reachability::Reachable(a) => a,
3250
- };
3251
-
3252
- // Note that we don't set `is_aligned` here, even if the load instruction's
3253
- // alignment immediate may says it's aligned, because WebAssembly's
3254
- // immediate field is just a hint, while Cranelift's aligned flag needs a
3255
- // guarantee. WebAssembly memory accesses are always little-endian.
3256
- let mut flags = MemFlags::new();
3257
- flags.set_endianness(ir::Endianness::Little);
3258
-
3259
- if heap.pcc_memory_type.is_some() {
3260
- // Proof-carrying code is enabled; check this memory access.
3261
- flags.set_checked();
3262
- }
3263
-
3264
- // The access occurs to the `heap` disjoint category of abstract
3265
- // state. This may allow alias analysis to merge redundant loads,
3266
- // etc. when heap accesses occur interleaved with other (table,
3267
- // vmctx, stack) accesses.
3268
- flags.set_alias_region(Some(ir::AliasRegion::Heap));
3269
-
3270
- Ok(Reachability::Reachable((flags, index, addr)))
3271
- }
3272
-
3273
- fn align_atomic_addr<FE: FuncEnvironment + ?Sized>(
3274
- memarg: &MemArg,
3275
- loaded_bytes: u8,
3276
- builder: &mut FunctionBuilder,
3277
- state: &mut FuncTranslationState,
3278
- environ: &mut FE,
3279
- ) {
3280
- // Atomic addresses must all be aligned correctly, and for now we check
3281
- // alignment before we check out-of-bounds-ness. The order of this check may
3282
- // need to be updated depending on the outcome of the official threads
3283
- // proposal itself.
3284
- //
3285
- // Note that with an offset>0 we generate an `iadd_imm` where the result is
3286
- // thrown away after the offset check. This may truncate the offset and the
3287
- // result may overflow as well, but those conditions won't affect the
3288
- // alignment check itself. This can probably be optimized better and we
3289
- // should do so in the future as well.
3290
- if loaded_bytes > 1 {
3291
- let addr = state.pop1(); // "peek" via pop then push
3292
- state.push1(addr);
3293
- let effective_addr = if memarg.offset == 0 {
3294
- addr
3295
- } else {
3296
- builder.ins().iadd_imm(addr, memarg.offset.signed())
3297
- };
3298
- debug_assert!(loaded_bytes.is_power_of_two());
3299
- let misalignment = builder
3300
- .ins()
3301
- .band_imm(effective_addr, i64::from(loaded_bytes - 1));
3302
- let f = builder.ins().icmp_imm(IntCC::NotEqual, misalignment, 0);
3303
- environ.trapnz(builder, f, crate::TRAP_HEAP_MISALIGNED);
3304
- }
3305
- }
3306
-
3307
- /// Like `prepare_addr` but for atomic accesses.
3308
- ///
3309
- /// Returns `None` when the Wasm access will unconditionally trap.
3310
- fn prepare_atomic_addr<FE: FuncEnvironment + ?Sized>(
3311
- memarg: &MemArg,
3312
- loaded_bytes: u8,
3313
- builder: &mut FunctionBuilder,
3314
- state: &mut FuncTranslationState,
3315
- environ: &mut FE,
3316
- ) -> WasmResult<Reachability<(MemFlags, Value, Value)>> {
3317
- align_atomic_addr(memarg, loaded_bytes, builder, state, environ);
3318
- prepare_addr(memarg, loaded_bytes, builder, state, environ)
3319
- }
3320
-
3321
- /// Like `Option<T>` but specifically for passing information about transitions
3322
- /// from reachable to unreachable state and the like from callees to callers.
3323
- ///
3324
- /// Marked `must_use` to force callers to update
3325
- /// `FuncTranslationState::reachable` as necessary.
3326
- #[derive(PartialEq, Eq)]
3327
- #[must_use]
3328
- pub enum Reachability<T> {
3329
- /// The Wasm execution state is reachable, here is a `T`.
3330
- Reachable(T),
3331
- /// The Wasm execution state has been determined to be statically
3332
- /// unreachable. It is the receiver of this value's responsibility to update
3333
- /// `FuncTranslationState::reachable` as necessary.
3334
- Unreachable,
3335
- }
3336
-
3337
- /// Translate a load instruction.
3338
- ///
3339
- /// Returns the execution state's reachability after the load is translated.
3340
- fn translate_load<FE: FuncEnvironment + ?Sized>(
3341
- memarg: &MemArg,
3342
- opcode: ir::Opcode,
3343
- result_ty: Type,
3344
- builder: &mut FunctionBuilder,
3345
- state: &mut FuncTranslationState,
3346
- environ: &mut FE,
3347
- ) -> WasmResult<Reachability<()>> {
3348
- let mem_op_size = mem_op_size(opcode, result_ty);
3349
- let (flags, wasm_index, base) =
3350
- match prepare_addr(memarg, mem_op_size, builder, state, environ)? {
3351
- Reachability::Unreachable => return Ok(Reachability::Unreachable),
3352
- Reachability::Reachable((f, i, b)) => (f, i, b),
3353
- };
3354
-
3355
- environ.before_load(builder, mem_op_size, wasm_index, memarg.offset);
3356
-
3357
- let (load, dfg) = builder
3358
- .ins()
3359
- .Load(opcode, result_ty, flags, Offset32::new(0), base);
3360
- state.push1(dfg.first_result(load));
3361
- Ok(Reachability::Reachable(()))
3362
- }
3363
-
3364
- /// Translate a store instruction.
3365
- fn translate_store<FE: FuncEnvironment + ?Sized>(
3366
- memarg: &MemArg,
3367
- opcode: ir::Opcode,
3368
- builder: &mut FunctionBuilder,
3369
- state: &mut FuncTranslationState,
3370
- environ: &mut FE,
3371
- ) -> WasmResult<()> {
3372
- let val = state.pop1();
3373
- let val_ty = builder.func.dfg.value_type(val);
3374
- let mem_op_size = mem_op_size(opcode, val_ty);
3375
-
3376
- let (flags, wasm_index, base) = unwrap_or_return_unreachable_state!(
3377
- state,
3378
- prepare_addr(memarg, mem_op_size, builder, state, environ)?
3379
- );
3380
-
3381
- environ.before_store(builder, mem_op_size, wasm_index, memarg.offset);
3382
-
3383
- builder
3384
- .ins()
3385
- .Store(opcode, val_ty, flags, Offset32::new(0), val, base);
3386
- Ok(())
3387
- }
3388
-
3389
- fn mem_op_size(opcode: ir::Opcode, ty: Type) -> u8 {
3390
- match opcode {
3391
- ir::Opcode::Istore8 | ir::Opcode::Sload8 | ir::Opcode::Uload8 => 1,
3392
- ir::Opcode::Istore16 | ir::Opcode::Sload16 | ir::Opcode::Uload16 => 2,
3393
- ir::Opcode::Istore32 | ir::Opcode::Sload32 | ir::Opcode::Uload32 => 4,
3394
- ir::Opcode::Store | ir::Opcode::Load => u8::try_from(ty.bytes()).unwrap(),
3395
- _ => panic!("unknown size of mem op for {opcode:?}"),
3396
- }
3397
- }
3398
-
3399
- fn translate_icmp(cc: IntCC, builder: &mut FunctionBuilder, state: &mut FuncTranslationState) {
3400
- let (arg0, arg1) = state.pop2();
3401
- let val = builder.ins().icmp(cc, arg0, arg1);
3402
- state.push1(builder.ins().uextend(I32, val));
3403
- }
3404
-
3405
- fn translate_atomic_rmw<FE: FuncEnvironment + ?Sized>(
3406
- widened_ty: Type,
3407
- access_ty: Type,
3408
- op: AtomicRmwOp,
3409
- memarg: &MemArg,
3410
- builder: &mut FunctionBuilder,
3411
- state: &mut FuncTranslationState,
3412
- environ: &mut FE,
3413
- ) -> WasmResult<()> {
3414
- let mut arg2 = state.pop1();
3415
- let arg2_ty = builder.func.dfg.value_type(arg2);
3416
-
3417
- // The operation is performed at type `access_ty`, and the old value is zero-extended
3418
- // to type `widened_ty`.
3419
- match access_ty {
3420
- I8 | I16 | I32 | I64 => {}
3421
- _ => {
3422
- return Err(wasm_unsupported!(
3423
- "atomic_rmw: unsupported access type {:?}",
3424
- access_ty
3425
- ))
3426
- }
3427
- };
3428
- let w_ty_ok = match widened_ty {
3429
- I32 | I64 => true,
3430
- _ => false,
3431
- };
3432
- assert!(w_ty_ok && widened_ty.bytes() >= access_ty.bytes());
3433
-
3434
- assert!(arg2_ty.bytes() >= access_ty.bytes());
3435
- if arg2_ty.bytes() > access_ty.bytes() {
3436
- arg2 = builder.ins().ireduce(access_ty, arg2);
3437
- }
3438
-
3439
- let (flags, _, addr) = unwrap_or_return_unreachable_state!(
3440
- state,
3441
- prepare_atomic_addr(
3442
- memarg,
3443
- u8::try_from(access_ty.bytes()).unwrap(),
3444
- builder,
3445
- state,
3446
- environ,
3447
- )?
3448
- );
3449
-
3450
- let mut res = builder.ins().atomic_rmw(access_ty, flags, op, addr, arg2);
3451
- if access_ty != widened_ty {
3452
- res = builder.ins().uextend(widened_ty, res);
3453
- }
3454
- state.push1(res);
3455
- Ok(())
3456
- }
3457
-
3458
- fn translate_atomic_cas<FE: FuncEnvironment + ?Sized>(
3459
- widened_ty: Type,
3460
- access_ty: Type,
3461
- memarg: &MemArg,
3462
- builder: &mut FunctionBuilder,
3463
- state: &mut FuncTranslationState,
3464
- environ: &mut FE,
3465
- ) -> WasmResult<()> {
3466
- let (mut expected, mut replacement) = state.pop2();
3467
- let expected_ty = builder.func.dfg.value_type(expected);
3468
- let replacement_ty = builder.func.dfg.value_type(replacement);
3469
-
3470
- // The compare-and-swap is performed at type `access_ty`, and the old value is zero-extended
3471
- // to type `widened_ty`.
3472
- match access_ty {
3473
- I8 | I16 | I32 | I64 => {}
3474
- _ => {
3475
- return Err(wasm_unsupported!(
3476
- "atomic_cas: unsupported access type {:?}",
3477
- access_ty
3478
- ))
3479
- }
3480
- };
3481
- let w_ty_ok = match widened_ty {
3482
- I32 | I64 => true,
3483
- _ => false,
3484
- };
3485
- assert!(w_ty_ok && widened_ty.bytes() >= access_ty.bytes());
3486
-
3487
- assert!(expected_ty.bytes() >= access_ty.bytes());
3488
- if expected_ty.bytes() > access_ty.bytes() {
3489
- expected = builder.ins().ireduce(access_ty, expected);
3490
- }
3491
- assert!(replacement_ty.bytes() >= access_ty.bytes());
3492
- if replacement_ty.bytes() > access_ty.bytes() {
3493
- replacement = builder.ins().ireduce(access_ty, replacement);
3494
- }
3495
-
3496
- let (flags, _, addr) = unwrap_or_return_unreachable_state!(
3497
- state,
3498
- prepare_atomic_addr(
3499
- memarg,
3500
- u8::try_from(access_ty.bytes()).unwrap(),
3501
- builder,
3502
- state,
3503
- environ,
3504
- )?
3505
- );
3506
- let mut res = builder.ins().atomic_cas(flags, addr, expected, replacement);
3507
- if access_ty != widened_ty {
3508
- res = builder.ins().uextend(widened_ty, res);
3509
- }
3510
- state.push1(res);
3511
- Ok(())
3512
- }
3513
-
3514
- fn translate_atomic_load<FE: FuncEnvironment + ?Sized>(
3515
- widened_ty: Type,
3516
- access_ty: Type,
3517
- memarg: &MemArg,
3518
- builder: &mut FunctionBuilder,
3519
- state: &mut FuncTranslationState,
3520
- environ: &mut FE,
3521
- ) -> WasmResult<()> {
3522
- // The load is performed at type `access_ty`, and the loaded value is zero extended
3523
- // to `widened_ty`.
3524
- match access_ty {
3525
- I8 | I16 | I32 | I64 => {}
3526
- _ => {
3527
- return Err(wasm_unsupported!(
3528
- "atomic_load: unsupported access type {:?}",
3529
- access_ty
3530
- ))
3531
- }
3532
- };
3533
- let w_ty_ok = match widened_ty {
3534
- I32 | I64 => true,
3535
- _ => false,
3536
- };
3537
- assert!(w_ty_ok && widened_ty.bytes() >= access_ty.bytes());
3538
-
3539
- let (flags, _, addr) = unwrap_or_return_unreachable_state!(
3540
- state,
3541
- prepare_atomic_addr(
3542
- memarg,
3543
- u8::try_from(access_ty.bytes()).unwrap(),
3544
- builder,
3545
- state,
3546
- environ,
3547
- )?
3548
- );
3549
- let mut res = builder.ins().atomic_load(access_ty, flags, addr);
3550
- if access_ty != widened_ty {
3551
- res = builder.ins().uextend(widened_ty, res);
3552
- }
3553
- state.push1(res);
3554
- Ok(())
3555
- }
3556
-
3557
- fn translate_atomic_store<FE: FuncEnvironment + ?Sized>(
3558
- access_ty: Type,
3559
- memarg: &MemArg,
3560
- builder: &mut FunctionBuilder,
3561
- state: &mut FuncTranslationState,
3562
- environ: &mut FE,
3563
- ) -> WasmResult<()> {
3564
- let mut data = state.pop1();
3565
- let data_ty = builder.func.dfg.value_type(data);
3566
-
3567
- // The operation is performed at type `access_ty`, and the data to be stored may first
3568
- // need to be narrowed accordingly.
3569
- match access_ty {
3570
- I8 | I16 | I32 | I64 => {}
3571
- _ => {
3572
- return Err(wasm_unsupported!(
3573
- "atomic_store: unsupported access type {:?}",
3574
- access_ty
3575
- ))
3576
- }
3577
- };
3578
- let d_ty_ok = match data_ty {
3579
- I32 | I64 => true,
3580
- _ => false,
3581
- };
3582
- assert!(d_ty_ok && data_ty.bytes() >= access_ty.bytes());
3583
-
3584
- if data_ty.bytes() > access_ty.bytes() {
3585
- data = builder.ins().ireduce(access_ty, data);
3586
- }
3587
-
3588
- let (flags, _, addr) = unwrap_or_return_unreachable_state!(
3589
- state,
3590
- prepare_atomic_addr(
3591
- memarg,
3592
- u8::try_from(access_ty.bytes()).unwrap(),
3593
- builder,
3594
- state,
3595
- environ,
3596
- )?
3597
- );
3598
- builder.ins().atomic_store(flags, data, addr);
3599
- Ok(())
3600
- }
3601
-
3602
- fn translate_vector_icmp(
3603
- cc: IntCC,
3604
- needed_type: Type,
3605
- builder: &mut FunctionBuilder,
3606
- state: &mut FuncTranslationState,
3607
- ) {
3608
- let (a, b) = state.pop2();
3609
- let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
3610
- let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
3611
- state.push1(builder.ins().icmp(cc, bitcast_a, bitcast_b))
3612
- }
3613
-
3614
- fn translate_fcmp(cc: FloatCC, builder: &mut FunctionBuilder, state: &mut FuncTranslationState) {
3615
- let (arg0, arg1) = state.pop2();
3616
- let val = builder.ins().fcmp(cc, arg0, arg1);
3617
- state.push1(builder.ins().uextend(I32, val));
3618
- }
3619
-
3620
- fn translate_vector_fcmp(
3621
- cc: FloatCC,
3622
- needed_type: Type,
3623
- builder: &mut FunctionBuilder,
3624
- state: &mut FuncTranslationState,
3625
- ) {
3626
- let (a, b) = state.pop2();
3627
- let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
3628
- let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
3629
- state.push1(builder.ins().fcmp(cc, bitcast_a, bitcast_b))
3630
- }
3631
-
3632
- fn translate_br_if(
3633
- relative_depth: u32,
3634
- builder: &mut FunctionBuilder,
3635
- state: &mut FuncTranslationState,
3636
- ) {
3637
- let val = state.pop1();
3638
- let (br_destination, inputs) = translate_br_if_args(relative_depth, state);
3639
- let next_block = builder.create_block();
3640
- canonicalise_brif(builder, val, br_destination, inputs, next_block, &[]);
3641
-
3642
- builder.seal_block(next_block); // The only predecessor is the current block.
3643
- builder.switch_to_block(next_block);
3644
- }
3645
-
3646
- fn translate_br_if_args(
3647
- relative_depth: u32,
3648
- state: &mut FuncTranslationState,
3649
- ) -> (ir::Block, &mut [ir::Value]) {
3650
- let i = state.control_stack.len() - 1 - (relative_depth as usize);
3651
- let (return_count, br_destination) = {
3652
- let frame = &mut state.control_stack[i];
3653
- // The values returned by the branch are still available for the reachable
3654
- // code that comes after it
3655
- frame.set_branched_to_exit();
3656
- let return_count = if frame.is_loop() {
3657
- frame.num_param_values()
3658
- } else {
3659
- frame.num_return_values()
3660
- };
3661
- (return_count, frame.br_destination())
3662
- };
3663
- let inputs = state.peekn_mut(return_count);
3664
- (br_destination, inputs)
3665
- }
3666
-
3667
- /// Determine the returned value type of a WebAssembly operator
3668
- fn type_of(operator: &Operator) -> Type {
3669
- match operator {
3670
- Operator::V128Load { .. }
3671
- | Operator::V128Store { .. }
3672
- | Operator::V128Const { .. }
3673
- | Operator::V128Not
3674
- | Operator::V128And
3675
- | Operator::V128AndNot
3676
- | Operator::V128Or
3677
- | Operator::V128Xor
3678
- | Operator::V128AnyTrue
3679
- | Operator::V128Bitselect => I8X16, // default type representing V128
3680
-
3681
- Operator::I8x16Shuffle { .. }
3682
- | Operator::I8x16Splat
3683
- | Operator::V128Load8Splat { .. }
3684
- | Operator::V128Load8Lane { .. }
3685
- | Operator::V128Store8Lane { .. }
3686
- | Operator::I8x16ExtractLaneS { .. }
3687
- | Operator::I8x16ExtractLaneU { .. }
3688
- | Operator::I8x16ReplaceLane { .. }
3689
- | Operator::I8x16Eq
3690
- | Operator::I8x16Ne
3691
- | Operator::I8x16LtS
3692
- | Operator::I8x16LtU
3693
- | Operator::I8x16GtS
3694
- | Operator::I8x16GtU
3695
- | Operator::I8x16LeS
3696
- | Operator::I8x16LeU
3697
- | Operator::I8x16GeS
3698
- | Operator::I8x16GeU
3699
- | Operator::I8x16Neg
3700
- | Operator::I8x16Abs
3701
- | Operator::I8x16AllTrue
3702
- | Operator::I8x16Shl
3703
- | Operator::I8x16ShrS
3704
- | Operator::I8x16ShrU
3705
- | Operator::I8x16Add
3706
- | Operator::I8x16AddSatS
3707
- | Operator::I8x16AddSatU
3708
- | Operator::I8x16Sub
3709
- | Operator::I8x16SubSatS
3710
- | Operator::I8x16SubSatU
3711
- | Operator::I8x16MinS
3712
- | Operator::I8x16MinU
3713
- | Operator::I8x16MaxS
3714
- | Operator::I8x16MaxU
3715
- | Operator::I8x16AvgrU
3716
- | Operator::I8x16Bitmask
3717
- | Operator::I8x16Popcnt
3718
- | Operator::I8x16RelaxedLaneselect => I8X16,
3719
-
3720
- Operator::I16x8Splat
3721
- | Operator::V128Load16Splat { .. }
3722
- | Operator::V128Load16Lane { .. }
3723
- | Operator::V128Store16Lane { .. }
3724
- | Operator::I16x8ExtractLaneS { .. }
3725
- | Operator::I16x8ExtractLaneU { .. }
3726
- | Operator::I16x8ReplaceLane { .. }
3727
- | Operator::I16x8Eq
3728
- | Operator::I16x8Ne
3729
- | Operator::I16x8LtS
3730
- | Operator::I16x8LtU
3731
- | Operator::I16x8GtS
3732
- | Operator::I16x8GtU
3733
- | Operator::I16x8LeS
3734
- | Operator::I16x8LeU
3735
- | Operator::I16x8GeS
3736
- | Operator::I16x8GeU
3737
- | Operator::I16x8Neg
3738
- | Operator::I16x8Abs
3739
- | Operator::I16x8AllTrue
3740
- | Operator::I16x8Shl
3741
- | Operator::I16x8ShrS
3742
- | Operator::I16x8ShrU
3743
- | Operator::I16x8Add
3744
- | Operator::I16x8AddSatS
3745
- | Operator::I16x8AddSatU
3746
- | Operator::I16x8Sub
3747
- | Operator::I16x8SubSatS
3748
- | Operator::I16x8SubSatU
3749
- | Operator::I16x8MinS
3750
- | Operator::I16x8MinU
3751
- | Operator::I16x8MaxS
3752
- | Operator::I16x8MaxU
3753
- | Operator::I16x8AvgrU
3754
- | Operator::I16x8Mul
3755
- | Operator::I16x8Bitmask
3756
- | Operator::I16x8RelaxedLaneselect => I16X8,
3757
-
3758
- Operator::I32x4Splat
3759
- | Operator::V128Load32Splat { .. }
3760
- | Operator::V128Load32Lane { .. }
3761
- | Operator::V128Store32Lane { .. }
3762
- | Operator::I32x4ExtractLane { .. }
3763
- | Operator::I32x4ReplaceLane { .. }
3764
- | Operator::I32x4Eq
3765
- | Operator::I32x4Ne
3766
- | Operator::I32x4LtS
3767
- | Operator::I32x4LtU
3768
- | Operator::I32x4GtS
3769
- | Operator::I32x4GtU
3770
- | Operator::I32x4LeS
3771
- | Operator::I32x4LeU
3772
- | Operator::I32x4GeS
3773
- | Operator::I32x4GeU
3774
- | Operator::I32x4Neg
3775
- | Operator::I32x4Abs
3776
- | Operator::I32x4AllTrue
3777
- | Operator::I32x4Shl
3778
- | Operator::I32x4ShrS
3779
- | Operator::I32x4ShrU
3780
- | Operator::I32x4Add
3781
- | Operator::I32x4Sub
3782
- | Operator::I32x4Mul
3783
- | Operator::I32x4MinS
3784
- | Operator::I32x4MinU
3785
- | Operator::I32x4MaxS
3786
- | Operator::I32x4MaxU
3787
- | Operator::I32x4Bitmask
3788
- | Operator::I32x4TruncSatF32x4S
3789
- | Operator::I32x4TruncSatF32x4U
3790
- | Operator::I32x4RelaxedLaneselect
3791
- | Operator::V128Load32Zero { .. } => I32X4,
3792
-
3793
- Operator::I64x2Splat
3794
- | Operator::V128Load64Splat { .. }
3795
- | Operator::V128Load64Lane { .. }
3796
- | Operator::V128Store64Lane { .. }
3797
- | Operator::I64x2ExtractLane { .. }
3798
- | Operator::I64x2ReplaceLane { .. }
3799
- | Operator::I64x2Eq
3800
- | Operator::I64x2Ne
3801
- | Operator::I64x2LtS
3802
- | Operator::I64x2GtS
3803
- | Operator::I64x2LeS
3804
- | Operator::I64x2GeS
3805
- | Operator::I64x2Neg
3806
- | Operator::I64x2Abs
3807
- | Operator::I64x2AllTrue
3808
- | Operator::I64x2Shl
3809
- | Operator::I64x2ShrS
3810
- | Operator::I64x2ShrU
3811
- | Operator::I64x2Add
3812
- | Operator::I64x2Sub
3813
- | Operator::I64x2Mul
3814
- | Operator::I64x2Bitmask
3815
- | Operator::I64x2RelaxedLaneselect
3816
- | Operator::V128Load64Zero { .. } => I64X2,
3817
-
3818
- Operator::F32x4Splat
3819
- | Operator::F32x4ExtractLane { .. }
3820
- | Operator::F32x4ReplaceLane { .. }
3821
- | Operator::F32x4Eq
3822
- | Operator::F32x4Ne
3823
- | Operator::F32x4Lt
3824
- | Operator::F32x4Gt
3825
- | Operator::F32x4Le
3826
- | Operator::F32x4Ge
3827
- | Operator::F32x4Abs
3828
- | Operator::F32x4Neg
3829
- | Operator::F32x4Sqrt
3830
- | Operator::F32x4Add
3831
- | Operator::F32x4Sub
3832
- | Operator::F32x4Mul
3833
- | Operator::F32x4Div
3834
- | Operator::F32x4Min
3835
- | Operator::F32x4Max
3836
- | Operator::F32x4PMin
3837
- | Operator::F32x4PMax
3838
- | Operator::F32x4ConvertI32x4S
3839
- | Operator::F32x4ConvertI32x4U
3840
- | Operator::F32x4Ceil
3841
- | Operator::F32x4Floor
3842
- | Operator::F32x4Trunc
3843
- | Operator::F32x4Nearest
3844
- | Operator::F32x4RelaxedMax
3845
- | Operator::F32x4RelaxedMin
3846
- | Operator::F32x4RelaxedMadd
3847
- | Operator::F32x4RelaxedNmadd => F32X4,
3848
-
3849
- Operator::F64x2Splat
3850
- | Operator::F64x2ExtractLane { .. }
3851
- | Operator::F64x2ReplaceLane { .. }
3852
- | Operator::F64x2Eq
3853
- | Operator::F64x2Ne
3854
- | Operator::F64x2Lt
3855
- | Operator::F64x2Gt
3856
- | Operator::F64x2Le
3857
- | Operator::F64x2Ge
3858
- | Operator::F64x2Abs
3859
- | Operator::F64x2Neg
3860
- | Operator::F64x2Sqrt
3861
- | Operator::F64x2Add
3862
- | Operator::F64x2Sub
3863
- | Operator::F64x2Mul
3864
- | Operator::F64x2Div
3865
- | Operator::F64x2Min
3866
- | Operator::F64x2Max
3867
- | Operator::F64x2PMin
3868
- | Operator::F64x2PMax
3869
- | Operator::F64x2Ceil
3870
- | Operator::F64x2Floor
3871
- | Operator::F64x2Trunc
3872
- | Operator::F64x2Nearest
3873
- | Operator::F64x2RelaxedMax
3874
- | Operator::F64x2RelaxedMin
3875
- | Operator::F64x2RelaxedMadd
3876
- | Operator::F64x2RelaxedNmadd => F64X2,
3877
-
3878
- _ => unimplemented!(
3879
- "Currently only SIMD instructions are mapped to their return type; the \
3880
- following instruction is not mapped: {:?}",
3881
- operator
3882
- ),
3883
- }
3884
- }
3885
-
3886
- /// Some SIMD operations only operate on I8X16 in CLIF; this will convert them to that type by
3887
- /// adding a bitcast if necessary.
3888
- fn optionally_bitcast_vector(
3889
- value: Value,
3890
- needed_type: Type,
3891
- builder: &mut FunctionBuilder,
3892
- ) -> Value {
3893
- if builder.func.dfg.value_type(value) != needed_type {
3894
- let mut flags = MemFlags::new();
3895
- flags.set_endianness(ir::Endianness::Little);
3896
- builder.ins().bitcast(needed_type, flags, value)
3897
- } else {
3898
- value
3899
- }
3900
- }
3901
-
3902
- #[inline(always)]
3903
- fn is_non_canonical_v128(ty: ir::Type) -> bool {
3904
- match ty {
3905
- I64X2 | I32X4 | I16X8 | F32X4 | F64X2 => true,
3906
- _ => false,
3907
- }
3908
- }
3909
-
3910
- /// Cast to I8X16, any vector values in `values` that are of "non-canonical" type (meaning, not
3911
- /// I8X16), and return them in a slice. A pre-scan is made to determine whether any casts are
3912
- /// actually necessary, and if not, the original slice is returned. Otherwise the cast values
3913
- /// are returned in a slice that belongs to the caller-supplied `SmallVec`.
3914
- fn canonicalise_v128_values<'a>(
3915
- tmp_canonicalised: &'a mut SmallVec<[ir::Value; 16]>,
3916
- builder: &mut FunctionBuilder,
3917
- values: &'a [ir::Value],
3918
- ) -> &'a [ir::Value] {
3919
- debug_assert!(tmp_canonicalised.is_empty());
3920
- // First figure out if any of the parameters need to be cast. Mostly they don't need to be.
3921
- let any_non_canonical = values
3922
- .iter()
3923
- .any(|v| is_non_canonical_v128(builder.func.dfg.value_type(*v)));
3924
- // Hopefully we take this exit most of the time, hence doing no heap allocation.
3925
- if !any_non_canonical {
3926
- return values;
3927
- }
3928
- // Otherwise we'll have to cast, and push the resulting `Value`s into `canonicalised`.
3929
- for v in values {
3930
- tmp_canonicalised.push(if is_non_canonical_v128(builder.func.dfg.value_type(*v)) {
3931
- let mut flags = MemFlags::new();
3932
- flags.set_endianness(ir::Endianness::Little);
3933
- builder.ins().bitcast(I8X16, flags, *v)
3934
- } else {
3935
- *v
3936
- });
3937
- }
3938
- tmp_canonicalised.as_slice()
3939
- }
3940
-
3941
- /// Generate a `jump` instruction, but first cast all 128-bit vector values to I8X16 if they
3942
- /// don't have that type. This is done in somewhat roundabout way so as to ensure that we
3943
- /// almost never have to do any heap allocation.
3944
- fn canonicalise_then_jump(
3945
- builder: &mut FunctionBuilder,
3946
- destination: ir::Block,
3947
- params: &[ir::Value],
3948
- ) -> ir::Inst {
3949
- let mut tmp_canonicalised = SmallVec::<[ir::Value; 16]>::new();
3950
- let canonicalised = canonicalise_v128_values(&mut tmp_canonicalised, builder, params);
3951
- builder.ins().jump(destination, canonicalised)
3952
- }
3953
-
3954
- /// The same but for a `brif` instruction.
3955
- fn canonicalise_brif(
3956
- builder: &mut FunctionBuilder,
3957
- cond: ir::Value,
3958
- block_then: ir::Block,
3959
- params_then: &[ir::Value],
3960
- block_else: ir::Block,
3961
- params_else: &[ir::Value],
3962
- ) -> ir::Inst {
3963
- let mut tmp_canonicalised_then = SmallVec::<[ir::Value; 16]>::new();
3964
- let canonicalised_then =
3965
- canonicalise_v128_values(&mut tmp_canonicalised_then, builder, params_then);
3966
- let mut tmp_canonicalised_else = SmallVec::<[ir::Value; 16]>::new();
3967
- let canonicalised_else =
3968
- canonicalise_v128_values(&mut tmp_canonicalised_else, builder, params_else);
3969
- builder.ins().brif(
3970
- cond,
3971
- block_then,
3972
- canonicalised_then,
3973
- block_else,
3974
- canonicalised_else,
3975
- )
3976
- }
3977
-
3978
- /// A helper for popping and bitcasting a single value; since SIMD values can lose their type by
3979
- /// using v128 (i.e. CLIF's I8x16) we must re-type the values using a bitcast to avoid CLIF
3980
- /// typing issues.
3981
- fn pop1_with_bitcast(
3982
- state: &mut FuncTranslationState,
3983
- needed_type: Type,
3984
- builder: &mut FunctionBuilder,
3985
- ) -> Value {
3986
- optionally_bitcast_vector(state.pop1(), needed_type, builder)
3987
- }
3988
-
3989
- /// A helper for popping and bitcasting two values; since SIMD values can lose their type by
3990
- /// using v128 (i.e. CLIF's I8x16) we must re-type the values using a bitcast to avoid CLIF
3991
- /// typing issues.
3992
- fn pop2_with_bitcast(
3993
- state: &mut FuncTranslationState,
3994
- needed_type: Type,
3995
- builder: &mut FunctionBuilder,
3996
- ) -> (Value, Value) {
3997
- let (a, b) = state.pop2();
3998
- let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
3999
- let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
4000
- (bitcast_a, bitcast_b)
4001
- }
4002
-
4003
- fn pop3_with_bitcast(
4004
- state: &mut FuncTranslationState,
4005
- needed_type: Type,
4006
- builder: &mut FunctionBuilder,
4007
- ) -> (Value, Value, Value) {
4008
- let (a, b, c) = state.pop3();
4009
- let bitcast_a = optionally_bitcast_vector(a, needed_type, builder);
4010
- let bitcast_b = optionally_bitcast_vector(b, needed_type, builder);
4011
- let bitcast_c = optionally_bitcast_vector(c, needed_type, builder);
4012
- (bitcast_a, bitcast_b, bitcast_c)
4013
- }
4014
-
4015
- fn bitcast_arguments<'a>(
4016
- builder: &FunctionBuilder,
4017
- arguments: &'a mut [Value],
4018
- params: &[ir::AbiParam],
4019
- param_predicate: impl Fn(usize) -> bool,
4020
- ) -> Vec<(Type, &'a mut Value)> {
4021
- let filtered_param_types = params
4022
- .iter()
4023
- .enumerate()
4024
- .filter(|(i, _)| param_predicate(*i))
4025
- .map(|(_, param)| param.value_type);
4026
-
4027
- // zip_eq, from the itertools::Itertools trait, is like Iterator::zip but panics if one
4028
- // iterator ends before the other. The `param_predicate` is required to select exactly as many
4029
- // elements of `params` as there are elements in `arguments`.
4030
- let pairs = filtered_param_types.zip_eq(arguments.iter_mut());
4031
-
4032
- // The arguments which need to be bitcasted are those which have some vector type but the type
4033
- // expected by the parameter is not the same vector type as that of the provided argument.
4034
- pairs
4035
- .filter(|(param_type, _)| param_type.is_vector())
4036
- .filter(|(param_type, arg)| {
4037
- let arg_type = builder.func.dfg.value_type(**arg);
4038
- assert!(
4039
- arg_type.is_vector(),
4040
- "unexpected type mismatch: expected {}, argument {} was actually of type {}",
4041
- param_type,
4042
- *arg,
4043
- arg_type
4044
- );
4045
-
4046
- // This is the same check that would be done by `optionally_bitcast_vector`, except we
4047
- // can't take a mutable borrow of the FunctionBuilder here, so we defer inserting the
4048
- // bitcast instruction to the caller.
4049
- arg_type != *param_type
4050
- })
4051
- .collect()
4052
- }
4053
-
4054
- /// A helper for bitcasting a sequence of return values for the function currently being built. If
4055
- /// a value is a vector type that does not match its expected type, this will modify the value in
4056
- /// place to point to the result of a `bitcast`. This conversion is necessary to translate Wasm
4057
- /// code that uses `V128` as function parameters (or implicitly in block parameters) and still use
4058
- /// specific CLIF types (e.g. `I32X4`) in the function body.
4059
- pub fn bitcast_wasm_returns<FE: FuncEnvironment + ?Sized>(
4060
- environ: &mut FE,
4061
- arguments: &mut [Value],
4062
- builder: &mut FunctionBuilder,
4063
- ) {
4064
- let changes = bitcast_arguments(builder, arguments, &builder.func.signature.returns, |i| {
4065
- environ.is_wasm_return(&builder.func.signature, i)
4066
- });
4067
- for (t, arg) in changes {
4068
- let mut flags = MemFlags::new();
4069
- flags.set_endianness(ir::Endianness::Little);
4070
- *arg = builder.ins().bitcast(t, flags, *arg);
4071
- }
4072
- }
4073
-
4074
- /// Like `bitcast_wasm_returns`, but for the parameters being passed to a specified callee.
4075
- fn bitcast_wasm_params<FE: FuncEnvironment + ?Sized>(
4076
- environ: &mut FE,
4077
- callee_signature: ir::SigRef,
4078
- arguments: &mut [Value],
4079
- builder: &mut FunctionBuilder,
4080
- ) {
4081
- let callee_signature = &builder.func.dfg.signatures[callee_signature];
4082
- let changes = bitcast_arguments(builder, arguments, &callee_signature.params, |i| {
4083
- environ.is_wasm_parameter(&callee_signature, i)
4084
- });
4085
- for (t, arg) in changes {
4086
- let mut flags = MemFlags::new();
4087
- flags.set_endianness(ir::Endianness::Little);
4088
- *arg = builder.ins().bitcast(t, flags, *arg);
4089
- }
4090
- }