wasmtime 9.0.4 → 10.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (1933) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +184 -101
  3. data/ext/Cargo.toml +6 -6
  4. data/ext/build.rs +2 -2
  5. data/ext/cargo-vendor/cranelift-bforest-0.97.1/.cargo-checksum.json +1 -0
  6. data/ext/cargo-vendor/cranelift-bforest-0.97.1/Cargo.toml +31 -0
  7. data/ext/cargo-vendor/cranelift-codegen-0.97.1/.cargo-checksum.json +1 -0
  8. data/ext/cargo-vendor/cranelift-codegen-0.97.1/Cargo.toml +158 -0
  9. data/ext/cargo-vendor/cranelift-codegen-0.97.1/benches/x64-evex-encoding.rs +52 -0
  10. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/trapcode.rs +144 -0
  11. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/abi.rs +1294 -0
  12. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit.rs +3684 -0
  13. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit_tests.rs +7895 -0
  14. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/imms.rs +1210 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/mod.rs +2966 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst.isle +4037 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower/isle.rs +816 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower.isle +2906 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/mod.rs +238 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/mod.rs +424 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/abi.rs +825 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/args.rs +1812 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/emit.rs +3008 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/emit_tests.rs +2338 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/encode.rs +262 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/imms.rs +250 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/mod.rs +1963 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/regs.rs +223 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/unwind/systemv.rs +174 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/vector.rs +669 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst.isle +2915 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst_vector.isle +760 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower/isle.rs +553 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower.isle +1409 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/mod.rs +216 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/abi.rs +957 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst/emit.rs +3707 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst/emit_tests.rs +13409 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst/mod.rs +3426 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst.isle +5046 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower.isle +3991 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/mod.rs +213 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/abi.rs +985 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/evex.rs +749 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/rex.rs +588 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/vex.rs +492 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/args.rs +2193 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit.rs +4090 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit_tests.rs +5674 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/mod.rs +2667 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst.isle +5104 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower/isle.rs +1148 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.isle +4481 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.rs +328 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/mod.rs +251 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isle_prelude.rs +862 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/abi.rs +2455 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/buffer.rs +2277 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/compile.rs +92 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/isle.rs +827 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/lower.rs +1388 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/mod.rs +549 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/reg.rs +537 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/vcode.rs +1580 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude.isle +578 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude_lower.isle +1012 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/settings.rs +600 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/verifier/mod.rs +1884 -0
  69. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/.cargo-checksum.json +1 -0
  70. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/Cargo.toml +23 -0
  71. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/x86.rs +444 -0
  72. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/settings.rs +348 -0
  73. data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/.cargo-checksum.json +1 -0
  74. data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/Cargo.toml +22 -0
  75. data/ext/cargo-vendor/cranelift-control-0.97.1/.cargo-checksum.json +1 -0
  76. data/ext/cargo-vendor/cranelift-control-0.97.1/Cargo.toml +30 -0
  77. data/ext/cargo-vendor/cranelift-control-0.97.1/src/chaos.rs +125 -0
  78. data/ext/cargo-vendor/cranelift-control-0.97.1/src/lib.rs +45 -0
  79. data/ext/cargo-vendor/cranelift-control-0.97.1/src/zero_sized.rs +53 -0
  80. data/ext/cargo-vendor/cranelift-entity-0.97.1/.cargo-checksum.json +1 -0
  81. data/ext/cargo-vendor/cranelift-entity-0.97.1/Cargo.toml +35 -0
  82. data/ext/cargo-vendor/cranelift-entity-0.97.1/src/list.rs +955 -0
  83. data/ext/cargo-vendor/cranelift-frontend-0.97.1/.cargo-checksum.json +1 -0
  84. data/ext/cargo-vendor/cranelift-frontend-0.97.1/Cargo.toml +53 -0
  85. data/ext/cargo-vendor/cranelift-isle-0.97.1/.cargo-checksum.json +1 -0
  86. data/ext/cargo-vendor/cranelift-isle-0.97.1/Cargo.toml +37 -0
  87. data/ext/cargo-vendor/cranelift-native-0.97.1/.cargo-checksum.json +1 -0
  88. data/ext/cargo-vendor/cranelift-native-0.97.1/Cargo.toml +38 -0
  89. data/ext/cargo-vendor/cranelift-native-0.97.1/src/lib.rs +215 -0
  90. data/ext/cargo-vendor/cranelift-wasm-0.97.1/.cargo-checksum.json +1 -0
  91. data/ext/cargo-vendor/cranelift-wasm-0.97.1/Cargo.toml +85 -0
  92. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/code_translator.rs +3538 -0
  93. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/dummy.rs +924 -0
  94. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/spec.rs +834 -0
  95. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/func_translator.rs +440 -0
  96. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/sections_translator.rs +417 -0
  97. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/translation_utils.rs +99 -0
  98. data/ext/cargo-vendor/encoding_rs-0.8.32/.cargo-checksum.json +1 -0
  99. data/ext/cargo-vendor/encoding_rs-0.8.32/CONTRIBUTING.md +48 -0
  100. data/ext/cargo-vendor/encoding_rs-0.8.32/COPYRIGHT +17 -0
  101. data/ext/cargo-vendor/encoding_rs-0.8.32/Cargo.toml +84 -0
  102. data/ext/cargo-vendor/encoding_rs-0.8.32/Ideas.md +106 -0
  103. data/ext/cargo-vendor/encoding_rs-0.8.32/LICENSE-APACHE +202 -0
  104. data/ext/cargo-vendor/encoding_rs-0.8.32/LICENSE-MIT +25 -0
  105. data/ext/cargo-vendor/encoding_rs-0.8.32/LICENSE-WHATWG +26 -0
  106. data/ext/cargo-vendor/encoding_rs-0.8.32/README.md +827 -0
  107. data/ext/cargo-vendor/encoding_rs-0.8.32/ci/miri.sh +14 -0
  108. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/Big5.txt +16 -0
  109. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/EUC-JP.txt +12 -0
  110. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/EUC-KR.txt +10 -0
  111. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/GBK.txt +16 -0
  112. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/IBM866.txt +8 -0
  113. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-2022-JP.txt +10 -0
  114. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-10.txt +8 -0
  115. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-13.txt +8 -0
  116. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-14.txt +8 -0
  117. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-15.txt +7 -0
  118. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-16.txt +8 -0
  119. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-2.txt +6 -0
  120. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-3.txt +6 -0
  121. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-4.txt +6 -0
  122. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-5.txt +6 -0
  123. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-6.txt +7 -0
  124. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-7.txt +11 -0
  125. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-8-I.txt +9 -0
  126. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/ISO-8859-8.txt +9 -0
  127. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/KOI8-R.txt +6 -0
  128. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/KOI8-U.txt +6 -0
  129. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/Shift_JIS.txt +8 -0
  130. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/UTF-16BE.txt +8 -0
  131. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/UTF-16LE.txt +8 -0
  132. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/UTF-8.txt +5 -0
  133. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/gb18030.txt +9 -0
  134. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/macintosh.txt +7 -0
  135. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/replacement.txt +10 -0
  136. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1250.txt +6 -0
  137. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1251.txt +6 -0
  138. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1252.txt +7 -0
  139. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1253.txt +8 -0
  140. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1254.txt +7 -0
  141. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1255.txt +8 -0
  142. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1256.txt +6 -0
  143. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1257.txt +7 -0
  144. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-1258.txt +11 -0
  145. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/windows-874.txt +7 -0
  146. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/x-mac-cyrillic.txt +6 -0
  147. data/ext/cargo-vendor/encoding_rs-0.8.32/doc/x-user-defined.txt +6 -0
  148. data/ext/cargo-vendor/encoding_rs-0.8.32/generate-encoding-data.py +2008 -0
  149. data/ext/cargo-vendor/encoding_rs-0.8.32/rustfmt.toml +1 -0
  150. data/ext/cargo-vendor/encoding_rs-0.8.32/src/ascii.rs +1546 -0
  151. data/ext/cargo-vendor/encoding_rs-0.8.32/src/big5.rs +427 -0
  152. data/ext/cargo-vendor/encoding_rs-0.8.32/src/data.rs +114378 -0
  153. data/ext/cargo-vendor/encoding_rs-0.8.32/src/euc_jp.rs +469 -0
  154. data/ext/cargo-vendor/encoding_rs-0.8.32/src/euc_kr.rs +442 -0
  155. data/ext/cargo-vendor/encoding_rs-0.8.32/src/gb18030.rs +767 -0
  156. data/ext/cargo-vendor/encoding_rs-0.8.32/src/handles.rs +1969 -0
  157. data/ext/cargo-vendor/encoding_rs-0.8.32/src/iso_2022_jp.rs +1068 -0
  158. data/ext/cargo-vendor/encoding_rs-0.8.32/src/lib.rs +6133 -0
  159. data/ext/cargo-vendor/encoding_rs-0.8.32/src/macros.rs +1622 -0
  160. data/ext/cargo-vendor/encoding_rs-0.8.32/src/mem.rs +3354 -0
  161. data/ext/cargo-vendor/encoding_rs-0.8.32/src/replacement.rs +104 -0
  162. data/ext/cargo-vendor/encoding_rs-0.8.32/src/shift_jis.rs +426 -0
  163. data/ext/cargo-vendor/encoding_rs-0.8.32/src/simd_funcs.rs +453 -0
  164. data/ext/cargo-vendor/encoding_rs-0.8.32/src/single_byte.rs +714 -0
  165. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/big5_in.txt +19787 -0
  166. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/big5_in_ref.txt +19787 -0
  167. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/big5_out.txt +14601 -0
  168. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/big5_out_ref.txt +14601 -0
  169. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/euc_kr_in.txt +23945 -0
  170. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/euc_kr_in_ref.txt +23945 -0
  171. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/euc_kr_out.txt +17053 -0
  172. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/euc_kr_out_ref.txt +17053 -0
  173. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/gb18030_in.txt +23945 -0
  174. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/gb18030_in_ref.txt +23945 -0
  175. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/gb18030_out.txt +23944 -0
  176. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/gb18030_out_ref.txt +23944 -0
  177. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/iso_2022_jp_in.txt +8841 -0
  178. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/iso_2022_jp_in_ref.txt +8841 -0
  179. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/iso_2022_jp_out.txt +7404 -0
  180. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/iso_2022_jp_out_ref.txt +7404 -0
  181. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/jis0208_in.txt +8841 -0
  182. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/jis0208_in_ref.txt +8841 -0
  183. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/jis0208_out.txt +7341 -0
  184. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/jis0208_out_ref.txt +7341 -0
  185. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/jis0212_in.txt +8841 -0
  186. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/jis0212_in_ref.txt +8841 -0
  187. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/shift_jis_in.txt +11285 -0
  188. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/shift_jis_in_ref.txt +11285 -0
  189. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/shift_jis_out.txt +7355 -0
  190. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_data/shift_jis_out_ref.txt +7355 -0
  191. data/ext/cargo-vendor/encoding_rs-0.8.32/src/test_labels_names.rs +242 -0
  192. data/ext/cargo-vendor/encoding_rs-0.8.32/src/testing.rs +262 -0
  193. data/ext/cargo-vendor/encoding_rs-0.8.32/src/utf_16.rs +472 -0
  194. data/ext/cargo-vendor/encoding_rs-0.8.32/src/utf_8.rs +1629 -0
  195. data/ext/cargo-vendor/encoding_rs-0.8.32/src/variant.rs +400 -0
  196. data/ext/cargo-vendor/encoding_rs-0.8.32/src/x_user_defined.rs +249 -0
  197. data/ext/cargo-vendor/equivalent-1.0.1/.cargo-checksum.json +1 -0
  198. data/ext/cargo-vendor/equivalent-1.0.1/Cargo.toml +27 -0
  199. data/ext/cargo-vendor/equivalent-1.0.1/LICENSE-APACHE +201 -0
  200. data/ext/cargo-vendor/equivalent-1.0.1/LICENSE-MIT +25 -0
  201. data/ext/cargo-vendor/equivalent-1.0.1/README.md +25 -0
  202. data/ext/cargo-vendor/equivalent-1.0.1/src/lib.rs +113 -0
  203. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/.cargo-checksum.json +1 -0
  204. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/Cargo.toml +36 -0
  205. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/run-tests.sh +12 -0
  206. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/src/lib.rs +200 -0
  207. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/tests/test.rs +323 -0
  208. data/ext/cargo-vendor/hashbrown-0.14.0/.cargo-checksum.json +1 -0
  209. data/ext/cargo-vendor/hashbrown-0.14.0/CHANGELOG.md +475 -0
  210. data/ext/cargo-vendor/hashbrown-0.14.0/Cargo.toml +131 -0
  211. data/ext/cargo-vendor/hashbrown-0.14.0/LICENSE-APACHE +201 -0
  212. data/ext/cargo-vendor/hashbrown-0.14.0/LICENSE-MIT +25 -0
  213. data/ext/cargo-vendor/hashbrown-0.14.0/README.md +125 -0
  214. data/ext/cargo-vendor/hashbrown-0.14.0/benches/bench.rs +331 -0
  215. data/ext/cargo-vendor/hashbrown-0.14.0/benches/insert_unique_unchecked.rs +32 -0
  216. data/ext/cargo-vendor/hashbrown-0.14.0/clippy.toml +1 -0
  217. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/mod.rs +6 -0
  218. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rayon/helpers.rs +27 -0
  219. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rayon/map.rs +731 -0
  220. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rayon/mod.rs +4 -0
  221. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rayon/raw.rs +231 -0
  222. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rayon/set.rs +659 -0
  223. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rkyv/hash_map.rs +125 -0
  224. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rkyv/hash_set.rs +123 -0
  225. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/rkyv/mod.rs +2 -0
  226. data/ext/cargo-vendor/hashbrown-0.14.0/src/external_trait_impls/serde.rs +201 -0
  227. data/ext/cargo-vendor/hashbrown-0.14.0/src/lib.rs +165 -0
  228. data/ext/cargo-vendor/hashbrown-0.14.0/src/macros.rs +70 -0
  229. data/ext/cargo-vendor/hashbrown-0.14.0/src/map.rs +8506 -0
  230. data/ext/cargo-vendor/hashbrown-0.14.0/src/raw/alloc.rs +86 -0
  231. data/ext/cargo-vendor/hashbrown-0.14.0/src/raw/bitmask.rs +133 -0
  232. data/ext/cargo-vendor/hashbrown-0.14.0/src/raw/generic.rs +157 -0
  233. data/ext/cargo-vendor/hashbrown-0.14.0/src/raw/mod.rs +3378 -0
  234. data/ext/cargo-vendor/hashbrown-0.14.0/src/raw/neon.rs +124 -0
  235. data/ext/cargo-vendor/hashbrown-0.14.0/src/raw/sse2.rs +149 -0
  236. data/ext/cargo-vendor/hashbrown-0.14.0/src/rustc_entry.rs +630 -0
  237. data/ext/cargo-vendor/hashbrown-0.14.0/src/scopeguard.rs +72 -0
  238. data/ext/cargo-vendor/hashbrown-0.14.0/src/set.rs +2903 -0
  239. data/ext/cargo-vendor/hashbrown-0.14.0/tests/equivalent_trait.rs +53 -0
  240. data/ext/cargo-vendor/hashbrown-0.14.0/tests/hasher.rs +65 -0
  241. data/ext/cargo-vendor/hashbrown-0.14.0/tests/raw.rs +11 -0
  242. data/ext/cargo-vendor/hashbrown-0.14.0/tests/rayon.rs +535 -0
  243. data/ext/cargo-vendor/hashbrown-0.14.0/tests/serde.rs +65 -0
  244. data/ext/cargo-vendor/hashbrown-0.14.0/tests/set.rs +34 -0
  245. data/ext/cargo-vendor/indexmap-2.0.0/.cargo-checksum.json +1 -0
  246. data/ext/cargo-vendor/indexmap-2.0.0/Cargo.toml +112 -0
  247. data/ext/cargo-vendor/indexmap-2.0.0/LICENSE-APACHE +201 -0
  248. data/ext/cargo-vendor/indexmap-2.0.0/LICENSE-MIT +25 -0
  249. data/ext/cargo-vendor/indexmap-2.0.0/README.md +55 -0
  250. data/ext/cargo-vendor/indexmap-2.0.0/RELEASES.md +424 -0
  251. data/ext/cargo-vendor/indexmap-2.0.0/benches/bench.rs +763 -0
  252. data/ext/cargo-vendor/indexmap-2.0.0/benches/faststring.rs +185 -0
  253. data/ext/cargo-vendor/indexmap-2.0.0/src/arbitrary.rs +77 -0
  254. data/ext/cargo-vendor/indexmap-2.0.0/src/lib.rs +278 -0
  255. data/ext/cargo-vendor/indexmap-2.0.0/src/macros.rs +178 -0
  256. data/ext/cargo-vendor/indexmap-2.0.0/src/map/core/raw.rs +217 -0
  257. data/ext/cargo-vendor/indexmap-2.0.0/src/map/core.rs +742 -0
  258. data/ext/cargo-vendor/indexmap-2.0.0/src/map/iter.rs +541 -0
  259. data/ext/cargo-vendor/indexmap-2.0.0/src/map/serde_seq.rs +138 -0
  260. data/ext/cargo-vendor/indexmap-2.0.0/src/map/slice.rs +471 -0
  261. data/ext/cargo-vendor/indexmap-2.0.0/src/map/tests.rs +449 -0
  262. data/ext/cargo-vendor/indexmap-2.0.0/src/map.rs +1223 -0
  263. data/ext/cargo-vendor/indexmap-2.0.0/src/mutable_keys.rs +91 -0
  264. data/ext/cargo-vendor/indexmap-2.0.0/src/rayon/map.rs +679 -0
  265. data/ext/cargo-vendor/indexmap-2.0.0/src/rayon/mod.rs +27 -0
  266. data/ext/cargo-vendor/indexmap-2.0.0/src/rayon/set.rs +774 -0
  267. data/ext/cargo-vendor/indexmap-2.0.0/src/rustc.rs +158 -0
  268. data/ext/cargo-vendor/indexmap-2.0.0/src/serde.rs +151 -0
  269. data/ext/cargo-vendor/indexmap-2.0.0/src/set/iter.rs +543 -0
  270. data/ext/cargo-vendor/indexmap-2.0.0/src/set/slice.rs +278 -0
  271. data/ext/cargo-vendor/indexmap-2.0.0/src/set/tests.rs +545 -0
  272. data/ext/cargo-vendor/indexmap-2.0.0/src/set.rs +1011 -0
  273. data/ext/cargo-vendor/indexmap-2.0.0/src/util.rs +53 -0
  274. data/ext/cargo-vendor/indexmap-2.0.0/tests/equivalent_trait.rs +53 -0
  275. data/ext/cargo-vendor/indexmap-2.0.0/tests/macros_full_path.rs +19 -0
  276. data/ext/cargo-vendor/indexmap-2.0.0/tests/quick.rs +579 -0
  277. data/ext/cargo-vendor/indexmap-2.0.0/tests/tests.rs +28 -0
  278. data/ext/cargo-vendor/regalloc2-0.9.2/.cargo-checksum.json +1 -0
  279. data/ext/cargo-vendor/regalloc2-0.9.2/Cargo.toml +72 -0
  280. data/ext/cargo-vendor/regalloc2-0.9.2/deny.toml +28 -0
  281. data/ext/cargo-vendor/regalloc2-0.9.2/src/checker.rs +1089 -0
  282. data/ext/cargo-vendor/regalloc2-0.9.2/src/fuzzing/func.rs +702 -0
  283. data/ext/cargo-vendor/regalloc2-0.9.2/src/index.rs +268 -0
  284. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/data_structures.rs +857 -0
  285. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/liveranges.rs +961 -0
  286. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/merge.rs +368 -0
  287. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/mod.rs +150 -0
  288. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/moves.rs +1017 -0
  289. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/process.rs +1307 -0
  290. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/requirement.rs +174 -0
  291. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/spill.rs +165 -0
  292. data/ext/cargo-vendor/regalloc2-0.9.2/src/ion/stackmap.rs +79 -0
  293. data/ext/cargo-vendor/regalloc2-0.9.2/src/lib.rs +1526 -0
  294. data/ext/cargo-vendor/regalloc2-0.9.2/src/moves.rs +439 -0
  295. data/ext/cargo-vendor/regalloc2-0.9.2/src/serialize.rs +311 -0
  296. data/ext/cargo-vendor/semver-1.0.18/.cargo-checksum.json +1 -0
  297. data/ext/cargo-vendor/semver-1.0.18/Cargo.toml +47 -0
  298. data/ext/cargo-vendor/semver-1.0.18/LICENSE-APACHE +176 -0
  299. data/ext/cargo-vendor/semver-1.0.18/LICENSE-MIT +23 -0
  300. data/ext/cargo-vendor/semver-1.0.18/README.md +84 -0
  301. data/ext/cargo-vendor/semver-1.0.18/benches/parse.rs +24 -0
  302. data/ext/cargo-vendor/semver-1.0.18/build.rs +75 -0
  303. data/ext/cargo-vendor/semver-1.0.18/src/backport.rs +23 -0
  304. data/ext/cargo-vendor/semver-1.0.18/src/display.rs +165 -0
  305. data/ext/cargo-vendor/semver-1.0.18/src/error.rs +126 -0
  306. data/ext/cargo-vendor/semver-1.0.18/src/eval.rs +181 -0
  307. data/ext/cargo-vendor/semver-1.0.18/src/identifier.rs +422 -0
  308. data/ext/cargo-vendor/semver-1.0.18/src/impls.rs +156 -0
  309. data/ext/cargo-vendor/semver-1.0.18/src/lib.rs +533 -0
  310. data/ext/cargo-vendor/semver-1.0.18/src/parse.rs +409 -0
  311. data/ext/cargo-vendor/semver-1.0.18/src/serde.rs +109 -0
  312. data/ext/cargo-vendor/semver-1.0.18/tests/node/mod.rs +43 -0
  313. data/ext/cargo-vendor/semver-1.0.18/tests/test_autotrait.rs +14 -0
  314. data/ext/cargo-vendor/semver-1.0.18/tests/test_identifier.rs +45 -0
  315. data/ext/cargo-vendor/semver-1.0.18/tests/test_version.rs +238 -0
  316. data/ext/cargo-vendor/semver-1.0.18/tests/test_version_req.rs +443 -0
  317. data/ext/cargo-vendor/semver-1.0.18/tests/util/mod.rs +39 -0
  318. data/ext/cargo-vendor/sptr-0.3.2/.cargo-checksum.json +1 -0
  319. data/ext/cargo-vendor/sptr-0.3.2/Cargo.toml +28 -0
  320. data/ext/cargo-vendor/sptr-0.3.2/README.md +73 -0
  321. data/ext/cargo-vendor/sptr-0.3.2/src/func.rs +83 -0
  322. data/ext/cargo-vendor/sptr-0.3.2/src/int.rs +364 -0
  323. data/ext/cargo-vendor/sptr-0.3.2/src/lib.rs +756 -0
  324. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/.cargo-checksum.json +1 -0
  325. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/Cargo.toml +90 -0
  326. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/src/dir.rs +464 -0
  327. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.0/src/lib.rs +141 -0
  328. data/ext/cargo-vendor/wasi-common-10.0.0/.cargo-checksum.json +1 -0
  329. data/ext/cargo-vendor/wasi-common-10.0.0/Cargo.toml +87 -0
  330. data/ext/cargo-vendor/wasi-common-10.0.0/src/ctx.rs +128 -0
  331. data/ext/cargo-vendor/wasi-common-10.0.0/src/file.rs +262 -0
  332. data/ext/cargo-vendor/wasi-common-10.0.0/src/snapshots/preview_1.rs +1490 -0
  333. data/ext/cargo-vendor/wasm-encoder-0.29.0/.cargo-checksum.json +1 -0
  334. data/ext/cargo-vendor/wasm-encoder-0.29.0/Cargo.toml +33 -0
  335. data/ext/cargo-vendor/wasm-encoder-0.29.0/README.md +80 -0
  336. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/aliases.rs +160 -0
  337. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/canonicals.rs +159 -0
  338. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/components.rs +29 -0
  339. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/exports.rs +127 -0
  340. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/imports.rs +200 -0
  341. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/instances.rs +200 -0
  342. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/modules.rs +29 -0
  343. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/names.rs +149 -0
  344. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/start.rs +52 -0
  345. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/types.rs +759 -0
  346. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component.rs +160 -0
  347. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/code.rs +2913 -0
  348. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/custom.rs +55 -0
  349. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/data.rs +185 -0
  350. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/dump.rs +627 -0
  351. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/elements.rs +224 -0
  352. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/exports.rs +85 -0
  353. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/functions.rs +63 -0
  354. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/globals.rs +90 -0
  355. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/imports.rs +142 -0
  356. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/linking.rs +263 -0
  357. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/memories.rs +99 -0
  358. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/names.rs +265 -0
  359. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/producers.rs +180 -0
  360. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/start.rs +39 -0
  361. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tables.rs +104 -0
  362. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tags.rs +85 -0
  363. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/types.rs +246 -0
  364. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core.rs +168 -0
  365. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/lib.rs +215 -0
  366. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/raw.rs +30 -0
  367. data/ext/cargo-vendor/wasmparser-0.107.0/.cargo-checksum.json +1 -0
  368. data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.lock +621 -0
  369. data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.toml +54 -0
  370. data/ext/cargo-vendor/wasmparser-0.107.0/benches/benchmark.rs +351 -0
  371. data/ext/cargo-vendor/wasmparser-0.107.0/src/binary_reader.rs +1706 -0
  372. data/ext/cargo-vendor/wasmparser-0.107.0/src/lib.rs +723 -0
  373. data/ext/cargo-vendor/wasmparser-0.107.0/src/parser.rs +1535 -0
  374. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/canonicals.rs +119 -0
  375. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/exports.rs +117 -0
  376. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/imports.rs +137 -0
  377. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/instances.rs +163 -0
  378. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/types.rs +548 -0
  379. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/coredumps.rs +243 -0
  380. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/producers.rs +83 -0
  381. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/types.rs +874 -0
  382. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core.rs +35 -0
  383. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/component.rs +3082 -0
  384. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/core.rs +1334 -0
  385. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/names.rs +606 -0
  386. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/operators.rs +3463 -0
  387. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/types.rs +3070 -0
  388. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator.rs +1589 -0
  389. data/ext/cargo-vendor/wasmparser-0.111.0/.cargo-checksum.json +1 -0
  390. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.lock +644 -0
  391. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.toml +54 -0
  392. data/ext/cargo-vendor/wasmparser-0.111.0/README.md +36 -0
  393. data/ext/cargo-vendor/wasmparser-0.111.0/benches/benchmark.rs +349 -0
  394. data/ext/cargo-vendor/wasmparser-0.111.0/examples/simple.rs +37 -0
  395. data/ext/cargo-vendor/wasmparser-0.111.0/src/binary_reader.rs +1706 -0
  396. data/ext/cargo-vendor/wasmparser-0.111.0/src/lib.rs +726 -0
  397. data/ext/cargo-vendor/wasmparser-0.111.0/src/limits.rs +59 -0
  398. data/ext/cargo-vendor/wasmparser-0.111.0/src/parser.rs +1612 -0
  399. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/aliases.rs +119 -0
  400. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/canonicals.rs +120 -0
  401. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/exports.rs +117 -0
  402. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/imports.rs +137 -0
  403. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/instances.rs +163 -0
  404. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/names.rs +102 -0
  405. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/start.rs +30 -0
  406. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/types.rs +548 -0
  407. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component.rs +17 -0
  408. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/code.rs +146 -0
  409. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/coredumps.rs +243 -0
  410. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/custom.rs +63 -0
  411. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/data.rs +96 -0
  412. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/dylink0.rs +132 -0
  413. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/elements.rs +152 -0
  414. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/exports.rs +65 -0
  415. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/functions.rs +17 -0
  416. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/globals.rs +49 -0
  417. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/imports.rs +76 -0
  418. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/init.rs +51 -0
  419. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/memories.rs +56 -0
  420. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/names.rs +153 -0
  421. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/operators.rs +354 -0
  422. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/producers.rs +83 -0
  423. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/tables.rs +87 -0
  424. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/tags.rs +32 -0
  425. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/types.rs +1141 -0
  426. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core.rs +37 -0
  427. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers.rs +316 -0
  428. data/ext/cargo-vendor/wasmparser-0.111.0/src/resources.rs +398 -0
  429. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/component.rs +3148 -0
  430. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/core.rs +1314 -0
  431. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/func.rs +348 -0
  432. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/names.rs +606 -0
  433. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/operators.rs +3466 -0
  434. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/types.rs +3283 -0
  435. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator.rs +1568 -0
  436. data/ext/cargo-vendor/wasmparser-0.111.0/tests/big-module.rs +33 -0
  437. data/ext/cargo-vendor/wasmprinter-0.2.63/.cargo-checksum.json +1 -0
  438. data/ext/cargo-vendor/wasmprinter-0.2.63/Cargo.toml +39 -0
  439. data/ext/cargo-vendor/wasmprinter-0.2.63/README.md +47 -0
  440. data/ext/cargo-vendor/wasmprinter-0.2.63/src/lib.rs +2962 -0
  441. data/ext/cargo-vendor/wasmprinter-0.2.63/src/operator.rs +873 -0
  442. data/ext/cargo-vendor/wasmprinter-0.2.63/tests/all.rs +278 -0
  443. data/ext/cargo-vendor/wasmtime-10.0.0/.cargo-checksum.json +1 -0
  444. data/ext/cargo-vendor/wasmtime-10.0.0/Cargo.toml +183 -0
  445. data/ext/cargo-vendor/wasmtime-10.0.0/src/compiler.rs +710 -0
  446. data/ext/cargo-vendor/wasmtime-10.0.0/src/component/component.rs +382 -0
  447. data/ext/cargo-vendor/wasmtime-10.0.0/src/component/instance.rs +727 -0
  448. data/ext/cargo-vendor/wasmtime-10.0.0/src/component/matching.rs +112 -0
  449. data/ext/cargo-vendor/wasmtime-10.0.0/src/component/mod.rs +313 -0
  450. data/ext/cargo-vendor/wasmtime-10.0.0/src/config.rs +2066 -0
  451. data/ext/cargo-vendor/wasmtime-10.0.0/src/engine/serialization.rs +622 -0
  452. data/ext/cargo-vendor/wasmtime-10.0.0/src/engine.rs +757 -0
  453. data/ext/cargo-vendor/wasmtime-10.0.0/src/externals.rs +763 -0
  454. data/ext/cargo-vendor/wasmtime-10.0.0/src/func/typed.rs +638 -0
  455. data/ext/cargo-vendor/wasmtime-10.0.0/src/func.rs +2355 -0
  456. data/ext/cargo-vendor/wasmtime-10.0.0/src/instance.rs +905 -0
  457. data/ext/cargo-vendor/wasmtime-10.0.0/src/lib.rs +486 -0
  458. data/ext/cargo-vendor/wasmtime-10.0.0/src/linker.rs +1479 -0
  459. data/ext/cargo-vendor/wasmtime-10.0.0/src/memory.rs +950 -0
  460. data/ext/cargo-vendor/wasmtime-10.0.0/src/module.rs +1274 -0
  461. data/ext/cargo-vendor/wasmtime-10.0.0/src/ref.rs +109 -0
  462. data/ext/cargo-vendor/wasmtime-10.0.0/src/store/context.rs +243 -0
  463. data/ext/cargo-vendor/wasmtime-10.0.0/src/store/func_refs.rs +85 -0
  464. data/ext/cargo-vendor/wasmtime-10.0.0/src/store.rs +2166 -0
  465. data/ext/cargo-vendor/wasmtime-10.0.0/src/trampoline/func.rs +133 -0
  466. data/ext/cargo-vendor/wasmtime-10.0.0/src/trampoline/global.rs +67 -0
  467. data/ext/cargo-vendor/wasmtime-10.0.0/src/types/matching.rs +312 -0
  468. data/ext/cargo-vendor/wasmtime-10.0.0/src/types.rs +572 -0
  469. data/ext/cargo-vendor/wasmtime-10.0.0/src/values.rs +290 -0
  470. data/ext/cargo-vendor/wasmtime-asm-macros-10.0.0/.cargo-checksum.json +1 -0
  471. data/ext/cargo-vendor/wasmtime-asm-macros-10.0.0/Cargo.toml +22 -0
  472. data/ext/cargo-vendor/wasmtime-cache-10.0.0/.cargo-checksum.json +1 -0
  473. data/ext/cargo-vendor/wasmtime-cache-10.0.0/Cargo.toml +73 -0
  474. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/.cargo-checksum.json +1 -0
  475. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/Cargo.toml +58 -0
  476. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/src/bindgen.rs +316 -0
  477. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/char.wit +13 -0
  478. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/conventions.wit +39 -0
  479. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/direct-import.wit +5 -0
  480. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/empty.wit +2 -0
  481. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/flags.wit +55 -0
  482. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/floats.wit +13 -0
  483. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/function-new.wit +4 -0
  484. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/integers.wit +40 -0
  485. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/lists.wit +85 -0
  486. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/many-arguments.wit +52 -0
  487. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/multi-return.wit +14 -0
  488. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/records.wit +61 -0
  489. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/rename.wit +16 -0
  490. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/share-types.wit +21 -0
  491. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/simple-functions.wit +17 -0
  492. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/simple-lists.wit +13 -0
  493. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/simple-wasi.wit +23 -0
  494. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/small-anonymous.wit +15 -0
  495. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/smoke-default.wit +5 -0
  496. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/smoke-export.wit +7 -0
  497. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/smoke.wit +7 -0
  498. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/strings.wit +12 -0
  499. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/unions.wit +66 -0
  500. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/use-paths.wit +29 -0
  501. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/variants.wit +147 -0
  502. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen/worlds-with-types.wit +16 -0
  503. data/ext/cargo-vendor/wasmtime-component-macro-10.0.0/tests/codegen.rs +24 -0
  504. data/ext/cargo-vendor/wasmtime-component-util-10.0.0/.cargo-checksum.json +1 -0
  505. data/ext/cargo-vendor/wasmtime-component-util-10.0.0/Cargo.toml +25 -0
  506. data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/.cargo-checksum.json +1 -0
  507. data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/Cargo.toml +90 -0
  508. data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/compiler.rs +1200 -0
  509. data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/debug/transform/simulate.rs +410 -0
  510. data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/func_environ.rs +2206 -0
  511. data/ext/cargo-vendor/wasmtime-cranelift-10.0.0/src/lib.rs +178 -0
  512. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/.cargo-checksum.json +1 -0
  513. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/Cargo.toml +57 -0
  514. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.0/src/lib.rs +120 -0
  515. data/ext/cargo-vendor/wasmtime-environ-10.0.0/.cargo-checksum.json +1 -0
  516. data/ext/cargo-vendor/wasmtime-environ-10.0.0/Cargo.lock +681 -0
  517. data/ext/cargo-vendor/wasmtime-environ-10.0.0/Cargo.toml +116 -0
  518. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/compiler.rs +84 -0
  519. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/translate/inline.rs +1067 -0
  520. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/translate.rs +1070 -0
  521. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/component/types.rs +1916 -0
  522. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/fact.rs +623 -0
  523. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/module.rs +1083 -0
  524. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/module_environ.rs +884 -0
  525. data/ext/cargo-vendor/wasmtime-environ-10.0.0/src/trap_encoding.rs +238 -0
  526. data/ext/cargo-vendor/wasmtime-fiber-10.0.0/.cargo-checksum.json +1 -0
  527. data/ext/cargo-vendor/wasmtime-fiber-10.0.0/Cargo.toml +46 -0
  528. data/ext/cargo-vendor/wasmtime-fiber-10.0.0/src/lib.rs +305 -0
  529. data/ext/cargo-vendor/wasmtime-fiber-10.0.0/src/unix.rs +212 -0
  530. data/ext/cargo-vendor/wasmtime-fiber-10.0.0/src/windows.rs +161 -0
  531. data/ext/cargo-vendor/wasmtime-jit-10.0.0/.cargo-checksum.json +1 -0
  532. data/ext/cargo-vendor/wasmtime-jit-10.0.0/Cargo.toml +104 -0
  533. data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/instantiate.rs +760 -0
  534. data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/lib.rs +38 -0
  535. data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/profiling/jitdump.rs +66 -0
  536. data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/profiling/perfmap.rs +47 -0
  537. data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/profiling/vtune.rs +80 -0
  538. data/ext/cargo-vendor/wasmtime-jit-10.0.0/src/profiling.rs +108 -0
  539. data/ext/cargo-vendor/wasmtime-jit-debug-10.0.0/.cargo-checksum.json +1 -0
  540. data/ext/cargo-vendor/wasmtime-jit-debug-10.0.0/Cargo.toml +55 -0
  541. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.0/.cargo-checksum.json +1 -0
  542. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.0/Cargo.toml +37 -0
  543. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/.cargo-checksum.json +1 -0
  544. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/Cargo.toml +110 -0
  545. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/component.rs +701 -0
  546. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/cow.rs +1060 -0
  547. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/debug_builtins.rs +58 -0
  548. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/externref.rs +1073 -0
  549. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/instance/allocator/pooling.rs +1368 -0
  550. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/instance/allocator.rs +531 -0
  551. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/instance.rs +1345 -0
  552. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/lib.rs +285 -0
  553. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/libcalls.rs +578 -0
  554. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/memory.rs +958 -0
  555. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/mmap/miri.rs +94 -0
  556. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/mmap/unix.rs +148 -0
  557. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/mmap/windows.rs +208 -0
  558. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/send_sync_ptr.rs +69 -0
  559. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/table.rs +595 -0
  560. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/traphandlers/unix.rs +387 -0
  561. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/traphandlers.rs +749 -0
  562. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/vmcontext/vm_host_func_context.rs +137 -0
  563. data/ext/cargo-vendor/wasmtime-runtime-10.0.0/src/vmcontext.rs +1221 -0
  564. data/ext/cargo-vendor/wasmtime-types-10.0.1/.cargo-checksum.json +1 -0
  565. data/ext/cargo-vendor/wasmtime-types-10.0.1/Cargo.toml +34 -0
  566. data/ext/cargo-vendor/wasmtime-types-10.0.1/src/lib.rs +462 -0
  567. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/.cargo-checksum.json +1 -0
  568. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/Cargo.toml +153 -0
  569. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/lib.rs +130 -0
  570. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/clocks/host.rs +73 -0
  571. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/clocks.rs +17 -0
  572. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/ctx.rs +206 -0
  573. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/error.rs +16 -0
  574. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/filesystem.rs +269 -0
  575. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/mod.rs +44 -0
  576. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/pipe.rs +233 -0
  577. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview1/mod.rs +1860 -0
  578. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/clocks.rs +80 -0
  579. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/env.rs +48 -0
  580. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/exit.rs +12 -0
  581. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/filesystem.rs +1020 -0
  582. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/io.rs +215 -0
  583. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/mod.rs +7 -0
  584. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/poll.rs +84 -0
  585. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/preview2/random.rs +41 -0
  586. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/random.rs +58 -0
  587. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched/subscription.rs +104 -0
  588. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched/sync.rs +156 -0
  589. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/sched.rs +105 -0
  590. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/stdio.rs +176 -0
  591. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/stream.rs +210 -0
  592. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/table.rs +107 -0
  593. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/wasi/command.rs +43 -0
  594. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/src/preview2/wasi/mod.rs +30 -0
  595. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/clocks/monotonic-clock.wit +34 -0
  596. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/clocks/timezone.wit +63 -0
  597. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/clocks/wall-clock.wit +43 -0
  598. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/filesystem/filesystem.wit +782 -0
  599. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/http/incoming-handler.wit +24 -0
  600. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/http/outgoing-handler.wit +18 -0
  601. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/http/types.wit +159 -0
  602. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/io/streams.wit +215 -0
  603. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/logging/handler.wit +34 -0
  604. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/poll/poll.wit +41 -0
  605. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/preview/command-extended.wit +36 -0
  606. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/preview/command.wit +26 -0
  607. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/preview/proxy.wit +9 -0
  608. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/preview/reactor.wit +24 -0
  609. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/random/insecure-seed.wit +24 -0
  610. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/random/insecure.wit +21 -0
  611. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/random/random.wit +25 -0
  612. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/sockets/instance-network.wit +9 -0
  613. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/sockets/ip-name-lookup.wit +69 -0
  614. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/sockets/network.wit +187 -0
  615. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/sockets/tcp-create-socket.wit +27 -0
  616. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/sockets/tcp.wit +255 -0
  617. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/sockets/udp-create-socket.wit +27 -0
  618. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/sockets/udp.wit +211 -0
  619. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/wasi-cli-base/environment.wit +16 -0
  620. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/wasi-cli-base/exit.wit +4 -0
  621. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/wasi-cli-base/preopens.wit +7 -0
  622. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/deps/wasi-cli-base/stdio.wit +17 -0
  623. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/main.wit +1 -0
  624. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/wit/test.wit +19 -0
  625. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/witx/typenames.witx +750 -0
  626. data/ext/cargo-vendor/wasmtime-wasi-10.0.0/witx/wasi_snapshot_preview1.witx +521 -0
  627. data/ext/cargo-vendor/wasmtime-winch-10.0.0/.cargo-checksum.json +1 -0
  628. data/ext/cargo-vendor/wasmtime-winch-10.0.0/Cargo.toml +63 -0
  629. data/ext/cargo-vendor/wasmtime-winch-10.0.0/src/compiler.rs +220 -0
  630. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/.cargo-checksum.json +1 -0
  631. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/Cargo.toml +29 -0
  632. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/lib.rs +1631 -0
  633. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.0/src/types.rs +179 -0
  634. data/ext/cargo-vendor/wiggle-10.0.0/.cargo-checksum.json +1 -0
  635. data/ext/cargo-vendor/wiggle-10.0.0/Cargo.toml +106 -0
  636. data/ext/cargo-vendor/wiggle-10.0.0/LICENSE +220 -0
  637. data/ext/cargo-vendor/wiggle-10.0.0/README.md +18 -0
  638. data/ext/cargo-vendor/wiggle-generate-10.0.0/.cargo-checksum.json +1 -0
  639. data/ext/cargo-vendor/wiggle-generate-10.0.0/Cargo.toml +58 -0
  640. data/ext/cargo-vendor/wiggle-generate-10.0.0/LICENSE +220 -0
  641. data/ext/cargo-vendor/wiggle-macro-10.0.0/.cargo-checksum.json +1 -0
  642. data/ext/cargo-vendor/wiggle-macro-10.0.0/Cargo.toml +55 -0
  643. data/ext/cargo-vendor/wiggle-macro-10.0.0/LICENSE +220 -0
  644. data/ext/cargo-vendor/wiggle-macro-10.0.0/src/lib.rs +210 -0
  645. data/ext/cargo-vendor/winch-codegen-0.8.0/.cargo-checksum.json +1 -0
  646. data/ext/cargo-vendor/winch-codegen-0.8.0/Cargo.toml +62 -0
  647. data/ext/cargo-vendor/winch-codegen-0.8.0/src/abi/local.rs +70 -0
  648. data/ext/cargo-vendor/winch-codegen-0.8.0/src/abi/mod.rs +237 -0
  649. data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/call.rs +225 -0
  650. data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/context.rs +270 -0
  651. data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/env.rs +52 -0
  652. data/ext/cargo-vendor/winch-codegen-0.8.0/src/codegen/mod.rs +214 -0
  653. data/ext/cargo-vendor/winch-codegen-0.8.0/src/frame/mod.rs +172 -0
  654. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/abi.rs +243 -0
  655. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/asm.rs +300 -0
  656. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/masm.rs +230 -0
  657. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/mod.rs +127 -0
  658. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/aarch64/regs.rs +166 -0
  659. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/mod.rs +215 -0
  660. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/abi.rs +369 -0
  661. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/address.rs +17 -0
  662. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/asm.rs +576 -0
  663. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/masm.rs +288 -0
  664. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/mod.rs +149 -0
  665. data/ext/cargo-vendor/winch-codegen-0.8.0/src/isa/x64/regs.rs +192 -0
  666. data/ext/cargo-vendor/winch-codegen-0.8.0/src/lib.rs +21 -0
  667. data/ext/cargo-vendor/winch-codegen-0.8.0/src/masm.rs +255 -0
  668. data/ext/cargo-vendor/winch-codegen-0.8.0/src/regalloc.rs +70 -0
  669. data/ext/cargo-vendor/winch-codegen-0.8.0/src/stack.rs +235 -0
  670. data/ext/cargo-vendor/winch-codegen-0.8.0/src/trampoline.rs +494 -0
  671. data/ext/cargo-vendor/winch-codegen-0.8.0/src/visitor.rs +353 -0
  672. data/ext/cargo-vendor/wit-parser-0.8.0/.cargo-checksum.json +1 -0
  673. data/ext/cargo-vendor/wit-parser-0.8.0/Cargo.toml +62 -0
  674. data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/lex.rs +679 -0
  675. data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/resolve.rs +1122 -0
  676. data/ext/cargo-vendor/wit-parser-0.8.0/src/ast.rs +1207 -0
  677. data/ext/cargo-vendor/wit-parser-0.8.0/src/lib.rs +622 -0
  678. data/ext/cargo-vendor/wit-parser-0.8.0/src/live.rs +111 -0
  679. data/ext/cargo-vendor/wit-parser-0.8.0/src/resolve.rs +1307 -0
  680. data/ext/cargo-vendor/wit-parser-0.8.0/tests/all.rs +168 -0
  681. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/comments.wit +25 -0
  682. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/diamond1/deps/dep1/types.wit +2 -0
  683. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/diamond1/deps/dep2/types.wit +2 -0
  684. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/diamond1/join.wit +6 -0
  685. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/disambiguate-diamond/shared1.wit +3 -0
  686. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/disambiguate-diamond/shared2.wit +3 -0
  687. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/disambiguate-diamond/world.wit +13 -0
  688. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/embedded.wit.md +34 -0
  689. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/empty.wit +1 -0
  690. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +3 -0
  691. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/deps/corp/saas.wit +4 -0
  692. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +2 -0
  693. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +5 -0
  694. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +13 -0
  695. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/deps/wasi/clocks.wit +5 -0
  696. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/deps/wasi/filesystem.wit +7 -0
  697. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/foreign-deps/root.wit +44 -0
  698. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/functions.wit +14 -0
  699. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/many-names/a.wit +2 -0
  700. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/many-names/b.wit +5 -0
  701. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/multi-file/bar.wit +21 -0
  702. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/multi-file/cycle-a.wit +7 -0
  703. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/multi-file/cycle-b.wit +3 -0
  704. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/multi-file/foo.wit +31 -0
  705. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/package-syntax1.wit +1 -0
  706. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/package-syntax3.wit +1 -0
  707. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/package-syntax4.wit +1 -0
  708. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/alias-no-type.wit.result +1 -0
  709. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-function.wit +7 -0
  710. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-function.wit.result +5 -0
  711. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-function2.wit +7 -0
  712. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-function2.wit.result +5 -0
  713. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg1/root.wit +5 -0
  714. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg1.wit.result +8 -0
  715. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +1 -0
  716. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg2/root.wit +5 -0
  717. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg2.wit.result +5 -0
  718. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +2 -0
  719. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg3/root.wit +5 -0
  720. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg3.wit.result +5 -0
  721. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +4 -0
  722. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg4/root.wit +4 -0
  723. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg4.wit.result +5 -0
  724. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +3 -0
  725. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg5/root.wit +4 -0
  726. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg5.wit.result +5 -0
  727. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +4 -0
  728. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg6/root.wit +4 -0
  729. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg6.wit.result +5 -0
  730. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-world-type1.wit +5 -0
  731. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-world-type1.wit.result +5 -0
  732. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/conflicting-package/a.wit +1 -0
  733. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/conflicting-package/b.wit +1 -0
  734. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/conflicting-package.wit.result +8 -0
  735. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle.wit +6 -0
  736. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle.wit.result +5 -0
  737. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle2.wit +7 -0
  738. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle2.wit.result +5 -0
  739. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle3.wit +7 -0
  740. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle3.wit.result +5 -0
  741. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle4.wit +7 -0
  742. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle4.wit.result +5 -0
  743. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle5.wit +7 -0
  744. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/cycle5.wit.result +5 -0
  745. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-functions.wit +8 -0
  746. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-functions.wit.result +5 -0
  747. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-interface.wit +6 -0
  748. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-interface.wit.result +5 -0
  749. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-interface2/foo.wit +3 -0
  750. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-interface2/foo2.wit +3 -0
  751. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-interface2.wit.result +8 -0
  752. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-type.wit +7 -0
  753. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/duplicate-type.wit.result +5 -0
  754. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/empty-enum.wit +6 -0
  755. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/empty-enum.wit.result +5 -0
  756. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/empty-union.wit +6 -0
  757. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/empty-union.wit.result +5 -0
  758. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/empty-variant1.wit +6 -0
  759. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/empty-variant1.wit.result +5 -0
  760. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/export-twice.wit +8 -0
  761. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/export-twice.wit.result +5 -0
  762. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/import-export-overlap1.wit +5 -0
  763. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/import-export-overlap1.wit.result +5 -0
  764. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/import-export-overlap2.wit +5 -0
  765. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/import-export-overlap2.wit.result +5 -0
  766. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/import-twice.wit +8 -0
  767. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/import-twice.wit.result +5 -0
  768. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/invalid-md.wit.result +5 -0
  769. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/invalid-type-reference.wit +10 -0
  770. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/invalid-type-reference.wit.result +5 -0
  771. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/invalid-type-reference2.wit +6 -0
  772. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/invalid-type-reference2.wit.result +5 -0
  773. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/missing-package.wit.result +1 -0
  774. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +1 -0
  775. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +5 -0
  776. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +8 -0
  777. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +4 -0
  778. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/pkg-cycle/root.wit +4 -0
  779. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/pkg-cycle.wit.result +5 -0
  780. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +4 -0
  781. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +4 -0
  782. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/pkg-cycle2/root.wit +4 -0
  783. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/pkg-cycle2.wit.result +5 -0
  784. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/undefined-typed.wit +6 -0
  785. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/undefined-typed.wit.result +5 -0
  786. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unknown-interface.wit +7 -0
  787. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unknown-interface.wit.result +5 -0
  788. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface1.wit +7 -0
  789. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface1.wit.result +5 -0
  790. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface2.wit +8 -0
  791. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface2.wit.result +5 -0
  792. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface3.wit +5 -0
  793. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface3.wit.result +5 -0
  794. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface4.wit +7 -0
  795. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface4.wit.result +5 -0
  796. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use1.wit +7 -0
  797. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use1.wit.result +5 -0
  798. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use10/bar.wit +5 -0
  799. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use10.wit.result +8 -0
  800. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use2.wit +10 -0
  801. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use2.wit.result +5 -0
  802. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use3.wit +11 -0
  803. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use3.wit.result +5 -0
  804. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use7.wit +10 -0
  805. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use7.wit.result +5 -0
  806. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use8.wit +9 -0
  807. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use8.wit.result +5 -0
  808. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use9.wit +9 -0
  809. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use9.wit.result +5 -0
  810. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-conflict.wit +11 -0
  811. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-conflict.wit.result +5 -0
  812. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-conflict2.wit +13 -0
  813. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-conflict2.wit.result +5 -0
  814. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-conflict3.wit +13 -0
  815. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-conflict3.wit.result +5 -0
  816. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle1.wit +7 -0
  817. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle1.wit.result +5 -0
  818. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle4.wit +14 -0
  819. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle4.wit.result +5 -0
  820. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-shadow1.wit +7 -0
  821. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-shadow1.wit.result +5 -0
  822. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-interface-clash.wit +3 -0
  823. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-interface-clash.wit.result +5 -0
  824. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-same-fields2.wit +8 -0
  825. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-same-fields2.wit.result +5 -0
  826. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-same-fields3.wit +8 -0
  827. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-same-fields3.wit.result +5 -0
  828. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-top-level-func.wit +5 -0
  829. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-top-level-func.wit.result +5 -0
  830. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-top-level-func2.wit +4 -0
  831. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-top-level-func2.wit.result +5 -0
  832. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/shared-types.wit +10 -0
  833. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/type-then-eof.wit +5 -0
  834. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/types.wit +61 -0
  835. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/use-chain.wit +11 -0
  836. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/use.wit +34 -0
  837. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/versions/deps/a1/foo.wit +5 -0
  838. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/versions/deps/a2/foo.wit +5 -0
  839. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/versions/foo.wit +7 -0
  840. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/wasi.wit +178 -0
  841. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-diamond.wit +22 -0
  842. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-iface-no-collide.wit +11 -0
  843. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-implicit-import1.wit +12 -0
  844. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-implicit-import2.wit +11 -0
  845. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-implicit-import3.wit +11 -0
  846. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-same-fields4.wit +13 -0
  847. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-top-level-funcs.wit +9 -0
  848. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/worlds-same-fields5.wit +17 -0
  849. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/worlds-with-types.wit +34 -0
  850. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/worlds.wit +37 -0
  851. data/ext/src/ruby_api/global.rs +3 -3
  852. data/ext/src/ruby_api/memory/unsafe_slice.rs +9 -3
  853. data/ext/src/ruby_api/params.rs +14 -12
  854. data/ext/src/ruby_api/table.rs +1 -1
  855. data/lib/wasmtime/version.rb +1 -1
  856. metadata +1418 -1079
  857. data/ext/cargo-vendor/cranelift-bforest-0.96.4/.cargo-checksum.json +0 -1
  858. data/ext/cargo-vendor/cranelift-bforest-0.96.4/Cargo.toml +0 -31
  859. data/ext/cargo-vendor/cranelift-codegen-0.96.4/.cargo-checksum.json +0 -1
  860. data/ext/cargo-vendor/cranelift-codegen-0.96.4/Cargo.toml +0 -159
  861. data/ext/cargo-vendor/cranelift-codegen-0.96.4/benches/x64-evex-encoding.rs +0 -53
  862. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/ir/trapcode.rs +0 -138
  863. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/abi.rs +0 -1281
  864. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/inst/emit.rs +0 -3658
  865. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/inst/emit_tests.rs +0 -7868
  866. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/inst/imms.rs +0 -1215
  867. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/inst/mod.rs +0 -2945
  868. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/inst.isle +0 -4035
  869. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/lower/isle.rs +0 -813
  870. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/lower.isle +0 -2906
  871. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/aarch64/mod.rs +0 -240
  872. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/mod.rs +0 -420
  873. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/abi.rs +0 -726
  874. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/args.rs +0 -1822
  875. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/emit.rs +0 -2914
  876. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/emit_tests.rs +0 -2317
  877. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/encode.rs +0 -188
  878. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/imms.rs +0 -244
  879. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/mod.rs +0 -1823
  880. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/regs.rs +0 -231
  881. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/unwind/systemv.rs +0 -177
  882. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst/vector.rs +0 -354
  883. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst.isle +0 -2746
  884. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/inst_vector.isle +0 -224
  885. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/lower/isle.rs +0 -544
  886. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/lower.isle +0 -1012
  887. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/riscv64/mod.rs +0 -219
  888. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/s390x/abi.rs +0 -947
  889. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/s390x/inst/emit.rs +0 -3697
  890. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/s390x/inst/emit_tests.rs +0 -13397
  891. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/s390x/inst/mod.rs +0 -3409
  892. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/s390x/inst.isle +0 -5045
  893. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/s390x/lower.isle +0 -3991
  894. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/s390x/mod.rs +0 -215
  895. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/abi.rs +0 -978
  896. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/encoding/evex.rs +0 -403
  897. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/encoding/rex.rs +0 -565
  898. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/encoding/vex.rs +0 -498
  899. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/inst/args.rs +0 -2168
  900. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/inst/emit.rs +0 -3938
  901. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/inst/emit_tests.rs +0 -5669
  902. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/inst/mod.rs +0 -2763
  903. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/inst.isle +0 -5186
  904. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/lower/isle.rs +0 -1158
  905. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/lower.isle +0 -4262
  906. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/lower.rs +0 -328
  907. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isa/x64/mod.rs +0 -250
  908. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/isle_prelude.rs +0 -818
  909. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/abi.rs +0 -2410
  910. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/buffer.rs +0 -2219
  911. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/compile.rs +0 -92
  912. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/isle.rs +0 -827
  913. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/lower.rs +0 -1366
  914. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/mod.rs +0 -538
  915. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/reg.rs +0 -532
  916. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/machinst/vcode.rs +0 -1571
  917. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/prelude.isle +0 -552
  918. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/prelude_lower.isle +0 -1012
  919. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/settings.rs +0 -599
  920. data/ext/cargo-vendor/cranelift-codegen-0.96.4/src/verifier/mod.rs +0 -1881
  921. data/ext/cargo-vendor/cranelift-codegen-meta-0.96.4/.cargo-checksum.json +0 -1
  922. data/ext/cargo-vendor/cranelift-codegen-meta-0.96.4/Cargo.toml +0 -23
  923. data/ext/cargo-vendor/cranelift-codegen-meta-0.96.4/src/isa/x86.rs +0 -445
  924. data/ext/cargo-vendor/cranelift-codegen-meta-0.96.4/src/shared/settings.rs +0 -331
  925. data/ext/cargo-vendor/cranelift-codegen-shared-0.96.4/.cargo-checksum.json +0 -1
  926. data/ext/cargo-vendor/cranelift-codegen-shared-0.96.4/Cargo.toml +0 -22
  927. data/ext/cargo-vendor/cranelift-control-0.96.4/.cargo-checksum.json +0 -1
  928. data/ext/cargo-vendor/cranelift-control-0.96.4/Cargo.toml +0 -30
  929. data/ext/cargo-vendor/cranelift-control-0.96.4/src/chaos.rs +0 -78
  930. data/ext/cargo-vendor/cranelift-control-0.96.4/src/lib.rs +0 -30
  931. data/ext/cargo-vendor/cranelift-control-0.96.4/src/zero_sized.rs +0 -42
  932. data/ext/cargo-vendor/cranelift-entity-0.96.4/.cargo-checksum.json +0 -1
  933. data/ext/cargo-vendor/cranelift-entity-0.96.4/Cargo.toml +0 -35
  934. data/ext/cargo-vendor/cranelift-entity-0.96.4/src/list.rs +0 -868
  935. data/ext/cargo-vendor/cranelift-frontend-0.96.4/.cargo-checksum.json +0 -1
  936. data/ext/cargo-vendor/cranelift-frontend-0.96.4/Cargo.toml +0 -53
  937. data/ext/cargo-vendor/cranelift-isle-0.96.4/.cargo-checksum.json +0 -1
  938. data/ext/cargo-vendor/cranelift-isle-0.96.4/Cargo.toml +0 -37
  939. data/ext/cargo-vendor/cranelift-native-0.96.4/.cargo-checksum.json +0 -1
  940. data/ext/cargo-vendor/cranelift-native-0.96.4/Cargo.toml +0 -38
  941. data/ext/cargo-vendor/cranelift-native-0.96.4/src/lib.rs +0 -216
  942. data/ext/cargo-vendor/cranelift-wasm-0.96.4/.cargo-checksum.json +0 -1
  943. data/ext/cargo-vendor/cranelift-wasm-0.96.4/Cargo.toml +0 -85
  944. data/ext/cargo-vendor/cranelift-wasm-0.96.4/src/code_translator.rs +0 -3479
  945. data/ext/cargo-vendor/cranelift-wasm-0.96.4/src/environ/dummy.rs +0 -901
  946. data/ext/cargo-vendor/cranelift-wasm-0.96.4/src/environ/spec.rs +0 -807
  947. data/ext/cargo-vendor/cranelift-wasm-0.96.4/src/func_translator.rs +0 -419
  948. data/ext/cargo-vendor/cranelift-wasm-0.96.4/src/sections_translator.rs +0 -429
  949. data/ext/cargo-vendor/cranelift-wasm-0.96.4/src/translation_utils.rs +0 -108
  950. data/ext/cargo-vendor/file-per-thread-logger-0.1.6/.cargo-checksum.json +0 -1
  951. data/ext/cargo-vendor/file-per-thread-logger-0.1.6/Cargo.toml +0 -36
  952. data/ext/cargo-vendor/file-per-thread-logger-0.1.6/run-tests.sh +0 -11
  953. data/ext/cargo-vendor/file-per-thread-logger-0.1.6/src/lib.rs +0 -162
  954. data/ext/cargo-vendor/file-per-thread-logger-0.1.6/tests/test.rs +0 -267
  955. data/ext/cargo-vendor/regalloc2-0.8.1/.cargo-checksum.json +0 -1
  956. data/ext/cargo-vendor/regalloc2-0.8.1/Cargo.toml +0 -72
  957. data/ext/cargo-vendor/regalloc2-0.8.1/deny.toml +0 -28
  958. data/ext/cargo-vendor/regalloc2-0.8.1/src/checker.rs +0 -1089
  959. data/ext/cargo-vendor/regalloc2-0.8.1/src/fuzzing/func.rs +0 -673
  960. data/ext/cargo-vendor/regalloc2-0.8.1/src/index.rs +0 -188
  961. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/data_structures.rs +0 -688
  962. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/liveranges.rs +0 -1012
  963. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/merge.rs +0 -394
  964. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/mod.rs +0 -152
  965. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/moves.rs +0 -985
  966. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/process.rs +0 -1322
  967. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/requirement.rs +0 -174
  968. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/spill.rs +0 -198
  969. data/ext/cargo-vendor/regalloc2-0.8.1/src/ion/stackmap.rs +0 -74
  970. data/ext/cargo-vendor/regalloc2-0.8.1/src/lib.rs +0 -1523
  971. data/ext/cargo-vendor/regalloc2-0.8.1/src/moves.rs +0 -438
  972. data/ext/cargo-vendor/wasi-cap-std-sync-9.0.4/.cargo-checksum.json +0 -1
  973. data/ext/cargo-vendor/wasi-cap-std-sync-9.0.4/Cargo.toml +0 -89
  974. data/ext/cargo-vendor/wasi-cap-std-sync-9.0.4/src/dir.rs +0 -465
  975. data/ext/cargo-vendor/wasi-cap-std-sync-9.0.4/src/lib.rs +0 -140
  976. data/ext/cargo-vendor/wasi-common-9.0.4/.cargo-checksum.json +0 -1
  977. data/ext/cargo-vendor/wasi-common-9.0.4/Cargo.toml +0 -86
  978. data/ext/cargo-vendor/wasi-common-9.0.4/src/ctx.rs +0 -127
  979. data/ext/cargo-vendor/wasi-common-9.0.4/src/file.rs +0 -260
  980. data/ext/cargo-vendor/wasi-common-9.0.4/src/snapshots/preview_1.rs +0 -1490
  981. data/ext/cargo-vendor/wasmparser-0.103.0/.cargo-checksum.json +0 -1
  982. data/ext/cargo-vendor/wasmparser-0.103.0/Cargo.lock +0 -692
  983. data/ext/cargo-vendor/wasmparser-0.103.0/Cargo.toml +0 -54
  984. data/ext/cargo-vendor/wasmparser-0.103.0/benches/benchmark.rs +0 -350
  985. data/ext/cargo-vendor/wasmparser-0.103.0/src/binary_reader.rs +0 -1682
  986. data/ext/cargo-vendor/wasmparser-0.103.0/src/lib.rs +0 -712
  987. data/ext/cargo-vendor/wasmparser-0.103.0/src/parser.rs +0 -1496
  988. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/component/canonicals.rs +0 -95
  989. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/component/exports.rs +0 -105
  990. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/component/imports.rs +0 -109
  991. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/component/instances.rs +0 -164
  992. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/component/types.rs +0 -508
  993. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/core/producers.rs +0 -78
  994. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/core/types.rs +0 -511
  995. data/ext/cargo-vendor/wasmparser-0.103.0/src/readers/core.rs +0 -33
  996. data/ext/cargo-vendor/wasmparser-0.103.0/src/validator/component.rs +0 -2097
  997. data/ext/cargo-vendor/wasmparser-0.103.0/src/validator/core.rs +0 -1278
  998. data/ext/cargo-vendor/wasmparser-0.103.0/src/validator/operators.rs +0 -3456
  999. data/ext/cargo-vendor/wasmparser-0.103.0/src/validator/types.rs +0 -2159
  1000. data/ext/cargo-vendor/wasmparser-0.103.0/src/validator.rs +0 -1514
  1001. data/ext/cargo-vendor/wasmtime-9.0.4/.cargo-checksum.json +0 -1
  1002. data/ext/cargo-vendor/wasmtime-9.0.4/Cargo.toml +0 -183
  1003. data/ext/cargo-vendor/wasmtime-9.0.4/build.rs +0 -20
  1004. data/ext/cargo-vendor/wasmtime-9.0.4/src/component/component.rs +0 -519
  1005. data/ext/cargo-vendor/wasmtime-9.0.4/src/component/instance.rs +0 -728
  1006. data/ext/cargo-vendor/wasmtime-9.0.4/src/component/matching.rs +0 -112
  1007. data/ext/cargo-vendor/wasmtime-9.0.4/src/component/mod.rs +0 -313
  1008. data/ext/cargo-vendor/wasmtime-9.0.4/src/config.rs +0 -2036
  1009. data/ext/cargo-vendor/wasmtime-9.0.4/src/engine/serialization.rs +0 -613
  1010. data/ext/cargo-vendor/wasmtime-9.0.4/src/engine.rs +0 -729
  1011. data/ext/cargo-vendor/wasmtime-9.0.4/src/externals.rs +0 -762
  1012. data/ext/cargo-vendor/wasmtime-9.0.4/src/func/typed.rs +0 -638
  1013. data/ext/cargo-vendor/wasmtime-9.0.4/src/func.rs +0 -2385
  1014. data/ext/cargo-vendor/wasmtime-9.0.4/src/instance.rs +0 -905
  1015. data/ext/cargo-vendor/wasmtime-9.0.4/src/lib.rs +0 -481
  1016. data/ext/cargo-vendor/wasmtime-9.0.4/src/linker.rs +0 -1479
  1017. data/ext/cargo-vendor/wasmtime-9.0.4/src/memory.rs +0 -948
  1018. data/ext/cargo-vendor/wasmtime-9.0.4/src/module.rs +0 -1542
  1019. data/ext/cargo-vendor/wasmtime-9.0.4/src/ref.rs +0 -108
  1020. data/ext/cargo-vendor/wasmtime-9.0.4/src/store/context.rs +0 -243
  1021. data/ext/cargo-vendor/wasmtime-9.0.4/src/store/func_refs.rs +0 -110
  1022. data/ext/cargo-vendor/wasmtime-9.0.4/src/store.rs +0 -2059
  1023. data/ext/cargo-vendor/wasmtime-9.0.4/src/trampoline/func.rs +0 -171
  1024. data/ext/cargo-vendor/wasmtime-9.0.4/src/trampoline/global.rs +0 -71
  1025. data/ext/cargo-vendor/wasmtime-9.0.4/src/types/matching.rs +0 -254
  1026. data/ext/cargo-vendor/wasmtime-9.0.4/src/types.rs +0 -551
  1027. data/ext/cargo-vendor/wasmtime-9.0.4/src/values.rs +0 -290
  1028. data/ext/cargo-vendor/wasmtime-asm-macros-9.0.4/.cargo-checksum.json +0 -1
  1029. data/ext/cargo-vendor/wasmtime-asm-macros-9.0.4/Cargo.toml +0 -22
  1030. data/ext/cargo-vendor/wasmtime-cache-9.0.4/.cargo-checksum.json +0 -1
  1031. data/ext/cargo-vendor/wasmtime-cache-9.0.4/Cargo.toml +0 -73
  1032. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/.cargo-checksum.json +0 -1
  1033. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/Cargo.toml +0 -58
  1034. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/src/bindgen.rs +0 -316
  1035. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/char.wit +0 -11
  1036. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/conventions.wit +0 -38
  1037. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/direct-import.wit +0 -3
  1038. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/empty.wit +0 -1
  1039. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/flags.wit +0 -53
  1040. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/floats.wit +0 -11
  1041. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/function-new.wit +0 -3
  1042. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/integers.wit +0 -38
  1043. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/lists.wit +0 -83
  1044. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/many-arguments.wit +0 -50
  1045. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/multi-return.wit +0 -12
  1046. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/records.wit +0 -59
  1047. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/rename.wit +0 -14
  1048. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/share-types.wit +0 -19
  1049. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/simple-functions.wit +0 -15
  1050. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/simple-lists.wit +0 -11
  1051. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/simple-wasi.wit +0 -21
  1052. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/small-anonymous.wit +0 -13
  1053. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/smoke-default.wit +0 -3
  1054. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/smoke-export.wit +0 -5
  1055. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/smoke.wit +0 -5
  1056. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/strings.wit +0 -10
  1057. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/unions.wit +0 -64
  1058. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/use-paths.wit +0 -27
  1059. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/variants.wit +0 -145
  1060. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen/worlds-with-types.wit +0 -14
  1061. data/ext/cargo-vendor/wasmtime-component-macro-9.0.4/tests/codegen.rs +0 -30
  1062. data/ext/cargo-vendor/wasmtime-component-util-9.0.4/.cargo-checksum.json +0 -1
  1063. data/ext/cargo-vendor/wasmtime-component-util-9.0.4/Cargo.toml +0 -25
  1064. data/ext/cargo-vendor/wasmtime-cranelift-9.0.4/.cargo-checksum.json +0 -1
  1065. data/ext/cargo-vendor/wasmtime-cranelift-9.0.4/Cargo.toml +0 -90
  1066. data/ext/cargo-vendor/wasmtime-cranelift-9.0.4/src/compiler.rs +0 -1200
  1067. data/ext/cargo-vendor/wasmtime-cranelift-9.0.4/src/debug/transform/simulate.rs +0 -411
  1068. data/ext/cargo-vendor/wasmtime-cranelift-9.0.4/src/func_environ.rs +0 -2162
  1069. data/ext/cargo-vendor/wasmtime-cranelift-9.0.4/src/lib.rs +0 -177
  1070. data/ext/cargo-vendor/wasmtime-cranelift-shared-9.0.4/.cargo-checksum.json +0 -1
  1071. data/ext/cargo-vendor/wasmtime-cranelift-shared-9.0.4/Cargo.toml +0 -57
  1072. data/ext/cargo-vendor/wasmtime-cranelift-shared-9.0.4/src/lib.rs +0 -119
  1073. data/ext/cargo-vendor/wasmtime-environ-9.0.4/.cargo-checksum.json +0 -1
  1074. data/ext/cargo-vendor/wasmtime-environ-9.0.4/Cargo.lock +0 -735
  1075. data/ext/cargo-vendor/wasmtime-environ-9.0.4/Cargo.toml +0 -116
  1076. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/component/compiler.rs +0 -84
  1077. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/component/translate/inline.rs +0 -1064
  1078. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/component/translate.rs +0 -1066
  1079. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/component/types.rs +0 -1903
  1080. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/fact.rs +0 -622
  1081. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/module.rs +0 -1043
  1082. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/module_environ.rs +0 -841
  1083. data/ext/cargo-vendor/wasmtime-environ-9.0.4/src/trap_encoding.rs +0 -234
  1084. data/ext/cargo-vendor/wasmtime-fiber-9.0.4/.cargo-checksum.json +0 -1
  1085. data/ext/cargo-vendor/wasmtime-fiber-9.0.4/Cargo.toml +0 -46
  1086. data/ext/cargo-vendor/wasmtime-fiber-9.0.4/src/lib.rs +0 -293
  1087. data/ext/cargo-vendor/wasmtime-fiber-9.0.4/src/unix.rs +0 -199
  1088. data/ext/cargo-vendor/wasmtime-fiber-9.0.4/src/windows.rs +0 -156
  1089. data/ext/cargo-vendor/wasmtime-jit-9.0.4/.cargo-checksum.json +0 -1
  1090. data/ext/cargo-vendor/wasmtime-jit-9.0.4/Cargo.toml +0 -100
  1091. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/instantiate.rs +0 -786
  1092. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/lib.rs +0 -39
  1093. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/profiling/jitdump_disabled.rs +0 -32
  1094. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/profiling/jitdump_linux.rs +0 -444
  1095. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/profiling/perfmap_disabled.rs +0 -28
  1096. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/profiling/perfmap_linux.rs +0 -104
  1097. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/profiling/vtune.rs +0 -147
  1098. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/profiling/vtune_disabled.rs +0 -32
  1099. data/ext/cargo-vendor/wasmtime-jit-9.0.4/src/profiling.rs +0 -74
  1100. data/ext/cargo-vendor/wasmtime-jit-debug-9.0.4/.cargo-checksum.json +0 -1
  1101. data/ext/cargo-vendor/wasmtime-jit-debug-9.0.4/Cargo.toml +0 -55
  1102. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-9.0.4/.cargo-checksum.json +0 -1
  1103. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-9.0.4/Cargo.toml +0 -37
  1104. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/.cargo-checksum.json +0 -1
  1105. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/Cargo.toml +0 -107
  1106. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/component.rs +0 -724
  1107. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/cow.rs +0 -1063
  1108. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/debug_builtins.rs +0 -56
  1109. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/externref.rs +0 -1078
  1110. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/instance/allocator/pooling.rs +0 -1371
  1111. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/instance/allocator.rs +0 -528
  1112. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/instance.rs +0 -1267
  1113. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/lib.rs +0 -286
  1114. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/libcalls.rs +0 -597
  1115. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/memory.rs +0 -945
  1116. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/mmap/miri.rs +0 -93
  1117. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/mmap/unix.rs +0 -147
  1118. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/mmap/windows.rs +0 -207
  1119. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/table.rs +0 -573
  1120. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/traphandlers/unix.rs +0 -387
  1121. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/traphandlers.rs +0 -664
  1122. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/vmcontext/vm_host_func_context.rs +0 -147
  1123. data/ext/cargo-vendor/wasmtime-runtime-9.0.4/src/vmcontext.rs +0 -1244
  1124. data/ext/cargo-vendor/wasmtime-types-9.0.4/.cargo-checksum.json +0 -1
  1125. data/ext/cargo-vendor/wasmtime-types-9.0.4/Cargo.toml +0 -34
  1126. data/ext/cargo-vendor/wasmtime-types-9.0.4/src/lib.rs +0 -413
  1127. data/ext/cargo-vendor/wasmtime-wasi-9.0.4/.cargo-checksum.json +0 -1
  1128. data/ext/cargo-vendor/wasmtime-wasi-9.0.4/Cargo.toml +0 -67
  1129. data/ext/cargo-vendor/wasmtime-wasi-9.0.4/src/lib.rs +0 -128
  1130. data/ext/cargo-vendor/wasmtime-winch-9.0.4/.cargo-checksum.json +0 -1
  1131. data/ext/cargo-vendor/wasmtime-winch-9.0.4/Cargo.toml +0 -66
  1132. data/ext/cargo-vendor/wasmtime-winch-9.0.4/src/compiler.rs +0 -191
  1133. data/ext/cargo-vendor/wasmtime-wit-bindgen-9.0.4/.cargo-checksum.json +0 -1
  1134. data/ext/cargo-vendor/wasmtime-wit-bindgen-9.0.4/Cargo.toml +0 -29
  1135. data/ext/cargo-vendor/wasmtime-wit-bindgen-9.0.4/src/lib.rs +0 -1488
  1136. data/ext/cargo-vendor/wasmtime-wit-bindgen-9.0.4/src/types.rs +0 -178
  1137. data/ext/cargo-vendor/wiggle-9.0.4/.cargo-checksum.json +0 -1
  1138. data/ext/cargo-vendor/wiggle-9.0.4/Cargo.toml +0 -106
  1139. data/ext/cargo-vendor/wiggle-9.0.4/README.md +0 -18
  1140. data/ext/cargo-vendor/wiggle-generate-9.0.4/.cargo-checksum.json +0 -1
  1141. data/ext/cargo-vendor/wiggle-generate-9.0.4/Cargo.toml +0 -58
  1142. data/ext/cargo-vendor/wiggle-macro-9.0.4/.cargo-checksum.json +0 -1
  1143. data/ext/cargo-vendor/wiggle-macro-9.0.4/Cargo.toml +0 -55
  1144. data/ext/cargo-vendor/wiggle-macro-9.0.4/src/lib.rs +0 -210
  1145. data/ext/cargo-vendor/winch-codegen-0.7.4/.cargo-checksum.json +0 -1
  1146. data/ext/cargo-vendor/winch-codegen-0.7.4/Cargo.toml +0 -59
  1147. data/ext/cargo-vendor/winch-codegen-0.7.4/src/abi/local.rs +0 -69
  1148. data/ext/cargo-vendor/winch-codegen-0.7.4/src/abi/mod.rs +0 -223
  1149. data/ext/cargo-vendor/winch-codegen-0.7.4/src/codegen/call.rs +0 -215
  1150. data/ext/cargo-vendor/winch-codegen-0.7.4/src/codegen/context.rs +0 -259
  1151. data/ext/cargo-vendor/winch-codegen-0.7.4/src/codegen/env.rs +0 -19
  1152. data/ext/cargo-vendor/winch-codegen-0.7.4/src/codegen/mod.rs +0 -183
  1153. data/ext/cargo-vendor/winch-codegen-0.7.4/src/frame/mod.rs +0 -166
  1154. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/aarch64/abi.rs +0 -221
  1155. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/aarch64/asm.rs +0 -244
  1156. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/aarch64/masm.rs +0 -221
  1157. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/aarch64/mod.rs +0 -122
  1158. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/aarch64/regs.rs +0 -160
  1159. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/mod.rs +0 -202
  1160. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/x64/abi.rs +0 -337
  1161. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/x64/address.rs +0 -17
  1162. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/x64/asm.rs +0 -499
  1163. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/x64/masm.rs +0 -267
  1164. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/x64/mod.rs +0 -135
  1165. data/ext/cargo-vendor/winch-codegen-0.7.4/src/isa/x64/regs.rs +0 -178
  1166. data/ext/cargo-vendor/winch-codegen-0.7.4/src/lib.rs +0 -20
  1167. data/ext/cargo-vendor/winch-codegen-0.7.4/src/masm.rs +0 -213
  1168. data/ext/cargo-vendor/winch-codegen-0.7.4/src/regalloc.rs +0 -61
  1169. data/ext/cargo-vendor/winch-codegen-0.7.4/src/stack.rs +0 -230
  1170. data/ext/cargo-vendor/winch-codegen-0.7.4/src/trampoline.rs +0 -206
  1171. data/ext/cargo-vendor/winch-codegen-0.7.4/src/visitor.rs +0 -215
  1172. data/ext/cargo-vendor/winch-environ-0.7.4/.cargo-checksum.json +0 -1
  1173. data/ext/cargo-vendor/winch-environ-0.7.4/Cargo.toml +0 -28
  1174. data/ext/cargo-vendor/winch-environ-0.7.4/src/lib.rs +0 -41
  1175. data/ext/cargo-vendor/wit-parser-0.7.1/.cargo-checksum.json +0 -1
  1176. data/ext/cargo-vendor/wit-parser-0.7.1/Cargo.toml +0 -59
  1177. data/ext/cargo-vendor/wit-parser-0.7.1/src/ast/lex.rs +0 -662
  1178. data/ext/cargo-vendor/wit-parser-0.7.1/src/ast/resolve.rs +0 -1072
  1179. data/ext/cargo-vendor/wit-parser-0.7.1/src/ast.rs +0 -1099
  1180. data/ext/cargo-vendor/wit-parser-0.7.1/src/lib.rs +0 -617
  1181. data/ext/cargo-vendor/wit-parser-0.7.1/src/live.rs +0 -123
  1182. data/ext/cargo-vendor/wit-parser-0.7.1/src/resolve.rs +0 -1478
  1183. data/ext/cargo-vendor/wit-parser-0.7.1/tests/all.rs +0 -168
  1184. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/comments.wit +0 -23
  1185. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/disambiguate-diamond/shared1.wit +0 -3
  1186. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/disambiguate-diamond/shared2.wit +0 -3
  1187. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/disambiguate-diamond/world.wit +0 -11
  1188. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/embedded.wit.md +0 -32
  1189. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -1
  1190. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/deps/corp/saas.wit +0 -2
  1191. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -1
  1192. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -3
  1193. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -11
  1194. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -3
  1195. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -5
  1196. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/foreign-deps/root.wit +0 -31
  1197. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/functions.wit +0 -12
  1198. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/multi-file/bar.wit +0 -19
  1199. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/multi-file/foo.wit +0 -15
  1200. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/alias-no-type.wit.result +0 -5
  1201. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-diamond/a.wit +0 -9
  1202. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-diamond/b.wit +0 -9
  1203. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-diamond/join.wit +0 -4
  1204. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-diamond.wit.result +0 -8
  1205. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-function.wit +0 -5
  1206. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-function.wit.result +0 -5
  1207. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-function2.wit +0 -5
  1208. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-function2.wit.result +0 -5
  1209. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg1/root.wit +0 -3
  1210. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg1.wit.result +0 -5
  1211. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg2/root.wit +0 -3
  1212. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg2.wit.result +0 -5
  1213. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  1214. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg3/root.wit +0 -3
  1215. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg3.wit.result +0 -5
  1216. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -3
  1217. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg4/root.wit +0 -3
  1218. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg4.wit.result +0 -5
  1219. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -2
  1220. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg5/root.wit +0 -3
  1221. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg5.wit.result +0 -5
  1222. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  1223. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg6/root.wit +0 -3
  1224. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-pkg6.wit.result +0 -5
  1225. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-world-type1.wit +0 -4
  1226. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-world-type1.wit.result +0 -5
  1227. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-world-type2.wit +0 -9
  1228. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/bad-world-type2.wit.result +0 -5
  1229. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle.wit +0 -5
  1230. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle.wit.result +0 -5
  1231. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle2.wit +0 -6
  1232. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle2.wit.result +0 -5
  1233. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle3.wit +0 -6
  1234. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle3.wit.result +0 -5
  1235. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle4.wit +0 -6
  1236. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle4.wit.result +0 -5
  1237. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle5.wit +0 -6
  1238. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/cycle5.wit.result +0 -5
  1239. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/default-interface1.wit +0 -3
  1240. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/default-interface1.wit.result +0 -5
  1241. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/default-world1.wit +0 -3
  1242. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/default-world1.wit.result +0 -5
  1243. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/duplicate-functions.wit +0 -6
  1244. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/duplicate-functions.wit.result +0 -5
  1245. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/duplicate-interface.wit +0 -4
  1246. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/duplicate-interface.wit.result +0 -5
  1247. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/duplicate-type.wit +0 -6
  1248. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/duplicate-type.wit.result +0 -5
  1249. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/empty-enum.wit +0 -5
  1250. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/empty-enum.wit.result +0 -5
  1251. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/empty-union.wit +0 -5
  1252. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/empty-union.wit.result +0 -5
  1253. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/empty-variant1.wit +0 -5
  1254. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/empty-variant1.wit.result +0 -5
  1255. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/import-export-overlap1.wit +0 -4
  1256. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -5
  1257. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/import-export-overlap2.wit +0 -4
  1258. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -5
  1259. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/import-export-overlap3.wit +0 -11
  1260. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/import-export-overlap3.wit.result +0 -6
  1261. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/invalid-md.wit.result +0 -5
  1262. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/invalid-type-reference.wit +0 -8
  1263. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -5
  1264. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/invalid-type-reference2.wit +0 -4
  1265. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -5
  1266. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/invalid@filename.wit +0 -0
  1267. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/invalid@filename.wit.result +0 -4
  1268. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -3
  1269. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/pkg-cycle/root.wit +0 -3
  1270. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/pkg-cycle.wit.result +0 -5
  1271. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -3
  1272. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -3
  1273. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -3
  1274. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -5
  1275. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/undefined-typed.wit +0 -5
  1276. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/undefined-typed.wit.result +0 -5
  1277. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unknown-interface.wit +0 -5
  1278. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unknown-interface.wit.result +0 -5
  1279. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface1.wit +0 -5
  1280. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -5
  1281. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface2.wit +0 -6
  1282. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -5
  1283. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface3.wit +0 -5
  1284. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -5
  1285. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface4.wit +0 -5
  1286. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -5
  1287. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface5.wit +0 -5
  1288. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-interface5.wit.result +0 -5
  1289. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use1.wit +0 -5
  1290. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use1.wit.result +0 -5
  1291. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -3
  1292. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use10.wit.result +0 -8
  1293. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use11/bar.wit +0 -3
  1294. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use11/foo.wit +0 -2
  1295. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use11.wit.result +0 -8
  1296. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use2.wit +0 -8
  1297. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use2.wit.result +0 -5
  1298. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use3.wit +0 -9
  1299. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use3.wit.result +0 -5
  1300. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use4.wit +0 -5
  1301. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use4.wit.result +0 -5
  1302. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use5.wit +0 -6
  1303. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use5.wit.result +0 -5
  1304. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use6.wit +0 -5
  1305. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use6.wit.result +0 -5
  1306. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use7.wit +0 -8
  1307. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use7.wit.result +0 -5
  1308. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use8.wit +0 -7
  1309. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use8.wit.result +0 -5
  1310. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use9.wit +0 -7
  1311. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/unresolved-use9.wit.result +0 -5
  1312. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-conflict.wit +0 -9
  1313. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-conflict.wit.result +0 -5
  1314. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-conflict2.wit +0 -11
  1315. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-conflict2.wit.result +0 -5
  1316. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-conflict3.wit +0 -11
  1317. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-conflict3.wit.result +0 -5
  1318. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle1.wit +0 -5
  1319. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle1.wit.result +0 -5
  1320. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle2.wit +0 -5
  1321. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle2.wit.result +0 -5
  1322. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle3.wit +0 -6
  1323. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle3.wit.result +0 -5
  1324. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle4.wit +0 -13
  1325. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-cycle4.wit.result +0 -5
  1326. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-from-package-world.wit +0 -8
  1327. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-from-package-world.wit.result +0 -5
  1328. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-from-package-world2/bar.wit +0 -3
  1329. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-from-package-world2/foo.wit +0 -2
  1330. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/use-from-package-world2.wit.result +0 -8
  1331. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-implicit-import1.wit +0 -10
  1332. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-implicit-import1.wit.result +0 -6
  1333. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-implicit-import2.wit +0 -9
  1334. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-implicit-import2.wit.result +0 -5
  1335. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-implicit-import3.wit +0 -9
  1336. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-implicit-import3.wit.result +0 -5
  1337. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-interface-clash.wit +0 -2
  1338. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-interface-clash.wit.result +0 -5
  1339. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields.wit +0 -9
  1340. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields.wit.result +0 -5
  1341. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields2.wit +0 -6
  1342. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields2.wit.result +0 -5
  1343. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields3.wit +0 -6
  1344. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields3.wit.result +0 -5
  1345. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields4.wit +0 -11
  1346. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-fields4.wit.result +0 -8
  1347. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-import.wit +0 -6
  1348. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-same-import.wit.result +0 -5
  1349. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-top-level-func.wit +0 -4
  1350. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-top-level-func.wit.result +0 -5
  1351. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-top-level-func2.wit +0 -3
  1352. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -5
  1353. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/worlds-same-fields5.wit +0 -16
  1354. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/parse-fail/worlds-same-fields5.wit.result +0 -9
  1355. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/shared-types.wit +0 -8
  1356. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/type-then-eof.wit +0 -3
  1357. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/types.wit +0 -59
  1358. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/use.wit +0 -33
  1359. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/wasi.wit +0 -176
  1360. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/world-diamond.wit +0 -20
  1361. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/world-top-level-funcs.wit +0 -7
  1362. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/worlds-with-types.wit +0 -32
  1363. data/ext/cargo-vendor/wit-parser-0.7.1/tests/ui/worlds.wit +0 -40
  1364. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/LICENSE +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/README.md +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/src/lib.rs +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/src/map.rs +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/src/node.rs +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/src/path.rs +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/src/pool.rs +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-bforest-0.96.4 → cranelift-bforest-0.97.1}/src/set.rs +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/LICENSE +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/README.md +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/build.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/alias_analysis.rs +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/binemit/mod.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/binemit/stack_map.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/bitset.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/cfg_printer.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/constant_hash.rs +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/context.rs +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ctxhash.rs +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/cursor.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/data_value.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/dbg.rs +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/dce.rs +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/dominator_tree.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/egraph/cost.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/egraph/domtree.rs +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/egraph/elaborate.rs +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/egraph.rs +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/flowgraph.rs +0 -0
  1393. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/fx.rs +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/incremental_cache.rs +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/inst_predicates.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/atomic_rmw_op.rs +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/builder.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/condcodes.rs +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/constant.rs +0 -0
  1400. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/dfg.rs +0 -0
  1401. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/dynamic_type.rs +0 -0
  1402. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/entities.rs +0 -0
  1403. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/extfunc.rs +0 -0
  1404. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/extname.rs +0 -0
  1405. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/function.rs +0 -0
  1406. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/globalvalue.rs +0 -0
  1407. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/immediates.rs +0 -0
  1408. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/instructions.rs +0 -0
  1409. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/jumptable.rs +0 -0
  1410. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/known_symbol.rs +0 -0
  1411. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/layout.rs +0 -0
  1412. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/libcall.rs +0 -0
  1413. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/memflags.rs +0 -0
  1414. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/mod.rs +0 -0
  1415. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/progpoint.rs +0 -0
  1416. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/sourceloc.rs +0 -0
  1417. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/stackslot.rs +0 -0
  1418. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/table.rs +0 -0
  1419. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/ir/types.rs +0 -0
  1420. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/inst/args.rs +0 -0
  1421. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/inst/regs.rs +0 -0
  1422. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1423. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/inst/unwind.rs +0 -0
  1424. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/inst_neon.isle +0 -0
  1425. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1426. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/lower.rs +0 -0
  1427. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1428. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/aarch64/settings.rs +0 -0
  1429. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/call_conv.rs +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/riscv64/inst/unwind.rs +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/riscv64/lower.rs +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/riscv64/settings.rs +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/inst/args.rs +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/inst/imms.rs +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/inst/regs.rs +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/inst/unwind.rs +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/lower/isle.rs +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/lower.rs +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/s390x/settings.rs +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/unwind/systemv.rs +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/unwind/winx64.rs +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/unwind.rs +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/x64/encoding/mod.rs +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/x64/inst/regs.rs +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/x64/inst/unwind.rs +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/isa/x64/settings.rs +0 -0
  1453. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/iterators.rs +0 -0
  1454. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/legalizer/globalvalue.rs +0 -0
  1455. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/legalizer/mod.rs +0 -0
  1456. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/legalizer/table.rs +0 -0
  1457. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/lib.rs +0 -0
  1458. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/loop_analysis.rs +0 -0
  1459. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/machinst/blockorder.rs +0 -0
  1460. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/machinst/helpers.rs +0 -0
  1461. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/machinst/inst_common.rs +0 -0
  1462. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/machinst/valueregs.rs +0 -0
  1463. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/nan_canonicalization.rs +0 -0
  1464. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/README.md +0 -0
  1465. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/arithmetic.isle +0 -0
  1466. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/bitops.isle +0 -0
  1467. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/cprop.isle +0 -0
  1468. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/extends.isle +0 -0
  1469. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/generated_code.rs +0 -0
  1470. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/icmp.isle +0 -0
  1471. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/remat.isle +0 -0
  1472. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/selects.isle +0 -0
  1473. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts/shifts.isle +0 -0
  1474. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/opts.rs +0 -0
  1475. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/prelude_opt.isle +0 -0
  1476. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/print_errors.rs +0 -0
  1477. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/remove_constant_phis.rs +0 -0
  1478. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/result.rs +0 -0
  1479. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/scoped_hash_map.rs +0 -0
  1480. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/souper_harvest.rs +0 -0
  1481. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/timing.rs +0 -0
  1482. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/unionfind.rs +0 -0
  1483. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/unreachable_code.rs +0 -0
  1484. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/value_label.rs +0 -0
  1485. /data/ext/cargo-vendor/{cranelift-codegen-0.96.4 → cranelift-codegen-0.97.1}/src/write.rs +0 -0
  1486. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/LICENSE +0 -0
  1487. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/README.md +0 -0
  1488. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/formats.rs +0 -0
  1489. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/instructions.rs +0 -0
  1490. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/isa.rs +0 -0
  1491. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/mod.rs +0 -0
  1492. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/operands.rs +0 -0
  1493. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/settings.rs +0 -0
  1494. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/types.rs +0 -0
  1495. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/cdsl/typevar.rs +0 -0
  1496. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/constant_hash.rs +0 -0
  1497. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/error.rs +0 -0
  1498. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/gen_inst.rs +0 -0
  1499. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/gen_settings.rs +0 -0
  1500. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/gen_types.rs +0 -0
  1501. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/isa/arm64.rs +0 -0
  1502. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/isa/mod.rs +0 -0
  1503. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/isa/riscv64.rs +0 -0
  1504. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/isa/s390x.rs +0 -0
  1505. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/lib.rs +0 -0
  1506. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/shared/entities.rs +0 -0
  1507. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/shared/formats.rs +0 -0
  1508. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/shared/immediates.rs +0 -0
  1509. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/shared/instructions.rs +0 -0
  1510. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/shared/mod.rs +0 -0
  1511. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/shared/types.rs +0 -0
  1512. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/srcgen.rs +0 -0
  1513. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.96.4 → cranelift-codegen-meta-0.97.1}/src/unique_table.rs +0 -0
  1514. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.96.4 → cranelift-codegen-shared-0.97.1}/LICENSE +0 -0
  1515. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.96.4 → cranelift-codegen-shared-0.97.1}/README.md +0 -0
  1516. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.96.4 → cranelift-codegen-shared-0.97.1}/src/constant_hash.rs +0 -0
  1517. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.96.4 → cranelift-codegen-shared-0.97.1}/src/constants.rs +0 -0
  1518. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.96.4 → cranelift-codegen-shared-0.97.1}/src/lib.rs +0 -0
  1519. /data/ext/cargo-vendor/{cranelift-control-0.96.4 → cranelift-control-0.97.1}/LICENSE +0 -0
  1520. /data/ext/cargo-vendor/{cranelift-control-0.96.4 → cranelift-control-0.97.1}/README.md +0 -0
  1521. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/LICENSE +0 -0
  1522. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/README.md +0 -0
  1523. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/boxed_slice.rs +0 -0
  1524. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/iter.rs +0 -0
  1525. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/keys.rs +0 -0
  1526. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/lib.rs +0 -0
  1527. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/map.rs +0 -0
  1528. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/packed_option.rs +0 -0
  1529. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/primary.rs +0 -0
  1530. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/set.rs +0 -0
  1531. /data/ext/cargo-vendor/{cranelift-entity-0.96.4 → cranelift-entity-0.97.1}/src/sparse.rs +0 -0
  1532. /data/ext/cargo-vendor/{cranelift-frontend-0.96.4 → cranelift-frontend-0.97.1}/LICENSE +0 -0
  1533. /data/ext/cargo-vendor/{cranelift-frontend-0.96.4 → cranelift-frontend-0.97.1}/README.md +0 -0
  1534. /data/ext/cargo-vendor/{cranelift-frontend-0.96.4 → cranelift-frontend-0.97.1}/src/frontend.rs +0 -0
  1535. /data/ext/cargo-vendor/{cranelift-frontend-0.96.4 → cranelift-frontend-0.97.1}/src/lib.rs +0 -0
  1536. /data/ext/cargo-vendor/{cranelift-frontend-0.96.4 → cranelift-frontend-0.97.1}/src/ssa.rs +0 -0
  1537. /data/ext/cargo-vendor/{cranelift-frontend-0.96.4 → cranelift-frontend-0.97.1}/src/switch.rs +0 -0
  1538. /data/ext/cargo-vendor/{cranelift-frontend-0.96.4 → cranelift-frontend-0.97.1}/src/variable.rs +0 -0
  1539. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/README.md +0 -0
  1540. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/build.rs +0 -0
  1541. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/bad_converters.isle +0 -0
  1542. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1543. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1544. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/error1.isle +0 -0
  1545. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/extra_parens.isle +0 -0
  1546. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/impure_expression.isle +0 -0
  1547. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/impure_rhs.isle +0 -0
  1548. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1549. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/fail/multi_prio.isle +0 -0
  1550. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/borrows.isle +0 -0
  1551. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/borrows_main.rs +0 -0
  1552. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/iflets.isle +0 -0
  1553. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/iflets_main.rs +0 -0
  1554. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/multi_constructor.isle +0 -0
  1555. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/multi_constructor_main.rs +0 -0
  1556. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/multi_extractor.isle +0 -0
  1557. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/multi_extractor_main.rs +0 -0
  1558. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/test.isle +0 -0
  1559. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/link/test_main.rs +0 -0
  1560. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/bound_var.isle +0 -0
  1561. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/construct_and_extract.isle +0 -0
  1562. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/conversions.isle +0 -0
  1563. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/conversions_extern.isle +0 -0
  1564. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/let.isle +0 -0
  1565. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/nodebug.isle +0 -0
  1566. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1567. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/test2.isle +0 -0
  1568. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/test3.isle +0 -0
  1569. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/test4.isle +0 -0
  1570. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/pass/tutorial.isle +0 -0
  1571. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/run/iconst.isle +0 -0
  1572. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/run/iconst_main.rs +0 -0
  1573. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/run/let_shadowing.isle +0 -0
  1574. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/isle_examples/run/let_shadowing_main.rs +0 -0
  1575. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/ast.rs +0 -0
  1576. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/codegen.rs +0 -0
  1577. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/compile.rs +0 -0
  1578. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/error.rs +0 -0
  1579. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/lexer.rs +0 -0
  1580. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/lib.rs +0 -0
  1581. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/log.rs +0 -0
  1582. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/overlap.rs +0 -0
  1583. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/parser.rs +0 -0
  1584. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/sema.rs +0 -0
  1585. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/serialize.rs +0 -0
  1586. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/src/trie_again.rs +0 -0
  1587. /data/ext/cargo-vendor/{cranelift-isle-0.96.4 → cranelift-isle-0.97.1}/tests/run_tests.rs +0 -0
  1588. /data/ext/cargo-vendor/{cranelift-native-0.96.4 → cranelift-native-0.97.1}/LICENSE +0 -0
  1589. /data/ext/cargo-vendor/{cranelift-native-0.96.4 → cranelift-native-0.97.1}/README.md +0 -0
  1590. /data/ext/cargo-vendor/{cranelift-native-0.96.4 → cranelift-native-0.97.1}/src/riscv.rs +0 -0
  1591. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/LICENSE +0 -0
  1592. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/README.md +0 -0
  1593. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/src/code_translator/bounds_checks.rs +0 -0
  1594. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/src/environ/mod.rs +0 -0
  1595. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/src/heap.rs +0 -0
  1596. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/src/lib.rs +0 -0
  1597. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/src/module_translator.rs +0 -0
  1598. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/src/state.rs +0 -0
  1599. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/tests/wasm_testsuite.rs +0 -0
  1600. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/arith.wat +0 -0
  1601. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/br_table.wat +0 -0
  1602. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/call-simd.wat +0 -0
  1603. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/call.wat +0 -0
  1604. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/embenchen_fannkuch.wat +0 -0
  1605. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/embenchen_fasta.wat +0 -0
  1606. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/embenchen_ifs.wat +0 -0
  1607. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/embenchen_primes.wat +0 -0
  1608. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/fac-multi-value.wat +0 -0
  1609. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/fibonacci.wat +0 -0
  1610. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/globals.wat +0 -0
  1611. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/icall-simd.wat +0 -0
  1612. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/icall.wat +0 -0
  1613. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-reachability-translation-0.wat +0 -0
  1614. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-reachability-translation-1.wat +0 -0
  1615. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-reachability-translation-2.wat +0 -0
  1616. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-reachability-translation-3.wat +0 -0
  1617. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-reachability-translation-4.wat +0 -0
  1618. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-reachability-translation-5.wat +0 -0
  1619. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-reachability-translation-6.wat +0 -0
  1620. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  1621. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/if-unreachable-else-params.wat +0 -0
  1622. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  1623. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/memory.wat +0 -0
  1624. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-0.wat +0 -0
  1625. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-1.wat +0 -0
  1626. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-10.wat +0 -0
  1627. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-11.wat +0 -0
  1628. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-12.wat +0 -0
  1629. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-13.wat +0 -0
  1630. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-14.wat +0 -0
  1631. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-15.wat +0 -0
  1632. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-16.wat +0 -0
  1633. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-17.wat +0 -0
  1634. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-2.wat +0 -0
  1635. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-3.wat +0 -0
  1636. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-4.wat +0 -0
  1637. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-5.wat +0 -0
  1638. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-6.wat +0 -0
  1639. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-7.wat +0 -0
  1640. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-8.wat +0 -0
  1641. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/multi-9.wat +0 -0
  1642. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/nullref.wat +0 -0
  1643. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/passive-data.wat +0 -0
  1644. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/pr2303.wat +0 -0
  1645. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/pr2559.wat +0 -0
  1646. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/ref-func-0.wat +0 -0
  1647. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/rust_fannkuch.wat +0 -0
  1648. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/select.wat +0 -0
  1649. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/simd-store.wat +0 -0
  1650. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/simd.wat +0 -0
  1651. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/table-copy.wat +0 -0
  1652. /data/ext/cargo-vendor/{cranelift-wasm-0.96.4 → cranelift-wasm-0.97.1}/wasmtests/unreachable_code.wat +0 -0
  1653. /data/ext/cargo-vendor/{file-per-thread-logger-0.1.6 → file-per-thread-logger-0.2.0}/LICENSE +0 -0
  1654. /data/ext/cargo-vendor/{file-per-thread-logger-0.1.6 → file-per-thread-logger-0.2.0}/README.md +0 -0
  1655. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/LICENSE +0 -0
  1656. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/README.md +0 -0
  1657. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/doc/DESIGN.md +0 -0
  1658. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/doc/TODO +0 -0
  1659. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/cfg.rs +0 -0
  1660. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/domtree.rs +0 -0
  1661. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/fuzzing/mod.rs +0 -0
  1662. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/indexset.rs +0 -0
  1663. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/ion/dump.rs +0 -0
  1664. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/ion/redundant_moves.rs +0 -0
  1665. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/ion/reg_traversal.rs +0 -0
  1666. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/postorder.rs +0 -0
  1667. /data/ext/cargo-vendor/{regalloc2-0.8.1 → regalloc2-0.9.2}/src/ssa.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/LICENSE +0 -0
  1669. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/README.md +0 -0
  1670. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/src/clocks.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/src/file.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/src/net.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/src/sched/unix.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/src/sched/windows.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/src/sched.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasi-cap-std-sync-9.0.4 → wasi-cap-std-sync-10.0.0}/src/stdio.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/LICENSE +0 -0
  1678. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/README.md +0 -0
  1679. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/README.md +0 -0
  1680. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/docs/README.md +0 -0
  1681. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/README.md +0 -0
  1682. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/docs.md +0 -0
  1683. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  1684. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  1685. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  1686. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  1687. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  1688. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  1689. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  1690. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  1691. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  1692. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  1693. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  1694. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
  1695. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  1696. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  1697. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/snapshot/docs.html +0 -0
  1698. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/snapshot/docs.md +0 -0
  1699. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  1700. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  1701. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/proposal-template/README.md +0 -0
  1702. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/proposals/README.md +0 -0
  1703. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/snapshots/README.md +0 -0
  1704. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/WASI/standard/README.md +0 -0
  1705. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/build.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/clocks.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/dir.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/error.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/lib.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/pipe.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/random.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/sched/subscription.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/sched.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/snapshots/mod.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/snapshots/preview_0.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/snapshots/preview_1/error.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/string_array.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasi-common-9.0.4 → wasi-common-10.0.0}/src/table.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasm-encoder-0.29.0}/LICENSE +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmparser-0.107.0}/LICENSE +0 -0
  1721. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/README.md +0 -0
  1722. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/examples/simple.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/limits.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/component/aliases.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/component/names.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/component/start.rs +0 -0
  1727. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/component.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/code.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/custom.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/data.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/elements.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/exports.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/functions.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/globals.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/imports.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/init.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/memories.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/names.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/operators.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/tables.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers/core/tags.rs +0 -0
  1742. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/readers.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/resources.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/src/validator/func.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmparser-0.103.0 → wasmparser-0.107.0}/tests/big-module.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmparser-0.111.0}/LICENSE +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmprinter-0.2.63}/LICENSE +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-10.0.0}/LICENSE +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/README.md +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/code.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/func/host.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/func/options.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/func/typed.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/func.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/linker.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/storage.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/store.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/types.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/component/values.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/limits.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/module/registry.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/profiling.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/signatures.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/store/data.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/trampoline/memory.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/trampoline/table.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/trampoline.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/trap.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/unix.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-9.0.4 → wasmtime-10.0.0}/src/windows.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-asm-macros-9.0.4 → wasmtime-asm-macros-10.0.0}/src/lib.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-cache-10.0.0}/LICENSE +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/build.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/src/config/tests.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/src/config.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/src/lib.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/src/tests.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/src/worker/tests.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/src/worker.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-cache-9.0.4 → wasmtime-cache-10.0.0}/tests/cache_write_default_config.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-component-macro-9.0.4 → wasmtime-component-macro-10.0.0}/src/component.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-component-macro-9.0.4 → wasmtime-component-macro-10.0.0}/src/lib.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-component-util-9.0.4 → wasmtime-component-util-10.0.0}/src/lib.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-cranelift-10.0.0}/LICENSE +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/SECURITY.md +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/builder.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/compiler/component.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/gc.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/address_transform.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/attr.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/expression.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/line_program.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/mod.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/refs.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/unit.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/transform/utils.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug/write_debuginfo.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-cranelift-9.0.4 → wasmtime-cranelift-10.0.0}/src/debug.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-9.0.4 → wasmtime-cranelift-shared-10.0.0}/src/compiled_function.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-9.0.4 → wasmtime-cranelift-shared-10.0.0}/src/isa_builder.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-9.0.4 → wasmtime-cranelift-shared-10.0.0}/src/obj.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-environ-10.0.0}/LICENSE +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/examples/factc.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/address_map.rs +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/builtin.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/compilation.rs +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/component/dfg.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/component/info.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/component/translate/adapt.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/component.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/fact/core_types.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/fact/signature.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/fact/trampoline.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/fact/transcode.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/fact/traps.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/lib.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/module_types.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/obj.rs +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/ref_bits.rs +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/scopevec.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/stack_map.rs +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/tunables.rs +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-environ-9.0.4 → wasmtime-environ-10.0.0}/src/vmoffsets.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-types-9.0.4 → wasmtime-fiber-10.0.0}/LICENSE +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/build.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/src/unix/aarch64.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/src/unix/arm.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/src/unix/riscv64.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/src/unix/s390x.S +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/src/unix/x86.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/src/unix/x86_64.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-fiber-9.0.4 → wasmtime-fiber-10.0.0}/src/windows.c +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-wasi-9.0.4 → wasmtime-jit-10.0.0}/LICENSE +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-jit-10.0.0}/src/code_memory.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-jit-10.0.0}/src/debug.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-jit-10.0.0}/src/demangling.rs +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-jit-10.0.0}/src/unwind/miri.rs +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-jit-10.0.0}/src/unwind/systemv.rs +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-jit-10.0.0}/src/unwind/winx64.rs +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-jit-9.0.4 → wasmtime-jit-10.0.0}/src/unwind.rs +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-jit-debug-9.0.4 → wasmtime-jit-debug-10.0.0}/README.md +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-jit-debug-9.0.4 → wasmtime-jit-debug-10.0.0}/src/gdb_jit_int.rs +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-jit-debug-9.0.4 → wasmtime-jit-debug-10.0.0}/src/lib.rs +0 -0
  1847. /data/ext/cargo-vendor/{wasmtime-jit-debug-9.0.4 → wasmtime-jit-debug-10.0.0}/src/perf_jitdump.rs +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-9.0.4 → wasmtime-jit-icache-coherence-10.0.0}/src/lib.rs +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-9.0.4 → wasmtime-jit-icache-coherence-10.0.0}/src/libc.rs +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-9.0.4 → wasmtime-jit-icache-coherence-10.0.0}/src/miri.rs +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-9.0.4 → wasmtime-jit-icache-coherence-10.0.0}/src/win.rs +0 -0
  1852. /data/ext/cargo-vendor/{wiggle-9.0.4 → wasmtime-runtime-10.0.0}/LICENSE +0 -0
  1853. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/build.rs +0 -0
  1854. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/component/transcode.rs +0 -0
  1855. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/export.rs +0 -0
  1856. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/helpers.c +0 -0
  1857. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/imports.rs +0 -0
  1858. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  1859. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
  1860. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
  1861. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/mmap.rs +0 -0
  1862. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/mmap_vec.rs +0 -0
  1863. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/module_id.rs +0 -0
  1864. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/parking_spot.rs +0 -0
  1865. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/store_box.rs +0 -0
  1866. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/trampolines/aarch64.rs +0 -0
  1867. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/trampolines/riscv64.rs +0 -0
  1868. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/trampolines/s390x.S +0 -0
  1869. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/trampolines/s390x.rs +0 -0
  1870. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/trampolines/x86_64.rs +0 -0
  1871. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/trampolines.rs +0 -0
  1872. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
  1873. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
  1874. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
  1875. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
  1876. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/traphandlers/backtrace.rs +0 -0
  1877. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/traphandlers/macos.rs +0 -0
  1878. /data/ext/cargo-vendor/{wasmtime-runtime-9.0.4 → wasmtime-runtime-10.0.0}/src/traphandlers/windows.rs +0 -0
  1879. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wasmtime-types-10.0.1}/LICENSE +0 -0
  1880. /data/ext/cargo-vendor/{wasmtime-types-9.0.4 → wasmtime-types-10.0.1}/src/error.rs +0 -0
  1881. /data/ext/cargo-vendor/{wiggle-macro-9.0.4 → wasmtime-wasi-10.0.0}/LICENSE +0 -0
  1882. /data/ext/cargo-vendor/{wasmtime-wasi-9.0.4 → wasmtime-wasi-10.0.0}/README.md +0 -0
  1883. /data/ext/cargo-vendor/{wasmtime-wasi-9.0.4 → wasmtime-wasi-10.0.0}/build.rs +0 -0
  1884. /data/ext/cargo-vendor/{wasmtime-winch-9.0.4 → wasmtime-winch-10.0.0}/LICENSE +0 -0
  1885. /data/ext/cargo-vendor/{wasmtime-winch-9.0.4 → wasmtime-winch-10.0.0}/src/builder.rs +0 -0
  1886. /data/ext/cargo-vendor/{wasmtime-winch-9.0.4 → wasmtime-winch-10.0.0}/src/lib.rs +0 -0
  1887. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-9.0.4 → wasmtime-wit-bindgen-10.0.0}/src/rust.rs +0 -0
  1888. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-9.0.4 → wasmtime-wit-bindgen-10.0.0}/src/source.rs +0 -0
  1889. /data/ext/cargo-vendor/{wiggle-9.0.4 → wiggle-10.0.0}/src/borrow.rs +0 -0
  1890. /data/ext/cargo-vendor/{wiggle-9.0.4 → wiggle-10.0.0}/src/error.rs +0 -0
  1891. /data/ext/cargo-vendor/{wiggle-9.0.4 → wiggle-10.0.0}/src/guest_type.rs +0 -0
  1892. /data/ext/cargo-vendor/{wiggle-9.0.4 → wiggle-10.0.0}/src/lib.rs +0 -0
  1893. /data/ext/cargo-vendor/{wiggle-9.0.4 → wiggle-10.0.0}/src/region.rs +0 -0
  1894. /data/ext/cargo-vendor/{wiggle-9.0.4 → wiggle-10.0.0}/src/wasmtime.rs +0 -0
  1895. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/README.md +0 -0
  1896. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/codegen_settings.rs +0 -0
  1897. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/config.rs +0 -0
  1898. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/funcs.rs +0 -0
  1899. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/lib.rs +0 -0
  1900. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/lifetimes.rs +0 -0
  1901. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/module_trait.rs +0 -0
  1902. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/names.rs +0 -0
  1903. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/types/error.rs +0 -0
  1904. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/types/flags.rs +0 -0
  1905. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/types/handle.rs +0 -0
  1906. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/types/mod.rs +0 -0
  1907. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/types/record.rs +0 -0
  1908. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/types/variant.rs +0 -0
  1909. /data/ext/cargo-vendor/{wiggle-generate-9.0.4 → wiggle-generate-10.0.0}/src/wasmtime.rs +0 -0
  1910. /data/ext/cargo-vendor/{winch-codegen-0.7.4 → winch-codegen-0.8.0}/LICENSE +0 -0
  1911. /data/ext/cargo-vendor/{winch-codegen-0.7.4 → winch-codegen-0.8.0}/build.rs +0 -0
  1912. /data/ext/cargo-vendor/{winch-codegen-0.7.4 → winch-codegen-0.8.0}/src/isa/aarch64/address.rs +0 -0
  1913. /data/ext/cargo-vendor/{winch-codegen-0.7.4 → winch-codegen-0.8.0}/src/isa/reg.rs +0 -0
  1914. /data/ext/cargo-vendor/{winch-codegen-0.7.4 → winch-codegen-0.8.0}/src/regset.rs +0 -0
  1915. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/README.md +0 -0
  1916. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/src/abi.rs +0 -0
  1917. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/src/ast/toposort.rs +0 -0
  1918. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/src/sizealign.rs +0 -0
  1919. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  1920. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/async.wit.result +0 -0
  1921. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  1922. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  1923. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  1924. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  1925. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  1926. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/invalid-md.md +0 -0
  1927. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  1928. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  1929. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/keyword.wit +0 -0
  1930. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  1931. /data/ext/cargo-vendor/{wit-parser-0.7.1/tests/ui/empty.wit → wit-parser-0.8.0/tests/ui/parse-fail/missing-package.wit} +0 -0
  1932. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  1933. /data/ext/cargo-vendor/{wit-parser-0.7.1 → wit-parser-0.8.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
@@ -1,3456 +0,0 @@
1
- /* Copyright 2019 Mozilla Foundation
2
- *
3
- * Licensed under the Apache License, Version 2.0 (the "License");
4
- * you may not use this file except in compliance with the License.
5
- * You may obtain a copy of the License at
6
- *
7
- * http://www.apache.org/licenses/LICENSE-2.0
8
- *
9
- * Unless required by applicable law or agreed to in writing, software
10
- * distributed under the License is distributed on an "AS IS" BASIS,
11
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12
- * See the License for the specific language governing permissions and
13
- * limitations under the License.
14
- */
15
-
16
- // The basic validation algorithm here is copied from the "Validation
17
- // Algorithm" section of the WebAssembly specification -
18
- // https://webassembly.github.io/spec/core/appendix/algorithm.html.
19
- //
20
- // That algorithm is followed pretty closely here, namely `push_operand`,
21
- // `pop_operand`, `push_ctrl`, and `pop_ctrl`. If anything here is a bit
22
- // confusing it's recommended to read over that section to see how it maps to
23
- // the various methods here.
24
-
25
- use crate::{
26
- limits::MAX_WASM_FUNCTION_LOCALS, BinaryReaderError, BlockType, BrTable, HeapType, Ieee32,
27
- Ieee64, MemArg, RefType, Result, ValType, VisitOperator, WasmFeatures, WasmFuncType,
28
- WasmModuleResources, V128,
29
- };
30
- use std::ops::{Deref, DerefMut};
31
-
32
- pub(crate) struct OperatorValidator {
33
- pub(super) locals: Locals,
34
- pub(super) local_inits: Vec<bool>,
35
-
36
- // This is a list of flags for wasm features which are used to gate various
37
- // instructions.
38
- pub(crate) features: WasmFeatures,
39
-
40
- // Temporary storage used during the validation of `br_table`.
41
- br_table_tmp: Vec<MaybeType>,
42
-
43
- /// The `control` list is the list of blocks that we're currently in.
44
- control: Vec<Frame>,
45
- /// The `operands` is the current type stack.
46
- operands: Vec<MaybeType>,
47
- /// When local_inits is modified, the relevant index is recorded here to be
48
- /// undone when control pops
49
- inits: Vec<u32>,
50
-
51
- /// Offset of the `end` instruction which emptied the `control` stack, which
52
- /// must be the end of the function.
53
- end_which_emptied_control: Option<usize>,
54
- }
55
-
56
- // No science was performed in the creation of this number, feel free to change
57
- // it if you so like.
58
- const MAX_LOCALS_TO_TRACK: usize = 50;
59
-
60
- pub(super) struct Locals {
61
- // Total number of locals in the function.
62
- num_locals: u32,
63
-
64
- // The first MAX_LOCALS_TO_TRACK locals in a function. This is used to
65
- // optimize the theoretically common case where most functions don't have
66
- // many locals and don't need a full binary search in the entire local space
67
- // below.
68
- first: Vec<ValType>,
69
-
70
- // This is a "compressed" list of locals for this function. The list of
71
- // locals are represented as a list of tuples. The second element is the
72
- // type of the local, and the first element is monotonically increasing as
73
- // you visit elements of this list. The first element is the maximum index
74
- // of the local, after the previous index, of the type specified.
75
- //
76
- // This allows us to do a binary search on the list for a local's index for
77
- // `local.{get,set,tee}`. We do a binary search for the index desired, and
78
- // it either lies in a "hole" where the maximum index is specified later,
79
- // or it's at the end of the list meaning it's out of bounds.
80
- all: Vec<(u32, ValType)>,
81
- }
82
-
83
- /// A Wasm control flow block on the control flow stack during Wasm validation.
84
- //
85
- // # Dev. Note
86
- //
87
- // This structure corresponds to `ctrl_frame` as specified at in the validation
88
- // appendix of the wasm spec
89
- #[derive(Debug, Copy, Clone)]
90
- pub struct Frame {
91
- /// Indicator for what kind of instruction pushed this frame.
92
- pub kind: FrameKind,
93
- /// The type signature of this frame, represented as a singular return type
94
- /// or a type index pointing into the module's types.
95
- pub block_type: BlockType,
96
- /// The index, below which, this frame cannot modify the operand stack.
97
- pub height: usize,
98
- /// Whether this frame is unreachable so far.
99
- pub unreachable: bool,
100
- /// The number of initializations in the stack at the time of its creation
101
- pub init_height: usize,
102
- }
103
-
104
- /// The kind of a control flow [`Frame`].
105
- #[derive(Copy, Clone, Debug, PartialEq, Eq)]
106
- pub enum FrameKind {
107
- /// A Wasm `block` control block.
108
- Block,
109
- /// A Wasm `if` control block.
110
- If,
111
- /// A Wasm `else` control block.
112
- Else,
113
- /// A Wasm `loop` control block.
114
- Loop,
115
- /// A Wasm `try` control block.
116
- ///
117
- /// # Note
118
- ///
119
- /// This belongs to the Wasm exception handling proposal.
120
- Try,
121
- /// A Wasm `catch` control block.
122
- ///
123
- /// # Note
124
- ///
125
- /// This belongs to the Wasm exception handling proposal.
126
- Catch,
127
- /// A Wasm `catch_all` control block.
128
- ///
129
- /// # Note
130
- ///
131
- /// This belongs to the Wasm exception handling proposal.
132
- CatchAll,
133
- }
134
-
135
- struct OperatorValidatorTemp<'validator, 'resources, T> {
136
- offset: usize,
137
- inner: &'validator mut OperatorValidator,
138
- resources: &'resources T,
139
- }
140
-
141
- #[derive(Default)]
142
- pub struct OperatorValidatorAllocations {
143
- br_table_tmp: Vec<MaybeType>,
144
- control: Vec<Frame>,
145
- operands: Vec<MaybeType>,
146
- local_inits: Vec<bool>,
147
- inits: Vec<u32>,
148
- locals_first: Vec<ValType>,
149
- locals_all: Vec<(u32, ValType)>,
150
- }
151
-
152
- /// Type storage within the validator.
153
- ///
154
- /// This is used to manage the operand stack and notably isn't just `ValType` to
155
- /// handle unreachable code and the "bottom" type.
156
- #[derive(Debug, Copy, Clone)]
157
- enum MaybeType {
158
- Bot,
159
- HeapBot,
160
- Type(ValType),
161
- }
162
-
163
- // The validator is pretty performance-sensitive and `MaybeType` is the main
164
- // unit of storage, so assert that it doesn't exceed 4 bytes which is the
165
- // current expected size.
166
- const _: () = {
167
- assert!(std::mem::size_of::<MaybeType>() == 4);
168
- };
169
-
170
- impl From<ValType> for MaybeType {
171
- fn from(ty: ValType) -> MaybeType {
172
- MaybeType::Type(ty)
173
- }
174
- }
175
-
176
- impl From<RefType> for MaybeType {
177
- fn from(ty: RefType) -> MaybeType {
178
- let ty: ValType = ty.into();
179
- ty.into()
180
- }
181
- }
182
-
183
- impl OperatorValidator {
184
- fn new(features: &WasmFeatures, allocs: OperatorValidatorAllocations) -> Self {
185
- let OperatorValidatorAllocations {
186
- br_table_tmp,
187
- control,
188
- operands,
189
- local_inits,
190
- inits,
191
- locals_first,
192
- locals_all,
193
- } = allocs;
194
- debug_assert!(br_table_tmp.is_empty());
195
- debug_assert!(control.is_empty());
196
- debug_assert!(operands.is_empty());
197
- debug_assert!(local_inits.is_empty());
198
- debug_assert!(inits.is_empty());
199
- debug_assert!(locals_first.is_empty());
200
- debug_assert!(locals_all.is_empty());
201
- OperatorValidator {
202
- locals: Locals {
203
- num_locals: 0,
204
- first: locals_first,
205
- all: locals_all,
206
- },
207
- local_inits,
208
- inits,
209
- features: *features,
210
- br_table_tmp,
211
- operands,
212
- control,
213
- end_which_emptied_control: None,
214
- }
215
- }
216
-
217
- /// Creates a new operator validator which will be used to validate a
218
- /// function whose type is the `ty` index specified.
219
- ///
220
- /// The `resources` are used to learn about the function type underlying
221
- /// `ty`.
222
- pub fn new_func<T>(
223
- ty: u32,
224
- offset: usize,
225
- features: &WasmFeatures,
226
- resources: &T,
227
- allocs: OperatorValidatorAllocations,
228
- ) -> Result<Self>
229
- where
230
- T: WasmModuleResources,
231
- {
232
- let mut ret = OperatorValidator::new(features, allocs);
233
- ret.control.push(Frame {
234
- kind: FrameKind::Block,
235
- block_type: BlockType::FuncType(ty),
236
- height: 0,
237
- unreachable: false,
238
- init_height: 0,
239
- });
240
- let params = OperatorValidatorTemp {
241
- // This offset is used by the `func_type_at` and `inputs`.
242
- offset,
243
- inner: &mut ret,
244
- resources,
245
- }
246
- .func_type_at(ty)?
247
- .inputs();
248
- for ty in params {
249
- ret.locals.define(1, ty);
250
- ret.local_inits.push(true);
251
- }
252
- Ok(ret)
253
- }
254
-
255
- /// Creates a new operator validator which will be used to validate an
256
- /// `init_expr` constant expression which should result in the `ty`
257
- /// specified.
258
- pub fn new_const_expr(
259
- features: &WasmFeatures,
260
- ty: ValType,
261
- allocs: OperatorValidatorAllocations,
262
- ) -> Self {
263
- let mut ret = OperatorValidator::new(features, allocs);
264
- ret.control.push(Frame {
265
- kind: FrameKind::Block,
266
- block_type: BlockType::Type(ty),
267
- height: 0,
268
- unreachable: false,
269
- init_height: 0,
270
- });
271
- ret
272
- }
273
-
274
- pub fn define_locals(
275
- &mut self,
276
- offset: usize,
277
- count: u32,
278
- ty: ValType,
279
- resources: &impl WasmModuleResources,
280
- ) -> Result<()> {
281
- resources.check_value_type(ty, &self.features, offset)?;
282
- if count == 0 {
283
- return Ok(());
284
- }
285
- if !self.locals.define(count, ty) {
286
- return Err(BinaryReaderError::new(
287
- "too many locals: locals exceed maximum",
288
- offset,
289
- ));
290
- }
291
- self.local_inits
292
- .resize(self.local_inits.len() + count as usize, ty.is_defaultable());
293
- Ok(())
294
- }
295
-
296
- /// Returns the current operands stack height.
297
- pub fn operand_stack_height(&self) -> usize {
298
- self.operands.len()
299
- }
300
-
301
- /// Returns the optional value type of the value operand at the given
302
- /// `depth` from the top of the operand stack.
303
- ///
304
- /// - Returns `None` if the `depth` is out of bounds.
305
- /// - Returns `Some(None)` if there is a value with unknown type
306
- /// at the given `depth`.
307
- ///
308
- /// # Note
309
- ///
310
- /// A `depth` of 0 will refer to the last operand on the stack.
311
- pub fn peek_operand_at(&self, depth: usize) -> Option<Option<ValType>> {
312
- Some(match self.operands.iter().rev().nth(depth)? {
313
- MaybeType::Type(t) => Some(*t),
314
- MaybeType::Bot | MaybeType::HeapBot => None,
315
- })
316
- }
317
-
318
- /// Returns the number of frames on the control flow stack.
319
- pub fn control_stack_height(&self) -> usize {
320
- self.control.len()
321
- }
322
-
323
- pub fn get_frame(&self, depth: usize) -> Option<&Frame> {
324
- self.control.iter().rev().nth(depth)
325
- }
326
-
327
- /// Create a temporary [`OperatorValidatorTemp`] for validation.
328
- pub fn with_resources<'a, 'validator, 'resources, T>(
329
- &'validator mut self,
330
- resources: &'resources T,
331
- offset: usize,
332
- ) -> impl VisitOperator<'a, Output = Result<()>> + 'validator
333
- where
334
- T: WasmModuleResources,
335
- 'resources: 'validator,
336
- {
337
- WasmProposalValidator(OperatorValidatorTemp {
338
- offset,
339
- inner: self,
340
- resources,
341
- })
342
- }
343
-
344
- pub fn finish(&mut self, offset: usize) -> Result<()> {
345
- if self.control.last().is_some() {
346
- bail!(
347
- offset,
348
- "control frames remain at end of function: END opcode expected"
349
- );
350
- }
351
-
352
- // The `end` opcode is one byte which means that the `offset` here
353
- // should point just beyond the `end` opcode which emptied the control
354
- // stack. If not that means more instructions were present after the
355
- // control stack was emptied.
356
- if offset != self.end_which_emptied_control.unwrap() + 1 {
357
- return Err(self.err_beyond_end(offset));
358
- }
359
- Ok(())
360
- }
361
-
362
- fn err_beyond_end(&self, offset: usize) -> BinaryReaderError {
363
- format_err!(offset, "operators remaining after end of function")
364
- }
365
-
366
- pub fn into_allocations(self) -> OperatorValidatorAllocations {
367
- fn truncate<T>(mut tmp: Vec<T>) -> Vec<T> {
368
- tmp.truncate(0);
369
- tmp
370
- }
371
- OperatorValidatorAllocations {
372
- br_table_tmp: truncate(self.br_table_tmp),
373
- control: truncate(self.control),
374
- operands: truncate(self.operands),
375
- local_inits: truncate(self.local_inits),
376
- inits: truncate(self.inits),
377
- locals_first: truncate(self.locals.first),
378
- locals_all: truncate(self.locals.all),
379
- }
380
- }
381
- }
382
-
383
- impl<R> Deref for OperatorValidatorTemp<'_, '_, R> {
384
- type Target = OperatorValidator;
385
- fn deref(&self) -> &OperatorValidator {
386
- self.inner
387
- }
388
- }
389
-
390
- impl<R> DerefMut for OperatorValidatorTemp<'_, '_, R> {
391
- fn deref_mut(&mut self) -> &mut OperatorValidator {
392
- self.inner
393
- }
394
- }
395
-
396
- impl<'resources, R: WasmModuleResources> OperatorValidatorTemp<'_, 'resources, R> {
397
- /// Pushes a type onto the operand stack.
398
- ///
399
- /// This is used by instructions to represent a value that is pushed to the
400
- /// operand stack. This can fail, but only if `Type` is feature gated.
401
- /// Otherwise the push operation always succeeds.
402
- fn push_operand<T>(&mut self, ty: T) -> Result<()>
403
- where
404
- T: Into<MaybeType>,
405
- {
406
- let maybe_ty = ty.into();
407
- self.operands.push(maybe_ty);
408
- Ok(())
409
- }
410
-
411
- /// Attempts to pop a type from the operand stack.
412
- ///
413
- /// This function is used to remove types from the operand stack. The
414
- /// `expected` argument can be used to indicate that a type is required, or
415
- /// simply that something is needed to be popped.
416
- ///
417
- /// If `expected` is `Some(T)` then this will be guaranteed to return
418
- /// `T`, and it will only return success if the current block is
419
- /// unreachable or if `T` was found at the top of the operand stack.
420
- ///
421
- /// If `expected` is `None` then it indicates that something must be on the
422
- /// operand stack, but it doesn't matter what's on the operand stack. This
423
- /// is useful for polymorphic instructions like `select`.
424
- ///
425
- /// If `Some(T)` is returned then `T` was popped from the operand stack and
426
- /// matches `expected`. If `None` is returned then it means that `None` was
427
- /// expected and a type was successfully popped, but its exact type is
428
- /// indeterminate because the current block is unreachable.
429
- fn pop_operand(&mut self, expected: Option<ValType>) -> Result<MaybeType> {
430
- // This method is one of the hottest methods in the validator so to
431
- // improve codegen this method contains a fast-path success case where
432
- // if the top operand on the stack is as expected it's returned
433
- // immediately. This is the most common case where the stack will indeed
434
- // have the expected type and all we need to do is pop it off.
435
- //
436
- // Note that this still has to be careful to be correct, though. For
437
- // efficiency an operand is unconditionally popped and on success it is
438
- // matched against the state of the world to see if we could actually
439
- // pop it. If we shouldn't have popped it then it's passed to the slow
440
- // path to get pushed back onto the stack.
441
- let popped = match self.operands.pop() {
442
- Some(MaybeType::Type(actual_ty)) => {
443
- if Some(actual_ty) == expected {
444
- if let Some(control) = self.control.last() {
445
- if self.operands.len() >= control.height {
446
- return Ok(MaybeType::Type(actual_ty));
447
- }
448
- }
449
- }
450
- Some(MaybeType::Type(actual_ty))
451
- }
452
- other => other,
453
- };
454
-
455
- self._pop_operand(expected, popped)
456
- }
457
-
458
- // This is the "real" implementation of `pop_operand` which is 100%
459
- // spec-compliant with little attention paid to efficiency since this is the
460
- // slow-path from the actual `pop_operand` function above.
461
- #[cold]
462
- fn _pop_operand(
463
- &mut self,
464
- expected: Option<ValType>,
465
- popped: Option<MaybeType>,
466
- ) -> Result<MaybeType> {
467
- self.operands.extend(popped);
468
- let control = match self.control.last() {
469
- Some(c) => c,
470
- None => return Err(self.err_beyond_end(self.offset)),
471
- };
472
- let actual = if self.operands.len() == control.height && control.unreachable {
473
- MaybeType::Bot
474
- } else {
475
- if self.operands.len() == control.height {
476
- let desc = match expected {
477
- Some(ty) => ty_to_str(ty),
478
- None => "a type",
479
- };
480
- bail!(
481
- self.offset,
482
- "type mismatch: expected {desc} but nothing on stack"
483
- )
484
- } else {
485
- self.operands.pop().unwrap()
486
- }
487
- };
488
- if let Some(expected) = expected {
489
- match (actual, expected) {
490
- // The bottom type matches all expectations
491
- (MaybeType::Bot, _)
492
- // The "heap bottom" type only matches other references types,
493
- // but not any integer types.
494
- | (MaybeType::HeapBot, ValType::Ref(_)) => {}
495
-
496
- // Use the `matches` predicate to test if a found type matches
497
- // the expectation.
498
- (MaybeType::Type(actual), expected) => {
499
- if !self.resources.matches(actual, expected) {
500
- bail!(
501
- self.offset,
502
- "type mismatch: expected {}, found {}",
503
- ty_to_str(expected),
504
- ty_to_str(actual)
505
- );
506
- }
507
- }
508
-
509
- // A "heap bottom" type cannot match any numeric types.
510
- (
511
- MaybeType::HeapBot,
512
- ValType::I32 | ValType::I64 | ValType::F32 | ValType::F64 | ValType::V128,
513
- ) => {
514
- bail!(
515
- self.offset,
516
- "type mismatche: expected {}, found heap type",
517
- ty_to_str(expected)
518
- )
519
- }
520
- }
521
- }
522
- Ok(actual)
523
- }
524
-
525
- fn pop_ref(&mut self) -> Result<Option<RefType>> {
526
- match self.pop_operand(None)? {
527
- MaybeType::Bot | MaybeType::HeapBot => Ok(None),
528
- MaybeType::Type(ValType::Ref(rt)) => Ok(Some(rt)),
529
- MaybeType::Type(ty) => bail!(
530
- self.offset,
531
- "type mismatch: expected ref but found {}",
532
- ty_to_str(ty)
533
- ),
534
- }
535
- }
536
-
537
- /// Fetches the type for the local at `idx`, returning an error if it's out
538
- /// of bounds.
539
- fn local(&self, idx: u32) -> Result<ValType> {
540
- match self.locals.get(idx) {
541
- Some(ty) => Ok(ty),
542
- None => bail!(
543
- self.offset,
544
- "unknown local {}: local index out of bounds",
545
- idx
546
- ),
547
- }
548
- }
549
-
550
- /// Flags the current control frame as unreachable, additionally truncating
551
- /// the currently active operand stack.
552
- fn unreachable(&mut self) -> Result<()> {
553
- let control = match self.control.last_mut() {
554
- Some(frame) => frame,
555
- None => return Err(self.err_beyond_end(self.offset)),
556
- };
557
- control.unreachable = true;
558
- let new_height = control.height;
559
- self.operands.truncate(new_height);
560
- Ok(())
561
- }
562
-
563
- /// Pushes a new frame onto the control stack.
564
- ///
565
- /// This operation is used when entering a new block such as an if, loop,
566
- /// or block itself. The `kind` of block is specified which indicates how
567
- /// breaks interact with this block's type. Additionally the type signature
568
- /// of the block is specified by `ty`.
569
- fn push_ctrl(&mut self, kind: FrameKind, ty: BlockType) -> Result<()> {
570
- // Push a new frame which has a snapshot of the height of the current
571
- // operand stack.
572
- let height = self.operands.len();
573
- let init_height = self.inits.len();
574
- self.control.push(Frame {
575
- kind,
576
- block_type: ty,
577
- height,
578
- unreachable: false,
579
- init_height,
580
- });
581
- // All of the parameters are now also available in this control frame,
582
- // so we push them here in order.
583
- for ty in self.params(ty)? {
584
- self.push_operand(ty)?;
585
- }
586
- Ok(())
587
- }
588
-
589
- /// Pops a frame from the control stack.
590
- ///
591
- /// This function is used when exiting a block and leaves a block scope.
592
- /// Internally this will validate that blocks have the correct result type.
593
- fn pop_ctrl(&mut self) -> Result<Frame> {
594
- // Read the expected type and expected height of the operand stack the
595
- // end of the frame.
596
- let frame = match self.control.last() {
597
- Some(f) => f,
598
- None => return Err(self.err_beyond_end(self.offset)),
599
- };
600
- let ty = frame.block_type;
601
- let height = frame.height;
602
- let init_height = frame.init_height;
603
-
604
- // reset_locals in the spec
605
- for init in self.inits.split_off(init_height) {
606
- self.local_inits[init as usize] = false;
607
- }
608
-
609
- // Pop all the result types, in reverse order, from the operand stack.
610
- // These types will, possibly, be transferred to the next frame.
611
- for ty in self.results(ty)?.rev() {
612
- self.pop_operand(Some(ty))?;
613
- }
614
-
615
- // Make sure that the operand stack has returned to is original
616
- // height...
617
- if self.operands.len() != height {
618
- bail!(
619
- self.offset,
620
- "type mismatch: values remaining on stack at end of block"
621
- );
622
- }
623
-
624
- // And then we can remove it!
625
- Ok(self.control.pop().unwrap())
626
- }
627
-
628
- /// Validates a relative jump to the `depth` specified.
629
- ///
630
- /// Returns the type signature of the block that we're jumping to as well
631
- /// as the kind of block if the jump is valid. Otherwise returns an error.
632
- fn jump(&self, depth: u32) -> Result<(BlockType, FrameKind)> {
633
- if self.control.is_empty() {
634
- return Err(self.err_beyond_end(self.offset));
635
- }
636
- match (self.control.len() - 1).checked_sub(depth as usize) {
637
- Some(i) => {
638
- let frame = &self.control[i];
639
- Ok((frame.block_type, frame.kind))
640
- }
641
- None => bail!(self.offset, "unknown label: branch depth too large"),
642
- }
643
- }
644
-
645
- /// Validates that `memory_index` is valid in this module, and returns the
646
- /// type of address used to index the memory specified.
647
- fn check_memory_index(&self, memory_index: u32) -> Result<ValType> {
648
- match self.resources.memory_at(memory_index) {
649
- Some(mem) => Ok(mem.index_type()),
650
- None => bail!(self.offset, "unknown memory {}", memory_index),
651
- }
652
- }
653
-
654
- /// Validates a `memarg for alignment and such (also the memory it
655
- /// references), and returns the type of index used to address the memory.
656
- fn check_memarg(&self, memarg: MemArg) -> Result<ValType> {
657
- let index_ty = self.check_memory_index(memarg.memory)?;
658
- if memarg.align > memarg.max_align {
659
- bail!(self.offset, "alignment must not be larger than natural");
660
- }
661
- if index_ty == ValType::I32 && memarg.offset > u64::from(u32::MAX) {
662
- bail!(self.offset, "offset out of range: must be <= 2**32");
663
- }
664
- Ok(index_ty)
665
- }
666
-
667
- fn check_floats_enabled(&self) -> Result<()> {
668
- if !self.features.floats {
669
- bail!(self.offset, "floating-point instruction disallowed");
670
- }
671
- Ok(())
672
- }
673
-
674
- fn check_shared_memarg(&self, memarg: MemArg) -> Result<ValType> {
675
- if memarg.align != memarg.max_align {
676
- bail!(
677
- self.offset,
678
- "atomic instructions must always specify maximum alignment"
679
- );
680
- }
681
- self.check_memory_index(memarg.memory)
682
- }
683
-
684
- fn check_simd_lane_index(&self, index: u8, max: u8) -> Result<()> {
685
- if index >= max {
686
- bail!(self.offset, "SIMD index out of bounds");
687
- }
688
- Ok(())
689
- }
690
-
691
- /// Validates a block type, primarily with various in-flight proposals.
692
- fn check_block_type(&self, ty: BlockType) -> Result<()> {
693
- match ty {
694
- BlockType::Empty => Ok(()),
695
- BlockType::Type(t) => self
696
- .resources
697
- .check_value_type(t, &self.features, self.offset),
698
- BlockType::FuncType(idx) => {
699
- if !self.features.multi_value {
700
- bail!(
701
- self.offset,
702
- "blocks, loops, and ifs may only produce a resulttype \
703
- when multi-value is not enabled",
704
- );
705
- }
706
- self.func_type_at(idx)?;
707
- Ok(())
708
- }
709
- }
710
- }
711
-
712
- /// Validates a `call` instruction, ensuring that the function index is
713
- /// in-bounds and the right types are on the stack to call the function.
714
- fn check_call(&mut self, function_index: u32) -> Result<()> {
715
- let ty = match self.resources.type_index_of_function(function_index) {
716
- Some(i) => i,
717
- None => {
718
- bail!(
719
- self.offset,
720
- "unknown function {function_index}: function index out of bounds",
721
- );
722
- }
723
- };
724
- self.check_call_ty(ty)
725
- }
726
-
727
- fn check_call_ty(&mut self, type_index: u32) -> Result<()> {
728
- let ty = match self.resources.func_type_at(type_index) {
729
- Some(i) => i,
730
- None => {
731
- bail!(
732
- self.offset,
733
- "unknown type {type_index}: type index out of bounds",
734
- );
735
- }
736
- };
737
- for ty in ty.inputs().rev() {
738
- self.pop_operand(Some(ty))?;
739
- }
740
- for ty in ty.outputs() {
741
- self.push_operand(ty)?;
742
- }
743
- Ok(())
744
- }
745
-
746
- /// Validates a call to an indirect function, very similar to `check_call`.
747
- fn check_call_indirect(&mut self, index: u32, table_index: u32) -> Result<()> {
748
- match self.resources.table_at(table_index) {
749
- None => {
750
- bail!(self.offset, "unknown table: table index out of bounds");
751
- }
752
- Some(tab) => {
753
- if !self
754
- .resources
755
- .matches(ValType::Ref(tab.element_type), ValType::FUNCREF)
756
- {
757
- bail!(
758
- self.offset,
759
- "indirect calls must go through a table with type <= funcref",
760
- );
761
- }
762
- }
763
- }
764
- let ty = self.func_type_at(index)?;
765
- self.pop_operand(Some(ValType::I32))?;
766
- for ty in ty.inputs().rev() {
767
- self.pop_operand(Some(ty))?;
768
- }
769
- for ty in ty.outputs() {
770
- self.push_operand(ty)?;
771
- }
772
- Ok(())
773
- }
774
-
775
- /// Validates a `return` instruction, popping types from the operand
776
- /// stack that the function needs.
777
- fn check_return(&mut self) -> Result<()> {
778
- if self.control.is_empty() {
779
- return Err(self.err_beyond_end(self.offset));
780
- }
781
- for ty in self.results(self.control[0].block_type)?.rev() {
782
- self.pop_operand(Some(ty))?;
783
- }
784
- self.unreachable()?;
785
- Ok(())
786
- }
787
-
788
- /// Checks the validity of a common comparison operator.
789
- fn check_cmp_op(&mut self, ty: ValType) -> Result<()> {
790
- self.pop_operand(Some(ty))?;
791
- self.pop_operand(Some(ty))?;
792
- self.push_operand(ValType::I32)?;
793
- Ok(())
794
- }
795
-
796
- /// Checks the validity of a common float comparison operator.
797
- fn check_fcmp_op(&mut self, ty: ValType) -> Result<()> {
798
- debug_assert!(matches!(ty, ValType::F32 | ValType::F64));
799
- self.check_floats_enabled()?;
800
- self.check_cmp_op(ty)
801
- }
802
-
803
- /// Checks the validity of a common unary operator.
804
- fn check_unary_op(&mut self, ty: ValType) -> Result<()> {
805
- self.pop_operand(Some(ty))?;
806
- self.push_operand(ty)?;
807
- Ok(())
808
- }
809
-
810
- /// Checks the validity of a common unary float operator.
811
- fn check_funary_op(&mut self, ty: ValType) -> Result<()> {
812
- debug_assert!(matches!(ty, ValType::F32 | ValType::F64));
813
- self.check_floats_enabled()?;
814
- self.check_unary_op(ty)
815
- }
816
-
817
- /// Checks the validity of a common conversion operator.
818
- fn check_conversion_op(&mut self, into: ValType, from: ValType) -> Result<()> {
819
- self.pop_operand(Some(from))?;
820
- self.push_operand(into)?;
821
- Ok(())
822
- }
823
-
824
- /// Checks the validity of a common conversion operator.
825
- fn check_fconversion_op(&mut self, into: ValType, from: ValType) -> Result<()> {
826
- debug_assert!(matches!(into, ValType::F32 | ValType::F64));
827
- self.check_floats_enabled()?;
828
- self.check_conversion_op(into, from)
829
- }
830
-
831
- /// Checks the validity of a common binary operator.
832
- fn check_binary_op(&mut self, ty: ValType) -> Result<()> {
833
- self.pop_operand(Some(ty))?;
834
- self.pop_operand(Some(ty))?;
835
- self.push_operand(ty)?;
836
- Ok(())
837
- }
838
-
839
- /// Checks the validity of a common binary float operator.
840
- fn check_fbinary_op(&mut self, ty: ValType) -> Result<()> {
841
- debug_assert!(matches!(ty, ValType::F32 | ValType::F64));
842
- self.check_floats_enabled()?;
843
- self.check_binary_op(ty)
844
- }
845
-
846
- /// Checks the validity of an atomic load operator.
847
- fn check_atomic_load(&mut self, memarg: MemArg, load_ty: ValType) -> Result<()> {
848
- let ty = self.check_shared_memarg(memarg)?;
849
- self.pop_operand(Some(ty))?;
850
- self.push_operand(load_ty)?;
851
- Ok(())
852
- }
853
-
854
- /// Checks the validity of an atomic store operator.
855
- fn check_atomic_store(&mut self, memarg: MemArg, store_ty: ValType) -> Result<()> {
856
- let ty = self.check_shared_memarg(memarg)?;
857
- self.pop_operand(Some(store_ty))?;
858
- self.pop_operand(Some(ty))?;
859
- Ok(())
860
- }
861
-
862
- /// Checks the validity of a common atomic binary operator.
863
- fn check_atomic_binary_op(&mut self, memarg: MemArg, op_ty: ValType) -> Result<()> {
864
- let ty = self.check_shared_memarg(memarg)?;
865
- self.pop_operand(Some(op_ty))?;
866
- self.pop_operand(Some(ty))?;
867
- self.push_operand(op_ty)?;
868
- Ok(())
869
- }
870
-
871
- /// Checks the validity of an atomic compare exchange operator.
872
- fn check_atomic_binary_cmpxchg(&mut self, memarg: MemArg, op_ty: ValType) -> Result<()> {
873
- let ty = self.check_shared_memarg(memarg)?;
874
- self.pop_operand(Some(op_ty))?;
875
- self.pop_operand(Some(op_ty))?;
876
- self.pop_operand(Some(ty))?;
877
- self.push_operand(op_ty)?;
878
- Ok(())
879
- }
880
-
881
- /// Checks a [`V128`] splat operator.
882
- fn check_v128_splat(&mut self, src_ty: ValType) -> Result<()> {
883
- self.pop_operand(Some(src_ty))?;
884
- self.push_operand(ValType::V128)?;
885
- Ok(())
886
- }
887
-
888
- /// Checks a [`V128`] binary operator.
889
- fn check_v128_binary_op(&mut self) -> Result<()> {
890
- self.pop_operand(Some(ValType::V128))?;
891
- self.pop_operand(Some(ValType::V128))?;
892
- self.push_operand(ValType::V128)?;
893
- Ok(())
894
- }
895
-
896
- /// Checks a [`V128`] binary float operator.
897
- fn check_v128_fbinary_op(&mut self) -> Result<()> {
898
- self.check_floats_enabled()?;
899
- self.check_v128_binary_op()
900
- }
901
-
902
- /// Checks a [`V128`] binary operator.
903
- fn check_v128_unary_op(&mut self) -> Result<()> {
904
- self.pop_operand(Some(ValType::V128))?;
905
- self.push_operand(ValType::V128)?;
906
- Ok(())
907
- }
908
-
909
- /// Checks a [`V128`] binary operator.
910
- fn check_v128_funary_op(&mut self) -> Result<()> {
911
- self.check_floats_enabled()?;
912
- self.check_v128_unary_op()
913
- }
914
-
915
- /// Checks a [`V128`] relaxed ternary operator.
916
- fn check_v128_ternary_op(&mut self) -> Result<()> {
917
- self.pop_operand(Some(ValType::V128))?;
918
- self.pop_operand(Some(ValType::V128))?;
919
- self.pop_operand(Some(ValType::V128))?;
920
- self.push_operand(ValType::V128)?;
921
- Ok(())
922
- }
923
-
924
- /// Checks a [`V128`] relaxed ternary operator.
925
- fn check_v128_bitmask_op(&mut self) -> Result<()> {
926
- self.pop_operand(Some(ValType::V128))?;
927
- self.push_operand(ValType::I32)?;
928
- Ok(())
929
- }
930
-
931
- /// Checks a [`V128`] relaxed ternary operator.
932
- fn check_v128_shift_op(&mut self) -> Result<()> {
933
- self.pop_operand(Some(ValType::I32))?;
934
- self.pop_operand(Some(ValType::V128))?;
935
- self.push_operand(ValType::V128)?;
936
- Ok(())
937
- }
938
-
939
- /// Checks a [`V128`] common load operator.
940
- fn check_v128_load_op(&mut self, memarg: MemArg) -> Result<()> {
941
- let idx = self.check_memarg(memarg)?;
942
- self.pop_operand(Some(idx))?;
943
- self.push_operand(ValType::V128)?;
944
- Ok(())
945
- }
946
-
947
- fn func_type_at(&self, at: u32) -> Result<&'resources R::FuncType> {
948
- self.resources
949
- .func_type_at(at)
950
- .ok_or_else(|| format_err!(self.offset, "unknown type: type index out of bounds"))
951
- }
952
-
953
- fn tag_at(&self, at: u32) -> Result<&'resources R::FuncType> {
954
- self.resources
955
- .tag_at(at)
956
- .ok_or_else(|| format_err!(self.offset, "unknown tag {}: tag index out of bounds", at))
957
- }
958
-
959
- fn params(&self, ty: BlockType) -> Result<impl PreciseIterator<Item = ValType> + 'resources> {
960
- Ok(match ty {
961
- BlockType::Empty | BlockType::Type(_) => Either::B(None.into_iter()),
962
- BlockType::FuncType(t) => Either::A(self.func_type_at(t)?.inputs()),
963
- })
964
- }
965
-
966
- fn results(&self, ty: BlockType) -> Result<impl PreciseIterator<Item = ValType> + 'resources> {
967
- Ok(match ty {
968
- BlockType::Empty => Either::B(None.into_iter()),
969
- BlockType::Type(t) => Either::B(Some(t).into_iter()),
970
- BlockType::FuncType(t) => Either::A(self.func_type_at(t)?.outputs()),
971
- })
972
- }
973
-
974
- fn label_types(
975
- &self,
976
- ty: BlockType,
977
- kind: FrameKind,
978
- ) -> Result<impl PreciseIterator<Item = ValType> + 'resources> {
979
- Ok(match kind {
980
- FrameKind::Loop => Either::A(self.params(ty)?),
981
- _ => Either::B(self.results(ty)?),
982
- })
983
- }
984
- }
985
-
986
- pub fn ty_to_str(ty: ValType) -> &'static str {
987
- match ty {
988
- ValType::I32 => "i32",
989
- ValType::I64 => "i64",
990
- ValType::F32 => "f32",
991
- ValType::F64 => "f64",
992
- ValType::V128 => "v128",
993
- ValType::FUNCREF => "funcref",
994
- ValType::EXTERNREF => "externref",
995
- ValType::Ref(rt) => match (rt.is_nullable(), rt.heap_type()) {
996
- (false, HeapType::Func) => "(ref func)",
997
- (true, HeapType::Func) => "funcref",
998
- (false, HeapType::Extern) => "(ref extern)",
999
- (true, HeapType::Extern) => "externref",
1000
- (false, HeapType::TypedFunc(_)) => "(ref $type)",
1001
- (true, HeapType::TypedFunc(_)) => "(ref null $type)",
1002
- },
1003
- }
1004
- }
1005
-
1006
- /// A wrapper "visitor" around the real operator validator internally which
1007
- /// exists to check that the required wasm feature is enabled to proceed with
1008
- /// validation.
1009
- ///
1010
- /// This validator is macro-generated to ensure that the proposal listed in this
1011
- /// crate's macro matches the one that's validated here. Each instruction's
1012
- /// visit method validates the specified proposal is enabled and then delegates
1013
- /// to `OperatorValidatorTemp` to perform the actual opcode validation.
1014
- struct WasmProposalValidator<'validator, 'resources, T>(
1015
- OperatorValidatorTemp<'validator, 'resources, T>,
1016
- );
1017
-
1018
- impl<T> WasmProposalValidator<'_, '_, T> {
1019
- fn check_enabled(&self, flag: bool, desc: &str) -> Result<()> {
1020
- if flag {
1021
- return Ok(());
1022
- }
1023
- bail!(self.0.offset, "{desc} support is not enabled");
1024
- }
1025
- }
1026
-
1027
- macro_rules! validate_proposal {
1028
- ($( @$proposal:ident $op:ident $({ $($arg:ident: $argty:ty),* })? => $visit:ident)*) => {
1029
- $(
1030
- fn $visit(&mut self $($(,$arg: $argty)*)?) -> Result<()> {
1031
- validate_proposal!(validate self $proposal);
1032
- self.0.$visit($( $($arg),* )?)
1033
- }
1034
- )*
1035
- };
1036
-
1037
- (validate self mvp) => {};
1038
- (validate $self:ident $proposal:ident) => {
1039
- $self.check_enabled($self.0.features.$proposal, validate_proposal!(desc $proposal))?
1040
- };
1041
-
1042
- (desc simd) => ("SIMD");
1043
- (desc relaxed_simd) => ("relaxed SIMD");
1044
- (desc threads) => ("threads");
1045
- (desc saturating_float_to_int) => ("saturating float to int conversions");
1046
- (desc reference_types) => ("reference types");
1047
- (desc bulk_memory) => ("bulk memory");
1048
- (desc sign_extension) => ("sign extension operations");
1049
- (desc exceptions) => ("exceptions");
1050
- (desc tail_call) => ("tail calls");
1051
- (desc function_references) => ("function references");
1052
- (desc memory_control) => ("memory control");
1053
- }
1054
-
1055
- impl<'a, T> VisitOperator<'a> for WasmProposalValidator<'_, '_, T>
1056
- where
1057
- T: WasmModuleResources,
1058
- {
1059
- type Output = Result<()>;
1060
-
1061
- for_each_operator!(validate_proposal);
1062
- }
1063
-
1064
- impl<'a, T> VisitOperator<'a> for OperatorValidatorTemp<'_, '_, T>
1065
- where
1066
- T: WasmModuleResources,
1067
- {
1068
- type Output = Result<()>;
1069
-
1070
- fn visit_nop(&mut self) -> Self::Output {
1071
- Ok(())
1072
- }
1073
- fn visit_unreachable(&mut self) -> Self::Output {
1074
- self.unreachable()?;
1075
- Ok(())
1076
- }
1077
- fn visit_block(&mut self, ty: BlockType) -> Self::Output {
1078
- self.check_block_type(ty)?;
1079
- for ty in self.params(ty)?.rev() {
1080
- self.pop_operand(Some(ty))?;
1081
- }
1082
- self.push_ctrl(FrameKind::Block, ty)?;
1083
- Ok(())
1084
- }
1085
- fn visit_loop(&mut self, ty: BlockType) -> Self::Output {
1086
- self.check_block_type(ty)?;
1087
- for ty in self.params(ty)?.rev() {
1088
- self.pop_operand(Some(ty))?;
1089
- }
1090
- self.push_ctrl(FrameKind::Loop, ty)?;
1091
- Ok(())
1092
- }
1093
- fn visit_if(&mut self, ty: BlockType) -> Self::Output {
1094
- self.check_block_type(ty)?;
1095
- self.pop_operand(Some(ValType::I32))?;
1096
- for ty in self.params(ty)?.rev() {
1097
- self.pop_operand(Some(ty))?;
1098
- }
1099
- self.push_ctrl(FrameKind::If, ty)?;
1100
- Ok(())
1101
- }
1102
- fn visit_else(&mut self) -> Self::Output {
1103
- let frame = self.pop_ctrl()?;
1104
- if frame.kind != FrameKind::If {
1105
- bail!(self.offset, "else found outside of an `if` block");
1106
- }
1107
- self.push_ctrl(FrameKind::Else, frame.block_type)?;
1108
- Ok(())
1109
- }
1110
- fn visit_try(&mut self, ty: BlockType) -> Self::Output {
1111
- self.check_block_type(ty)?;
1112
- for ty in self.params(ty)?.rev() {
1113
- self.pop_operand(Some(ty))?;
1114
- }
1115
- self.push_ctrl(FrameKind::Try, ty)?;
1116
- Ok(())
1117
- }
1118
- fn visit_catch(&mut self, index: u32) -> Self::Output {
1119
- let frame = self.pop_ctrl()?;
1120
- if frame.kind != FrameKind::Try && frame.kind != FrameKind::Catch {
1121
- bail!(self.offset, "catch found outside of an `try` block");
1122
- }
1123
- // Start a new frame and push `exnref` value.
1124
- let height = self.operands.len();
1125
- let init_height = self.inits.len();
1126
- self.control.push(Frame {
1127
- kind: FrameKind::Catch,
1128
- block_type: frame.block_type,
1129
- height,
1130
- unreachable: false,
1131
- init_height,
1132
- });
1133
- // Push exception argument types.
1134
- let ty = self.tag_at(index)?;
1135
- for ty in ty.inputs() {
1136
- self.push_operand(ty)?;
1137
- }
1138
- Ok(())
1139
- }
1140
- fn visit_throw(&mut self, index: u32) -> Self::Output {
1141
- // Check values associated with the exception.
1142
- let ty = self.tag_at(index)?;
1143
- for ty in ty.inputs().rev() {
1144
- self.pop_operand(Some(ty))?;
1145
- }
1146
- if ty.outputs().len() > 0 {
1147
- bail!(
1148
- self.offset,
1149
- "result type expected to be empty for exception"
1150
- );
1151
- }
1152
- self.unreachable()?;
1153
- Ok(())
1154
- }
1155
- fn visit_rethrow(&mut self, relative_depth: u32) -> Self::Output {
1156
- // This is not a jump, but we need to check that the `rethrow`
1157
- // targets an actual `catch` to get the exception.
1158
- let (_, kind) = self.jump(relative_depth)?;
1159
- if kind != FrameKind::Catch && kind != FrameKind::CatchAll {
1160
- bail!(
1161
- self.offset,
1162
- "invalid rethrow label: target was not a `catch` block"
1163
- );
1164
- }
1165
- self.unreachable()?;
1166
- Ok(())
1167
- }
1168
- fn visit_delegate(&mut self, relative_depth: u32) -> Self::Output {
1169
- let frame = self.pop_ctrl()?;
1170
- if frame.kind != FrameKind::Try {
1171
- bail!(self.offset, "delegate found outside of an `try` block");
1172
- }
1173
- // This operation is not a jump, but we need to check the
1174
- // depth for validity
1175
- let _ = self.jump(relative_depth)?;
1176
- for ty in self.results(frame.block_type)? {
1177
- self.push_operand(ty)?;
1178
- }
1179
- Ok(())
1180
- }
1181
- fn visit_catch_all(&mut self) -> Self::Output {
1182
- let frame = self.pop_ctrl()?;
1183
- if frame.kind == FrameKind::CatchAll {
1184
- bail!(self.offset, "only one catch_all allowed per `try` block");
1185
- } else if frame.kind != FrameKind::Try && frame.kind != FrameKind::Catch {
1186
- bail!(self.offset, "catch_all found outside of a `try` block");
1187
- }
1188
- let height = self.operands.len();
1189
- let init_height = self.inits.len();
1190
- self.control.push(Frame {
1191
- kind: FrameKind::CatchAll,
1192
- block_type: frame.block_type,
1193
- height,
1194
- unreachable: false,
1195
- init_height,
1196
- });
1197
- Ok(())
1198
- }
1199
- fn visit_end(&mut self) -> Self::Output {
1200
- let mut frame = self.pop_ctrl()?;
1201
-
1202
- // Note that this `if` isn't included in the appendix right
1203
- // now, but it's used to allow for `if` statements that are
1204
- // missing an `else` block which have the same parameter/return
1205
- // types on the block (since that's valid).
1206
- if frame.kind == FrameKind::If {
1207
- self.push_ctrl(FrameKind::Else, frame.block_type)?;
1208
- frame = self.pop_ctrl()?;
1209
- }
1210
- for ty in self.results(frame.block_type)? {
1211
- self.push_operand(ty)?;
1212
- }
1213
-
1214
- if self.control.is_empty() && self.end_which_emptied_control.is_none() {
1215
- assert_ne!(self.offset, 0);
1216
- self.end_which_emptied_control = Some(self.offset);
1217
- }
1218
- Ok(())
1219
- }
1220
- fn visit_br(&mut self, relative_depth: u32) -> Self::Output {
1221
- let (ty, kind) = self.jump(relative_depth)?;
1222
- for ty in self.label_types(ty, kind)?.rev() {
1223
- self.pop_operand(Some(ty))?;
1224
- }
1225
- self.unreachable()?;
1226
- Ok(())
1227
- }
1228
- fn visit_br_if(&mut self, relative_depth: u32) -> Self::Output {
1229
- self.pop_operand(Some(ValType::I32))?;
1230
- let (ty, kind) = self.jump(relative_depth)?;
1231
- let types = self.label_types(ty, kind)?;
1232
- for ty in types.clone().rev() {
1233
- self.pop_operand(Some(ty))?;
1234
- }
1235
- for ty in types {
1236
- self.push_operand(ty)?;
1237
- }
1238
- Ok(())
1239
- }
1240
- fn visit_br_table(&mut self, table: BrTable) -> Self::Output {
1241
- self.pop_operand(Some(ValType::I32))?;
1242
- let default = self.jump(table.default())?;
1243
- let default_types = self.label_types(default.0, default.1)?;
1244
- for element in table.targets() {
1245
- let relative_depth = element?;
1246
- let block = self.jump(relative_depth)?;
1247
- let tys = self.label_types(block.0, block.1)?;
1248
- if tys.len() != default_types.len() {
1249
- bail!(
1250
- self.offset,
1251
- "type mismatch: br_table target labels have different number of types"
1252
- );
1253
- }
1254
- debug_assert!(self.br_table_tmp.is_empty());
1255
- for ty in tys.rev() {
1256
- let ty = self.pop_operand(Some(ty))?;
1257
- self.br_table_tmp.push(ty);
1258
- }
1259
- for ty in self.inner.br_table_tmp.drain(..).rev() {
1260
- self.inner.operands.push(ty);
1261
- }
1262
- }
1263
- for ty in default_types.rev() {
1264
- self.pop_operand(Some(ty))?;
1265
- }
1266
- self.unreachable()?;
1267
- Ok(())
1268
- }
1269
- fn visit_return(&mut self) -> Self::Output {
1270
- self.check_return()?;
1271
- Ok(())
1272
- }
1273
- fn visit_call(&mut self, function_index: u32) -> Self::Output {
1274
- self.check_call(function_index)?;
1275
- Ok(())
1276
- }
1277
- fn visit_return_call(&mut self, function_index: u32) -> Self::Output {
1278
- self.check_call(function_index)?;
1279
- self.check_return()?;
1280
- Ok(())
1281
- }
1282
- fn visit_call_ref(&mut self, hty: HeapType) -> Self::Output {
1283
- self.resources
1284
- .check_heap_type(hty, &self.features, self.offset)?;
1285
- // If `None` is popped then that means a "bottom" type was popped which
1286
- // is always considered equivalent to the `hty` tag.
1287
- if let Some(rt) = self.pop_ref()? {
1288
- let expected =
1289
- RefType::new(true, hty).expect("existing heap types should be within our limits");
1290
- if !self
1291
- .resources
1292
- .matches(ValType::Ref(rt), ValType::Ref(expected))
1293
- {
1294
- bail!(
1295
- self.offset,
1296
- "type mismatch: funcref on stack does not match specified type",
1297
- );
1298
- }
1299
- }
1300
- match hty {
1301
- HeapType::TypedFunc(type_index) => self.check_call_ty(type_index.into())?,
1302
- _ => bail!(
1303
- self.offset,
1304
- "type mismatch: instruction requires function reference type",
1305
- ),
1306
- }
1307
- Ok(())
1308
- }
1309
- fn visit_return_call_ref(&mut self, hty: HeapType) -> Self::Output {
1310
- self.visit_call_ref(hty)?;
1311
- self.check_return()
1312
- }
1313
- fn visit_call_indirect(
1314
- &mut self,
1315
- index: u32,
1316
- table_index: u32,
1317
- table_byte: u8,
1318
- ) -> Self::Output {
1319
- if table_byte != 0 && !self.features.reference_types {
1320
- bail!(
1321
- self.offset,
1322
- "reference-types not enabled: zero byte expected"
1323
- );
1324
- }
1325
- self.check_call_indirect(index, table_index)?;
1326
- Ok(())
1327
- }
1328
- fn visit_return_call_indirect(&mut self, index: u32, table_index: u32) -> Self::Output {
1329
- self.check_call_indirect(index, table_index)?;
1330
- self.check_return()?;
1331
- Ok(())
1332
- }
1333
- fn visit_drop(&mut self) -> Self::Output {
1334
- self.pop_operand(None)?;
1335
- Ok(())
1336
- }
1337
- fn visit_select(&mut self) -> Self::Output {
1338
- self.pop_operand(Some(ValType::I32))?;
1339
- let ty1 = self.pop_operand(None)?;
1340
- let ty2 = self.pop_operand(None)?;
1341
-
1342
- let ty = match (ty1, ty2) {
1343
- // All heap-related types aren't allowed with the `select`
1344
- // instruction
1345
- (MaybeType::HeapBot, _)
1346
- | (_, MaybeType::HeapBot)
1347
- | (MaybeType::Type(ValType::Ref(_)), _)
1348
- | (_, MaybeType::Type(ValType::Ref(_))) => {
1349
- bail!(
1350
- self.offset,
1351
- "type mismatch: select only takes integral types"
1352
- )
1353
- }
1354
-
1355
- // If one operand is the "bottom" type then whatever the other
1356
- // operand is is the result of the `select`
1357
- (MaybeType::Bot, t) | (t, MaybeType::Bot) => t,
1358
-
1359
- // Otherwise these are two integral types and they must match for
1360
- // `select` to typecheck.
1361
- (t @ MaybeType::Type(t1), MaybeType::Type(t2)) => {
1362
- if t1 != t2 {
1363
- bail!(
1364
- self.offset,
1365
- "type mismatch: select operands have different types"
1366
- );
1367
- }
1368
- t
1369
- }
1370
- };
1371
- self.push_operand(ty)?;
1372
- Ok(())
1373
- }
1374
- fn visit_typed_select(&mut self, ty: ValType) -> Self::Output {
1375
- self.resources
1376
- .check_value_type(ty, &self.features, self.offset)?;
1377
- self.pop_operand(Some(ValType::I32))?;
1378
- self.pop_operand(Some(ty))?;
1379
- self.pop_operand(Some(ty))?;
1380
- self.push_operand(ty)?;
1381
- Ok(())
1382
- }
1383
- fn visit_local_get(&mut self, local_index: u32) -> Self::Output {
1384
- let ty = self.local(local_index)?;
1385
- if !self.local_inits[local_index as usize] {
1386
- bail!(self.offset, "uninitialized local: {}", local_index);
1387
- }
1388
- self.push_operand(ty)?;
1389
- Ok(())
1390
- }
1391
- fn visit_local_set(&mut self, local_index: u32) -> Self::Output {
1392
- let ty = self.local(local_index)?;
1393
- self.pop_operand(Some(ty))?;
1394
- if !self.local_inits[local_index as usize] {
1395
- self.local_inits[local_index as usize] = true;
1396
- self.inits.push(local_index);
1397
- }
1398
- Ok(())
1399
- }
1400
- fn visit_local_tee(&mut self, local_index: u32) -> Self::Output {
1401
- let ty = self.local(local_index)?;
1402
- self.pop_operand(Some(ty))?;
1403
- if !self.local_inits[local_index as usize] {
1404
- self.local_inits[local_index as usize] = true;
1405
- self.inits.push(local_index);
1406
- }
1407
-
1408
- self.push_operand(ty)?;
1409
- Ok(())
1410
- }
1411
- fn visit_global_get(&mut self, global_index: u32) -> Self::Output {
1412
- if let Some(ty) = self.resources.global_at(global_index) {
1413
- self.push_operand(ty.content_type)?;
1414
- } else {
1415
- bail!(self.offset, "unknown global: global index out of bounds");
1416
- };
1417
- Ok(())
1418
- }
1419
- fn visit_global_set(&mut self, global_index: u32) -> Self::Output {
1420
- if let Some(ty) = self.resources.global_at(global_index) {
1421
- if !ty.mutable {
1422
- bail!(
1423
- self.offset,
1424
- "global is immutable: cannot modify it with `global.set`"
1425
- );
1426
- }
1427
- self.pop_operand(Some(ty.content_type))?;
1428
- } else {
1429
- bail!(self.offset, "unknown global: global index out of bounds");
1430
- };
1431
- Ok(())
1432
- }
1433
- fn visit_i32_load(&mut self, memarg: MemArg) -> Self::Output {
1434
- let ty = self.check_memarg(memarg)?;
1435
- self.pop_operand(Some(ty))?;
1436
- self.push_operand(ValType::I32)?;
1437
- Ok(())
1438
- }
1439
- fn visit_i64_load(&mut self, memarg: MemArg) -> Self::Output {
1440
- let ty = self.check_memarg(memarg)?;
1441
- self.pop_operand(Some(ty))?;
1442
- self.push_operand(ValType::I64)?;
1443
- Ok(())
1444
- }
1445
- fn visit_f32_load(&mut self, memarg: MemArg) -> Self::Output {
1446
- self.check_floats_enabled()?;
1447
- let ty = self.check_memarg(memarg)?;
1448
- self.pop_operand(Some(ty))?;
1449
- self.push_operand(ValType::F32)?;
1450
- Ok(())
1451
- }
1452
- fn visit_f64_load(&mut self, memarg: MemArg) -> Self::Output {
1453
- self.check_floats_enabled()?;
1454
- let ty = self.check_memarg(memarg)?;
1455
- self.pop_operand(Some(ty))?;
1456
- self.push_operand(ValType::F64)?;
1457
- Ok(())
1458
- }
1459
- fn visit_i32_load8_s(&mut self, memarg: MemArg) -> Self::Output {
1460
- let ty = self.check_memarg(memarg)?;
1461
- self.pop_operand(Some(ty))?;
1462
- self.push_operand(ValType::I32)?;
1463
- Ok(())
1464
- }
1465
- fn visit_i32_load8_u(&mut self, memarg: MemArg) -> Self::Output {
1466
- self.visit_i32_load8_s(memarg)
1467
- }
1468
- fn visit_i32_load16_s(&mut self, memarg: MemArg) -> Self::Output {
1469
- let ty = self.check_memarg(memarg)?;
1470
- self.pop_operand(Some(ty))?;
1471
- self.push_operand(ValType::I32)?;
1472
- Ok(())
1473
- }
1474
- fn visit_i32_load16_u(&mut self, memarg: MemArg) -> Self::Output {
1475
- self.visit_i32_load16_s(memarg)
1476
- }
1477
- fn visit_i64_load8_s(&mut self, memarg: MemArg) -> Self::Output {
1478
- let ty = self.check_memarg(memarg)?;
1479
- self.pop_operand(Some(ty))?;
1480
- self.push_operand(ValType::I64)?;
1481
- Ok(())
1482
- }
1483
- fn visit_i64_load8_u(&mut self, memarg: MemArg) -> Self::Output {
1484
- self.visit_i64_load8_s(memarg)
1485
- }
1486
- fn visit_i64_load16_s(&mut self, memarg: MemArg) -> Self::Output {
1487
- let ty = self.check_memarg(memarg)?;
1488
- self.pop_operand(Some(ty))?;
1489
- self.push_operand(ValType::I64)?;
1490
- Ok(())
1491
- }
1492
- fn visit_i64_load16_u(&mut self, memarg: MemArg) -> Self::Output {
1493
- self.visit_i64_load16_s(memarg)
1494
- }
1495
- fn visit_i64_load32_s(&mut self, memarg: MemArg) -> Self::Output {
1496
- let ty = self.check_memarg(memarg)?;
1497
- self.pop_operand(Some(ty))?;
1498
- self.push_operand(ValType::I64)?;
1499
- Ok(())
1500
- }
1501
- fn visit_i64_load32_u(&mut self, memarg: MemArg) -> Self::Output {
1502
- self.visit_i64_load32_s(memarg)
1503
- }
1504
- fn visit_i32_store(&mut self, memarg: MemArg) -> Self::Output {
1505
- let ty = self.check_memarg(memarg)?;
1506
- self.pop_operand(Some(ValType::I32))?;
1507
- self.pop_operand(Some(ty))?;
1508
- Ok(())
1509
- }
1510
- fn visit_i64_store(&mut self, memarg: MemArg) -> Self::Output {
1511
- let ty = self.check_memarg(memarg)?;
1512
- self.pop_operand(Some(ValType::I64))?;
1513
- self.pop_operand(Some(ty))?;
1514
- Ok(())
1515
- }
1516
- fn visit_f32_store(&mut self, memarg: MemArg) -> Self::Output {
1517
- self.check_floats_enabled()?;
1518
- let ty = self.check_memarg(memarg)?;
1519
- self.pop_operand(Some(ValType::F32))?;
1520
- self.pop_operand(Some(ty))?;
1521
- Ok(())
1522
- }
1523
- fn visit_f64_store(&mut self, memarg: MemArg) -> Self::Output {
1524
- self.check_floats_enabled()?;
1525
- let ty = self.check_memarg(memarg)?;
1526
- self.pop_operand(Some(ValType::F64))?;
1527
- self.pop_operand(Some(ty))?;
1528
- Ok(())
1529
- }
1530
- fn visit_i32_store8(&mut self, memarg: MemArg) -> Self::Output {
1531
- let ty = self.check_memarg(memarg)?;
1532
- self.pop_operand(Some(ValType::I32))?;
1533
- self.pop_operand(Some(ty))?;
1534
- Ok(())
1535
- }
1536
- fn visit_i32_store16(&mut self, memarg: MemArg) -> Self::Output {
1537
- let ty = self.check_memarg(memarg)?;
1538
- self.pop_operand(Some(ValType::I32))?;
1539
- self.pop_operand(Some(ty))?;
1540
- Ok(())
1541
- }
1542
- fn visit_i64_store8(&mut self, memarg: MemArg) -> Self::Output {
1543
- let ty = self.check_memarg(memarg)?;
1544
- self.pop_operand(Some(ValType::I64))?;
1545
- self.pop_operand(Some(ty))?;
1546
- Ok(())
1547
- }
1548
- fn visit_i64_store16(&mut self, memarg: MemArg) -> Self::Output {
1549
- let ty = self.check_memarg(memarg)?;
1550
- self.pop_operand(Some(ValType::I64))?;
1551
- self.pop_operand(Some(ty))?;
1552
- Ok(())
1553
- }
1554
- fn visit_i64_store32(&mut self, memarg: MemArg) -> Self::Output {
1555
- let ty = self.check_memarg(memarg)?;
1556
- self.pop_operand(Some(ValType::I64))?;
1557
- self.pop_operand(Some(ty))?;
1558
- Ok(())
1559
- }
1560
- fn visit_memory_size(&mut self, mem: u32, mem_byte: u8) -> Self::Output {
1561
- if mem_byte != 0 && !self.features.multi_memory {
1562
- bail!(self.offset, "multi-memory not enabled: zero byte expected");
1563
- }
1564
- let index_ty = self.check_memory_index(mem)?;
1565
- self.push_operand(index_ty)?;
1566
- Ok(())
1567
- }
1568
- fn visit_memory_grow(&mut self, mem: u32, mem_byte: u8) -> Self::Output {
1569
- if mem_byte != 0 && !self.features.multi_memory {
1570
- bail!(self.offset, "multi-memory not enabled: zero byte expected");
1571
- }
1572
- let index_ty = self.check_memory_index(mem)?;
1573
- self.pop_operand(Some(index_ty))?;
1574
- self.push_operand(index_ty)?;
1575
- Ok(())
1576
- }
1577
- fn visit_i32_const(&mut self, _value: i32) -> Self::Output {
1578
- self.push_operand(ValType::I32)?;
1579
- Ok(())
1580
- }
1581
- fn visit_i64_const(&mut self, _value: i64) -> Self::Output {
1582
- self.push_operand(ValType::I64)?;
1583
- Ok(())
1584
- }
1585
- fn visit_f32_const(&mut self, _value: Ieee32) -> Self::Output {
1586
- self.check_floats_enabled()?;
1587
- self.push_operand(ValType::F32)?;
1588
- Ok(())
1589
- }
1590
- fn visit_f64_const(&mut self, _value: Ieee64) -> Self::Output {
1591
- self.check_floats_enabled()?;
1592
- self.push_operand(ValType::F64)?;
1593
- Ok(())
1594
- }
1595
- fn visit_i32_eqz(&mut self) -> Self::Output {
1596
- self.pop_operand(Some(ValType::I32))?;
1597
- self.push_operand(ValType::I32)?;
1598
- Ok(())
1599
- }
1600
- fn visit_i32_eq(&mut self) -> Self::Output {
1601
- self.check_cmp_op(ValType::I32)
1602
- }
1603
- fn visit_i32_ne(&mut self) -> Self::Output {
1604
- self.check_cmp_op(ValType::I32)
1605
- }
1606
- fn visit_i32_lt_s(&mut self) -> Self::Output {
1607
- self.check_cmp_op(ValType::I32)
1608
- }
1609
- fn visit_i32_lt_u(&mut self) -> Self::Output {
1610
- self.check_cmp_op(ValType::I32)
1611
- }
1612
- fn visit_i32_gt_s(&mut self) -> Self::Output {
1613
- self.check_cmp_op(ValType::I32)
1614
- }
1615
- fn visit_i32_gt_u(&mut self) -> Self::Output {
1616
- self.check_cmp_op(ValType::I32)
1617
- }
1618
- fn visit_i32_le_s(&mut self) -> Self::Output {
1619
- self.check_cmp_op(ValType::I32)
1620
- }
1621
- fn visit_i32_le_u(&mut self) -> Self::Output {
1622
- self.check_cmp_op(ValType::I32)
1623
- }
1624
- fn visit_i32_ge_s(&mut self) -> Self::Output {
1625
- self.check_cmp_op(ValType::I32)
1626
- }
1627
- fn visit_i32_ge_u(&mut self) -> Self::Output {
1628
- self.check_cmp_op(ValType::I32)
1629
- }
1630
- fn visit_i64_eqz(&mut self) -> Self::Output {
1631
- self.pop_operand(Some(ValType::I64))?;
1632
- self.push_operand(ValType::I32)?;
1633
- Ok(())
1634
- }
1635
- fn visit_i64_eq(&mut self) -> Self::Output {
1636
- self.check_cmp_op(ValType::I64)
1637
- }
1638
- fn visit_i64_ne(&mut self) -> Self::Output {
1639
- self.check_cmp_op(ValType::I64)
1640
- }
1641
- fn visit_i64_lt_s(&mut self) -> Self::Output {
1642
- self.check_cmp_op(ValType::I64)
1643
- }
1644
- fn visit_i64_lt_u(&mut self) -> Self::Output {
1645
- self.check_cmp_op(ValType::I64)
1646
- }
1647
- fn visit_i64_gt_s(&mut self) -> Self::Output {
1648
- self.check_cmp_op(ValType::I64)
1649
- }
1650
- fn visit_i64_gt_u(&mut self) -> Self::Output {
1651
- self.check_cmp_op(ValType::I64)
1652
- }
1653
- fn visit_i64_le_s(&mut self) -> Self::Output {
1654
- self.check_cmp_op(ValType::I64)
1655
- }
1656
- fn visit_i64_le_u(&mut self) -> Self::Output {
1657
- self.check_cmp_op(ValType::I64)
1658
- }
1659
- fn visit_i64_ge_s(&mut self) -> Self::Output {
1660
- self.check_cmp_op(ValType::I64)
1661
- }
1662
- fn visit_i64_ge_u(&mut self) -> Self::Output {
1663
- self.check_cmp_op(ValType::I64)
1664
- }
1665
- fn visit_f32_eq(&mut self) -> Self::Output {
1666
- self.check_fcmp_op(ValType::F32)
1667
- }
1668
- fn visit_f32_ne(&mut self) -> Self::Output {
1669
- self.check_fcmp_op(ValType::F32)
1670
- }
1671
- fn visit_f32_lt(&mut self) -> Self::Output {
1672
- self.check_fcmp_op(ValType::F32)
1673
- }
1674
- fn visit_f32_gt(&mut self) -> Self::Output {
1675
- self.check_fcmp_op(ValType::F32)
1676
- }
1677
- fn visit_f32_le(&mut self) -> Self::Output {
1678
- self.check_fcmp_op(ValType::F32)
1679
- }
1680
- fn visit_f32_ge(&mut self) -> Self::Output {
1681
- self.check_fcmp_op(ValType::F32)
1682
- }
1683
- fn visit_f64_eq(&mut self) -> Self::Output {
1684
- self.check_fcmp_op(ValType::F64)
1685
- }
1686
- fn visit_f64_ne(&mut self) -> Self::Output {
1687
- self.check_fcmp_op(ValType::F64)
1688
- }
1689
- fn visit_f64_lt(&mut self) -> Self::Output {
1690
- self.check_fcmp_op(ValType::F64)
1691
- }
1692
- fn visit_f64_gt(&mut self) -> Self::Output {
1693
- self.check_fcmp_op(ValType::F64)
1694
- }
1695
- fn visit_f64_le(&mut self) -> Self::Output {
1696
- self.check_fcmp_op(ValType::F64)
1697
- }
1698
- fn visit_f64_ge(&mut self) -> Self::Output {
1699
- self.check_fcmp_op(ValType::F64)
1700
- }
1701
- fn visit_i32_clz(&mut self) -> Self::Output {
1702
- self.check_unary_op(ValType::I32)
1703
- }
1704
- fn visit_i32_ctz(&mut self) -> Self::Output {
1705
- self.check_unary_op(ValType::I32)
1706
- }
1707
- fn visit_i32_popcnt(&mut self) -> Self::Output {
1708
- self.check_unary_op(ValType::I32)
1709
- }
1710
- fn visit_i32_add(&mut self) -> Self::Output {
1711
- self.check_binary_op(ValType::I32)
1712
- }
1713
- fn visit_i32_sub(&mut self) -> Self::Output {
1714
- self.check_binary_op(ValType::I32)
1715
- }
1716
- fn visit_i32_mul(&mut self) -> Self::Output {
1717
- self.check_binary_op(ValType::I32)
1718
- }
1719
- fn visit_i32_div_s(&mut self) -> Self::Output {
1720
- self.check_binary_op(ValType::I32)
1721
- }
1722
- fn visit_i32_div_u(&mut self) -> Self::Output {
1723
- self.check_binary_op(ValType::I32)
1724
- }
1725
- fn visit_i32_rem_s(&mut self) -> Self::Output {
1726
- self.check_binary_op(ValType::I32)
1727
- }
1728
- fn visit_i32_rem_u(&mut self) -> Self::Output {
1729
- self.check_binary_op(ValType::I32)
1730
- }
1731
- fn visit_i32_and(&mut self) -> Self::Output {
1732
- self.check_binary_op(ValType::I32)
1733
- }
1734
- fn visit_i32_or(&mut self) -> Self::Output {
1735
- self.check_binary_op(ValType::I32)
1736
- }
1737
- fn visit_i32_xor(&mut self) -> Self::Output {
1738
- self.check_binary_op(ValType::I32)
1739
- }
1740
- fn visit_i32_shl(&mut self) -> Self::Output {
1741
- self.check_binary_op(ValType::I32)
1742
- }
1743
- fn visit_i32_shr_s(&mut self) -> Self::Output {
1744
- self.check_binary_op(ValType::I32)
1745
- }
1746
- fn visit_i32_shr_u(&mut self) -> Self::Output {
1747
- self.check_binary_op(ValType::I32)
1748
- }
1749
- fn visit_i32_rotl(&mut self) -> Self::Output {
1750
- self.check_binary_op(ValType::I32)
1751
- }
1752
- fn visit_i32_rotr(&mut self) -> Self::Output {
1753
- self.check_binary_op(ValType::I32)
1754
- }
1755
- fn visit_i64_clz(&mut self) -> Self::Output {
1756
- self.check_unary_op(ValType::I64)
1757
- }
1758
- fn visit_i64_ctz(&mut self) -> Self::Output {
1759
- self.check_unary_op(ValType::I64)
1760
- }
1761
- fn visit_i64_popcnt(&mut self) -> Self::Output {
1762
- self.check_unary_op(ValType::I64)
1763
- }
1764
- fn visit_i64_add(&mut self) -> Self::Output {
1765
- self.check_binary_op(ValType::I64)
1766
- }
1767
- fn visit_i64_sub(&mut self) -> Self::Output {
1768
- self.check_binary_op(ValType::I64)
1769
- }
1770
- fn visit_i64_mul(&mut self) -> Self::Output {
1771
- self.check_binary_op(ValType::I64)
1772
- }
1773
- fn visit_i64_div_s(&mut self) -> Self::Output {
1774
- self.check_binary_op(ValType::I64)
1775
- }
1776
- fn visit_i64_div_u(&mut self) -> Self::Output {
1777
- self.check_binary_op(ValType::I64)
1778
- }
1779
- fn visit_i64_rem_s(&mut self) -> Self::Output {
1780
- self.check_binary_op(ValType::I64)
1781
- }
1782
- fn visit_i64_rem_u(&mut self) -> Self::Output {
1783
- self.check_binary_op(ValType::I64)
1784
- }
1785
- fn visit_i64_and(&mut self) -> Self::Output {
1786
- self.check_binary_op(ValType::I64)
1787
- }
1788
- fn visit_i64_or(&mut self) -> Self::Output {
1789
- self.check_binary_op(ValType::I64)
1790
- }
1791
- fn visit_i64_xor(&mut self) -> Self::Output {
1792
- self.check_binary_op(ValType::I64)
1793
- }
1794
- fn visit_i64_shl(&mut self) -> Self::Output {
1795
- self.check_binary_op(ValType::I64)
1796
- }
1797
- fn visit_i64_shr_s(&mut self) -> Self::Output {
1798
- self.check_binary_op(ValType::I64)
1799
- }
1800
- fn visit_i64_shr_u(&mut self) -> Self::Output {
1801
- self.check_binary_op(ValType::I64)
1802
- }
1803
- fn visit_i64_rotl(&mut self) -> Self::Output {
1804
- self.check_binary_op(ValType::I64)
1805
- }
1806
- fn visit_i64_rotr(&mut self) -> Self::Output {
1807
- self.check_binary_op(ValType::I64)
1808
- }
1809
- fn visit_f32_abs(&mut self) -> Self::Output {
1810
- self.check_funary_op(ValType::F32)
1811
- }
1812
- fn visit_f32_neg(&mut self) -> Self::Output {
1813
- self.check_funary_op(ValType::F32)
1814
- }
1815
- fn visit_f32_ceil(&mut self) -> Self::Output {
1816
- self.check_funary_op(ValType::F32)
1817
- }
1818
- fn visit_f32_floor(&mut self) -> Self::Output {
1819
- self.check_funary_op(ValType::F32)
1820
- }
1821
- fn visit_f32_trunc(&mut self) -> Self::Output {
1822
- self.check_funary_op(ValType::F32)
1823
- }
1824
- fn visit_f32_nearest(&mut self) -> Self::Output {
1825
- self.check_funary_op(ValType::F32)
1826
- }
1827
- fn visit_f32_sqrt(&mut self) -> Self::Output {
1828
- self.check_funary_op(ValType::F32)
1829
- }
1830
- fn visit_f32_add(&mut self) -> Self::Output {
1831
- self.check_fbinary_op(ValType::F32)
1832
- }
1833
- fn visit_f32_sub(&mut self) -> Self::Output {
1834
- self.check_fbinary_op(ValType::F32)
1835
- }
1836
- fn visit_f32_mul(&mut self) -> Self::Output {
1837
- self.check_fbinary_op(ValType::F32)
1838
- }
1839
- fn visit_f32_div(&mut self) -> Self::Output {
1840
- self.check_fbinary_op(ValType::F32)
1841
- }
1842
- fn visit_f32_min(&mut self) -> Self::Output {
1843
- self.check_fbinary_op(ValType::F32)
1844
- }
1845
- fn visit_f32_max(&mut self) -> Self::Output {
1846
- self.check_fbinary_op(ValType::F32)
1847
- }
1848
- fn visit_f32_copysign(&mut self) -> Self::Output {
1849
- self.check_fbinary_op(ValType::F32)
1850
- }
1851
- fn visit_f64_abs(&mut self) -> Self::Output {
1852
- self.check_funary_op(ValType::F64)
1853
- }
1854
- fn visit_f64_neg(&mut self) -> Self::Output {
1855
- self.check_funary_op(ValType::F64)
1856
- }
1857
- fn visit_f64_ceil(&mut self) -> Self::Output {
1858
- self.check_funary_op(ValType::F64)
1859
- }
1860
- fn visit_f64_floor(&mut self) -> Self::Output {
1861
- self.check_funary_op(ValType::F64)
1862
- }
1863
- fn visit_f64_trunc(&mut self) -> Self::Output {
1864
- self.check_funary_op(ValType::F64)
1865
- }
1866
- fn visit_f64_nearest(&mut self) -> Self::Output {
1867
- self.check_funary_op(ValType::F64)
1868
- }
1869
- fn visit_f64_sqrt(&mut self) -> Self::Output {
1870
- self.check_funary_op(ValType::F64)
1871
- }
1872
- fn visit_f64_add(&mut self) -> Self::Output {
1873
- self.check_fbinary_op(ValType::F64)
1874
- }
1875
- fn visit_f64_sub(&mut self) -> Self::Output {
1876
- self.check_fbinary_op(ValType::F64)
1877
- }
1878
- fn visit_f64_mul(&mut self) -> Self::Output {
1879
- self.check_fbinary_op(ValType::F64)
1880
- }
1881
- fn visit_f64_div(&mut self) -> Self::Output {
1882
- self.check_fbinary_op(ValType::F64)
1883
- }
1884
- fn visit_f64_min(&mut self) -> Self::Output {
1885
- self.check_fbinary_op(ValType::F64)
1886
- }
1887
- fn visit_f64_max(&mut self) -> Self::Output {
1888
- self.check_fbinary_op(ValType::F64)
1889
- }
1890
- fn visit_f64_copysign(&mut self) -> Self::Output {
1891
- self.check_fbinary_op(ValType::F64)
1892
- }
1893
- fn visit_i32_wrap_i64(&mut self) -> Self::Output {
1894
- self.check_conversion_op(ValType::I32, ValType::I64)
1895
- }
1896
- fn visit_i32_trunc_f32_s(&mut self) -> Self::Output {
1897
- self.check_conversion_op(ValType::I32, ValType::F32)
1898
- }
1899
- fn visit_i32_trunc_f32_u(&mut self) -> Self::Output {
1900
- self.check_conversion_op(ValType::I32, ValType::F32)
1901
- }
1902
- fn visit_i32_trunc_f64_s(&mut self) -> Self::Output {
1903
- self.check_conversion_op(ValType::I32, ValType::F64)
1904
- }
1905
- fn visit_i32_trunc_f64_u(&mut self) -> Self::Output {
1906
- self.check_conversion_op(ValType::I32, ValType::F64)
1907
- }
1908
- fn visit_i64_extend_i32_s(&mut self) -> Self::Output {
1909
- self.check_conversion_op(ValType::I64, ValType::I32)
1910
- }
1911
- fn visit_i64_extend_i32_u(&mut self) -> Self::Output {
1912
- self.check_conversion_op(ValType::I64, ValType::I32)
1913
- }
1914
- fn visit_i64_trunc_f32_s(&mut self) -> Self::Output {
1915
- self.check_conversion_op(ValType::I64, ValType::F32)
1916
- }
1917
- fn visit_i64_trunc_f32_u(&mut self) -> Self::Output {
1918
- self.check_conversion_op(ValType::I64, ValType::F32)
1919
- }
1920
- fn visit_i64_trunc_f64_s(&mut self) -> Self::Output {
1921
- self.check_conversion_op(ValType::I64, ValType::F64)
1922
- }
1923
- fn visit_i64_trunc_f64_u(&mut self) -> Self::Output {
1924
- self.check_conversion_op(ValType::I64, ValType::F64)
1925
- }
1926
- fn visit_f32_convert_i32_s(&mut self) -> Self::Output {
1927
- self.check_fconversion_op(ValType::F32, ValType::I32)
1928
- }
1929
- fn visit_f32_convert_i32_u(&mut self) -> Self::Output {
1930
- self.check_fconversion_op(ValType::F32, ValType::I32)
1931
- }
1932
- fn visit_f32_convert_i64_s(&mut self) -> Self::Output {
1933
- self.check_fconversion_op(ValType::F32, ValType::I64)
1934
- }
1935
- fn visit_f32_convert_i64_u(&mut self) -> Self::Output {
1936
- self.check_fconversion_op(ValType::F32, ValType::I64)
1937
- }
1938
- fn visit_f32_demote_f64(&mut self) -> Self::Output {
1939
- self.check_fconversion_op(ValType::F32, ValType::F64)
1940
- }
1941
- fn visit_f64_convert_i32_s(&mut self) -> Self::Output {
1942
- self.check_fconversion_op(ValType::F64, ValType::I32)
1943
- }
1944
- fn visit_f64_convert_i32_u(&mut self) -> Self::Output {
1945
- self.check_fconversion_op(ValType::F64, ValType::I32)
1946
- }
1947
- fn visit_f64_convert_i64_s(&mut self) -> Self::Output {
1948
- self.check_fconversion_op(ValType::F64, ValType::I64)
1949
- }
1950
- fn visit_f64_convert_i64_u(&mut self) -> Self::Output {
1951
- self.check_fconversion_op(ValType::F64, ValType::I64)
1952
- }
1953
- fn visit_f64_promote_f32(&mut self) -> Self::Output {
1954
- self.check_fconversion_op(ValType::F64, ValType::F32)
1955
- }
1956
- fn visit_i32_reinterpret_f32(&mut self) -> Self::Output {
1957
- self.check_conversion_op(ValType::I32, ValType::F32)
1958
- }
1959
- fn visit_i64_reinterpret_f64(&mut self) -> Self::Output {
1960
- self.check_conversion_op(ValType::I64, ValType::F64)
1961
- }
1962
- fn visit_f32_reinterpret_i32(&mut self) -> Self::Output {
1963
- self.check_fconversion_op(ValType::F32, ValType::I32)
1964
- }
1965
- fn visit_f64_reinterpret_i64(&mut self) -> Self::Output {
1966
- self.check_fconversion_op(ValType::F64, ValType::I64)
1967
- }
1968
- fn visit_i32_trunc_sat_f32_s(&mut self) -> Self::Output {
1969
- self.check_conversion_op(ValType::I32, ValType::F32)
1970
- }
1971
- fn visit_i32_trunc_sat_f32_u(&mut self) -> Self::Output {
1972
- self.check_conversion_op(ValType::I32, ValType::F32)
1973
- }
1974
- fn visit_i32_trunc_sat_f64_s(&mut self) -> Self::Output {
1975
- self.check_conversion_op(ValType::I32, ValType::F64)
1976
- }
1977
- fn visit_i32_trunc_sat_f64_u(&mut self) -> Self::Output {
1978
- self.check_conversion_op(ValType::I32, ValType::F64)
1979
- }
1980
- fn visit_i64_trunc_sat_f32_s(&mut self) -> Self::Output {
1981
- self.check_conversion_op(ValType::I64, ValType::F32)
1982
- }
1983
- fn visit_i64_trunc_sat_f32_u(&mut self) -> Self::Output {
1984
- self.check_conversion_op(ValType::I64, ValType::F32)
1985
- }
1986
- fn visit_i64_trunc_sat_f64_s(&mut self) -> Self::Output {
1987
- self.check_conversion_op(ValType::I64, ValType::F64)
1988
- }
1989
- fn visit_i64_trunc_sat_f64_u(&mut self) -> Self::Output {
1990
- self.check_conversion_op(ValType::I64, ValType::F64)
1991
- }
1992
- fn visit_i32_extend8_s(&mut self) -> Self::Output {
1993
- self.check_unary_op(ValType::I32)
1994
- }
1995
- fn visit_i32_extend16_s(&mut self) -> Self::Output {
1996
- self.check_unary_op(ValType::I32)
1997
- }
1998
- fn visit_i64_extend8_s(&mut self) -> Self::Output {
1999
- self.check_unary_op(ValType::I64)
2000
- }
2001
- fn visit_i64_extend16_s(&mut self) -> Self::Output {
2002
- self.check_unary_op(ValType::I64)
2003
- }
2004
- fn visit_i64_extend32_s(&mut self) -> Self::Output {
2005
- self.check_unary_op(ValType::I64)
2006
- }
2007
- fn visit_i32_atomic_load(&mut self, memarg: MemArg) -> Self::Output {
2008
- self.check_atomic_load(memarg, ValType::I32)
2009
- }
2010
- fn visit_i32_atomic_load16_u(&mut self, memarg: MemArg) -> Self::Output {
2011
- self.check_atomic_load(memarg, ValType::I32)
2012
- }
2013
- fn visit_i32_atomic_load8_u(&mut self, memarg: MemArg) -> Self::Output {
2014
- self.check_atomic_load(memarg, ValType::I32)
2015
- }
2016
- fn visit_i64_atomic_load(&mut self, memarg: MemArg) -> Self::Output {
2017
- self.check_atomic_load(memarg, ValType::I64)
2018
- }
2019
- fn visit_i64_atomic_load32_u(&mut self, memarg: MemArg) -> Self::Output {
2020
- self.check_atomic_load(memarg, ValType::I64)
2021
- }
2022
- fn visit_i64_atomic_load16_u(&mut self, memarg: MemArg) -> Self::Output {
2023
- self.check_atomic_load(memarg, ValType::I64)
2024
- }
2025
- fn visit_i64_atomic_load8_u(&mut self, memarg: MemArg) -> Self::Output {
2026
- self.check_atomic_load(memarg, ValType::I64)
2027
- }
2028
- fn visit_i32_atomic_store(&mut self, memarg: MemArg) -> Self::Output {
2029
- self.check_atomic_store(memarg, ValType::I32)
2030
- }
2031
- fn visit_i32_atomic_store16(&mut self, memarg: MemArg) -> Self::Output {
2032
- self.check_atomic_store(memarg, ValType::I32)
2033
- }
2034
- fn visit_i32_atomic_store8(&mut self, memarg: MemArg) -> Self::Output {
2035
- self.check_atomic_store(memarg, ValType::I32)
2036
- }
2037
- fn visit_i64_atomic_store(&mut self, memarg: MemArg) -> Self::Output {
2038
- self.check_atomic_store(memarg, ValType::I64)
2039
- }
2040
- fn visit_i64_atomic_store32(&mut self, memarg: MemArg) -> Self::Output {
2041
- self.check_atomic_store(memarg, ValType::I64)
2042
- }
2043
- fn visit_i64_atomic_store16(&mut self, memarg: MemArg) -> Self::Output {
2044
- self.check_atomic_store(memarg, ValType::I64)
2045
- }
2046
- fn visit_i64_atomic_store8(&mut self, memarg: MemArg) -> Self::Output {
2047
- self.check_atomic_store(memarg, ValType::I64)
2048
- }
2049
- fn visit_i32_atomic_rmw_add(&mut self, memarg: MemArg) -> Self::Output {
2050
- self.check_atomic_binary_op(memarg, ValType::I32)
2051
- }
2052
- fn visit_i32_atomic_rmw_sub(&mut self, memarg: MemArg) -> Self::Output {
2053
- self.check_atomic_binary_op(memarg, ValType::I32)
2054
- }
2055
- fn visit_i32_atomic_rmw_and(&mut self, memarg: MemArg) -> Self::Output {
2056
- self.check_atomic_binary_op(memarg, ValType::I32)
2057
- }
2058
- fn visit_i32_atomic_rmw_or(&mut self, memarg: MemArg) -> Self::Output {
2059
- self.check_atomic_binary_op(memarg, ValType::I32)
2060
- }
2061
- fn visit_i32_atomic_rmw_xor(&mut self, memarg: MemArg) -> Self::Output {
2062
- self.check_atomic_binary_op(memarg, ValType::I32)
2063
- }
2064
- fn visit_i32_atomic_rmw16_add_u(&mut self, memarg: MemArg) -> Self::Output {
2065
- self.check_atomic_binary_op(memarg, ValType::I32)
2066
- }
2067
- fn visit_i32_atomic_rmw16_sub_u(&mut self, memarg: MemArg) -> Self::Output {
2068
- self.check_atomic_binary_op(memarg, ValType::I32)
2069
- }
2070
- fn visit_i32_atomic_rmw16_and_u(&mut self, memarg: MemArg) -> Self::Output {
2071
- self.check_atomic_binary_op(memarg, ValType::I32)
2072
- }
2073
- fn visit_i32_atomic_rmw16_or_u(&mut self, memarg: MemArg) -> Self::Output {
2074
- self.check_atomic_binary_op(memarg, ValType::I32)
2075
- }
2076
- fn visit_i32_atomic_rmw16_xor_u(&mut self, memarg: MemArg) -> Self::Output {
2077
- self.check_atomic_binary_op(memarg, ValType::I32)
2078
- }
2079
- fn visit_i32_atomic_rmw8_add_u(&mut self, memarg: MemArg) -> Self::Output {
2080
- self.check_atomic_binary_op(memarg, ValType::I32)
2081
- }
2082
- fn visit_i32_atomic_rmw8_sub_u(&mut self, memarg: MemArg) -> Self::Output {
2083
- self.check_atomic_binary_op(memarg, ValType::I32)
2084
- }
2085
- fn visit_i32_atomic_rmw8_and_u(&mut self, memarg: MemArg) -> Self::Output {
2086
- self.check_atomic_binary_op(memarg, ValType::I32)
2087
- }
2088
- fn visit_i32_atomic_rmw8_or_u(&mut self, memarg: MemArg) -> Self::Output {
2089
- self.check_atomic_binary_op(memarg, ValType::I32)
2090
- }
2091
- fn visit_i32_atomic_rmw8_xor_u(&mut self, memarg: MemArg) -> Self::Output {
2092
- self.check_atomic_binary_op(memarg, ValType::I32)
2093
- }
2094
- fn visit_i64_atomic_rmw_add(&mut self, memarg: MemArg) -> Self::Output {
2095
- self.check_atomic_binary_op(memarg, ValType::I64)
2096
- }
2097
- fn visit_i64_atomic_rmw_sub(&mut self, memarg: MemArg) -> Self::Output {
2098
- self.check_atomic_binary_op(memarg, ValType::I64)
2099
- }
2100
- fn visit_i64_atomic_rmw_and(&mut self, memarg: MemArg) -> Self::Output {
2101
- self.check_atomic_binary_op(memarg, ValType::I64)
2102
- }
2103
- fn visit_i64_atomic_rmw_or(&mut self, memarg: MemArg) -> Self::Output {
2104
- self.check_atomic_binary_op(memarg, ValType::I64)
2105
- }
2106
- fn visit_i64_atomic_rmw_xor(&mut self, memarg: MemArg) -> Self::Output {
2107
- self.check_atomic_binary_op(memarg, ValType::I64)
2108
- }
2109
- fn visit_i64_atomic_rmw32_add_u(&mut self, memarg: MemArg) -> Self::Output {
2110
- self.check_atomic_binary_op(memarg, ValType::I64)
2111
- }
2112
- fn visit_i64_atomic_rmw32_sub_u(&mut self, memarg: MemArg) -> Self::Output {
2113
- self.check_atomic_binary_op(memarg, ValType::I64)
2114
- }
2115
- fn visit_i64_atomic_rmw32_and_u(&mut self, memarg: MemArg) -> Self::Output {
2116
- self.check_atomic_binary_op(memarg, ValType::I64)
2117
- }
2118
- fn visit_i64_atomic_rmw32_or_u(&mut self, memarg: MemArg) -> Self::Output {
2119
- self.check_atomic_binary_op(memarg, ValType::I64)
2120
- }
2121
- fn visit_i64_atomic_rmw32_xor_u(&mut self, memarg: MemArg) -> Self::Output {
2122
- self.check_atomic_binary_op(memarg, ValType::I64)
2123
- }
2124
- fn visit_i64_atomic_rmw16_add_u(&mut self, memarg: MemArg) -> Self::Output {
2125
- self.check_atomic_binary_op(memarg, ValType::I64)
2126
- }
2127
- fn visit_i64_atomic_rmw16_sub_u(&mut self, memarg: MemArg) -> Self::Output {
2128
- self.check_atomic_binary_op(memarg, ValType::I64)
2129
- }
2130
- fn visit_i64_atomic_rmw16_and_u(&mut self, memarg: MemArg) -> Self::Output {
2131
- self.check_atomic_binary_op(memarg, ValType::I64)
2132
- }
2133
- fn visit_i64_atomic_rmw16_or_u(&mut self, memarg: MemArg) -> Self::Output {
2134
- self.check_atomic_binary_op(memarg, ValType::I64)
2135
- }
2136
- fn visit_i64_atomic_rmw16_xor_u(&mut self, memarg: MemArg) -> Self::Output {
2137
- self.check_atomic_binary_op(memarg, ValType::I64)
2138
- }
2139
- fn visit_i64_atomic_rmw8_add_u(&mut self, memarg: MemArg) -> Self::Output {
2140
- self.check_atomic_binary_op(memarg, ValType::I64)
2141
- }
2142
- fn visit_i64_atomic_rmw8_sub_u(&mut self, memarg: MemArg) -> Self::Output {
2143
- self.check_atomic_binary_op(memarg, ValType::I64)
2144
- }
2145
- fn visit_i64_atomic_rmw8_and_u(&mut self, memarg: MemArg) -> Self::Output {
2146
- self.check_atomic_binary_op(memarg, ValType::I64)
2147
- }
2148
- fn visit_i64_atomic_rmw8_or_u(&mut self, memarg: MemArg) -> Self::Output {
2149
- self.check_atomic_binary_op(memarg, ValType::I64)
2150
- }
2151
- fn visit_i64_atomic_rmw8_xor_u(&mut self, memarg: MemArg) -> Self::Output {
2152
- self.check_atomic_binary_op(memarg, ValType::I64)
2153
- }
2154
- fn visit_i32_atomic_rmw_xchg(&mut self, memarg: MemArg) -> Self::Output {
2155
- self.check_atomic_binary_op(memarg, ValType::I32)
2156
- }
2157
- fn visit_i32_atomic_rmw16_xchg_u(&mut self, memarg: MemArg) -> Self::Output {
2158
- self.check_atomic_binary_op(memarg, ValType::I32)
2159
- }
2160
- fn visit_i32_atomic_rmw8_xchg_u(&mut self, memarg: MemArg) -> Self::Output {
2161
- self.check_atomic_binary_op(memarg, ValType::I32)
2162
- }
2163
- fn visit_i32_atomic_rmw_cmpxchg(&mut self, memarg: MemArg) -> Self::Output {
2164
- self.check_atomic_binary_cmpxchg(memarg, ValType::I32)
2165
- }
2166
- fn visit_i32_atomic_rmw16_cmpxchg_u(&mut self, memarg: MemArg) -> Self::Output {
2167
- self.check_atomic_binary_cmpxchg(memarg, ValType::I32)
2168
- }
2169
- fn visit_i32_atomic_rmw8_cmpxchg_u(&mut self, memarg: MemArg) -> Self::Output {
2170
- self.check_atomic_binary_cmpxchg(memarg, ValType::I32)
2171
- }
2172
- fn visit_i64_atomic_rmw_xchg(&mut self, memarg: MemArg) -> Self::Output {
2173
- self.check_atomic_binary_op(memarg, ValType::I64)
2174
- }
2175
- fn visit_i64_atomic_rmw32_xchg_u(&mut self, memarg: MemArg) -> Self::Output {
2176
- self.check_atomic_binary_op(memarg, ValType::I64)
2177
- }
2178
- fn visit_i64_atomic_rmw16_xchg_u(&mut self, memarg: MemArg) -> Self::Output {
2179
- self.check_atomic_binary_op(memarg, ValType::I64)
2180
- }
2181
- fn visit_i64_atomic_rmw8_xchg_u(&mut self, memarg: MemArg) -> Self::Output {
2182
- self.check_atomic_binary_op(memarg, ValType::I64)
2183
- }
2184
- fn visit_i64_atomic_rmw_cmpxchg(&mut self, memarg: MemArg) -> Self::Output {
2185
- self.check_atomic_binary_cmpxchg(memarg, ValType::I64)
2186
- }
2187
- fn visit_i64_atomic_rmw32_cmpxchg_u(&mut self, memarg: MemArg) -> Self::Output {
2188
- self.check_atomic_binary_cmpxchg(memarg, ValType::I64)
2189
- }
2190
- fn visit_i64_atomic_rmw16_cmpxchg_u(&mut self, memarg: MemArg) -> Self::Output {
2191
- self.check_atomic_binary_cmpxchg(memarg, ValType::I64)
2192
- }
2193
- fn visit_i64_atomic_rmw8_cmpxchg_u(&mut self, memarg: MemArg) -> Self::Output {
2194
- self.check_atomic_binary_cmpxchg(memarg, ValType::I64)
2195
- }
2196
- fn visit_memory_atomic_notify(&mut self, memarg: MemArg) -> Self::Output {
2197
- self.check_atomic_binary_op(memarg, ValType::I32)
2198
- }
2199
- fn visit_memory_atomic_wait32(&mut self, memarg: MemArg) -> Self::Output {
2200
- let ty = self.check_shared_memarg(memarg)?;
2201
- self.pop_operand(Some(ValType::I64))?;
2202
- self.pop_operand(Some(ValType::I32))?;
2203
- self.pop_operand(Some(ty))?;
2204
- self.push_operand(ValType::I32)?;
2205
- Ok(())
2206
- }
2207
- fn visit_memory_atomic_wait64(&mut self, memarg: MemArg) -> Self::Output {
2208
- let ty = self.check_shared_memarg(memarg)?;
2209
- self.pop_operand(Some(ValType::I64))?;
2210
- self.pop_operand(Some(ValType::I64))?;
2211
- self.pop_operand(Some(ty))?;
2212
- self.push_operand(ValType::I32)?;
2213
- Ok(())
2214
- }
2215
- fn visit_atomic_fence(&mut self) -> Self::Output {
2216
- Ok(())
2217
- }
2218
- fn visit_ref_null(&mut self, heap_type: HeapType) -> Self::Output {
2219
- self.resources
2220
- .check_heap_type(heap_type, &self.features, self.offset)?;
2221
- self.push_operand(ValType::Ref(
2222
- RefType::new(true, heap_type).expect("existing heap types should be within our limits"),
2223
- ))?;
2224
- Ok(())
2225
- }
2226
-
2227
- fn visit_ref_as_non_null(&mut self) -> Self::Output {
2228
- let ty = match self.pop_ref()? {
2229
- Some(ty) => MaybeType::Type(ValType::Ref(ty.as_non_null())),
2230
- None => MaybeType::HeapBot,
2231
- };
2232
- self.push_operand(ty)?;
2233
- Ok(())
2234
- }
2235
- fn visit_br_on_null(&mut self, relative_depth: u32) -> Self::Output {
2236
- let ty = match self.pop_ref()? {
2237
- None => MaybeType::HeapBot,
2238
- Some(ty) => MaybeType::Type(ValType::Ref(ty.as_non_null())),
2239
- };
2240
- let (ft, kind) = self.jump(relative_depth)?;
2241
- for ty in self.label_types(ft, kind)?.rev() {
2242
- self.pop_operand(Some(ty))?;
2243
- }
2244
- for ty in self.label_types(ft, kind)? {
2245
- self.push_operand(ty)?;
2246
- }
2247
- self.push_operand(ty)?;
2248
- Ok(())
2249
- }
2250
- fn visit_br_on_non_null(&mut self, relative_depth: u32) -> Self::Output {
2251
- let ty = self.pop_ref()?;
2252
- let (ft, kind) = self.jump(relative_depth)?;
2253
- let mut lts = self.label_types(ft, kind)?;
2254
- match (lts.next_back(), ty) {
2255
- (None, _) => bail!(
2256
- self.offset,
2257
- "type mismatch: br_on_non_null target has no label types",
2258
- ),
2259
- (Some(ValType::Ref(_)), None) => {}
2260
- (Some(rt1 @ ValType::Ref(_)), Some(rt0)) => {
2261
- // Switch rt0, our popped type, to a non-nullable type and
2262
- // perform the match because if the branch is taken it's a
2263
- // non-null value.
2264
- let ty = rt0.as_non_null();
2265
- if !self.resources.matches(ty.into(), rt1) {
2266
- bail!(
2267
- self.offset,
2268
- "type mismatch: expected {} but found {}",
2269
- ty_to_str(rt0.into()),
2270
- ty_to_str(rt1)
2271
- )
2272
- }
2273
- }
2274
- (Some(_), _) => bail!(
2275
- self.offset,
2276
- "type mismatch: br_on_non_null target does not end with heap type",
2277
- ),
2278
- }
2279
- for ty in self.label_types(ft, kind)?.rev().skip(1) {
2280
- self.pop_operand(Some(ty))?;
2281
- }
2282
- for ty in lts {
2283
- self.push_operand(ty)?;
2284
- }
2285
- Ok(())
2286
- }
2287
- fn visit_ref_is_null(&mut self) -> Self::Output {
2288
- self.pop_ref()?;
2289
- self.push_operand(ValType::I32)?;
2290
- Ok(())
2291
- }
2292
- fn visit_ref_func(&mut self, function_index: u32) -> Self::Output {
2293
- let type_index = match self.resources.type_index_of_function(function_index) {
2294
- Some(idx) => idx,
2295
- None => bail!(
2296
- self.offset,
2297
- "unknown function {}: function index out of bounds",
2298
- function_index,
2299
- ),
2300
- };
2301
- if !self.resources.is_function_referenced(function_index) {
2302
- bail!(self.offset, "undeclared function reference");
2303
- }
2304
-
2305
- // FIXME(#924) this should not be conditional based on enabled
2306
- // proposals.
2307
- if self.features.function_references {
2308
- let heap_type = HeapType::TypedFunc(type_index);
2309
- self.push_operand(
2310
- RefType::new(false, heap_type)
2311
- .expect("our limits on number of types should fit into ref type"),
2312
- )?;
2313
- } else {
2314
- self.push_operand(ValType::FUNCREF)?;
2315
- }
2316
- Ok(())
2317
- }
2318
- fn visit_v128_load(&mut self, memarg: MemArg) -> Self::Output {
2319
- let ty = self.check_memarg(memarg)?;
2320
- self.pop_operand(Some(ty))?;
2321
- self.push_operand(ValType::V128)?;
2322
- Ok(())
2323
- }
2324
- fn visit_v128_store(&mut self, memarg: MemArg) -> Self::Output {
2325
- let ty = self.check_memarg(memarg)?;
2326
- self.pop_operand(Some(ValType::V128))?;
2327
- self.pop_operand(Some(ty))?;
2328
- Ok(())
2329
- }
2330
- fn visit_v128_const(&mut self, _value: V128) -> Self::Output {
2331
- self.push_operand(ValType::V128)?;
2332
- Ok(())
2333
- }
2334
- fn visit_i8x16_splat(&mut self) -> Self::Output {
2335
- self.check_v128_splat(ValType::I32)
2336
- }
2337
- fn visit_i16x8_splat(&mut self) -> Self::Output {
2338
- self.check_v128_splat(ValType::I32)
2339
- }
2340
- fn visit_i32x4_splat(&mut self) -> Self::Output {
2341
- self.check_v128_splat(ValType::I32)
2342
- }
2343
- fn visit_i64x2_splat(&mut self) -> Self::Output {
2344
- self.check_v128_splat(ValType::I64)
2345
- }
2346
- fn visit_f32x4_splat(&mut self) -> Self::Output {
2347
- self.check_floats_enabled()?;
2348
- self.check_v128_splat(ValType::F32)
2349
- }
2350
- fn visit_f64x2_splat(&mut self) -> Self::Output {
2351
- self.check_floats_enabled()?;
2352
- self.check_v128_splat(ValType::F64)
2353
- }
2354
- fn visit_i8x16_extract_lane_s(&mut self, lane: u8) -> Self::Output {
2355
- self.check_simd_lane_index(lane, 16)?;
2356
- self.pop_operand(Some(ValType::V128))?;
2357
- self.push_operand(ValType::I32)?;
2358
- Ok(())
2359
- }
2360
- fn visit_i8x16_extract_lane_u(&mut self, lane: u8) -> Self::Output {
2361
- self.visit_i8x16_extract_lane_s(lane)
2362
- }
2363
- fn visit_i16x8_extract_lane_s(&mut self, lane: u8) -> Self::Output {
2364
- self.check_simd_lane_index(lane, 8)?;
2365
- self.pop_operand(Some(ValType::V128))?;
2366
- self.push_operand(ValType::I32)?;
2367
- Ok(())
2368
- }
2369
- fn visit_i16x8_extract_lane_u(&mut self, lane: u8) -> Self::Output {
2370
- self.visit_i16x8_extract_lane_s(lane)
2371
- }
2372
- fn visit_i32x4_extract_lane(&mut self, lane: u8) -> Self::Output {
2373
- self.check_simd_lane_index(lane, 4)?;
2374
- self.pop_operand(Some(ValType::V128))?;
2375
- self.push_operand(ValType::I32)?;
2376
- Ok(())
2377
- }
2378
- fn visit_i8x16_replace_lane(&mut self, lane: u8) -> Self::Output {
2379
- self.check_simd_lane_index(lane, 16)?;
2380
- self.pop_operand(Some(ValType::I32))?;
2381
- self.pop_operand(Some(ValType::V128))?;
2382
- self.push_operand(ValType::V128)?;
2383
- Ok(())
2384
- }
2385
- fn visit_i16x8_replace_lane(&mut self, lane: u8) -> Self::Output {
2386
- self.check_simd_lane_index(lane, 8)?;
2387
- self.pop_operand(Some(ValType::I32))?;
2388
- self.pop_operand(Some(ValType::V128))?;
2389
- self.push_operand(ValType::V128)?;
2390
- Ok(())
2391
- }
2392
- fn visit_i32x4_replace_lane(&mut self, lane: u8) -> Self::Output {
2393
- self.check_simd_lane_index(lane, 4)?;
2394
- self.pop_operand(Some(ValType::I32))?;
2395
- self.pop_operand(Some(ValType::V128))?;
2396
- self.push_operand(ValType::V128)?;
2397
- Ok(())
2398
- }
2399
- fn visit_i64x2_extract_lane(&mut self, lane: u8) -> Self::Output {
2400
- self.check_simd_lane_index(lane, 2)?;
2401
- self.pop_operand(Some(ValType::V128))?;
2402
- self.push_operand(ValType::I64)?;
2403
- Ok(())
2404
- }
2405
- fn visit_i64x2_replace_lane(&mut self, lane: u8) -> Self::Output {
2406
- self.check_simd_lane_index(lane, 2)?;
2407
- self.pop_operand(Some(ValType::I64))?;
2408
- self.pop_operand(Some(ValType::V128))?;
2409
- self.push_operand(ValType::V128)?;
2410
- Ok(())
2411
- }
2412
- fn visit_f32x4_extract_lane(&mut self, lane: u8) -> Self::Output {
2413
- self.check_floats_enabled()?;
2414
- self.check_simd_lane_index(lane, 4)?;
2415
- self.pop_operand(Some(ValType::V128))?;
2416
- self.push_operand(ValType::F32)?;
2417
- Ok(())
2418
- }
2419
- fn visit_f32x4_replace_lane(&mut self, lane: u8) -> Self::Output {
2420
- self.check_floats_enabled()?;
2421
- self.check_simd_lane_index(lane, 4)?;
2422
- self.pop_operand(Some(ValType::F32))?;
2423
- self.pop_operand(Some(ValType::V128))?;
2424
- self.push_operand(ValType::V128)?;
2425
- Ok(())
2426
- }
2427
- fn visit_f64x2_extract_lane(&mut self, lane: u8) -> Self::Output {
2428
- self.check_floats_enabled()?;
2429
- self.check_simd_lane_index(lane, 2)?;
2430
- self.pop_operand(Some(ValType::V128))?;
2431
- self.push_operand(ValType::F64)?;
2432
- Ok(())
2433
- }
2434
- fn visit_f64x2_replace_lane(&mut self, lane: u8) -> Self::Output {
2435
- self.check_floats_enabled()?;
2436
- self.check_simd_lane_index(lane, 2)?;
2437
- self.pop_operand(Some(ValType::F64))?;
2438
- self.pop_operand(Some(ValType::V128))?;
2439
- self.push_operand(ValType::V128)?;
2440
- Ok(())
2441
- }
2442
- fn visit_f32x4_eq(&mut self) -> Self::Output {
2443
- self.check_v128_fbinary_op()
2444
- }
2445
- fn visit_f32x4_ne(&mut self) -> Self::Output {
2446
- self.check_v128_fbinary_op()
2447
- }
2448
- fn visit_f32x4_lt(&mut self) -> Self::Output {
2449
- self.check_v128_fbinary_op()
2450
- }
2451
- fn visit_f32x4_gt(&mut self) -> Self::Output {
2452
- self.check_v128_fbinary_op()
2453
- }
2454
- fn visit_f32x4_le(&mut self) -> Self::Output {
2455
- self.check_v128_fbinary_op()
2456
- }
2457
- fn visit_f32x4_ge(&mut self) -> Self::Output {
2458
- self.check_v128_fbinary_op()
2459
- }
2460
- fn visit_f64x2_eq(&mut self) -> Self::Output {
2461
- self.check_v128_fbinary_op()
2462
- }
2463
- fn visit_f64x2_ne(&mut self) -> Self::Output {
2464
- self.check_v128_fbinary_op()
2465
- }
2466
- fn visit_f64x2_lt(&mut self) -> Self::Output {
2467
- self.check_v128_fbinary_op()
2468
- }
2469
- fn visit_f64x2_gt(&mut self) -> Self::Output {
2470
- self.check_v128_fbinary_op()
2471
- }
2472
- fn visit_f64x2_le(&mut self) -> Self::Output {
2473
- self.check_v128_fbinary_op()
2474
- }
2475
- fn visit_f64x2_ge(&mut self) -> Self::Output {
2476
- self.check_v128_fbinary_op()
2477
- }
2478
- fn visit_f32x4_add(&mut self) -> Self::Output {
2479
- self.check_v128_fbinary_op()
2480
- }
2481
- fn visit_f32x4_sub(&mut self) -> Self::Output {
2482
- self.check_v128_fbinary_op()
2483
- }
2484
- fn visit_f32x4_mul(&mut self) -> Self::Output {
2485
- self.check_v128_fbinary_op()
2486
- }
2487
- fn visit_f32x4_div(&mut self) -> Self::Output {
2488
- self.check_v128_fbinary_op()
2489
- }
2490
- fn visit_f32x4_min(&mut self) -> Self::Output {
2491
- self.check_v128_fbinary_op()
2492
- }
2493
- fn visit_f32x4_max(&mut self) -> Self::Output {
2494
- self.check_v128_fbinary_op()
2495
- }
2496
- fn visit_f32x4_pmin(&mut self) -> Self::Output {
2497
- self.check_v128_fbinary_op()
2498
- }
2499
- fn visit_f32x4_pmax(&mut self) -> Self::Output {
2500
- self.check_v128_fbinary_op()
2501
- }
2502
- fn visit_f64x2_add(&mut self) -> Self::Output {
2503
- self.check_v128_fbinary_op()
2504
- }
2505
- fn visit_f64x2_sub(&mut self) -> Self::Output {
2506
- self.check_v128_fbinary_op()
2507
- }
2508
- fn visit_f64x2_mul(&mut self) -> Self::Output {
2509
- self.check_v128_fbinary_op()
2510
- }
2511
- fn visit_f64x2_div(&mut self) -> Self::Output {
2512
- self.check_v128_fbinary_op()
2513
- }
2514
- fn visit_f64x2_min(&mut self) -> Self::Output {
2515
- self.check_v128_fbinary_op()
2516
- }
2517
- fn visit_f64x2_max(&mut self) -> Self::Output {
2518
- self.check_v128_fbinary_op()
2519
- }
2520
- fn visit_f64x2_pmin(&mut self) -> Self::Output {
2521
- self.check_v128_fbinary_op()
2522
- }
2523
- fn visit_f64x2_pmax(&mut self) -> Self::Output {
2524
- self.check_v128_fbinary_op()
2525
- }
2526
- fn visit_i8x16_eq(&mut self) -> Self::Output {
2527
- self.check_v128_binary_op()
2528
- }
2529
- fn visit_i8x16_ne(&mut self) -> Self::Output {
2530
- self.check_v128_binary_op()
2531
- }
2532
- fn visit_i8x16_lt_s(&mut self) -> Self::Output {
2533
- self.check_v128_binary_op()
2534
- }
2535
- fn visit_i8x16_lt_u(&mut self) -> Self::Output {
2536
- self.check_v128_binary_op()
2537
- }
2538
- fn visit_i8x16_gt_s(&mut self) -> Self::Output {
2539
- self.check_v128_binary_op()
2540
- }
2541
- fn visit_i8x16_gt_u(&mut self) -> Self::Output {
2542
- self.check_v128_binary_op()
2543
- }
2544
- fn visit_i8x16_le_s(&mut self) -> Self::Output {
2545
- self.check_v128_binary_op()
2546
- }
2547
- fn visit_i8x16_le_u(&mut self) -> Self::Output {
2548
- self.check_v128_binary_op()
2549
- }
2550
- fn visit_i8x16_ge_s(&mut self) -> Self::Output {
2551
- self.check_v128_binary_op()
2552
- }
2553
- fn visit_i8x16_ge_u(&mut self) -> Self::Output {
2554
- self.check_v128_binary_op()
2555
- }
2556
- fn visit_i16x8_eq(&mut self) -> Self::Output {
2557
- self.check_v128_binary_op()
2558
- }
2559
- fn visit_i16x8_ne(&mut self) -> Self::Output {
2560
- self.check_v128_binary_op()
2561
- }
2562
- fn visit_i16x8_lt_s(&mut self) -> Self::Output {
2563
- self.check_v128_binary_op()
2564
- }
2565
- fn visit_i16x8_lt_u(&mut self) -> Self::Output {
2566
- self.check_v128_binary_op()
2567
- }
2568
- fn visit_i16x8_gt_s(&mut self) -> Self::Output {
2569
- self.check_v128_binary_op()
2570
- }
2571
- fn visit_i16x8_gt_u(&mut self) -> Self::Output {
2572
- self.check_v128_binary_op()
2573
- }
2574
- fn visit_i16x8_le_s(&mut self) -> Self::Output {
2575
- self.check_v128_binary_op()
2576
- }
2577
- fn visit_i16x8_le_u(&mut self) -> Self::Output {
2578
- self.check_v128_binary_op()
2579
- }
2580
- fn visit_i16x8_ge_s(&mut self) -> Self::Output {
2581
- self.check_v128_binary_op()
2582
- }
2583
- fn visit_i16x8_ge_u(&mut self) -> Self::Output {
2584
- self.check_v128_binary_op()
2585
- }
2586
- fn visit_i32x4_eq(&mut self) -> Self::Output {
2587
- self.check_v128_binary_op()
2588
- }
2589
- fn visit_i32x4_ne(&mut self) -> Self::Output {
2590
- self.check_v128_binary_op()
2591
- }
2592
- fn visit_i32x4_lt_s(&mut self) -> Self::Output {
2593
- self.check_v128_binary_op()
2594
- }
2595
- fn visit_i32x4_lt_u(&mut self) -> Self::Output {
2596
- self.check_v128_binary_op()
2597
- }
2598
- fn visit_i32x4_gt_s(&mut self) -> Self::Output {
2599
- self.check_v128_binary_op()
2600
- }
2601
- fn visit_i32x4_gt_u(&mut self) -> Self::Output {
2602
- self.check_v128_binary_op()
2603
- }
2604
- fn visit_i32x4_le_s(&mut self) -> Self::Output {
2605
- self.check_v128_binary_op()
2606
- }
2607
- fn visit_i32x4_le_u(&mut self) -> Self::Output {
2608
- self.check_v128_binary_op()
2609
- }
2610
- fn visit_i32x4_ge_s(&mut self) -> Self::Output {
2611
- self.check_v128_binary_op()
2612
- }
2613
- fn visit_i32x4_ge_u(&mut self) -> Self::Output {
2614
- self.check_v128_binary_op()
2615
- }
2616
- fn visit_i64x2_eq(&mut self) -> Self::Output {
2617
- self.check_v128_binary_op()
2618
- }
2619
- fn visit_i64x2_ne(&mut self) -> Self::Output {
2620
- self.check_v128_binary_op()
2621
- }
2622
- fn visit_i64x2_lt_s(&mut self) -> Self::Output {
2623
- self.check_v128_binary_op()
2624
- }
2625
- fn visit_i64x2_gt_s(&mut self) -> Self::Output {
2626
- self.check_v128_binary_op()
2627
- }
2628
- fn visit_i64x2_le_s(&mut self) -> Self::Output {
2629
- self.check_v128_binary_op()
2630
- }
2631
- fn visit_i64x2_ge_s(&mut self) -> Self::Output {
2632
- self.check_v128_binary_op()
2633
- }
2634
- fn visit_v128_and(&mut self) -> Self::Output {
2635
- self.check_v128_binary_op()
2636
- }
2637
- fn visit_v128_andnot(&mut self) -> Self::Output {
2638
- self.check_v128_binary_op()
2639
- }
2640
- fn visit_v128_or(&mut self) -> Self::Output {
2641
- self.check_v128_binary_op()
2642
- }
2643
- fn visit_v128_xor(&mut self) -> Self::Output {
2644
- self.check_v128_binary_op()
2645
- }
2646
- fn visit_i8x16_add(&mut self) -> Self::Output {
2647
- self.check_v128_binary_op()
2648
- }
2649
- fn visit_i8x16_add_sat_s(&mut self) -> Self::Output {
2650
- self.check_v128_binary_op()
2651
- }
2652
- fn visit_i8x16_add_sat_u(&mut self) -> Self::Output {
2653
- self.check_v128_binary_op()
2654
- }
2655
- fn visit_i8x16_sub(&mut self) -> Self::Output {
2656
- self.check_v128_binary_op()
2657
- }
2658
- fn visit_i8x16_sub_sat_s(&mut self) -> Self::Output {
2659
- self.check_v128_binary_op()
2660
- }
2661
- fn visit_i8x16_sub_sat_u(&mut self) -> Self::Output {
2662
- self.check_v128_binary_op()
2663
- }
2664
- fn visit_i8x16_min_s(&mut self) -> Self::Output {
2665
- self.check_v128_binary_op()
2666
- }
2667
- fn visit_i8x16_min_u(&mut self) -> Self::Output {
2668
- self.check_v128_binary_op()
2669
- }
2670
- fn visit_i8x16_max_s(&mut self) -> Self::Output {
2671
- self.check_v128_binary_op()
2672
- }
2673
- fn visit_i8x16_max_u(&mut self) -> Self::Output {
2674
- self.check_v128_binary_op()
2675
- }
2676
- fn visit_i16x8_add(&mut self) -> Self::Output {
2677
- self.check_v128_binary_op()
2678
- }
2679
- fn visit_i16x8_add_sat_s(&mut self) -> Self::Output {
2680
- self.check_v128_binary_op()
2681
- }
2682
- fn visit_i16x8_add_sat_u(&mut self) -> Self::Output {
2683
- self.check_v128_binary_op()
2684
- }
2685
- fn visit_i16x8_sub(&mut self) -> Self::Output {
2686
- self.check_v128_binary_op()
2687
- }
2688
- fn visit_i16x8_sub_sat_s(&mut self) -> Self::Output {
2689
- self.check_v128_binary_op()
2690
- }
2691
- fn visit_i16x8_sub_sat_u(&mut self) -> Self::Output {
2692
- self.check_v128_binary_op()
2693
- }
2694
- fn visit_i16x8_mul(&mut self) -> Self::Output {
2695
- self.check_v128_binary_op()
2696
- }
2697
- fn visit_i16x8_min_s(&mut self) -> Self::Output {
2698
- self.check_v128_binary_op()
2699
- }
2700
- fn visit_i16x8_min_u(&mut self) -> Self::Output {
2701
- self.check_v128_binary_op()
2702
- }
2703
- fn visit_i16x8_max_s(&mut self) -> Self::Output {
2704
- self.check_v128_binary_op()
2705
- }
2706
- fn visit_i16x8_max_u(&mut self) -> Self::Output {
2707
- self.check_v128_binary_op()
2708
- }
2709
- fn visit_i32x4_add(&mut self) -> Self::Output {
2710
- self.check_v128_binary_op()
2711
- }
2712
- fn visit_i32x4_sub(&mut self) -> Self::Output {
2713
- self.check_v128_binary_op()
2714
- }
2715
- fn visit_i32x4_mul(&mut self) -> Self::Output {
2716
- self.check_v128_binary_op()
2717
- }
2718
- fn visit_i32x4_min_s(&mut self) -> Self::Output {
2719
- self.check_v128_binary_op()
2720
- }
2721
- fn visit_i32x4_min_u(&mut self) -> Self::Output {
2722
- self.check_v128_binary_op()
2723
- }
2724
- fn visit_i32x4_max_s(&mut self) -> Self::Output {
2725
- self.check_v128_binary_op()
2726
- }
2727
- fn visit_i32x4_max_u(&mut self) -> Self::Output {
2728
- self.check_v128_binary_op()
2729
- }
2730
- fn visit_i32x4_dot_i16x8_s(&mut self) -> Self::Output {
2731
- self.check_v128_binary_op()
2732
- }
2733
- fn visit_i64x2_add(&mut self) -> Self::Output {
2734
- self.check_v128_binary_op()
2735
- }
2736
- fn visit_i64x2_sub(&mut self) -> Self::Output {
2737
- self.check_v128_binary_op()
2738
- }
2739
- fn visit_i64x2_mul(&mut self) -> Self::Output {
2740
- self.check_v128_binary_op()
2741
- }
2742
- fn visit_i8x16_avgr_u(&mut self) -> Self::Output {
2743
- self.check_v128_binary_op()
2744
- }
2745
- fn visit_i16x8_avgr_u(&mut self) -> Self::Output {
2746
- self.check_v128_binary_op()
2747
- }
2748
- fn visit_i8x16_narrow_i16x8_s(&mut self) -> Self::Output {
2749
- self.check_v128_binary_op()
2750
- }
2751
- fn visit_i8x16_narrow_i16x8_u(&mut self) -> Self::Output {
2752
- self.check_v128_binary_op()
2753
- }
2754
- fn visit_i16x8_narrow_i32x4_s(&mut self) -> Self::Output {
2755
- self.check_v128_binary_op()
2756
- }
2757
- fn visit_i16x8_narrow_i32x4_u(&mut self) -> Self::Output {
2758
- self.check_v128_binary_op()
2759
- }
2760
- fn visit_i16x8_extmul_low_i8x16_s(&mut self) -> Self::Output {
2761
- self.check_v128_binary_op()
2762
- }
2763
- fn visit_i16x8_extmul_high_i8x16_s(&mut self) -> Self::Output {
2764
- self.check_v128_binary_op()
2765
- }
2766
- fn visit_i16x8_extmul_low_i8x16_u(&mut self) -> Self::Output {
2767
- self.check_v128_binary_op()
2768
- }
2769
- fn visit_i16x8_extmul_high_i8x16_u(&mut self) -> Self::Output {
2770
- self.check_v128_binary_op()
2771
- }
2772
- fn visit_i32x4_extmul_low_i16x8_s(&mut self) -> Self::Output {
2773
- self.check_v128_binary_op()
2774
- }
2775
- fn visit_i32x4_extmul_high_i16x8_s(&mut self) -> Self::Output {
2776
- self.check_v128_binary_op()
2777
- }
2778
- fn visit_i32x4_extmul_low_i16x8_u(&mut self) -> Self::Output {
2779
- self.check_v128_binary_op()
2780
- }
2781
- fn visit_i32x4_extmul_high_i16x8_u(&mut self) -> Self::Output {
2782
- self.check_v128_binary_op()
2783
- }
2784
- fn visit_i64x2_extmul_low_i32x4_s(&mut self) -> Self::Output {
2785
- self.check_v128_binary_op()
2786
- }
2787
- fn visit_i64x2_extmul_high_i32x4_s(&mut self) -> Self::Output {
2788
- self.check_v128_binary_op()
2789
- }
2790
- fn visit_i64x2_extmul_low_i32x4_u(&mut self) -> Self::Output {
2791
- self.check_v128_binary_op()
2792
- }
2793
- fn visit_i64x2_extmul_high_i32x4_u(&mut self) -> Self::Output {
2794
- self.check_v128_binary_op()
2795
- }
2796
- fn visit_i16x8_q15mulr_sat_s(&mut self) -> Self::Output {
2797
- self.check_v128_binary_op()
2798
- }
2799
- fn visit_f32x4_ceil(&mut self) -> Self::Output {
2800
- self.check_v128_funary_op()
2801
- }
2802
- fn visit_f32x4_floor(&mut self) -> Self::Output {
2803
- self.check_v128_funary_op()
2804
- }
2805
- fn visit_f32x4_trunc(&mut self) -> Self::Output {
2806
- self.check_v128_funary_op()
2807
- }
2808
- fn visit_f32x4_nearest(&mut self) -> Self::Output {
2809
- self.check_v128_funary_op()
2810
- }
2811
- fn visit_f64x2_ceil(&mut self) -> Self::Output {
2812
- self.check_v128_funary_op()
2813
- }
2814
- fn visit_f64x2_floor(&mut self) -> Self::Output {
2815
- self.check_v128_funary_op()
2816
- }
2817
- fn visit_f64x2_trunc(&mut self) -> Self::Output {
2818
- self.check_v128_funary_op()
2819
- }
2820
- fn visit_f64x2_nearest(&mut self) -> Self::Output {
2821
- self.check_v128_funary_op()
2822
- }
2823
- fn visit_f32x4_abs(&mut self) -> Self::Output {
2824
- self.check_v128_funary_op()
2825
- }
2826
- fn visit_f32x4_neg(&mut self) -> Self::Output {
2827
- self.check_v128_funary_op()
2828
- }
2829
- fn visit_f32x4_sqrt(&mut self) -> Self::Output {
2830
- self.check_v128_funary_op()
2831
- }
2832
- fn visit_f64x2_abs(&mut self) -> Self::Output {
2833
- self.check_v128_funary_op()
2834
- }
2835
- fn visit_f64x2_neg(&mut self) -> Self::Output {
2836
- self.check_v128_funary_op()
2837
- }
2838
- fn visit_f64x2_sqrt(&mut self) -> Self::Output {
2839
- self.check_v128_funary_op()
2840
- }
2841
- fn visit_f32x4_demote_f64x2_zero(&mut self) -> Self::Output {
2842
- self.check_v128_funary_op()
2843
- }
2844
- fn visit_f64x2_promote_low_f32x4(&mut self) -> Self::Output {
2845
- self.check_v128_funary_op()
2846
- }
2847
- fn visit_f64x2_convert_low_i32x4_s(&mut self) -> Self::Output {
2848
- self.check_v128_funary_op()
2849
- }
2850
- fn visit_f64x2_convert_low_i32x4_u(&mut self) -> Self::Output {
2851
- self.check_v128_funary_op()
2852
- }
2853
- fn visit_i32x4_trunc_sat_f32x4_s(&mut self) -> Self::Output {
2854
- self.check_v128_funary_op()
2855
- }
2856
- fn visit_i32x4_trunc_sat_f32x4_u(&mut self) -> Self::Output {
2857
- self.check_v128_funary_op()
2858
- }
2859
- fn visit_i32x4_trunc_sat_f64x2_s_zero(&mut self) -> Self::Output {
2860
- self.check_v128_funary_op()
2861
- }
2862
- fn visit_i32x4_trunc_sat_f64x2_u_zero(&mut self) -> Self::Output {
2863
- self.check_v128_funary_op()
2864
- }
2865
- fn visit_f32x4_convert_i32x4_s(&mut self) -> Self::Output {
2866
- self.check_v128_funary_op()
2867
- }
2868
- fn visit_f32x4_convert_i32x4_u(&mut self) -> Self::Output {
2869
- self.check_v128_funary_op()
2870
- }
2871
- fn visit_v128_not(&mut self) -> Self::Output {
2872
- self.check_v128_unary_op()
2873
- }
2874
- fn visit_i8x16_abs(&mut self) -> Self::Output {
2875
- self.check_v128_unary_op()
2876
- }
2877
- fn visit_i8x16_neg(&mut self) -> Self::Output {
2878
- self.check_v128_unary_op()
2879
- }
2880
- fn visit_i8x16_popcnt(&mut self) -> Self::Output {
2881
- self.check_v128_unary_op()
2882
- }
2883
- fn visit_i16x8_abs(&mut self) -> Self::Output {
2884
- self.check_v128_unary_op()
2885
- }
2886
- fn visit_i16x8_neg(&mut self) -> Self::Output {
2887
- self.check_v128_unary_op()
2888
- }
2889
- fn visit_i32x4_abs(&mut self) -> Self::Output {
2890
- self.check_v128_unary_op()
2891
- }
2892
- fn visit_i32x4_neg(&mut self) -> Self::Output {
2893
- self.check_v128_unary_op()
2894
- }
2895
- fn visit_i64x2_abs(&mut self) -> Self::Output {
2896
- self.check_v128_unary_op()
2897
- }
2898
- fn visit_i64x2_neg(&mut self) -> Self::Output {
2899
- self.check_v128_unary_op()
2900
- }
2901
- fn visit_i16x8_extend_low_i8x16_s(&mut self) -> Self::Output {
2902
- self.check_v128_unary_op()
2903
- }
2904
- fn visit_i16x8_extend_high_i8x16_s(&mut self) -> Self::Output {
2905
- self.check_v128_unary_op()
2906
- }
2907
- fn visit_i16x8_extend_low_i8x16_u(&mut self) -> Self::Output {
2908
- self.check_v128_unary_op()
2909
- }
2910
- fn visit_i16x8_extend_high_i8x16_u(&mut self) -> Self::Output {
2911
- self.check_v128_unary_op()
2912
- }
2913
- fn visit_i32x4_extend_low_i16x8_s(&mut self) -> Self::Output {
2914
- self.check_v128_unary_op()
2915
- }
2916
- fn visit_i32x4_extend_high_i16x8_s(&mut self) -> Self::Output {
2917
- self.check_v128_unary_op()
2918
- }
2919
- fn visit_i32x4_extend_low_i16x8_u(&mut self) -> Self::Output {
2920
- self.check_v128_unary_op()
2921
- }
2922
- fn visit_i32x4_extend_high_i16x8_u(&mut self) -> Self::Output {
2923
- self.check_v128_unary_op()
2924
- }
2925
- fn visit_i64x2_extend_low_i32x4_s(&mut self) -> Self::Output {
2926
- self.check_v128_unary_op()
2927
- }
2928
- fn visit_i64x2_extend_high_i32x4_s(&mut self) -> Self::Output {
2929
- self.check_v128_unary_op()
2930
- }
2931
- fn visit_i64x2_extend_low_i32x4_u(&mut self) -> Self::Output {
2932
- self.check_v128_unary_op()
2933
- }
2934
- fn visit_i64x2_extend_high_i32x4_u(&mut self) -> Self::Output {
2935
- self.check_v128_unary_op()
2936
- }
2937
- fn visit_i16x8_extadd_pairwise_i8x16_s(&mut self) -> Self::Output {
2938
- self.check_v128_unary_op()
2939
- }
2940
- fn visit_i16x8_extadd_pairwise_i8x16_u(&mut self) -> Self::Output {
2941
- self.check_v128_unary_op()
2942
- }
2943
- fn visit_i32x4_extadd_pairwise_i16x8_s(&mut self) -> Self::Output {
2944
- self.check_v128_unary_op()
2945
- }
2946
- fn visit_i32x4_extadd_pairwise_i16x8_u(&mut self) -> Self::Output {
2947
- self.check_v128_unary_op()
2948
- }
2949
- fn visit_v128_bitselect(&mut self) -> Self::Output {
2950
- self.pop_operand(Some(ValType::V128))?;
2951
- self.pop_operand(Some(ValType::V128))?;
2952
- self.pop_operand(Some(ValType::V128))?;
2953
- self.push_operand(ValType::V128)?;
2954
- Ok(())
2955
- }
2956
- fn visit_i8x16_relaxed_swizzle(&mut self) -> Self::Output {
2957
- self.pop_operand(Some(ValType::V128))?;
2958
- self.pop_operand(Some(ValType::V128))?;
2959
- self.push_operand(ValType::V128)?;
2960
- Ok(())
2961
- }
2962
- fn visit_i32x4_relaxed_trunc_f32x4_s(&mut self) -> Self::Output {
2963
- self.check_v128_unary_op()
2964
- }
2965
- fn visit_i32x4_relaxed_trunc_f32x4_u(&mut self) -> Self::Output {
2966
- self.check_v128_unary_op()
2967
- }
2968
- fn visit_i32x4_relaxed_trunc_f64x2_s_zero(&mut self) -> Self::Output {
2969
- self.check_v128_unary_op()
2970
- }
2971
- fn visit_i32x4_relaxed_trunc_f64x2_u_zero(&mut self) -> Self::Output {
2972
- self.check_v128_unary_op()
2973
- }
2974
- fn visit_f32x4_relaxed_madd(&mut self) -> Self::Output {
2975
- self.check_v128_ternary_op()
2976
- }
2977
- fn visit_f32x4_relaxed_nmadd(&mut self) -> Self::Output {
2978
- self.check_v128_ternary_op()
2979
- }
2980
- fn visit_f64x2_relaxed_madd(&mut self) -> Self::Output {
2981
- self.check_v128_ternary_op()
2982
- }
2983
- fn visit_f64x2_relaxed_nmadd(&mut self) -> Self::Output {
2984
- self.check_v128_ternary_op()
2985
- }
2986
- fn visit_i8x16_relaxed_laneselect(&mut self) -> Self::Output {
2987
- self.check_v128_ternary_op()
2988
- }
2989
- fn visit_i16x8_relaxed_laneselect(&mut self) -> Self::Output {
2990
- self.check_v128_ternary_op()
2991
- }
2992
- fn visit_i32x4_relaxed_laneselect(&mut self) -> Self::Output {
2993
- self.check_v128_ternary_op()
2994
- }
2995
- fn visit_i64x2_relaxed_laneselect(&mut self) -> Self::Output {
2996
- self.check_v128_ternary_op()
2997
- }
2998
- fn visit_f32x4_relaxed_min(&mut self) -> Self::Output {
2999
- self.check_v128_binary_op()
3000
- }
3001
- fn visit_f32x4_relaxed_max(&mut self) -> Self::Output {
3002
- self.check_v128_binary_op()
3003
- }
3004
- fn visit_f64x2_relaxed_min(&mut self) -> Self::Output {
3005
- self.check_v128_binary_op()
3006
- }
3007
- fn visit_f64x2_relaxed_max(&mut self) -> Self::Output {
3008
- self.check_v128_binary_op()
3009
- }
3010
- fn visit_i16x8_relaxed_q15mulr_s(&mut self) -> Self::Output {
3011
- self.check_v128_binary_op()
3012
- }
3013
- fn visit_i16x8_relaxed_dot_i8x16_i7x16_s(&mut self) -> Self::Output {
3014
- self.check_v128_binary_op()
3015
- }
3016
- fn visit_i32x4_relaxed_dot_i8x16_i7x16_add_s(&mut self) -> Self::Output {
3017
- self.check_v128_ternary_op()
3018
- }
3019
- fn visit_v128_any_true(&mut self) -> Self::Output {
3020
- self.check_v128_bitmask_op()
3021
- }
3022
- fn visit_i8x16_all_true(&mut self) -> Self::Output {
3023
- self.check_v128_bitmask_op()
3024
- }
3025
- fn visit_i8x16_bitmask(&mut self) -> Self::Output {
3026
- self.check_v128_bitmask_op()
3027
- }
3028
- fn visit_i16x8_all_true(&mut self) -> Self::Output {
3029
- self.check_v128_bitmask_op()
3030
- }
3031
- fn visit_i16x8_bitmask(&mut self) -> Self::Output {
3032
- self.check_v128_bitmask_op()
3033
- }
3034
- fn visit_i32x4_all_true(&mut self) -> Self::Output {
3035
- self.check_v128_bitmask_op()
3036
- }
3037
- fn visit_i32x4_bitmask(&mut self) -> Self::Output {
3038
- self.check_v128_bitmask_op()
3039
- }
3040
- fn visit_i64x2_all_true(&mut self) -> Self::Output {
3041
- self.check_v128_bitmask_op()
3042
- }
3043
- fn visit_i64x2_bitmask(&mut self) -> Self::Output {
3044
- self.check_v128_bitmask_op()
3045
- }
3046
- fn visit_i8x16_shl(&mut self) -> Self::Output {
3047
- self.check_v128_shift_op()
3048
- }
3049
- fn visit_i8x16_shr_s(&mut self) -> Self::Output {
3050
- self.check_v128_shift_op()
3051
- }
3052
- fn visit_i8x16_shr_u(&mut self) -> Self::Output {
3053
- self.check_v128_shift_op()
3054
- }
3055
- fn visit_i16x8_shl(&mut self) -> Self::Output {
3056
- self.check_v128_shift_op()
3057
- }
3058
- fn visit_i16x8_shr_s(&mut self) -> Self::Output {
3059
- self.check_v128_shift_op()
3060
- }
3061
- fn visit_i16x8_shr_u(&mut self) -> Self::Output {
3062
- self.check_v128_shift_op()
3063
- }
3064
- fn visit_i32x4_shl(&mut self) -> Self::Output {
3065
- self.check_v128_shift_op()
3066
- }
3067
- fn visit_i32x4_shr_s(&mut self) -> Self::Output {
3068
- self.check_v128_shift_op()
3069
- }
3070
- fn visit_i32x4_shr_u(&mut self) -> Self::Output {
3071
- self.check_v128_shift_op()
3072
- }
3073
- fn visit_i64x2_shl(&mut self) -> Self::Output {
3074
- self.check_v128_shift_op()
3075
- }
3076
- fn visit_i64x2_shr_s(&mut self) -> Self::Output {
3077
- self.check_v128_shift_op()
3078
- }
3079
- fn visit_i64x2_shr_u(&mut self) -> Self::Output {
3080
- self.check_v128_shift_op()
3081
- }
3082
- fn visit_i8x16_swizzle(&mut self) -> Self::Output {
3083
- self.pop_operand(Some(ValType::V128))?;
3084
- self.pop_operand(Some(ValType::V128))?;
3085
- self.push_operand(ValType::V128)?;
3086
- Ok(())
3087
- }
3088
- fn visit_i8x16_shuffle(&mut self, lanes: [u8; 16]) -> Self::Output {
3089
- self.pop_operand(Some(ValType::V128))?;
3090
- self.pop_operand(Some(ValType::V128))?;
3091
- for i in lanes {
3092
- self.check_simd_lane_index(i, 32)?;
3093
- }
3094
- self.push_operand(ValType::V128)?;
3095
- Ok(())
3096
- }
3097
- fn visit_v128_load8_splat(&mut self, memarg: MemArg) -> Self::Output {
3098
- let ty = self.check_memarg(memarg)?;
3099
- self.pop_operand(Some(ty))?;
3100
- self.push_operand(ValType::V128)?;
3101
- Ok(())
3102
- }
3103
- fn visit_v128_load16_splat(&mut self, memarg: MemArg) -> Self::Output {
3104
- let ty = self.check_memarg(memarg)?;
3105
- self.pop_operand(Some(ty))?;
3106
- self.push_operand(ValType::V128)?;
3107
- Ok(())
3108
- }
3109
- fn visit_v128_load32_splat(&mut self, memarg: MemArg) -> Self::Output {
3110
- let ty = self.check_memarg(memarg)?;
3111
- self.pop_operand(Some(ty))?;
3112
- self.push_operand(ValType::V128)?;
3113
- Ok(())
3114
- }
3115
- fn visit_v128_load32_zero(&mut self, memarg: MemArg) -> Self::Output {
3116
- self.visit_v128_load32_splat(memarg)
3117
- }
3118
- fn visit_v128_load64_splat(&mut self, memarg: MemArg) -> Self::Output {
3119
- self.check_v128_load_op(memarg)
3120
- }
3121
- fn visit_v128_load64_zero(&mut self, memarg: MemArg) -> Self::Output {
3122
- self.check_v128_load_op(memarg)
3123
- }
3124
- fn visit_v128_load8x8_s(&mut self, memarg: MemArg) -> Self::Output {
3125
- self.check_v128_load_op(memarg)
3126
- }
3127
- fn visit_v128_load8x8_u(&mut self, memarg: MemArg) -> Self::Output {
3128
- self.check_v128_load_op(memarg)
3129
- }
3130
- fn visit_v128_load16x4_s(&mut self, memarg: MemArg) -> Self::Output {
3131
- self.check_v128_load_op(memarg)
3132
- }
3133
- fn visit_v128_load16x4_u(&mut self, memarg: MemArg) -> Self::Output {
3134
- self.check_v128_load_op(memarg)
3135
- }
3136
- fn visit_v128_load32x2_s(&mut self, memarg: MemArg) -> Self::Output {
3137
- self.check_v128_load_op(memarg)
3138
- }
3139
- fn visit_v128_load32x2_u(&mut self, memarg: MemArg) -> Self::Output {
3140
- self.check_v128_load_op(memarg)
3141
- }
3142
- fn visit_v128_load8_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3143
- let idx = self.check_memarg(memarg)?;
3144
- self.check_simd_lane_index(lane, 16)?;
3145
- self.pop_operand(Some(ValType::V128))?;
3146
- self.pop_operand(Some(idx))?;
3147
- self.push_operand(ValType::V128)?;
3148
- Ok(())
3149
- }
3150
- fn visit_v128_load16_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3151
- let idx = self.check_memarg(memarg)?;
3152
- self.check_simd_lane_index(lane, 8)?;
3153
- self.pop_operand(Some(ValType::V128))?;
3154
- self.pop_operand(Some(idx))?;
3155
- self.push_operand(ValType::V128)?;
3156
- Ok(())
3157
- }
3158
- fn visit_v128_load32_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3159
- let idx = self.check_memarg(memarg)?;
3160
- self.check_simd_lane_index(lane, 4)?;
3161
- self.pop_operand(Some(ValType::V128))?;
3162
- self.pop_operand(Some(idx))?;
3163
- self.push_operand(ValType::V128)?;
3164
- Ok(())
3165
- }
3166
- fn visit_v128_load64_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3167
- let idx = self.check_memarg(memarg)?;
3168
- self.check_simd_lane_index(lane, 2)?;
3169
- self.pop_operand(Some(ValType::V128))?;
3170
- self.pop_operand(Some(idx))?;
3171
- self.push_operand(ValType::V128)?;
3172
- Ok(())
3173
- }
3174
- fn visit_v128_store8_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3175
- let idx = self.check_memarg(memarg)?;
3176
- self.check_simd_lane_index(lane, 16)?;
3177
- self.pop_operand(Some(ValType::V128))?;
3178
- self.pop_operand(Some(idx))?;
3179
- Ok(())
3180
- }
3181
- fn visit_v128_store16_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3182
- let idx = self.check_memarg(memarg)?;
3183
- self.check_simd_lane_index(lane, 8)?;
3184
- self.pop_operand(Some(ValType::V128))?;
3185
- self.pop_operand(Some(idx))?;
3186
- Ok(())
3187
- }
3188
- fn visit_v128_store32_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3189
- let idx = self.check_memarg(memarg)?;
3190
- self.check_simd_lane_index(lane, 4)?;
3191
- self.pop_operand(Some(ValType::V128))?;
3192
- self.pop_operand(Some(idx))?;
3193
- Ok(())
3194
- }
3195
- fn visit_v128_store64_lane(&mut self, memarg: MemArg, lane: u8) -> Self::Output {
3196
- let idx = self.check_memarg(memarg)?;
3197
- self.check_simd_lane_index(lane, 2)?;
3198
- self.pop_operand(Some(ValType::V128))?;
3199
- self.pop_operand(Some(idx))?;
3200
- Ok(())
3201
- }
3202
- fn visit_memory_init(&mut self, segment: u32, mem: u32) -> Self::Output {
3203
- let ty = self.check_memory_index(mem)?;
3204
- match self.resources.data_count() {
3205
- None => bail!(self.offset, "data count section required"),
3206
- Some(count) if segment < count => {}
3207
- Some(_) => bail!(self.offset, "unknown data segment {}", segment),
3208
- }
3209
- self.pop_operand(Some(ValType::I32))?;
3210
- self.pop_operand(Some(ValType::I32))?;
3211
- self.pop_operand(Some(ty))?;
3212
- Ok(())
3213
- }
3214
- fn visit_data_drop(&mut self, segment: u32) -> Self::Output {
3215
- match self.resources.data_count() {
3216
- None => bail!(self.offset, "data count section required"),
3217
- Some(count) if segment < count => {}
3218
- Some(_) => bail!(self.offset, "unknown data segment {}", segment),
3219
- }
3220
- Ok(())
3221
- }
3222
- fn visit_memory_copy(&mut self, dst: u32, src: u32) -> Self::Output {
3223
- let dst_ty = self.check_memory_index(dst)?;
3224
- let src_ty = self.check_memory_index(src)?;
3225
-
3226
- // The length operand here is the smaller of src/dst, which is
3227
- // i32 if one is i32
3228
- self.pop_operand(Some(match src_ty {
3229
- ValType::I32 => ValType::I32,
3230
- _ => dst_ty,
3231
- }))?;
3232
-
3233
- // ... and the offset into each memory is required to be
3234
- // whatever the indexing type is for that memory
3235
- self.pop_operand(Some(src_ty))?;
3236
- self.pop_operand(Some(dst_ty))?;
3237
- Ok(())
3238
- }
3239
- fn visit_memory_fill(&mut self, mem: u32) -> Self::Output {
3240
- let ty = self.check_memory_index(mem)?;
3241
- self.pop_operand(Some(ty))?;
3242
- self.pop_operand(Some(ValType::I32))?;
3243
- self.pop_operand(Some(ty))?;
3244
- Ok(())
3245
- }
3246
- fn visit_memory_discard(&mut self, mem: u32) -> Self::Output {
3247
- let ty = self.check_memory_index(mem)?;
3248
- self.pop_operand(Some(ty))?;
3249
- self.pop_operand(Some(ty))?;
3250
- Ok(())
3251
- }
3252
- fn visit_table_init(&mut self, segment: u32, table: u32) -> Self::Output {
3253
- if table > 0 {}
3254
- let table = match self.resources.table_at(table) {
3255
- Some(table) => table,
3256
- None => bail!(
3257
- self.offset,
3258
- "unknown table {}: table index out of bounds",
3259
- table
3260
- ),
3261
- };
3262
- let segment_ty = match self.resources.element_type_at(segment) {
3263
- Some(ty) => ty,
3264
- None => bail!(
3265
- self.offset,
3266
- "unknown elem segment {}: segment index out of bounds",
3267
- segment
3268
- ),
3269
- };
3270
- if segment_ty != table.element_type {
3271
- bail!(self.offset, "type mismatch");
3272
- }
3273
- self.pop_operand(Some(ValType::I32))?;
3274
- self.pop_operand(Some(ValType::I32))?;
3275
- self.pop_operand(Some(ValType::I32))?;
3276
- Ok(())
3277
- }
3278
- fn visit_elem_drop(&mut self, segment: u32) -> Self::Output {
3279
- if segment >= self.resources.element_count() {
3280
- bail!(
3281
- self.offset,
3282
- "unknown elem segment {}: segment index out of bounds",
3283
- segment
3284
- );
3285
- }
3286
- Ok(())
3287
- }
3288
- fn visit_table_copy(&mut self, dst_table: u32, src_table: u32) -> Self::Output {
3289
- if src_table > 0 || dst_table > 0 {}
3290
- let (src, dst) = match (
3291
- self.resources.table_at(src_table),
3292
- self.resources.table_at(dst_table),
3293
- ) {
3294
- (Some(a), Some(b)) => (a, b),
3295
- _ => bail!(self.offset, "table index out of bounds"),
3296
- };
3297
- if !self.resources.matches(
3298
- ValType::Ref(src.element_type),
3299
- ValType::Ref(dst.element_type),
3300
- ) {
3301
- bail!(self.offset, "type mismatch");
3302
- }
3303
- self.pop_operand(Some(ValType::I32))?;
3304
- self.pop_operand(Some(ValType::I32))?;
3305
- self.pop_operand(Some(ValType::I32))?;
3306
- Ok(())
3307
- }
3308
- fn visit_table_get(&mut self, table: u32) -> Self::Output {
3309
- let ty = match self.resources.table_at(table) {
3310
- Some(ty) => ty.element_type,
3311
- None => bail!(self.offset, "table index out of bounds"),
3312
- };
3313
- self.pop_operand(Some(ValType::I32))?;
3314
- self.push_operand(ValType::Ref(ty))?;
3315
- Ok(())
3316
- }
3317
- fn visit_table_set(&mut self, table: u32) -> Self::Output {
3318
- let ty = match self.resources.table_at(table) {
3319
- Some(ty) => ty.element_type,
3320
- None => bail!(self.offset, "table index out of bounds"),
3321
- };
3322
- self.pop_operand(Some(ValType::Ref(ty)))?;
3323
- self.pop_operand(Some(ValType::I32))?;
3324
- Ok(())
3325
- }
3326
- fn visit_table_grow(&mut self, table: u32) -> Self::Output {
3327
- let ty = match self.resources.table_at(table) {
3328
- Some(ty) => ty.element_type,
3329
- None => bail!(self.offset, "table index out of bounds"),
3330
- };
3331
- self.pop_operand(Some(ValType::I32))?;
3332
- self.pop_operand(Some(ValType::Ref(ty)))?;
3333
- self.push_operand(ValType::I32)?;
3334
- Ok(())
3335
- }
3336
- fn visit_table_size(&mut self, table: u32) -> Self::Output {
3337
- if self.resources.table_at(table).is_none() {
3338
- bail!(self.offset, "table index out of bounds");
3339
- }
3340
- self.push_operand(ValType::I32)?;
3341
- Ok(())
3342
- }
3343
- fn visit_table_fill(&mut self, table: u32) -> Self::Output {
3344
- let ty = match self.resources.table_at(table) {
3345
- Some(ty) => ty.element_type,
3346
- None => bail!(self.offset, "table index out of bounds"),
3347
- };
3348
- self.pop_operand(Some(ValType::I32))?;
3349
- self.pop_operand(Some(ValType::Ref(ty)))?;
3350
- self.pop_operand(Some(ValType::I32))?;
3351
- Ok(())
3352
- }
3353
- }
3354
-
3355
- #[derive(Clone)]
3356
- enum Either<A, B> {
3357
- A(A),
3358
- B(B),
3359
- }
3360
-
3361
- impl<A, B> Iterator for Either<A, B>
3362
- where
3363
- A: Iterator,
3364
- B: Iterator<Item = A::Item>,
3365
- {
3366
- type Item = A::Item;
3367
- fn next(&mut self) -> Option<A::Item> {
3368
- match self {
3369
- Either::A(a) => a.next(),
3370
- Either::B(b) => b.next(),
3371
- }
3372
- }
3373
- }
3374
-
3375
- impl<A, B> DoubleEndedIterator for Either<A, B>
3376
- where
3377
- A: DoubleEndedIterator,
3378
- B: DoubleEndedIterator<Item = A::Item>,
3379
- {
3380
- fn next_back(&mut self) -> Option<A::Item> {
3381
- match self {
3382
- Either::A(a) => a.next_back(),
3383
- Either::B(b) => b.next_back(),
3384
- }
3385
- }
3386
- }
3387
-
3388
- impl<A, B> ExactSizeIterator for Either<A, B>
3389
- where
3390
- A: ExactSizeIterator,
3391
- B: ExactSizeIterator<Item = A::Item>,
3392
- {
3393
- fn len(&self) -> usize {
3394
- match self {
3395
- Either::A(a) => a.len(),
3396
- Either::B(b) => b.len(),
3397
- }
3398
- }
3399
- }
3400
-
3401
- trait PreciseIterator: ExactSizeIterator + DoubleEndedIterator + Clone {}
3402
- impl<T: ExactSizeIterator + DoubleEndedIterator + Clone> PreciseIterator for T {}
3403
-
3404
- impl Locals {
3405
- /// Defines another group of `count` local variables of type `ty`.
3406
- ///
3407
- /// Returns `true` if the definition was successful. Local variable
3408
- /// definition is unsuccessful in case the amount of total variables
3409
- /// after definition exceeds the allowed maximum number.
3410
- fn define(&mut self, count: u32, ty: ValType) -> bool {
3411
- match self.num_locals.checked_add(count) {
3412
- Some(n) => self.num_locals = n,
3413
- None => return false,
3414
- }
3415
- if self.num_locals > (MAX_WASM_FUNCTION_LOCALS as u32) {
3416
- return false;
3417
- }
3418
- for _ in 0..count {
3419
- if self.first.len() >= MAX_LOCALS_TO_TRACK {
3420
- break;
3421
- }
3422
- self.first.push(ty);
3423
- }
3424
- self.all.push((self.num_locals - 1, ty));
3425
- true
3426
- }
3427
-
3428
- /// Returns the number of defined local variables.
3429
- pub(super) fn len_locals(&self) -> u32 {
3430
- self.num_locals
3431
- }
3432
-
3433
- /// Returns the type of the local variable at the given index if any.
3434
- #[inline]
3435
- pub(super) fn get(&self, idx: u32) -> Option<ValType> {
3436
- match self.first.get(idx as usize) {
3437
- Some(ty) => Some(*ty),
3438
- None => self.get_bsearch(idx),
3439
- }
3440
- }
3441
-
3442
- fn get_bsearch(&self, idx: u32) -> Option<ValType> {
3443
- match self.all.binary_search_by_key(&idx, |(idx, _)| *idx) {
3444
- // If this index would be inserted at the end of the list, then the
3445
- // index is out of bounds and we return an error.
3446
- Err(i) if i == self.all.len() => None,
3447
-
3448
- // If `Ok` is returned we found the index exactly, or if `Err` is
3449
- // returned the position is the one which is the least index
3450
- // greater that `idx`, which is still the type of `idx` according
3451
- // to our "compressed" representation. In both cases we access the
3452
- // list at index `i`.
3453
- Ok(i) | Err(i) => Some(self.all[i].1),
3454
- }
3455
- }
3456
- }