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
@@ -0,0 +1,3161 @@
1
+ ;; aarch64 instruction selection and CLIF-to-MachInst lowering.
2
+
3
+ ;; The main lowering constructor term: takes a clif `Inst` and returns the
4
+ ;; register(s) within which the lowered instruction's result values live.
5
+ (spec (lower arg)
6
+ (provide (= result arg)))
7
+ (decl partial lower (Inst) InstOutput)
8
+
9
+ ;; Variant of the main lowering constructor term, which receives an
10
+ ;; additional argument (a vector of branch targets to be used) for
11
+ ;; implementing branches.
12
+ ;; For two-branch instructions, the first target is `taken` and the second
13
+ ;; `not_taken`, even if it is a Fallthrough instruction: because we reorder
14
+ ;; blocks while we lower, the fallthrough in the new order is not (necessarily)
15
+ ;; the same as the fallthrough in CLIF. So, we use the explicitly-provided
16
+ ;; target.
17
+ (decl partial lower_branch (Inst MachLabelSlice) Unit)
18
+
19
+ ;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
20
+
21
+ (rule iconst (lower (has_type ty (iconst (u64_from_imm64 n))))
22
+ (imm ty (ImmExtend.Zero) n))
23
+
24
+ ;;;; Rules for `f16const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
25
+
26
+ (rule (lower (f16const (u16_from_ieee16 n)))
27
+ (constant_f16 n))
28
+
29
+ ;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
30
+
31
+ (rule (lower (f32const (u32_from_ieee32 n)))
32
+ (constant_f32 n))
33
+
34
+ ;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
35
+
36
+ (rule (lower (f64const (u64_from_ieee64 n)))
37
+ (constant_f64 n))
38
+
39
+ ;;;; Rules for `f128const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
40
+
41
+ (rule (lower (has_type $F128 (f128const (u128_from_constant n))))
42
+ (constant_f128 n))
43
+
44
+ ;;;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
45
+
46
+ (rule (lower (nop))
47
+ (invalid_reg))
48
+
49
+ ;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
50
+
51
+ ;; `i64` and smaller
52
+
53
+ ;; Base case, simply adding things in registers.
54
+ (rule iadd_base_case -1 (lower (has_type (fits_in_64 ty) (iadd x y)))
55
+ (add ty x y))
56
+
57
+ ;; Special cases for when one operand is an immediate that fits in 12 bits.
58
+ (rule iadd_imm12_right 4 (lower (has_type (fits_in_64 ty) (iadd x (imm12_from_value y))))
59
+ (add_imm ty x y))
60
+
61
+ (rule iadd_imm12_left 5 (lower (has_type (fits_in_64 ty) (iadd (imm12_from_value x) y)))
62
+ (add_imm ty y x))
63
+
64
+ ;; Same as the previous special cases, except we can switch the addition to a
65
+ ;; subtraction if the negated immediate fits in 12 bits.
66
+ (rule iadd_imm12_neg_right 2 (lower (has_type (fits_in_64 ty) (iadd x y)))
67
+ (if-let imm12_neg (imm12_from_negated_value y))
68
+ (sub_imm ty x imm12_neg))
69
+
70
+ (rule iadd_imm12_neg_left 3 (lower (has_type (fits_in_64 ty) (iadd x y)))
71
+ (if-let imm12_neg (imm12_from_negated_value x))
72
+ (sub_imm ty y imm12_neg))
73
+
74
+ ;; Special cases for when we're adding an extended register where the extending
75
+ ;; operation can get folded into the add itself.
76
+ (rule iadd_extend_right 0 (lower (has_type (fits_in_64 ty) (iadd x (extended_value_from_value y))))
77
+ (add_extend ty x y))
78
+
79
+ (rule iadd_extend_left 1 (lower (has_type (fits_in_64 ty) (iadd (extended_value_from_value x) y)))
80
+ (add_extend ty y x))
81
+
82
+ ;; Special cases for when we're adding the shift of a different
83
+ ;; register by a constant amount and the shift can get folded into the add.
84
+ (rule iadd_ishl_right 7 (lower (has_type (fits_in_64 ty)
85
+ (iadd x (ishl y (iconst k)))))
86
+ (if-let amt (lshl_from_imm64 ty k))
87
+ (add_shift ty x y amt))
88
+
89
+ (rule iadd_ishl_left 6 (lower (has_type (fits_in_64 ty)
90
+ (iadd (ishl x (iconst k)) y)))
91
+ (if-let amt (lshl_from_imm64 ty k))
92
+ (add_shift ty y x amt))
93
+
94
+ ;; Fold an `iadd` and `imul` combination into a `madd` instruction.
95
+ (rule iadd_imul_right 7 (lower (has_type (fits_in_64 ty) (iadd x (imul y z))))
96
+ (madd ty y z x))
97
+
98
+ (rule iadd_imul_left 6 (lower (has_type (fits_in_64 ty) (iadd (imul x y) z)))
99
+ (madd ty x y z))
100
+
101
+ ;; Fold an `isub` and `imul` combination into a `msub` instruction.
102
+ (rule isub_imul (lower (has_type (fits_in_64 ty) (isub x (imul y z))))
103
+ (msub ty y z x))
104
+
105
+ ;; vectors
106
+
107
+ (rule -2 (lower (has_type ty @ (multi_lane _ _) (iadd x y)))
108
+ (add_vec x y (vector_size ty)))
109
+
110
+ ;; `i128`
111
+ (rule -3 (lower (has_type $I128 (iadd x y)))
112
+ (let
113
+ ;; Get the high/low registers for `x`.
114
+ ((x_regs ValueRegs x)
115
+ (x_lo Reg (value_regs_get x_regs 0))
116
+ (x_hi Reg (value_regs_get x_regs 1))
117
+
118
+ ;; Get the high/low registers for `y`.
119
+ (y_regs ValueRegs y)
120
+ (y_lo Reg (value_regs_get y_regs 0))
121
+ (y_hi Reg (value_regs_get y_regs 1)))
122
+ ;; the actual addition is `adds` followed by `adc` which comprises the
123
+ ;; low/high bits of the result
124
+ (with_flags
125
+ (add_with_flags_paired $I64 x_lo y_lo)
126
+ (adc_paired $I64 x_hi y_hi))))
127
+
128
+ ;;;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
129
+
130
+ ;; When a single element of one vector is broadcast to all the destination
131
+ ;; lanes then the `dup` instruction can be used for this operation. Note that
132
+ ;; for now this only matches lane selection from the first vector `a`, but
133
+ ;; if necessary in the future rules can be added to select from `b` as well.
134
+ (rule 6 (lower (shuffle a b (shuffle_dup8_from_imm n)))
135
+ (vec_dup_from_fpu a (VectorSize.Size8x16) n))
136
+ (rule 5 (lower (shuffle a b (shuffle_dup16_from_imm n)))
137
+ (vec_dup_from_fpu a (VectorSize.Size16x8) n))
138
+ (rule 4 (lower (shuffle a b (shuffle_dup32_from_imm n)))
139
+ (vec_dup_from_fpu a (VectorSize.Size32x4) n))
140
+ (rule 3 (lower (shuffle a b (shuffle_dup64_from_imm n)))
141
+ (vec_dup_from_fpu a (VectorSize.Size64x2) n))
142
+
143
+ ;; If the `Immediate` specified to the extractor looks like a duplication of the
144
+ ;; `n`th lane of the first vector of size K-byte lanes, then each extractor
145
+ ;; returns the `n` value as a `u8` to be used as part of a `vec_dup_from_fpu`
146
+ ;; instruction. Note that there's a different extractor for each bit-width of
147
+ ;; lane.
148
+ (decl shuffle_dup8_from_imm (u8) Immediate)
149
+ (extern extractor shuffle_dup8_from_imm shuffle_dup8_from_imm)
150
+ (decl shuffle_dup16_from_imm (u8) Immediate)
151
+ (extern extractor shuffle_dup16_from_imm shuffle_dup16_from_imm)
152
+ (decl shuffle_dup32_from_imm (u8) Immediate)
153
+ (extern extractor shuffle_dup32_from_imm shuffle_dup32_from_imm)
154
+ (decl shuffle_dup64_from_imm (u8) Immediate)
155
+ (extern extractor shuffle_dup64_from_imm shuffle_dup64_from_imm)
156
+
157
+ ;; When the shuffle looks like "concatenate `a` and `b` and shift right by n*8
158
+ ;; bytes", that's an `ext` instruction.
159
+ (rule 2 (lower (shuffle a b (vec_extract_imm4_from_immediate n)))
160
+ (vec_extract a b n))
161
+
162
+ ;; Attempts to extract `n` from the specified shuffle `Immediate` where each
163
+ ;; byte of the `Immediate` is a consecutive sequence starting from `n`. This
164
+ ;; value of `n` is used as part of the `vec_extract` instruction which extracts
165
+ ;; consecutive bytes from two vectors into one final vector, offset by `n`
166
+ ;; bytes.
167
+ (decl vec_extract_imm4_from_immediate (u8) Immediate)
168
+ (extern extractor vec_extract_imm4_from_immediate vec_extract_imm4_from_immediate)
169
+
170
+ ;; Rules for the `uzp1` and `uzp2` instructions which gather even-numbered lanes
171
+ ;; or odd-numbered lanes
172
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1e1c_1a18_1614_1210_0e0c_0a08_0604_0200)))
173
+ (vec_uzp1 a b (VectorSize.Size8x16)))
174
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1d_1b19_1715_1311_0f0d_0b09_0705_0301)))
175
+ (vec_uzp2 a b (VectorSize.Size8x16)))
176
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1d1c_1918_1514_1110_0d0c_0908_0504_0100)))
177
+ (vec_uzp1 a b (VectorSize.Size16x8)))
178
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_1b1a_1716_1312_0f0e_0b0a_0706_0302)))
179
+ (vec_uzp2 a b (VectorSize.Size16x8)))
180
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1b1a1918_13121110_0b0a0908_03020100)))
181
+ (vec_uzp1 a b (VectorSize.Size32x4)))
182
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_17161514_0f0e0d0c_07060504)))
183
+ (vec_uzp2 a b (VectorSize.Size32x4)))
184
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1716151413121110_0706050403020100)))
185
+ (vec_uzp1 a b (VectorSize.Size64x2)))
186
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c1b1a1918_0f0e0d0c0b0a0908)))
187
+ (vec_uzp2 a b (VectorSize.Size64x2)))
188
+
189
+ ;; Rules for the `zip1` and `zip2` instructions which interleave lanes in the
190
+ ;; low or high halves of the two input vectors.
191
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1707_1606_1505_1404_1303_1202_1101_1000)))
192
+ (vec_zip1 a b (VectorSize.Size8x16)))
193
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f0f_1e0e_1d0d_1c0c_1b0b_1a0a_1909_1808)))
194
+ (vec_zip2 a b (VectorSize.Size8x16)))
195
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1716_0706_1514_0504_1312_0302_1110_0100)))
196
+ (vec_zip1 a b (VectorSize.Size16x8)))
197
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1d1c_0d0c_1b1a_0b0a_1918_0908)))
198
+ (vec_zip2 a b (VectorSize.Size16x8)))
199
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x17161514_07060504_13121110_03020100)))
200
+ (vec_zip1 a b (VectorSize.Size32x4)))
201
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_1b1a1918_0b0a0908)))
202
+ (vec_zip2 a b (VectorSize.Size32x4)))
203
+ ;; Note that zip1/zip2 for i64x2 vectors is omitted since it's already covered
204
+ ;; by the i64x2 cases of uzp1/uzp2 above where both zip and uzp have the same
205
+ ;; semantics for 64-bit lanes.
206
+
207
+ ;; Rules for the `trn1` and `trn2` instructions which interleave odd or even
208
+ ;; lanes in the two input vectors.
209
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1e0e_1c0c_1a0a_1808_1606_1404_1202_1000)))
210
+ (vec_trn1 a b (VectorSize.Size8x16)))
211
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f0f_1d0d_1b0b_1909_1707_1505_1303_1101)))
212
+ (vec_trn2 a b (VectorSize.Size8x16)))
213
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1d1c_0d0c_1918_0908_1514_0504_1110_0100)))
214
+ (vec_trn1 a b (VectorSize.Size16x8)))
215
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1b1a_0b0a_1716_0706_1312_0302)))
216
+ (vec_trn2 a b (VectorSize.Size16x8)))
217
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1b1a1918_0b0a0908_13121110_03020100)))
218
+ (vec_trn1 a b (VectorSize.Size32x4)))
219
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_17161514_07060504)))
220
+ (vec_trn2 a b (VectorSize.Size32x4)))
221
+ ;; Note that trn1/trn2 for i64x2 vectors is omitted since it's already covered
222
+ ;; by the i64x2 cases of uzp1/uzp2 above where both trn and uzp have the same
223
+ ;; semantics for 64-bit lanes.
224
+
225
+ ;; Rules for the `rev{16,32,64}` instructions where reversals happen at either
226
+ ;; the byte level, the 16-bit level, or 32-bit level. Note that all of these
227
+ ;; patterns only match reversals in the first operand, but they can
228
+ ;; theoretically be extended if necessary to reversals in the second operand.
229
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x0e0f_0c0d_0a0b_0809_0607_0405_0203_0001)))
230
+ (rev16 a (VectorSize.Size8x16)))
231
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x0c0d0e0f_08090a0b_04050607_00010203)))
232
+ (rev32 a (VectorSize.Size8x16)))
233
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x0d0c0f0e_09080b0a_05040706_01000302)))
234
+ (rev32 a (VectorSize.Size16x8)))
235
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x08090a0b0c0d0e0f_0001020304050607)))
236
+ (rev64 a (VectorSize.Size8x16)))
237
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x09080b0a0d0c0f0e_0100030205040706)))
238
+ (rev64 a (VectorSize.Size16x8)))
239
+ (rule 1 (lower (shuffle a b (u128_from_immediate 0x0b0a09080f0e0d0c_0302010007060504)))
240
+ (rev64 a (VectorSize.Size32x4)))
241
+
242
+ (rule (lower (has_type ty (shuffle rn rn2 (u128_from_immediate mask))))
243
+ (let ((mask_reg Reg (constant_f128 mask)))
244
+ (vec_tbl2 rn rn2 mask_reg ty)))
245
+
246
+ ;;;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
247
+
248
+ (rule (lower (has_type vec_i128_ty (swizzle rn rm)))
249
+ (vec_tbl rn rm))
250
+
251
+ ;;;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
252
+
253
+ (rule (lower (isplit x @ (value_type $I128)))
254
+ (let
255
+ ((x_regs ValueRegs x)
256
+ (x_lo ValueRegs (value_regs_get x_regs 0))
257
+ (x_hi ValueRegs (value_regs_get x_regs 1)))
258
+ (output_pair x_lo x_hi)))
259
+
260
+ ;; Special-case the lowering of an `isplit` of a 128-bit multiply where the
261
+ ;; lower bits of the result are discarded and the operands are sign or zero
262
+ ;; extended. This maps directly to `umulh` and `smulh`.
263
+ (rule 1 (lower i @ (isplit (has_type $I128 (imul (uextend x) (uextend y)))))
264
+ (if-let (first_result lo) i)
265
+ (if-let true (value_is_unused lo))
266
+ (output_pair (invalid_reg)
267
+ (umulh $I64 (put_in_reg_zext64 x) (put_in_reg_zext64 y))))
268
+
269
+ (rule 1 (lower i @ (isplit (has_type $I128 (imul (sextend x) (sextend y)))))
270
+ (if-let (first_result lo) i)
271
+ (if-let true (value_is_unused lo))
272
+ (output_pair (invalid_reg)
273
+ (smulh $I64 (put_in_reg_sext64 x) (put_in_reg_sext64 y))))
274
+
275
+ ;;;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
276
+
277
+ (rule (lower (has_type $I128 (iconcat lo hi)))
278
+ (output (value_regs lo hi)))
279
+
280
+ ;;;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
281
+
282
+ (rule (lower (has_type $F32X4 (scalar_to_vector x)))
283
+ (fpu_extend x (ScalarSize.Size32)))
284
+
285
+ (rule (lower (has_type $F64X2 (scalar_to_vector x)))
286
+ (fpu_extend x (ScalarSize.Size64)))
287
+
288
+ (rule -1 (lower (scalar_to_vector x @ (value_type $I64)))
289
+ (mov_to_fpu x (ScalarSize.Size64)))
290
+
291
+ (rule -2 (lower (scalar_to_vector x @ (value_type (int_fits_in_32 _))))
292
+ (mov_to_fpu (put_in_reg_zext32 x) (ScalarSize.Size32)))
293
+
294
+ ;;;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
295
+
296
+ ;; cmeq vtmp.2d, vm.2d, #0
297
+ ;; addp dtmp, vtmp.2d
298
+ ;; fcmp dtmp, dtmp
299
+ ;; cset xd, eq
300
+ ;;
301
+ ;; Note that after the ADDP the value of the temporary register will be either
302
+ ;; 0 when all input elements are true, i.e. non-zero, or a NaN otherwise
303
+ ;; (either -1 or -2 when represented as an integer); NaNs are the only
304
+ ;; floating-point numbers that compare unequal to themselves.
305
+ (rule (lower (vall_true x @ (value_type (multi_lane 64 2))))
306
+ (let ((x1 Reg (cmeq0 x (VectorSize.Size64x2)))
307
+ (x2 Reg (addp x1 x1 (VectorSize.Size64x2))))
308
+ (with_flags (fpu_cmp (ScalarSize.Size64) x2 x2)
309
+ (materialize_bool_result (Cond.Eq)))))
310
+
311
+ (rule (lower (vall_true x @ (value_type (multi_lane 32 2))))
312
+ (let ((x1 Reg (mov_from_vec x 0 (ScalarSize.Size64))))
313
+ (with_flags (cmp_rr_shift (OperandSize.Size64) (zero_reg) x1 32)
314
+ (ccmp_imm
315
+ (OperandSize.Size32)
316
+ x1
317
+ (u8_into_uimm5 0)
318
+ (nzcv false true false false)
319
+ (Cond.Ne)))))
320
+
321
+ ;; This operation is implemented by using uminv to create a scalar value, which
322
+ ;; is then compared against zero.
323
+ ;;
324
+ ;; uminv bn, vm.16b
325
+ ;; mov xm, vn.d[0]
326
+ ;; cmp xm, #0
327
+ ;; cset xm, ne
328
+ (rule -1 (lower (vall_true x @ (value_type (lane_fits_in_32 ty))))
329
+ (if (not_vec32x2 ty))
330
+ (let ((x1 Reg (vec_lanes (VecLanesOp.Uminv) x (vector_size ty)))
331
+ (x2 Reg (mov_from_vec x1 0 (ScalarSize.Size64))))
332
+ (with_flags (cmp_imm (OperandSize.Size64) x2 (u8_into_imm12 0))
333
+ (materialize_bool_result (Cond.Ne)))))
334
+
335
+ ;;;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
336
+
337
+ (rule (lower (vany_true x @ (value_type in_ty)))
338
+ (with_flags (vanytrue x in_ty)
339
+ (materialize_bool_result (Cond.Ne))))
340
+
341
+ ;;;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
342
+
343
+ ;; special case for the `i16x8.extadd_pairwise_i8x16_s` wasm instruction
344
+ (rule (lower (has_type $I16X8 (iadd_pairwise (swiden_low x) (swiden_high x))))
345
+ (saddlp8 x))
346
+
347
+ ;; special case for the `i32x4.extadd_pairwise_i16x8_s` wasm instruction
348
+ (rule (lower (has_type $I32X4 (iadd_pairwise (swiden_low x) (swiden_high x))))
349
+ (saddlp16 x))
350
+
351
+ ;; special case for the `i16x8.extadd_pairwise_i8x16_u` wasm instruction
352
+ (rule (lower (has_type $I16X8 (iadd_pairwise (uwiden_low x) (uwiden_high x))))
353
+ (uaddlp8 x))
354
+
355
+ ;; special case for the `i32x4.extadd_pairwise_i16x8_u` wasm instruction
356
+ (rule (lower (has_type $I32X4 (iadd_pairwise (uwiden_low x) (uwiden_high x))))
357
+ (uaddlp16 x))
358
+
359
+ (rule -1 (lower (has_type ty (iadd_pairwise x y)))
360
+ (addp x y (vector_size ty)))
361
+
362
+ ;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
363
+
364
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (iabs x)))
365
+ (vec_abs x (vector_size ty)))
366
+
367
+ (rule iabs_64 2 (lower (has_type $I64 (iabs x)))
368
+ (abs (OperandSize.Size64) x))
369
+
370
+ (rule iabs_8_16_32 1 (lower (has_type (fits_in_32 ty) (iabs x)))
371
+ (abs (OperandSize.Size32) (put_in_reg_sext32 x)))
372
+
373
+ ; `rustc` implementation.
374
+ ; - create a bitmask of all 1s if negative, or 0s if positive.
375
+ ; - xor all bits by bitmask. then subtract bitmask from xor'd values.
376
+ ; - if `x` is positive, the xor'd bits = x and the mask = 0, so we end up with
377
+ ; `x - 0`.
378
+ ; - if `x` is negative, the xor'd bits = ~x and the mask = -1, so we end up with
379
+ ; `~x - (-1) = ~x + 1`, which is exactly `abs(x)`.
380
+ (rule (lower (has_type $I128 (iabs x)))
381
+ (let ((x_regs ValueRegs x)
382
+ (x_lo Reg (value_regs_get x_regs 0))
383
+ (x_hi Reg (value_regs_get x_regs 1))
384
+ (asr_reg Reg (asr_imm $I64 x_hi (imm_shift_from_u8 63)))
385
+ (eor_hi Reg (eor $I64 x_hi asr_reg))
386
+ (eor_lo Reg (eor $I64 x_lo asr_reg))
387
+ (subs_lo ProducesFlags (sub_with_flags_paired $I64 eor_lo asr_reg))
388
+ (sbc_hi ConsumesFlags (sbc_paired $I64 eor_hi asr_reg)))
389
+ (with_flags subs_lo sbc_hi)))
390
+
391
+ ;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
392
+
393
+ (rule (lower (has_type $I64X2 (avg_round x y)))
394
+ (let ((one Reg (splat_const 1 (VectorSize.Size64x2)))
395
+ (c Reg (orr_vec x y (VectorSize.Size64x2)))
396
+ (c Reg (and_vec c one (VectorSize.Size64x2)))
397
+ (x Reg (ushr_vec_imm x 1 (VectorSize.Size64x2)))
398
+ (y Reg (ushr_vec_imm y 1 (VectorSize.Size64x2)))
399
+ (sum Reg (add_vec x y (VectorSize.Size64x2))))
400
+ (add_vec c sum (VectorSize.Size64x2))))
401
+
402
+ (rule -1 (lower (has_type (lane_fits_in_32 ty) (avg_round x y)))
403
+ (vec_rrr (VecALUOp.Urhadd) x y (vector_size ty)))
404
+
405
+ ;;;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
406
+
407
+ (rule (lower (has_type ty @ (multi_lane _ _) (sqmul_round_sat x y)))
408
+ (vec_rrr (VecALUOp.Sqrdmulh) x y (vector_size ty)))
409
+
410
+ ;;;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
411
+
412
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fadd rn rm)))
413
+ (vec_rrr (VecALUOp.Fadd) rn rm (vector_size ty)))
414
+
415
+ (rule (lower (has_type (ty_scalar_float ty) (fadd rn rm)))
416
+ (fpu_rrr (FPUOp2.Add) rn rm (scalar_size ty)))
417
+
418
+ ;;;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
419
+
420
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fsub rn rm)))
421
+ (vec_rrr (VecALUOp.Fsub) rn rm (vector_size ty)))
422
+
423
+ (rule (lower (has_type (ty_scalar_float ty) (fsub rn rm)))
424
+ (fpu_rrr (FPUOp2.Sub) rn rm (scalar_size ty)))
425
+
426
+ ;;;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
427
+
428
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fmul rn rm)))
429
+ (vec_rrr (VecALUOp.Fmul) rn rm (vector_size ty)))
430
+
431
+ (rule (lower (has_type (ty_scalar_float ty) (fmul rn rm)))
432
+ (fpu_rrr (FPUOp2.Mul) rn rm (scalar_size ty)))
433
+
434
+ ;;;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
435
+
436
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fdiv rn rm)))
437
+ (vec_rrr (VecALUOp.Fdiv) rn rm (vector_size ty)))
438
+
439
+ (rule (lower (has_type (ty_scalar_float ty) (fdiv rn rm)))
440
+ (fpu_rrr (FPUOp2.Div) rn rm (scalar_size ty)))
441
+
442
+ ;;;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
443
+
444
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fmin rn rm)))
445
+ (vec_rrr (VecALUOp.Fmin) rn rm (vector_size ty)))
446
+
447
+ (rule (lower (has_type (ty_scalar_float ty) (fmin rn rm)))
448
+ (fpu_rrr (FPUOp2.Min) rn rm (scalar_size ty)))
449
+
450
+ ;;;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
451
+
452
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fmax rn rm)))
453
+ (vec_rrr (VecALUOp.Fmax) rn rm (vector_size ty)))
454
+
455
+ (rule (lower (has_type (ty_scalar_float ty) (fmax rn rm)))
456
+ (fpu_rrr (FPUOp2.Max) rn rm (scalar_size ty)))
457
+
458
+ ;;;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
459
+
460
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (sqrt x)))
461
+ (vec_misc (VecMisc2.Fsqrt) x (vector_size ty)))
462
+
463
+ (rule (lower (has_type (ty_scalar_float ty) (sqrt x)))
464
+ (fpu_rr (FPUOp1.Sqrt) x (scalar_size ty)))
465
+
466
+ ;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
467
+
468
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fneg x)))
469
+ (vec_misc (VecMisc2.Fneg) x (vector_size ty)))
470
+
471
+ (rule (lower (has_type (ty_scalar_float ty) (fneg x)))
472
+ (fpu_rr (FPUOp1.Neg) x (scalar_size ty)))
473
+
474
+ ;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
475
+
476
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (fabs x)))
477
+ (vec_misc (VecMisc2.Fabs) x (vector_size ty)))
478
+
479
+ (rule (lower (has_type (ty_scalar_float ty) (fabs x)))
480
+ (fpu_rr (FPUOp1.Abs) x (scalar_size ty)))
481
+
482
+ ;;;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
483
+
484
+ (rule (lower (has_type $F64 (fpromote x)))
485
+ (fpu_rr (FPUOp1.Cvt32To64) x (ScalarSize.Size32)))
486
+
487
+ ;;;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
488
+
489
+ (rule (lower (has_type $F32 (fdemote x)))
490
+ (fpu_rr (FPUOp1.Cvt64To32) x (ScalarSize.Size64)))
491
+
492
+ ;;;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
493
+
494
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (ceil x)))
495
+ (vec_misc (VecMisc2.Frintp) x (vector_size ty)))
496
+
497
+ (rule (lower (has_type $F32 (ceil x)))
498
+ (fpu_round (FpuRoundMode.Plus32) x))
499
+
500
+ (rule (lower (has_type $F64 (ceil x)))
501
+ (fpu_round (FpuRoundMode.Plus64) x))
502
+
503
+ ;;;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
504
+
505
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (floor x)))
506
+ (vec_misc (VecMisc2.Frintm) x (vector_size ty)))
507
+
508
+ (rule (lower (has_type $F32 (floor x)))
509
+ (fpu_round (FpuRoundMode.Minus32) x))
510
+
511
+ (rule (lower (has_type $F64 (floor x)))
512
+ (fpu_round (FpuRoundMode.Minus64) x))
513
+
514
+ ;;;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
515
+
516
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (trunc x)))
517
+ (vec_misc (VecMisc2.Frintz) x (vector_size ty)))
518
+
519
+ (rule (lower (has_type $F32 (trunc x)))
520
+ (fpu_round (FpuRoundMode.Zero32) x))
521
+
522
+ (rule (lower (has_type $F64 (trunc x)))
523
+ (fpu_round (FpuRoundMode.Zero64) x))
524
+
525
+ ;;;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
526
+
527
+ (rule -1 (lower (has_type ty @ (multi_lane _ _) (nearest x)))
528
+ (vec_misc (VecMisc2.Frintn) x (vector_size ty)))
529
+
530
+ (rule (lower (has_type $F32 (nearest x)))
531
+ (fpu_round (FpuRoundMode.Nearest32) x))
532
+
533
+ (rule (lower (has_type $F64 (nearest x)))
534
+ (fpu_round (FpuRoundMode.Nearest64) x))
535
+
536
+ ;;;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
537
+
538
+ (type IsFneg (enum (Result (negate u64) (value Value))))
539
+
540
+ (decl pure is_fneg (Value) IsFneg)
541
+ (rule 1 (is_fneg (fneg n)) (IsFneg.Result 1 n))
542
+ (rule 0 (is_fneg n) (IsFneg.Result 0 n))
543
+
544
+ (decl pure is_fneg_neg (IsFneg) u64)
545
+ (rule (is_fneg_neg (IsFneg.Result n _)) n)
546
+
547
+ (decl pure get_fneg_value (IsFneg) Value)
548
+ (rule (get_fneg_value (IsFneg.Result _ v)) v)
549
+
550
+ (decl fmadd_series (Type u64 u64 Value Value Value) InstOutput)
551
+ ;; MAdd: + x * y + z
552
+ (rule 0 (fmadd_series (ty_scalar_float ty) 0 0 x y z) (fpu_rrrr (FPUOp3.MAdd) (scalar_size ty) x y z))
553
+ ;; MSub: - x * y + z
554
+ (rule 0 (fmadd_series (ty_scalar_float ty) 1 0 x y z) (fpu_rrrr (FPUOp3.MSub) (scalar_size ty) x y z))
555
+ ;; NMAdd: - x * y - z
556
+ (rule 0 (fmadd_series (ty_scalar_float ty) 1 1 x y z) (fpu_rrrr (FPUOp3.NMAdd) (scalar_size ty) x y z))
557
+ ;; NMSub: + x * y - z
558
+ (rule 0 (fmadd_series (ty_scalar_float ty) 0 1 x y z) (fpu_rrrr (FPUOp3.NMSub) (scalar_size ty) x y z))
559
+
560
+ (rule (lower (has_type (ty_scalar_float ty) (fma x_src y_src z_src)))
561
+ (let
562
+ ((x_res IsFneg (is_fneg x_src))
563
+ (y_res IsFneg (is_fneg y_src))
564
+ (z_res IsFneg (is_fneg z_src)))
565
+ (fmadd_series ty (u64_xor (is_fneg_neg x_res) (is_fneg_neg y_res)) (is_fneg_neg z_res) (get_fneg_value x_res) (get_fneg_value y_res) (get_fneg_value z_res))))
566
+
567
+ ;; Delegate vector-based lowerings to helpers below
568
+ (rule 1 (lower (has_type ty @ (multi_lane _ _) (fma x y z)))
569
+ (lower_fmla (VecALUModOp.Fmla) x y z (vector_size ty)))
570
+
571
+ ;; Lowers a fused-multiply-add operation handling various forms of the
572
+ ;; instruction to get maximal coverage of what's available on AArch64.
573
+ (decl lower_fmla (VecALUModOp Value Value Value VectorSize) Reg)
574
+
575
+ ;; Base case, emit the op requested.
576
+ (rule (lower_fmla op x y z size)
577
+ (vec_rrr_mod op z x y size))
578
+
579
+ ;; Special case: if one of the multiplicands are a splat then the element-based
580
+ ;; fma can be used instead with 0 as the element index.
581
+ (rule 1 (lower_fmla op (splat x) y z size)
582
+ (vec_fmla_elem op z y x size 0))
583
+ (rule 2 (lower_fmla op x (splat y) z size)
584
+ (vec_fmla_elem op z x y size 0))
585
+
586
+ ;; Special case: if one of the multiplicands is a shuffle to broadcast a
587
+ ;; single element of a vector then the element-based fma can be used like splat
588
+ ;; above.
589
+ ;;
590
+ ;; Note that in Cranelift shuffle always has i8x16 inputs and outputs so
591
+ ;; a `bitcast` is matched here explicitly since that's the main way a shuffle
592
+ ;; output will be fed into this instruction.
593
+ (rule 3 (lower_fmla op (bitcast _ (shuffle x x (shuffle32_from_imm n n n n))) y z size @ (VectorSize.Size32x4))
594
+ (if-let true (u64_lt n 4))
595
+ (vec_fmla_elem op z y x size n))
596
+ (rule 4 (lower_fmla op x (bitcast _ (shuffle y y (shuffle32_from_imm n n n n))) z size @ (VectorSize.Size32x4))
597
+ (if-let true (u64_lt n 4))
598
+ (vec_fmla_elem op z x y size n))
599
+ (rule 3 (lower_fmla op (bitcast _ (shuffle x x (shuffle64_from_imm n n))) y z size @ (VectorSize.Size64x2))
600
+ (if-let true (u64_lt n 2))
601
+ (vec_fmla_elem op z y x size n))
602
+ (rule 4 (lower_fmla op x (bitcast _ (shuffle y y (shuffle64_from_imm n n))) z size @ (VectorSize.Size64x2))
603
+ (if-let true (u64_lt n 2))
604
+ (vec_fmla_elem op z x y size n))
605
+
606
+ ;; Special case: if one of the multiplicands is `fneg` then peel that away,
607
+ ;; reverse the operation being performed, and then recurse on `lower_fmla`
608
+ ;; again to generate the actual instruction.
609
+ ;;
610
+ ;; Note that these are the highest priority cases for `lower_fmla` to peel
611
+ ;; away as many `fneg` operations as possible.
612
+ (rule 5 (lower_fmla op (fneg x) y z size)
613
+ (lower_fmla (neg_fmla op) x y z size))
614
+ (rule 6 (lower_fmla op x (fneg y) z size)
615
+ (lower_fmla (neg_fmla op) x y z size))
616
+
617
+ (decl neg_fmla (VecALUModOp) VecALUModOp)
618
+ (rule (neg_fmla (VecALUModOp.Fmla)) (VecALUModOp.Fmls))
619
+ (rule (neg_fmla (VecALUModOp.Fmls)) (VecALUModOp.Fmla))
620
+
621
+ ;;;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
622
+
623
+ (rule (lower (has_type ty (fcopysign x y)))
624
+ (fcopy_sign x y ty))
625
+
626
+ ;;;; Rules for `fcvt_to_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
627
+
628
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint x @ (value_type $F32))))
629
+ (fpu_to_int_cvt (FpuToIntOp.F32ToU32) x false $F32 out_ty))
630
+
631
+ (rule 1 (lower (has_type $I64 (fcvt_to_uint x @ (value_type $F32))))
632
+ (fpu_to_int_cvt (FpuToIntOp.F32ToU64) x false $F32 $I64))
633
+
634
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint x @ (value_type $F64))))
635
+ (fpu_to_int_cvt (FpuToIntOp.F64ToU32) x false $F64 out_ty))
636
+
637
+ (rule 1 (lower (has_type $I64 (fcvt_to_uint x @ (value_type $F64))))
638
+ (fpu_to_int_cvt (FpuToIntOp.F64ToU64) x false $F64 $I64))
639
+
640
+ ;;;; Rules for `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
641
+
642
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint x @ (value_type $F32))))
643
+ (fpu_to_int_cvt (FpuToIntOp.F32ToI32) x true $F32 out_ty))
644
+
645
+ (rule 1 (lower (has_type $I64 (fcvt_to_sint x @ (value_type $F32))))
646
+ (fpu_to_int_cvt (FpuToIntOp.F32ToI64) x true $F32 $I64))
647
+
648
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint x @ (value_type $F64))))
649
+ (fpu_to_int_cvt (FpuToIntOp.F64ToI32) x true $F64 out_ty))
650
+
651
+ (rule 1 (lower (has_type $I64 (fcvt_to_sint x @ (value_type $F64))))
652
+ (fpu_to_int_cvt (FpuToIntOp.F64ToI64) x true $F64 $I64))
653
+
654
+ ;;;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
655
+
656
+ (rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_from_uint x @ (value_type (multi_lane 32 _)))))
657
+ (vec_misc (VecMisc2.Ucvtf) x (vector_size ty)))
658
+
659
+ (rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_from_uint x @ (value_type (multi_lane 64 _)))))
660
+ (vec_misc (VecMisc2.Ucvtf) x (vector_size ty)))
661
+
662
+ (rule (lower (has_type $F32 (fcvt_from_uint x @ (value_type (fits_in_32 _)))))
663
+ (int_to_fpu (IntToFpuOp.U32ToF32) (put_in_reg_zext32 x)))
664
+
665
+ (rule (lower (has_type $F64 (fcvt_from_uint x @ (value_type (fits_in_32 _)))))
666
+ (int_to_fpu (IntToFpuOp.U32ToF64) (put_in_reg_zext32 x)))
667
+
668
+ (rule 1 (lower (has_type $F32 (fcvt_from_uint x @ (value_type $I64))))
669
+ (int_to_fpu (IntToFpuOp.U64ToF32) x))
670
+
671
+ (rule 1 (lower (has_type $F64 (fcvt_from_uint x @ (value_type $I64))))
672
+ (int_to_fpu (IntToFpuOp.U64ToF64) x))
673
+
674
+ ;;;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
675
+
676
+ (rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_from_sint x @ (value_type (multi_lane 32 _)))))
677
+ (vec_misc (VecMisc2.Scvtf) x (vector_size ty)))
678
+
679
+ (rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_from_sint x @ (value_type (multi_lane 64 _)))))
680
+ (vec_misc (VecMisc2.Scvtf) x (vector_size ty)))
681
+
682
+ (rule (lower (has_type $F32 (fcvt_from_sint x @ (value_type (fits_in_32 _)))))
683
+ (int_to_fpu (IntToFpuOp.I32ToF32) (put_in_reg_sext32 x)))
684
+
685
+ (rule (lower (has_type $F64 (fcvt_from_sint x @ (value_type (fits_in_32 _)))))
686
+ (int_to_fpu (IntToFpuOp.I32ToF64) (put_in_reg_sext32 x)))
687
+
688
+ (rule 1 (lower (has_type $F32 (fcvt_from_sint x @ (value_type $I64))))
689
+ (int_to_fpu (IntToFpuOp.I64ToF32) x))
690
+
691
+ (rule 1 (lower (has_type $F64 (fcvt_from_sint x @ (value_type $I64))))
692
+ (int_to_fpu (IntToFpuOp.I64ToF64) x))
693
+
694
+ ;;;; Rules for `fcvt_to_uint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
695
+
696
+ (rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_to_uint_sat x @ (value_type (multi_lane 32 _)))))
697
+ (vec_misc (VecMisc2.Fcvtzu) x (vector_size ty)))
698
+
699
+ (rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_to_uint_sat x @ (value_type (multi_lane 64 _)))))
700
+ (vec_misc (VecMisc2.Fcvtzu) x (vector_size ty)))
701
+
702
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint_sat x @ (value_type $F32))))
703
+ (fpu_to_int_cvt_sat (FpuToIntOp.F32ToU32) x false out_ty))
704
+
705
+ (rule 1 (lower (has_type $I64 (fcvt_to_uint_sat x @ (value_type $F32))))
706
+ (fpu_to_int_cvt_sat (FpuToIntOp.F32ToU64) x false $I64))
707
+
708
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_uint_sat x @ (value_type $F64))))
709
+ (fpu_to_int_cvt_sat (FpuToIntOp.F64ToU32) x false out_ty))
710
+
711
+ (rule 1 (lower (has_type $I64 (fcvt_to_uint_sat x @ (value_type $F64))))
712
+ (fpu_to_int_cvt_sat (FpuToIntOp.F64ToU64) x false $I64))
713
+
714
+ ;;;; Rules for `fcvt_to_sint_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
715
+
716
+ (rule -1 (lower (has_type ty @ (multi_lane 32 _) (fcvt_to_sint_sat x @ (value_type (multi_lane 32 _)))))
717
+ (vec_misc (VecMisc2.Fcvtzs) x (vector_size ty)))
718
+
719
+ (rule -1 (lower (has_type ty @ (multi_lane 64 _) (fcvt_to_sint_sat x @ (value_type (multi_lane 64 _)))))
720
+ (vec_misc (VecMisc2.Fcvtzs) x (vector_size ty)))
721
+
722
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint_sat x @ (value_type $F32))))
723
+ (fpu_to_int_cvt_sat (FpuToIntOp.F32ToI32) x true out_ty))
724
+
725
+ (rule 1 (lower (has_type $I64 (fcvt_to_sint_sat x @ (value_type $F32))))
726
+ (fpu_to_int_cvt_sat (FpuToIntOp.F32ToI64) x true $I64))
727
+
728
+ (rule (lower (has_type (fits_in_32 out_ty) (fcvt_to_sint_sat x @ (value_type $F64))))
729
+ (fpu_to_int_cvt_sat (FpuToIntOp.F64ToI32) x true out_ty))
730
+
731
+ (rule 1 (lower (has_type $I64 (fcvt_to_sint_sat x @ (value_type $F64))))
732
+ (fpu_to_int_cvt_sat (FpuToIntOp.F64ToI64) x true $I64))
733
+
734
+ ;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
735
+
736
+ ;; `i64` and smaller
737
+
738
+ ;; Base case, simply subtracting things in registers.
739
+ (rule isub_base_case -4 (lower (has_type (fits_in_64 ty) (isub x y)))
740
+ (sub ty x y))
741
+
742
+ ;; Special case for when one operand is an immediate that fits in 12 bits.
743
+ (rule isub_imm12 0 (lower (has_type (fits_in_64 ty) (isub x (imm12_from_value y))))
744
+ (sub_imm ty x y))
745
+
746
+ ;; Same as the previous special case, except we can switch the subtraction to an
747
+ ;; addition if the negated immediate fits in 12 bits.
748
+ (rule isub_imm12_neg 2 (lower (has_type (fits_in_64 ty) (isub x y)))
749
+ (if-let imm12_neg (imm12_from_negated_value y))
750
+ (add_imm ty x imm12_neg))
751
+
752
+ ;; Special cases for when we're subtracting an extended register where the
753
+ ;; extending operation can get folded into the sub itself.
754
+ (rule isub_extend 1 (lower (has_type (fits_in_64 ty) (isub x (extended_value_from_value y))))
755
+ (sub_extend ty x y))
756
+
757
+ ;; Finally a special case for when we're subtracting the shift of a different
758
+ ;; register by a constant amount and the shift can get folded into the sub.
759
+ (rule isub_ishl -3 (lower (has_type (fits_in_64 ty)
760
+ (isub x (ishl y (iconst k)))))
761
+ (if-let amt (lshl_from_imm64 ty k))
762
+ (sub_shift ty x y amt))
763
+
764
+ ;; vectors
765
+ (rule -2 (lower (has_type ty @ (multi_lane _ _) (isub x y)))
766
+ (sub_vec x y (vector_size ty)))
767
+
768
+ ;; `i128`
769
+ (rule -1 (lower (has_type $I128 (isub x y)))
770
+ (sub_i128 x y))
771
+
772
+ ;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
773
+
774
+ (rule (lower (has_type (ty_vec128 ty) (uadd_sat x y)))
775
+ (uqadd x y (vector_size ty)))
776
+
777
+ ;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
778
+
779
+ (rule (lower (has_type (ty_vec128 ty) (sadd_sat x y)))
780
+ (sqadd x y (vector_size ty)))
781
+
782
+ ;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
783
+
784
+ (rule (lower (has_type (ty_vec128 ty) (usub_sat x y)))
785
+ (uqsub x y (vector_size ty)))
786
+
787
+ ;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
788
+
789
+ (rule (lower (has_type (ty_vec128 ty) (ssub_sat x y)))
790
+ (sqsub x y (vector_size ty)))
791
+
792
+ ;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
793
+
794
+ ;; `i64` and smaller.
795
+ (rule ineg_base_case 1 (lower (has_type (fits_in_64 ty) (ineg x)))
796
+ (sub ty (zero_reg) x))
797
+
798
+ ;; `i128`
799
+ (rule 2 (lower (has_type $I128 (ineg x)))
800
+ (sub_i128 (value_regs_zero) x))
801
+
802
+ ;; vectors.
803
+ (rule (lower (has_type (ty_vec128 ty) (ineg x)))
804
+ (neg x (vector_size ty)))
805
+
806
+ ;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
807
+
808
+ ;; `i64` and smaller.
809
+ (rule imul_base_case -3 (lower (has_type (fits_in_64 ty) (imul x y)))
810
+ (madd ty x y (zero_reg)))
811
+
812
+ ;; `i128`.
813
+ (rule -1 (lower (has_type $I128 (imul x y)))
814
+ (let
815
+ ;; Get the high/low registers for `x`.
816
+ ((x_regs ValueRegs x)
817
+ (x_lo Reg (value_regs_get x_regs 0))
818
+ (x_hi Reg (value_regs_get x_regs 1))
819
+
820
+ ;; Get the high/low registers for `y`.
821
+ (y_regs ValueRegs y)
822
+ (y_lo Reg (value_regs_get y_regs 0))
823
+ (y_hi Reg (value_regs_get y_regs 1))
824
+
825
+ ;; 128bit mul formula:
826
+ ;; dst_lo = x_lo * y_lo
827
+ ;; dst_hi = umulhi(x_lo, y_lo) + (x_lo * y_hi) + (x_hi * y_lo)
828
+ ;;
829
+ ;; We can convert the above formula into the following
830
+ ;; umulh dst_hi, x_lo, y_lo
831
+ ;; madd dst_hi, x_lo, y_hi, dst_hi
832
+ ;; madd dst_hi, x_hi, y_lo, dst_hi
833
+ ;; madd dst_lo, x_lo, y_lo, zero
834
+ (dst_hi1 Reg (umulh $I64 x_lo y_lo))
835
+ (dst_hi2 Reg (madd $I64 x_lo y_hi dst_hi1))
836
+ (dst_hi Reg (madd $I64 x_hi y_lo dst_hi2))
837
+ (dst_lo Reg (madd $I64 x_lo y_lo (zero_reg))))
838
+ (value_regs dst_lo dst_hi)))
839
+
840
+ ;; Special cases where the upper bits are sign-or-zero extended of the lower bits
841
+ ;; so the calculation here is much simpler with just a `umulh` or `smulh`
842
+ ;; instead of the additions above as well.
843
+ (rule (lower (has_type $I128 (imul (uextend x) (uextend y))))
844
+ (let (
845
+ (x Reg (put_in_reg_zext64 x))
846
+ (y Reg (put_in_reg_zext64 y))
847
+ )
848
+ (value_regs
849
+ (madd $I64 x y (zero_reg))
850
+ (umulh $I64 x y))))
851
+ (rule (lower (has_type $I128 (imul (sextend x) (sextend y))))
852
+ (let (
853
+ (x Reg (put_in_reg_sext64 x))
854
+ (y Reg (put_in_reg_sext64 y))
855
+ )
856
+ (value_regs
857
+ (madd $I64 x y (zero_reg))
858
+ (smulh $I64 x y))))
859
+
860
+ ;; Case for i8x16, i16x8, and i32x4.
861
+ (rule -2 (lower (has_type (ty_vec128 ty @ (not_i64x2)) (imul x y)))
862
+ (mul x y (vector_size ty)))
863
+
864
+ ;; Special lowering for i64x2.
865
+ ;;
866
+ ;; This I64X2 multiplication is performed with several 32-bit
867
+ ;; operations.
868
+ ;;
869
+ ;; 64-bit numbers x and y, can be represented as:
870
+ ;; x = a + 2^32(b)
871
+ ;; y = c + 2^32(d)
872
+ ;;
873
+ ;; A 64-bit multiplication is:
874
+ ;; x * y = ac + 2^32(ad + bc) + 2^64(bd)
875
+ ;; note: `2^64(bd)` can be ignored, the value is too large to fit in
876
+ ;; 64 bits.
877
+ ;;
878
+ ;; This sequence implements a I64X2 multiply, where the registers
879
+ ;; `rn` and `rm` are split up into 32-bit components:
880
+ ;; rn = |d|c|b|a|
881
+ ;; rm = |h|g|f|e|
882
+ ;;
883
+ ;; rn * rm = |cg + 2^32(ch + dg)|ae + 2^32(af + be)|
884
+ ;;
885
+ ;; The sequence is:
886
+ ;; rev64 rd.4s, rm.4s
887
+ ;; mul rd.4s, rd.4s, rn.4s
888
+ ;; xtn tmp1.2s, rn.2d
889
+ ;; addp rd.4s, rd.4s, rd.4s
890
+ ;; xtn tmp2.2s, rm.2d
891
+ ;; shll rd.2d, rd.2s, #32
892
+ ;; umlal rd.2d, tmp2.2s, tmp1.2s
893
+ (rule -1 (lower (has_type $I64X2 (imul x y)))
894
+ (let ((rn Reg x)
895
+ (rm Reg y)
896
+ ;; Reverse the 32-bit elements in the 64-bit words.
897
+ ;; rd = |g|h|e|f|
898
+ (rev Reg (rev64 rm (VectorSize.Size32x4)))
899
+
900
+ ;; Calculate the high half components.
901
+ ;; rd = |dg|ch|be|af|
902
+ ;;
903
+ ;; Note that this 32-bit multiply of the high half
904
+ ;; discards the bits that would overflow, same as
905
+ ;; if 64-bit operations were used. Also the Shll
906
+ ;; below would shift out the overflow bits anyway.
907
+ (mul Reg (mul rev rn (VectorSize.Size32x4)))
908
+
909
+ ;; Extract the low half components of rn.
910
+ ;; tmp1 = |c|a|
911
+ (tmp1 Reg (xtn rn (ScalarSize.Size32)))
912
+
913
+ ;; Sum the respective high half components.
914
+ ;; rd = |dg+ch|be+af||dg+ch|be+af|
915
+ (sum Reg (addp mul mul (VectorSize.Size32x4)))
916
+
917
+ ;; Extract the low half components of rm.
918
+ ;; tmp2 = |g|e|
919
+ (tmp2 Reg (xtn rm (ScalarSize.Size32)))
920
+
921
+ ;; Shift the high half components, into the high half.
922
+ ;; rd = |dg+ch << 32|be+af << 32|
923
+ (shift Reg (shll32 sum false))
924
+
925
+ ;; Multiply the low components together, and accumulate with the high
926
+ ;; half.
927
+ ;; rd = |rd[1] + cg|rd[0] + ae|
928
+ (result Reg (umlal32 shift tmp2 tmp1 false)))
929
+ result))
930
+
931
+ ;; Special case for `i16x8.extmul_low_i8x16_s`.
932
+ (rule (lower (has_type $I16X8
933
+ (imul (swiden_low x @ (value_type $I8X16))
934
+ (swiden_low y @ (value_type $I8X16)))))
935
+ (smull8 x y false))
936
+
937
+ ;; Special case for `i16x8.extmul_high_i8x16_s`.
938
+ (rule (lower (has_type $I16X8
939
+ (imul (swiden_high x @ (value_type $I8X16))
940
+ (swiden_high y @ (value_type $I8X16)))))
941
+ (smull8 x y true))
942
+
943
+ ;; Special case for `i16x8.extmul_low_i8x16_u`.
944
+ (rule (lower (has_type $I16X8
945
+ (imul (uwiden_low x @ (value_type $I8X16))
946
+ (uwiden_low y @ (value_type $I8X16)))))
947
+ (umull8 x y false))
948
+
949
+ ;; Special case for `i16x8.extmul_high_i8x16_u`.
950
+ (rule (lower (has_type $I16X8
951
+ (imul (uwiden_high x @ (value_type $I8X16))
952
+ (uwiden_high y @ (value_type $I8X16)))))
953
+ (umull8 x y true))
954
+
955
+ ;; Special case for `i32x4.extmul_low_i16x8_s`.
956
+ (rule (lower (has_type $I32X4
957
+ (imul (swiden_low x @ (value_type $I16X8))
958
+ (swiden_low y @ (value_type $I16X8)))))
959
+ (smull16 x y false))
960
+
961
+ ;; Special case for `i32x4.extmul_high_i16x8_s`.
962
+ (rule (lower (has_type $I32X4
963
+ (imul (swiden_high x @ (value_type $I16X8))
964
+ (swiden_high y @ (value_type $I16X8)))))
965
+ (smull16 x y true))
966
+
967
+ ;; Special case for `i32x4.extmul_low_i16x8_u`.
968
+ (rule (lower (has_type $I32X4
969
+ (imul (uwiden_low x @ (value_type $I16X8))
970
+ (uwiden_low y @ (value_type $I16X8)))))
971
+ (umull16 x y false))
972
+
973
+ ;; Special case for `i32x4.extmul_high_i16x8_u`.
974
+ (rule (lower (has_type $I32X4
975
+ (imul (uwiden_high x @ (value_type $I16X8))
976
+ (uwiden_high y @ (value_type $I16X8)))))
977
+ (umull16 x y true))
978
+
979
+ ;; Special case for `i64x2.extmul_low_i32x4_s`.
980
+ (rule (lower (has_type $I64X2
981
+ (imul (swiden_low x @ (value_type $I32X4))
982
+ (swiden_low y @ (value_type $I32X4)))))
983
+ (smull32 x y false))
984
+
985
+ ;; Special case for `i64x2.extmul_high_i32x4_s`.
986
+ (rule (lower (has_type $I64X2
987
+ (imul (swiden_high x @ (value_type $I32X4))
988
+ (swiden_high y @ (value_type $I32X4)))))
989
+ (smull32 x y true))
990
+
991
+ ;; Special case for `i64x2.extmul_low_i32x4_u`.
992
+ (rule (lower (has_type $I64X2
993
+ (imul (uwiden_low x @ (value_type $I32X4))
994
+ (uwiden_low y @ (value_type $I32X4)))))
995
+ (umull32 x y false))
996
+
997
+ ;; Special case for `i64x2.extmul_high_i32x4_u`.
998
+ (rule (lower (has_type $I64X2
999
+ (imul (uwiden_high x @ (value_type $I32X4))
1000
+ (uwiden_high y @ (value_type $I32X4)))))
1001
+ (umull32 x y true))
1002
+
1003
+ ;;;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1004
+
1005
+ (rule 1 (lower (has_type $I64 (smulhi x y)))
1006
+ (smulh $I64 x y))
1007
+
1008
+ (rule (lower (has_type (fits_in_32 ty) (smulhi x y)))
1009
+ (let ((x64 Reg (put_in_reg_sext64 x))
1010
+ (y64 Reg (put_in_reg_sext64 y))
1011
+ (mul Reg (madd $I64 x64 y64 (zero_reg)))
1012
+ (result Reg (asr_imm $I64 mul (imm_shift_from_u8 (ty_bits ty)))))
1013
+ result))
1014
+
1015
+ ;;;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1016
+
1017
+ (rule 1 (lower (has_type $I64 (umulhi x y)))
1018
+ (umulh $I64 x y))
1019
+
1020
+ (rule (lower (has_type (fits_in_32 ty) (umulhi x y)))
1021
+ (let (
1022
+ (x64 Reg (put_in_reg_zext64 x))
1023
+ (y64 Reg (put_in_reg_zext64 y))
1024
+ (mul Reg (madd $I64 x64 y64 (zero_reg)))
1025
+ (result Reg (lsr_imm $I64 mul (imm_shift_from_u8 (ty_bits ty))))
1026
+ )
1027
+ (value_reg result)))
1028
+
1029
+ ;;;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1030
+
1031
+ ;; Enum representing the types of extensions
1032
+ (type ExtType
1033
+ (enum
1034
+ (Signed)
1035
+ (Unsigned)))
1036
+
1037
+ ;; Helper for placing a `Value` into a `Reg` and validating that it's nonzero.
1038
+ ;; It takes a value and extension type, and performs the appropriate checks.
1039
+ ;; TODO: restore spec
1040
+ ; (spec (put_nonzero_in_reg_sext64 x)
1041
+ ; (provide (= (sign_ext 64 x) result))
1042
+ ; (require (not (= #x0000000000000000 result))))
1043
+ (decl put_nonzero_in_reg (Value ExtType Type) Reg)
1044
+
1045
+ ;; Special case where if a `Value` is known to be nonzero we can trivially
1046
+ ;; move it into a register.
1047
+
1048
+ ;; zero-extend non-zero constant
1049
+ (rule (put_nonzero_in_reg (iconst (nonzero_u64_from_imm64 n)) (ExtType.Unsigned) ty)
1050
+ (imm ty (ImmExtend.Zero) n))
1051
+
1052
+ ;; sign-extend non-zero constant
1053
+ (rule (put_nonzero_in_reg (iconst (nonzero_u64_from_imm64 n)) (ExtType.Signed) ty)
1054
+ (imm ty (ImmExtend.Sign) n))
1055
+
1056
+ (rule -1 (put_nonzero_in_reg val _ $I64)
1057
+ (trap_if_zero_divisor (put_in_reg val) (operand_size $I64)))
1058
+
1059
+ (rule -2 (put_nonzero_in_reg val (ExtType.Signed) (fits_in_32 _))
1060
+ (trap_if_zero_divisor (put_in_reg_sext32 val) (operand_size $I32)))
1061
+
1062
+ (rule -2 (put_nonzero_in_reg val (ExtType.Unsigned) (fits_in_32 _))
1063
+ (trap_if_zero_divisor (put_in_reg_zext32 val) (operand_size $I32)))
1064
+
1065
+ ;; Note that aarch64's `udiv` doesn't trap so to respect the semantics of
1066
+ ;; CLIF's `udiv` the check for zero needs to be manually performed.
1067
+
1068
+ (rule udiv 1 (lower (has_type $I64 (udiv x y)))
1069
+ (a64_udiv $I64 (put_in_reg x) (put_nonzero_in_reg y (ExtType.Unsigned) $I64)))
1070
+
1071
+ (rule udiv (lower (has_type (fits_in_32 ty) (udiv x y)))
1072
+ (a64_udiv $I32 (put_in_reg_zext32 x) (put_nonzero_in_reg y (ExtType.Unsigned) ty)))
1073
+
1074
+ ;;;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1075
+
1076
+ ;; TODO: Add SDiv32 to implement 32-bit directly, rather
1077
+ ;; than extending the input.
1078
+ ;;
1079
+ ;; The sequence of checks here should look like this for 32 or 64 bits:
1080
+ ;;
1081
+ ;; cbnz rm, #8
1082
+ ;; udf ; divide by zero
1083
+ ;; cmn rm, 1
1084
+ ;; ccmp rn, 1, #nzcv, eq
1085
+ ;; b.vc #8
1086
+ ;; udf ; signed overflow
1087
+ ;;
1088
+ ;; In the narrow 8 or 16 bit case, we need to insert an additional left-shift
1089
+ ;; to check for the minimum value using the 32-bit ccmp instruction.
1090
+ ;;
1091
+ ;; Note The div instruction does not trap on divide by zero or overflow, so
1092
+ ;; checks need to be manually inserted.
1093
+ ;;
1094
+ ;; TODO: if `y` is -1 then a check that `x` is not INT_MIN is all that's
1095
+ ;; necessary, but right now `y` is checked to not be -1 as well.
1096
+
1097
+ (rule sdiv_base_case (lower (has_type $I64 (sdiv x y)))
1098
+ (let ((x64 Reg (put_in_reg_sext64 x))
1099
+ (y64 Reg (put_nonzero_in_reg y (ExtType.Signed) $I64))
1100
+ (intmin_check_x Reg (intmin_check $I64 x64))
1101
+ (valid_x64 Reg (trap_if_div_overflow $I64 intmin_check_x x64 y64))
1102
+ (result Reg (a64_sdiv $I64 valid_x64 y64)))
1103
+ result))
1104
+
1105
+ (rule sdiv_base_case -1 (lower (has_type (fits_in_32 ty) (sdiv x y)))
1106
+ (let ((x32 Reg (put_in_reg_sext32 x))
1107
+ (y32 Reg (put_nonzero_in_reg y (ExtType.Signed) ty))
1108
+ (intmin_check_x Reg (intmin_check ty x32))
1109
+ (valid_x32 Reg (trap_if_div_overflow ty intmin_check_x x32 y32))
1110
+ (result Reg (a64_sdiv ty valid_x32 y32)))
1111
+ result))
1112
+
1113
+ ;; Special case for `sdiv` where no checks are needed due to division by a
1114
+ ;; constant meaning the checks are always passed.
1115
+ (rule sdiv_safe_divisor 2 (lower (has_type $I64 (sdiv x (iconst imm))))
1116
+ (if-let y (safe_divisor_from_imm64 $I64 imm))
1117
+ (a64_sdiv $I64 (put_in_reg_sext64 x) (imm $I64 (ImmExtend.Sign) y)))
1118
+
1119
+ (rule sdiv_safe_divisor 1 (lower (has_type (fits_in_32 ty) (sdiv x (iconst imm))))
1120
+ (if-let y (safe_divisor_from_imm64 ty imm))
1121
+ (a64_sdiv ty (put_in_reg_sext32 x) (imm ty (ImmExtend.Sign) y)))
1122
+
1123
+ ;; Helper for placing a `Value` into a `Reg` and validating that it's nonzero.
1124
+
1125
+ ;;;; Rules for `urem` and `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1126
+
1127
+ ;; Remainder (x % y) is implemented as:
1128
+ ;;
1129
+ ;; tmp = x / y
1130
+ ;; result = x - (tmp*y)
1131
+ ;;
1132
+ ;; use 'result' for tmp and you have:
1133
+ ;;
1134
+ ;; cbnz y, #8 ; branch over trap
1135
+ ;; udf ; divide by zero
1136
+ ;; div rd, x, y ; rd = x / y
1137
+ ;; msub rd, rd, y, x ; rd = x - rd * y
1138
+
1139
+ ;; TODO: we can avoid a 0 check, if the dividend is a non-0 constant
1140
+
1141
+ (rule urem (lower (has_type $I64 (urem x y)))
1142
+ (let ((x64 Reg (put_in_reg_zext64 x))
1143
+ (y64 Reg (put_nonzero_in_reg y (ExtType.Unsigned) $I64))
1144
+ (div Reg (a64_udiv $I64 x64 y64))
1145
+ (result Reg (msub $I64 div y64 x64)))
1146
+ result))
1147
+
1148
+ (rule urem -1 (lower (has_type (fits_in_32 ty) (urem x y)))
1149
+ (let ((x64 Reg (put_in_reg_zext32 x))
1150
+ (y64 Reg (put_nonzero_in_reg y (ExtType.Unsigned) ty))
1151
+ (div Reg (a64_udiv ty x64 y64))
1152
+ (result Reg (msub ty div y64 x64)))
1153
+ result))
1154
+
1155
+ (rule srem (lower (has_type $I64 (srem x y)))
1156
+ (let ((x64 Reg (put_in_reg_sext64 x))
1157
+ (y64 Reg (put_nonzero_in_reg y (ExtType.Signed) $I64))
1158
+ (div Reg (a64_sdiv $I64 x64 y64))
1159
+ (result Reg (msub $I64 div y64 x64)))
1160
+ result))
1161
+
1162
+ (rule srem -1 (lower (has_type (fits_in_32 ty) (srem x y)))
1163
+ (let ((x64 Reg (put_in_reg_sext32 x))
1164
+ (y64 Reg (put_nonzero_in_reg y (ExtType.Signed) ty))
1165
+ (div Reg (a64_sdiv ty x64 y64))
1166
+ (result Reg (msub ty div y64 x64)))
1167
+ result))
1168
+
1169
+ ;;; Rules for integer min/max: umin, smin, umax, smax ;;;;;;;;;;;;;;;;;;;;;;;;;
1170
+
1171
+ ;; `i64` and smaller.
1172
+
1173
+ ;; cmp $x, $y
1174
+ ;; csel .., $x, $y, $cc
1175
+ (spec (cmp_and_choose ty cc signed x y)
1176
+ (provide
1177
+ (= result
1178
+ (switch cc
1179
+ (#x03 (if (bvule x y) x y))
1180
+ (#x08 (if (bvuge x y) x y))
1181
+ (#x0b (if (bvsle x y) x y))
1182
+ (#x0c (if (bvsge x y) x y)))))
1183
+ (require
1184
+ (or (= ty 8)
1185
+ (= ty 16)
1186
+ (= ty 32)
1187
+ (= ty 64))
1188
+ (or (= cc #x03)
1189
+ (= cc #x08)
1190
+ (= cc #x0b)
1191
+ (= cc #x0c))
1192
+ (if signed (or (= cc #x0b) (= cc #x0c))
1193
+ (or (= cc #x03) (= cc #x08)))))
1194
+ (decl cmp_and_choose (Type Cond bool Value Value) ValueRegs)
1195
+ (rule (cmp_and_choose (fits_in_64 ty) cc _ x y)
1196
+ (let ((x Reg (put_in_reg x))
1197
+ (y Reg (put_in_reg y)))
1198
+ (with_flags_reg (cmp (operand_size ty) x y)
1199
+ (csel cc x y))))
1200
+
1201
+ ;; `i16` and `i8` min/max require sign extension as
1202
+ ;; the comparison operates on (at least) 32 bits.
1203
+ (rule 1 (cmp_and_choose (fits_in_16 ty) cc signed x y)
1204
+ (let ((x Reg (extend (put_in_reg x) signed (ty_bits ty) 32))
1205
+ (y Reg (extend (put_in_reg y) signed (ty_bits ty) 32)))
1206
+ (with_flags_reg (cmp (operand_size ty) x y)
1207
+ (csel cc x y))))
1208
+
1209
+ (rule umin 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (umin x y)))
1210
+ (cmp_and_choose ty (Cond.Lo) false x y))
1211
+ (rule smin 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (smin x y)))
1212
+ (cmp_and_choose ty (Cond.Lt) true x y))
1213
+ (rule umax 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (umax x y)))
1214
+ (cmp_and_choose ty (Cond.Hi) false x y))
1215
+ (rule smax 2 (lower (has_type (and (fits_in_64 ty) (ty_int _)) (smax x y)))
1216
+ (cmp_and_choose ty (Cond.Gt) true x y))
1217
+
1218
+ ;; Vector types.
1219
+
1220
+ (rule (lower (has_type ty @ (not_i64x2) (smin x y)))
1221
+ (vec_rrr (VecALUOp.Smin) x y (vector_size ty)))
1222
+
1223
+ (rule 1 (lower (has_type $I64X2 (smin x y)))
1224
+ (bsl $I64X2 (vec_rrr (VecALUOp.Cmgt) y x (VectorSize.Size64x2)) x y))
1225
+
1226
+ (rule (lower (has_type ty @ (not_i64x2) (umin x y)))
1227
+ (vec_rrr (VecALUOp.Umin) x y (vector_size ty)))
1228
+
1229
+ (rule 1 (lower (has_type $I64X2 (umin x y)))
1230
+ (bsl $I64X2 (vec_rrr (VecALUOp.Cmhi) y x (VectorSize.Size64x2)) x y))
1231
+
1232
+ (rule (lower (has_type ty @ (not_i64x2) (smax x y)))
1233
+ (vec_rrr (VecALUOp.Smax) x y (vector_size ty)))
1234
+
1235
+ (rule 1 (lower (has_type $I64X2 (smax x y)))
1236
+ (bsl $I64X2 (vec_rrr (VecALUOp.Cmgt) x y (VectorSize.Size64x2)) x y))
1237
+
1238
+ (rule (lower (has_type ty @ (not_i64x2) (umax x y)))
1239
+ (vec_rrr (VecALUOp.Umax) x y (vector_size ty)))
1240
+
1241
+ (rule 1 (lower (has_type $I64X2 (umax x y)))
1242
+ (bsl $I64X2 (vec_rrr (VecALUOp.Cmhi) x y (VectorSize.Size64x2)) x y))
1243
+
1244
+ ;;;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1245
+
1246
+ ;; General rule for extending input to an output which fits in a single
1247
+ ;; register.
1248
+ (rule uextend -2 (lower (has_type (fits_in_64 out) (uextend x @ (value_type in))))
1249
+ (extend x false (ty_bits in) (ty_bits out)))
1250
+
1251
+ ;; Extraction of a vector lane automatically extends as necessary, so we can
1252
+ ;; skip an explicit extending instruction.
1253
+ (rule 1 (lower (has_type (fits_in_64 out)
1254
+ (uextend (extractlane vec @ (value_type in)
1255
+ (u8_from_uimm8 lane)))))
1256
+ (mov_from_vec (put_in_reg vec) lane (lane_size in)))
1257
+
1258
+ ;; Atomic loads will also automatically zero their upper bits so the `uextend`
1259
+ ;; instruction can effectively get skipped here.
1260
+ (rule 1 (lower (has_type (fits_in_64 out)
1261
+ (uextend x @ (and (value_type in) (atomic_load flags _)))))
1262
+ (if-let mem_op (is_sinkable_inst x))
1263
+ (load_acquire in flags (sink_atomic_load mem_op)))
1264
+
1265
+ ;; Conversion to 128-bit needs a zero-extension of the lower bits and the upper
1266
+ ;; bits are all zero.
1267
+ (rule -1 (lower (has_type $I128 (uextend x)))
1268
+ (value_regs (put_in_reg_zext64 x) (imm $I64 (ImmExtend.Zero) 0)))
1269
+
1270
+ ;; Like above where vector extraction automatically zero-extends extending to
1271
+ ;; i128 only requires generating a 0 constant for the upper bits.
1272
+ (rule (lower (has_type $I128
1273
+ (uextend (extractlane vec @ (value_type in)
1274
+ (u8_from_uimm8 lane)))))
1275
+ (value_regs (mov_from_vec (put_in_reg vec) lane (lane_size in)) (imm $I64 (ImmExtend.Zero) 0)))
1276
+
1277
+ ;; Zero extensions from a load can be encoded in the load itself
1278
+ (rule (lower (has_type (fits_in_64 _) (uextend x @ (has_type in_ty (load flags address offset)))))
1279
+ (if-let inst (is_sinkable_inst x))
1280
+ (let ((_ Unit (sink_inst inst)))
1281
+ (aarch64_uload in_ty (amode in_ty address offset) flags)))
1282
+
1283
+ (decl aarch64_uload (Type AMode MemFlags) Reg)
1284
+ (rule (aarch64_uload $I8 amode flags) (aarch64_uload8 amode flags))
1285
+ (rule (aarch64_uload $I16 amode flags) (aarch64_uload16 amode flags))
1286
+ (rule (aarch64_uload $I32 amode flags) (aarch64_uload32 amode flags))
1287
+
1288
+ ;;;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1289
+
1290
+ ;; General rule for extending input to an output which fits in a single
1291
+ ;; register.
1292
+ (rule sextend -4 (lower (has_type (fits_in_64 out) (sextend x @ (value_type in))))
1293
+ (extend x true (ty_bits in) (ty_bits out)))
1294
+
1295
+ ;; Extraction of a vector lane automatically extends as necessary, so we can
1296
+ ;; skip an explicit extending instruction.
1297
+ (rule -3 (lower (has_type (fits_in_64 out)
1298
+ (sextend (extractlane vec @ (value_type in)
1299
+ (u8_from_uimm8 lane)))))
1300
+ (mov_from_vec_signed (put_in_reg vec)
1301
+ lane
1302
+ (vector_size in)
1303
+ (size_from_ty out)))
1304
+
1305
+ ;; 64-bit to 128-bit only needs to sign-extend the input to the upper bits.
1306
+ (rule -2 (lower (has_type $I128 (sextend x)))
1307
+ (let ((lo Reg (put_in_reg_sext64 x))
1308
+ (hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
1309
+ (value_regs lo hi)))
1310
+
1311
+ ;; Like above where vector extraction automatically zero-extends extending to
1312
+ ;; i128 only requires generating a 0 constant for the upper bits.
1313
+ ;;
1314
+ ;; Note that `mov_from_vec_signed` doesn't exist for i64x2, so that's
1315
+ ;; specifically excluded here.
1316
+ (rule (lower (has_type $I128
1317
+ (sextend (extractlane vec @ (value_type in @ (not_i64x2))
1318
+ (u8_from_uimm8 lane)))))
1319
+ (let ((lo Reg (mov_from_vec_signed (put_in_reg vec)
1320
+ lane
1321
+ (vector_size in)
1322
+ (size_from_ty $I64)))
1323
+ (hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
1324
+ (value_regs lo hi)))
1325
+
1326
+ ;; Extension from an extraction of i64x2 into i128.
1327
+ (rule -1 (lower (has_type $I128
1328
+ (sextend (extractlane vec @ (value_type $I64X2)
1329
+ (u8_from_uimm8 lane)))))
1330
+ (let ((lo Reg (mov_from_vec (put_in_reg vec)
1331
+ lane
1332
+ (ScalarSize.Size64)))
1333
+ (hi Reg (asr_imm $I64 lo (imm_shift_from_u8 63))))
1334
+ (value_regs lo hi)))
1335
+
1336
+ ;; Signed extensions from a load can be encoded in the load itself
1337
+ (rule (lower (has_type (fits_in_64 _) (sextend x @ (has_type in_ty (load flags address offset)))))
1338
+ (if-let inst (is_sinkable_inst x))
1339
+ (let ((_ Unit (sink_inst inst)))
1340
+ (aarch64_sload in_ty (amode in_ty address offset) flags)))
1341
+
1342
+ (decl aarch64_sload (Type AMode MemFlags) Reg)
1343
+ (rule (aarch64_sload $I8 amode flags) (aarch64_sload8 amode flags))
1344
+ (rule (aarch64_sload $I16 amode flags) (aarch64_sload16 amode flags))
1345
+ (rule (aarch64_sload $I32 amode flags) (aarch64_sload32 amode flags))
1346
+
1347
+ ;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1348
+
1349
+ ;; Base case using `orn` between two registers.
1350
+ ;;
1351
+ ;; Note that bitwise negation is implemented here as
1352
+ ;;
1353
+ ;; NOT rd, rm ==> ORR_NOT rd, zero, rm
1354
+ (rule bnot_base_case -1 (lower (has_type (fits_in_64 ty) (bnot x)))
1355
+ (orr_not ty (zero_reg) x))
1356
+
1357
+ ;; Special case to use `orr_not_shift` if it's a `bnot` of a const-left-shifted
1358
+ ;; value.
1359
+ (rule bnot_ishl 1 (lower (has_type (fits_in_64 ty)
1360
+ (bnot (ishl x (iconst k)))))
1361
+ (if-let amt (lshl_from_imm64 ty k))
1362
+ (orr_not_shift ty (zero_reg) x amt))
1363
+
1364
+ ;; Implementation of `bnot` for `i128`.
1365
+ (rule (lower (has_type $I128 (bnot x)))
1366
+ (let ((x_regs ValueRegs x)
1367
+ (x_lo Reg (value_regs_get x_regs 0))
1368
+ (x_hi Reg (value_regs_get x_regs 1))
1369
+ (new_lo Reg (orr_not $I64 (zero_reg) x_lo))
1370
+ (new_hi Reg (orr_not $I64 (zero_reg) x_hi)))
1371
+ (value_regs new_lo new_hi)))
1372
+
1373
+ ;; Implementation of `bnot` for vector types.
1374
+ (rule -2 (lower (has_type (ty_vec128 ty) (bnot x)))
1375
+ (not x (vector_size ty)))
1376
+
1377
+ ;; Special-cases for fusing a bnot with bxor
1378
+ (rule 2 (lower (has_type (fits_in_64 ty) (bnot (bxor x y))))
1379
+ (alu_rs_imm_logic (ALUOp.EorNot) ty x y))
1380
+ (rule 3 (lower (has_type $I128 (bnot (bxor x y)))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
1381
+
1382
+ ;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1383
+
1384
+ (rule band_fits_in_64 -1 (lower (has_type (fits_in_64 ty) (band x y)))
1385
+ (alu_rs_imm_logic_commutative (ALUOp.And) ty x y))
1386
+
1387
+ (rule (lower (has_type $I128 (band x y))) (i128_alu_bitop (ALUOp.And) $I64 x y))
1388
+
1389
+ (rule -2 (lower (has_type (ty_vec128 ty) (band x y)))
1390
+ (and_vec x y (vector_size ty)))
1391
+
1392
+ ;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
1393
+ ;; by Cranelift's `band_not` instruction that is legalized into the simpler
1394
+ ;; forms early on.
1395
+ (rule band_not_right 1 (lower (has_type (fits_in_64 ty) (band x (bnot y))))
1396
+ (alu_rs_imm_logic (ALUOp.AndNot) ty x y))
1397
+ (rule band_not_left 2 (lower (has_type (fits_in_64 ty) (band (bnot y) x)))
1398
+ (alu_rs_imm_logic (ALUOp.AndNot) ty x y))
1399
+
1400
+ (rule 3 (lower (has_type $I128 (band x (bnot y)))) (i128_alu_bitop (ALUOp.AndNot) $I64 x y))
1401
+ (rule 4 (lower (has_type $I128 (band (bnot y) x))) (i128_alu_bitop (ALUOp.AndNot) $I64 x y))
1402
+
1403
+ (rule 5 (lower (has_type (ty_vec128 ty) (band x (bnot y))))
1404
+ (bic_vec x y (vector_size ty)))
1405
+ (rule 6 (lower (has_type (ty_vec128 ty) (band (bnot y) x)))
1406
+ (bic_vec x y (vector_size ty)))
1407
+
1408
+ ;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1409
+
1410
+ (rule bor_fits_in_64 -1 (lower (has_type (fits_in_64 ty) (bor x y)))
1411
+ (alu_rs_imm_logic_commutative (ALUOp.Orr) ty x y))
1412
+
1413
+ (rule (lower (has_type $I128 (bor x y))) (i128_alu_bitop (ALUOp.Orr) $I64 x y))
1414
+
1415
+ (rule -2 (lower (has_type (ty_vec128 ty) (bor x y)))
1416
+ (orr_vec x y (vector_size ty)))
1417
+
1418
+ ;; Specialized lowerings for `(bor x (bnot y))` which is additionally produced
1419
+ ;; by Cranelift's `bor_not` instruction that is legalized into the simpler
1420
+ ;; forms early on.
1421
+ (rule bor_not_right 1 (lower (has_type (fits_in_64 ty) (bor x (bnot y))))
1422
+ (alu_rs_imm_logic (ALUOp.OrrNot) ty x y))
1423
+ (rule bor_not_left 2 (lower (has_type (fits_in_64 ty) (bor (bnot y) x)))
1424
+ (alu_rs_imm_logic (ALUOp.OrrNot) ty x y))
1425
+
1426
+ (rule 3 (lower (has_type $I128 (bor x (bnot y)))) (i128_alu_bitop (ALUOp.OrrNot) $I64 x y))
1427
+ (rule 4 (lower (has_type $I128 (bor (bnot y) x))) (i128_alu_bitop (ALUOp.OrrNot) $I64 x y))
1428
+
1429
+ ;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1430
+
1431
+ (rule bxor_fits_in_64 -1 (lower (has_type (fits_in_64 ty) (bxor x y)))
1432
+ (alu_rs_imm_logic_commutative (ALUOp.Eor) ty x y))
1433
+
1434
+ (rule (lower (has_type $I128 (bxor x y))) (i128_alu_bitop (ALUOp.Eor) $I64 x y))
1435
+
1436
+ (rule -2 (lower (has_type (ty_vec128 ty) (bxor x y)))
1437
+ (eor_vec x y (vector_size ty)))
1438
+
1439
+ ;; Specialized lowerings for `(bxor x (bnot y))` which is additionally produced
1440
+ ;; by Cranelift's `bxor_not` instruction that is legalized into the simpler
1441
+ ;; forms early on.
1442
+
1443
+ (rule bxor_not_right 1 (lower (has_type (fits_in_64 ty) (bxor x (bnot y))))
1444
+ (alu_rs_imm_logic (ALUOp.EorNot) ty x y))
1445
+ (rule bxor_not_left 2 (lower (has_type (fits_in_64 ty) (bxor (bnot y) x)))
1446
+ (alu_rs_imm_logic (ALUOp.EorNot) ty x y))
1447
+
1448
+ (rule 3 (lower (has_type $I128 (bxor x (bnot y)))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
1449
+ (rule 4 (lower (has_type $I128 (bxor (bnot y) x))) (i128_alu_bitop (ALUOp.EorNot) $I64 x y))
1450
+
1451
+ ;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1452
+
1453
+ ;; Shift for i8/i16/i32.
1454
+ (rule ishl_fits_in_32 -1 (lower (has_type (fits_in_32 ty) (ishl x y)))
1455
+ (do_shift (ALUOp.Lsl) ty x y))
1456
+
1457
+ ;; Shift for i64.
1458
+ (rule ishl_64 (lower (has_type $I64 (ishl x y)))
1459
+ (do_shift (ALUOp.Lsl) $I64 x y))
1460
+
1461
+ ;; Shift for i128.
1462
+ (rule (lower (has_type $I128 (ishl x y)))
1463
+ (lower_shl128 x (value_regs_get y 0)))
1464
+
1465
+ ;; lsl lo_lshift, src_lo, amt
1466
+ ;; lsl hi_lshift, src_hi, amt
1467
+ ;; mvn inv_amt, amt
1468
+ ;; lsr lo_rshift, src_lo, #1
1469
+ ;; lsr lo_rshift, lo_rshift, inv_amt
1470
+ ;; orr maybe_hi, hi_lshift, lo_rshift
1471
+ ;; tst amt, #0x40
1472
+ ;; csel dst_hi, lo_lshift, maybe_hi, ne
1473
+ ;; csel dst_lo, xzr, lo_lshift, ne
1474
+ (decl lower_shl128 (ValueRegs Reg) ValueRegs)
1475
+ (rule (lower_shl128 src amt)
1476
+ (let ((src_lo Reg (value_regs_get src 0))
1477
+ (src_hi Reg (value_regs_get src 1))
1478
+ (lo_lshift Reg (lsl $I64 src_lo amt))
1479
+ (hi_lshift Reg (lsl $I64 src_hi amt))
1480
+ (inv_amt Reg (orr_not $I32 (zero_reg) amt))
1481
+ (lo_rshift Reg (lsr $I64 (lsr_imm $I64 src_lo (imm_shift_from_u8 1))
1482
+ inv_amt))
1483
+ (maybe_hi Reg (orr $I64 hi_lshift lo_rshift))
1484
+ )
1485
+ (with_flags
1486
+ (tst_imm $I64 amt (u64_into_imm_logic $I64 64))
1487
+ (consumes_flags_concat
1488
+ (csel (Cond.Ne) (zero_reg) lo_lshift)
1489
+ (csel (Cond.Ne) lo_lshift maybe_hi)))))
1490
+
1491
+ ;; Shift for vector types.
1492
+ (rule -3 (lower (has_type (ty_vec128 ty) (ishl x y)))
1493
+ (let ((size VectorSize (vector_size ty))
1494
+ (masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
1495
+ (shift Reg (vec_dup masked_shift_amt size)))
1496
+ (sshl x shift size)))
1497
+ (rule -2 (lower (has_type (ty_vec128 ty) (ishl x (iconst (u64_from_imm64 n)))))
1498
+ (ushl_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
1499
+
1500
+ (decl pure shift_masked_imm (Type u64) u8)
1501
+ (extern constructor shift_masked_imm shift_masked_imm)
1502
+
1503
+ ;; Helper function to emit a shift operation with the opcode specified and
1504
+ ;; the output type specified. The `Reg` provided is shifted by the `Value`
1505
+ ;; given.
1506
+ ;;
1507
+ ;; Note that this automatically handles the clif semantics of masking the
1508
+ ;; shift amount where necessary.
1509
+ (spec (do_shift op t a b)
1510
+ (provide
1511
+ (= result
1512
+ (switch op
1513
+ ((ALUOp.Lsr) (conv_to 64
1514
+ (bvlshr (conv_to t a)
1515
+ (conv_to t (zero_ext 64
1516
+ (bvand (conv_to (widthof b) (bvsub (int2bv 64 (widthof b)) #x0000000000000001)) b))))))
1517
+ ((ALUOp.Asr) (conv_to 64
1518
+ (bvashr (conv_to t a)
1519
+ (conv_to t (zero_ext 64
1520
+ (bvand (conv_to (widthof b) (bvsub (int2bv 64 (widthof b)) #x0000000000000001)) b))))))
1521
+ ((ALUOp.Lsl) (conv_to 64
1522
+ (bvshl (conv_to t a)
1523
+ (conv_to t (zero_ext 64
1524
+ (bvand (conv_to (widthof b) (bvsub (int2bv 64 (widthof b)) #x0000000000000001)) b)))))))))
1525
+ (require
1526
+ (or (= op (ALUOp.Lsr)) (= op (ALUOp.Asr)) (= op (ALUOp.Lsl)))
1527
+ (= t (widthof b))
1528
+ (or (= t 8) (= t 16) (= t 32) (= t 64))
1529
+ (switch op
1530
+ ((ALUOp.Lsr) (switch t
1531
+ (8 (= (extract 31 0 a) (zero_ext 32 (extract 7 0 a))))
1532
+ (16 (= (extract 31 0 a) (zero_ext 32 (extract 15 0 a))))
1533
+ (32 true)
1534
+ (64 true)))
1535
+ ((ALUOp.Asr) (switch t
1536
+ (8 (= (extract 31 0 a) (sign_ext 32 (extract 7 0 a))))
1537
+ (16 (= (extract 31 0 a) (sign_ext 32 (extract 15 0 a))))
1538
+ (32 true)
1539
+ (64 true)))
1540
+ ((ALUOp.Lsl) true))))
1541
+ (instantiate do_shift
1542
+ ((args (bv 8) Int (bv 64) (bv 8)) (ret (bv 64)) (canon (bv 8)))
1543
+ ((args (bv 8) Int (bv 64) (bv 16)) (ret (bv 64)) (canon (bv 16)))
1544
+ ((args (bv 8) Int (bv 64) (bv 32)) (ret (bv 64)) (canon (bv 32)))
1545
+ ((args (bv 8) Int (bv 64) (bv 64)) (ret (bv 64)) (canon (bv 64)))
1546
+ )
1547
+ (decl do_shift (ALUOp Type Reg Value) Reg)
1548
+
1549
+ ;; 8/16-bit shift base case.
1550
+ ;;
1551
+ ;; When shifting for amounts larger than the size of the type, the CLIF shift
1552
+ ;; instructions implement a "wrapping" behaviour, such that an i8 << 8 is
1553
+ ;; equivalent to i8 << 0
1554
+ ;;
1555
+ ;; On i32 and i64 types this matches what the aarch64 spec does, but on smaller
1556
+ ;; types (i16, i8) we need to do this manually, so we wrap the shift amount
1557
+ ;; with an AND instruction
1558
+ (rule do_shift_fits_in_16 -1 (do_shift op (fits_in_16 ty) x y)
1559
+ (let ((shift_amt Reg (value_regs_get y 0))
1560
+ (masked_shift_amt Reg (and_imm $I32 shift_amt (shift_mask ty))))
1561
+ (alu_rrr op $I32 x masked_shift_amt)))
1562
+
1563
+ (spec (shift_mask t)
1564
+ (provide (= (bvsub (int2bv 64 t) #x0000000000000001) result)))
1565
+ (decl shift_mask (Type) ImmLogic)
1566
+ (extern constructor shift_mask shift_mask)
1567
+
1568
+ ;; 32/64-bit shift base cases.
1569
+ (rule do_shift_32_base_case (do_shift op $I32 x y) (alu_rrr op $I32 x (value_regs_get y 0)))
1570
+ (rule do_shift_64_base_case (do_shift op $I64 x y) (alu_rrr op $I64 x (value_regs_get y 0)))
1571
+
1572
+ ;; Special case for shifting by a constant value where the value can fit into an
1573
+ ;; `ImmShift`.
1574
+ ;;
1575
+ ;; Note that this rule explicitly has a higher priority than the others
1576
+ ;; to ensure it's attempted first, otherwise the type-based filters on the
1577
+ ;; previous rules seem to take priority over this rule.
1578
+ (rule do_shift_imm 1 (do_shift op ty x (iconst k))
1579
+ (if-let shift (imm_shift_from_imm64 ty k))
1580
+ (alu_rr_imm_shift op ty x shift))
1581
+
1582
+ ;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1583
+
1584
+ ;; Shift for i8/i16/i32.
1585
+ (rule ushr_fits_in_32 -1 (lower (has_type (fits_in_32 ty) (ushr x y)))
1586
+ (do_shift (ALUOp.Lsr) ty (put_in_reg_zext32 x) y))
1587
+
1588
+ ;; Shift for i64.
1589
+ (rule ushr_64 (lower (has_type $I64 (ushr x y)))
1590
+ (do_shift (ALUOp.Lsr) $I64 (put_in_reg_zext64 x) y))
1591
+
1592
+ ;; Shift for i128.
1593
+ (rule (lower (has_type $I128 (ushr x y)))
1594
+ (lower_ushr128 x (value_regs_get y 0)))
1595
+
1596
+ ;; Vector shifts.
1597
+ ;;
1598
+ ;; Note that for constant shifts a 0-width shift can't be emitted so it's
1599
+ ;; special cased to pass through the input as-is since a 0-shift doesn't modify
1600
+ ;; the input anyway.
1601
+ (rule -4 (lower (has_type (ty_vec128 ty) (ushr x y)))
1602
+ (let ((size VectorSize (vector_size ty))
1603
+ (masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
1604
+ (shift Reg (vec_dup (sub $I64 (zero_reg) masked_shift_amt) size)))
1605
+ (ushl x shift size)))
1606
+ (rule -3 (lower (has_type (ty_vec128 ty) (ushr x (iconst (u64_from_imm64 n)))))
1607
+ (ushr_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
1608
+ (rule -2 (lower (has_type (ty_vec128 ty) (ushr x (iconst (u64_from_imm64 n)))))
1609
+ (if-let 0 (shift_masked_imm ty n))
1610
+ x)
1611
+
1612
+ ;; lsr lo_rshift, src_lo, amt
1613
+ ;; lsr hi_rshift, src_hi, amt
1614
+ ;; mvn inv_amt, amt
1615
+ ;; lsl hi_lshift, src_hi, #1
1616
+ ;; lsl hi_lshift, hi_lshift, inv_amt
1617
+ ;; tst amt, #0x40
1618
+ ;; orr maybe_lo, lo_rshift, hi_lshift
1619
+ ;; csel dst_hi, xzr, hi_rshift, ne
1620
+ ;; csel dst_lo, hi_rshift, maybe_lo, ne
1621
+ (decl lower_ushr128 (ValueRegs Reg) ValueRegs)
1622
+ (rule (lower_ushr128 src amt)
1623
+ (let ((src_lo Reg (value_regs_get src 0))
1624
+ (src_hi Reg (value_regs_get src 1))
1625
+ (lo_rshift Reg (lsr $I64 src_lo amt))
1626
+ (hi_rshift Reg (lsr $I64 src_hi amt))
1627
+
1628
+ (inv_amt Reg (orr_not $I32 (zero_reg) amt))
1629
+ (hi_lshift Reg (lsl $I64 (lsl_imm $I64 src_hi (imm_shift_from_u8 1))
1630
+ inv_amt))
1631
+ (maybe_lo Reg (orr $I64 lo_rshift hi_lshift))
1632
+ )
1633
+ (with_flags
1634
+ (tst_imm $I64 amt (u64_into_imm_logic $I64 64))
1635
+ (consumes_flags_concat
1636
+ (csel (Cond.Ne) hi_rshift maybe_lo)
1637
+ (csel (Cond.Ne) (zero_reg) hi_rshift)))))
1638
+
1639
+ ;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1640
+
1641
+ ;; Shift for i8/i16/i32.
1642
+ (rule sshr_fits_in_32 -4 (lower (has_type (fits_in_32 ty) (sshr x y)))
1643
+ (do_shift (ALUOp.Asr) ty (put_in_reg_sext32 x) y))
1644
+
1645
+ ;; Shift for i64.
1646
+ (rule sshr_64 (lower (has_type $I64 (sshr x y)))
1647
+ (do_shift (ALUOp.Asr) $I64 (put_in_reg_sext64 x) y))
1648
+
1649
+ ;; Shift for i128.
1650
+ (rule (lower (has_type $I128 (sshr x y)))
1651
+ (lower_sshr128 x (value_regs_get y 0)))
1652
+
1653
+ ;; Vector shifts.
1654
+ ;;
1655
+ ;; Note that right shifts are implemented with a negative left shift. Also note
1656
+ ;; that for constant shifts a 0-width shift can't be emitted so it's special
1657
+ ;; cased to pass through the input as-is since a 0-shift doesn't modify the
1658
+ ;; input anyway.
1659
+ (rule -3 (lower (has_type (ty_vec128 ty) (sshr x y)))
1660
+ (let ((size VectorSize (vector_size ty))
1661
+ (masked_shift_amt Reg (and_imm $I32 y (shift_mask ty)))
1662
+ (shift Reg (vec_dup (sub $I64 (zero_reg) masked_shift_amt) size)))
1663
+ (sshl x shift size)))
1664
+ (rule -2 (lower (has_type (ty_vec128 ty) (sshr x (iconst (u64_from_imm64 n)))))
1665
+ (sshr_vec_imm x (shift_masked_imm ty n) (vector_size ty)))
1666
+ (rule -1 (lower (has_type (ty_vec128 ty) (sshr x (iconst (u64_from_imm64 n)))))
1667
+ (if-let 0 (shift_masked_imm ty n))
1668
+ x)
1669
+
1670
+ ;; lsr lo_rshift, src_lo, amt
1671
+ ;; asr hi_rshift, src_hi, amt
1672
+ ;; mvn inv_amt, amt
1673
+ ;; lsl hi_lshift, src_hi, #1
1674
+ ;; lsl hi_lshift, hi_lshift, inv_amt
1675
+ ;; asr hi_sign, src_hi, #63
1676
+ ;; orr maybe_lo, lo_rshift, hi_lshift
1677
+ ;; tst amt, #0x40
1678
+ ;; csel dst_hi, hi_sign, hi_rshift, ne
1679
+ ;; csel dst_lo, hi_rshift, maybe_lo, ne
1680
+ (decl lower_sshr128 (ValueRegs Reg) ValueRegs)
1681
+ (rule (lower_sshr128 src amt)
1682
+ (let ((src_lo Reg (value_regs_get src 0))
1683
+ (src_hi Reg (value_regs_get src 1))
1684
+ (lo_rshift Reg (lsr $I64 src_lo amt))
1685
+ (hi_rshift Reg (asr $I64 src_hi amt))
1686
+
1687
+ (inv_amt Reg (orr_not $I32 (zero_reg) amt))
1688
+ (hi_lshift Reg (lsl $I64 (lsl_imm $I64 src_hi (imm_shift_from_u8 1))
1689
+ inv_amt))
1690
+ (hi_sign Reg (asr_imm $I64 src_hi (imm_shift_from_u8 63)))
1691
+ (maybe_lo Reg (orr $I64 lo_rshift hi_lshift))
1692
+ )
1693
+ (with_flags
1694
+ (tst_imm $I64 amt (u64_into_imm_logic $I64 64))
1695
+ (consumes_flags_concat
1696
+ (csel (Cond.Ne) hi_rshift maybe_lo)
1697
+ (csel (Cond.Ne) hi_sign hi_rshift)))))
1698
+
1699
+ ;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1700
+
1701
+ ;; General 8/16-bit case.
1702
+ (rule rotl_fits_in_16 -2 (lower (has_type (fits_in_16 ty) (rotl x y)))
1703
+ (let ((amt Reg (value_regs_get y 0))
1704
+ (neg_shift Reg (sub $I32 (zero_reg) amt)))
1705
+ (small_rotr ty (put_in_reg_zext32 x) neg_shift)))
1706
+
1707
+ ;; Specialization for the 8/16-bit case when the rotation amount is an immediate.
1708
+ (rule rotl_fits_in_16_imm -1 (lower (has_type (fits_in_16 ty) (rotl x (iconst k))))
1709
+ (if-let n (imm_shift_from_imm64 ty k))
1710
+ (small_rotr_imm ty (put_in_reg_zext32 x) (negate_imm_shift ty n)))
1711
+
1712
+ ;; aarch64 doesn't have a left-rotate instruction, but a left rotation of K
1713
+ ;; places is effectively a right rotation of N - K places, if N is the integer's
1714
+ ;; bit size. We implement left rotations with this trick.
1715
+ ;;
1716
+ ;; Note that when negating the shift amount here the upper bits are ignored
1717
+ ;; by the rotr instruction, meaning that we'll still left-shift by the desired
1718
+ ;; amount.
1719
+
1720
+ ;; General 32-bit case.
1721
+ (rule rotl_32_base_case (lower (has_type $I32 (rotl x y)))
1722
+ (let ((amt Reg (value_regs_get y 0))
1723
+ (neg_shift Reg (sub $I32 (zero_reg) amt)))
1724
+ (a64_rotr $I32 x neg_shift)))
1725
+
1726
+ ;; General 64-bit case.
1727
+ (rule rotl_64_base_case (lower (has_type $I64 (rotl x y)))
1728
+ (let ((amt Reg (value_regs_get y 0))
1729
+ (neg_shift Reg (sub $I64 (zero_reg) amt)))
1730
+ (a64_rotr $I64 x neg_shift)))
1731
+
1732
+ ;; Specialization for the 32-bit case when the rotation amount is an immediate.
1733
+ (rule rotl_32_imm 1 (lower (has_type $I32 (rotl x (iconst k))))
1734
+ (if-let n (imm_shift_from_imm64 $I32 k))
1735
+ (a64_rotr_imm $I32 x (negate_imm_shift $I32 n)))
1736
+
1737
+ ;; Specialization for the 64-bit case when the rotation amount is an immediate.
1738
+ (rule rotl_64_imm 1 (lower (has_type $I64 (rotl x (iconst k))))
1739
+ (if-let n (imm_shift_from_imm64 $I64 k))
1740
+ (a64_rotr_imm $I64 x (negate_imm_shift $I64 n)))
1741
+
1742
+ ;; fn negate_imm_shift(&mut self, ty: Type, mut imm: ImmShift) -> ImmShift {
1743
+ ;; let size = u8::try_from(ty.bits()).unwrap();
1744
+ ;; imm.imm = size.wrapping_sub(imm.value());
1745
+ ;; imm.imm &= size - 1;
1746
+ ;; imm
1747
+ ;; }
1748
+ (spec (negate_imm_shift ty x)
1749
+ (provide
1750
+ (= result (bvand (bvsub (int2bv 6 ty) x) (bvsub (int2bv 6 ty) #b000001)))))
1751
+ (decl negate_imm_shift (Type ImmShift) ImmShift)
1752
+ (extern constructor negate_imm_shift negate_imm_shift)
1753
+
1754
+ ;; General 128-bit case.
1755
+ ;;
1756
+ ;; TODO: much better codegen is possible with a constant amount.
1757
+ (rule (lower (has_type $I128 (rotl x y)))
1758
+ (let ((val ValueRegs x)
1759
+ (amt Reg (value_regs_get y 0))
1760
+ (neg_amt Reg (sub $I64 (imm $I64 (ImmExtend.Zero) 128) amt))
1761
+ (lshift ValueRegs (lower_shl128 val amt))
1762
+ (rshift ValueRegs (lower_ushr128 val neg_amt)))
1763
+ (value_regs
1764
+ (orr $I64 (value_regs_get lshift 0) (value_regs_get rshift 0))
1765
+ (orr $I64 (value_regs_get lshift 1) (value_regs_get rshift 1)))))
1766
+
1767
+ ;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1768
+
1769
+ ;; General 8/16-bit case.
1770
+ (rule rotr_fits_in_16 -3 (lower (has_type (fits_in_16 ty) (rotr x y)))
1771
+ (small_rotr ty (put_in_reg_zext32 x) (value_regs_get y 0)))
1772
+
1773
+ ;; General 32-bit case.
1774
+ (rule rotr_32_base_case -1 (lower (has_type $I32 (rotr x y)))
1775
+ (a64_rotr $I32 x (value_regs_get y 0)))
1776
+
1777
+ ;; General 64-bit case.
1778
+ (rule rotr_64_base_case -1 (lower (has_type $I64 (rotr x y)))
1779
+ (a64_rotr $I64 x (value_regs_get y 0)))
1780
+
1781
+ ;; Specialization for the 8/16-bit case when the rotation amount is an immediate.
1782
+ (rule rotr_fits_in_16_imm -2 (lower (has_type (fits_in_16 ty) (rotr x (iconst k))))
1783
+ (if-let n (imm_shift_from_imm64 ty k))
1784
+ (small_rotr_imm ty (put_in_reg_zext32 x) n))
1785
+
1786
+ ;; Specialization for the 32-bit case when the rotation amount is an immediate.
1787
+ (rule rotr_32_imm (lower (has_type $I32 (rotr x (iconst k))))
1788
+ (if-let n (imm_shift_from_imm64 $I32 k))
1789
+ (a64_rotr_imm $I32 x n))
1790
+
1791
+ ;; Specialization for the 64-bit case when the rotation amount is an immediate.
1792
+ (rule rotr_64_imm (lower (has_type $I64 (rotr x (iconst k))))
1793
+ (if-let n (imm_shift_from_imm64 $I64 k))
1794
+ (a64_rotr_imm $I64 x n))
1795
+
1796
+ ;; For a < 32-bit rotate-right, we synthesize this as:
1797
+ ;;
1798
+ ;; rotr rd, val, amt
1799
+ ;;
1800
+ ;; =>
1801
+ ;;
1802
+ ;; and masked_amt, amt, <bitwidth - 1>
1803
+ ;; sub tmp_sub, masked_amt, <bitwidth>
1804
+ ;; sub neg_amt, zero, tmp_sub ; neg
1805
+ ;; lsr val_rshift, val, masked_amt
1806
+ ;; lsl val_lshift, val, neg_amt
1807
+ ;; orr rd, val_lshift val_rshift
1808
+ (spec (small_rotr t x y)
1809
+ (provide
1810
+ (= result
1811
+ (switch t
1812
+ (8 (conv_to 64 (rotr (extract 7 0 x) (extract 7 0 y))))
1813
+ (16 (conv_to 64 (rotr (extract 15 0 x) (extract 15 0 y)))))))
1814
+ (require
1815
+ (or (= t 8) (= t 16))
1816
+ (switch t
1817
+ (8 (= (extract 31 8 x) #x000000))
1818
+ (16 (= (extract 31 16 x) #x0000)))))
1819
+ (instantiate small_rotr
1820
+ ((args Int (bv 64) (bv 64)) (ret (bv 64)) (canon (bv 64))))
1821
+ (decl small_rotr (Type Reg Reg) Reg)
1822
+ (rule small_rotr (small_rotr ty val amt)
1823
+ (let ((masked_amt Reg (and_imm $I32 amt (rotr_mask ty)))
1824
+ (tmp_sub Reg (sub_imm $I32 masked_amt (u8_into_imm12 (ty_bits ty))))
1825
+ (neg_amt Reg (sub $I32 (zero_reg) tmp_sub))
1826
+ (val_rshift Reg (lsr $I32 val masked_amt))
1827
+ (val_lshift Reg (lsl $I32 val neg_amt)))
1828
+ (orr $I32 val_lshift val_rshift)))
1829
+
1830
+ (spec (rotr_mask x) (provide (= (bvsub (int2bv 64 x) #x0000000000000001) result)))
1831
+ (decl rotr_mask (Type) ImmLogic)
1832
+ (extern constructor rotr_mask rotr_mask)
1833
+
1834
+ ;; For a constant amount, we can instead do:
1835
+ ;;
1836
+ ;; rotr rd, val, #amt
1837
+ ;;
1838
+ ;; =>
1839
+ ;;
1840
+ ;; lsr val_rshift, val, #<amt>
1841
+ ;; lsl val_lshift, val, <bitwidth - amt>
1842
+ ;; orr rd, val_lshift, val_rshift
1843
+
1844
+ (spec (small_rotr_imm t x y)
1845
+ (provide
1846
+ (= result
1847
+ (switch t
1848
+ (8 (conv_to 64 (rotr (extract 7 0 x) (zero_ext 8 y))))
1849
+ (16 (conv_to 64 (rotr (extract 15 0 x) (zero_ext 16 y)))))))
1850
+ (require
1851
+ (or (= t 8) (= t 16))
1852
+ (switch t
1853
+ (8 (= (extract 31 8 x) #x000000))
1854
+ (16 (= (extract 31 16 x) #x0000)))
1855
+ (bvult y (int2bv 6 t))))
1856
+ (instantiate small_rotr_imm
1857
+ ((args Int (bv 64) (bv 6)) (ret (bv 64)) (canon (bv 64))))
1858
+ (decl small_rotr_imm (Type Reg ImmShift) Reg)
1859
+ (rule small_rotr_imm (small_rotr_imm ty val amt)
1860
+ (let ((val_rshift Reg (lsr_imm $I32 val amt))
1861
+ (val_lshift Reg (lsl_imm $I32 val (rotr_opposite_amount ty amt))))
1862
+ (orr $I32 val_lshift val_rshift)))
1863
+
1864
+ (spec (rotr_opposite_amount ty x)
1865
+ (provide
1866
+ (= (bvsub (int2bv 6 ty) (bvand x (bvsub (int2bv 6 ty) #b000001))) result)))
1867
+ (decl rotr_opposite_amount (Type ImmShift) ImmShift)
1868
+ (extern constructor rotr_opposite_amount rotr_opposite_amount)
1869
+
1870
+ ;; General 128-bit case.
1871
+ ;;
1872
+ ;; TODO: much better codegen is possible with a constant amount.
1873
+ (rule (lower (has_type $I128 (rotr x y)))
1874
+ (let ((val ValueRegs x)
1875
+ (amt Reg (value_regs_get y 0))
1876
+ (neg_amt Reg (sub $I64 (imm $I64 (ImmExtend.Zero) 128) amt))
1877
+ (rshift ValueRegs (lower_ushr128 val amt))
1878
+ (lshift ValueRegs (lower_shl128 val neg_amt))
1879
+ (hi Reg (orr $I64 (value_regs_get rshift 1) (value_regs_get lshift 1)))
1880
+ (lo Reg (orr $I64 (value_regs_get rshift 0) (value_regs_get lshift 0))))
1881
+ (value_regs lo hi)))
1882
+
1883
+ ;;;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1884
+
1885
+ ;; Reversing an 8-bit value with a 32-bit bitrev instruction will place
1886
+ ;; the reversed result in the highest 8 bits, so we need to shift them down into
1887
+ ;; place.
1888
+ (rule (lower (has_type $I8 (bitrev x)))
1889
+ (lsr_imm $I32 (rbit $I32 x) (imm_shift_from_u8 24)))
1890
+
1891
+ ;; Reversing an 16-bit value with a 32-bit bitrev instruction will place
1892
+ ;; the reversed result in the highest 16 bits, so we need to shift them down into
1893
+ ;; place.
1894
+ (rule (lower (has_type $I16 (bitrev x)))
1895
+ (lsr_imm $I32 (rbit $I32 x) (imm_shift_from_u8 16)))
1896
+
1897
+ (rule (lower (has_type $I128 (bitrev x)))
1898
+ (let ((val ValueRegs x)
1899
+ (lo_rev Reg (rbit $I64 (value_regs_get val 0)))
1900
+ (hi_rev Reg (rbit $I64 (value_regs_get val 1))))
1901
+ (value_regs hi_rev lo_rev)))
1902
+
1903
+ (rule -1 (lower (has_type ty (bitrev x)))
1904
+ (rbit ty x))
1905
+
1906
+
1907
+ ;;;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1908
+
1909
+ (rule clz_8 (lower (has_type $I8 (clz x)))
1910
+ (sub_imm $I32 (a64_clz $I32 (put_in_reg_zext32 x)) (u8_into_imm12 24)))
1911
+
1912
+ (rule clz_16 (lower (has_type $I16 (clz x)))
1913
+ (sub_imm $I32 (a64_clz $I32 (put_in_reg_zext32 x)) (u8_into_imm12 16)))
1914
+
1915
+ (rule (lower (has_type $I128 (clz x)))
1916
+ (lower_clz128 x))
1917
+
1918
+ (rule clz_32_64 -1 (lower (has_type ty (clz x)))
1919
+ (a64_clz ty x))
1920
+
1921
+ ;; clz hi_clz, hi
1922
+ ;; clz lo_clz, lo
1923
+ ;; lsr tmp, hi_clz, #6
1924
+ ;; madd dst_lo, lo_clz, tmp, hi_clz
1925
+ ;; mov dst_hi, 0
1926
+ (decl lower_clz128 (ValueRegs) ValueRegs)
1927
+ (rule (lower_clz128 val)
1928
+ (let ((hi_clz Reg (a64_clz $I64 (value_regs_get val 1)))
1929
+ (lo_clz Reg (a64_clz $I64 (value_regs_get val 0)))
1930
+ (tmp Reg (lsr_imm $I64 hi_clz (imm_shift_from_u8 6))))
1931
+ (value_regs (madd $I64 lo_clz tmp hi_clz) (imm $I64 (ImmExtend.Zero) 0))))
1932
+
1933
+ ;;;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1934
+
1935
+ ;; Note that all `ctz` instructions are implemented by reversing the bits and
1936
+ ;; then using a `clz` instruction since the tail zeros are the same as the
1937
+ ;; leading zeros of the reversed value.
1938
+
1939
+ (rule ctz_8 (lower (has_type $I8 (ctz x)))
1940
+ (a64_clz $I32 (orr_imm $I32 (rbit $I32 x) (u64_into_imm_logic $I32 0x800000))))
1941
+
1942
+ (rule ctz_16 (lower (has_type $I16 (ctz x)))
1943
+ (a64_clz $I32 (orr_imm $I32 (rbit $I32 x) (u64_into_imm_logic $I32 0x8000))))
1944
+
1945
+ (rule (lower (has_type $I128 (ctz x)))
1946
+ (let ((val ValueRegs x)
1947
+ (lo Reg (rbit $I64 (value_regs_get val 0)))
1948
+ (hi Reg (rbit $I64 (value_regs_get val 1))))
1949
+ (lower_clz128 (value_regs hi lo))))
1950
+
1951
+ (rule ctz_32_64 -1 (lower (has_type ty (ctz x)))
1952
+ (a64_clz ty (rbit ty x)))
1953
+
1954
+ ;;;; Rules for `cls` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1955
+
1956
+ (rule cls_8 (lower (has_type $I8 (cls x)))
1957
+ (sub_imm $I32 (a64_cls $I32 (put_in_reg_sext32 x)) (u8_into_imm12 24)))
1958
+
1959
+ (rule cls_16 (lower (has_type $I16 (cls x)))
1960
+ (sub_imm $I32 (a64_cls $I32 (put_in_reg_sext32 x)) (u8_into_imm12 16)))
1961
+
1962
+ ;; cls lo_cls, lo
1963
+ ;; cls hi_cls, hi
1964
+ ;; eon sign_eq_eor, hi, lo
1965
+ ;; lsr sign_eq, sign_eq_eor, #63
1966
+ ;; madd lo_sign_bits, out_lo, sign_eq, sign_eq
1967
+ ;; cmp hi_cls, #63
1968
+ ;; csel maybe_lo, lo_sign_bits, xzr, eq
1969
+ ;; add out_lo, maybe_lo, hi_cls
1970
+ ;; mov out_hi, 0
1971
+ (rule (lower (has_type $I128 (cls x)))
1972
+ (let ((val ValueRegs x)
1973
+ (lo Reg (value_regs_get val 0))
1974
+ (hi Reg (value_regs_get val 1))
1975
+ (lo_cls Reg (a64_cls $I64 lo))
1976
+ (hi_cls Reg (a64_cls $I64 hi))
1977
+ (sign_eq_eon Reg (eon $I64 hi lo))
1978
+ (sign_eq Reg (lsr_imm $I64 sign_eq_eon (imm_shift_from_u8 63)))
1979
+ (lo_sign_bits Reg (madd $I64 lo_cls sign_eq sign_eq))
1980
+ (maybe_lo Reg (with_flags_reg
1981
+ (cmp64_imm hi_cls (u8_into_imm12 63))
1982
+ (csel (Cond.Eq) lo_sign_bits (zero_reg)))))
1983
+ (value_regs (add $I64 maybe_lo hi_cls) (imm $I64 (ImmExtend.Zero) 0))))
1984
+
1985
+ (rule cls_32_64 -1 (lower (has_type ty (cls x)))
1986
+ (a64_cls ty x))
1987
+
1988
+ ;;;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1989
+
1990
+ (rule (lower (has_type $I16 (bswap x)))
1991
+ (a64_rev16 $I16 x))
1992
+
1993
+ (rule (lower (has_type $I32 (bswap x)))
1994
+ (a64_rev32 $I32 x))
1995
+
1996
+ (rule (lower (has_type $I64 (bswap x)))
1997
+ (a64_rev64 $I64 x))
1998
+
1999
+ (rule (lower (has_type $I128 (bswap x)))
2000
+ (value_regs
2001
+ (a64_rev64 $I64 (value_regs_get x 1))
2002
+ (a64_rev64 $I64 (value_regs_get x 0))))
2003
+
2004
+ ;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2005
+
2006
+ ;; Bmask tests the value against zero, and uses `csetm` to assert the result.
2007
+ (rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
2008
+ (lower_bmask out_ty in_ty x))
2009
+
2010
+ ;;;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2011
+
2012
+ ;; The implementation of `popcnt` for scalar types is done by moving the value
2013
+ ;; into a vector register, using the `cnt` instruction, and then collating the
2014
+ ;; result back into a normal register.
2015
+ ;;
2016
+ ;; The general sequence emitted here is
2017
+ ;;
2018
+ ;; fmov tmp, in_lo
2019
+ ;; if ty == i128:
2020
+ ;; mov tmp.d[1], in_hi
2021
+ ;;
2022
+ ;; cnt tmp.16b, tmp.16b / cnt tmp.8b, tmp.8b
2023
+ ;; addv tmp, tmp.16b / addv tmp, tmp.8b / addp tmp.8b, tmp.8b, tmp.8b / (no instruction for 8-bit inputs)
2024
+ ;;
2025
+ ;; umov out_lo, tmp.b[0]
2026
+ ;; if ty == i128:
2027
+ ;; mov out_hi, 0
2028
+
2029
+ (rule popcnt_8 (lower (has_type $I8 (popcnt x)))
2030
+ (let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
2031
+ (nbits Reg (vec_cnt tmp (VectorSize.Size8x8))))
2032
+ (mov_from_vec nbits 0 (ScalarSize.Size8))))
2033
+
2034
+ ;; Note that this uses `addp` instead of `addv` as it's usually cheaper.
2035
+ (rule popcnt_16 (lower (has_type $I16 (popcnt x)))
2036
+ (let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
2037
+ (nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
2038
+ (added Reg (addp nbits nbits (VectorSize.Size8x8))))
2039
+ (mov_from_vec added 0 (ScalarSize.Size8))))
2040
+
2041
+ (rule popcnt_32 (lower (has_type $I32 (popcnt x)))
2042
+ (let ((tmp Reg (mov_to_fpu x (ScalarSize.Size32)))
2043
+ (nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
2044
+ (added Reg (addv nbits (VectorSize.Size8x8))))
2045
+ (mov_from_vec added 0 (ScalarSize.Size8))))
2046
+
2047
+ (rule popcnt_64 (lower (has_type $I64 (popcnt x)))
2048
+ (let ((tmp Reg (mov_to_fpu x (ScalarSize.Size64)))
2049
+ (nbits Reg (vec_cnt tmp (VectorSize.Size8x8)))
2050
+ (added Reg (addv nbits (VectorSize.Size8x8))))
2051
+ (mov_from_vec added 0 (ScalarSize.Size8))))
2052
+
2053
+ (rule (lower (has_type $I128 (popcnt x)))
2054
+ (let ((val ValueRegs x)
2055
+ (tmp_half Reg (mov_to_fpu (value_regs_get val 0) (ScalarSize.Size64)))
2056
+ (tmp Reg (mov_to_vec tmp_half (value_regs_get val 1) 1 (VectorSize.Size64x2)))
2057
+ (nbits Reg (vec_cnt tmp (VectorSize.Size8x16)))
2058
+ (added Reg (addv nbits (VectorSize.Size8x16))))
2059
+ (value_regs (mov_from_vec added 0 (ScalarSize.Size8)) (imm $I64 (ImmExtend.Zero) 0))))
2060
+
2061
+ (rule (lower (has_type $I8X16 (popcnt x)))
2062
+ (vec_cnt x (VectorSize.Size8x16)))
2063
+
2064
+ ;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2065
+
2066
+ (rule bitselect (lower (has_type ty (bitselect c x y)))
2067
+ (if (ty_int_ref_scalar_64 ty))
2068
+ (let ((tmp1 Reg (and_reg ty x c))
2069
+ (tmp2 Reg (bic ty y c)))
2070
+ (orr ty tmp1 tmp2)))
2071
+
2072
+ (rule 1 (lower (has_type (ty_vec128 ty) (bitselect c x y)))
2073
+ (bsl ty c x y))
2074
+
2075
+ ;;;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2076
+
2077
+ ;; T -> I{64,32,16,8}: We can simply pass through the value: values
2078
+ ;; are always stored with high bits undefined, so we can just leave
2079
+ ;; them be.
2080
+ (rule (lower (has_type ty (ireduce src)))
2081
+ (if (ty_int_ref_scalar_64 ty))
2082
+ (value_regs_get src 0))
2083
+
2084
+ ;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2085
+
2086
+ (rule 4 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond_not_eq cond) x y)))
2087
+ (if (zero_value y))
2088
+ (let ((rn Reg x)
2089
+ (vec_size VectorSize (vector_size ty)))
2090
+ (value_reg (not (fcmeq0 rn vec_size) vec_size))))
2091
+
2092
+ (rule 3 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond cond) x y)))
2093
+ (if (zero_value y))
2094
+ (let ((rn Reg x)
2095
+ (vec_size VectorSize (vector_size ty)))
2096
+ (value_reg (float_cmp_zero cond rn vec_size))))
2097
+
2098
+ (rule 2 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond_not_eq cond) x y)))
2099
+ (if (zero_value x))
2100
+ (let ((rn Reg y)
2101
+ (vec_size VectorSize (vector_size ty)))
2102
+ (value_reg (not (fcmeq0 rn vec_size) vec_size))))
2103
+
2104
+ (rule 1 (lower (has_type ty @ (multi_lane _ _) (fcmp (fcmp_zero_cond cond) x y)))
2105
+ (if (zero_value x))
2106
+ (let ((rn Reg y)
2107
+ (vec_size VectorSize (vector_size ty)))
2108
+ (value_reg (float_cmp_zero_swap cond rn vec_size))))
2109
+
2110
+ (rule 0 (lower (has_type out_ty
2111
+ (fcmp cond x @ (value_type (ty_scalar_float in_ty)) y)))
2112
+ (with_flags (fpu_cmp (scalar_size in_ty) x y)
2113
+ (materialize_bool_result (fp_cond_code cond))))
2114
+
2115
+ (rule -1 (lower (has_type out_ty (fcmp cond x @ (value_type in_ty) y)))
2116
+ (if (ty_vector_float in_ty))
2117
+ (vec_cmp x y in_ty (fp_cond_code cond)))
2118
+
2119
+ ;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2120
+
2121
+ (rule 3 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond_not_eq cond) x y)))
2122
+ (if (zero_value y))
2123
+ (let ((rn Reg x)
2124
+ (vec_size VectorSize (vector_size ty)))
2125
+ (value_reg (not (cmeq0 rn vec_size) vec_size))))
2126
+
2127
+ (rule 2 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond cond) x y)))
2128
+ (if (zero_value y))
2129
+ (let ((rn Reg x)
2130
+ (vec_size VectorSize (vector_size ty)))
2131
+ (value_reg (int_cmp_zero cond rn vec_size))))
2132
+
2133
+ (rule 1 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond_not_eq cond) x y)))
2134
+ (if (zero_value x))
2135
+ (let ((rn Reg y)
2136
+ (vec_size VectorSize (vector_size ty)))
2137
+ (value_reg (not (cmeq0 rn vec_size) vec_size))))
2138
+
2139
+ (rule 0 (lower (has_type ty @ (multi_lane _ _) (icmp (icmp_zero_cond cond) x y)))
2140
+ (if (zero_value x))
2141
+ (let ((rn Reg y)
2142
+ (vec_size VectorSize (vector_size ty)))
2143
+ (value_reg (int_cmp_zero_swap cond rn vec_size))))
2144
+
2145
+ (rule icmp_8_16_32_64 -1 (lower (icmp cond x @ (value_type in_ty) y))
2146
+ (lower_icmp_into_reg cond x y in_ty $I8))
2147
+
2148
+ ;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2149
+
2150
+ (rule (lower (trap trap_code))
2151
+ (side_effect (udf trap_code)))
2152
+
2153
+ ;;;;; Rules for `trapz`;;;;;;;;;
2154
+
2155
+ (rule (lower (trapz val trap_code))
2156
+ (trap_if_val (ZeroCond.Zero) val trap_code))
2157
+
2158
+ ;;;;; Rules for `trapnz`;;;;;;;;;
2159
+
2160
+ (rule (lower (trapnz val trap_code))
2161
+ (trap_if_val (ZeroCond.NonZero) val trap_code))
2162
+
2163
+ ;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2164
+
2165
+ (rule (lower (has_type ty
2166
+ (select (maybe_uextend (icmp cc
2167
+ x @ (value_type in_ty)
2168
+ y))
2169
+ rn
2170
+ rm)))
2171
+ (let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y in_ty)))
2172
+ (lower_select (flags_and_cc_flags comparison)
2173
+ (cond_code (flags_and_cc_cc comparison))
2174
+ ty
2175
+ rn
2176
+ rm)))
2177
+
2178
+ (rule (lower (has_type ty
2179
+ (select (maybe_uextend (fcmp cc x @ (value_type in_ty) y))
2180
+ rn
2181
+ rm)))
2182
+ (let ((cond Cond (fp_cond_code cc)))
2183
+ (lower_select
2184
+ (fpu_cmp (scalar_size in_ty) x y)
2185
+ cond ty rn rm)))
2186
+
2187
+ (rule -1 (lower (has_type ty (select rcond @ (value_type $I8) rn rm)))
2188
+ (let ((rcond Reg rcond))
2189
+ (lower_select
2190
+ (tst_imm $I32 rcond (u64_into_imm_logic $I32 255))
2191
+ (Cond.Ne) ty rn rm)))
2192
+
2193
+ (rule -2 (lower (has_type ty (select rcond @ (value_type (fits_in_32 _)) rn rm)))
2194
+ (let ((rcond Reg (put_in_reg_zext32 rcond)))
2195
+ (lower_select
2196
+ (cmp (OperandSize.Size32) rcond (zero_reg))
2197
+ (Cond.Ne) ty rn rm)))
2198
+
2199
+ (rule -3 (lower (has_type ty (select rcond @ (value_type (fits_in_64 _)) rn rm)))
2200
+ (let ((rcond Reg (put_in_reg_zext64 rcond)))
2201
+ (lower_select
2202
+ (cmp (OperandSize.Size64) rcond (zero_reg))
2203
+ (Cond.Ne) ty rn rm)))
2204
+
2205
+ (rule -4 (lower (has_type ty (select rcond @ (value_type $I128) rn rm)))
2206
+ (let ((c ValueRegs (put_in_regs rcond))
2207
+ (c_lo Reg (value_regs_get c 0))
2208
+ (c_hi Reg (value_regs_get c 1))
2209
+ (rt Reg (orr $I64 c_lo c_hi)))
2210
+ (lower_select
2211
+ (cmp (OperandSize.Size64) rt (zero_reg))
2212
+ (Cond.Ne) ty rn rm)))
2213
+
2214
+ ;;;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2215
+
2216
+ (rule (lower (has_type ty
2217
+ (select_spectre_guard (maybe_uextend (icmp cc x @ (value_type in_ty) y))
2218
+ if_true
2219
+ if_false)))
2220
+ (let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y in_ty))
2221
+ (dst ValueRegs (lower_select
2222
+ (flags_and_cc_flags comparison)
2223
+ (cond_code (flags_and_cc_cc comparison))
2224
+ ty
2225
+ if_true
2226
+ if_false))
2227
+ (_ InstOutput (side_effect (csdb))))
2228
+ dst))
2229
+
2230
+ (rule -1 (lower (has_type ty (select_spectre_guard rcond @ (value_type (fits_in_64 _)) rn rm)))
2231
+ (let ((rcond Reg (put_in_reg_zext64 rcond)))
2232
+ (lower_select
2233
+ (cmp (OperandSize.Size64) rcond (zero_reg))
2234
+ (Cond.Ne) ty rn rm)))
2235
+
2236
+ (rule -2 (lower (has_type ty (select_spectre_guard rcond @ (value_type $I128) rn rm)))
2237
+ (let ((c ValueRegs (put_in_regs rcond))
2238
+ (c_lo Reg (value_regs_get c 0))
2239
+ (c_hi Reg (value_regs_get c 1))
2240
+ (rt Reg (orr $I64 c_lo c_hi)))
2241
+ (lower_select
2242
+ (cmp (OperandSize.Size64) rt (zero_reg))
2243
+ (Cond.Ne) ty rn rm)))
2244
+
2245
+ ;;;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2246
+
2247
+ (rule (lower (has_type (ty_vec128 _) (vconst (u128_from_constant x))))
2248
+ (constant_f128 x))
2249
+
2250
+ (rule 1 (lower (has_type ty (vconst (u64_from_constant x))))
2251
+ (if (ty_vec64 ty))
2252
+ (constant_f64 x))
2253
+
2254
+ ;;;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2255
+
2256
+ (rule -1 (lower (has_type ty (splat x @ (value_type in_ty))))
2257
+ (if (ty_int_ref_scalar_64 in_ty))
2258
+ (vec_dup x (vector_size ty)))
2259
+
2260
+ (rule -2 (lower (has_type ty (splat x @ (value_type (ty_scalar_float _)))))
2261
+ (vec_dup_from_fpu x (vector_size ty) 0))
2262
+
2263
+ (rule (lower (has_type ty (splat (f32const (u32_from_ieee32 n)))))
2264
+ (splat_const n (vector_size ty)))
2265
+
2266
+ (rule (lower (has_type ty (splat (f64const (u64_from_ieee64 n)))))
2267
+ (splat_const n (vector_size ty)))
2268
+
2269
+ (rule (lower (has_type ty (splat (iconst (u64_from_imm64 n)))))
2270
+ (splat_const n (vector_size ty)))
2271
+
2272
+ (rule (lower (has_type ty (splat (ireduce (iconst (u64_from_imm64 n))))))
2273
+ (splat_const n (vector_size ty)))
2274
+
2275
+ (rule (lower (has_type ty (splat x @ (load flags _ _))))
2276
+ (if-let mem_op (is_sinkable_inst x))
2277
+ (let ((addr Reg (sink_load_into_addr (lane_type ty) mem_op)))
2278
+ (ld1r addr (vector_size ty) flags)))
2279
+
2280
+ ;;;; Rules for `AtomicLoad` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2281
+ (rule (lower (has_type (valid_atomic_transaction ty) (atomic_load flags addr)))
2282
+ (load_acquire ty flags addr))
2283
+
2284
+
2285
+ ;;;; Rules for `AtomicStore` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2286
+ (rule (lower (atomic_store flags
2287
+ src @ (value_type (valid_atomic_transaction ty))
2288
+ addr))
2289
+ (side_effect (store_release ty flags src addr)))
2290
+
2291
+ ;;;; Rules for `AtomicRMW` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2292
+
2293
+ (rule 1 (lower (and (use_lse)
2294
+ (has_type (valid_atomic_transaction ty)
2295
+ (atomic_rmw flags (AtomicRmwOp.Add) addr src))))
2296
+ (lse_atomic_rmw (AtomicRMWOp.Add) addr src ty flags))
2297
+ (rule 1 (lower (and (use_lse)
2298
+ (has_type (valid_atomic_transaction ty)
2299
+ (atomic_rmw flags (AtomicRmwOp.Xor) addr src))))
2300
+ (lse_atomic_rmw (AtomicRMWOp.Eor) addr src ty flags))
2301
+ (rule 1 (lower (and (use_lse)
2302
+ (has_type (valid_atomic_transaction ty)
2303
+ (atomic_rmw flags (AtomicRmwOp.Or) addr src))))
2304
+ (lse_atomic_rmw (AtomicRMWOp.Set) addr src ty flags))
2305
+ (rule 1 (lower (and (use_lse)
2306
+ (has_type (valid_atomic_transaction ty)
2307
+ (atomic_rmw flags (AtomicRmwOp.Smax) addr src))))
2308
+ (lse_atomic_rmw (AtomicRMWOp.Smax) addr src ty flags))
2309
+ (rule 1 (lower (and (use_lse)
2310
+ (has_type (valid_atomic_transaction ty)
2311
+ (atomic_rmw flags (AtomicRmwOp.Smin) addr src))))
2312
+ (lse_atomic_rmw (AtomicRMWOp.Smin) addr src ty flags))
2313
+ (rule 1 (lower (and (use_lse)
2314
+ (has_type (valid_atomic_transaction ty)
2315
+ (atomic_rmw flags (AtomicRmwOp.Umax) addr src))))
2316
+ (lse_atomic_rmw (AtomicRMWOp.Umax) addr src ty flags))
2317
+ (rule 1 (lower (and (use_lse)
2318
+ (has_type (valid_atomic_transaction ty)
2319
+ (atomic_rmw flags (AtomicRmwOp.Umin) addr src))))
2320
+ (lse_atomic_rmw (AtomicRMWOp.Umin) addr src ty flags))
2321
+ (rule 1 (lower (and (use_lse)
2322
+ (has_type (valid_atomic_transaction ty)
2323
+ (atomic_rmw flags (AtomicRmwOp.Sub) addr src))))
2324
+ (lse_atomic_rmw (AtomicRMWOp.Add) addr (sub ty (zero_reg) src) ty flags))
2325
+ (rule 1 (lower (and (use_lse)
2326
+ (has_type (valid_atomic_transaction ty)
2327
+ (atomic_rmw flags (AtomicRmwOp.And) addr src))))
2328
+ (lse_atomic_rmw (AtomicRMWOp.Clr) addr (eon ty src (zero_reg)) ty flags))
2329
+
2330
+
2331
+ (rule (lower (has_type (valid_atomic_transaction ty)
2332
+ (atomic_rmw flags (AtomicRmwOp.Add) addr src)))
2333
+ (atomic_rmw_loop (AtomicRMWLoopOp.Add) addr src ty flags))
2334
+ (rule (lower (has_type (valid_atomic_transaction ty)
2335
+ (atomic_rmw flags (AtomicRmwOp.Sub) addr src)))
2336
+ (atomic_rmw_loop (AtomicRMWLoopOp.Sub) addr src ty flags))
2337
+ (rule (lower (has_type (valid_atomic_transaction ty)
2338
+ (atomic_rmw flags (AtomicRmwOp.And) addr src)))
2339
+ (atomic_rmw_loop (AtomicRMWLoopOp.And) addr src ty flags))
2340
+ (rule (lower (has_type (valid_atomic_transaction ty)
2341
+ (atomic_rmw flags (AtomicRmwOp.Nand) addr src)))
2342
+ (atomic_rmw_loop (AtomicRMWLoopOp.Nand) addr src ty flags))
2343
+ (rule (lower (has_type (valid_atomic_transaction ty)
2344
+ (atomic_rmw flags (AtomicRmwOp.Or) addr src)))
2345
+ (atomic_rmw_loop (AtomicRMWLoopOp.Orr) addr src ty flags))
2346
+ (rule (lower (has_type (valid_atomic_transaction ty)
2347
+ (atomic_rmw flags (AtomicRmwOp.Xor) addr src)))
2348
+ (atomic_rmw_loop (AtomicRMWLoopOp.Eor) addr src ty flags))
2349
+ (rule (lower (has_type (valid_atomic_transaction ty)
2350
+ (atomic_rmw flags (AtomicRmwOp.Smin) addr src)))
2351
+ (atomic_rmw_loop (AtomicRMWLoopOp.Smin) addr src ty flags))
2352
+ (rule (lower (has_type (valid_atomic_transaction ty)
2353
+ (atomic_rmw flags (AtomicRmwOp.Smax) addr src)))
2354
+ (atomic_rmw_loop (AtomicRMWLoopOp.Smax) addr src ty flags))
2355
+ (rule (lower (has_type (valid_atomic_transaction ty)
2356
+ (atomic_rmw flags (AtomicRmwOp.Umin) addr src)))
2357
+ (atomic_rmw_loop (AtomicRMWLoopOp.Umin) addr src ty flags))
2358
+ (rule (lower (has_type (valid_atomic_transaction ty)
2359
+ (atomic_rmw flags (AtomicRmwOp.Umax) addr src)))
2360
+ (atomic_rmw_loop (AtomicRMWLoopOp.Umax) addr src ty flags))
2361
+ (rule (lower (has_type (valid_atomic_transaction ty)
2362
+ (atomic_rmw flags (AtomicRmwOp.Xchg) addr src)))
2363
+ (atomic_rmw_loop (AtomicRMWLoopOp.Xchg) addr src ty flags))
2364
+
2365
+ ;;;; Rules for `AtomicCAS` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2366
+ (rule 1 (lower (and (use_lse)
2367
+ (has_type (valid_atomic_transaction ty)
2368
+ (atomic_cas flags addr src1 src2))))
2369
+ (lse_atomic_cas addr src1 src2 ty flags))
2370
+
2371
+ (rule (lower (and (has_type (valid_atomic_transaction ty)
2372
+ (atomic_cas flags addr src1 src2))))
2373
+ (atomic_cas_loop addr src1 src2 ty flags))
2374
+
2375
+ ;;;; Rules for 'fvdemote' ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2376
+ (rule (lower (fvdemote x))
2377
+ (fcvtn x (ScalarSize.Size32)))
2378
+
2379
+
2380
+ ;;;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2381
+ (rule 1 (lower (has_type (ty_vec128_int ty) (snarrow x y)))
2382
+ (if (zero_value y))
2383
+ (sqxtn x (lane_size ty)))
2384
+
2385
+ (rule 2 (lower (has_type (ty_vec64_int ty) (snarrow x y)))
2386
+ (let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
2387
+ (sqxtn dst (lane_size ty))))
2388
+
2389
+ (rule 0 (lower (has_type (ty_vec128_int ty) (snarrow x y)))
2390
+ (let ((low_half Reg (sqxtn x (lane_size ty)))
2391
+ (result Reg (sqxtn2 low_half y (lane_size ty))))
2392
+ result))
2393
+
2394
+
2395
+ ;;;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2396
+ (rule 1 (lower (has_type (ty_vec128_int ty) (unarrow x y)))
2397
+ (if (zero_value y))
2398
+ (sqxtun x (lane_size ty)))
2399
+
2400
+ (rule 2 (lower (has_type (ty_vec64_int ty) (unarrow x y)))
2401
+ (let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
2402
+ (sqxtun dst (lane_size ty))))
2403
+
2404
+ (rule 0 (lower (has_type (ty_vec128_int ty) (unarrow x y)))
2405
+ (let ((low_half Reg (sqxtun x (lane_size ty)))
2406
+ (result Reg (sqxtun2 low_half y (lane_size ty))))
2407
+ result))
2408
+
2409
+
2410
+ ;;;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2411
+
2412
+ (rule 1 (lower (has_type (ty_vec128_int ty) (uunarrow x y)))
2413
+ (if (zero_value y))
2414
+ (uqxtn x (lane_size ty)))
2415
+
2416
+ (rule 2 (lower (has_type (ty_vec64_int ty) (uunarrow x y)))
2417
+ (let ((dst Reg (mov_vec_elem x y 1 0 (VectorSize.Size64x2))))
2418
+ (uqxtn dst (lane_size ty))))
2419
+
2420
+ (rule 0 (lower (has_type (ty_vec128_int ty) (uunarrow x y)))
2421
+ (let ((low_half Reg (uqxtn x (lane_size ty)))
2422
+ (result Reg (uqxtn2 low_half y (lane_size ty))))
2423
+ result))
2424
+
2425
+ ;;;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2426
+
2427
+ (rule (lower (has_type ty (swiden_low x)))
2428
+ (vec_extend (VecExtendOp.Sxtl) x false (lane_size ty)))
2429
+
2430
+ ;;;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2431
+
2432
+ (rule 1 (lower (has_type (ty_vec128 ty) (swiden_high x)))
2433
+ (vec_extend (VecExtendOp.Sxtl) x true (lane_size ty)))
2434
+
2435
+ (rule (lower (has_type ty (swiden_high x)))
2436
+ (if (ty_vec64 ty))
2437
+ (let ((tmp Reg (fpu_move_from_vec x 1 (VectorSize.Size32x2))))
2438
+ (vec_extend (VecExtendOp.Sxtl) tmp false (lane_size ty))))
2439
+
2440
+ ;;;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2441
+
2442
+ (rule (lower (has_type ty (uwiden_low x)))
2443
+ (vec_extend (VecExtendOp.Uxtl) x false (lane_size ty)))
2444
+
2445
+ ;;;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2446
+
2447
+ (rule 1 (lower (has_type (ty_vec128 ty) (uwiden_high x)))
2448
+ (vec_extend (VecExtendOp.Uxtl) x true (lane_size ty)))
2449
+
2450
+ (rule (lower (has_type ty (uwiden_high x)))
2451
+ (if (ty_vec64 ty))
2452
+ (let ((tmp Reg (fpu_move_from_vec x 1 (VectorSize.Size32x2))))
2453
+ (vec_extend (VecExtendOp.Uxtl) tmp false (lane_size ty))))
2454
+
2455
+ ;;;; Rules for `Fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2456
+
2457
+ (rule (lower (fence))
2458
+ (side_effect (aarch64_fence)))
2459
+
2460
+ ;;;; Rules for `Debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2461
+
2462
+ (rule (lower (debugtrap))
2463
+ (side_effect (brk)))
2464
+
2465
+ ;;;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2466
+
2467
+ (rule (lower (func_addr (func_ref_data _ extname _)))
2468
+ (load_ext_name (box_external_name extname) 0))
2469
+
2470
+ ;;;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2471
+
2472
+ (rule (lower (symbol_value (symbol_value_data extname _ offset)))
2473
+ (load_ext_name (box_external_name extname) offset))
2474
+
2475
+ ;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;;
2476
+
2477
+ (rule (lower (get_frame_pointer))
2478
+ (aarch64_fp))
2479
+
2480
+ (rule (lower (get_stack_pointer))
2481
+ (aarch64_sp))
2482
+
2483
+ (rule (lower (get_return_address))
2484
+ (aarch64_link))
2485
+
2486
+ ;;;; Rules for calls ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2487
+
2488
+ (rule (lower (call (func_ref_data sig_ref extname dist) inputs))
2489
+ (gen_call sig_ref extname dist inputs))
2490
+
2491
+ (rule (lower (call_indirect sig_ref val inputs))
2492
+ (gen_call_indirect sig_ref val inputs))
2493
+
2494
+ ;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2495
+
2496
+ ;; N.B.: the Ret itself is generated by the ABI.
2497
+ (rule (lower (return args))
2498
+ (lower_return args))
2499
+
2500
+ ;;;; Rules for `return_call` and `return_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;
2501
+
2502
+ (rule (lower (return_call (func_ref_data sig_ref extname dist) args))
2503
+ (gen_return_call sig_ref extname dist args))
2504
+
2505
+ (rule (lower (return_call_indirect sig_ref callee args))
2506
+ (gen_return_call_indirect sig_ref callee args))
2507
+
2508
+ ;;;; Rules for loads ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2509
+
2510
+ (rule load_i8_aarch64_uload8 (lower
2511
+ (has_type $I8 (load flags address offset)))
2512
+ (aarch64_uload8 (amode $I8 address offset) flags))
2513
+ (rule load_i16_aarch64_uload16 (lower
2514
+ (has_type $I16 (load flags address offset)))
2515
+ (aarch64_uload16 (amode $I16 address offset) flags))
2516
+ (rule load_i32_aarch64_uload32 (lower
2517
+ (has_type $I32 (load flags address offset)))
2518
+ (aarch64_uload32 (amode $I32 address offset) flags))
2519
+ (rule load_i64_aarch64_uload64 (lower
2520
+ (has_type $I64 (load flags address offset)))
2521
+ (aarch64_uload64 (amode $I64 address offset) flags))
2522
+ (rule (lower
2523
+ (has_type $F16 (load flags address offset)))
2524
+ (aarch64_fpuload16 (amode $F16 address offset) flags))
2525
+ (rule (lower
2526
+ (has_type $F32 (load flags address offset)))
2527
+ (aarch64_fpuload32 (amode $F32 address offset) flags))
2528
+ (rule (lower
2529
+ (has_type $F64 (load flags address offset)))
2530
+ (aarch64_fpuload64 (amode $F64 address offset) flags))
2531
+ (rule (lower
2532
+ (has_type $F128 (load flags address offset)))
2533
+ (aarch64_fpuload128 (amode $F128 address offset) flags))
2534
+ (rule (lower
2535
+ (has_type $I128 (load flags address offset)))
2536
+ (aarch64_loadp64 (pair_amode address offset) flags))
2537
+ (rule -1 (lower
2538
+ (has_type (ty_vec64 _)
2539
+ (load flags address offset)))
2540
+ (aarch64_fpuload64 (amode $F64 address offset) flags))
2541
+ (rule -3 (lower
2542
+ (has_type (ty_vec128 _)
2543
+ (load flags address offset)))
2544
+ (aarch64_fpuload128 (amode $I8X16 address offset) flags))
2545
+ (rule -2 (lower
2546
+ (has_type (ty_dyn_vec64 _)
2547
+ (load flags address offset)))
2548
+ (aarch64_fpuload64 (amode $F64 address offset) flags))
2549
+ (rule -4 (lower
2550
+ (has_type (ty_dyn_vec128 _)
2551
+ (load flags address offset)))
2552
+ (aarch64_fpuload128 (amode $I8X16 address offset) flags))
2553
+
2554
+ (rule (lower
2555
+ (uload8 flags address offset))
2556
+ (aarch64_uload8 (amode $I8 address offset) flags))
2557
+ (rule (lower
2558
+ (sload8 flags address offset))
2559
+ (aarch64_sload8 (amode $I8 address offset) flags))
2560
+ (rule (lower
2561
+ (uload16 flags address offset))
2562
+ (aarch64_uload16 (amode $I16 address offset) flags))
2563
+ (rule (lower
2564
+ (sload16 flags address offset))
2565
+ (aarch64_sload16 (amode $I16 address offset) flags))
2566
+ (rule (lower
2567
+ (uload32 flags address offset))
2568
+ (aarch64_uload32 (amode $I32 address offset) flags))
2569
+ (rule (lower
2570
+ (sload32 flags address offset))
2571
+ (aarch64_sload32 (amode $I32 address offset) flags))
2572
+
2573
+ (rule (lower
2574
+ (sload8x8 flags address offset))
2575
+ (vec_extend (VecExtendOp.Sxtl)
2576
+ (aarch64_fpuload64 (amode $F64 address offset) flags)
2577
+ false
2578
+ (ScalarSize.Size16)))
2579
+ (rule (lower
2580
+ (uload8x8 flags address offset))
2581
+ (vec_extend (VecExtendOp.Uxtl)
2582
+ (aarch64_fpuload64 (amode $F64 address offset) flags)
2583
+ false
2584
+ (ScalarSize.Size16)))
2585
+ (rule (lower
2586
+ (sload16x4 flags address offset))
2587
+ (vec_extend (VecExtendOp.Sxtl)
2588
+ (aarch64_fpuload64 (amode $F64 address offset) flags)
2589
+ false
2590
+ (ScalarSize.Size32)))
2591
+ (rule (lower
2592
+ (uload16x4 flags address offset))
2593
+ (vec_extend (VecExtendOp.Uxtl)
2594
+ (aarch64_fpuload64 (amode $F64 address offset) flags)
2595
+ false
2596
+ (ScalarSize.Size32)))
2597
+ (rule (lower
2598
+ (sload32x2 flags address offset))
2599
+ (vec_extend (VecExtendOp.Sxtl)
2600
+ (aarch64_fpuload64 (amode $F64 address offset) flags)
2601
+ false
2602
+ (ScalarSize.Size64)))
2603
+ (rule (lower
2604
+ (uload32x2 flags address offset))
2605
+ (vec_extend (VecExtendOp.Uxtl)
2606
+ (aarch64_fpuload64 (amode $F64 address offset) flags)
2607
+ false
2608
+ (ScalarSize.Size64)))
2609
+
2610
+ ;;;; Rules for stores ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2611
+
2612
+ (rule store_i8_aarch64_store8 (lower
2613
+ (store flags value @ (value_type $I8) address offset))
2614
+ (side_effect
2615
+ (aarch64_store8 (amode $I8 address offset) flags value)))
2616
+ (rule store_i16_aarch64_store16 (lower
2617
+ (store flags value @ (value_type $I16) address offset))
2618
+ (side_effect
2619
+ (aarch64_store16 (amode $I16 address offset) flags value)))
2620
+ (rule store_i32_aarch64_store32 (lower
2621
+ (store flags value @ (value_type $I32) address offset))
2622
+ (side_effect
2623
+ (aarch64_store32 (amode $I32 address offset) flags value)))
2624
+ (rule store_i64_aarch64_store64 (lower
2625
+ (store flags value @ (value_type $I64) address offset))
2626
+ (side_effect
2627
+ (aarch64_store64 (amode $I64 address offset) flags value)))
2628
+
2629
+ (rule (lower
2630
+ (istore8 flags value address offset))
2631
+ (side_effect
2632
+ (aarch64_store8 (amode $I8 address offset) flags value)))
2633
+ (rule (lower
2634
+ (istore16 flags value address offset))
2635
+ (side_effect
2636
+ (aarch64_store16 (amode $I16 address offset) flags value)))
2637
+ (rule (lower
2638
+ (istore32 flags value address offset))
2639
+ (side_effect
2640
+ (aarch64_store32 (amode $I32 address offset) flags value)))
2641
+
2642
+ (rule (lower
2643
+ (store flags value @ (value_type $F16) address offset))
2644
+ (side_effect
2645
+ (aarch64_fpustore16 (amode $F16 address offset) flags value)))
2646
+ (rule (lower
2647
+ (store flags value @ (value_type $F32) address offset))
2648
+ (side_effect
2649
+ (aarch64_fpustore32 (amode $F32 address offset) flags value)))
2650
+ (rule (lower
2651
+ (store flags value @ (value_type $F64) address offset))
2652
+ (side_effect
2653
+ (aarch64_fpustore64 (amode $F64 address offset) flags value)))
2654
+ (rule (lower
2655
+ (store flags value @ (value_type $F128) address offset))
2656
+ (side_effect
2657
+ (aarch64_fpustore128 (amode $F128 address offset) flags value)))
2658
+
2659
+ (rule (lower
2660
+ (store flags value @ (value_type $I128) address offset))
2661
+ (side_effect
2662
+ (aarch64_storep64 (pair_amode address offset) flags
2663
+ (value_regs_get value 0)
2664
+ (value_regs_get value 1))))
2665
+
2666
+ (rule -1 (lower
2667
+ (store flags value @ (value_type (ty_vec64 _)) address offset))
2668
+ (side_effect
2669
+ (aarch64_fpustore64 (amode $F64 address offset) flags value)))
2670
+ (rule -3 (lower
2671
+ (store flags value @ (value_type (ty_vec128 _)) address offset))
2672
+ (side_effect
2673
+ (aarch64_fpustore128 (amode $I8X16 address offset) flags value)))
2674
+ (rule -2 (lower
2675
+ (store flags value @ (value_type (ty_dyn_vec64 _)) address offset))
2676
+ (side_effect
2677
+ (aarch64_fpustore64 (amode $F64 address offset) flags value)))
2678
+ (rule -4 (lower
2679
+ (store flags value @ (value_type (ty_dyn_vec128 _)) address offset))
2680
+ (side_effect
2681
+ (aarch64_fpustore128 (amode $I8X16 address offset) flags value)))
2682
+
2683
+ ;;; Rules for `{get,set}_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2684
+
2685
+ (rule (lower (get_pinned_reg))
2686
+ (mov_from_preg (preg_pinned)))
2687
+
2688
+ (rule (lower (set_pinned_reg val))
2689
+ (side_effect (write_pinned_reg val)))
2690
+
2691
+ ;;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2692
+
2693
+ ; SIMD&FP <=> SIMD&FP
2694
+ (rule 7 (lower (has_type (ty_float_or_vec _) (bitcast _ x @ (value_type (ty_float_or_vec _)))))
2695
+ x)
2696
+
2697
+ ; I128 => SIMD&FP
2698
+ (rule 6 (lower (has_type (ty_float_or_vec _) (bitcast _ x @ (value_type $I128))))
2699
+ (mov_to_vec (mov_to_fpu (value_regs_get x 0) (ScalarSize.Size64)) (value_regs_get x 1) 1 (VectorSize.Size64x2)))
2700
+
2701
+ ; SIMD&FP => I128
2702
+ (rule 5 (lower (has_type $I128 (bitcast _ x @ (value_type (ty_float_or_vec _)))))
2703
+ (value_regs (mov_from_vec x 0 (ScalarSize.Size64)) (mov_from_vec x 1 (ScalarSize.Size64))))
2704
+
2705
+ ; GPR => SIMD&FP
2706
+ (rule 4 (lower (has_type (ty_float_or_vec _) (bitcast _ x @ (value_type in_ty))))
2707
+ (if (ty_int_ref_scalar_64 in_ty))
2708
+ (mov_to_fpu x (scalar_size in_ty)))
2709
+
2710
+ ; SIMD&FP => GPR
2711
+ (rule 3 (lower (has_type out_ty (bitcast _ x @ (value_type (fits_in_64 (ty_float_or_vec _))))))
2712
+ (if (ty_int_ref_scalar_64 out_ty))
2713
+ (mov_from_vec x 0 (scalar_size out_ty)))
2714
+
2715
+ ; GPR <=> GPR
2716
+ (rule 1 (lower (has_type out_ty (bitcast _ x @ (value_type in_ty))))
2717
+ (if (ty_int_ref_scalar_64 out_ty))
2718
+ (if (ty_int_ref_scalar_64 in_ty))
2719
+ x)
2720
+ (rule 0 (lower (has_type $I128 (bitcast _ x @ (value_type $I128)))) x)
2721
+
2722
+ ;;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2723
+
2724
+ ;; extractlane with lane 0 can pass through the value unchanged; upper
2725
+ ;; bits are undefined when a narrower type is in a wider register.
2726
+ (rule 2 (lower (has_type (ty_scalar_float _) (extractlane val (u8_from_uimm8 0))))
2727
+ val)
2728
+
2729
+ (rule 0 (lower (has_type (ty_int ty)
2730
+ (extractlane val
2731
+ (u8_from_uimm8 lane))))
2732
+ (mov_from_vec val lane (scalar_size ty)))
2733
+
2734
+ (rule 1 (lower (has_type (ty_scalar_float ty)
2735
+ (extractlane val @ (value_type vty)
2736
+ (u8_from_uimm8 lane))))
2737
+ (fpu_move_from_vec val lane (vector_size vty)))
2738
+
2739
+ ;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2740
+
2741
+ (rule 1 (lower (insertlane vec @ (value_type vty)
2742
+ val @ (value_type (ty_int _))
2743
+ (u8_from_uimm8 lane)))
2744
+ (mov_to_vec vec val lane (vector_size vty)))
2745
+
2746
+ (rule (lower (insertlane vec @ (value_type vty)
2747
+ val @ (value_type (ty_scalar_float _))
2748
+ (u8_from_uimm8 lane)))
2749
+ (mov_vec_elem vec val lane 0 (vector_size vty)))
2750
+
2751
+ ;;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2752
+
2753
+ (rule (lower (stack_addr stack_slot offset))
2754
+ (compute_stack_addr stack_slot offset))
2755
+
2756
+ ;;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2757
+
2758
+ ;; All three sequences use one integer temporary and two vector
2759
+ ;; temporaries. The shift is done early so as to give the register
2760
+ ;; allocator the possibility of using the same reg for `tmp_v1` and
2761
+ ;; `src_v` in the case that this is the last use of `src_v`. See
2762
+ ;; https://github.com/WebAssembly/simd/pull/201 for the background and
2763
+ ;; derivation of these sequences. Alternative sequences are discussed
2764
+ ;; in https://github.com/bytecodealliance/wasmtime/issues/2296,
2765
+ ;; although they are not used here.
2766
+
2767
+ (rule (lower (vhigh_bits vec @ (value_type $I8X16)))
2768
+ (let (
2769
+ ;; Replicate the MSB of each of the 16 byte lanes across
2770
+ ;; the whole lane (sshr is an arithmetic right shift).
2771
+ (shifted Reg (sshr_vec_imm vec 7 (VectorSize.Size8x16)))
2772
+ ;; Bitwise-and with a mask
2773
+ ;; `0x80402010_08040201_80402010_08040201` to get the bit
2774
+ ;; in the proper location for each group of 8 lanes.
2775
+ (anded Reg (and_vec shifted (constant_f128 0x80402010_08040201_80402010_08040201) (VectorSize.Size8x16)))
2776
+ ;; Produce a version of `anded` with upper 8 lanes and
2777
+ ;; lower 8 lanes swapped.
2778
+ (anded_swapped Reg (vec_extract anded anded 8))
2779
+ ;; Zip together the two; with the above this produces the lane permutation:
2780
+ ;; 15 7 14 6 13 5 12 4 11 3 10 2 9 1 8 0
2781
+ (zipped Reg (zip1 anded anded_swapped (VectorSize.Size8x16)))
2782
+ ;; Add 16-bit lanes together ("add across vector"), so we
2783
+ ;; get, in the low 16 bits, 15+14+...+8 in the high byte
2784
+ ;; and 7+6+...+0 in the low byte. This effectively puts
2785
+ ;; the 16 MSBs together, giving our results.
2786
+ ;;
2787
+ ;; N.B.: `Size16x8` is not a typo!
2788
+ (result Reg (addv zipped (VectorSize.Size16x8))))
2789
+ (mov_from_vec result 0 (ScalarSize.Size16))))
2790
+
2791
+ (rule (lower (vhigh_bits vec @ (value_type $I16X8)))
2792
+ (let (
2793
+ ;; Replicate the MSB of each of the 8 16-bit lanes across
2794
+ ;; the whole lane (sshr is an arithmetic right shift).
2795
+ (shifted Reg (sshr_vec_imm vec 15 (VectorSize.Size16x8)))
2796
+ ;; Bitwise-and with a mask
2797
+ ;; `0x0080_0040_0020_0010_0008_0004_0002_0001` to get the
2798
+ ;; bit in the proper location for each group of 4 lanes.
2799
+ (anded Reg (and_vec shifted (constant_f128 0x0080_0040_0020_0010_0008_0004_0002_0001) (VectorSize.Size16x8)))
2800
+ ;; Add lanes together to get the 8 MSBs in the low byte.
2801
+ (result Reg (addv anded (VectorSize.Size16x8))))
2802
+ (mov_from_vec result 0 (ScalarSize.Size16))))
2803
+
2804
+ (rule (lower (vhigh_bits vec @ (value_type $I32X4)))
2805
+ (let (
2806
+ ;; Replicate the MSB of each of the 4 32-bit lanes across
2807
+ ;; the whole lane (sshr is an arithmetic right shift).
2808
+ (shifted Reg (sshr_vec_imm vec 31 (VectorSize.Size32x4)))
2809
+ ;; Bitwise-and with a mask
2810
+ ;; `0x00000008_00000004_00000002_00000001` to get the bit
2811
+ ;; in the proper location for each group of 4 lanes.
2812
+ (anded Reg (and_vec shifted (constant_f128 0x00000008_00000004_00000002_00000001) (VectorSize.Size32x4)))
2813
+ ;; Add lanes together to get the 4 MSBs in the low byte.
2814
+ (result Reg (addv anded (VectorSize.Size32x4))))
2815
+ (mov_from_vec result 0 (ScalarSize.Size32))))
2816
+
2817
+ (rule (lower (vhigh_bits vec @ (value_type $I64X2)))
2818
+ (let (
2819
+ ;; Grab the MSB out of each of the lanes, right-shift to
2820
+ ;; LSB, and add with a left-shift of upper lane's MSB back
2821
+ ;; to bit 1. the whole lane (sshr is an arithmetic right
2822
+ ;; shift).
2823
+ (upper_msb Reg (mov_from_vec vec 1 (ScalarSize.Size64)))
2824
+ (lower_msb Reg (mov_from_vec vec 0 (ScalarSize.Size64)))
2825
+ (upper_msb Reg (lsr_imm $I64 upper_msb (imm_shift_from_u8 63)))
2826
+ (lower_msb Reg (lsr_imm $I64 lower_msb (imm_shift_from_u8 63))))
2827
+ (add_shift $I64 lower_msb upper_msb (lshl_from_u64 $I64 1))))
2828
+
2829
+ ;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2830
+
2831
+ (rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
2832
+ (trap_if_overflow (add_with_flags_paired ty a b) tc))
2833
+
2834
+ ;;;; Helpers for `*_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2835
+
2836
+ ;; put a narrow value into a register and sign-/zero-extend depending on the ArgumentExtension
2837
+ (decl put_in_reg_ext32 (Value ArgumentExtension) Reg)
2838
+ (rule (put_in_reg_ext32 val (ArgumentExtension.Sext))
2839
+ (put_in_reg_sext32 val))
2840
+ (rule (put_in_reg_ext32 val (ArgumentExtension.Uext))
2841
+ (put_in_reg_zext32 val))
2842
+
2843
+ ;; For narrow values emit a normal op with both arguments zero/sign extended.
2844
+ ;; Then check if the output is the same as itself zero/sign extended from the narrower width.
2845
+ (decl overflow_op_small (Type Value Value ArgumentExtension ALUOp) InstOutput)
2846
+ (rule (overflow_op_small ty a b arg_ext alu_op)
2847
+ (let ((extend ExtendOp (lower_extend_op ty arg_ext))
2848
+
2849
+ ;; Instead of emitting two `{u,s}xt{b,h}` we do one as an instruction and
2850
+ ;; the other as an extend operation in the alu_op.
2851
+ ;;
2852
+ ;; uxtb a_ext, a
2853
+ ;; alu_op out, a_ext, b, {u,s}xtb
2854
+ ;; cmp out, out, {u,s}xtb
2855
+ ;; cset out_of, ne
2856
+ (a_ext Reg (put_in_reg_ext32 a arg_ext))
2857
+ (out Reg (alu_rrr_extend alu_op ty a_ext b extend))
2858
+ (out_of Reg (with_flags_reg
2859
+ (cmp_extend (OperandSize.Size32) out out extend)
2860
+ (cset (Cond.Ne)))))
2861
+ (output_pair
2862
+ (value_reg out)
2863
+ (value_reg out_of))))
2864
+
2865
+ ;; For register sized op's just emit a op+cset, without further masking.
2866
+ ;;
2867
+ ;; op out, a, b
2868
+ ;; cset out_of, cond
2869
+ ;;
2870
+ ;; conds expected:
2871
+ ;; Hs: Carry set, unsigned overflow; Vs: Signed Over-/Underflow;
2872
+ ;; Lo: Carry clear, meaning no unsigned overflow.
2873
+ ;; (this is because subtraction is implemented as an add with the two's complement value on aarch64, meaning there is a sub-overflow if the add does not overflow)
2874
+ (decl overflow_op_normal (Type Value Value ALUOp Cond) InstOutput)
2875
+ (rule (overflow_op_normal ty a b alu_op cond)
2876
+ (let ((out ValueRegs
2877
+ (with_flags
2878
+ (alu_rrr_with_flags_paired ty a b alu_op)
2879
+ (cset_paired cond))))
2880
+ (output_pair
2881
+ (value_regs_get out 0)
2882
+ (value_regs_get out 1))))
2883
+
2884
+ ;; For 128bit integers emit, for example, add+adcs+cset
2885
+ (decl overflow_op_128 (Value Value ALUOp ALUOp Cond) InstOutput)
2886
+ (rule (overflow_op_128 x y alu_op1 alu_op2 cond)
2887
+ (let
2888
+ ;; Get the high/low registers for `x`.
2889
+ ((x_regs ValueRegs x)
2890
+ (x_lo Reg (value_regs_get x_regs 0))
2891
+ (x_hi Reg (value_regs_get x_regs 1))
2892
+
2893
+ ;; Get the high/low registers for `y`.
2894
+ (y_regs ValueRegs y)
2895
+ (y_lo Reg (value_regs_get y_regs 0))
2896
+ (y_hi Reg (value_regs_get y_regs 1)))
2897
+ ;; cannot use the with_flags helper here but it should be fine right now
2898
+ (let
2899
+ ((lo_inst ProducesFlags (alu_rrr_with_flags_paired $I64 x_lo y_lo alu_op1))
2900
+ (hi_inst ConsumesAndProducesFlags (alu_rrr_with_flags_chained $I64 x_hi y_hi alu_op2))
2901
+ (of_inst ConsumesFlags (cset_paired cond))
2902
+
2903
+ (result MultiReg (with_flags_chained lo_inst hi_inst of_inst)))
2904
+ (multi_reg_to_pair_and_single result)))
2905
+ )
2906
+
2907
+ ;;;; Rules for `uadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2908
+
2909
+ ;; For values smaller than a register, we do a normal `add` with both arguments
2910
+ ;; zero extended. We then check if the output is the same as itself zero extended.
2911
+ (rule 1 (lower (has_type (fits_in_16 ty) (uadd_overflow a b)))
2912
+ (overflow_op_small ty a b (ArgumentExtension.Uext) (ALUOp.Add)))
2913
+
2914
+ ;; For register sized add's we just emit a adds+cset, without further masking.
2915
+ (rule 2 (lower (has_type (ty_32_or_64 ty) (uadd_overflow a b)))
2916
+ (overflow_op_normal ty a b (ALUOp.AddS) (Cond.Hs)))
2917
+
2918
+ ;; For 128bit integers we emit add+adcs+cset
2919
+ (rule 0 (lower (has_type $I128 (uadd_overflow x y)))
2920
+ (overflow_op_128 x y (ALUOp.AddS) (ALUOp.AdcS) (Cond.Hs)))
2921
+
2922
+ ;;;; Rules for `sadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2923
+
2924
+ ;; sxt{b,h} a_ext, a
2925
+ ;; add out, a_ext, b, sxt{b,h}
2926
+ ;; cmp out, out, sxt{b,h}
2927
+ ;; cset of, ne
2928
+ (rule 1 (lower (has_type (fits_in_16 ty) (sadd_overflow a b)))
2929
+ (overflow_op_small ty a b (ArgumentExtension.Sext) (ALUOp.Add)))
2930
+
2931
+ ;; adds a, b
2932
+ ;; cset of, vs
2933
+ (rule 2 (lower (has_type (ty_32_or_64 ty) (sadd_overflow a b)))
2934
+ (overflow_op_normal ty a b (ALUOp.AddS) (Cond.Vs)))
2935
+
2936
+ ;; adds x_lo, y_lo
2937
+ ;; addcs x_hi, y_hi
2938
+ ;; cset of, vs
2939
+ (rule 0 (lower (has_type $I128 (sadd_overflow x y)))
2940
+ (overflow_op_128 x y (ALUOp.AddS) (ALUOp.AdcS) (Cond.Vs)))
2941
+
2942
+ ;;;; Rules for `usub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2943
+
2944
+ ;; uxt{b,h} a_ext, a
2945
+ ;; sub out, a_ext, b, ext{b,h}
2946
+ ;; cmp out, out, uxt{b,h}
2947
+ ;; cset of, ne
2948
+ (rule 1 (lower (has_type (fits_in_16 ty) (usub_overflow a b)))
2949
+ (overflow_op_small ty a b (ArgumentExtension.Uext) (ALUOp.Sub)))
2950
+
2951
+ ;; subs a, b
2952
+ ;; cset of, lo
2953
+ (rule 2 (lower (has_type (ty_32_or_64 ty) (usub_overflow a b)))
2954
+ (overflow_op_normal ty a b (ALUOp.SubS) (Cond.Lo)))
2955
+
2956
+ ;; subs x_lo, y_lo
2957
+ ;; sbcs x_hi, y_hi
2958
+ ;; cset of, lo
2959
+ (rule 0 (lower (has_type $I128 (usub_overflow x y)))
2960
+ (overflow_op_128 x y (ALUOp.SubS) (ALUOp.SbcS) (Cond.Lo)))
2961
+
2962
+ ;;;; Rules for `ssub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2963
+
2964
+ ;; sxt{b,h} a_ext, a
2965
+ ;; sub out, a_ext, b, sxt{b,h}
2966
+ ;; cmp out, out, sxt{b,h}
2967
+ ;; cset of, ne
2968
+ (rule 1 (lower (has_type (fits_in_16 ty) (ssub_overflow a b)))
2969
+ (overflow_op_small ty a b (ArgumentExtension.Sext) (ALUOp.Sub)))
2970
+
2971
+ ;; subs a, b
2972
+ ;; cset of, vs
2973
+ (rule 2 (lower (has_type (ty_32_or_64 ty) (ssub_overflow a b)))
2974
+ (overflow_op_normal ty a b (ALUOp.SubS) (Cond.Vs)))
2975
+
2976
+ ;; subs x_lo, y_lo
2977
+ ;; sbcs x_hi, y_hi
2978
+ ;; cset of, vs
2979
+ (rule 0 (lower (has_type $I128 (ssub_overflow x y)))
2980
+ (overflow_op_128 x y (ALUOp.SubS) (ALUOp.SbcS) (Cond.Vs)))
2981
+
2982
+ ;;;; Rules for `umul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2983
+
2984
+ ;; uxt{b,h} a_ext, a
2985
+ ;; uxt{b,h} b_ext, b
2986
+ ;; mul out, a_ext, b_ext
2987
+ ;; cmp out, out, uxt{b,h}
2988
+ ;; cset of, ne
2989
+ (rule 1 (lower (has_type (fits_in_16 ty) (umul_overflow a b)))
2990
+ (let ((extend ExtendOp (lower_extend_op ty (ArgumentExtension.Uext)))
2991
+
2992
+ (a_uext Reg (put_in_reg_zext32 a))
2993
+ (b_uext Reg (put_in_reg_zext32 b))
2994
+ (out Reg (madd ty a_uext b_uext (zero_reg)))
2995
+ (out_of Reg (with_flags_reg
2996
+ (cmp_extend (OperandSize.Size32) out out extend)
2997
+ (cset (Cond.Ne)))))
2998
+ (output_pair
2999
+ (value_reg out)
3000
+ (value_reg out_of))))
3001
+
3002
+ ;; umull out, a, b
3003
+ ;; cmp out, out, uxtw
3004
+ ;; cset of, ne
3005
+ (rule 2 (lower (has_type $I32 (umul_overflow a b)))
3006
+ (let (
3007
+ (out Reg (umaddl a b (zero_reg)))
3008
+ (out_of Reg (with_flags_reg
3009
+ (cmp_extend (OperandSize.Size64) out out (ExtendOp.UXTW))
3010
+ (cset (Cond.Ne)))))
3011
+ (output_pair
3012
+ (value_reg out)
3013
+ (value_reg out_of))))
3014
+
3015
+ ;; mul out, a, b
3016
+ ;; umulh tmp, a, b
3017
+ ;; cmp tmp, #0
3018
+ ;; cset of, ne
3019
+ (rule 2 (lower (has_type $I64 (umul_overflow a b)))
3020
+ (let (
3021
+ (out Reg (madd $I64 a b (zero_reg)))
3022
+ (tmp Reg (umulh $I64 a b))
3023
+ (out_of Reg (with_flags_reg
3024
+ (cmp64_imm tmp (u8_into_imm12 0))
3025
+ (cset (Cond.Ne)))))
3026
+ (output_pair
3027
+ (value_reg out)
3028
+ (value_reg out_of))))
3029
+
3030
+ ;;;; Rules for `smul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3031
+
3032
+ ;; sxt{b,h} a_ext, a
3033
+ ;; sxt{b,h} b_ext, b
3034
+ ;; mul out, a_ext, b_ext
3035
+ ;; cmp out, out, sxt{b,h}
3036
+ ;; cset of, ne
3037
+ (rule 1 (lower (has_type (fits_in_16 ty) (smul_overflow a b)))
3038
+ (let ((extend ExtendOp (lower_extend_op ty (ArgumentExtension.Sext)))
3039
+
3040
+ (a_sext Reg (put_in_reg_sext32 a))
3041
+ (b_sext Reg (put_in_reg_sext32 b))
3042
+ (out Reg (madd ty a_sext b_sext (zero_reg)))
3043
+ (out_of Reg (with_flags_reg
3044
+ (cmp_extend (OperandSize.Size32) out out extend)
3045
+ (cset (Cond.Ne)))))
3046
+ (output_pair
3047
+ (value_reg out)
3048
+ (value_reg out_of))))
3049
+
3050
+ ;; smull out, a, b
3051
+ ;; cmp out, out, sxtw
3052
+ ;; cset of, ne
3053
+ (rule 2 (lower (has_type $I32 (smul_overflow a b)))
3054
+ (let (
3055
+ (out Reg (smaddl a b (zero_reg)))
3056
+ (out_of Reg (with_flags_reg
3057
+ (cmp_extend (OperandSize.Size64) out out (ExtendOp.SXTW))
3058
+ (cset (Cond.Ne)))))
3059
+ (output_pair
3060
+ (value_reg out)
3061
+ (value_reg out_of))))
3062
+
3063
+ ;; mul out, a, b
3064
+ ;; smulh tmp, a, b
3065
+ ;; cmp tmp, out, ASR #63
3066
+ ;; cset of, ne
3067
+ (rule 2 (lower (has_type $I64 (smul_overflow a b)))
3068
+ (let (
3069
+ (out Reg (madd $I64 a b (zero_reg)))
3070
+ (tmp Reg (smulh $I64 a b))
3071
+ (out_of Reg (with_flags_reg
3072
+ (cmp_rr_shift_asr (OperandSize.Size64) tmp out 63)
3073
+ (cset (Cond.Ne)))))
3074
+ (output_pair
3075
+ (value_reg out)
3076
+ (value_reg out_of))))
3077
+
3078
+ ;;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3079
+
3080
+ (rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
3081
+ (elf_tls_get_addr name))
3082
+
3083
+ (rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
3084
+ (macho_tls_get_addr name))
3085
+
3086
+ ;;; Rules for `fvpromote_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3087
+
3088
+ (rule (lower (fvpromote_low val))
3089
+ (vec_rr_long (VecRRLongOp.Fcvtl32) val false))
3090
+
3091
+ ;;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3092
+
3093
+ ;; `brif` following `icmp`
3094
+ (rule (lower_branch (brif (maybe_uextend (icmp cc x @ (value_type ty) y)) _ _) (two_targets taken not_taken))
3095
+ (let ((comparison FlagsAndCC (lower_icmp_into_flags cc x y ty))
3096
+ (cond Cond (cond_code (flags_and_cc_cc comparison))))
3097
+ (emit_side_effect
3098
+ (with_flags_side_effect (flags_and_cc_flags comparison)
3099
+ (cond_br taken
3100
+ not_taken
3101
+ (cond_br_cond cond))))))
3102
+
3103
+ ;; `brif` following `fcmp`
3104
+ (rule (lower_branch (brif (maybe_uextend (fcmp cc x @ (value_type (ty_scalar_float ty)) y)) _ _) (two_targets taken not_taken))
3105
+ (let ((cond Cond (fp_cond_code cc)))
3106
+ (emit_side_effect
3107
+ (with_flags_side_effect (fpu_cmp (scalar_size ty) x y)
3108
+ (cond_br taken not_taken
3109
+ (cond_br_cond cond))))))
3110
+
3111
+ ;; standard `brif`
3112
+ (rule -1 (lower_branch (brif c @ (value_type $I128) _ _) (two_targets taken not_taken))
3113
+ (let ((flags ProducesFlags (flags_to_producesflags c))
3114
+ (c ValueRegs (put_in_regs c))
3115
+ (c_lo Reg (value_regs_get c 0))
3116
+ (c_hi Reg (value_regs_get c 1))
3117
+ (rt Reg (orr $I64 c_lo c_hi)))
3118
+ (emit_side_effect
3119
+ (with_flags_side_effect flags
3120
+ (cond_br taken not_taken (cond_br_not_zero rt (operand_size $I64)))))))
3121
+ (rule -2 (lower_branch (brif c @ (value_type ty) _ _) (two_targets taken not_taken))
3122
+ (if (ty_int_ref_scalar_64 ty))
3123
+ (let ((flags ProducesFlags (flags_to_producesflags c))
3124
+ (rt Reg (put_in_reg_zext64 c)))
3125
+ (emit_side_effect
3126
+ (with_flags_side_effect flags
3127
+ (cond_br taken not_taken (cond_br_not_zero rt (operand_size $I64)))))))
3128
+
3129
+ ;; Special lowerings for `tbnz` - "Test bit and Branch if Nonzero"
3130
+ (rule 1 (lower_branch (brif (band x @ (value_type ty) (u64_from_iconst n)) _ _)
3131
+ (two_targets taken not_taken))
3132
+ (if-let bit (test_and_compare_bit_const ty n))
3133
+ (emit_side_effect (tbnz taken not_taken x bit)))
3134
+
3135
+ ;; Special lowering for `tbz` - "Test bit and Branch if Zero"
3136
+ (rule 1 (lower_branch (brif (icmp (IntCC.Equal)
3137
+ (band x @ (value_type (fits_in_64 ty))
3138
+ (u64_from_iconst n))
3139
+ (u64_from_iconst 0)) _ _)
3140
+ (two_targets taken not_taken))
3141
+ (if-let bit (test_and_compare_bit_const ty n))
3142
+ (emit_side_effect (tbz taken not_taken x bit)))
3143
+
3144
+ (decl pure partial test_and_compare_bit_const (Type u64) u8)
3145
+ (extern constructor test_and_compare_bit_const test_and_compare_bit_const)
3146
+
3147
+ ;;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3148
+
3149
+ (rule (lower_branch (jump _) (single_target label))
3150
+ (emit_side_effect (aarch64_jump label)))
3151
+
3152
+ ;;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3153
+
3154
+ ;; `targets` contains the default target with the list of branch targets
3155
+ ;; concatenated.
3156
+ (rule (lower_branch (br_table idx _) (jump_table_targets default targets))
3157
+ (let ((jt_size u32 (jump_table_size targets))
3158
+ (_ InstOutput (side_effect
3159
+ (emit_island (targets_jt_space targets))))
3160
+ (ridx Reg (put_in_reg_zext32 idx)))
3161
+ (br_table_impl (u32_as_u64 jt_size) ridx default targets)))