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,3435 @@
1
+ //! S390x ISA: binary code emission.
2
+
3
+ use crate::ir::{self, LibCall, MemFlags, TrapCode};
4
+ use crate::isa::s390x::inst::*;
5
+ use crate::isa::s390x::settings as s390x_settings;
6
+ use cranelift_control::ControlPlane;
7
+
8
+ /// Debug macro for testing that a regpair is valid: that the high register is even, and the low
9
+ /// register is one higher than the high register.
10
+ macro_rules! debug_assert_valid_regpair {
11
+ ($hi:expr, $lo:expr) => {
12
+ if cfg!(debug_assertions) {
13
+ match ($hi.to_real_reg(), $lo.to_real_reg()) {
14
+ (Some(hi), Some(lo)) => {
15
+ assert!(
16
+ hi.hw_enc() % 2 == 0,
17
+ "High register is not even: {}",
18
+ show_reg($hi)
19
+ );
20
+ assert_eq!(
21
+ hi.hw_enc() + 1,
22
+ lo.hw_enc(),
23
+ "Low register is not valid: {}, {}",
24
+ show_reg($hi),
25
+ show_reg($lo)
26
+ );
27
+ }
28
+
29
+ _ => {
30
+ panic!(
31
+ "Expected real registers for {} {}",
32
+ show_reg($hi),
33
+ show_reg($lo)
34
+ );
35
+ }
36
+ }
37
+ }
38
+ };
39
+ }
40
+
41
+ /// Type(s) of memory instructions available for mem_finalize.
42
+ pub struct MemInstType {
43
+ /// True if 12-bit unsigned displacement is supported.
44
+ pub have_d12: bool,
45
+ /// True if 20-bit signed displacement is supported.
46
+ pub have_d20: bool,
47
+ /// True if PC-relative addressing is supported (memory access).
48
+ pub have_pcrel: bool,
49
+ /// True if PC-relative addressing is supported (load address).
50
+ pub have_unaligned_pcrel: bool,
51
+ /// True if an index register is supported.
52
+ pub have_index: bool,
53
+ }
54
+
55
+ /// Memory addressing mode finalization: convert "special" modes (e.g.,
56
+ /// generic arbitrary stack offset) into real addressing modes, possibly by
57
+ /// emitting some helper instructions that come immediately before the use
58
+ /// of this amode.
59
+ pub fn mem_finalize(
60
+ mem: &MemArg,
61
+ state: &EmitState,
62
+ mi: MemInstType,
63
+ ) -> (SmallVec<[Inst; 4]>, MemArg) {
64
+ let mut insts = SmallVec::new();
65
+
66
+ // Resolve virtual addressing modes.
67
+ let mem = match mem {
68
+ &MemArg::RegOffset { off, .. }
69
+ | &MemArg::InitialSPOffset { off }
70
+ | &MemArg::NominalSPOffset { off }
71
+ | &MemArg::SlotOffset { off } => {
72
+ let base = match mem {
73
+ &MemArg::RegOffset { reg, .. } => reg,
74
+ &MemArg::InitialSPOffset { .. }
75
+ | &MemArg::NominalSPOffset { .. }
76
+ | &MemArg::SlotOffset { .. } => stack_reg(),
77
+ _ => unreachable!(),
78
+ };
79
+ let adj = match mem {
80
+ &MemArg::InitialSPOffset { .. } => i64::from(
81
+ state.frame_layout().clobber_size
82
+ + state.frame_layout().fixed_frame_storage_size
83
+ + state.frame_layout().outgoing_args_size
84
+ + state.nominal_sp_offset,
85
+ ),
86
+ &MemArg::SlotOffset { .. } => {
87
+ i64::from(state.frame_layout().outgoing_args_size + state.nominal_sp_offset)
88
+ }
89
+ &MemArg::NominalSPOffset { .. } => i64::from(state.nominal_sp_offset),
90
+ _ => 0,
91
+ };
92
+ let off = off + adj;
93
+
94
+ if let Some(disp) = UImm12::maybe_from_u64(off as u64) {
95
+ MemArg::BXD12 {
96
+ base,
97
+ index: zero_reg(),
98
+ disp,
99
+ flags: mem.get_flags(),
100
+ }
101
+ } else if let Some(disp) = SImm20::maybe_from_i64(off) {
102
+ MemArg::BXD20 {
103
+ base,
104
+ index: zero_reg(),
105
+ disp,
106
+ flags: mem.get_flags(),
107
+ }
108
+ } else {
109
+ let tmp = writable_spilltmp_reg();
110
+ assert!(base != tmp.to_reg());
111
+ if let Ok(imm) = i16::try_from(off) {
112
+ insts.push(Inst::Mov64SImm16 { rd: tmp, imm });
113
+ } else if let Ok(imm) = i32::try_from(off) {
114
+ insts.push(Inst::Mov64SImm32 { rd: tmp, imm });
115
+ } else {
116
+ // The offset must be smaller than the stack frame size,
117
+ // which the ABI code limits to 128 MB.
118
+ unreachable!();
119
+ }
120
+ MemArg::reg_plus_reg(base, tmp.to_reg(), mem.get_flags())
121
+ }
122
+ }
123
+ _ => mem.clone(),
124
+ };
125
+
126
+ // If this addressing mode cannot be handled by the instruction, use load-address.
127
+ let need_load_address = match &mem {
128
+ &MemArg::Label { .. } | &MemArg::Symbol { .. } if !mi.have_pcrel => true,
129
+ &MemArg::Symbol { flags, .. } if !mi.have_unaligned_pcrel && !flags.aligned() => true,
130
+ &MemArg::BXD20 { .. } if !mi.have_d20 => true,
131
+ &MemArg::BXD12 { index, .. } | &MemArg::BXD20 { index, .. } if !mi.have_index => {
132
+ index != zero_reg()
133
+ }
134
+ _ => false,
135
+ };
136
+ let mem = if need_load_address {
137
+ let flags = mem.get_flags();
138
+ let tmp = writable_spilltmp_reg();
139
+ insts.push(Inst::LoadAddr { rd: tmp, mem });
140
+ MemArg::reg(tmp.to_reg(), flags)
141
+ } else {
142
+ mem
143
+ };
144
+
145
+ // Convert 12-bit displacement to 20-bit if required.
146
+ let mem = match &mem {
147
+ &MemArg::BXD12 {
148
+ base,
149
+ index,
150
+ disp,
151
+ flags,
152
+ } if !mi.have_d12 => {
153
+ assert!(mi.have_d20);
154
+ MemArg::BXD20 {
155
+ base,
156
+ index,
157
+ disp: SImm20::from_uimm12(disp),
158
+ flags,
159
+ }
160
+ }
161
+ _ => mem,
162
+ };
163
+
164
+ (insts, mem)
165
+ }
166
+
167
+ pub fn mem_emit(
168
+ rd: Reg,
169
+ mem: &MemArg,
170
+ opcode_rx: Option<u16>,
171
+ opcode_rxy: Option<u16>,
172
+ opcode_ril: Option<u16>,
173
+ add_trap: bool,
174
+ sink: &mut MachBuffer<Inst>,
175
+ emit_info: &EmitInfo,
176
+ state: &mut EmitState,
177
+ ) {
178
+ let (mem_insts, mem) = mem_finalize(
179
+ mem,
180
+ state,
181
+ MemInstType {
182
+ have_d12: opcode_rx.is_some(),
183
+ have_d20: opcode_rxy.is_some(),
184
+ have_pcrel: opcode_ril.is_some(),
185
+ have_unaligned_pcrel: opcode_ril.is_some() && !add_trap,
186
+ have_index: true,
187
+ },
188
+ );
189
+ for inst in mem_insts.into_iter() {
190
+ inst.emit(sink, emit_info, state);
191
+ }
192
+
193
+ if add_trap {
194
+ if let Some(trap_code) = mem.get_flags().trap_code() {
195
+ sink.add_trap(trap_code);
196
+ }
197
+ }
198
+
199
+ match &mem {
200
+ &MemArg::BXD12 {
201
+ base, index, disp, ..
202
+ } => {
203
+ put(
204
+ sink,
205
+ &enc_rx(opcode_rx.unwrap(), rd, base, index, disp.bits()),
206
+ );
207
+ }
208
+ &MemArg::BXD20 {
209
+ base, index, disp, ..
210
+ } => {
211
+ put(
212
+ sink,
213
+ &enc_rxy(opcode_rxy.unwrap(), rd, base, index, disp.bits()),
214
+ );
215
+ }
216
+ &MemArg::Label { target } => {
217
+ sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
218
+ put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
219
+ }
220
+ &MemArg::Symbol {
221
+ ref name, offset, ..
222
+ } => {
223
+ let reloc_offset = sink.cur_offset() + 2;
224
+ sink.add_reloc_at_offset(
225
+ reloc_offset,
226
+ Reloc::S390xPCRel32Dbl,
227
+ &**name,
228
+ (offset + 2).into(),
229
+ );
230
+ put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
231
+ }
232
+ _ => unreachable!(),
233
+ }
234
+ }
235
+
236
+ pub fn mem_rs_emit(
237
+ rd: Reg,
238
+ rn: Reg,
239
+ mem: &MemArg,
240
+ opcode_rs: Option<u16>,
241
+ opcode_rsy: Option<u16>,
242
+ add_trap: bool,
243
+ sink: &mut MachBuffer<Inst>,
244
+ emit_info: &EmitInfo,
245
+ state: &mut EmitState,
246
+ ) {
247
+ let (mem_insts, mem) = mem_finalize(
248
+ mem,
249
+ state,
250
+ MemInstType {
251
+ have_d12: opcode_rs.is_some(),
252
+ have_d20: opcode_rsy.is_some(),
253
+ have_pcrel: false,
254
+ have_unaligned_pcrel: false,
255
+ have_index: false,
256
+ },
257
+ );
258
+ for inst in mem_insts.into_iter() {
259
+ inst.emit(sink, emit_info, state);
260
+ }
261
+
262
+ if add_trap {
263
+ if let Some(trap_code) = mem.get_flags().trap_code() {
264
+ sink.add_trap(trap_code);
265
+ }
266
+ }
267
+
268
+ match &mem {
269
+ &MemArg::BXD12 {
270
+ base, index, disp, ..
271
+ } => {
272
+ assert!(index == zero_reg());
273
+ put(sink, &enc_rs(opcode_rs.unwrap(), rd, rn, base, disp.bits()));
274
+ }
275
+ &MemArg::BXD20 {
276
+ base, index, disp, ..
277
+ } => {
278
+ assert!(index == zero_reg());
279
+ put(
280
+ sink,
281
+ &enc_rsy(opcode_rsy.unwrap(), rd, rn, base, disp.bits()),
282
+ );
283
+ }
284
+ _ => unreachable!(),
285
+ }
286
+ }
287
+
288
+ pub fn mem_imm8_emit(
289
+ imm: u8,
290
+ mem: &MemArg,
291
+ opcode_si: u16,
292
+ opcode_siy: u16,
293
+ add_trap: bool,
294
+ sink: &mut MachBuffer<Inst>,
295
+ emit_info: &EmitInfo,
296
+ state: &mut EmitState,
297
+ ) {
298
+ let (mem_insts, mem) = mem_finalize(
299
+ mem,
300
+ state,
301
+ MemInstType {
302
+ have_d12: true,
303
+ have_d20: true,
304
+ have_pcrel: false,
305
+ have_unaligned_pcrel: false,
306
+ have_index: false,
307
+ },
308
+ );
309
+ for inst in mem_insts.into_iter() {
310
+ inst.emit(sink, emit_info, state);
311
+ }
312
+
313
+ if add_trap {
314
+ if let Some(trap_code) = mem.get_flags().trap_code() {
315
+ sink.add_trap(trap_code);
316
+ }
317
+ }
318
+
319
+ match &mem {
320
+ &MemArg::BXD12 {
321
+ base, index, disp, ..
322
+ } => {
323
+ assert!(index == zero_reg());
324
+ put(sink, &enc_si(opcode_si, base, disp.bits(), imm));
325
+ }
326
+ &MemArg::BXD20 {
327
+ base, index, disp, ..
328
+ } => {
329
+ assert!(index == zero_reg());
330
+ put(sink, &enc_siy(opcode_siy, base, disp.bits(), imm));
331
+ }
332
+ _ => unreachable!(),
333
+ }
334
+ }
335
+
336
+ pub fn mem_imm16_emit(
337
+ imm: i16,
338
+ mem: &MemArg,
339
+ opcode_sil: u16,
340
+ add_trap: bool,
341
+ sink: &mut MachBuffer<Inst>,
342
+ emit_info: &EmitInfo,
343
+ state: &mut EmitState,
344
+ ) {
345
+ let (mem_insts, mem) = mem_finalize(
346
+ mem,
347
+ state,
348
+ MemInstType {
349
+ have_d12: true,
350
+ have_d20: false,
351
+ have_pcrel: false,
352
+ have_unaligned_pcrel: false,
353
+ have_index: false,
354
+ },
355
+ );
356
+ for inst in mem_insts.into_iter() {
357
+ inst.emit(sink, emit_info, state);
358
+ }
359
+
360
+ if add_trap {
361
+ if let Some(trap_code) = mem.get_flags().trap_code() {
362
+ sink.add_trap(trap_code);
363
+ }
364
+ }
365
+
366
+ match &mem {
367
+ &MemArg::BXD12 {
368
+ base, index, disp, ..
369
+ } => {
370
+ assert!(index == zero_reg());
371
+ put(sink, &enc_sil(opcode_sil, base, disp.bits(), imm));
372
+ }
373
+ _ => unreachable!(),
374
+ }
375
+ }
376
+
377
+ pub fn mem_vrx_emit(
378
+ rd: Reg,
379
+ mem: &MemArg,
380
+ opcode: u16,
381
+ m3: u8,
382
+ add_trap: bool,
383
+ sink: &mut MachBuffer<Inst>,
384
+ emit_info: &EmitInfo,
385
+ state: &mut EmitState,
386
+ ) {
387
+ let (mem_insts, mem) = mem_finalize(
388
+ mem,
389
+ state,
390
+ MemInstType {
391
+ have_d12: true,
392
+ have_d20: false,
393
+ have_pcrel: false,
394
+ have_unaligned_pcrel: false,
395
+ have_index: true,
396
+ },
397
+ );
398
+ for inst in mem_insts.into_iter() {
399
+ inst.emit(sink, emit_info, state);
400
+ }
401
+
402
+ if add_trap {
403
+ if let Some(trap_code) = mem.get_flags().trap_code() {
404
+ sink.add_trap(trap_code);
405
+ }
406
+ }
407
+
408
+ match &mem {
409
+ &MemArg::BXD12 {
410
+ base, index, disp, ..
411
+ } => {
412
+ put(sink, &enc_vrx(opcode, rd, base, index, disp.bits(), m3));
413
+ }
414
+ _ => unreachable!(),
415
+ }
416
+ }
417
+
418
+ //=============================================================================
419
+ // Instructions and subcomponents: emission
420
+
421
+ fn machreg_to_gpr(m: Reg) -> u8 {
422
+ assert_eq!(m.class(), RegClass::Int);
423
+ u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
424
+ }
425
+
426
+ fn machreg_to_vr(m: Reg) -> u8 {
427
+ assert_eq!(m.class(), RegClass::Float);
428
+ u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
429
+ }
430
+
431
+ fn machreg_to_fpr(m: Reg) -> u8 {
432
+ assert!(is_fpr(m));
433
+ u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
434
+ }
435
+
436
+ fn machreg_to_gpr_or_fpr(m: Reg) -> u8 {
437
+ let reg = u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap();
438
+ assert!(reg < 16);
439
+ reg
440
+ }
441
+
442
+ fn rxb(v1: Option<Reg>, v2: Option<Reg>, v3: Option<Reg>, v4: Option<Reg>) -> u8 {
443
+ let mut rxb = 0;
444
+
445
+ let is_high_vr = |reg| -> bool {
446
+ if let Some(reg) = reg {
447
+ if !is_fpr(reg) {
448
+ return true;
449
+ }
450
+ }
451
+ false
452
+ };
453
+
454
+ if is_high_vr(v1) {
455
+ rxb = rxb | 8;
456
+ }
457
+ if is_high_vr(v2) {
458
+ rxb = rxb | 4;
459
+ }
460
+ if is_high_vr(v3) {
461
+ rxb = rxb | 2;
462
+ }
463
+ if is_high_vr(v4) {
464
+ rxb = rxb | 1;
465
+ }
466
+
467
+ rxb
468
+ }
469
+
470
+ /// E-type instructions.
471
+ ///
472
+ /// 15
473
+ /// opcode
474
+ /// 0
475
+ ///
476
+ fn enc_e(opcode: u16) -> [u8; 2] {
477
+ let mut enc: [u8; 2] = [0; 2];
478
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
479
+ let opcode2 = (opcode & 0xff) as u8;
480
+
481
+ enc[0] = opcode1;
482
+ enc[1] = opcode2;
483
+ enc
484
+ }
485
+
486
+ /// RIa-type instructions.
487
+ ///
488
+ /// 31 23 19 15
489
+ /// opcode1 r1 opcode2 i2
490
+ /// 24 20 16 0
491
+ ///
492
+ fn enc_ri_a(opcode: u16, r1: Reg, i2: u16) -> [u8; 4] {
493
+ let mut enc: [u8; 4] = [0; 4];
494
+ let opcode1 = ((opcode >> 4) & 0xff) as u8;
495
+ let opcode2 = (opcode & 0xf) as u8;
496
+ let r1 = machreg_to_gpr(r1) & 0x0f;
497
+
498
+ enc[0] = opcode1;
499
+ enc[1] = r1 << 4 | opcode2;
500
+ enc[2..].copy_from_slice(&i2.to_be_bytes());
501
+ enc
502
+ }
503
+
504
+ /// RIb-type instructions.
505
+ ///
506
+ /// 31 23 19 15
507
+ /// opcode1 r1 opcode2 ri2
508
+ /// 24 20 16 0
509
+ ///
510
+ fn enc_ri_b(opcode: u16, r1: Reg, ri2: i32) -> [u8; 4] {
511
+ let mut enc: [u8; 4] = [0; 4];
512
+ let opcode1 = ((opcode >> 4) & 0xff) as u8;
513
+ let opcode2 = (opcode & 0xf) as u8;
514
+ let r1 = machreg_to_gpr(r1) & 0x0f;
515
+ let ri2 = ((ri2 >> 1) & 0xffff) as u16;
516
+
517
+ enc[0] = opcode1;
518
+ enc[1] = r1 << 4 | opcode2;
519
+ enc[2..].copy_from_slice(&ri2.to_be_bytes());
520
+ enc
521
+ }
522
+
523
+ /// RIc-type instructions.
524
+ ///
525
+ /// 31 23 19 15
526
+ /// opcode1 m1 opcode2 ri2
527
+ /// 24 20 16 0
528
+ ///
529
+ fn enc_ri_c(opcode: u16, m1: u8, ri2: i32) -> [u8; 4] {
530
+ let mut enc: [u8; 4] = [0; 4];
531
+ let opcode1 = ((opcode >> 4) & 0xff) as u8;
532
+ let opcode2 = (opcode & 0xf) as u8;
533
+ let m1 = m1 & 0x0f;
534
+ let ri2 = ((ri2 >> 1) & 0xffff) as u16;
535
+
536
+ enc[0] = opcode1;
537
+ enc[1] = m1 << 4 | opcode2;
538
+ enc[2..].copy_from_slice(&ri2.to_be_bytes());
539
+ enc
540
+ }
541
+
542
+ /// RIEa-type instructions.
543
+ ///
544
+ /// 47 39 35 31 15 11 7
545
+ /// opcode1 r1 -- i2 m3 -- opcode2
546
+ /// 40 36 32 16 12 8 0
547
+ ///
548
+ fn enc_rie_a(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
549
+ let mut enc: [u8; 6] = [0; 6];
550
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
551
+ let opcode2 = (opcode & 0xff) as u8;
552
+ let r1 = machreg_to_gpr(r1) & 0x0f;
553
+ let m3 = m3 & 0x0f;
554
+
555
+ enc[0] = opcode1;
556
+ enc[1] = r1 << 4;
557
+ enc[2..4].copy_from_slice(&i2.to_be_bytes());
558
+ enc[4] = m3 << 4;
559
+ enc[5] = opcode2;
560
+ enc
561
+ }
562
+
563
+ /// RIEd-type instructions.
564
+ ///
565
+ /// 47 39 35 31 15 7
566
+ /// opcode1 r1 r3 i2 -- opcode2
567
+ /// 40 36 32 16 8 0
568
+ ///
569
+ fn enc_rie_d(opcode: u16, r1: Reg, r3: Reg, i2: u16) -> [u8; 6] {
570
+ let mut enc: [u8; 6] = [0; 6];
571
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
572
+ let opcode2 = (opcode & 0xff) as u8;
573
+ let r1 = machreg_to_gpr(r1) & 0x0f;
574
+ let r3 = machreg_to_gpr(r3) & 0x0f;
575
+
576
+ enc[0] = opcode1;
577
+ enc[1] = r1 << 4 | r3;
578
+ enc[2..4].copy_from_slice(&i2.to_be_bytes());
579
+ enc[5] = opcode2;
580
+ enc
581
+ }
582
+
583
+ /// RIEf-type instructions.
584
+ ///
585
+ /// 47 39 35 31 23 15 7
586
+ /// opcode1 r1 r2 i3 i4 i5 opcode2
587
+ /// 40 36 32 24 16 8 0
588
+ ///
589
+ fn enc_rie_f(opcode: u16, r1: Reg, r2: Reg, i3: u8, i4: u8, i5: u8) -> [u8; 6] {
590
+ let mut enc: [u8; 6] = [0; 6];
591
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
592
+ let opcode2 = (opcode & 0xff) as u8;
593
+ let r1 = machreg_to_gpr(r1) & 0x0f;
594
+ let r2 = machreg_to_gpr(r2) & 0x0f;
595
+
596
+ enc[0] = opcode1;
597
+ enc[1] = r1 << 4 | r2;
598
+ enc[2] = i3;
599
+ enc[3] = i4;
600
+ enc[4] = i5;
601
+ enc[5] = opcode2;
602
+ enc
603
+ }
604
+
605
+ /// RIEg-type instructions.
606
+ ///
607
+ /// 47 39 35 31 15 7
608
+ /// opcode1 r1 m3 i2 -- opcode2
609
+ /// 40 36 32 16 8 0
610
+ ///
611
+ fn enc_rie_g(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
612
+ let mut enc: [u8; 6] = [0; 6];
613
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
614
+ let opcode2 = (opcode & 0xff) as u8;
615
+ let r1 = machreg_to_gpr(r1) & 0x0f;
616
+ let m3 = m3 & 0x0f;
617
+
618
+ enc[0] = opcode1;
619
+ enc[1] = r1 << 4 | m3;
620
+ enc[2..4].copy_from_slice(&i2.to_be_bytes());
621
+ enc[5] = opcode2;
622
+ enc
623
+ }
624
+
625
+ /// RILa-type instructions.
626
+ ///
627
+ /// 47 39 35 31
628
+ /// opcode1 r1 opcode2 i2
629
+ /// 40 36 32 0
630
+ ///
631
+ fn enc_ril_a(opcode: u16, r1: Reg, i2: u32) -> [u8; 6] {
632
+ let mut enc: [u8; 6] = [0; 6];
633
+ let opcode1 = ((opcode >> 4) & 0xff) as u8;
634
+ let opcode2 = (opcode & 0xf) as u8;
635
+ let r1 = machreg_to_gpr(r1) & 0x0f;
636
+
637
+ enc[0] = opcode1;
638
+ enc[1] = r1 << 4 | opcode2;
639
+ enc[2..].copy_from_slice(&i2.to_be_bytes());
640
+ enc
641
+ }
642
+
643
+ /// RILb-type instructions.
644
+ ///
645
+ /// 47 39 35 31
646
+ /// opcode1 r1 opcode2 ri2
647
+ /// 40 36 32 0
648
+ ///
649
+ fn enc_ril_b(opcode: u16, r1: Reg, ri2: u32) -> [u8; 6] {
650
+ let mut enc: [u8; 6] = [0; 6];
651
+ let opcode1 = ((opcode >> 4) & 0xff) as u8;
652
+ let opcode2 = (opcode & 0xf) as u8;
653
+ let r1 = machreg_to_gpr(r1) & 0x0f;
654
+ let ri2 = ri2 >> 1;
655
+
656
+ enc[0] = opcode1;
657
+ enc[1] = r1 << 4 | opcode2;
658
+ enc[2..].copy_from_slice(&ri2.to_be_bytes());
659
+ enc
660
+ }
661
+
662
+ /// RILc-type instructions.
663
+ ///
664
+ /// 47 39 35 31
665
+ /// opcode1 m1 opcode2 i2
666
+ /// 40 36 32 0
667
+ ///
668
+ fn enc_ril_c(opcode: u16, m1: u8, ri2: u32) -> [u8; 6] {
669
+ let mut enc: [u8; 6] = [0; 6];
670
+ let opcode1 = ((opcode >> 4) & 0xff) as u8;
671
+ let opcode2 = (opcode & 0xf) as u8;
672
+ let m1 = m1 & 0x0f;
673
+ let ri2 = ri2 >> 1;
674
+
675
+ enc[0] = opcode1;
676
+ enc[1] = m1 << 4 | opcode2;
677
+ enc[2..].copy_from_slice(&ri2.to_be_bytes());
678
+ enc
679
+ }
680
+
681
+ /// RR-type instructions.
682
+ ///
683
+ /// 15 7 3
684
+ /// opcode r1 r2
685
+ /// 8 4 0
686
+ ///
687
+ fn enc_rr(opcode: u16, r1: Reg, r2: Reg) -> [u8; 2] {
688
+ let mut enc: [u8; 2] = [0; 2];
689
+ let opcode = (opcode & 0xff) as u8;
690
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
691
+ let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
692
+
693
+ enc[0] = opcode;
694
+ enc[1] = r1 << 4 | r2;
695
+ enc
696
+ }
697
+
698
+ /// RRD-type instructions.
699
+ ///
700
+ /// 31 15 11 7 3
701
+ /// opcode r1 -- r3 r2
702
+ /// 16 12 8 4 0
703
+ ///
704
+ fn enc_rrd(opcode: u16, r1: Reg, r2: Reg, r3: Reg) -> [u8; 4] {
705
+ let mut enc: [u8; 4] = [0; 4];
706
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
707
+ let opcode2 = (opcode & 0xff) as u8;
708
+ let r1 = machreg_to_fpr(r1) & 0x0f;
709
+ let r2 = machreg_to_fpr(r2) & 0x0f;
710
+ let r3 = machreg_to_fpr(r3) & 0x0f;
711
+
712
+ enc[0] = opcode1;
713
+ enc[1] = opcode2;
714
+ enc[2] = r1 << 4;
715
+ enc[3] = r3 << 4 | r2;
716
+ enc
717
+ }
718
+
719
+ /// RRE-type instructions.
720
+ ///
721
+ /// 31 15 7 3
722
+ /// opcode -- r1 r2
723
+ /// 16 8 4 0
724
+ ///
725
+ fn enc_rre(opcode: u16, r1: Reg, r2: Reg) -> [u8; 4] {
726
+ let mut enc: [u8; 4] = [0; 4];
727
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
728
+ let opcode2 = (opcode & 0xff) as u8;
729
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
730
+ let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
731
+
732
+ enc[0] = opcode1;
733
+ enc[1] = opcode2;
734
+ enc[3] = r1 << 4 | r2;
735
+ enc
736
+ }
737
+
738
+ /// RRFa/b-type instructions.
739
+ ///
740
+ /// 31 15 11 7 3
741
+ /// opcode r3 m4 r1 r2
742
+ /// 16 12 8 4 0
743
+ ///
744
+ fn enc_rrf_ab(opcode: u16, r1: Reg, r2: Reg, r3: Reg, m4: u8) -> [u8; 4] {
745
+ let mut enc: [u8; 4] = [0; 4];
746
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
747
+ let opcode2 = (opcode & 0xff) as u8;
748
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
749
+ let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
750
+ let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
751
+ let m4 = m4 & 0x0f;
752
+
753
+ enc[0] = opcode1;
754
+ enc[1] = opcode2;
755
+ enc[2] = r3 << 4 | m4;
756
+ enc[3] = r1 << 4 | r2;
757
+ enc
758
+ }
759
+
760
+ /// RRFc/d/e-type instructions.
761
+ ///
762
+ /// 31 15 11 7 3
763
+ /// opcode m3 m4 r1 r2
764
+ /// 16 12 8 4 0
765
+ ///
766
+ fn enc_rrf_cde(opcode: u16, r1: Reg, r2: Reg, m3: u8, m4: u8) -> [u8; 4] {
767
+ let mut enc: [u8; 4] = [0; 4];
768
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
769
+ let opcode2 = (opcode & 0xff) as u8;
770
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
771
+ let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
772
+ let m3 = m3 & 0x0f;
773
+ let m4 = m4 & 0x0f;
774
+
775
+ enc[0] = opcode1;
776
+ enc[1] = opcode2;
777
+ enc[2] = m3 << 4 | m4;
778
+ enc[3] = r1 << 4 | r2;
779
+ enc
780
+ }
781
+
782
+ /// RS-type instructions.
783
+ ///
784
+ /// 31 23 19 15 11
785
+ /// opcode r1 r3 b2 d2
786
+ /// 24 20 16 12 0
787
+ ///
788
+ fn enc_rs(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 4] {
789
+ let opcode = (opcode & 0xff) as u8;
790
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
791
+ let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
792
+ let b2 = machreg_to_gpr(b2) & 0x0f;
793
+ let d2_lo = (d2 & 0xff) as u8;
794
+ let d2_hi = ((d2 >> 8) & 0x0f) as u8;
795
+
796
+ let mut enc: [u8; 4] = [0; 4];
797
+ enc[0] = opcode;
798
+ enc[1] = r1 << 4 | r3;
799
+ enc[2] = b2 << 4 | d2_hi;
800
+ enc[3] = d2_lo;
801
+ enc
802
+ }
803
+
804
+ /// RSY-type instructions.
805
+ ///
806
+ /// 47 39 35 31 27 15 7
807
+ /// opcode1 r1 r3 b2 dl2 dh2 opcode2
808
+ /// 40 36 32 28 16 8 0
809
+ ///
810
+ fn enc_rsy(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 6] {
811
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
812
+ let opcode2 = (opcode & 0xff) as u8;
813
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
814
+ let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
815
+ let b2 = machreg_to_gpr(b2) & 0x0f;
816
+ let dl2_lo = (d2 & 0xff) as u8;
817
+ let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
818
+ let dh2 = ((d2 >> 12) & 0xff) as u8;
819
+
820
+ let mut enc: [u8; 6] = [0; 6];
821
+ enc[0] = opcode1;
822
+ enc[1] = r1 << 4 | r3;
823
+ enc[2] = b2 << 4 | dl2_hi;
824
+ enc[3] = dl2_lo;
825
+ enc[4] = dh2;
826
+ enc[5] = opcode2;
827
+ enc
828
+ }
829
+
830
+ /// RX-type instructions.
831
+ ///
832
+ /// 31 23 19 15 11
833
+ /// opcode r1 x2 b2 d2
834
+ /// 24 20 16 12 0
835
+ ///
836
+ fn enc_rx(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 4] {
837
+ let opcode = (opcode & 0xff) as u8;
838
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
839
+ let b2 = machreg_to_gpr(b2) & 0x0f;
840
+ let x2 = machreg_to_gpr(x2) & 0x0f;
841
+ let d2_lo = (d2 & 0xff) as u8;
842
+ let d2_hi = ((d2 >> 8) & 0x0f) as u8;
843
+
844
+ let mut enc: [u8; 4] = [0; 4];
845
+ enc[0] = opcode;
846
+ enc[1] = r1 << 4 | x2;
847
+ enc[2] = b2 << 4 | d2_hi;
848
+ enc[3] = d2_lo;
849
+ enc
850
+ }
851
+
852
+ /// RXY-type instructions.
853
+ ///
854
+ /// 47 39 35 31 27 15 7
855
+ /// opcode1 r1 x2 b2 dl2 dh2 opcode2
856
+ /// 40 36 32 28 16 8 0
857
+ ///
858
+ fn enc_rxy(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 6] {
859
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
860
+ let opcode2 = (opcode & 0xff) as u8;
861
+ let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
862
+ let b2 = machreg_to_gpr(b2) & 0x0f;
863
+ let x2 = machreg_to_gpr(x2) & 0x0f;
864
+ let dl2_lo = (d2 & 0xff) as u8;
865
+ let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
866
+ let dh2 = ((d2 >> 12) & 0xff) as u8;
867
+
868
+ let mut enc: [u8; 6] = [0; 6];
869
+ enc[0] = opcode1;
870
+ enc[1] = r1 << 4 | x2;
871
+ enc[2] = b2 << 4 | dl2_hi;
872
+ enc[3] = dl2_lo;
873
+ enc[4] = dh2;
874
+ enc[5] = opcode2;
875
+ enc
876
+ }
877
+
878
+ /// SI-type instructions.
879
+ ///
880
+ /// 31 23 15 11
881
+ /// opcode i2 b1 d1
882
+ /// 24 16 12 0
883
+ ///
884
+ fn enc_si(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 4] {
885
+ let opcode = (opcode & 0xff) as u8;
886
+ let b1 = machreg_to_gpr(b1) & 0x0f;
887
+ let d1_lo = (d1 & 0xff) as u8;
888
+ let d1_hi = ((d1 >> 8) & 0x0f) as u8;
889
+
890
+ let mut enc: [u8; 4] = [0; 4];
891
+ enc[0] = opcode;
892
+ enc[1] = i2;
893
+ enc[2] = b1 << 4 | d1_hi;
894
+ enc[3] = d1_lo;
895
+ enc
896
+ }
897
+
898
+ /// SIL-type instructions.
899
+ ///
900
+ /// 47 31 27 15
901
+ /// opcode b1 d1 i2
902
+ /// 32 28 16 0
903
+ ///
904
+ fn enc_sil(opcode: u16, b1: Reg, d1: u32, i2: i16) -> [u8; 6] {
905
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
906
+ let opcode2 = (opcode & 0xff) as u8;
907
+ let b1 = machreg_to_gpr(b1) & 0x0f;
908
+ let d1_lo = (d1 & 0xff) as u8;
909
+ let d1_hi = ((d1 >> 8) & 0x0f) as u8;
910
+
911
+ let mut enc: [u8; 6] = [0; 6];
912
+ enc[0] = opcode1;
913
+ enc[1] = opcode2;
914
+ enc[2] = b1 << 4 | d1_hi;
915
+ enc[3] = d1_lo;
916
+ enc[4..].copy_from_slice(&i2.to_be_bytes());
917
+ enc
918
+ }
919
+
920
+ /// SIY-type instructions.
921
+ ///
922
+ /// 47 39 31 27 15 7
923
+ /// opcode1 i2 b1 dl1 dh1 opcode2
924
+ /// 40 32 28 16 8 0
925
+ ///
926
+ fn enc_siy(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 6] {
927
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
928
+ let opcode2 = (opcode & 0xff) as u8;
929
+ let b1 = machreg_to_gpr(b1) & 0x0f;
930
+ let dl1_lo = (d1 & 0xff) as u8;
931
+ let dl1_hi = ((d1 >> 8) & 0x0f) as u8;
932
+ let dh1 = ((d1 >> 12) & 0xff) as u8;
933
+
934
+ let mut enc: [u8; 6] = [0; 6];
935
+ enc[0] = opcode1;
936
+ enc[1] = i2;
937
+ enc[2] = b1 << 4 | dl1_hi;
938
+ enc[3] = dl1_lo;
939
+ enc[4] = dh1;
940
+ enc[5] = opcode2;
941
+ enc
942
+ }
943
+
944
+ /// VRIa-type instructions.
945
+ ///
946
+ /// 47 39 35 31 15 11 7
947
+ /// opcode1 v1 - i2 m3 rxb opcode2
948
+ /// 40 36 32 16 12 8 0
949
+ ///
950
+ fn enc_vri_a(opcode: u16, v1: Reg, i2: u16, m3: u8) -> [u8; 6] {
951
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
952
+ let opcode2 = (opcode & 0xff) as u8;
953
+ let rxb = rxb(Some(v1), None, None, None);
954
+ let v1 = machreg_to_vr(v1) & 0x0f;
955
+ let m3 = m3 & 0x0f;
956
+
957
+ let mut enc: [u8; 6] = [0; 6];
958
+ enc[0] = opcode1;
959
+ enc[1] = v1 << 4;
960
+ enc[2..4].copy_from_slice(&i2.to_be_bytes());
961
+ enc[4] = m3 << 4 | rxb;
962
+ enc[5] = opcode2;
963
+ enc
964
+ }
965
+
966
+ /// VRIb-type instructions.
967
+ ///
968
+ /// 47 39 35 31 23 15 11 7
969
+ /// opcode1 v1 - i2 i3 m4 rxb opcode2
970
+ /// 40 36 32 24 16 12 8 0
971
+ ///
972
+ fn enc_vri_b(opcode: u16, v1: Reg, i2: u8, i3: u8, m4: u8) -> [u8; 6] {
973
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
974
+ let opcode2 = (opcode & 0xff) as u8;
975
+ let rxb = rxb(Some(v1), None, None, None);
976
+ let v1 = machreg_to_vr(v1) & 0x0f;
977
+ let m4 = m4 & 0x0f;
978
+
979
+ let mut enc: [u8; 6] = [0; 6];
980
+ enc[0] = opcode1;
981
+ enc[1] = v1 << 4;
982
+ enc[2] = i2;
983
+ enc[3] = i3;
984
+ enc[4] = m4 << 4 | rxb;
985
+ enc[5] = opcode2;
986
+ enc
987
+ }
988
+
989
+ /// VRIc-type instructions.
990
+ ///
991
+ /// 47 39 35 31 15 11 7
992
+ /// opcode1 v1 v3 i2 m4 rxb opcode2
993
+ /// 40 36 32 16 12 8 0
994
+ ///
995
+ fn enc_vri_c(opcode: u16, v1: Reg, i2: u16, v3: Reg, m4: u8) -> [u8; 6] {
996
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
997
+ let opcode2 = (opcode & 0xff) as u8;
998
+ let rxb = rxb(Some(v1), Some(v3), None, None);
999
+ let v1 = machreg_to_vr(v1) & 0x0f;
1000
+ let v3 = machreg_to_vr(v3) & 0x0f;
1001
+ let m4 = m4 & 0x0f;
1002
+
1003
+ let mut enc: [u8; 6] = [0; 6];
1004
+ enc[0] = opcode1;
1005
+ enc[1] = v1 << 4 | v3;
1006
+ enc[2..4].copy_from_slice(&i2.to_be_bytes());
1007
+ enc[4] = m4 << 4 | rxb;
1008
+ enc[5] = opcode2;
1009
+ enc
1010
+ }
1011
+
1012
+ /// VRRa-type instructions.
1013
+ ///
1014
+ /// 47 39 35 31 23 19 15 11 7
1015
+ /// opcode1 v1 v2 - m5 m3 m2 rxb opcode2
1016
+ /// 40 36 32 24 20 16 12 8 0
1017
+ ///
1018
+ fn enc_vrr_a(opcode: u16, v1: Reg, v2: Reg, m3: u8, m4: u8, m5: u8) -> [u8; 6] {
1019
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1020
+ let opcode2 = (opcode & 0xff) as u8;
1021
+ let rxb = rxb(Some(v1), Some(v2), None, None);
1022
+ let v1 = machreg_to_vr(v1) & 0x0f;
1023
+ let v2 = machreg_to_vr(v2) & 0x0f;
1024
+ let m3 = m3 & 0x0f;
1025
+ let m4 = m4 & 0x0f;
1026
+ let m5 = m5 & 0x0f;
1027
+
1028
+ let mut enc: [u8; 6] = [0; 6];
1029
+ enc[0] = opcode1;
1030
+ enc[1] = v1 << 4 | v2;
1031
+ enc[2] = 0;
1032
+ enc[3] = m5 << 4 | m4;
1033
+ enc[4] = m3 << 4 | rxb;
1034
+ enc[5] = opcode2;
1035
+ enc
1036
+ }
1037
+
1038
+ /// VRRb-type instructions.
1039
+ ///
1040
+ /// 47 39 35 31 27 23 19 15 11 7
1041
+ /// opcode1 v1 v2 v3 - m5 - m4 rxb opcode2
1042
+ /// 40 36 32 28 24 20 16 12 8 0
1043
+ ///
1044
+ fn enc_vrr_b(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8) -> [u8; 6] {
1045
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1046
+ let opcode2 = (opcode & 0xff) as u8;
1047
+ let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
1048
+ let v1 = machreg_to_vr(v1) & 0x0f;
1049
+ let v2 = machreg_to_vr(v2) & 0x0f;
1050
+ let v3 = machreg_to_vr(v3) & 0x0f;
1051
+ let m4 = m4 & 0x0f;
1052
+ let m5 = m5 & 0x0f;
1053
+
1054
+ let mut enc: [u8; 6] = [0; 6];
1055
+ enc[0] = opcode1;
1056
+ enc[1] = v1 << 4 | v2;
1057
+ enc[2] = v3 << 4;
1058
+ enc[3] = m5 << 4;
1059
+ enc[4] = m4 << 4 | rxb;
1060
+ enc[5] = opcode2;
1061
+ enc
1062
+ }
1063
+
1064
+ /// VRRc-type instructions.
1065
+ ///
1066
+ /// 47 39 35 31 27 23 19 15 11 7
1067
+ /// opcode1 v1 v2 v3 - m6 m5 m4 rxb opcode2
1068
+ /// 40 36 32 28 24 20 16 12 8 0
1069
+ ///
1070
+ fn enc_vrr_c(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8, m6: u8) -> [u8; 6] {
1071
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1072
+ let opcode2 = (opcode & 0xff) as u8;
1073
+ let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
1074
+ let v1 = machreg_to_vr(v1) & 0x0f;
1075
+ let v2 = machreg_to_vr(v2) & 0x0f;
1076
+ let v3 = machreg_to_vr(v3) & 0x0f;
1077
+ let m4 = m4 & 0x0f;
1078
+ let m5 = m5 & 0x0f;
1079
+ let m6 = m6 & 0x0f;
1080
+
1081
+ let mut enc: [u8; 6] = [0; 6];
1082
+ enc[0] = opcode1;
1083
+ enc[1] = v1 << 4 | v2;
1084
+ enc[2] = v3 << 4;
1085
+ enc[3] = m6 << 4 | m5;
1086
+ enc[4] = m4 << 4 | rxb;
1087
+ enc[5] = opcode2;
1088
+ enc
1089
+ }
1090
+
1091
+ /// VRRe-type instructions.
1092
+ ///
1093
+ /// 47 39 35 31 27 23 19 15 11 7
1094
+ /// opcode1 v1 v2 v3 m6 - m5 v4 rxb opcode2
1095
+ /// 40 36 32 28 24 20 16 12 8 0
1096
+ ///
1097
+ fn enc_vrr_e(opcode: u16, v1: Reg, v2: Reg, v3: Reg, v4: Reg, m5: u8, m6: u8) -> [u8; 6] {
1098
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1099
+ let opcode2 = (opcode & 0xff) as u8;
1100
+ let rxb = rxb(Some(v1), Some(v2), Some(v3), Some(v4));
1101
+ let v1 = machreg_to_vr(v1) & 0x0f;
1102
+ let v2 = machreg_to_vr(v2) & 0x0f;
1103
+ let v3 = machreg_to_vr(v3) & 0x0f;
1104
+ let v4 = machreg_to_vr(v4) & 0x0f;
1105
+ let m5 = m5 & 0x0f;
1106
+ let m6 = m6 & 0x0f;
1107
+
1108
+ let mut enc: [u8; 6] = [0; 6];
1109
+ enc[0] = opcode1;
1110
+ enc[1] = v1 << 4 | v2;
1111
+ enc[2] = v3 << 4 | m6;
1112
+ enc[3] = m5;
1113
+ enc[4] = v4 << 4 | rxb;
1114
+ enc[5] = opcode2;
1115
+ enc
1116
+ }
1117
+
1118
+ /// VRRf-type instructions.
1119
+ ///
1120
+ /// 47 39 35 31 27 11 7
1121
+ /// opcode1 v1 r2 r3 - rxb opcode2
1122
+ /// 40 36 32 28 12 8 0
1123
+ ///
1124
+ fn enc_vrr_f(opcode: u16, v1: Reg, r2: Reg, r3: Reg) -> [u8; 6] {
1125
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1126
+ let opcode2 = (opcode & 0xff) as u8;
1127
+ let rxb = rxb(Some(v1), None, None, None);
1128
+ let v1 = machreg_to_vr(v1) & 0x0f;
1129
+ let r2 = machreg_to_gpr(r2) & 0x0f;
1130
+ let r3 = machreg_to_gpr(r3) & 0x0f;
1131
+
1132
+ let mut enc: [u8; 6] = [0; 6];
1133
+ enc[0] = opcode1;
1134
+ enc[1] = v1 << 4 | r2;
1135
+ enc[2] = r3 << 4;
1136
+ enc[4] = rxb;
1137
+ enc[5] = opcode2;
1138
+ enc
1139
+ }
1140
+
1141
+ /// VRSa-type instructions.
1142
+ ///
1143
+ /// 47 39 35 31 27 15 11 7
1144
+ /// opcode1 v1 v3 b2 d2 m4 rxb opcode2
1145
+ /// 40 36 32 28 16 12 8 0
1146
+ ///
1147
+ fn enc_vrs_a(opcode: u16, v1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
1148
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1149
+ let opcode2 = (opcode & 0xff) as u8;
1150
+ let rxb = rxb(Some(v1), Some(v3), None, None);
1151
+ let v1 = machreg_to_vr(v1) & 0x0f;
1152
+ let b2 = machreg_to_gpr(b2) & 0x0f;
1153
+ let v3 = machreg_to_vr(v3) & 0x0f;
1154
+ let d2_lo = (d2 & 0xff) as u8;
1155
+ let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1156
+ let m4 = m4 & 0x0f;
1157
+
1158
+ let mut enc: [u8; 6] = [0; 6];
1159
+ enc[0] = opcode1;
1160
+ enc[1] = v1 << 4 | v3;
1161
+ enc[2] = b2 << 4 | d2_hi;
1162
+ enc[3] = d2_lo;
1163
+ enc[4] = m4 << 4 | rxb;
1164
+ enc[5] = opcode2;
1165
+ enc
1166
+ }
1167
+
1168
+ /// VRSb-type instructions.
1169
+ ///
1170
+ /// 47 39 35 31 27 15 11 7
1171
+ /// opcode1 v1 r3 b2 d2 m4 rxb opcode2
1172
+ /// 40 36 32 28 16 12 8 0
1173
+ ///
1174
+ fn enc_vrs_b(opcode: u16, v1: Reg, b2: Reg, d2: u32, r3: Reg, m4: u8) -> [u8; 6] {
1175
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1176
+ let opcode2 = (opcode & 0xff) as u8;
1177
+ let rxb = rxb(Some(v1), None, None, None);
1178
+ let v1 = machreg_to_vr(v1) & 0x0f;
1179
+ let b2 = machreg_to_gpr(b2) & 0x0f;
1180
+ let r3 = machreg_to_gpr(r3) & 0x0f;
1181
+ let d2_lo = (d2 & 0xff) as u8;
1182
+ let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1183
+ let m4 = m4 & 0x0f;
1184
+
1185
+ let mut enc: [u8; 6] = [0; 6];
1186
+ enc[0] = opcode1;
1187
+ enc[1] = v1 << 4 | r3;
1188
+ enc[2] = b2 << 4 | d2_hi;
1189
+ enc[3] = d2_lo;
1190
+ enc[4] = m4 << 4 | rxb;
1191
+ enc[5] = opcode2;
1192
+ enc
1193
+ }
1194
+
1195
+ /// VRSc-type instructions.
1196
+ ///
1197
+ /// 47 39 35 31 27 15 11 7
1198
+ /// opcode1 r1 v3 b2 d2 m4 rxb opcode2
1199
+ /// 40 36 32 28 16 12 8 0
1200
+ ///
1201
+ fn enc_vrs_c(opcode: u16, r1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
1202
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1203
+ let opcode2 = (opcode & 0xff) as u8;
1204
+ let rxb = rxb(None, Some(v3), None, None);
1205
+ let r1 = machreg_to_gpr(r1) & 0x0f;
1206
+ let b2 = machreg_to_gpr(b2) & 0x0f;
1207
+ let v3 = machreg_to_vr(v3) & 0x0f;
1208
+ let d2_lo = (d2 & 0xff) as u8;
1209
+ let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1210
+ let m4 = m4 & 0x0f;
1211
+
1212
+ let mut enc: [u8; 6] = [0; 6];
1213
+ enc[0] = opcode1;
1214
+ enc[1] = r1 << 4 | v3;
1215
+ enc[2] = b2 << 4 | d2_hi;
1216
+ enc[3] = d2_lo;
1217
+ enc[4] = m4 << 4 | rxb;
1218
+ enc[5] = opcode2;
1219
+ enc
1220
+ }
1221
+
1222
+ /// VRX-type instructions.
1223
+ ///
1224
+ /// 47 39 35 31 27 15 11 7
1225
+ /// opcode1 v1 x2 b2 d2 m3 rxb opcode2
1226
+ /// 40 36 32 28 16 12 8 0
1227
+ ///
1228
+ fn enc_vrx(opcode: u16, v1: Reg, b2: Reg, x2: Reg, d2: u32, m3: u8) -> [u8; 6] {
1229
+ let opcode1 = ((opcode >> 8) & 0xff) as u8;
1230
+ let opcode2 = (opcode & 0xff) as u8;
1231
+ let rxb = rxb(Some(v1), None, None, None);
1232
+ let v1 = machreg_to_vr(v1) & 0x0f;
1233
+ let b2 = machreg_to_gpr(b2) & 0x0f;
1234
+ let x2 = machreg_to_gpr(x2) & 0x0f;
1235
+ let d2_lo = (d2 & 0xff) as u8;
1236
+ let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1237
+ let m3 = m3 & 0x0f;
1238
+
1239
+ let mut enc: [u8; 6] = [0; 6];
1240
+ enc[0] = opcode1;
1241
+ enc[1] = v1 << 4 | x2;
1242
+ enc[2] = b2 << 4 | d2_hi;
1243
+ enc[3] = d2_lo;
1244
+ enc[4] = m3 << 4 | rxb;
1245
+ enc[5] = opcode2;
1246
+ enc
1247
+ }
1248
+
1249
+ /// Emit encoding to sink.
1250
+ fn put(sink: &mut MachBuffer<Inst>, enc: &[u8]) {
1251
+ for byte in enc {
1252
+ sink.put1(*byte);
1253
+ }
1254
+ }
1255
+
1256
+ /// Emit encoding to sink, adding a trap on the last byte.
1257
+ fn put_with_trap(sink: &mut MachBuffer<Inst>, enc: &[u8], trap_code: TrapCode) {
1258
+ let len = enc.len();
1259
+ for i in 0..len - 1 {
1260
+ sink.put1(enc[i]);
1261
+ }
1262
+ sink.add_trap(trap_code);
1263
+ sink.put1(enc[len - 1]);
1264
+ }
1265
+
1266
+ /// State carried between emissions of a sequence of instructions.
1267
+ #[derive(Default, Clone, Debug)]
1268
+ pub struct EmitState {
1269
+ /// Offset from the actual SP to the "nominal SP". The latter is defined
1270
+ /// as the value the stack pointer has after the prolog. This offset is
1271
+ /// normally always zero, except during a call sequence using the tail-call
1272
+ /// ABI, between the AllocateArgs and the actual call instruction.
1273
+ pub(crate) nominal_sp_offset: u32,
1274
+
1275
+ /// The user stack map for the upcoming instruction, as provided to
1276
+ /// `pre_safepoint()`.
1277
+ user_stack_map: Option<ir::UserStackMap>,
1278
+
1279
+ /// Only used during fuzz-testing. Otherwise, it is a zero-sized struct and
1280
+ /// optimized away at compiletime. See [cranelift_control].
1281
+ ctrl_plane: ControlPlane,
1282
+
1283
+ frame_layout: FrameLayout,
1284
+ }
1285
+
1286
+ impl MachInstEmitState<Inst> for EmitState {
1287
+ fn new(abi: &Callee<S390xMachineDeps>, ctrl_plane: ControlPlane) -> Self {
1288
+ EmitState {
1289
+ nominal_sp_offset: 0,
1290
+ user_stack_map: None,
1291
+ ctrl_plane,
1292
+ frame_layout: abi.frame_layout().clone(),
1293
+ }
1294
+ }
1295
+
1296
+ fn pre_safepoint(&mut self, user_stack_map: Option<ir::UserStackMap>) {
1297
+ self.user_stack_map = user_stack_map;
1298
+ }
1299
+
1300
+ fn ctrl_plane_mut(&mut self) -> &mut ControlPlane {
1301
+ &mut self.ctrl_plane
1302
+ }
1303
+
1304
+ fn take_ctrl_plane(self) -> ControlPlane {
1305
+ self.ctrl_plane
1306
+ }
1307
+
1308
+ fn frame_layout(&self) -> &FrameLayout {
1309
+ &self.frame_layout
1310
+ }
1311
+ }
1312
+
1313
+ impl EmitState {
1314
+ fn take_stack_map(&mut self) -> Option<ir::UserStackMap> {
1315
+ self.user_stack_map.take()
1316
+ }
1317
+
1318
+ fn clear_post_insn(&mut self) {
1319
+ self.user_stack_map = None;
1320
+ }
1321
+ }
1322
+
1323
+ /// Constant state used during function compilation.
1324
+ pub struct EmitInfo {
1325
+ isa_flags: s390x_settings::Flags,
1326
+ }
1327
+
1328
+ impl EmitInfo {
1329
+ pub(crate) fn new(isa_flags: s390x_settings::Flags) -> Self {
1330
+ Self { isa_flags }
1331
+ }
1332
+ }
1333
+
1334
+ impl MachInstEmit for Inst {
1335
+ type State = EmitState;
1336
+ type Info = EmitInfo;
1337
+
1338
+ fn emit(&self, sink: &mut MachBuffer<Inst>, emit_info: &Self::Info, state: &mut EmitState) {
1339
+ self.emit_with_alloc_consumer(sink, emit_info, state)
1340
+ }
1341
+
1342
+ fn pretty_print_inst(&self, state: &mut EmitState) -> String {
1343
+ self.print_with_state(state)
1344
+ }
1345
+ }
1346
+
1347
+ impl Inst {
1348
+ fn emit_with_alloc_consumer(
1349
+ &self,
1350
+ sink: &mut MachBuffer<Inst>,
1351
+ emit_info: &EmitInfo,
1352
+ state: &mut EmitState,
1353
+ ) {
1354
+ // Verify that we can emit this Inst in the current ISA
1355
+ let matches_isa_flags = |iset_requirement: &InstructionSet| -> bool {
1356
+ match iset_requirement {
1357
+ // Baseline ISA is z14
1358
+ InstructionSet::Base => true,
1359
+ // Miscellaneous-Instruction-Extensions Facility 2 (z15)
1360
+ InstructionSet::MIE2 => emit_info.isa_flags.has_mie2(),
1361
+ // Vector-Enhancements Facility 2 (z15)
1362
+ InstructionSet::VXRS_EXT2 => emit_info.isa_flags.has_vxrs_ext2(),
1363
+ }
1364
+ };
1365
+ let isa_requirements = self.available_in_isa();
1366
+ if !matches_isa_flags(&isa_requirements) {
1367
+ panic!(
1368
+ "Cannot emit inst '{self:?}' for target; failed to match ISA requirements: {isa_requirements:?}"
1369
+ )
1370
+ }
1371
+
1372
+ // N.B.: we *must* not exceed the "worst-case size" used to compute
1373
+ // where to insert islands, except when islands are explicitly triggered
1374
+ // (with an `EmitIsland`). We check this in debug builds. This is `mut`
1375
+ // to allow disabling the check for `JTSequence`, which is always
1376
+ // emitted following an `EmitIsland`.
1377
+ let mut start_off = sink.cur_offset();
1378
+
1379
+ match self {
1380
+ &Inst::AluRRR { alu_op, rd, rn, rm } => {
1381
+ let (opcode, have_rr) = match alu_op {
1382
+ ALUOp::Add32 => (0xb9f8, true), // ARK
1383
+ ALUOp::Add64 => (0xb9e8, true), // AGRK
1384
+ ALUOp::AddLogical32 => (0xb9fa, true), // ALRK
1385
+ ALUOp::AddLogical64 => (0xb9ea, true), // ALGRK
1386
+ ALUOp::Sub32 => (0xb9f9, true), // SRK
1387
+ ALUOp::Sub64 => (0xb9e9, true), // SGRK
1388
+ ALUOp::SubLogical32 => (0xb9fb, true), // SLRK
1389
+ ALUOp::SubLogical64 => (0xb9eb, true), // SLGRK
1390
+ ALUOp::Mul32 => (0xb9fd, true), // MSRKC
1391
+ ALUOp::Mul64 => (0xb9ed, true), // MSGRKC
1392
+ ALUOp::And32 => (0xb9f4, true), // NRK
1393
+ ALUOp::And64 => (0xb9e4, true), // NGRK
1394
+ ALUOp::Orr32 => (0xb9f6, true), // ORK
1395
+ ALUOp::Orr64 => (0xb9e6, true), // OGRK
1396
+ ALUOp::Xor32 => (0xb9f7, true), // XRK
1397
+ ALUOp::Xor64 => (0xb9e7, true), // XGRK
1398
+ ALUOp::NotAnd32 => (0xb974, false), // NNRK
1399
+ ALUOp::NotAnd64 => (0xb964, false), // NNGRK
1400
+ ALUOp::NotOrr32 => (0xb976, false), // NORK
1401
+ ALUOp::NotOrr64 => (0xb966, false), // NOGRK
1402
+ ALUOp::NotXor32 => (0xb977, false), // NXRK
1403
+ ALUOp::NotXor64 => (0xb967, false), // NXGRK
1404
+ ALUOp::AndNot32 => (0xb9f5, false), // NCRK
1405
+ ALUOp::AndNot64 => (0xb9e5, false), // NCGRK
1406
+ ALUOp::OrrNot32 => (0xb975, false), // OCRK
1407
+ ALUOp::OrrNot64 => (0xb965, false), // OCGRK
1408
+ _ => unreachable!(),
1409
+ };
1410
+ if have_rr && rd.to_reg() == rn {
1411
+ let inst = Inst::AluRR {
1412
+ alu_op,
1413
+ rd,
1414
+ ri: rn,
1415
+ rm,
1416
+ };
1417
+ inst.emit(sink, emit_info, state);
1418
+ } else {
1419
+ put(sink, &enc_rrf_ab(opcode, rd.to_reg(), rn, rm, 0));
1420
+ }
1421
+ }
1422
+ &Inst::AluRRSImm16 {
1423
+ alu_op,
1424
+ rd,
1425
+ rn,
1426
+ imm,
1427
+ } => {
1428
+ if rd.to_reg() == rn {
1429
+ let inst = Inst::AluRSImm16 {
1430
+ alu_op,
1431
+ rd,
1432
+ ri: rn,
1433
+ imm,
1434
+ };
1435
+ inst.emit(sink, emit_info, state);
1436
+ } else {
1437
+ let opcode = match alu_op {
1438
+ ALUOp::Add32 => 0xecd8, // AHIK
1439
+ ALUOp::Add64 => 0xecd9, // AGHIK
1440
+ _ => unreachable!(),
1441
+ };
1442
+ put(sink, &enc_rie_d(opcode, rd.to_reg(), rn, imm as u16));
1443
+ }
1444
+ }
1445
+ &Inst::AluRR { alu_op, rd, ri, rm } => {
1446
+ debug_assert_eq!(rd.to_reg(), ri);
1447
+
1448
+ let (opcode, is_rre) = match alu_op {
1449
+ ALUOp::Add32 => (0x1a, false), // AR
1450
+ ALUOp::Add64 => (0xb908, true), // AGR
1451
+ ALUOp::Add64Ext32 => (0xb918, true), // AGFR
1452
+ ALUOp::AddLogical32 => (0x1e, false), // ALR
1453
+ ALUOp::AddLogical64 => (0xb90a, true), // ALGR
1454
+ ALUOp::AddLogical64Ext32 => (0xb91a, true), // ALGFR
1455
+ ALUOp::Sub32 => (0x1b, false), // SR
1456
+ ALUOp::Sub64 => (0xb909, true), // SGR
1457
+ ALUOp::Sub64Ext32 => (0xb919, true), // SGFR
1458
+ ALUOp::SubLogical32 => (0x1f, false), // SLR
1459
+ ALUOp::SubLogical64 => (0xb90b, true), // SLGR
1460
+ ALUOp::SubLogical64Ext32 => (0xb91b, true), // SLGFR
1461
+ ALUOp::Mul32 => (0xb252, true), // MSR
1462
+ ALUOp::Mul64 => (0xb90c, true), // MSGR
1463
+ ALUOp::Mul64Ext32 => (0xb91c, true), // MSGFR
1464
+ ALUOp::And32 => (0x14, false), // NR
1465
+ ALUOp::And64 => (0xb980, true), // NGR
1466
+ ALUOp::Orr32 => (0x16, false), // OR
1467
+ ALUOp::Orr64 => (0xb981, true), // OGR
1468
+ ALUOp::Xor32 => (0x17, false), // XR
1469
+ ALUOp::Xor64 => (0xb982, true), // XGR
1470
+ _ => unreachable!(),
1471
+ };
1472
+ if is_rre {
1473
+ put(sink, &enc_rre(opcode, rd.to_reg(), rm));
1474
+ } else {
1475
+ put(sink, &enc_rr(opcode, rd.to_reg(), rm));
1476
+ }
1477
+ }
1478
+ &Inst::AluRX {
1479
+ alu_op,
1480
+ rd,
1481
+ ri,
1482
+ ref mem,
1483
+ } => {
1484
+ debug_assert_eq!(rd.to_reg(), ri);
1485
+ let mem = mem.clone();
1486
+
1487
+ let (opcode_rx, opcode_rxy) = match alu_op {
1488
+ ALUOp::Add32 => (Some(0x5a), Some(0xe35a)), // A(Y)
1489
+ ALUOp::Add32Ext16 => (Some(0x4a), Some(0xe37a)), // AH(Y)
1490
+ ALUOp::Add64 => (None, Some(0xe308)), // AG
1491
+ ALUOp::Add64Ext16 => (None, Some(0xe338)), // AGH
1492
+ ALUOp::Add64Ext32 => (None, Some(0xe318)), // AGF
1493
+ ALUOp::AddLogical32 => (Some(0x5e), Some(0xe35e)), // AL(Y)
1494
+ ALUOp::AddLogical64 => (None, Some(0xe30a)), // ALG
1495
+ ALUOp::AddLogical64Ext32 => (None, Some(0xe31a)), // ALGF
1496
+ ALUOp::Sub32 => (Some(0x5b), Some(0xe35b)), // S(Y)
1497
+ ALUOp::Sub32Ext16 => (Some(0x4b), Some(0xe37b)), // SH(Y)
1498
+ ALUOp::Sub64 => (None, Some(0xe309)), // SG
1499
+ ALUOp::Sub64Ext16 => (None, Some(0xe339)), // SGH
1500
+ ALUOp::Sub64Ext32 => (None, Some(0xe319)), // SGF
1501
+ ALUOp::SubLogical32 => (Some(0x5f), Some(0xe35f)), // SL(Y)
1502
+ ALUOp::SubLogical64 => (None, Some(0xe30b)), // SLG
1503
+ ALUOp::SubLogical64Ext32 => (None, Some(0xe31b)), // SLGF
1504
+ ALUOp::Mul32 => (Some(0x71), Some(0xe351)), // MS(Y)
1505
+ ALUOp::Mul32Ext16 => (Some(0x4c), Some(0xe37c)), // MH(Y)
1506
+ ALUOp::Mul64 => (None, Some(0xe30c)), // MSG
1507
+ ALUOp::Mul64Ext16 => (None, Some(0xe33c)), // MSH
1508
+ ALUOp::Mul64Ext32 => (None, Some(0xe31c)), // MSGF
1509
+ ALUOp::And32 => (Some(0x54), Some(0xe354)), // N(Y)
1510
+ ALUOp::And64 => (None, Some(0xe380)), // NG
1511
+ ALUOp::Orr32 => (Some(0x56), Some(0xe356)), // O(Y)
1512
+ ALUOp::Orr64 => (None, Some(0xe381)), // OG
1513
+ ALUOp::Xor32 => (Some(0x57), Some(0xe357)), // X(Y)
1514
+ ALUOp::Xor64 => (None, Some(0xe382)), // XG
1515
+ _ => unreachable!(),
1516
+ };
1517
+ let rd = rd.to_reg();
1518
+ mem_emit(
1519
+ rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
1520
+ );
1521
+ }
1522
+ &Inst::AluRSImm16 {
1523
+ alu_op,
1524
+ rd,
1525
+ ri,
1526
+ imm,
1527
+ } => {
1528
+ debug_assert_eq!(rd.to_reg(), ri);
1529
+
1530
+ let opcode = match alu_op {
1531
+ ALUOp::Add32 => 0xa7a, // AHI
1532
+ ALUOp::Add64 => 0xa7b, // AGHI
1533
+ ALUOp::Mul32 => 0xa7c, // MHI
1534
+ ALUOp::Mul64 => 0xa7d, // MGHI
1535
+ _ => unreachable!(),
1536
+ };
1537
+ put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
1538
+ }
1539
+ &Inst::AluRSImm32 {
1540
+ alu_op,
1541
+ rd,
1542
+ ri,
1543
+ imm,
1544
+ } => {
1545
+ debug_assert_eq!(rd.to_reg(), ri);
1546
+
1547
+ let opcode = match alu_op {
1548
+ ALUOp::Add32 => 0xc29, // AFI
1549
+ ALUOp::Add64 => 0xc28, // AGFI
1550
+ ALUOp::Mul32 => 0xc21, // MSFI
1551
+ ALUOp::Mul64 => 0xc20, // MSGFI
1552
+ _ => unreachable!(),
1553
+ };
1554
+ put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
1555
+ }
1556
+ &Inst::AluRUImm32 {
1557
+ alu_op,
1558
+ rd,
1559
+ ri,
1560
+ imm,
1561
+ } => {
1562
+ debug_assert_eq!(rd.to_reg(), ri);
1563
+
1564
+ let opcode = match alu_op {
1565
+ ALUOp::AddLogical32 => 0xc2b, // ALFI
1566
+ ALUOp::AddLogical64 => 0xc2a, // ALGFI
1567
+ ALUOp::SubLogical32 => 0xc25, // SLFI
1568
+ ALUOp::SubLogical64 => 0xc24, // SLGFI
1569
+ _ => unreachable!(),
1570
+ };
1571
+ put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
1572
+ }
1573
+ &Inst::AluRUImm16Shifted {
1574
+ alu_op,
1575
+ rd,
1576
+ ri,
1577
+ imm,
1578
+ } => {
1579
+ debug_assert_eq!(rd.to_reg(), ri);
1580
+
1581
+ let opcode = match (alu_op, imm.shift) {
1582
+ (ALUOp::And32, 0) => 0xa57, // NILL
1583
+ (ALUOp::And32, 1) => 0xa56, // NILH
1584
+ (ALUOp::And64, 0) => 0xa57, // NILL
1585
+ (ALUOp::And64, 1) => 0xa56, // NILH
1586
+ (ALUOp::And64, 2) => 0xa55, // NIHL
1587
+ (ALUOp::And64, 3) => 0xa54, // NIHL
1588
+ (ALUOp::Orr32, 0) => 0xa5b, // OILL
1589
+ (ALUOp::Orr32, 1) => 0xa5a, // OILH
1590
+ (ALUOp::Orr64, 0) => 0xa5b, // OILL
1591
+ (ALUOp::Orr64, 1) => 0xa5a, // OILH
1592
+ (ALUOp::Orr64, 2) => 0xa59, // OIHL
1593
+ (ALUOp::Orr64, 3) => 0xa58, // OIHH
1594
+ _ => unreachable!(),
1595
+ };
1596
+ put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
1597
+ }
1598
+ &Inst::AluRUImm32Shifted {
1599
+ alu_op,
1600
+ rd,
1601
+ ri,
1602
+ imm,
1603
+ } => {
1604
+ debug_assert_eq!(rd.to_reg(), ri);
1605
+
1606
+ let opcode = match (alu_op, imm.shift) {
1607
+ (ALUOp::And32, 0) => 0xc0b, // NILF
1608
+ (ALUOp::And64, 0) => 0xc0b, // NILF
1609
+ (ALUOp::And64, 1) => 0xc0a, // NIHF
1610
+ (ALUOp::Orr32, 0) => 0xc0d, // OILF
1611
+ (ALUOp::Orr64, 0) => 0xc0d, // OILF
1612
+ (ALUOp::Orr64, 1) => 0xc0c, // OILF
1613
+ (ALUOp::Xor32, 0) => 0xc07, // XILF
1614
+ (ALUOp::Xor64, 0) => 0xc07, // XILF
1615
+ (ALUOp::Xor64, 1) => 0xc06, // XILH
1616
+ _ => unreachable!(),
1617
+ };
1618
+ put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
1619
+ }
1620
+
1621
+ &Inst::SMulWide { rd, rn, rm } => {
1622
+ let rd1 = rd.hi;
1623
+ let rd2 = rd.lo;
1624
+ debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1625
+
1626
+ let opcode = 0xb9ec; // MGRK
1627
+ put(sink, &enc_rrf_ab(opcode, rd1.to_reg(), rn, rm, 0));
1628
+ }
1629
+ &Inst::UMulWide { rd, ri, rn } => {
1630
+ let rd1 = rd.hi;
1631
+ let rd2 = rd.lo;
1632
+ debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1633
+ debug_assert_eq!(rd2.to_reg(), ri);
1634
+
1635
+ let opcode = 0xb986; // MLGR
1636
+ put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
1637
+ }
1638
+ &Inst::SDivMod32 { rd, ri, rn } => {
1639
+ let rd1 = rd.hi;
1640
+ let rd2 = rd.lo;
1641
+ debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1642
+ debug_assert_eq!(rd2.to_reg(), ri);
1643
+
1644
+ let opcode = 0xb91d; // DSGFR
1645
+ let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
1646
+ put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1647
+ }
1648
+ &Inst::SDivMod64 { rd, ri, rn } => {
1649
+ let rd1 = rd.hi;
1650
+ let rd2 = rd.lo;
1651
+ debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1652
+ debug_assert_eq!(rd2.to_reg(), ri);
1653
+
1654
+ let opcode = 0xb90d; // DSGR
1655
+ let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
1656
+ put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1657
+ }
1658
+ &Inst::UDivMod32 { rd, ri, rn } => {
1659
+ let rd1 = rd.hi;
1660
+ let rd2 = rd.lo;
1661
+ debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1662
+ let ri1 = ri.hi;
1663
+ let ri2 = ri.lo;
1664
+ debug_assert_eq!(rd1.to_reg(), ri1);
1665
+ debug_assert_eq!(rd2.to_reg(), ri2);
1666
+
1667
+ let opcode = 0xb997; // DLR
1668
+ let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
1669
+ put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1670
+ }
1671
+ &Inst::UDivMod64 { rd, ri, rn } => {
1672
+ let rd1 = rd.hi;
1673
+ let rd2 = rd.lo;
1674
+ debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1675
+ let ri1 = ri.hi;
1676
+ let ri2 = ri.lo;
1677
+ debug_assert_eq!(rd1.to_reg(), ri1);
1678
+ debug_assert_eq!(rd2.to_reg(), ri2);
1679
+
1680
+ let opcode = 0xb987; // DLGR
1681
+ let trap_code = TrapCode::INTEGER_DIVISION_BY_ZERO;
1682
+ put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1683
+ }
1684
+ &Inst::Flogr { rd, rn } => {
1685
+ let rd1 = rd.hi;
1686
+ let rd2 = rd.lo;
1687
+ debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1688
+
1689
+ let opcode = 0xb983; // FLOGR
1690
+ put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
1691
+ }
1692
+
1693
+ &Inst::ShiftRR {
1694
+ shift_op,
1695
+ rd,
1696
+ rn,
1697
+ shift_imm,
1698
+ shift_reg,
1699
+ } => {
1700
+ let opcode = match shift_op {
1701
+ ShiftOp::RotL32 => 0xeb1d, // RLL
1702
+ ShiftOp::RotL64 => 0xeb1c, // RLLG
1703
+ ShiftOp::LShL32 => 0xebdf, // SLLK (SLL ?)
1704
+ ShiftOp::LShL64 => 0xeb0d, // SLLG
1705
+ ShiftOp::LShR32 => 0xebde, // SRLK (SRL ?)
1706
+ ShiftOp::LShR64 => 0xeb0c, // SRLG
1707
+ ShiftOp::AShR32 => 0xebdc, // SRAK (SRA ?)
1708
+ ShiftOp::AShR64 => 0xeb0a, // SRAG
1709
+ };
1710
+ put(
1711
+ sink,
1712
+ &enc_rsy(opcode, rd.to_reg(), rn, shift_reg, shift_imm.into()),
1713
+ );
1714
+ }
1715
+
1716
+ &Inst::RxSBG {
1717
+ op,
1718
+ rd,
1719
+ ri,
1720
+ rn,
1721
+ start_bit,
1722
+ end_bit,
1723
+ rotate_amt,
1724
+ } => {
1725
+ debug_assert_eq!(rd.to_reg(), ri);
1726
+
1727
+ let opcode = match op {
1728
+ RxSBGOp::Insert => 0xec59, // RISBGN
1729
+ RxSBGOp::And => 0xec54, // RNSBG
1730
+ RxSBGOp::Or => 0xec56, // ROSBG
1731
+ RxSBGOp::Xor => 0xec57, // RXSBG
1732
+ };
1733
+ put(
1734
+ sink,
1735
+ &enc_rie_f(
1736
+ opcode,
1737
+ rd.to_reg(),
1738
+ rn,
1739
+ start_bit,
1740
+ end_bit,
1741
+ (rotate_amt as u8) & 63,
1742
+ ),
1743
+ );
1744
+ }
1745
+
1746
+ &Inst::RxSBGTest {
1747
+ op,
1748
+ rd,
1749
+ rn,
1750
+ start_bit,
1751
+ end_bit,
1752
+ rotate_amt,
1753
+ } => {
1754
+ let opcode = match op {
1755
+ RxSBGOp::And => 0xec54, // RNSBG
1756
+ RxSBGOp::Or => 0xec56, // ROSBG
1757
+ RxSBGOp::Xor => 0xec57, // RXSBG
1758
+ _ => unreachable!(),
1759
+ };
1760
+ put(
1761
+ sink,
1762
+ &enc_rie_f(
1763
+ opcode,
1764
+ rd,
1765
+ rn,
1766
+ start_bit | 0x80,
1767
+ end_bit,
1768
+ (rotate_amt as u8) & 63,
1769
+ ),
1770
+ );
1771
+ }
1772
+
1773
+ &Inst::UnaryRR { op, rd, rn } => {
1774
+ match op {
1775
+ UnaryOp::Abs32 => {
1776
+ let opcode = 0x10; // LPR
1777
+ put(sink, &enc_rr(opcode, rd.to_reg(), rn));
1778
+ }
1779
+ UnaryOp::Abs64 => {
1780
+ let opcode = 0xb900; // LPGR
1781
+ put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1782
+ }
1783
+ UnaryOp::Abs64Ext32 => {
1784
+ let opcode = 0xb910; // LPGFR
1785
+ put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1786
+ }
1787
+ UnaryOp::Neg32 => {
1788
+ let opcode = 0x13; // LCR
1789
+ put(sink, &enc_rr(opcode, rd.to_reg(), rn));
1790
+ }
1791
+ UnaryOp::Neg64 => {
1792
+ let opcode = 0xb903; // LCGR
1793
+ put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1794
+ }
1795
+ UnaryOp::Neg64Ext32 => {
1796
+ let opcode = 0xb913; // LCGFR
1797
+ put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1798
+ }
1799
+ UnaryOp::PopcntByte => {
1800
+ let opcode = 0xb9e1; // POPCNT
1801
+ put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 0, 0));
1802
+ }
1803
+ UnaryOp::PopcntReg => {
1804
+ let opcode = 0xb9e1; // POPCNT
1805
+ put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 8, 0));
1806
+ }
1807
+ UnaryOp::BSwap32 => {
1808
+ let opcode = 0xb91f; // LRVR
1809
+ put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1810
+ }
1811
+ UnaryOp::BSwap64 => {
1812
+ let opcode = 0xb90f; // LRVRG
1813
+ put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1814
+ }
1815
+ }
1816
+ }
1817
+
1818
+ &Inst::Extend {
1819
+ rd,
1820
+ rn,
1821
+ signed,
1822
+ from_bits,
1823
+ to_bits,
1824
+ } => {
1825
+ let opcode = match (signed, from_bits, to_bits) {
1826
+ (_, 1, 32) => 0xb926, // LBR
1827
+ (_, 1, 64) => 0xb906, // LGBR
1828
+ (false, 8, 32) => 0xb994, // LLCR
1829
+ (false, 8, 64) => 0xb984, // LLGCR
1830
+ (true, 8, 32) => 0xb926, // LBR
1831
+ (true, 8, 64) => 0xb906, // LGBR
1832
+ (false, 16, 32) => 0xb995, // LLHR
1833
+ (false, 16, 64) => 0xb985, // LLGHR
1834
+ (true, 16, 32) => 0xb927, // LHR
1835
+ (true, 16, 64) => 0xb907, // LGHR
1836
+ (false, 32, 64) => 0xb916, // LLGFR
1837
+ (true, 32, 64) => 0xb914, // LGFR
1838
+ _ => panic!(
1839
+ "Unsupported extend combination: signed = {signed}, from_bits = {from_bits}, to_bits = {to_bits}"
1840
+ ),
1841
+ };
1842
+ put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1843
+ }
1844
+
1845
+ &Inst::CmpRR { op, rn, rm } => {
1846
+ let (opcode, is_rre) = match op {
1847
+ CmpOp::CmpS32 => (0x19, false), // CR
1848
+ CmpOp::CmpS64 => (0xb920, true), // CGR
1849
+ CmpOp::CmpS64Ext32 => (0xb930, true), // CGFR
1850
+ CmpOp::CmpL32 => (0x15, false), // CLR
1851
+ CmpOp::CmpL64 => (0xb921, true), // CLGR
1852
+ CmpOp::CmpL64Ext32 => (0xb931, true), // CLGFR
1853
+ _ => unreachable!(),
1854
+ };
1855
+ if is_rre {
1856
+ put(sink, &enc_rre(opcode, rn, rm));
1857
+ } else {
1858
+ put(sink, &enc_rr(opcode, rn, rm));
1859
+ }
1860
+ }
1861
+ &Inst::CmpRX { op, rn, ref mem } => {
1862
+ let mem = mem.clone();
1863
+
1864
+ let (opcode_rx, opcode_rxy, opcode_ril) = match op {
1865
+ CmpOp::CmpS32 => (Some(0x59), Some(0xe359), Some(0xc6d)), // C(Y), CRL
1866
+ CmpOp::CmpS32Ext16 => (Some(0x49), Some(0xe379), Some(0xc65)), // CH(Y), CHRL
1867
+ CmpOp::CmpS64 => (None, Some(0xe320), Some(0xc68)), // CG, CGRL
1868
+ CmpOp::CmpS64Ext16 => (None, Some(0xe334), Some(0xc64)), // CGH, CGHRL
1869
+ CmpOp::CmpS64Ext32 => (None, Some(0xe330), Some(0xc6c)), // CGF, CGFRL
1870
+ CmpOp::CmpL32 => (Some(0x55), Some(0xe355), Some(0xc6f)), // CL(Y), CLRL
1871
+ CmpOp::CmpL32Ext16 => (None, None, Some(0xc67)), // CLHRL
1872
+ CmpOp::CmpL64 => (None, Some(0xe321), Some(0xc6a)), // CLG, CLGRL
1873
+ CmpOp::CmpL64Ext16 => (None, None, Some(0xc66)), // CLGHRL
1874
+ CmpOp::CmpL64Ext32 => (None, Some(0xe331), Some(0xc6e)), // CLGF, CLGFRL
1875
+ };
1876
+ mem_emit(
1877
+ rn, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
1878
+ );
1879
+ }
1880
+ &Inst::CmpRSImm16 { op, rn, imm } => {
1881
+ let opcode = match op {
1882
+ CmpOp::CmpS32 => 0xa7e, // CHI
1883
+ CmpOp::CmpS64 => 0xa7f, // CGHI
1884
+ _ => unreachable!(),
1885
+ };
1886
+ put(sink, &enc_ri_a(opcode, rn, imm as u16));
1887
+ }
1888
+ &Inst::CmpRSImm32 { op, rn, imm } => {
1889
+ let opcode = match op {
1890
+ CmpOp::CmpS32 => 0xc2d, // CFI
1891
+ CmpOp::CmpS64 => 0xc2c, // CGFI
1892
+ _ => unreachable!(),
1893
+ };
1894
+ put(sink, &enc_ril_a(opcode, rn, imm as u32));
1895
+ }
1896
+ &Inst::CmpRUImm32 { op, rn, imm } => {
1897
+ let opcode = match op {
1898
+ CmpOp::CmpL32 => 0xc2f, // CLFI
1899
+ CmpOp::CmpL64 => 0xc2e, // CLGFI
1900
+ _ => unreachable!(),
1901
+ };
1902
+ put(sink, &enc_ril_a(opcode, rn, imm));
1903
+ }
1904
+ &Inst::CmpTrapRR {
1905
+ op,
1906
+ rn,
1907
+ rm,
1908
+ cond,
1909
+ trap_code,
1910
+ } => {
1911
+ let opcode = match op {
1912
+ CmpOp::CmpS32 => 0xb972, // CRT
1913
+ CmpOp::CmpS64 => 0xb960, // CGRT
1914
+ CmpOp::CmpL32 => 0xb973, // CLRT
1915
+ CmpOp::CmpL64 => 0xb961, // CLGRT
1916
+ _ => unreachable!(),
1917
+ };
1918
+ put_with_trap(
1919
+ sink,
1920
+ &enc_rrf_cde(opcode, rn, rm, cond.bits(), 0),
1921
+ trap_code,
1922
+ );
1923
+ }
1924
+ &Inst::CmpTrapRSImm16 {
1925
+ op,
1926
+ rn,
1927
+ imm,
1928
+ cond,
1929
+ trap_code,
1930
+ } => {
1931
+ let opcode = match op {
1932
+ CmpOp::CmpS32 => 0xec72, // CIT
1933
+ CmpOp::CmpS64 => 0xec70, // CGIT
1934
+ _ => unreachable!(),
1935
+ };
1936
+ put_with_trap(
1937
+ sink,
1938
+ &enc_rie_a(opcode, rn, imm as u16, cond.bits()),
1939
+ trap_code,
1940
+ );
1941
+ }
1942
+ &Inst::CmpTrapRUImm16 {
1943
+ op,
1944
+ rn,
1945
+ imm,
1946
+ cond,
1947
+ trap_code,
1948
+ } => {
1949
+ let opcode = match op {
1950
+ CmpOp::CmpL32 => 0xec73, // CLFIT
1951
+ CmpOp::CmpL64 => 0xec71, // CLGIT
1952
+ _ => unreachable!(),
1953
+ };
1954
+ put_with_trap(sink, &enc_rie_a(opcode, rn, imm, cond.bits()), trap_code);
1955
+ }
1956
+
1957
+ &Inst::AtomicRmw {
1958
+ alu_op,
1959
+ rd,
1960
+ rn,
1961
+ ref mem,
1962
+ } => {
1963
+ let mem = mem.clone();
1964
+
1965
+ let opcode = match alu_op {
1966
+ ALUOp::Add32 => 0xebf8, // LAA
1967
+ ALUOp::Add64 => 0xebe8, // LAAG
1968
+ ALUOp::AddLogical32 => 0xebfa, // LAAL
1969
+ ALUOp::AddLogical64 => 0xebea, // LAALG
1970
+ ALUOp::And32 => 0xebf4, // LAN
1971
+ ALUOp::And64 => 0xebe4, // LANG
1972
+ ALUOp::Orr32 => 0xebf6, // LAO
1973
+ ALUOp::Orr64 => 0xebe6, // LAOG
1974
+ ALUOp::Xor32 => 0xebf7, // LAX
1975
+ ALUOp::Xor64 => 0xebe7, // LAXG
1976
+ _ => unreachable!(),
1977
+ };
1978
+
1979
+ let rd = rd.to_reg();
1980
+ mem_rs_emit(
1981
+ rd,
1982
+ rn,
1983
+ &mem,
1984
+ None,
1985
+ Some(opcode),
1986
+ true,
1987
+ sink,
1988
+ emit_info,
1989
+ state,
1990
+ );
1991
+ }
1992
+ &Inst::Loop { ref body, cond } => {
1993
+ // This sequence is *one* instruction in the vcode, and is expanded only here at
1994
+ // emission time, because it requires branching to internal labels.
1995
+ let loop_label = sink.get_label();
1996
+ let done_label = sink.get_label();
1997
+
1998
+ // Emit label at the start of the loop.
1999
+ sink.bind_label(loop_label, &mut state.ctrl_plane);
2000
+
2001
+ for inst in (&body).into_iter() {
2002
+ match &inst {
2003
+ // Replace a CondBreak with a branch to done_label.
2004
+ &Inst::CondBreak { cond } => {
2005
+ let inst = Inst::OneWayCondBr {
2006
+ target: done_label,
2007
+ cond: *cond,
2008
+ };
2009
+ inst.emit_with_alloc_consumer(sink, emit_info, state);
2010
+ }
2011
+ _ => inst.emit_with_alloc_consumer(sink, emit_info, state),
2012
+ };
2013
+ }
2014
+
2015
+ let inst = Inst::OneWayCondBr {
2016
+ target: loop_label,
2017
+ cond,
2018
+ };
2019
+ inst.emit(sink, emit_info, state);
2020
+
2021
+ // Emit label at the end of the loop.
2022
+ sink.bind_label(done_label, &mut state.ctrl_plane);
2023
+ }
2024
+ &Inst::CondBreak { .. } => unreachable!(), // Only valid inside a Loop.
2025
+ &Inst::AtomicCas32 {
2026
+ rd,
2027
+ ri,
2028
+ rn,
2029
+ ref mem,
2030
+ }
2031
+ | &Inst::AtomicCas64 {
2032
+ rd,
2033
+ ri,
2034
+ rn,
2035
+ ref mem,
2036
+ } => {
2037
+ debug_assert_eq!(rd.to_reg(), ri);
2038
+ let mem = mem.clone();
2039
+
2040
+ let (opcode_rs, opcode_rsy) = match self {
2041
+ &Inst::AtomicCas32 { .. } => (Some(0xba), Some(0xeb14)), // CS(Y)
2042
+ &Inst::AtomicCas64 { .. } => (None, Some(0xeb30)), // CSG
2043
+ _ => unreachable!(),
2044
+ };
2045
+
2046
+ let rd = rd.to_reg();
2047
+ mem_rs_emit(
2048
+ rd, rn, &mem, opcode_rs, opcode_rsy, true, sink, emit_info, state,
2049
+ );
2050
+ }
2051
+ &Inst::Fence => {
2052
+ put(sink, &enc_e(0x07e0));
2053
+ }
2054
+
2055
+ &Inst::Load32 { rd, ref mem }
2056
+ | &Inst::Load32ZExt8 { rd, ref mem }
2057
+ | &Inst::Load32SExt8 { rd, ref mem }
2058
+ | &Inst::Load32ZExt16 { rd, ref mem }
2059
+ | &Inst::Load32SExt16 { rd, ref mem }
2060
+ | &Inst::Load64 { rd, ref mem }
2061
+ | &Inst::Load64ZExt8 { rd, ref mem }
2062
+ | &Inst::Load64SExt8 { rd, ref mem }
2063
+ | &Inst::Load64ZExt16 { rd, ref mem }
2064
+ | &Inst::Load64SExt16 { rd, ref mem }
2065
+ | &Inst::Load64ZExt32 { rd, ref mem }
2066
+ | &Inst::Load64SExt32 { rd, ref mem }
2067
+ | &Inst::LoadRev16 { rd, ref mem }
2068
+ | &Inst::LoadRev32 { rd, ref mem }
2069
+ | &Inst::LoadRev64 { rd, ref mem } => {
2070
+ let mem = mem.clone();
2071
+
2072
+ let (opcode_rx, opcode_rxy, opcode_ril) = match self {
2073
+ &Inst::Load32 { .. } => (Some(0x58), Some(0xe358), Some(0xc4d)), // L(Y), LRL
2074
+ &Inst::Load32ZExt8 { .. } => (None, Some(0xe394), None), // LLC
2075
+ &Inst::Load32SExt8 { .. } => (None, Some(0xe376), None), // LB
2076
+ &Inst::Load32ZExt16 { .. } => (None, Some(0xe395), Some(0xc42)), // LLH, LLHRL
2077
+ &Inst::Load32SExt16 { .. } => (Some(0x48), Some(0xe378), Some(0xc45)), // LH(Y), LHRL
2078
+ &Inst::Load64 { .. } => (None, Some(0xe304), Some(0xc48)), // LG, LGRL
2079
+ &Inst::Load64ZExt8 { .. } => (None, Some(0xe390), None), // LLGC
2080
+ &Inst::Load64SExt8 { .. } => (None, Some(0xe377), None), // LGB
2081
+ &Inst::Load64ZExt16 { .. } => (None, Some(0xe391), Some(0xc46)), // LLGH, LLGHRL
2082
+ &Inst::Load64SExt16 { .. } => (None, Some(0xe315), Some(0xc44)), // LGH, LGHRL
2083
+ &Inst::Load64ZExt32 { .. } => (None, Some(0xe316), Some(0xc4e)), // LLGF, LLGFRL
2084
+ &Inst::Load64SExt32 { .. } => (None, Some(0xe314), Some(0xc4c)), // LGF, LGFRL
2085
+ &Inst::LoadRev16 { .. } => (None, Some(0xe31f), None), // LRVH
2086
+ &Inst::LoadRev32 { .. } => (None, Some(0xe31e), None), // LRV
2087
+ &Inst::LoadRev64 { .. } => (None, Some(0xe30f), None), // LRVG
2088
+ _ => unreachable!(),
2089
+ };
2090
+ let rd = rd.to_reg();
2091
+ mem_emit(
2092
+ rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
2093
+ );
2094
+ }
2095
+
2096
+ &Inst::Store8 { rd, ref mem }
2097
+ | &Inst::Store16 { rd, ref mem }
2098
+ | &Inst::Store32 { rd, ref mem }
2099
+ | &Inst::Store64 { rd, ref mem }
2100
+ | &Inst::StoreRev16 { rd, ref mem }
2101
+ | &Inst::StoreRev32 { rd, ref mem }
2102
+ | &Inst::StoreRev64 { rd, ref mem } => {
2103
+ let mem = mem.clone();
2104
+
2105
+ let (opcode_rx, opcode_rxy, opcode_ril) = match self {
2106
+ &Inst::Store8 { .. } => (Some(0x42), Some(0xe372), None), // STC(Y)
2107
+ &Inst::Store16 { .. } => (Some(0x40), Some(0xe370), Some(0xc47)), // STH(Y), STHRL
2108
+ &Inst::Store32 { .. } => (Some(0x50), Some(0xe350), Some(0xc4f)), // ST(Y), STRL
2109
+ &Inst::Store64 { .. } => (None, Some(0xe324), Some(0xc4b)), // STG, STGRL
2110
+ &Inst::StoreRev16 { .. } => (None, Some(0xe33f), None), // STRVH
2111
+ &Inst::StoreRev32 { .. } => (None, Some(0xe33e), None), // STRV
2112
+ &Inst::StoreRev64 { .. } => (None, Some(0xe32f), None), // STRVG
2113
+ _ => unreachable!(),
2114
+ };
2115
+ mem_emit(
2116
+ rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
2117
+ );
2118
+ }
2119
+ &Inst::StoreImm8 { imm, ref mem } => {
2120
+ let mem = mem.clone();
2121
+
2122
+ let opcode_si = 0x92; // MVI
2123
+ let opcode_siy = 0xeb52; // MVIY
2124
+ mem_imm8_emit(
2125
+ imm, &mem, opcode_si, opcode_siy, true, sink, emit_info, state,
2126
+ );
2127
+ }
2128
+ &Inst::StoreImm16 { imm, ref mem }
2129
+ | &Inst::StoreImm32SExt16 { imm, ref mem }
2130
+ | &Inst::StoreImm64SExt16 { imm, ref mem } => {
2131
+ let mem = mem.clone();
2132
+
2133
+ let opcode = match self {
2134
+ &Inst::StoreImm16 { .. } => 0xe544, // MVHHI
2135
+ &Inst::StoreImm32SExt16 { .. } => 0xe54c, // MVHI
2136
+ &Inst::StoreImm64SExt16 { .. } => 0xe548, // MVGHI
2137
+ _ => unreachable!(),
2138
+ };
2139
+ mem_imm16_emit(imm, &mem, opcode, true, sink, emit_info, state);
2140
+ }
2141
+
2142
+ &Inst::LoadMultiple64 { rt, rt2, ref mem } => {
2143
+ let mem = mem.clone();
2144
+
2145
+ let opcode = 0xeb04; // LMG
2146
+ let rt = rt.to_reg();
2147
+ let rt2 = rt2.to_reg();
2148
+ mem_rs_emit(
2149
+ rt,
2150
+ rt2,
2151
+ &mem,
2152
+ None,
2153
+ Some(opcode),
2154
+ true,
2155
+ sink,
2156
+ emit_info,
2157
+ state,
2158
+ );
2159
+ }
2160
+ &Inst::StoreMultiple64 { rt, rt2, ref mem } => {
2161
+ let mem = mem.clone();
2162
+
2163
+ let opcode = 0xeb24; // STMG
2164
+ mem_rs_emit(
2165
+ rt,
2166
+ rt2,
2167
+ &mem,
2168
+ None,
2169
+ Some(opcode),
2170
+ true,
2171
+ sink,
2172
+ emit_info,
2173
+ state,
2174
+ );
2175
+ }
2176
+
2177
+ &Inst::LoadAddr { rd, ref mem } => {
2178
+ let mem = mem.clone();
2179
+
2180
+ let opcode_rx = Some(0x41); // LA
2181
+ let opcode_rxy = Some(0xe371); // LAY
2182
+ let opcode_ril = Some(0xc00); // LARL
2183
+ let rd = rd.to_reg();
2184
+ mem_emit(
2185
+ rd, &mem, opcode_rx, opcode_rxy, opcode_ril, false, sink, emit_info, state,
2186
+ );
2187
+ }
2188
+
2189
+ &Inst::Mov64 { rd, rm } => {
2190
+ let opcode = 0xb904; // LGR
2191
+ put(sink, &enc_rre(opcode, rd.to_reg(), rm));
2192
+ }
2193
+ &Inst::MovPReg { rd, rm } => {
2194
+ Inst::Mov64 { rd, rm: rm.into() }.emit(sink, emit_info, state);
2195
+ }
2196
+ &Inst::Mov32 { rd, rm } => {
2197
+ let opcode = 0x18; // LR
2198
+ put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2199
+ }
2200
+ &Inst::Mov32Imm { rd, imm } => {
2201
+ let opcode = 0xc09; // IILF
2202
+ put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
2203
+ }
2204
+ &Inst::Mov32SImm16 { rd, imm } => {
2205
+ let opcode = 0xa78; // LHI
2206
+ put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
2207
+ }
2208
+ &Inst::Mov64SImm16 { rd, imm } => {
2209
+ let opcode = 0xa79; // LGHI
2210
+ put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
2211
+ }
2212
+ &Inst::Mov64SImm32 { rd, imm } => {
2213
+ let opcode = 0xc01; // LGFI
2214
+ put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
2215
+ }
2216
+ &Inst::CMov32 { rd, cond, ri, rm } => {
2217
+ debug_assert_eq!(rd.to_reg(), ri);
2218
+
2219
+ let opcode = 0xb9f2; // LOCR
2220
+ put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
2221
+ }
2222
+ &Inst::CMov64 { rd, cond, ri, rm } => {
2223
+ debug_assert_eq!(rd.to_reg(), ri);
2224
+
2225
+ let opcode = 0xb9e2; // LOCGR
2226
+ put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
2227
+ }
2228
+ &Inst::CMov32SImm16 { rd, cond, ri, imm } => {
2229
+ debug_assert_eq!(rd.to_reg(), ri);
2230
+
2231
+ let opcode = 0xec42; // LOCHI
2232
+ put(
2233
+ sink,
2234
+ &enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
2235
+ );
2236
+ }
2237
+ &Inst::CMov64SImm16 { rd, cond, ri, imm } => {
2238
+ debug_assert_eq!(rd.to_reg(), ri);
2239
+
2240
+ let opcode = 0xec46; // LOCGHI
2241
+ put(
2242
+ sink,
2243
+ &enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
2244
+ );
2245
+ }
2246
+ &Inst::Mov64UImm16Shifted { rd, imm } => {
2247
+ let opcode = match imm.shift {
2248
+ 0 => 0xa5f, // LLILL
2249
+ 1 => 0xa5e, // LLILH
2250
+ 2 => 0xa5d, // LLIHL
2251
+ 3 => 0xa5c, // LLIHH
2252
+ _ => unreachable!(),
2253
+ };
2254
+ put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
2255
+ }
2256
+ &Inst::Mov64UImm32Shifted { rd, imm } => {
2257
+ let opcode = match imm.shift {
2258
+ 0 => 0xc0f, // LLILF
2259
+ 1 => 0xc0e, // LLIHF
2260
+ _ => unreachable!(),
2261
+ };
2262
+ put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
2263
+ }
2264
+ &Inst::Insert64UImm16Shifted { rd, ri, imm } => {
2265
+ debug_assert_eq!(rd.to_reg(), ri);
2266
+
2267
+ let opcode = match imm.shift {
2268
+ 0 => 0xa53, // IILL
2269
+ 1 => 0xa52, // IILH
2270
+ 2 => 0xa51, // IIHL
2271
+ 3 => 0xa50, // IIHH
2272
+ _ => unreachable!(),
2273
+ };
2274
+ put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
2275
+ }
2276
+ &Inst::Insert64UImm32Shifted { rd, ri, imm } => {
2277
+ debug_assert_eq!(rd.to_reg(), ri);
2278
+
2279
+ let opcode = match imm.shift {
2280
+ 0 => 0xc09, // IILF
2281
+ 1 => 0xc08, // IIHF
2282
+ _ => unreachable!(),
2283
+ };
2284
+ put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
2285
+ }
2286
+ &Inst::LoadAR { rd, ar } => {
2287
+ let opcode = 0xb24f; // EAR
2288
+ put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
2289
+ }
2290
+
2291
+ &Inst::InsertAR { rd, ri, ar } => {
2292
+ debug_assert_eq!(rd.to_reg(), ri);
2293
+
2294
+ let opcode = 0xb24f; // EAR
2295
+ put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
2296
+ }
2297
+ &Inst::LoadSymbolReloc {
2298
+ rd,
2299
+ ref symbol_reloc,
2300
+ } => {
2301
+ let opcode = 0xa75; // BRAS
2302
+ let reg = writable_spilltmp_reg().to_reg();
2303
+ put(sink, &enc_ri_b(opcode, reg, 12));
2304
+ let (reloc, name, offset) = match &**symbol_reloc {
2305
+ SymbolReloc::Absolute { name, offset } => (Reloc::Abs8, name, *offset),
2306
+ SymbolReloc::TlsGd { name } => (Reloc::S390xTlsGd64, name, 0),
2307
+ };
2308
+ sink.add_reloc(reloc, name, offset);
2309
+ sink.put8(0);
2310
+ let inst = Inst::Load64 {
2311
+ rd,
2312
+ mem: MemArg::reg(reg, MemFlags::trusted()),
2313
+ };
2314
+ inst.emit(sink, emit_info, state);
2315
+ }
2316
+
2317
+ &Inst::FpuMove32 { rd, rn } => {
2318
+ if is_fpr(rd.to_reg()) && is_fpr(rn) {
2319
+ let opcode = 0x38; // LER
2320
+ put(sink, &enc_rr(opcode, rd.to_reg(), rn));
2321
+ } else {
2322
+ let opcode = 0xe756; // VLR
2323
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2324
+ }
2325
+ }
2326
+ &Inst::FpuMove64 { rd, rn } => {
2327
+ if is_fpr(rd.to_reg()) && is_fpr(rn) {
2328
+ let opcode = 0x28; // LDR
2329
+ put(sink, &enc_rr(opcode, rd.to_reg(), rn));
2330
+ } else {
2331
+ let opcode = 0xe756; // VLR
2332
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2333
+ }
2334
+ }
2335
+ &Inst::FpuCMov32 { rd, cond, ri, rm } => {
2336
+ debug_assert_eq!(rd.to_reg(), ri);
2337
+
2338
+ if is_fpr(rd.to_reg()) && is_fpr(rm) {
2339
+ let opcode = 0xa74; // BCR
2340
+ put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
2341
+ let opcode = 0x38; // LER
2342
+ put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2343
+ } else {
2344
+ let opcode = 0xa74; // BCR
2345
+ put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2346
+ let opcode = 0xe756; // VLR
2347
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2348
+ }
2349
+ }
2350
+ &Inst::FpuCMov64 { rd, cond, ri, rm } => {
2351
+ debug_assert_eq!(rd.to_reg(), ri);
2352
+
2353
+ if is_fpr(rd.to_reg()) && is_fpr(rm) {
2354
+ let opcode = 0xa74; // BCR
2355
+ put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
2356
+ let opcode = 0x28; // LDR
2357
+ put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2358
+ } else {
2359
+ let opcode = 0xa74; // BCR
2360
+ put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2361
+ let opcode = 0xe756; // VLR
2362
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2363
+ }
2364
+ }
2365
+ &Inst::LoadFpuConst32 { rd, const_data } => {
2366
+ let opcode = 0xa75; // BRAS
2367
+ let reg = writable_spilltmp_reg().to_reg();
2368
+ put(sink, &enc_ri_b(opcode, reg, 8));
2369
+ sink.put4(const_data.swap_bytes());
2370
+ let inst = Inst::VecLoadLaneUndef {
2371
+ size: 32,
2372
+ rd,
2373
+ mem: MemArg::reg(reg, MemFlags::trusted()),
2374
+ lane_imm: 0,
2375
+ };
2376
+ inst.emit(sink, emit_info, state);
2377
+ }
2378
+ &Inst::LoadFpuConst64 { rd, const_data } => {
2379
+ let opcode = 0xa75; // BRAS
2380
+ let reg = writable_spilltmp_reg().to_reg();
2381
+ put(sink, &enc_ri_b(opcode, reg, 12));
2382
+ sink.put8(const_data.swap_bytes());
2383
+ let inst = Inst::VecLoadLaneUndef {
2384
+ size: 64,
2385
+ rd,
2386
+ mem: MemArg::reg(reg, MemFlags::trusted()),
2387
+ lane_imm: 0,
2388
+ };
2389
+ inst.emit(sink, emit_info, state);
2390
+ }
2391
+ &Inst::FpuRR { fpu_op, rd, rn } => {
2392
+ let (opcode, m3, m4, m5, opcode_fpr) = match fpu_op {
2393
+ FPUOp1::Abs32 => (0xe7cc, 2, 8, 2, Some(0xb300)), // WFPSO, LPEBR
2394
+ FPUOp1::Abs64 => (0xe7cc, 3, 8, 2, Some(0xb310)), // WFPSO, LPDBR
2395
+ FPUOp1::Abs32x4 => (0xe7cc, 2, 0, 2, None), // VFPSO
2396
+ FPUOp1::Abs64x2 => (0xe7cc, 3, 0, 2, None), // VFPSO
2397
+ FPUOp1::Neg32 => (0xe7cc, 2, 8, 0, Some(0xb303)), // WFPSO, LCEBR
2398
+ FPUOp1::Neg64 => (0xe7cc, 3, 8, 0, Some(0xb313)), // WFPSO, LCDBR
2399
+ FPUOp1::Neg32x4 => (0xe7cc, 2, 0, 0, None), // VFPSO
2400
+ FPUOp1::Neg64x2 => (0xe7cc, 3, 0, 0, None), // VFPSO
2401
+ FPUOp1::NegAbs32 => (0xe7cc, 2, 8, 1, Some(0xb301)), // WFPSO, LNEBR
2402
+ FPUOp1::NegAbs64 => (0xe7cc, 3, 8, 1, Some(0xb311)), // WFPSO, LNDBR
2403
+ FPUOp1::NegAbs32x4 => (0xe7cc, 2, 0, 1, None), // VFPSO
2404
+ FPUOp1::NegAbs64x2 => (0xe7cc, 3, 0, 1, None), // VFPSO
2405
+ FPUOp1::Sqrt32 => (0xe7ce, 2, 8, 0, Some(0xb314)), // WFSQ, SQEBR
2406
+ FPUOp1::Sqrt64 => (0xe7ce, 3, 8, 0, Some(0xb315)), // WFSQ, SQDBR
2407
+ FPUOp1::Sqrt32x4 => (0xe7ce, 2, 0, 0, None), // VFSQ
2408
+ FPUOp1::Sqrt64x2 => (0xe7ce, 3, 0, 0, None), // VFSQ
2409
+ FPUOp1::Cvt32To64 => (0xe7c4, 2, 8, 0, Some(0xb304)), // WFLL, LDEBR
2410
+ FPUOp1::Cvt32x4To64x2 => (0xe7c4, 2, 0, 0, None), // VFLL
2411
+ };
2412
+ if m4 == 8 && is_fpr(rd.to_reg()) && is_fpr(rn) {
2413
+ put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rn));
2414
+ } else {
2415
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, m5));
2416
+ }
2417
+ }
2418
+ &Inst::FpuRRR { fpu_op, rd, rn, rm } => {
2419
+ let (opcode, m4, m5, m6, opcode_fpr) = match fpu_op {
2420
+ FPUOp2::Add32 => (0xe7e3, 2, 8, 0, Some(0xb30a)), // WFA, AEBR
2421
+ FPUOp2::Add64 => (0xe7e3, 3, 8, 0, Some(0xb31a)), // WFA, ADBR
2422
+ FPUOp2::Add32x4 => (0xe7e3, 2, 0, 0, None), // VFA
2423
+ FPUOp2::Add64x2 => (0xe7e3, 3, 0, 0, None), // VFA
2424
+ FPUOp2::Sub32 => (0xe7e2, 2, 8, 0, Some(0xb30b)), // WFS, SEBR
2425
+ FPUOp2::Sub64 => (0xe7e2, 3, 8, 0, Some(0xb31b)), // WFS, SDBR
2426
+ FPUOp2::Sub32x4 => (0xe7e2, 2, 0, 0, None), // VFS
2427
+ FPUOp2::Sub64x2 => (0xe7e2, 3, 0, 0, None), // VFS
2428
+ FPUOp2::Mul32 => (0xe7e7, 2, 8, 0, Some(0xb317)), // WFM, MEEBR
2429
+ FPUOp2::Mul64 => (0xe7e7, 3, 8, 0, Some(0xb31c)), // WFM, MDBR
2430
+ FPUOp2::Mul32x4 => (0xe7e7, 2, 0, 0, None), // VFM
2431
+ FPUOp2::Mul64x2 => (0xe7e7, 3, 0, 0, None), // VFM
2432
+ FPUOp2::Div32 => (0xe7e5, 2, 8, 0, Some(0xb30d)), // WFD, DEBR
2433
+ FPUOp2::Div64 => (0xe7e5, 3, 8, 0, Some(0xb31d)), // WFD, DDBR
2434
+ FPUOp2::Div32x4 => (0xe7e5, 2, 0, 0, None), // VFD
2435
+ FPUOp2::Div64x2 => (0xe7e5, 3, 0, 0, None), // VFD
2436
+ FPUOp2::Max32 => (0xe7ef, 2, 8, 1, None), // WFMAX
2437
+ FPUOp2::Max64 => (0xe7ef, 3, 8, 1, None), // WFMAX
2438
+ FPUOp2::Max32x4 => (0xe7ef, 2, 0, 1, None), // VFMAX
2439
+ FPUOp2::Max64x2 => (0xe7ef, 3, 0, 1, None), // VFMAX
2440
+ FPUOp2::Min32 => (0xe7ee, 2, 8, 1, None), // WFMIN
2441
+ FPUOp2::Min64 => (0xe7ee, 3, 8, 1, None), // WFMIN
2442
+ FPUOp2::Min32x4 => (0xe7ee, 2, 0, 1, None), // VFMIN
2443
+ FPUOp2::Min64x2 => (0xe7ee, 3, 0, 1, None), // VFMIN
2444
+ FPUOp2::MaxPseudo32 => (0xe7ef, 2, 8, 3, None), // WFMAX
2445
+ FPUOp2::MaxPseudo64 => (0xe7ef, 3, 8, 3, None), // WFMAX
2446
+ FPUOp2::MaxPseudo32x4 => (0xe7ef, 2, 0, 3, None), // VFMAX
2447
+ FPUOp2::MaxPseudo64x2 => (0xe7ef, 3, 0, 3, None), // VFMAX
2448
+ FPUOp2::MinPseudo32 => (0xe7ee, 2, 8, 3, None), // WFMIN
2449
+ FPUOp2::MinPseudo64 => (0xe7ee, 3, 8, 3, None), // WFMIN
2450
+ FPUOp2::MinPseudo32x4 => (0xe7ee, 2, 0, 3, None), // VFMIN
2451
+ FPUOp2::MinPseudo64x2 => (0xe7ee, 3, 0, 3, None), // VFMIN
2452
+ };
2453
+ if m5 == 8 && opcode_fpr.is_some() && rd.to_reg() == rn && is_fpr(rn) && is_fpr(rm)
2454
+ {
2455
+ put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rm));
2456
+ } else {
2457
+ put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, m5, m6));
2458
+ }
2459
+ }
2460
+ &Inst::FpuRRRR {
2461
+ fpu_op,
2462
+ rd,
2463
+ rn,
2464
+ rm,
2465
+ ra,
2466
+ } => {
2467
+ let (opcode, m5, m6, opcode_fpr) = match fpu_op {
2468
+ FPUOp3::MAdd32 => (0xe78f, 8, 2, Some(0xb30e)), // WFMA, MAEBR
2469
+ FPUOp3::MAdd64 => (0xe78f, 8, 3, Some(0xb31e)), // WFMA, MADBR
2470
+ FPUOp3::MAdd32x4 => (0xe78f, 0, 2, None), // VFMA
2471
+ FPUOp3::MAdd64x2 => (0xe78f, 0, 3, None), // VFMA
2472
+ FPUOp3::MSub32 => (0xe78e, 8, 2, Some(0xb30f)), // WFMS, MSEBR
2473
+ FPUOp3::MSub64 => (0xe78e, 8, 3, Some(0xb31f)), // WFMS, MSDBR
2474
+ FPUOp3::MSub32x4 => (0xe78e, 0, 2, None), // VFMS
2475
+ FPUOp3::MSub64x2 => (0xe78e, 0, 3, None), // VFMS
2476
+ };
2477
+ if m5 == 8 && rd.to_reg() == ra && is_fpr(rn) && is_fpr(rm) && is_fpr(ra) {
2478
+ put(sink, &enc_rrd(opcode_fpr.unwrap(), rd.to_reg(), rm, rn));
2479
+ } else {
2480
+ put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, m5, m6));
2481
+ }
2482
+ }
2483
+ &Inst::FpuRound { op, mode, rd, rn } => {
2484
+ let mode = match mode {
2485
+ FpuRoundMode::Current => 0,
2486
+ FpuRoundMode::ToNearest => 1,
2487
+ FpuRoundMode::ShorterPrecision => 3,
2488
+ FpuRoundMode::ToNearestTiesToEven => 4,
2489
+ FpuRoundMode::ToZero => 5,
2490
+ FpuRoundMode::ToPosInfinity => 6,
2491
+ FpuRoundMode::ToNegInfinity => 7,
2492
+ };
2493
+ let (opcode, m3, m4, opcode_fpr) = match op {
2494
+ FpuRoundOp::Cvt64To32 => (0xe7c5, 3, 8, Some(0xb344)), // WFLR, LEDBR(A)
2495
+ FpuRoundOp::Cvt64x2To32x4 => (0xe7c5, 3, 0, None), // VFLR
2496
+ FpuRoundOp::Round32 => (0xe7c7, 2, 8, Some(0xb357)), // WFI, FIEBR
2497
+ FpuRoundOp::Round64 => (0xe7c7, 3, 8, Some(0xb35f)), // WFI, FIDBR
2498
+ FpuRoundOp::Round32x4 => (0xe7c7, 2, 0, None), // VFI
2499
+ FpuRoundOp::Round64x2 => (0xe7c7, 3, 0, None), // VFI
2500
+ FpuRoundOp::ToSInt32 => (0xe7c2, 2, 8, None), // WCSFP
2501
+ FpuRoundOp::ToSInt64 => (0xe7c2, 3, 8, None), // WCSFP
2502
+ FpuRoundOp::ToUInt32 => (0xe7c0, 2, 8, None), // WCLFP
2503
+ FpuRoundOp::ToUInt64 => (0xe7c0, 3, 8, None), // WCLFP
2504
+ FpuRoundOp::ToSInt32x4 => (0xe7c2, 2, 0, None), // VCSFP
2505
+ FpuRoundOp::ToSInt64x2 => (0xe7c2, 3, 0, None), // VCSFP
2506
+ FpuRoundOp::ToUInt32x4 => (0xe7c0, 2, 0, None), // VCLFP
2507
+ FpuRoundOp::ToUInt64x2 => (0xe7c0, 3, 0, None), // VCLFP
2508
+ FpuRoundOp::FromSInt32 => (0xe7c3, 2, 8, None), // WCFPS
2509
+ FpuRoundOp::FromSInt64 => (0xe7c3, 3, 8, None), // WCFPS
2510
+ FpuRoundOp::FromUInt32 => (0xe7c1, 2, 8, None), // WCFPL
2511
+ FpuRoundOp::FromUInt64 => (0xe7c1, 3, 8, None), // WCFPL
2512
+ FpuRoundOp::FromSInt32x4 => (0xe7c3, 2, 0, None), // VCFPS
2513
+ FpuRoundOp::FromSInt64x2 => (0xe7c3, 3, 0, None), // VCFPS
2514
+ FpuRoundOp::FromUInt32x4 => (0xe7c1, 2, 0, None), // VCFPL
2515
+ FpuRoundOp::FromUInt64x2 => (0xe7c1, 3, 0, None), // VCFPL
2516
+ };
2517
+ if m4 == 8 && opcode_fpr.is_some() && is_fpr(rd.to_reg()) && is_fpr(rn) {
2518
+ put(
2519
+ sink,
2520
+ &enc_rrf_cde(opcode_fpr.unwrap(), rd.to_reg(), rn, mode, 0),
2521
+ );
2522
+ } else {
2523
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, mode));
2524
+ }
2525
+ }
2526
+ &Inst::FpuCmp32 { rn, rm } => {
2527
+ if is_fpr(rn) && is_fpr(rm) {
2528
+ let opcode = 0xb309; // CEBR
2529
+ put(sink, &enc_rre(opcode, rn, rm));
2530
+ } else {
2531
+ let opcode = 0xe7cb; // WFC
2532
+ put(sink, &enc_vrr_a(opcode, rn, rm, 2, 0, 0));
2533
+ }
2534
+ }
2535
+ &Inst::FpuCmp64 { rn, rm } => {
2536
+ if is_fpr(rn) && is_fpr(rm) {
2537
+ let opcode = 0xb319; // CDBR
2538
+ put(sink, &enc_rre(opcode, rn, rm));
2539
+ } else {
2540
+ let opcode = 0xe7cb; // WFC
2541
+ put(sink, &enc_vrr_a(opcode, rn, rm, 3, 0, 0));
2542
+ }
2543
+ }
2544
+
2545
+ &Inst::VecRRR { op, rd, rn, rm } => {
2546
+ let (opcode, m4) = match op {
2547
+ VecBinaryOp::Add8x16 => (0xe7f3, 0), // VAB
2548
+ VecBinaryOp::Add16x8 => (0xe7f3, 1), // VAH
2549
+ VecBinaryOp::Add32x4 => (0xe7f3, 2), // VAF
2550
+ VecBinaryOp::Add64x2 => (0xe7f3, 3), // VAG
2551
+ VecBinaryOp::Add128 => (0xe7f3, 4), // VAQ
2552
+ VecBinaryOp::Sub8x16 => (0xe7f7, 0), // VSB
2553
+ VecBinaryOp::Sub16x8 => (0xe7f7, 1), // VSH
2554
+ VecBinaryOp::Sub32x4 => (0xe7f7, 2), // VSF
2555
+ VecBinaryOp::Sub64x2 => (0xe7f7, 3), // VSG
2556
+ VecBinaryOp::Sub128 => (0xe7f7, 4), // VSQ
2557
+ VecBinaryOp::Mul8x16 => (0xe7a2, 0), // VMLB
2558
+ VecBinaryOp::Mul16x8 => (0xe7a2, 1), // VMLHW
2559
+ VecBinaryOp::Mul32x4 => (0xe7a2, 2), // VMLF
2560
+ VecBinaryOp::UMulHi8x16 => (0xe7a1, 0), // VMLHB
2561
+ VecBinaryOp::UMulHi16x8 => (0xe7a1, 1), // VMLHH
2562
+ VecBinaryOp::UMulHi32x4 => (0xe7a1, 2), // VMLHF
2563
+ VecBinaryOp::SMulHi8x16 => (0xe7a3, 0), // VMHB
2564
+ VecBinaryOp::SMulHi16x8 => (0xe7a3, 1), // VMHH
2565
+ VecBinaryOp::SMulHi32x4 => (0xe7a3, 2), // VMHF
2566
+ VecBinaryOp::UMulEven8x16 => (0xe7a4, 0), // VMLEB
2567
+ VecBinaryOp::UMulEven16x8 => (0xe7a4, 1), // VMLEH
2568
+ VecBinaryOp::UMulEven32x4 => (0xe7a4, 2), // VMLEF
2569
+ VecBinaryOp::SMulEven8x16 => (0xe7a6, 0), // VMEB
2570
+ VecBinaryOp::SMulEven16x8 => (0xe7a6, 1), // VMEH
2571
+ VecBinaryOp::SMulEven32x4 => (0xe7a6, 2), // VMEF
2572
+ VecBinaryOp::UMulOdd8x16 => (0xe7a5, 0), // VMLOB
2573
+ VecBinaryOp::UMulOdd16x8 => (0xe7a5, 1), // VMLOH
2574
+ VecBinaryOp::UMulOdd32x4 => (0xe7a5, 2), // VMLOF
2575
+ VecBinaryOp::SMulOdd8x16 => (0xe7a7, 0), // VMOB
2576
+ VecBinaryOp::SMulOdd16x8 => (0xe7a7, 1), // VMOH
2577
+ VecBinaryOp::SMulOdd32x4 => (0xe7a7, 2), // VMOF
2578
+ VecBinaryOp::UMax8x16 => (0xe7fd, 0), // VMXLB
2579
+ VecBinaryOp::UMax16x8 => (0xe7fd, 1), // VMXLH
2580
+ VecBinaryOp::UMax32x4 => (0xe7fd, 2), // VMXLF
2581
+ VecBinaryOp::UMax64x2 => (0xe7fd, 3), // VMXLG
2582
+ VecBinaryOp::SMax8x16 => (0xe7ff, 0), // VMXB
2583
+ VecBinaryOp::SMax16x8 => (0xe7ff, 1), // VMXH
2584
+ VecBinaryOp::SMax32x4 => (0xe7ff, 2), // VMXF
2585
+ VecBinaryOp::SMax64x2 => (0xe7ff, 3), // VMXG
2586
+ VecBinaryOp::UMin8x16 => (0xe7fc, 0), // VMNLB
2587
+ VecBinaryOp::UMin16x8 => (0xe7fc, 1), // VMNLH
2588
+ VecBinaryOp::UMin32x4 => (0xe7fc, 2), // VMNLF
2589
+ VecBinaryOp::UMin64x2 => (0xe7fc, 3), // VMNLG
2590
+ VecBinaryOp::SMin8x16 => (0xe7fe, 0), // VMNB
2591
+ VecBinaryOp::SMin16x8 => (0xe7fe, 1), // VMNH
2592
+ VecBinaryOp::SMin32x4 => (0xe7fe, 2), // VMNF
2593
+ VecBinaryOp::SMin64x2 => (0xe7fe, 3), // VMNG
2594
+ VecBinaryOp::UAvg8x16 => (0xe7f0, 0), // VAVGLB
2595
+ VecBinaryOp::UAvg16x8 => (0xe7f0, 1), // VAVGLH
2596
+ VecBinaryOp::UAvg32x4 => (0xe7f0, 2), // VAVGLF
2597
+ VecBinaryOp::UAvg64x2 => (0xe7f0, 3), // VAVGLG
2598
+ VecBinaryOp::SAvg8x16 => (0xe7f2, 0), // VAVGB
2599
+ VecBinaryOp::SAvg16x8 => (0xe7f2, 1), // VAVGH
2600
+ VecBinaryOp::SAvg32x4 => (0xe7f2, 2), // VAVGF
2601
+ VecBinaryOp::SAvg64x2 => (0xe7f2, 3), // VAVGG
2602
+ VecBinaryOp::And128 => (0xe768, 0), // VN
2603
+ VecBinaryOp::Orr128 => (0xe76a, 0), // VO
2604
+ VecBinaryOp::Xor128 => (0xe76d, 0), // VX
2605
+ VecBinaryOp::NotAnd128 => (0xe76e, 0), // VNN
2606
+ VecBinaryOp::NotOrr128 => (0xe76b, 0), // VNO
2607
+ VecBinaryOp::NotXor128 => (0xe76c, 0), // VNX
2608
+ VecBinaryOp::AndNot128 => (0xe769, 0), // VNC
2609
+ VecBinaryOp::OrrNot128 => (0xe76f, 0), // VOC
2610
+ VecBinaryOp::BitPermute128 => (0xe785, 0), // VBPERM
2611
+ VecBinaryOp::LShLByByte128 => (0xe775, 0), // VSLB
2612
+ VecBinaryOp::LShRByByte128 => (0xe77d, 0), // VSRLB
2613
+ VecBinaryOp::AShRByByte128 => (0xe77f, 0), // VSRAB
2614
+ VecBinaryOp::LShLByBit128 => (0xe774, 0), // VSL
2615
+ VecBinaryOp::LShRByBit128 => (0xe77c, 0), // VSRL
2616
+ VecBinaryOp::AShRByBit128 => (0xe77e, 0), // VSRA
2617
+ VecBinaryOp::Pack16x8 => (0xe794, 1), // VPKH
2618
+ VecBinaryOp::Pack32x4 => (0xe794, 2), // VPKF
2619
+ VecBinaryOp::Pack64x2 => (0xe794, 3), // VPKG
2620
+ VecBinaryOp::PackUSat16x8 => (0xe795, 1), // VPKLSH
2621
+ VecBinaryOp::PackUSat32x4 => (0xe795, 2), // VPKLSF
2622
+ VecBinaryOp::PackUSat64x2 => (0xe795, 3), // VPKLSG
2623
+ VecBinaryOp::PackSSat16x8 => (0xe797, 1), // VPKSH
2624
+ VecBinaryOp::PackSSat32x4 => (0xe797, 2), // VPKSF
2625
+ VecBinaryOp::PackSSat64x2 => (0xe797, 3), // VPKSG
2626
+ VecBinaryOp::MergeLow8x16 => (0xe760, 0), // VMRLB
2627
+ VecBinaryOp::MergeLow16x8 => (0xe760, 1), // VMRLH
2628
+ VecBinaryOp::MergeLow32x4 => (0xe760, 2), // VMRLF
2629
+ VecBinaryOp::MergeLow64x2 => (0xe760, 3), // VMRLG
2630
+ VecBinaryOp::MergeHigh8x16 => (0xe761, 0), // VMRHB
2631
+ VecBinaryOp::MergeHigh16x8 => (0xe761, 1), // VMRHH
2632
+ VecBinaryOp::MergeHigh32x4 => (0xe761, 2), // VMRHF
2633
+ VecBinaryOp::MergeHigh64x2 => (0xe761, 3), // VMRHG
2634
+ };
2635
+
2636
+ put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
2637
+ }
2638
+ &Inst::VecRR { op, rd, rn } => {
2639
+ let (opcode, m3) = match op {
2640
+ VecUnaryOp::Abs8x16 => (0xe7df, 0), // VLPB
2641
+ VecUnaryOp::Abs16x8 => (0xe7df, 1), // VLPH
2642
+ VecUnaryOp::Abs32x4 => (0xe7df, 2), // VLPF
2643
+ VecUnaryOp::Abs64x2 => (0xe7df, 3), // VLPG
2644
+ VecUnaryOp::Neg8x16 => (0xe7de, 0), // VLCB
2645
+ VecUnaryOp::Neg16x8 => (0xe7de, 1), // VLCH
2646
+ VecUnaryOp::Neg32x4 => (0xe7de, 2), // VLCF
2647
+ VecUnaryOp::Neg64x2 => (0xe7de, 3), // VLCG
2648
+ VecUnaryOp::Popcnt8x16 => (0xe750, 0), // VPOPCTB
2649
+ VecUnaryOp::Popcnt16x8 => (0xe750, 1), // VPOPCTH
2650
+ VecUnaryOp::Popcnt32x4 => (0xe750, 2), // VPOPCTF
2651
+ VecUnaryOp::Popcnt64x2 => (0xe750, 3), // VPOPCTG
2652
+ VecUnaryOp::Clz8x16 => (0xe753, 0), // VCLZB
2653
+ VecUnaryOp::Clz16x8 => (0xe753, 1), // VCLZH
2654
+ VecUnaryOp::Clz32x4 => (0xe753, 2), // VCLZF
2655
+ VecUnaryOp::Clz64x2 => (0xe753, 3), // VCLZG
2656
+ VecUnaryOp::Ctz8x16 => (0xe752, 0), // VCTZB
2657
+ VecUnaryOp::Ctz16x8 => (0xe752, 1), // VCTZH
2658
+ VecUnaryOp::Ctz32x4 => (0xe752, 2), // VCTZF
2659
+ VecUnaryOp::Ctz64x2 => (0xe752, 3), // VCTZG
2660
+ VecUnaryOp::UnpackULow8x16 => (0xe7d4, 0), // VUPLLB
2661
+ VecUnaryOp::UnpackULow16x8 => (0xe7d4, 1), // VUPLLH
2662
+ VecUnaryOp::UnpackULow32x4 => (0xe7d4, 2), // VUPLLF
2663
+ VecUnaryOp::UnpackUHigh8x16 => (0xe7d5, 0), // VUPLHB
2664
+ VecUnaryOp::UnpackUHigh16x8 => (0xe7d5, 1), // VUPLHH
2665
+ VecUnaryOp::UnpackUHigh32x4 => (0xe7d5, 2), // VUPLHF
2666
+ VecUnaryOp::UnpackSLow8x16 => (0xe7d6, 0), // VUPLB
2667
+ VecUnaryOp::UnpackSLow16x8 => (0xe7d6, 1), // VUPLH
2668
+ VecUnaryOp::UnpackSLow32x4 => (0xe7d6, 2), // VUPLF
2669
+ VecUnaryOp::UnpackSHigh8x16 => (0xe7d7, 0), // VUPHB
2670
+ VecUnaryOp::UnpackSHigh16x8 => (0xe7d7, 1), // VUPHH
2671
+ VecUnaryOp::UnpackSHigh32x4 => (0xe7d7, 2), // VUPHF
2672
+ };
2673
+
2674
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, 0, 0));
2675
+ }
2676
+ &Inst::VecShiftRR {
2677
+ shift_op,
2678
+ rd,
2679
+ rn,
2680
+ shift_imm,
2681
+ shift_reg,
2682
+ } => {
2683
+ let (opcode, m4) = match shift_op {
2684
+ VecShiftOp::RotL8x16 => (0xe733, 0), // VERLLB
2685
+ VecShiftOp::RotL16x8 => (0xe733, 1), // VERLLH
2686
+ VecShiftOp::RotL32x4 => (0xe733, 2), // VERLLF
2687
+ VecShiftOp::RotL64x2 => (0xe733, 3), // VERLLG
2688
+ VecShiftOp::LShL8x16 => (0xe730, 0), // VESLB
2689
+ VecShiftOp::LShL16x8 => (0xe730, 1), // VESLH
2690
+ VecShiftOp::LShL32x4 => (0xe730, 2), // VESLF
2691
+ VecShiftOp::LShL64x2 => (0xe730, 3), // VESLG
2692
+ VecShiftOp::LShR8x16 => (0xe738, 0), // VESRLB
2693
+ VecShiftOp::LShR16x8 => (0xe738, 1), // VESRLH
2694
+ VecShiftOp::LShR32x4 => (0xe738, 2), // VESRLF
2695
+ VecShiftOp::LShR64x2 => (0xe738, 3), // VESRLG
2696
+ VecShiftOp::AShR8x16 => (0xe73a, 0), // VESRAB
2697
+ VecShiftOp::AShR16x8 => (0xe73a, 1), // VESRAH
2698
+ VecShiftOp::AShR32x4 => (0xe73a, 2), // VESRAF
2699
+ VecShiftOp::AShR64x2 => (0xe73a, 3), // VESRAG
2700
+ };
2701
+ put(
2702
+ sink,
2703
+ &enc_vrs_a(opcode, rd.to_reg(), shift_reg, shift_imm.into(), rn, m4),
2704
+ );
2705
+ }
2706
+ &Inst::VecSelect { rd, rn, rm, ra } => {
2707
+ let opcode = 0xe78d; // VSEL
2708
+ put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
2709
+ }
2710
+ &Inst::VecPermute { rd, rn, rm, ra } => {
2711
+ let opcode = 0xe78c; // VPERM
2712
+ put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
2713
+ }
2714
+ &Inst::VecPermuteDWImm {
2715
+ rd,
2716
+ rn,
2717
+ rm,
2718
+ idx1,
2719
+ idx2,
2720
+ } => {
2721
+ let m4 = (idx1 & 1) * 4 + (idx2 & 1);
2722
+
2723
+ let opcode = 0xe784; // VPDI
2724
+ put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
2725
+ }
2726
+ &Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
2727
+ let (opcode, m4) = match op {
2728
+ VecIntCmpOp::CmpEq8x16 => (0xe7f8, 0), // VCEQB
2729
+ VecIntCmpOp::CmpEq16x8 => (0xe7f8, 1), // VCEQH
2730
+ VecIntCmpOp::CmpEq32x4 => (0xe7f8, 2), // VCEQF
2731
+ VecIntCmpOp::CmpEq64x2 => (0xe7f8, 3), // VCEQG
2732
+ VecIntCmpOp::SCmpHi8x16 => (0xe7fb, 0), // VCHB
2733
+ VecIntCmpOp::SCmpHi16x8 => (0xe7fb, 1), // VCHH
2734
+ VecIntCmpOp::SCmpHi32x4 => (0xe7fb, 2), // VCHG
2735
+ VecIntCmpOp::SCmpHi64x2 => (0xe7fb, 3), // VCHG
2736
+ VecIntCmpOp::UCmpHi8x16 => (0xe7f9, 0), // VCHLB
2737
+ VecIntCmpOp::UCmpHi16x8 => (0xe7f9, 1), // VCHLH
2738
+ VecIntCmpOp::UCmpHi32x4 => (0xe7f9, 2), // VCHLG
2739
+ VecIntCmpOp::UCmpHi64x2 => (0xe7f9, 3), // VCHLG
2740
+ };
2741
+ let m5 = match self {
2742
+ &Inst::VecIntCmp { .. } => 0,
2743
+ &Inst::VecIntCmpS { .. } => 1,
2744
+ _ => unreachable!(),
2745
+ };
2746
+
2747
+ put(sink, &enc_vrr_b(opcode, rd.to_reg(), rn, rm, m4, m5));
2748
+ }
2749
+ &Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
2750
+ let (opcode, m4) = match op {
2751
+ VecFloatCmpOp::CmpEq32x4 => (0xe7e8, 2), // VFCESB
2752
+ VecFloatCmpOp::CmpEq64x2 => (0xe7e8, 3), // VFCEDB
2753
+ VecFloatCmpOp::CmpHi32x4 => (0xe7eb, 2), // VFCHSB
2754
+ VecFloatCmpOp::CmpHi64x2 => (0xe7eb, 3), // VFCHDB
2755
+ VecFloatCmpOp::CmpHiEq32x4 => (0xe7ea, 2), // VFCHESB
2756
+ VecFloatCmpOp::CmpHiEq64x2 => (0xe7ea, 3), // VFCHEDB
2757
+ };
2758
+ let m6 = match self {
2759
+ &Inst::VecFloatCmp { .. } => 0,
2760
+ &Inst::VecFloatCmpS { .. } => 1,
2761
+ _ => unreachable!(),
2762
+ };
2763
+
2764
+ put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, m6));
2765
+ }
2766
+ &Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
2767
+ // Synthetic instruction to compare 128-bit values.
2768
+ // Sets CC 1 if rn > rm, sets a different CC otherwise.
2769
+
2770
+ // Use VECTOR ELEMENT COMPARE to compare the high parts.
2771
+ // Swap the inputs to get:
2772
+ // CC 1 if high(rn) > high(rm)
2773
+ // CC 2 if high(rn) < high(rm)
2774
+ // CC 0 if high(rn) == high(rm)
2775
+ let (opcode, m3) = match self {
2776
+ &Inst::VecInt128SCmpHi { .. } => (0xe7db, 3), // VECG
2777
+ &Inst::VecInt128UCmpHi { .. } => (0xe7d9, 3), // VECLG
2778
+ _ => unreachable!(),
2779
+ };
2780
+ put(sink, &enc_vrr_a(opcode, rm, rn, m3, 0, 0));
2781
+
2782
+ // If CC != 0, we'd done, so jump over the next instruction.
2783
+ let opcode = 0xa74; // BCR
2784
+ put(sink, &enc_ri_c(opcode, 7, 4 + 6));
2785
+
2786
+ // Otherwise, use VECTOR COMPARE HIGH LOGICAL.
2787
+ // Since we already know the high parts are equal, the CC
2788
+ // result will only depend on the low parts:
2789
+ // CC 1 if low(rn) > low(rm)
2790
+ // CC 3 if low(rn) <= low(rm)
2791
+ let inst = Inst::VecIntCmpS {
2792
+ op: VecIntCmpOp::UCmpHi64x2,
2793
+ // N.B.: This is the first write to tmp, and it happens
2794
+ // after all uses of rn and rm. If this were to ever
2795
+ // change, tmp would have to become an early-def.
2796
+ rd: tmp,
2797
+ rn,
2798
+ rm,
2799
+ };
2800
+ inst.emit(sink, emit_info, state);
2801
+ }
2802
+
2803
+ &Inst::VecLoad { rd, ref mem }
2804
+ | &Inst::VecLoadRev { rd, ref mem }
2805
+ | &Inst::VecLoadByte16Rev { rd, ref mem }
2806
+ | &Inst::VecLoadByte32Rev { rd, ref mem }
2807
+ | &Inst::VecLoadByte64Rev { rd, ref mem }
2808
+ | &Inst::VecLoadElt16Rev { rd, ref mem }
2809
+ | &Inst::VecLoadElt32Rev { rd, ref mem }
2810
+ | &Inst::VecLoadElt64Rev { rd, ref mem } => {
2811
+ let mem = mem.clone();
2812
+
2813
+ let (opcode, m3) = match self {
2814
+ &Inst::VecLoad { .. } => (0xe706, 0), // VL
2815
+ &Inst::VecLoadRev { .. } => (0xe606, 4), // VLBRQ
2816
+ &Inst::VecLoadByte16Rev { .. } => (0xe606, 1), // VLBRH
2817
+ &Inst::VecLoadByte32Rev { .. } => (0xe606, 2), // VLBRF
2818
+ &Inst::VecLoadByte64Rev { .. } => (0xe606, 3), // VLBRG
2819
+ &Inst::VecLoadElt16Rev { .. } => (0xe607, 1), // VLERH
2820
+ &Inst::VecLoadElt32Rev { .. } => (0xe607, 2), // VLERF
2821
+ &Inst::VecLoadElt64Rev { .. } => (0xe607, 3), // VLERG
2822
+ _ => unreachable!(),
2823
+ };
2824
+ mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
2825
+ }
2826
+ &Inst::VecStore { rd, ref mem }
2827
+ | &Inst::VecStoreRev { rd, ref mem }
2828
+ | &Inst::VecStoreByte16Rev { rd, ref mem }
2829
+ | &Inst::VecStoreByte32Rev { rd, ref mem }
2830
+ | &Inst::VecStoreByte64Rev { rd, ref mem }
2831
+ | &Inst::VecStoreElt16Rev { rd, ref mem }
2832
+ | &Inst::VecStoreElt32Rev { rd, ref mem }
2833
+ | &Inst::VecStoreElt64Rev { rd, ref mem } => {
2834
+ let mem = mem.clone();
2835
+
2836
+ let (opcode, m3) = match self {
2837
+ &Inst::VecStore { .. } => (0xe70e, 0), // VST
2838
+ &Inst::VecStoreRev { .. } => (0xe60e, 4), // VSTBRQ
2839
+ &Inst::VecStoreByte16Rev { .. } => (0xe60e, 1), // VSTBRH
2840
+ &Inst::VecStoreByte32Rev { .. } => (0xe60e, 2), // VSTBRF
2841
+ &Inst::VecStoreByte64Rev { .. } => (0xe60e, 3), // VSTBRG
2842
+ &Inst::VecStoreElt16Rev { .. } => (0xe60f, 1), // VSTERH
2843
+ &Inst::VecStoreElt32Rev { .. } => (0xe60f, 2), // VSTERF
2844
+ &Inst::VecStoreElt64Rev { .. } => (0xe60f, 3), // VSTERG
2845
+ _ => unreachable!(),
2846
+ };
2847
+ mem_vrx_emit(rd, &mem, opcode, m3, true, sink, emit_info, state);
2848
+ }
2849
+ &Inst::VecLoadReplicate { size, rd, ref mem }
2850
+ | &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
2851
+ let mem = mem.clone();
2852
+
2853
+ let (opcode, m3) = match (self, size) {
2854
+ (&Inst::VecLoadReplicate { .. }, 8) => (0xe705, 0), // VLREPB
2855
+ (&Inst::VecLoadReplicate { .. }, 16) => (0xe705, 1), // VLREPH
2856
+ (&Inst::VecLoadReplicate { .. }, 32) => (0xe705, 2), // VLREPF
2857
+ (&Inst::VecLoadReplicate { .. }, 64) => (0xe705, 3), // VLREPG
2858
+ (&Inst::VecLoadReplicateRev { .. }, 16) => (0xe605, 1), // VLREPBRH
2859
+ (&Inst::VecLoadReplicateRev { .. }, 32) => (0xe605, 2), // VLREPBRF
2860
+ (&Inst::VecLoadReplicateRev { .. }, 64) => (0xe605, 3), // VLREPBRG
2861
+ _ => unreachable!(),
2862
+ };
2863
+ mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
2864
+ }
2865
+
2866
+ &Inst::VecMov { rd, rn } => {
2867
+ let opcode = 0xe756; // VLR
2868
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2869
+ }
2870
+ &Inst::VecCMov { rd, cond, ri, rm } => {
2871
+ debug_assert_eq!(rd.to_reg(), ri);
2872
+
2873
+ let opcode = 0xa74; // BCR
2874
+ put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2875
+ let opcode = 0xe756; // VLR
2876
+ put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2877
+ }
2878
+ &Inst::MovToVec128 { rd, rn, rm } => {
2879
+ let opcode = 0xe762; // VLVGP
2880
+ put(sink, &enc_vrr_f(opcode, rd.to_reg(), rn, rm));
2881
+ }
2882
+ &Inst::VecLoadConst { rd, const_data } => {
2883
+ let opcode = 0xa75; // BRAS
2884
+ let reg = writable_spilltmp_reg().to_reg();
2885
+ put(sink, &enc_ri_b(opcode, reg, 20));
2886
+ for i in const_data.to_be_bytes().iter() {
2887
+ sink.put1(*i);
2888
+ }
2889
+ let inst = Inst::VecLoad {
2890
+ rd,
2891
+ mem: MemArg::reg(reg, MemFlags::trusted()),
2892
+ };
2893
+ inst.emit(sink, emit_info, state);
2894
+ }
2895
+ &Inst::VecLoadConstReplicate {
2896
+ size,
2897
+ rd,
2898
+ const_data,
2899
+ } => {
2900
+ let opcode = 0xa75; // BRAS
2901
+ let reg = writable_spilltmp_reg().to_reg();
2902
+ put(sink, &enc_ri_b(opcode, reg, (4 + size / 8) as i32));
2903
+ for i in 0..size / 8 {
2904
+ sink.put1((const_data >> (size - 8 - 8 * i)) as u8);
2905
+ }
2906
+ let inst = Inst::VecLoadReplicate {
2907
+ size,
2908
+ rd,
2909
+ mem: MemArg::reg(reg, MemFlags::trusted()),
2910
+ };
2911
+ inst.emit(sink, emit_info, state);
2912
+ }
2913
+ &Inst::VecImmByteMask { rd, mask } => {
2914
+ let opcode = 0xe744; // VGBM
2915
+ put(sink, &enc_vri_a(opcode, rd.to_reg(), mask, 0));
2916
+ }
2917
+ &Inst::VecImmBitMask {
2918
+ size,
2919
+ rd,
2920
+ start_bit,
2921
+ end_bit,
2922
+ } => {
2923
+ let (opcode, m4) = match size {
2924
+ 8 => (0xe746, 0), // VGMB
2925
+ 16 => (0xe746, 1), // VGMH
2926
+ 32 => (0xe746, 2), // VGMF
2927
+ 64 => (0xe746, 3), // VGMG
2928
+ _ => unreachable!(),
2929
+ };
2930
+ put(
2931
+ sink,
2932
+ &enc_vri_b(opcode, rd.to_reg(), start_bit, end_bit, m4),
2933
+ );
2934
+ }
2935
+ &Inst::VecImmReplicate { size, rd, imm } => {
2936
+ let (opcode, m3) = match size {
2937
+ 8 => (0xe745, 0), // VREPIB
2938
+ 16 => (0xe745, 1), // VREPIH
2939
+ 32 => (0xe745, 2), // VREPIF
2940
+ 64 => (0xe745, 3), // VREPIG
2941
+ _ => unreachable!(),
2942
+ };
2943
+ put(sink, &enc_vri_a(opcode, rd.to_reg(), imm as u16, m3));
2944
+ }
2945
+ &Inst::VecLoadLane {
2946
+ size,
2947
+ rd,
2948
+ ri,
2949
+ ref mem,
2950
+ lane_imm,
2951
+ }
2952
+ | &Inst::VecLoadLaneRev {
2953
+ size,
2954
+ rd,
2955
+ ri,
2956
+ ref mem,
2957
+ lane_imm,
2958
+ } => {
2959
+ debug_assert_eq!(rd.to_reg(), ri);
2960
+ let mem = mem.clone();
2961
+
2962
+ let opcode_vrx = match (self, size) {
2963
+ (&Inst::VecLoadLane { .. }, 8) => 0xe700, // VLEB
2964
+ (&Inst::VecLoadLane { .. }, 16) => 0xe701, // VLEH
2965
+ (&Inst::VecLoadLane { .. }, 32) => 0xe703, // VLEF
2966
+ (&Inst::VecLoadLane { .. }, 64) => 0xe702, // VLEG
2967
+ (&Inst::VecLoadLaneRev { .. }, 16) => 0xe601, // VLEBRH
2968
+ (&Inst::VecLoadLaneRev { .. }, 32) => 0xe603, // VLEBRF
2969
+ (&Inst::VecLoadLaneRev { .. }, 64) => 0xe602, // VLEBRG
2970
+ _ => unreachable!(),
2971
+ };
2972
+
2973
+ let rd = rd.to_reg();
2974
+ mem_vrx_emit(
2975
+ rd,
2976
+ &mem,
2977
+ opcode_vrx,
2978
+ lane_imm.into(),
2979
+ true,
2980
+ sink,
2981
+ emit_info,
2982
+ state,
2983
+ );
2984
+ }
2985
+ &Inst::VecLoadLaneUndef {
2986
+ size,
2987
+ rd,
2988
+ ref mem,
2989
+ lane_imm,
2990
+ }
2991
+ | &Inst::VecLoadLaneRevUndef {
2992
+ size,
2993
+ rd,
2994
+ ref mem,
2995
+ lane_imm,
2996
+ } => {
2997
+ let mem = mem.clone();
2998
+
2999
+ let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
3000
+ (&Inst::VecLoadLaneUndef { .. }, 8) => (0xe700, None, None), // VLEB
3001
+ (&Inst::VecLoadLaneUndef { .. }, 16) => (0xe701, None, None), // VLEH
3002
+ (&Inst::VecLoadLaneUndef { .. }, 32) => (0xe703, Some(0x78), Some(0xed64)), // VLEF, LE(Y)
3003
+ (&Inst::VecLoadLaneUndef { .. }, 64) => (0xe702, Some(0x68), Some(0xed65)), // VLEG, LD(Y)
3004
+ (&Inst::VecLoadLaneRevUndef { .. }, 16) => (0xe601, None, None), // VLEBRH
3005
+ (&Inst::VecLoadLaneRevUndef { .. }, 32) => (0xe603, None, None), // VLEBRF
3006
+ (&Inst::VecLoadLaneRevUndef { .. }, 64) => (0xe602, None, None), // VLEBRG
3007
+ _ => unreachable!(),
3008
+ };
3009
+
3010
+ let rd = rd.to_reg();
3011
+ if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
3012
+ mem_emit(
3013
+ rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
3014
+ );
3015
+ } else {
3016
+ mem_vrx_emit(
3017
+ rd,
3018
+ &mem,
3019
+ opcode_vrx,
3020
+ lane_imm.into(),
3021
+ true,
3022
+ sink,
3023
+ emit_info,
3024
+ state,
3025
+ );
3026
+ }
3027
+ }
3028
+ &Inst::VecStoreLane {
3029
+ size,
3030
+ rd,
3031
+ ref mem,
3032
+ lane_imm,
3033
+ }
3034
+ | &Inst::VecStoreLaneRev {
3035
+ size,
3036
+ rd,
3037
+ ref mem,
3038
+ lane_imm,
3039
+ } => {
3040
+ let mem = mem.clone();
3041
+
3042
+ let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
3043
+ (&Inst::VecStoreLane { .. }, 8) => (0xe708, None, None), // VSTEB
3044
+ (&Inst::VecStoreLane { .. }, 16) => (0xe709, None, None), // VSTEH
3045
+ (&Inst::VecStoreLane { .. }, 32) => (0xe70b, Some(0x70), Some(0xed66)), // VSTEF, STE(Y)
3046
+ (&Inst::VecStoreLane { .. }, 64) => (0xe70a, Some(0x60), Some(0xed67)), // VSTEG, STD(Y)
3047
+ (&Inst::VecStoreLaneRev { .. }, 16) => (0xe609, None, None), // VSTEBRH
3048
+ (&Inst::VecStoreLaneRev { .. }, 32) => (0xe60b, None, None), // VSTEBRF
3049
+ (&Inst::VecStoreLaneRev { .. }, 64) => (0xe60a, None, None), // VSTEBRG
3050
+ _ => unreachable!(),
3051
+ };
3052
+
3053
+ if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
3054
+ mem_emit(
3055
+ rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
3056
+ );
3057
+ } else {
3058
+ mem_vrx_emit(
3059
+ rd,
3060
+ &mem,
3061
+ opcode_vrx,
3062
+ lane_imm.into(),
3063
+ true,
3064
+ sink,
3065
+ emit_info,
3066
+ state,
3067
+ );
3068
+ }
3069
+ }
3070
+ &Inst::VecInsertLane {
3071
+ size,
3072
+ rd,
3073
+ ri,
3074
+ rn,
3075
+ lane_imm,
3076
+ lane_reg,
3077
+ } => {
3078
+ debug_assert_eq!(rd.to_reg(), ri);
3079
+
3080
+ let (opcode_vrs, m4) = match size {
3081
+ 8 => (0xe722, 0), // VLVGB
3082
+ 16 => (0xe722, 1), // VLVGH
3083
+ 32 => (0xe722, 2), // VLVGF
3084
+ 64 => (0xe722, 3), // VLVGG
3085
+ _ => unreachable!(),
3086
+ };
3087
+ put(
3088
+ sink,
3089
+ &enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3090
+ );
3091
+ }
3092
+ &Inst::VecInsertLaneUndef {
3093
+ size,
3094
+ rd,
3095
+ rn,
3096
+ lane_imm,
3097
+ lane_reg,
3098
+ } => {
3099
+ let (opcode_vrs, m4, opcode_rre) = match size {
3100
+ 8 => (0xe722, 0, None), // VLVGB
3101
+ 16 => (0xe722, 1, None), // VLVGH
3102
+ 32 => (0xe722, 2, None), // VLVGF
3103
+ 64 => (0xe722, 3, Some(0xb3c1)), // VLVGG, LDGR
3104
+ _ => unreachable!(),
3105
+ };
3106
+ if opcode_rre.is_some()
3107
+ && lane_imm == 0
3108
+ && lane_reg == zero_reg()
3109
+ && is_fpr(rd.to_reg())
3110
+ {
3111
+ put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
3112
+ } else {
3113
+ put(
3114
+ sink,
3115
+ &enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3116
+ );
3117
+ }
3118
+ }
3119
+ &Inst::VecExtractLane {
3120
+ size,
3121
+ rd,
3122
+ rn,
3123
+ lane_imm,
3124
+ lane_reg,
3125
+ } => {
3126
+ let (opcode_vrs, m4, opcode_rre) = match size {
3127
+ 8 => (0xe721, 0, None), // VLGVB
3128
+ 16 => (0xe721, 1, None), // VLGVH
3129
+ 32 => (0xe721, 2, None), // VLGVF
3130
+ 64 => (0xe721, 3, Some(0xb3cd)), // VLGVG, LGDR
3131
+ _ => unreachable!(),
3132
+ };
3133
+ if opcode_rre.is_some() && lane_imm == 0 && lane_reg == zero_reg() && is_fpr(rn) {
3134
+ put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
3135
+ } else {
3136
+ put(
3137
+ sink,
3138
+ &enc_vrs_c(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3139
+ );
3140
+ }
3141
+ }
3142
+ &Inst::VecInsertLaneImm {
3143
+ size,
3144
+ rd,
3145
+ ri,
3146
+ imm,
3147
+ lane_imm,
3148
+ } => {
3149
+ debug_assert_eq!(rd.to_reg(), ri);
3150
+
3151
+ let opcode = match size {
3152
+ 8 => 0xe740, // VLEIB
3153
+ 16 => 0xe741, // LEIVH
3154
+ 32 => 0xe743, // VLEIF
3155
+ 64 => 0xe742, // VLEIG
3156
+ _ => unreachable!(),
3157
+ };
3158
+ put(
3159
+ sink,
3160
+ &enc_vri_a(opcode, rd.to_reg(), imm as u16, lane_imm.into()),
3161
+ );
3162
+ }
3163
+ &Inst::VecReplicateLane {
3164
+ size,
3165
+ rd,
3166
+ rn,
3167
+ lane_imm,
3168
+ } => {
3169
+ let (opcode, m4) = match size {
3170
+ 8 => (0xe74d, 0), // VREPB
3171
+ 16 => (0xe74d, 1), // VREPH
3172
+ 32 => (0xe74d, 2), // VREPF
3173
+ 64 => (0xe74d, 3), // VREPG
3174
+ _ => unreachable!(),
3175
+ };
3176
+ put(
3177
+ sink,
3178
+ &enc_vri_c(opcode, rd.to_reg(), lane_imm.into(), rn, m4),
3179
+ );
3180
+ }
3181
+
3182
+ &Inst::AllocateArgs { size } => {
3183
+ let inst = if let Ok(size) = i16::try_from(size) {
3184
+ Inst::AluRSImm16 {
3185
+ alu_op: ALUOp::Add64,
3186
+ rd: writable_stack_reg(),
3187
+ ri: stack_reg(),
3188
+ imm: -size,
3189
+ }
3190
+ } else {
3191
+ Inst::AluRUImm32 {
3192
+ alu_op: ALUOp::SubLogical64,
3193
+ rd: writable_stack_reg(),
3194
+ ri: stack_reg(),
3195
+ imm: size,
3196
+ }
3197
+ };
3198
+ inst.emit(sink, emit_info, state);
3199
+ state.nominal_sp_offset += size;
3200
+ }
3201
+ &Inst::Call { link, ref info } => {
3202
+ let opcode = 0xc05; // BRASL
3203
+
3204
+ // Add relocation for target function. This has to be done *before*
3205
+ // the S390xTlsGdCall relocation if any, to ensure linker relaxation
3206
+ // works correctly.
3207
+ let offset = sink.cur_offset() + 2;
3208
+ sink.add_reloc_at_offset(offset, Reloc::S390xPLTRel32Dbl, &info.dest, 2);
3209
+
3210
+ if let Some(s) = state.take_stack_map() {
3211
+ let offset = sink.cur_offset() + 6;
3212
+ sink.push_user_stack_map(state, offset, s);
3213
+ }
3214
+
3215
+ put(sink, &enc_ril_b(opcode, link.to_reg(), 0));
3216
+ sink.add_call_site();
3217
+
3218
+ state.nominal_sp_offset -= info.callee_pop_size;
3219
+ }
3220
+ &Inst::CallInd { link, ref info } => {
3221
+ if let Some(s) = state.take_stack_map() {
3222
+ let offset = sink.cur_offset() + 2;
3223
+ sink.push_user_stack_map(state, offset, s);
3224
+ }
3225
+
3226
+ let opcode = 0x0d; // BASR
3227
+ put(sink, &enc_rr(opcode, link.to_reg(), info.dest));
3228
+ sink.add_call_site();
3229
+
3230
+ state.nominal_sp_offset -= info.callee_pop_size;
3231
+ }
3232
+ &Inst::ReturnCall { ref info } => {
3233
+ for inst in S390xMachineDeps::gen_tail_epilogue(
3234
+ state.frame_layout(),
3235
+ info.callee_pop_size,
3236
+ None,
3237
+ ) {
3238
+ inst.emit(sink, emit_info, state);
3239
+ }
3240
+
3241
+ let opcode = 0xc04; // BCRL
3242
+ let offset = sink.cur_offset() + 2;
3243
+ sink.add_reloc_at_offset(offset, Reloc::S390xPLTRel32Dbl, &info.dest, 2);
3244
+ put(sink, &enc_ril_c(opcode, 15, 0));
3245
+ sink.add_call_site();
3246
+ }
3247
+ &Inst::ReturnCallInd { ref info } => {
3248
+ let mut rn = info.dest;
3249
+ for inst in S390xMachineDeps::gen_tail_epilogue(
3250
+ state.frame_layout(),
3251
+ info.callee_pop_size,
3252
+ Some(&mut rn),
3253
+ ) {
3254
+ inst.emit(sink, emit_info, state);
3255
+ }
3256
+
3257
+ let opcode = 0x07; // BCR
3258
+ put(sink, &enc_rr(opcode, gpr(15), rn));
3259
+ sink.add_call_site();
3260
+ }
3261
+ &Inst::ElfTlsGetOffset { ref symbol, .. } => {
3262
+ let opcode = 0xc05; // BRASL
3263
+
3264
+ // Add relocation for target function. This has to be done
3265
+ // *before* the S390xTlsGdCall, to ensure linker relaxation
3266
+ // works correctly.
3267
+ let dest = ExternalName::LibCall(LibCall::ElfTlsGetOffset);
3268
+ let offset = sink.cur_offset() + 2;
3269
+ sink.add_reloc_at_offset(offset, Reloc::S390xPLTRel32Dbl, &dest, 2);
3270
+ match &**symbol {
3271
+ SymbolReloc::TlsGd { name } => sink.add_reloc(Reloc::S390xTlsGdCall, name, 0),
3272
+ _ => unreachable!(),
3273
+ }
3274
+
3275
+ put(sink, &enc_ril_b(opcode, gpr(14), 0));
3276
+ sink.add_call_site();
3277
+ }
3278
+ &Inst::Args { .. } => {}
3279
+ &Inst::Rets { .. } => {}
3280
+ &Inst::Ret { link } => {
3281
+ let opcode = 0x07; // BCR
3282
+ put(sink, &enc_rr(opcode, gpr(15), link));
3283
+ }
3284
+ &Inst::Jump { dest } => {
3285
+ let off = sink.cur_offset();
3286
+ // Indicate that the jump uses a label, if so, so that a fixup can occur later.
3287
+ sink.use_label_at_offset(off, dest, LabelUse::BranchRIL);
3288
+ sink.add_uncond_branch(off, off + 6, dest);
3289
+ // Emit the jump itself.
3290
+ let opcode = 0xc04; // BCRL
3291
+ put(sink, &enc_ril_c(opcode, 15, 0));
3292
+ }
3293
+ &Inst::IndirectBr { rn, .. } => {
3294
+ let opcode = 0x07; // BCR
3295
+ put(sink, &enc_rr(opcode, gpr(15), rn));
3296
+ }
3297
+ &Inst::CondBr {
3298
+ taken,
3299
+ not_taken,
3300
+ cond,
3301
+ } => {
3302
+ let opcode = 0xc04; // BCRL
3303
+
3304
+ // Conditional part first.
3305
+ let cond_off = sink.cur_offset();
3306
+ sink.use_label_at_offset(cond_off, taken, LabelUse::BranchRIL);
3307
+ let inverted = &enc_ril_c(opcode, cond.invert().bits(), 0);
3308
+ sink.add_cond_branch(cond_off, cond_off + 6, taken, inverted);
3309
+ put(sink, &enc_ril_c(opcode, cond.bits(), 0));
3310
+
3311
+ // Unconditional part next.
3312
+ let uncond_off = sink.cur_offset();
3313
+ sink.use_label_at_offset(uncond_off, not_taken, LabelUse::BranchRIL);
3314
+ sink.add_uncond_branch(uncond_off, uncond_off + 6, not_taken);
3315
+ put(sink, &enc_ril_c(opcode, 15, 0));
3316
+ }
3317
+ &Inst::OneWayCondBr { target, cond } => {
3318
+ let opcode = 0xc04; // BCRL
3319
+ sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
3320
+ put(sink, &enc_ril_c(opcode, cond.bits(), 0));
3321
+ }
3322
+ &Inst::Nop0 => {}
3323
+ &Inst::Nop2 => {
3324
+ put(sink, &enc_e(0x0707));
3325
+ }
3326
+ &Inst::Debugtrap => {
3327
+ put(sink, &enc_e(0x0001));
3328
+ }
3329
+ &Inst::Trap { trap_code } => {
3330
+ put_with_trap(sink, &enc_e(0x0000), trap_code);
3331
+ }
3332
+ &Inst::TrapIf { cond, trap_code } => {
3333
+ // We implement a TrapIf as a conditional branch into the middle
3334
+ // of the branch (BRCL) instruction itself - those middle two bytes
3335
+ // are zero, which matches the trap instruction itself.
3336
+ let opcode = 0xc04; // BCRL
3337
+ let enc = &enc_ril_c(opcode, cond.bits(), 2);
3338
+ debug_assert!(enc.len() == 6 && enc[2] == 0 && enc[3] == 0);
3339
+ // The trap must be placed on the last byte of the embedded trap
3340
+ // instruction, so we need to emit the encoding in two parts.
3341
+ put_with_trap(sink, &enc[0..4], trap_code);
3342
+ put(sink, &enc[4..6]);
3343
+ }
3344
+ &Inst::JTSequence { ridx, ref targets } => {
3345
+ let table_label = sink.get_label();
3346
+
3347
+ // This sequence is *one* instruction in the vcode, and is expanded only here at
3348
+ // emission time, because we cannot allow the regalloc to insert spills/reloads in
3349
+ // the middle; we depend on hardcoded PC-rel addressing below.
3350
+
3351
+ // Set temp register to address of jump table.
3352
+ let rtmp = writable_spilltmp_reg();
3353
+ let inst = Inst::LoadAddr {
3354
+ rd: rtmp,
3355
+ mem: MemArg::Label {
3356
+ target: table_label,
3357
+ },
3358
+ };
3359
+ inst.emit(sink, emit_info, state);
3360
+
3361
+ // Set temp to target address by adding the value of the jump table entry.
3362
+ let inst = Inst::AluRX {
3363
+ alu_op: ALUOp::Add64Ext32,
3364
+ rd: rtmp,
3365
+ ri: rtmp.to_reg(),
3366
+ mem: MemArg::reg_plus_reg(rtmp.to_reg(), ridx, MemFlags::trusted()),
3367
+ };
3368
+ inst.emit(sink, emit_info, state);
3369
+
3370
+ // Branch to computed address. (`targets` here is only used for successor queries
3371
+ // and is not needed for emission.)
3372
+ let inst = Inst::IndirectBr {
3373
+ rn: rtmp.to_reg(),
3374
+ targets: vec![],
3375
+ };
3376
+ inst.emit(sink, emit_info, state);
3377
+
3378
+ // Emit jump table (table of 32-bit offsets).
3379
+ sink.bind_label(table_label, &mut state.ctrl_plane);
3380
+ let jt_off = sink.cur_offset();
3381
+ for &target in targets.iter() {
3382
+ let word_off = sink.cur_offset();
3383
+ let off_into_table = word_off - jt_off;
3384
+ sink.use_label_at_offset(word_off, target, LabelUse::PCRel32);
3385
+ sink.put4(off_into_table.swap_bytes());
3386
+ }
3387
+
3388
+ // Lowering produces an EmitIsland before using a JTSequence, so we can safely
3389
+ // disable the worst-case-size check in this case.
3390
+ start_off = sink.cur_offset();
3391
+ }
3392
+
3393
+ Inst::StackProbeLoop {
3394
+ probe_count,
3395
+ guard_size,
3396
+ } => {
3397
+ // Emit the loop start label
3398
+ let loop_start = sink.get_label();
3399
+ sink.bind_label(loop_start, state.ctrl_plane_mut());
3400
+
3401
+ // aghi %r15, -GUARD_SIZE
3402
+ let inst = Inst::AluRSImm16 {
3403
+ alu_op: ALUOp::Add64,
3404
+ rd: writable_stack_reg(),
3405
+ ri: stack_reg(),
3406
+ imm: -guard_size,
3407
+ };
3408
+ inst.emit(sink, emit_info, state);
3409
+
3410
+ // mvi 0(%r15), 0
3411
+ let inst = Inst::StoreImm8 {
3412
+ imm: 0,
3413
+ mem: MemArg::reg(stack_reg(), MemFlags::trusted()),
3414
+ };
3415
+ inst.emit(sink, emit_info, state);
3416
+
3417
+ // brct PROBE_COUNT, LOOP_START
3418
+ let opcode = 0xa76; // BRCT
3419
+ sink.use_label_at_offset(sink.cur_offset(), loop_start, LabelUse::BranchRI);
3420
+ put(sink, &enc_ri_b(opcode, probe_count.to_reg(), 0));
3421
+ }
3422
+
3423
+ &Inst::Unwind { ref inst } => {
3424
+ sink.add_unwind(inst.clone());
3425
+ }
3426
+
3427
+ &Inst::DummyUse { .. } => {}
3428
+ }
3429
+
3430
+ let end_off = sink.cur_offset();
3431
+ debug_assert!((end_off - start_off) <= Inst::worst_case_size());
3432
+
3433
+ state.clear_post_insn();
3434
+ }
3435
+ }