wasmtime 24.0.0 → 25.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2451) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +112 -111
  3. data/ext/Cargo.toml +5 -5
  4. data/ext/cargo-vendor/cranelift-bforest-0.112.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cranelift-bforest-0.112.0/Cargo.toml +59 -0
  6. data/ext/cargo-vendor/cranelift-bforest-0.112.0/src/node.rs +806 -0
  7. data/ext/cargo-vendor/cranelift-bforest-0.112.0/src/path.rs +830 -0
  8. data/ext/cargo-vendor/cranelift-bforest-0.112.0/src/pool.rs +219 -0
  9. data/ext/cargo-vendor/cranelift-bitset-0.112.0/.cargo-checksum.json +1 -0
  10. data/ext/cargo-vendor/cranelift-bitset-0.112.0/Cargo.toml +74 -0
  11. data/ext/cargo-vendor/cranelift-bitset-0.112.0/src/scalar.rs +626 -0
  12. data/ext/cargo-vendor/cranelift-codegen-0.112.0/.cargo-checksum.json +1 -0
  13. data/ext/cargo-vendor/cranelift-codegen-0.112.0/Cargo.toml +222 -0
  14. data/ext/cargo-vendor/cranelift-codegen-0.112.0/build.rs +267 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/binemit/mod.rs +168 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/cfg_printer.rs +83 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/data_value.rs +402 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/dbg.rs +28 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/egraph.rs +835 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/incremental_cache.rs +256 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/inst_predicates.rs +207 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/constant.rs +485 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/dfg.rs +1802 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/entities.rs +564 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/extfunc.rs +408 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/extname.rs +333 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/function.rs +500 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/globalvalue.rs +147 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/immediates.rs +1941 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/instructions.rs +1021 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/memtype.rs +190 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/progpoint.rs +75 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/trapcode.rs +148 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/types.rs +624 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/ir/user_stack_maps.rs +199 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/abi.rs +1520 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/args.rs +711 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/emit.rs +3567 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/emit_tests.rs +7972 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/imms.rs +1244 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/mod.rs +3051 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/regs.rs +269 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst/unwind/systemv.rs +174 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/inst.isle +4267 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/lower/isle.rs +811 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/lower.isle +2968 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/pcc.rs +570 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/aarch64/settings.rs +9 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/mod.rs +471 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley32.rs +13 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley64.rs +13 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/abi.rs +798 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/args.rs +192 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/emit.rs +482 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/mod.rs +905 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst/regs.rs +164 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/inst.isle +543 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower/isle/generated_code.rs +17 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower/isle.rs +195 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower.isle +178 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/lower.rs +36 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/mod.rs +281 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/pulley_shared/settings.rs +16 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/abi.rs +993 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/args.rs +1957 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/emit.rs +2685 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/emit_tests.rs +2277 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/encode.rs +721 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/mod.rs +1865 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/unwind/systemv.rs +170 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst/vector.rs +1150 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst.isle +3128 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/inst_vector.isle +1907 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/lower/isle.rs +721 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/riscv64/lower.isle +2940 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/abi.rs +1348 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/emit.rs +3470 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/emit_tests.rs +13370 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/mod.rs +3461 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/regs.rs +169 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst/unwind/systemv.rs +212 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/inst.isle +5071 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/lower/isle.rs +1109 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/s390x/lower.isle +3981 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/unwind/systemv.rs +276 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/abi.rs +1390 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/encoding/evex.rs +747 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/args.rs +2318 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/emit.rs +4400 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/emit_state.rs +55 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/emit_tests.rs +5146 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/mod.rs +2811 -0
  93. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/regs.rs +275 -0
  94. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/stack_switch.rs +52 -0
  95. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst/unwind/systemv.rs +198 -0
  96. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/inst.isle +5382 -0
  97. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/lower/isle.rs +1047 -0
  98. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/lower.isle +4919 -0
  99. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/lower.rs +338 -0
  100. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/mod.rs +239 -0
  101. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isa/x64/pcc.rs +1022 -0
  102. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/isle_prelude.rs +1144 -0
  103. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/lib.rs +106 -0
  104. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/abi.rs +2417 -0
  105. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/buffer.rs +2492 -0
  106. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/isle.rs +890 -0
  107. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/lower.rs +1590 -0
  108. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/mod.rs +560 -0
  109. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/reg.rs +484 -0
  110. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/machinst/vcode.rs +1762 -0
  111. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/opts/extends.isle +95 -0
  112. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/opts/icmp.isle +258 -0
  113. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/opts/selects.isle +88 -0
  114. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/prelude.isle +751 -0
  115. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/prelude_lower.isle +1081 -0
  116. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/print_errors.rs +223 -0
  117. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/remove_constant_phis.rs +419 -0
  118. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/result.rs +111 -0
  119. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/settings.rs +591 -0
  120. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/timing.rs +296 -0
  121. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/verifier/mod.rs +1941 -0
  122. data/ext/cargo-vendor/cranelift-codegen-0.112.0/src/write.rs +694 -0
  123. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/Cargo.toml +54 -0
  125. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/cdsl/settings.rs +429 -0
  126. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/cdsl/types.rs +420 -0
  127. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/cdsl/typevar.rs +946 -0
  128. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/error.rs +48 -0
  129. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_inst.rs +1274 -0
  130. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_isle.rs +519 -0
  131. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_settings.rs +505 -0
  132. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/gen_types.rs +70 -0
  133. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/arm64.rs +59 -0
  134. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/mod.rs +81 -0
  135. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/pulley.rs +14 -0
  136. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/riscv64.rs +181 -0
  137. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isa/x86.rs +414 -0
  138. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/isle.rs +142 -0
  139. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/lib.rs +98 -0
  140. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/instructions.rs +3801 -0
  141. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/mod.rs +87 -0
  142. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/settings.rs +361 -0
  143. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/shared/types.rs +103 -0
  144. data/ext/cargo-vendor/cranelift-codegen-meta-0.112.0/src/srcgen.rs +464 -0
  145. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/.cargo-checksum.json +1 -0
  146. data/ext/cargo-vendor/cranelift-codegen-shared-0.112.0/Cargo.toml +32 -0
  147. data/ext/cargo-vendor/cranelift-control-0.112.0/.cargo-checksum.json +1 -0
  148. data/ext/cargo-vendor/cranelift-control-0.112.0/Cargo.toml +43 -0
  149. data/ext/cargo-vendor/cranelift-entity-0.112.0/.cargo-checksum.json +1 -0
  150. data/ext/cargo-vendor/cranelift-entity-0.112.0/Cargo.toml +75 -0
  151. data/ext/cargo-vendor/cranelift-entity-0.112.0/src/lib.rs +381 -0
  152. data/ext/cargo-vendor/cranelift-entity-0.112.0/src/packed_option.rs +173 -0
  153. data/ext/cargo-vendor/cranelift-entity-0.112.0/src/sparse.rs +367 -0
  154. data/ext/cargo-vendor/cranelift-frontend-0.112.0/.cargo-checksum.json +1 -0
  155. data/ext/cargo-vendor/cranelift-frontend-0.112.0/Cargo.toml +97 -0
  156. data/ext/cargo-vendor/cranelift-frontend-0.112.0/src/frontend.rs +1963 -0
  157. data/ext/cargo-vendor/cranelift-frontend-0.112.0/src/ssa.rs +1325 -0
  158. data/ext/cargo-vendor/cranelift-frontend-0.112.0/src/switch.rs +676 -0
  159. data/ext/cargo-vendor/cranelift-isle-0.112.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/cranelift-isle-0.112.0/Cargo.toml +69 -0
  161. data/ext/cargo-vendor/cranelift-isle-0.112.0/build.rs +35 -0
  162. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/ast.rs +412 -0
  163. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/codegen.rs +922 -0
  164. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/compile.rs +65 -0
  165. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/error.rs +318 -0
  166. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/files.rs +133 -0
  167. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/lexer.rs +343 -0
  168. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/lib.rs +34 -0
  169. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/overlap.rs +130 -0
  170. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/parser.rs +551 -0
  171. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/sema.rs +2482 -0
  172. data/ext/cargo-vendor/cranelift-isle-0.112.0/src/trie_again.rs +696 -0
  173. data/ext/cargo-vendor/cranelift-isle-0.112.0/tests/run_tests.rs +77 -0
  174. data/ext/cargo-vendor/cranelift-native-0.112.0/.cargo-checksum.json +1 -0
  175. data/ext/cargo-vendor/cranelift-native-0.112.0/Cargo.toml +52 -0
  176. data/ext/cargo-vendor/cranelift-native-0.112.0/src/lib.rs +192 -0
  177. data/ext/cargo-vendor/cranelift-wasm-0.112.0/.cargo-checksum.json +1 -0
  178. data/ext/cargo-vendor/cranelift-wasm-0.112.0/Cargo.toml +128 -0
  179. data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/code_translator.rs +3723 -0
  180. data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/environ/dummy.rs +897 -0
  181. data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/environ/spec.rs +922 -0
  182. data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/func_translator.rs +283 -0
  183. data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/module_translator.rs +120 -0
  184. data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/sections_translator.rs +332 -0
  185. data/ext/cargo-vendor/cranelift-wasm-0.112.0/src/translation_utils.rs +95 -0
  186. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.25/.cargo-checksum.json +1 -0
  187. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.25/Cargo.toml +69 -0
  188. data/ext/cargo-vendor/pulley-interpreter-0.1.0/.cargo-checksum.json +1 -0
  189. data/ext/cargo-vendor/pulley-interpreter-0.1.0/Cargo.toml +85 -0
  190. data/ext/cargo-vendor/pulley-interpreter-0.1.0/README.md +109 -0
  191. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/decode.rs +657 -0
  192. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/disas.rs +256 -0
  193. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/encode.rs +198 -0
  194. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/imms.rs +31 -0
  195. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/interp.rs +1113 -0
  196. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/lib.rs +215 -0
  197. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/op.rs +256 -0
  198. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/opcode.rs +126 -0
  199. data/ext/cargo-vendor/pulley-interpreter-0.1.0/src/regs.rs +329 -0
  200. data/ext/cargo-vendor/pulley-interpreter-0.1.0/tests/all/disas.rs +87 -0
  201. data/ext/cargo-vendor/pulley-interpreter-0.1.0/tests/all/interp.rs +1216 -0
  202. data/ext/cargo-vendor/pulley-interpreter-0.1.0/tests/all/main.rs +5 -0
  203. data/ext/cargo-vendor/regalloc2-0.10.2/.cargo-checksum.json +1 -0
  204. data/ext/cargo-vendor/regalloc2-0.10.2/Cargo.toml +83 -0
  205. data/ext/cargo-vendor/regalloc2-0.10.2/doc/DESIGN.md +1411 -0
  206. data/ext/cargo-vendor/regalloc2-0.10.2/src/cfg.rs +135 -0
  207. data/ext/cargo-vendor/regalloc2-0.10.2/src/checker.rs +993 -0
  208. data/ext/cargo-vendor/regalloc2-0.10.2/src/fuzzing/func.rs +651 -0
  209. data/ext/cargo-vendor/regalloc2-0.10.2/src/fuzzing/mod.rs +31 -0
  210. data/ext/cargo-vendor/regalloc2-0.10.2/src/index.rs +209 -0
  211. data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/data_structures.rs +838 -0
  212. data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/liveranges.rs +882 -0
  213. data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/merge.rs +366 -0
  214. data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/mod.rs +143 -0
  215. data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/moves.rs +1006 -0
  216. data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/process.rs +1319 -0
  217. data/ext/cargo-vendor/regalloc2-0.10.2/src/ion/requirement.rs +167 -0
  218. data/ext/cargo-vendor/regalloc2-0.10.2/src/lib.rs +1518 -0
  219. data/ext/cargo-vendor/regalloc2-0.10.2/src/serialize.rs +293 -0
  220. data/ext/cargo-vendor/rustc-hash-2.0.0/.cargo-checksum.json +1 -0
  221. data/ext/cargo-vendor/rustc-hash-2.0.0/CHANGELOG.md +19 -0
  222. data/ext/cargo-vendor/rustc-hash-2.0.0/CODE_OF_CONDUCT.md +3 -0
  223. data/ext/cargo-vendor/rustc-hash-2.0.0/Cargo.toml +39 -0
  224. data/ext/cargo-vendor/rustc-hash-2.0.0/LICENSE-APACHE +176 -0
  225. data/ext/cargo-vendor/rustc-hash-2.0.0/LICENSE-MIT +23 -0
  226. data/ext/cargo-vendor/rustc-hash-2.0.0/README.md +42 -0
  227. data/ext/cargo-vendor/rustc-hash-2.0.0/src/lib.rs +459 -0
  228. data/ext/cargo-vendor/rustc-hash-2.0.0/src/random_state.rs +92 -0
  229. data/ext/cargo-vendor/rustc-hash-2.0.0/src/seeded_state.rs +53 -0
  230. data/ext/cargo-vendor/wasi-common-25.0.0/.cargo-checksum.json +1 -0
  231. data/ext/cargo-vendor/wasi-common-25.0.0/Cargo.toml +242 -0
  232. data/ext/cargo-vendor/wasi-common-25.0.0/src/ctx.rs +128 -0
  233. data/ext/cargo-vendor/wasi-common-25.0.0/src/lib.rs +193 -0
  234. data/ext/cargo-vendor/wasi-common-25.0.0/src/snapshots/mod.rs +24 -0
  235. data/ext/cargo-vendor/wasi-common-25.0.0/src/sync/dir.rs +461 -0
  236. data/ext/cargo-vendor/wasi-common-25.0.0/src/tokio/dir.rs +220 -0
  237. data/ext/cargo-vendor/wasi-common-25.0.0/tests/all/async_.rs +294 -0
  238. data/ext/cargo-vendor/wasi-common-25.0.0/tests/all/main.rs +21 -0
  239. data/ext/cargo-vendor/wasi-common-25.0.0/tests/all/sync.rs +283 -0
  240. data/ext/cargo-vendor/wasm-encoder-0.217.0/.cargo-checksum.json +1 -0
  241. data/ext/cargo-vendor/wasm-encoder-0.217.0/Cargo.toml +65 -0
  242. data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/builder.rs +469 -0
  243. data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/exports.rs +129 -0
  244. data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/imports.rs +169 -0
  245. data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/instances.rs +199 -0
  246. data/ext/cargo-vendor/wasm-encoder-0.217.0/src/component/types.rs +800 -0
  247. data/ext/cargo-vendor/wasm-encoder-0.217.0/src/core/code.rs +3947 -0
  248. data/ext/cargo-vendor/wasmparser-0.217.0/.cargo-checksum.json +1 -0
  249. data/ext/cargo-vendor/wasmparser-0.217.0/Cargo.lock +679 -0
  250. data/ext/cargo-vendor/wasmparser-0.217.0/Cargo.toml +139 -0
  251. data/ext/cargo-vendor/wasmparser-0.217.0/benches/benchmark.rs +350 -0
  252. data/ext/cargo-vendor/wasmparser-0.217.0/src/binary_reader.rs +2115 -0
  253. data/ext/cargo-vendor/wasmparser-0.217.0/src/features.rs +281 -0
  254. data/ext/cargo-vendor/wasmparser-0.217.0/src/limits.rs +80 -0
  255. data/ext/cargo-vendor/wasmparser-0.217.0/src/parser.rs +1691 -0
  256. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/aliases.rs +119 -0
  257. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/canonicals.rs +121 -0
  258. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/exports.rs +135 -0
  259. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/imports.rs +145 -0
  260. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/instances.rs +166 -0
  261. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/component/types.rs +553 -0
  262. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/code.rs +142 -0
  263. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/coredumps.rs +278 -0
  264. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/data.rs +94 -0
  265. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/exports.rs +65 -0
  266. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/globals.rs +61 -0
  267. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/imports.rs +76 -0
  268. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/init.rs +65 -0
  269. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/operators.rs +479 -0
  270. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/producers.rs +84 -0
  271. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers/core/types.rs +1987 -0
  272. data/ext/cargo-vendor/wasmparser-0.217.0/src/readers.rs +315 -0
  273. data/ext/cargo-vendor/wasmparser-0.217.0/src/resources.rs +245 -0
  274. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/component.rs +3297 -0
  275. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/core/canonical.rs +409 -0
  276. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/core.rs +1374 -0
  277. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/func.rs +340 -0
  278. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/names.rs +1012 -0
  279. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/operators.rs +4845 -0
  280. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator/types.rs +4612 -0
  281. data/ext/cargo-vendor/wasmparser-0.217.0/src/validator.rs +1658 -0
  282. data/ext/cargo-vendor/wasmprinter-0.217.0/.cargo-checksum.json +1 -0
  283. data/ext/cargo-vendor/wasmprinter-0.217.0/Cargo.toml +74 -0
  284. data/ext/cargo-vendor/wasmprinter-0.217.0/src/lib.rs +3250 -0
  285. data/ext/cargo-vendor/wasmtime-25.0.0/.cargo-checksum.json +1 -0
  286. data/ext/cargo-vendor/wasmtime-25.0.0/Cargo.toml +407 -0
  287. data/ext/cargo-vendor/wasmtime-25.0.0/build.rs +38 -0
  288. data/ext/cargo-vendor/wasmtime-25.0.0/src/compile/code_builder.rs +317 -0
  289. data/ext/cargo-vendor/wasmtime-25.0.0/src/compile/runtime.rs +167 -0
  290. data/ext/cargo-vendor/wasmtime-25.0.0/src/compile.rs +881 -0
  291. data/ext/cargo-vendor/wasmtime-25.0.0/src/config.rs +3021 -0
  292. data/ext/cargo-vendor/wasmtime-25.0.0/src/engine/serialization.rs +906 -0
  293. data/ext/cargo-vendor/wasmtime-25.0.0/src/engine.rs +778 -0
  294. data/ext/cargo-vendor/wasmtime-25.0.0/src/lib.rs +406 -0
  295. data/ext/cargo-vendor/wasmtime-25.0.0/src/profiling_agent/jitdump.rs +64 -0
  296. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/component.rs +810 -0
  297. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/func/host.rs +458 -0
  298. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/func/typed.rs +2497 -0
  299. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/linker.rs +704 -0
  300. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/mod.rs +673 -0
  301. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/resources.rs +1132 -0
  302. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/component/types.rs +897 -0
  303. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/coredump.rs +339 -0
  304. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/externals/global.rs +312 -0
  305. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/externals/table.rs +480 -0
  306. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/func.rs +2607 -0
  307. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled/anyref.rs +126 -0
  308. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled/arrayref.rs +56 -0
  309. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled/rooting.rs +229 -0
  310. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/disabled.rs +23 -0
  311. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/anyref.rs +662 -0
  312. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/arrayref.rs +879 -0
  313. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/i31.rs +291 -0
  314. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled/rooting.rs +1755 -0
  315. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/gc/enabled.rs +16 -0
  316. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/instance.rs +989 -0
  317. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/linker.rs +1498 -0
  318. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/memory.rs +1101 -0
  319. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/module.rs +1178 -0
  320. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/store.rs +2877 -0
  321. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/trampoline/global.rs +70 -0
  322. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/trap.rs +641 -0
  323. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/types.rs +2932 -0
  324. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/values.rs +1050 -0
  325. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/const_expr.rs +132 -0
  326. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/cow.rs +992 -0
  327. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/disabled.rs +41 -0
  328. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/arrayref.rs +342 -0
  329. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/data.rs +149 -0
  330. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/drc.rs +1163 -0
  331. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled/structref.rs +336 -0
  332. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/enabled.rs +29 -0
  333. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/gc_ref.rs +479 -0
  334. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc/gc_runtime.rs +718 -0
  335. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/gc.rs +339 -0
  336. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/helpers.c +118 -0
  337. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +95 -0
  338. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +702 -0
  339. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/libcalls.rs +850 -0
  340. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/custom/traphandlers.rs +57 -0
  341. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/unix/machports.rs +440 -0
  342. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/unix/mmap.rs +159 -0
  343. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/unix/signals.rs +465 -0
  344. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/sys/windows/traphandlers.rs +135 -0
  345. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/threads/parking_spot.rs +623 -0
  346. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/traphandlers.rs +787 -0
  347. data/ext/cargo-vendor/wasmtime-25.0.0/src/runtime/vm/vmcontext.rs +1246 -0
  348. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/.cargo-checksum.json +1 -0
  349. data/ext/cargo-vendor/wasmtime-asm-macros-25.0.0/Cargo.toml +33 -0
  350. data/ext/cargo-vendor/wasmtime-cache-25.0.0/.cargo-checksum.json +1 -0
  351. data/ext/cargo-vendor/wasmtime-cache-25.0.0/Cargo.toml +112 -0
  352. data/ext/cargo-vendor/wasmtime-cache-25.0.0/build.rs +10 -0
  353. data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/config.rs +584 -0
  354. data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/lib.rs +235 -0
  355. data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/worker/tests.rs +758 -0
  356. data/ext/cargo-vendor/wasmtime-cache-25.0.0/src/worker.rs +890 -0
  357. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/.cargo-checksum.json +1 -0
  358. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/Cargo.toml +115 -0
  359. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/src/bindgen.rs +507 -0
  360. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/src/component.rs +1540 -0
  361. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/codegen.rs +699 -0
  362. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/char.rs +387 -0
  363. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/char_async.rs +414 -0
  364. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/char_tracing_async.rs +461 -0
  365. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/conventions.rs +824 -0
  366. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/conventions_async.rs +899 -0
  367. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/conventions_tracing_async.rs +1190 -0
  368. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/dead-code.rs +279 -0
  369. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/dead-code_async.rs +300 -0
  370. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/dead-code_tracing_async.rs +313 -0
  371. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/direct-import.rs +205 -0
  372. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/direct-import_async.rs +219 -0
  373. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/direct-import_tracing_async.rs +232 -0
  374. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/empty.rs +159 -0
  375. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/empty_async.rs +165 -0
  376. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/empty_tracing_async.rs +165 -0
  377. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/flags.rs +859 -0
  378. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/flags_async.rs +921 -0
  379. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/flags_tracing_async.rs +1096 -0
  380. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/floats.rs +459 -0
  381. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/floats_async.rs +500 -0
  382. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/floats_tracing_async.rs +594 -0
  383. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/function-new.rs +182 -0
  384. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/function-new_async.rs +191 -0
  385. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/function-new_tracing_async.rs +199 -0
  386. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/integers.rs +989 -0
  387. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/integers_async.rs +1128 -0
  388. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/integers_tracing_async.rs +1555 -0
  389. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/lists.rs +2040 -0
  390. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/lists_async.rs +2288 -0
  391. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/lists_tracing_async.rs +2980 -0
  392. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/many-arguments.rs +730 -0
  393. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/many-arguments_async.rs +758 -0
  394. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/many-arguments_tracing_async.rs +819 -0
  395. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multi-return.rs +475 -0
  396. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multi-return_async.rs +519 -0
  397. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multi-return_tracing_async.rs +633 -0
  398. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multiversion.rs +508 -0
  399. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multiversion_async.rs +537 -0
  400. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/multiversion_tracing_async.rs +585 -0
  401. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/records.rs +1056 -0
  402. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/records_async.rs +1146 -0
  403. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/records_tracing_async.rs +1406 -0
  404. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/rename.rs +268 -0
  405. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/rename_async.rs +289 -0
  406. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/rename_tracing_async.rs +302 -0
  407. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-export.rs +879 -0
  408. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-export_async.rs +937 -0
  409. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-export_tracing_async.rs +1011 -0
  410. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-import.rs +1217 -0
  411. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-import_async.rs +1361 -0
  412. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/resources-import_tracing_async.rs +1774 -0
  413. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/share-types.rs +429 -0
  414. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/share-types_async.rs +453 -0
  415. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/share-types_tracing_async.rs +477 -0
  416. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-functions.rs +522 -0
  417. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-functions_async.rs +574 -0
  418. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-functions_tracing_async.rs +718 -0
  419. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-lists.rs +545 -0
  420. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-lists_async.rs +590 -0
  421. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-lists_tracing_async.rs +687 -0
  422. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-wasi.rs +331 -0
  423. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-wasi_async.rs +354 -0
  424. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/simple-wasi_tracing_async.rs +380 -0
  425. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/small-anonymous.rs +454 -0
  426. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/small-anonymous_async.rs +474 -0
  427. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/small-anonymous_tracing_async.rs +496 -0
  428. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-default.rs +182 -0
  429. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-default_async.rs +191 -0
  430. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-default_tracing_async.rs +199 -0
  431. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-export.rs +263 -0
  432. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-export_async.rs +272 -0
  433. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke-export_tracing_async.rs +280 -0
  434. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke.rs +218 -0
  435. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke_async.rs +233 -0
  436. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/smoke_tracing_async.rs +246 -0
  437. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/strings.rs +432 -0
  438. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/strings_async.rs +466 -0
  439. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/strings_tracing_async.rs +538 -0
  440. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/unversioned-foo.rs +250 -0
  441. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/unversioned-foo_async.rs +265 -0
  442. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/unversioned-foo_tracing_async.rs +278 -0
  443. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/use-paths.rs +402 -0
  444. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/use-paths_async.rs +442 -0
  445. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/use-paths_tracing_async.rs +494 -0
  446. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/variants.rs +2016 -0
  447. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/variants_async.rs +2183 -0
  448. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/variants_tracing_async.rs +2705 -0
  449. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/wat.rs +265 -0
  450. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/wat_async.rs +271 -0
  451. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/wat_tracing_async.rs +271 -0
  452. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/worlds-with-types.rs +263 -0
  453. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/worlds-with-types_async.rs +279 -0
  454. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded/worlds-with-types_tracing_async.rs +287 -0
  455. data/ext/cargo-vendor/wasmtime-component-macro-25.0.0/tests/expanded.rs +72 -0
  456. data/ext/cargo-vendor/wasmtime-component-util-25.0.0/.cargo-checksum.json +1 -0
  457. data/ext/cargo-vendor/wasmtime-component-util-25.0.0/Cargo.toml +36 -0
  458. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/.cargo-checksum.json +1 -0
  459. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/Cargo.toml +137 -0
  460. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/compiler.rs +1035 -0
  461. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/attr.rs +308 -0
  462. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/line_program.rs +264 -0
  463. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/mod.rs +256 -0
  464. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/range_info_builder.rs +215 -0
  465. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/simulate.rs +423 -0
  466. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/debug/transform/unit.rs +512 -0
  467. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/func_environ.rs +2757 -0
  468. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/gc/enabled.rs +631 -0
  469. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/gc.rs +189 -0
  470. data/ext/cargo-vendor/wasmtime-cranelift-25.0.0/src/lib.rs +399 -0
  471. data/ext/cargo-vendor/wasmtime-environ-25.0.0/.cargo-checksum.json +1 -0
  472. data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.lock +792 -0
  473. data/ext/cargo-vendor/wasmtime-environ-25.0.0/Cargo.toml +195 -0
  474. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/builtin.rs +184 -0
  475. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/compile/mod.rs +379 -0
  476. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/compile/module_environ.rs +1264 -0
  477. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/component/types.rs +1059 -0
  478. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/demangling.rs +28 -0
  479. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/fact/trampoline.rs +3234 -0
  480. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/fact/traps.rs +116 -0
  481. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/stack_map.rs +60 -0
  482. data/ext/cargo-vendor/wasmtime-environ-25.0.0/src/trap_encoding.rs +189 -0
  483. data/ext/cargo-vendor/wasmtime-fiber-25.0.0/.cargo-checksum.json +1 -0
  484. data/ext/cargo-vendor/wasmtime-fiber-25.0.0/Cargo.toml +84 -0
  485. data/ext/cargo-vendor/wasmtime-fiber-25.0.0/build.rs +39 -0
  486. data/ext/cargo-vendor/wasmtime-fiber-25.0.0/src/lib.rs +343 -0
  487. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/.cargo-checksum.json +1 -0
  488. data/ext/cargo-vendor/wasmtime-jit-debug-25.0.0/Cargo.toml +86 -0
  489. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/.cargo-checksum.json +1 -0
  490. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-25.0.0/Cargo.toml +71 -0
  491. data/ext/cargo-vendor/wasmtime-slab-25.0.0/.cargo-checksum.json +1 -0
  492. data/ext/cargo-vendor/wasmtime-slab-25.0.0/Cargo.toml +50 -0
  493. data/ext/cargo-vendor/wasmtime-types-25.0.0/.cargo-checksum.json +1 -0
  494. data/ext/cargo-vendor/wasmtime-types-25.0.0/Cargo.toml +80 -0
  495. data/ext/cargo-vendor/wasmtime-types-25.0.0/src/lib.rs +1846 -0
  496. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/.cargo-checksum.json +1 -0
  497. data/ext/cargo-vendor/wasmtime-versioned-export-macros-25.0.0/Cargo.toml +41 -0
  498. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/.cargo-checksum.json +1 -0
  499. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/Cargo.toml +224 -0
  500. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/bindings.rs +563 -0
  501. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/filesystem.rs +607 -0
  502. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/host/filesystem.rs +1091 -0
  503. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/host/io.rs +372 -0
  504. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/pipe.rs +833 -0
  505. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/preview1.rs +2764 -0
  506. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/runtime.rs +188 -0
  507. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/stdio.rs +616 -0
  508. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/stream.rs +265 -0
  509. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/tcp.rs +877 -0
  510. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/src/write_stream.rs +211 -0
  511. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/tests/all/main.rs +91 -0
  512. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/tests/process_stdin.rs +165 -0
  513. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/command.wit +10 -0
  514. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/environment.wit +22 -0
  515. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/exit.wit +17 -0
  516. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/imports.wit +36 -0
  517. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/run.wit +6 -0
  518. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/stdio.wit +26 -0
  519. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/cli/terminal.wit +62 -0
  520. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/monotonic-clock.wit +50 -0
  521. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/timezone.wit +55 -0
  522. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/wall-clock.wit +46 -0
  523. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/clocks/world.wit +11 -0
  524. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/filesystem/preopens.wit +11 -0
  525. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/filesystem/types.wit +678 -0
  526. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/filesystem/world.wit +9 -0
  527. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/error.wit +34 -0
  528. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/poll.wit +47 -0
  529. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/streams.wit +286 -0
  530. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/io/world.wit +10 -0
  531. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/insecure-seed.wit +27 -0
  532. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/insecure.wit +25 -0
  533. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/random.wit +29 -0
  534. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/random/world.wit +13 -0
  535. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/instance-network.wit +11 -0
  536. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/ip-name-lookup.wit +56 -0
  537. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/network.wit +153 -0
  538. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/tcp-create-socket.wit +30 -0
  539. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/tcp.wit +387 -0
  540. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/udp-create-socket.wit +30 -0
  541. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/udp.wit +288 -0
  542. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/deps/sockets/world.wit +19 -0
  543. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/test.wit +13 -0
  544. data/ext/cargo-vendor/wasmtime-wasi-25.0.0/wit/world.wit +6 -0
  545. data/ext/cargo-vendor/wasmtime-winch-25.0.0/.cargo-checksum.json +1 -0
  546. data/ext/cargo-vendor/wasmtime-winch-25.0.0/Cargo.toml +100 -0
  547. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/.cargo-checksum.json +1 -0
  548. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/Cargo.toml +66 -0
  549. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/src/lib.rs +3117 -0
  550. data/ext/cargo-vendor/wasmtime-wit-bindgen-25.0.0/src/rust.rs +427 -0
  551. data/ext/cargo-vendor/wast-217.0.0/.cargo-checksum.json +1 -0
  552. data/ext/cargo-vendor/wast-217.0.0/Cargo.toml +101 -0
  553. data/ext/cargo-vendor/wast-217.0.0/src/component/binary.rs +1014 -0
  554. data/ext/cargo-vendor/wast-217.0.0/src/component/component.rs +324 -0
  555. data/ext/cargo-vendor/wast-217.0.0/src/component/expand.rs +879 -0
  556. data/ext/cargo-vendor/wast-217.0.0/src/component/import.rs +216 -0
  557. data/ext/cargo-vendor/wast-217.0.0/src/component/resolve.rs +994 -0
  558. data/ext/cargo-vendor/wast-217.0.0/src/core/binary/dwarf.rs +613 -0
  559. data/ext/cargo-vendor/wast-217.0.0/src/core/binary.rs +1556 -0
  560. data/ext/cargo-vendor/wast-217.0.0/src/core/expr.rs +2110 -0
  561. data/ext/cargo-vendor/wast-217.0.0/src/core/module.rs +218 -0
  562. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/mod.rs +111 -0
  563. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/names.rs +808 -0
  564. data/ext/cargo-vendor/wast-217.0.0/src/core/resolve/types.rs +273 -0
  565. data/ext/cargo-vendor/wast-217.0.0/src/lexer.rs +1573 -0
  566. data/ext/cargo-vendor/wast-217.0.0/src/lib.rs +557 -0
  567. data/ext/cargo-vendor/wast-217.0.0/src/parser.rs +1447 -0
  568. data/ext/cargo-vendor/wast-217.0.0/src/wast.rs +552 -0
  569. data/ext/cargo-vendor/wast-217.0.0/src/wat.rs +66 -0
  570. data/ext/cargo-vendor/wat-1.217.0/.cargo-checksum.json +1 -0
  571. data/ext/cargo-vendor/wat-1.217.0/Cargo.toml +56 -0
  572. data/ext/cargo-vendor/wiggle-25.0.0/.cargo-checksum.json +1 -0
  573. data/ext/cargo-vendor/wiggle-25.0.0/Cargo.toml +119 -0
  574. data/ext/cargo-vendor/wiggle-25.0.0/src/lib.rs +605 -0
  575. data/ext/cargo-vendor/wiggle-generate-25.0.0/.cargo-checksum.json +1 -0
  576. data/ext/cargo-vendor/wiggle-generate-25.0.0/Cargo.toml +85 -0
  577. data/ext/cargo-vendor/wiggle-generate-25.0.0/src/funcs.rs +434 -0
  578. data/ext/cargo-vendor/wiggle-generate-25.0.0/src/lib.rs +100 -0
  579. data/ext/cargo-vendor/wiggle-generate-25.0.0/src/names.rs +299 -0
  580. data/ext/cargo-vendor/wiggle-generate-25.0.0/src/wasmtime.rs +172 -0
  581. data/ext/cargo-vendor/wiggle-macro-25.0.0/.cargo-checksum.json +1 -0
  582. data/ext/cargo-vendor/wiggle-macro-25.0.0/Cargo.toml +78 -0
  583. data/ext/cargo-vendor/winch-codegen-0.23.0/.cargo-checksum.json +1 -0
  584. data/ext/cargo-vendor/winch-codegen-0.23.0/Cargo.toml +95 -0
  585. data/ext/cargo-vendor/winch-codegen-0.23.0/src/abi/local.rs +82 -0
  586. data/ext/cargo-vendor/winch-codegen-0.23.0/src/abi/mod.rs +666 -0
  587. data/ext/cargo-vendor/winch-codegen-0.23.0/src/codegen/bounds.rs +220 -0
  588. data/ext/cargo-vendor/winch-codegen-0.23.0/src/codegen/context.rs +593 -0
  589. data/ext/cargo-vendor/winch-codegen-0.23.0/src/codegen/mod.rs +905 -0
  590. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/abi.rs +288 -0
  591. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/address.rs +143 -0
  592. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/asm.rs +840 -0
  593. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/aarch64/masm.rs +680 -0
  594. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/mod.rs +320 -0
  595. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/x64/abi.rs +494 -0
  596. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/x64/asm.rs +1422 -0
  597. data/ext/cargo-vendor/winch-codegen-0.23.0/src/isa/x64/masm.rs +1113 -0
  598. data/ext/cargo-vendor/winch-codegen-0.23.0/src/masm.rs +986 -0
  599. data/ext/cargo-vendor/winch-codegen-0.23.0/src/regalloc.rs +65 -0
  600. data/ext/cargo-vendor/winch-codegen-0.23.0/src/stack.rs +447 -0
  601. data/ext/cargo-vendor/winch-codegen-0.23.0/src/visitor.rs +2169 -0
  602. data/ext/cargo-vendor/wit-parser-0.217.0/.cargo-checksum.json +1 -0
  603. data/ext/cargo-vendor/wit-parser-0.217.0/Cargo.toml +129 -0
  604. data/ext/cargo-vendor/wit-parser-0.217.0/src/ast/resolve.rs +1575 -0
  605. data/ext/cargo-vendor/wit-parser-0.217.0/src/ast.rs +1886 -0
  606. data/ext/cargo-vendor/wit-parser-0.217.0/src/decoding.rs +1794 -0
  607. data/ext/cargo-vendor/wit-parser-0.217.0/src/lib.rs +910 -0
  608. data/ext/cargo-vendor/wit-parser-0.217.0/src/sizealign.rs +584 -0
  609. data/ext/cargo-vendor/wit-parser-0.217.0/tests/all.rs +154 -0
  610. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-gate3.wit.result +5 -0
  611. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-gate4.wit.result +5 -0
  612. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-gate5.wit.result +5 -0
  613. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg1.wit.result +5 -0
  614. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg2.wit.result +5 -0
  615. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg3.wit.result +5 -0
  616. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg4.wit.result +5 -0
  617. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg5.wit.result +5 -0
  618. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-pkg6.wit.result +5 -0
  619. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/bad-resource15.wit.result +5 -0
  620. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/conflicting-package.wit.result +5 -0
  621. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/duplicate-interface2.wit.result +5 -0
  622. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/include-foreign.wit.result +5 -0
  623. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +5 -0
  624. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/multi-package-deps-share-nest.wit.result +3 -0
  625. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/multiple-package-docs.wit.result +5 -0
  626. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +5 -0
  627. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/non-existance-world-include.wit.result +5 -0
  628. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/pkg-cycle.wit.result +5 -0
  629. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/pkg-cycle2.wit.result +5 -0
  630. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +5 -0
  631. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/resources-return-borrow.wit.result +5 -0
  632. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow1.wit.result +5 -0
  633. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow2.wit.result +5 -0
  634. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow6.wit.result +5 -0
  635. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow7.wit.result +5 -0
  636. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/return-borrow8.wit.result +5 -0
  637. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/type-and-resource-same-name.wit.result +5 -0
  638. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/unresolved-use10.wit.result +5 -0
  639. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/use-and-include-world.wit.result +5 -0
  640. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/use-world.wit.result +5 -0
  641. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/parse-fail/very-nested-packages.wit.result +5 -0
  642. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/since-and-unstable.wit +107 -0
  643. data/ext/cargo-vendor/wit-parser-0.217.0/tests/ui/since-and-unstable.wit.json +621 -0
  644. data/ext/src/ruby_api/config.rs +3 -0
  645. data/ext/src/ruby_api/engine.rs +1 -0
  646. data/ext/src/ruby_api/pooling_allocation_config.rs +7 -7
  647. data/ext/src/ruby_api/store.rs +58 -4
  648. data/ext/src/ruby_api/wasi_ctx.rs +6 -6
  649. data/lib/wasmtime/version.rb +1 -1
  650. metadata +1808 -1804
  651. data/ext/cargo-vendor/cranelift-bforest-0.111.0/.cargo-checksum.json +0 -1
  652. data/ext/cargo-vendor/cranelift-bforest-0.111.0/Cargo.toml +0 -57
  653. data/ext/cargo-vendor/cranelift-bforest-0.111.0/src/node.rs +0 -806
  654. data/ext/cargo-vendor/cranelift-bforest-0.111.0/src/path.rs +0 -835
  655. data/ext/cargo-vendor/cranelift-bforest-0.111.0/src/pool.rs +0 -219
  656. data/ext/cargo-vendor/cranelift-bitset-0.111.0/.cargo-checksum.json +0 -1
  657. data/ext/cargo-vendor/cranelift-bitset-0.111.0/Cargo.toml +0 -67
  658. data/ext/cargo-vendor/cranelift-bitset-0.111.0/src/scalar.rs +0 -575
  659. data/ext/cargo-vendor/cranelift-codegen-0.111.0/.cargo-checksum.json +0 -1
  660. data/ext/cargo-vendor/cranelift-codegen-0.111.0/Cargo.toml +0 -213
  661. data/ext/cargo-vendor/cranelift-codegen-0.111.0/build.rs +0 -266
  662. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/binemit/mod.rs +0 -171
  663. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/binemit/stack_map.rs +0 -141
  664. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/cfg_printer.rs +0 -83
  665. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/data_value.rs +0 -410
  666. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/dbg.rs +0 -28
  667. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/egraph.rs +0 -835
  668. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/incremental_cache.rs +0 -256
  669. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/inst_predicates.rs +0 -231
  670. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/constant.rs +0 -489
  671. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/dfg.rs +0 -1806
  672. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/entities.rs +0 -564
  673. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/extfunc.rs +0 -408
  674. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/extname.rs +0 -333
  675. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/function.rs +0 -500
  676. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/globalvalue.rs +0 -147
  677. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/immediates.rs +0 -1941
  678. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/instructions.rs +0 -1026
  679. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/memtype.rs +0 -190
  680. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/progpoint.rs +0 -75
  681. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/trapcode.rs +0 -148
  682. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/types.rs +0 -643
  683. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/ir/user_stack_maps.rs +0 -101
  684. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/abi.rs +0 -1548
  685. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/args.rs +0 -711
  686. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/emit.rs +0 -3599
  687. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/emit_tests.rs +0 -7925
  688. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/imms.rs +0 -1213
  689. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/mod.rs +0 -3052
  690. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/regs.rs +0 -269
  691. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst/unwind/systemv.rs +0 -174
  692. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/inst.isle +0 -4221
  693. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/lower/isle.rs +0 -807
  694. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/lower.isle +0 -2969
  695. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/pcc.rs +0 -568
  696. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/aarch64/settings.rs +0 -9
  697. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/mod.rs +0 -462
  698. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/abi.rs +0 -1021
  699. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/args.rs +0 -2054
  700. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/emit.rs +0 -2736
  701. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/emit_tests.rs +0 -2219
  702. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/encode.rs +0 -675
  703. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/mod.rs +0 -1932
  704. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/unwind/systemv.rs +0 -170
  705. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst/vector.rs +0 -1150
  706. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst.isle +0 -3153
  707. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/inst_vector.isle +0 -1907
  708. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/lower/isle.rs +0 -651
  709. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/riscv64/lower.isle +0 -2953
  710. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/abi.rs +0 -1357
  711. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/emit.rs +0 -3481
  712. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/emit_tests.rs +0 -13388
  713. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/mod.rs +0 -3481
  714. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/regs.rs +0 -169
  715. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst/unwind/systemv.rs +0 -212
  716. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/inst.isle +0 -5070
  717. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/lower/isle.rs +0 -1156
  718. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/s390x/lower.isle +0 -4022
  719. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/unwind/systemv.rs +0 -276
  720. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/abi.rs +0 -1410
  721. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/encoding/evex.rs +0 -748
  722. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/args.rs +0 -2318
  723. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/emit.rs +0 -4309
  724. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/emit_state.rs +0 -65
  725. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/emit_tests.rs +0 -5137
  726. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/mod.rs +0 -2819
  727. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/regs.rs +0 -275
  728. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst/unwind/systemv.rs +0 -198
  729. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/inst.isle +0 -5381
  730. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/lower/isle.rs +0 -1048
  731. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/lower.isle +0 -4892
  732. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/lower.rs +0 -339
  733. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/mod.rs +0 -239
  734. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isa/x64/pcc.rs +0 -1014
  735. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/isle_prelude.rs +0 -1097
  736. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/lib.rs +0 -106
  737. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/abi.rs +0 -2411
  738. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/buffer.rs +0 -2537
  739. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/isle.rs +0 -881
  740. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/lower.rs +0 -1462
  741. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/mod.rs +0 -564
  742. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/reg.rs +0 -479
  743. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/machinst/vcode.rs +0 -1840
  744. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/opts/extends.isle +0 -91
  745. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/opts/icmp.isle +0 -215
  746. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/opts/selects.isle +0 -77
  747. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/prelude.isle +0 -725
  748. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/prelude_lower.isle +0 -1074
  749. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/print_errors.rs +0 -223
  750. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/remove_constant_phis.rs +0 -419
  751. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/result.rs +0 -111
  752. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/settings.rs +0 -590
  753. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/timing.rs +0 -296
  754. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/verifier/mod.rs +0 -1963
  755. data/ext/cargo-vendor/cranelift-codegen-0.111.0/src/write.rs +0 -694
  756. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/.cargo-checksum.json +0 -1
  757. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/Cargo.toml +0 -52
  758. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/cdsl/settings.rs +0 -429
  759. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/cdsl/types.rs +0 -512
  760. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/cdsl/typevar.rs +0 -980
  761. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/error.rs +0 -48
  762. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_inst.rs +0 -1278
  763. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_isle.rs +0 -519
  764. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_settings.rs +0 -508
  765. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/gen_types.rs +0 -75
  766. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/arm64.rs +0 -53
  767. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/mod.rs +0 -66
  768. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/riscv64.rs +0 -174
  769. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isa/x86.rs +0 -414
  770. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/isle.rs +0 -126
  771. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/lib.rs +0 -98
  772. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/instructions.rs +0 -3794
  773. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/mod.rs +0 -87
  774. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/settings.rs +0 -348
  775. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/shared/types.rs +0 -143
  776. data/ext/cargo-vendor/cranelift-codegen-meta-0.111.0/src/srcgen.rs +0 -464
  777. data/ext/cargo-vendor/cranelift-codegen-shared-0.111.0/.cargo-checksum.json +0 -1
  778. data/ext/cargo-vendor/cranelift-codegen-shared-0.111.0/Cargo.toml +0 -31
  779. data/ext/cargo-vendor/cranelift-control-0.111.0/.cargo-checksum.json +0 -1
  780. data/ext/cargo-vendor/cranelift-control-0.111.0/Cargo.toml +0 -42
  781. data/ext/cargo-vendor/cranelift-entity-0.111.0/.cargo-checksum.json +0 -1
  782. data/ext/cargo-vendor/cranelift-entity-0.111.0/Cargo.toml +0 -73
  783. data/ext/cargo-vendor/cranelift-entity-0.111.0/src/lib.rs +0 -381
  784. data/ext/cargo-vendor/cranelift-entity-0.111.0/src/packed_option.rs +0 -171
  785. data/ext/cargo-vendor/cranelift-entity-0.111.0/src/sparse.rs +0 -367
  786. data/ext/cargo-vendor/cranelift-frontend-0.111.0/.cargo-checksum.json +0 -1
  787. data/ext/cargo-vendor/cranelift-frontend-0.111.0/Cargo.toml +0 -97
  788. data/ext/cargo-vendor/cranelift-frontend-0.111.0/src/frontend.rs +0 -1977
  789. data/ext/cargo-vendor/cranelift-frontend-0.111.0/src/ssa.rs +0 -1328
  790. data/ext/cargo-vendor/cranelift-frontend-0.111.0/src/switch.rs +0 -683
  791. data/ext/cargo-vendor/cranelift-isle-0.111.0/.cargo-checksum.json +0 -1
  792. data/ext/cargo-vendor/cranelift-isle-0.111.0/Cargo.toml +0 -67
  793. data/ext/cargo-vendor/cranelift-isle-0.111.0/build.rs +0 -35
  794. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/ast.rs +0 -421
  795. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/codegen.rs +0 -920
  796. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/compile.rs +0 -24
  797. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/error.rs +0 -317
  798. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/lexer.rs +0 -405
  799. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/lib.rs +0 -33
  800. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/overlap.rs +0 -137
  801. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/parser.rs +0 -562
  802. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/sema.rs +0 -2503
  803. data/ext/cargo-vendor/cranelift-isle-0.111.0/src/trie_again.rs +0 -695
  804. data/ext/cargo-vendor/cranelift-isle-0.111.0/tests/run_tests.rs +0 -77
  805. data/ext/cargo-vendor/cranelift-native-0.111.0/.cargo-checksum.json +0 -1
  806. data/ext/cargo-vendor/cranelift-native-0.111.0/Cargo.toml +0 -52
  807. data/ext/cargo-vendor/cranelift-native-0.111.0/src/lib.rs +0 -188
  808. data/ext/cargo-vendor/cranelift-wasm-0.111.0/.cargo-checksum.json +0 -1
  809. data/ext/cargo-vendor/cranelift-wasm-0.111.0/Cargo.toml +0 -127
  810. data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/code_translator.rs +0 -3721
  811. data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/environ/dummy.rs +0 -906
  812. data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/environ/spec.rs +0 -945
  813. data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/func_translator.rs +0 -271
  814. data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/module_translator.rs +0 -120
  815. data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/sections_translator.rs +0 -333
  816. data/ext/cargo-vendor/cranelift-wasm-0.111.0/src/translation_utils.rs +0 -91
  817. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.24/.cargo-checksum.json +0 -1
  818. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.24/Cargo.toml +0 -48
  819. data/ext/cargo-vendor/hashbrown-0.13.2/.cargo-checksum.json +0 -1
  820. data/ext/cargo-vendor/hashbrown-0.13.2/CHANGELOG.md +0 -437
  821. data/ext/cargo-vendor/hashbrown-0.13.2/Cargo.toml +0 -111
  822. data/ext/cargo-vendor/hashbrown-0.13.2/LICENSE-APACHE +0 -201
  823. data/ext/cargo-vendor/hashbrown-0.13.2/LICENSE-MIT +0 -25
  824. data/ext/cargo-vendor/hashbrown-0.13.2/README.md +0 -124
  825. data/ext/cargo-vendor/hashbrown-0.13.2/benches/bench.rs +0 -331
  826. data/ext/cargo-vendor/hashbrown-0.13.2/benches/insert_unique_unchecked.rs +0 -32
  827. data/ext/cargo-vendor/hashbrown-0.13.2/clippy.toml +0 -1
  828. data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/mod.rs +0 -4
  829. data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/helpers.rs +0 -27
  830. data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/map.rs +0 -734
  831. data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/mod.rs +0 -4
  832. data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/raw.rs +0 -231
  833. data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/rayon/set.rs +0 -659
  834. data/ext/cargo-vendor/hashbrown-0.13.2/src/external_trait_impls/serde.rs +0 -201
  835. data/ext/cargo-vendor/hashbrown-0.13.2/src/lib.rs +0 -183
  836. data/ext/cargo-vendor/hashbrown-0.13.2/src/macros.rs +0 -70
  837. data/ext/cargo-vendor/hashbrown-0.13.2/src/map.rs +0 -8512
  838. data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/alloc.rs +0 -73
  839. data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/bitmask.rs +0 -122
  840. data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/generic.rs +0 -154
  841. data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/mod.rs +0 -2518
  842. data/ext/cargo-vendor/hashbrown-0.13.2/src/raw/sse2.rs +0 -146
  843. data/ext/cargo-vendor/hashbrown-0.13.2/src/rustc_entry.rs +0 -630
  844. data/ext/cargo-vendor/hashbrown-0.13.2/src/scopeguard.rs +0 -72
  845. data/ext/cargo-vendor/hashbrown-0.13.2/src/set.rs +0 -2889
  846. data/ext/cargo-vendor/hashbrown-0.13.2/tests/equivalent_trait.rs +0 -53
  847. data/ext/cargo-vendor/hashbrown-0.13.2/tests/hasher.rs +0 -65
  848. data/ext/cargo-vendor/hashbrown-0.13.2/tests/raw.rs +0 -11
  849. data/ext/cargo-vendor/hashbrown-0.13.2/tests/rayon.rs +0 -533
  850. data/ext/cargo-vendor/hashbrown-0.13.2/tests/serde.rs +0 -65
  851. data/ext/cargo-vendor/hashbrown-0.13.2/tests/set.rs +0 -34
  852. data/ext/cargo-vendor/regalloc2-0.9.3/.cargo-checksum.json +0 -1
  853. data/ext/cargo-vendor/regalloc2-0.9.3/Cargo.toml +0 -72
  854. data/ext/cargo-vendor/regalloc2-0.9.3/doc/DESIGN.md +0 -1420
  855. data/ext/cargo-vendor/regalloc2-0.9.3/src/cfg.rs +0 -134
  856. data/ext/cargo-vendor/regalloc2-0.9.3/src/checker.rs +0 -1089
  857. data/ext/cargo-vendor/regalloc2-0.9.3/src/fuzzing/func.rs +0 -677
  858. data/ext/cargo-vendor/regalloc2-0.9.3/src/fuzzing/mod.rs +0 -28
  859. data/ext/cargo-vendor/regalloc2-0.9.3/src/index.rs +0 -268
  860. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/data_structures.rs +0 -857
  861. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/liveranges.rs +0 -961
  862. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/merge.rs +0 -383
  863. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/mod.rs +0 -150
  864. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/moves.rs +0 -1017
  865. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/process.rs +0 -1307
  866. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/requirement.rs +0 -174
  867. data/ext/cargo-vendor/regalloc2-0.9.3/src/ion/stackmap.rs +0 -79
  868. data/ext/cargo-vendor/regalloc2-0.9.3/src/lib.rs +0 -1526
  869. data/ext/cargo-vendor/regalloc2-0.9.3/src/serialize.rs +0 -311
  870. data/ext/cargo-vendor/wasi-common-24.0.0/.cargo-checksum.json +0 -1
  871. data/ext/cargo-vendor/wasi-common-24.0.0/Cargo.toml +0 -240
  872. data/ext/cargo-vendor/wasi-common-24.0.0/src/ctx.rs +0 -128
  873. data/ext/cargo-vendor/wasi-common-24.0.0/src/lib.rs +0 -193
  874. data/ext/cargo-vendor/wasi-common-24.0.0/src/snapshots/mod.rs +0 -27
  875. data/ext/cargo-vendor/wasi-common-24.0.0/src/sync/dir.rs +0 -462
  876. data/ext/cargo-vendor/wasi-common-24.0.0/src/tokio/dir.rs +0 -221
  877. data/ext/cargo-vendor/wasi-common-24.0.0/tests/all/async_.rs +0 -295
  878. data/ext/cargo-vendor/wasi-common-24.0.0/tests/all/main.rs +0 -21
  879. data/ext/cargo-vendor/wasi-common-24.0.0/tests/all/sync.rs +0 -284
  880. data/ext/cargo-vendor/wasm-encoder-0.215.0/.cargo-checksum.json +0 -1
  881. data/ext/cargo-vendor/wasm-encoder-0.215.0/Cargo.toml +0 -65
  882. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/builder.rs +0 -455
  883. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/exports.rs +0 -124
  884. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/imports.rs +0 -175
  885. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/instances.rs +0 -200
  886. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/names.rs +0 -149
  887. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/types.rs +0 -802
  888. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/code.rs +0 -3947
  889. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/names.rs +0 -298
  890. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/types.rs +0 -678
  891. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/reencode.rs +0 -2002
  892. data/ext/cargo-vendor/wasm-encoder-0.216.0/.cargo-checksum.json +0 -1
  893. data/ext/cargo-vendor/wasm-encoder-0.216.0/Cargo.toml +0 -65
  894. data/ext/cargo-vendor/wasm-encoder-0.216.0/README.md +0 -80
  895. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/aliases.rs +0 -160
  896. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/builder.rs +0 -455
  897. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/canonicals.rs +0 -159
  898. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/components.rs +0 -29
  899. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/exports.rs +0 -124
  900. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/imports.rs +0 -175
  901. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/instances.rs +0 -200
  902. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/modules.rs +0 -29
  903. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/start.rs +0 -52
  904. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component/types.rs +0 -802
  905. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/component.rs +0 -168
  906. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/code.rs +0 -3947
  907. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/custom.rs +0 -73
  908. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/data.rs +0 -186
  909. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/dump.rs +0 -627
  910. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/elements.rs +0 -222
  911. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/exports.rs +0 -85
  912. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/functions.rs +0 -63
  913. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/globals.rs +0 -100
  914. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/imports.rs +0 -143
  915. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/linking.rs +0 -263
  916. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/memories.rs +0 -115
  917. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/producers.rs +0 -181
  918. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/start.rs +0 -39
  919. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/tables.rs +0 -129
  920. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core/tags.rs +0 -85
  921. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/core.rs +0 -168
  922. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/lib.rs +0 -218
  923. data/ext/cargo-vendor/wasm-encoder-0.216.0/src/raw.rs +0 -30
  924. data/ext/cargo-vendor/wasmparser-0.215.0/.cargo-checksum.json +0 -1
  925. data/ext/cargo-vendor/wasmparser-0.215.0/Cargo.lock +0 -669
  926. data/ext/cargo-vendor/wasmparser-0.215.0/Cargo.toml +0 -137
  927. data/ext/cargo-vendor/wasmparser-0.215.0/benches/benchmark.rs +0 -349
  928. data/ext/cargo-vendor/wasmparser-0.215.0/src/binary_reader.rs +0 -2064
  929. data/ext/cargo-vendor/wasmparser-0.215.0/src/features.rs +0 -175
  930. data/ext/cargo-vendor/wasmparser-0.215.0/src/limits.rs +0 -80
  931. data/ext/cargo-vendor/wasmparser-0.215.0/src/parser.rs +0 -1682
  932. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/aliases.rs +0 -119
  933. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/canonicals.rs +0 -121
  934. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/exports.rs +0 -135
  935. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/imports.rs +0 -130
  936. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/instances.rs +0 -166
  937. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/component/types.rs +0 -553
  938. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/code.rs +0 -142
  939. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/coredumps.rs +0 -278
  940. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/data.rs +0 -96
  941. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/exports.rs +0 -65
  942. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/globals.rs +0 -61
  943. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/imports.rs +0 -76
  944. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/init.rs +0 -57
  945. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/operators.rs +0 -479
  946. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/producers.rs +0 -84
  947. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers/core/types.rs +0 -1964
  948. data/ext/cargo-vendor/wasmparser-0.215.0/src/readers.rs +0 -315
  949. data/ext/cargo-vendor/wasmparser-0.215.0/src/resources.rs +0 -234
  950. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/component.rs +0 -3277
  951. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/core/canonical.rs +0 -233
  952. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/core.rs +0 -1499
  953. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/func.rs +0 -334
  954. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/names.rs +0 -1016
  955. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/operators.rs +0 -4716
  956. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator/types.rs +0 -4592
  957. data/ext/cargo-vendor/wasmparser-0.215.0/src/validator.rs +0 -1643
  958. data/ext/cargo-vendor/wasmprinter-0.215.0/.cargo-checksum.json +0 -1
  959. data/ext/cargo-vendor/wasmprinter-0.215.0/Cargo.toml +0 -74
  960. data/ext/cargo-vendor/wasmprinter-0.215.0/src/lib.rs +0 -3242
  961. data/ext/cargo-vendor/wasmtime-24.0.0/.cargo-checksum.json +0 -1
  962. data/ext/cargo-vendor/wasmtime-24.0.0/Cargo.toml +0 -406
  963. data/ext/cargo-vendor/wasmtime-24.0.0/build.rs +0 -38
  964. data/ext/cargo-vendor/wasmtime-24.0.0/src/compile/code_builder.rs +0 -274
  965. data/ext/cargo-vendor/wasmtime-24.0.0/src/compile/runtime.rs +0 -167
  966. data/ext/cargo-vendor/wasmtime-24.0.0/src/compile.rs +0 -881
  967. data/ext/cargo-vendor/wasmtime-24.0.0/src/config.rs +0 -2875
  968. data/ext/cargo-vendor/wasmtime-24.0.0/src/engine/serialization.rs +0 -902
  969. data/ext/cargo-vendor/wasmtime-24.0.0/src/engine.rs +0 -765
  970. data/ext/cargo-vendor/wasmtime-24.0.0/src/lib.rs +0 -406
  971. data/ext/cargo-vendor/wasmtime-24.0.0/src/profiling_agent/jitdump.rs +0 -64
  972. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/component.rs +0 -811
  973. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/func/host.rs +0 -439
  974. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/func/typed.rs +0 -2497
  975. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/linker.rs +0 -673
  976. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/mod.rs +0 -663
  977. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/resources.rs +0 -1132
  978. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/component/types.rs +0 -897
  979. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/coredump.rs +0 -339
  980. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/externals/global.rs +0 -310
  981. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/externals/table.rs +0 -480
  982. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/func.rs +0 -2598
  983. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/disabled/anyref.rs +0 -77
  984. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/disabled/rooting.rs +0 -229
  985. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/disabled.rs +0 -21
  986. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled/anyref.rs +0 -584
  987. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled/i31.rs +0 -299
  988. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled/rooting.rs +0 -1755
  989. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/gc/enabled.rs +0 -14
  990. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/instance.rs +0 -990
  991. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/linker.rs +0 -1498
  992. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/memory.rs +0 -1101
  993. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/module.rs +0 -1179
  994. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/store.rs +0 -2885
  995. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/trampoline/global.rs +0 -68
  996. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/trap.rs +0 -642
  997. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/types.rs +0 -2868
  998. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/values.rs +0 -1016
  999. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/const_expr.rs +0 -102
  1000. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/cow.rs +0 -988
  1001. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/disabled.rs +0 -39
  1002. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -1113
  1003. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/enabled/structref.rs +0 -481
  1004. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/enabled.rs +0 -20
  1005. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/gc_ref.rs +0 -502
  1006. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc/gc_runtime.rs +0 -651
  1007. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/gc.rs +0 -303
  1008. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/helpers.c +0 -113
  1009. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -93
  1010. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -703
  1011. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/libcalls.rs +0 -832
  1012. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/custom/traphandlers.rs +0 -60
  1013. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/unix/machports.rs +0 -445
  1014. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -159
  1015. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/unix/signals.rs +0 -464
  1016. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/sys/windows/traphandlers.rs +0 -133
  1017. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/threads/parking_spot.rs +0 -623
  1018. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/traphandlers.rs +0 -783
  1019. data/ext/cargo-vendor/wasmtime-24.0.0/src/runtime/vm/vmcontext.rs +0 -1246
  1020. data/ext/cargo-vendor/wasmtime-asm-macros-24.0.0/.cargo-checksum.json +0 -1
  1021. data/ext/cargo-vendor/wasmtime-asm-macros-24.0.0/Cargo.toml +0 -32
  1022. data/ext/cargo-vendor/wasmtime-cache-24.0.0/.cargo-checksum.json +0 -1
  1023. data/ext/cargo-vendor/wasmtime-cache-24.0.0/Cargo.toml +0 -110
  1024. data/ext/cargo-vendor/wasmtime-cache-24.0.0/build.rs +0 -10
  1025. data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/config.rs +0 -584
  1026. data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/lib.rs +0 -235
  1027. data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/worker/tests.rs +0 -758
  1028. data/ext/cargo-vendor/wasmtime-cache-24.0.0/src/worker.rs +0 -890
  1029. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/.cargo-checksum.json +0 -1
  1030. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/Cargo.toml +0 -113
  1031. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/src/bindgen.rs +0 -500
  1032. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/src/component.rs +0 -1330
  1033. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/codegen.rs +0 -698
  1034. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/char.rs +0 -268
  1035. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/char_async.rs +0 -291
  1036. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/conventions.rs +0 -706
  1037. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/conventions_async.rs +0 -757
  1038. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/dead-code.rs +0 -194
  1039. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/dead-code_async.rs +0 -213
  1040. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/direct-import.rs +0 -120
  1041. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/direct-import_async.rs +0 -132
  1042. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/empty.rs +0 -74
  1043. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/empty_async.rs +0 -80
  1044. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/flags.rs +0 -743
  1045. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/flags_async.rs +0 -791
  1046. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/floats.rs +0 -343
  1047. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/floats_async.rs +0 -376
  1048. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/function-new.rs +0 -94
  1049. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/function-new_async.rs +0 -103
  1050. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/integers.rs +0 -873
  1051. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/integers_async.rs +0 -976
  1052. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/lists.rs +0 -1924
  1053. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/lists_async.rs +0 -2114
  1054. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/many-arguments.rs +0 -614
  1055. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/many-arguments_async.rs +0 -638
  1056. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multi-return.rs +0 -357
  1057. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multi-return_async.rs +0 -391
  1058. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multiversion.rs +0 -354
  1059. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/multiversion_async.rs +0 -379
  1060. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/records.rs +0 -940
  1061. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/records_async.rs +0 -1008
  1062. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/rename.rs +0 -183
  1063. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/rename_async.rs +0 -202
  1064. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-export.rs +0 -657
  1065. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-export_async.rs +0 -712
  1066. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-import.rs +0 -1088
  1067. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/resources-import_async.rs +0 -1166
  1068. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/share-types.rs +0 -315
  1069. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/share-types_async.rs +0 -337
  1070. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-functions.rs +0 -399
  1071. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-functions_async.rs +0 -439
  1072. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-lists.rs +0 -427
  1073. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-lists_async.rs +0 -464
  1074. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-wasi.rs +0 -245
  1075. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/simple-wasi_async.rs +0 -264
  1076. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/small-anonymous.rs +0 -338
  1077. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/small-anonymous_async.rs +0 -356
  1078. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-default.rs +0 -94
  1079. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-default_async.rs +0 -103
  1080. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-export.rs +0 -149
  1081. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke-export_async.rs +0 -158
  1082. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke.rs +0 -133
  1083. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/smoke_async.rs +0 -146
  1084. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/strings.rs +0 -316
  1085. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/strings_async.rs +0 -344
  1086. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/unversioned-foo.rs +0 -165
  1087. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/unversioned-foo_async.rs +0 -178
  1088. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/use-paths.rs +0 -317
  1089. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/use-paths_async.rs +0 -349
  1090. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/variants.rs +0 -1896
  1091. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/variants_async.rs +0 -2019
  1092. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/wat.rs +0 -145
  1093. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/wat_async.rs +0 -151
  1094. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/worlds-with-types.rs +0 -175
  1095. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded/worlds-with-types_async.rs +0 -191
  1096. data/ext/cargo-vendor/wasmtime-component-macro-24.0.0/tests/expanded.rs +0 -65
  1097. data/ext/cargo-vendor/wasmtime-component-util-24.0.0/.cargo-checksum.json +0 -1
  1098. data/ext/cargo-vendor/wasmtime-component-util-24.0.0/Cargo.toml +0 -35
  1099. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/.cargo-checksum.json +0 -1
  1100. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/Cargo.toml +0 -132
  1101. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/compiler.rs +0 -1029
  1102. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/attr.rs +0 -328
  1103. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/line_program.rs +0 -287
  1104. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/mod.rs +0 -273
  1105. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/range_info_builder.rs +0 -234
  1106. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/simulate.rs +0 -423
  1107. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/debug/transform/unit.rs +0 -520
  1108. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/func_environ.rs +0 -2721
  1109. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/gc/enabled.rs +0 -648
  1110. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/gc.rs +0 -198
  1111. data/ext/cargo-vendor/wasmtime-cranelift-24.0.0/src/lib.rs +0 -431
  1112. data/ext/cargo-vendor/wasmtime-environ-24.0.0/.cargo-checksum.json +0 -1
  1113. data/ext/cargo-vendor/wasmtime-environ-24.0.0/Cargo.lock +0 -792
  1114. data/ext/cargo-vendor/wasmtime-environ-24.0.0/Cargo.toml +0 -192
  1115. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/builtin.rs +0 -184
  1116. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/compile/mod.rs +0 -379
  1117. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/compile/module_environ.rs +0 -1264
  1118. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/component/types.rs +0 -1041
  1119. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/demangling.rs +0 -28
  1120. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/fact/trampoline.rs +0 -3234
  1121. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/fact/traps.rs +0 -116
  1122. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/stack_map.rs +0 -31
  1123. data/ext/cargo-vendor/wasmtime-environ-24.0.0/src/trap_encoding.rs +0 -189
  1124. data/ext/cargo-vendor/wasmtime-fiber-24.0.0/.cargo-checksum.json +0 -1
  1125. data/ext/cargo-vendor/wasmtime-fiber-24.0.0/Cargo.toml +0 -82
  1126. data/ext/cargo-vendor/wasmtime-fiber-24.0.0/build.rs +0 -39
  1127. data/ext/cargo-vendor/wasmtime-fiber-24.0.0/src/lib.rs +0 -343
  1128. data/ext/cargo-vendor/wasmtime-jit-debug-24.0.0/.cargo-checksum.json +0 -1
  1129. data/ext/cargo-vendor/wasmtime-jit-debug-24.0.0/Cargo.toml +0 -84
  1130. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-24.0.0/.cargo-checksum.json +0 -1
  1131. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-24.0.0/Cargo.toml +0 -69
  1132. data/ext/cargo-vendor/wasmtime-slab-24.0.0/.cargo-checksum.json +0 -1
  1133. data/ext/cargo-vendor/wasmtime-slab-24.0.0/Cargo.toml +0 -48
  1134. data/ext/cargo-vendor/wasmtime-types-24.0.0/.cargo-checksum.json +0 -1
  1135. data/ext/cargo-vendor/wasmtime-types-24.0.0/Cargo.toml +0 -78
  1136. data/ext/cargo-vendor/wasmtime-types-24.0.0/src/lib.rs +0 -1835
  1137. data/ext/cargo-vendor/wasmtime-versioned-export-macros-24.0.0/.cargo-checksum.json +0 -1
  1138. data/ext/cargo-vendor/wasmtime-versioned-export-macros-24.0.0/Cargo.toml +0 -40
  1139. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/.cargo-checksum.json +0 -1
  1140. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/Cargo.toml +0 -222
  1141. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/bindings.rs +0 -561
  1142. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/filesystem.rs +0 -448
  1143. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/host/filesystem.rs +0 -1091
  1144. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/host/io.rs +0 -391
  1145. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/pipe.rs +0 -826
  1146. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/preview1.rs +0 -2801
  1147. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/runtime.rs +0 -176
  1148. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/stdio.rs +0 -596
  1149. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/stream.rs +0 -181
  1150. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/tcp.rs +0 -871
  1151. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/src/write_stream.rs +0 -203
  1152. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/tests/all/main.rs +0 -91
  1153. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/tests/process_stdin.rs +0 -165
  1154. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/command-extended.wit +0 -6
  1155. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/command.wit +0 -7
  1156. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/environment.wit +0 -18
  1157. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/exit.wit +0 -4
  1158. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/imports.wit +0 -20
  1159. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/run.wit +0 -4
  1160. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/stdio.wit +0 -17
  1161. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/cli/terminal.wit +0 -49
  1162. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/clocks/monotonic-clock.wit +0 -45
  1163. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/clocks/wall-clock.wit +0 -42
  1164. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/clocks/world.wit +0 -6
  1165. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/filesystem/preopens.wit +0 -8
  1166. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/filesystem/types.wit +0 -634
  1167. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/filesystem/world.wit +0 -6
  1168. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/http/handler.wit +0 -43
  1169. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/http/proxy.wit +0 -32
  1170. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/http/types.wit +0 -570
  1171. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/error.wit +0 -34
  1172. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/poll.wit +0 -41
  1173. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/streams.wit +0 -262
  1174. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/io/world.wit +0 -6
  1175. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/insecure-seed.wit +0 -25
  1176. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/insecure.wit +0 -22
  1177. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/random.wit +0 -26
  1178. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/random/world.wit +0 -7
  1179. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/instance-network.wit +0 -9
  1180. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/ip-name-lookup.wit +0 -51
  1181. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/network.wit +0 -145
  1182. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/tcp-create-socket.wit +0 -27
  1183. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/tcp.wit +0 -353
  1184. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/udp-create-socket.wit +0 -27
  1185. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/udp.wit +0 -266
  1186. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/deps/sockets/world.wit +0 -11
  1187. data/ext/cargo-vendor/wasmtime-wasi-24.0.0/wit/test.wit +0 -22
  1188. data/ext/cargo-vendor/wasmtime-winch-24.0.0/.cargo-checksum.json +0 -1
  1189. data/ext/cargo-vendor/wasmtime-winch-24.0.0/Cargo.toml +0 -99
  1190. data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/.cargo-checksum.json +0 -1
  1191. data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/Cargo.toml +0 -64
  1192. data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/src/lib.rs +0 -2798
  1193. data/ext/cargo-vendor/wasmtime-wit-bindgen-24.0.0/src/rust.rs +0 -427
  1194. data/ext/cargo-vendor/wast-216.0.0/.cargo-checksum.json +0 -1
  1195. data/ext/cargo-vendor/wast-216.0.0/Cargo.toml +0 -101
  1196. data/ext/cargo-vendor/wast-216.0.0/src/component/binary.rs +0 -1014
  1197. data/ext/cargo-vendor/wast-216.0.0/src/component/component.rs +0 -320
  1198. data/ext/cargo-vendor/wast-216.0.0/src/component/expand.rs +0 -875
  1199. data/ext/cargo-vendor/wast-216.0.0/src/component/import.rs +0 -215
  1200. data/ext/cargo-vendor/wast-216.0.0/src/component/resolve.rs +0 -988
  1201. data/ext/cargo-vendor/wast-216.0.0/src/core/binary/dwarf.rs +0 -610
  1202. data/ext/cargo-vendor/wast-216.0.0/src/core/binary.rs +0 -1539
  1203. data/ext/cargo-vendor/wast-216.0.0/src/core/expr.rs +0 -2110
  1204. data/ext/cargo-vendor/wast-216.0.0/src/core/module.rs +0 -215
  1205. data/ext/cargo-vendor/wast-216.0.0/src/core/resolve/mod.rs +0 -109
  1206. data/ext/cargo-vendor/wast-216.0.0/src/core/resolve/names.rs +0 -791
  1207. data/ext/cargo-vendor/wast-216.0.0/src/core/resolve/types.rs +0 -270
  1208. data/ext/cargo-vendor/wast-216.0.0/src/lexer.rs +0 -1572
  1209. data/ext/cargo-vendor/wast-216.0.0/src/lib.rs +0 -556
  1210. data/ext/cargo-vendor/wast-216.0.0/src/parser.rs +0 -1434
  1211. data/ext/cargo-vendor/wast-216.0.0/src/wast.rs +0 -459
  1212. data/ext/cargo-vendor/wast-216.0.0/src/wat.rs +0 -68
  1213. data/ext/cargo-vendor/wat-1.216.0/.cargo-checksum.json +0 -1
  1214. data/ext/cargo-vendor/wat-1.216.0/Cargo.toml +0 -56
  1215. data/ext/cargo-vendor/wiggle-24.0.0/.cargo-checksum.json +0 -1
  1216. data/ext/cargo-vendor/wiggle-24.0.0/Cargo.toml +0 -117
  1217. data/ext/cargo-vendor/wiggle-24.0.0/src/lib.rs +0 -605
  1218. data/ext/cargo-vendor/wiggle-generate-24.0.0/.cargo-checksum.json +0 -1
  1219. data/ext/cargo-vendor/wiggle-generate-24.0.0/Cargo.toml +0 -83
  1220. data/ext/cargo-vendor/wiggle-generate-24.0.0/src/funcs.rs +0 -434
  1221. data/ext/cargo-vendor/wiggle-generate-24.0.0/src/lib.rs +0 -100
  1222. data/ext/cargo-vendor/wiggle-generate-24.0.0/src/names.rs +0 -299
  1223. data/ext/cargo-vendor/wiggle-generate-24.0.0/src/wasmtime.rs +0 -172
  1224. data/ext/cargo-vendor/wiggle-macro-24.0.0/.cargo-checksum.json +0 -1
  1225. data/ext/cargo-vendor/wiggle-macro-24.0.0/Cargo.toml +0 -76
  1226. data/ext/cargo-vendor/winch-codegen-0.22.0/.cargo-checksum.json +0 -1
  1227. data/ext/cargo-vendor/winch-codegen-0.22.0/Cargo.toml +0 -94
  1228. data/ext/cargo-vendor/winch-codegen-0.22.0/src/abi/local.rs +0 -81
  1229. data/ext/cargo-vendor/winch-codegen-0.22.0/src/abi/mod.rs +0 -666
  1230. data/ext/cargo-vendor/winch-codegen-0.22.0/src/codegen/bounds.rs +0 -220
  1231. data/ext/cargo-vendor/winch-codegen-0.22.0/src/codegen/context.rs +0 -591
  1232. data/ext/cargo-vendor/winch-codegen-0.22.0/src/codegen/mod.rs +0 -880
  1233. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/abi.rs +0 -296
  1234. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/address.rs +0 -143
  1235. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/asm.rs +0 -709
  1236. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/aarch64/masm.rs +0 -665
  1237. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/mod.rs +0 -223
  1238. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/x64/abi.rs +0 -564
  1239. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/x64/asm.rs +0 -1418
  1240. data/ext/cargo-vendor/winch-codegen-0.22.0/src/isa/x64/masm.rs +0 -1115
  1241. data/ext/cargo-vendor/winch-codegen-0.22.0/src/masm.rs +0 -957
  1242. data/ext/cargo-vendor/winch-codegen-0.22.0/src/regalloc.rs +0 -65
  1243. data/ext/cargo-vendor/winch-codegen-0.22.0/src/stack.rs +0 -447
  1244. data/ext/cargo-vendor/winch-codegen-0.22.0/src/visitor.rs +0 -2158
  1245. data/ext/cargo-vendor/wit-parser-0.215.0/.cargo-checksum.json +0 -1
  1246. data/ext/cargo-vendor/wit-parser-0.215.0/Cargo.toml +0 -129
  1247. data/ext/cargo-vendor/wit-parser-0.215.0/src/ast/resolve.rs +0 -1583
  1248. data/ext/cargo-vendor/wit-parser-0.215.0/src/ast.rs +0 -1904
  1249. data/ext/cargo-vendor/wit-parser-0.215.0/src/decoding.rs +0 -1795
  1250. data/ext/cargo-vendor/wit-parser-0.215.0/src/lib.rs +0 -912
  1251. data/ext/cargo-vendor/wit-parser-0.215.0/src/sizealign.rs +0 -179
  1252. data/ext/cargo-vendor/wit-parser-0.215.0/tests/all.rs +0 -154
  1253. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-gate3.wit.result +0 -8
  1254. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-gate4.wit.result +0 -8
  1255. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-gate5.wit.result +0 -8
  1256. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg1.wit.result +0 -9
  1257. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg2.wit.result +0 -8
  1258. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg3.wit.result +0 -8
  1259. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg4.wit.result +0 -8
  1260. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg5.wit.result +0 -8
  1261. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-pkg6.wit.result +0 -8
  1262. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/bad-resource15.wit.result +0 -8
  1263. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/conflicting-package.wit.result +0 -10
  1264. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -9
  1265. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/include-foreign.wit.result +0 -8
  1266. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +0 -9
  1267. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/multi-package-deps-share-nest.wit.result +0 -6
  1268. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -10
  1269. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -9
  1270. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -8
  1271. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/pkg-cycle.wit.result +0 -8
  1272. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -8
  1273. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +0 -8
  1274. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/resources-return-borrow.wit.result +0 -8
  1275. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow1.wit.result +0 -8
  1276. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow2.wit.result +0 -8
  1277. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow6.wit.result +0 -8
  1278. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow7.wit.result +0 -8
  1279. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/return-borrow8.wit.result +0 -9
  1280. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -8
  1281. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/unresolved-use10.wit.result +0 -9
  1282. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/use-and-include-world.wit.result +0 -9
  1283. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/use-world.wit.result +0 -8
  1284. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/parse-fail/very-nested-packages.wit.result +0 -8
  1285. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/since-and-unstable.wit +0 -107
  1286. data/ext/cargo-vendor/wit-parser-0.215.0/tests/ui/since-and-unstable.wit.json +0 -623
  1287. /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/LICENSE +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/README.md +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/src/lib.rs +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/src/map.rs +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-bforest-0.111.0 → cranelift-bforest-0.112.0}/src/set.rs +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-bitset-0.111.0 → cranelift-bitset-0.112.0}/src/compound.rs +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-bitset-0.111.0 → cranelift-bitset-0.112.0}/src/lib.rs +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-bitset-0.111.0 → cranelift-bitset-0.112.0}/tests/bitset.rs +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/LICENSE +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/README.md +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/benches/x64-evex-encoding.rs +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/alias_analysis.rs +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/constant_hash.rs +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/context.rs +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ctxhash.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/cursor.rs +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/dominator_tree.rs +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/egraph/cost.rs +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/egraph/elaborate.rs +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/flowgraph.rs +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/atomic_rmw_op.rs +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/builder.rs +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/condcodes.rs +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/dynamic_type.rs +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/jumptable.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/known_symbol.rs +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/layout.rs +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/libcall.rs +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/memflags.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/mod.rs +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/pcc.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/sourceloc.rs +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ir/stackslot.rs +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/inst/unwind.rs +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/inst_neon.isle +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/lower.rs +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/aarch64/mod.rs +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/call_conv.rs +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/inst/imms.rs +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/inst/regs.rs +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/inst/unwind.rs +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/lower.rs +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/mod.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/riscv64/settings.rs +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/inst/args.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/inst/imms.rs +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/inst/unwind.rs +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/lower.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/mod.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/s390x/settings.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/unwind/winx64.rs +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/unwind.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/encoding/mod.rs +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/encoding/rex.rs +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/encoding/vex.rs +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/inst/unwind.rs +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/isa/x64/settings.rs +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/iterators.rs +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/legalizer/globalvalue.rs +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/legalizer/mod.rs +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/loop_analysis.rs +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/blockorder.rs +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/compile.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/helpers.rs +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/inst_common.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/pcc.rs +0 -0
  1359. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/machinst/valueregs.rs +0 -0
  1360. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/nan_canonicalization.rs +0 -0
  1361. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/README.md +0 -0
  1362. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/arithmetic.isle +0 -0
  1363. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/bitops.isle +0 -0
  1364. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/cprop.isle +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/generated_code.rs +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/remat.isle +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/shifts.isle +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/spaceship.isle +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/spectre.isle +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts/vector.isle +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/opts.rs +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/prelude_opt.isle +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/ranges.rs +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/scoped_hash_map.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/souper_harvest.rs +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/traversals.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/unionfind.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/unreachable_code.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-codegen-0.111.0 → cranelift-codegen-0.112.0}/src/value_label.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/LICENSE +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/README.md +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/formats.rs +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/instructions.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/isa.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/mod.rs +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/cdsl/operands.rs +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/constant_hash.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/isa/s390x.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/shared/entities.rs +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/shared/formats.rs +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/shared/immediates.rs +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.111.0 → cranelift-codegen-meta-0.112.0}/src/unique_table.rs +0 -0
  1393. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/LICENSE +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/README.md +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/src/constant_hash.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/src/constants.rs +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.111.0 → cranelift-codegen-shared-0.112.0}/src/lib.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/LICENSE +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/README.md +0 -0
  1400. /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/src/chaos.rs +0 -0
  1401. /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/src/lib.rs +0 -0
  1402. /data/ext/cargo-vendor/{cranelift-control-0.111.0 → cranelift-control-0.112.0}/src/zero_sized.rs +0 -0
  1403. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/LICENSE +0 -0
  1404. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/README.md +0 -0
  1405. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/boxed_slice.rs +0 -0
  1406. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/iter.rs +0 -0
  1407. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/keys.rs +0 -0
  1408. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/list.rs +0 -0
  1409. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/map.rs +0 -0
  1410. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/primary.rs +0 -0
  1411. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/set.rs +0 -0
  1412. /data/ext/cargo-vendor/{cranelift-entity-0.111.0 → cranelift-entity-0.112.0}/src/unsigned.rs +0 -0
  1413. /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/LICENSE +0 -0
  1414. /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/README.md +0 -0
  1415. /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/src/frontend/safepoints.rs +0 -0
  1416. /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/src/lib.rs +0 -0
  1417. /data/ext/cargo-vendor/{cranelift-frontend-0.111.0 → cranelift-frontend-0.112.0}/src/variable.rs +0 -0
  1418. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/README.md +0 -0
  1419. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/bad_converters.isle +0 -0
  1420. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1421. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1422. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/error1.isle +0 -0
  1423. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/extra_parens.isle +0 -0
  1424. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/impure_expression.isle +0 -0
  1425. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/impure_rhs.isle +0 -0
  1426. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1427. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/fail/multi_prio.isle +0 -0
  1428. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/borrows.isle +0 -0
  1429. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/borrows_main.rs +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/iflets.isle +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/iflets_main.rs +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_constructor.isle +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_constructor_main.rs +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_extractor.isle +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/multi_extractor_main.rs +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/test.isle +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/link/test_main.rs +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/bound_var.isle +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/construct_and_extract.isle +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/conversions.isle +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/conversions_extern.isle +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/let.isle +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/nodebug.isle +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/test2.isle +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/test3.isle +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/test4.isle +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/pass/tutorial.isle +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/iconst.isle +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/iconst_main.rs +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/let_shadowing.isle +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/isle_examples/run/let_shadowing_main.rs +0 -0
  1453. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/disjointsets.rs +0 -0
  1454. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/log.rs +0 -0
  1455. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/serialize.rs +0 -0
  1456. /data/ext/cargo-vendor/{cranelift-isle-0.111.0 → cranelift-isle-0.112.0}/src/stablemapset.rs +0 -0
  1457. /data/ext/cargo-vendor/{cranelift-native-0.111.0 → cranelift-native-0.112.0}/LICENSE +0 -0
  1458. /data/ext/cargo-vendor/{cranelift-native-0.111.0 → cranelift-native-0.112.0}/README.md +0 -0
  1459. /data/ext/cargo-vendor/{cranelift-native-0.111.0 → cranelift-native-0.112.0}/src/riscv.rs +0 -0
  1460. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/LICENSE +0 -0
  1461. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/README.md +0 -0
  1462. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/code_translator/bounds_checks.rs +0 -0
  1463. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/environ/mod.rs +0 -0
  1464. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/heap.rs +0 -0
  1465. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/lib.rs +0 -0
  1466. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/state.rs +0 -0
  1467. /data/ext/cargo-vendor/{cranelift-wasm-0.111.0 → cranelift-wasm-0.112.0}/src/table.rs +0 -0
  1468. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/README.md +0 -0
  1469. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/src/clocks.rs +0 -0
  1470. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/src/lib.rs +0 -0
  1471. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/src/noop_scheduler.rs +0 -0
  1472. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/clocks.rs +0 -0
  1473. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/common/mod.rs +0 -0
  1474. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/random.rs +0 -0
  1475. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.24 → deterministic-wasi-ctx-0.1.25}/tests/scheduler.rs +0 -0
  1476. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/LICENSE +0 -0
  1477. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/README.md +0 -0
  1478. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/deny.toml +0 -0
  1479. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/doc/TODO +0 -0
  1480. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/domtree.rs +0 -0
  1481. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/indexset.rs +0 -0
  1482. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/dump.rs +0 -0
  1483. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/redundant_moves.rs +0 -0
  1484. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/reg_traversal.rs +0 -0
  1485. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ion/spill.rs +0 -0
  1486. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/moves.rs +0 -0
  1487. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/postorder.rs +0 -0
  1488. /data/ext/cargo-vendor/{regalloc2-0.9.3 → regalloc2-0.10.2}/src/ssa.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/LICENSE +0 -0
  1490. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/README.md +0 -0
  1491. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/clocks.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/dir.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/error.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/file.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/pipe.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/random.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sched/subscription.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sched.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/snapshots/preview_0.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/snapshots/preview_1/error.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/snapshots/preview_1.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/string_array.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/clocks.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/file.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/mod.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/net.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/sched/unix.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/sched/windows.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/sched.rs +0 -0
  1510. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/sync/stdio.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/table.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/file.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/mod.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/net.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/sched/unix.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/sched/windows.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/sched.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/src/tokio/stdio.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview0/typenames.witx +0 -0
  1520. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview0/wasi_unstable.witx +0 -0
  1521. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview1/typenames.witx +0 -0
  1522. /data/ext/cargo-vendor/{wasi-common-24.0.0 → wasi-common-25.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1523. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/README.md +0 -0
  1524. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/aliases.rs +0 -0
  1525. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/canonicals.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/components.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/modules.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/component/names.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component/start.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/component.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/custom.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/data.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/dump.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/elements.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/exports.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/functions.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/globals.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/imports.rs +0 -0
  1539. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/linking.rs +0 -0
  1540. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/memories.rs +0 -0
  1541. /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/core/names.rs +0 -0
  1542. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/producers.rs +0 -0
  1543. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/start.rs +0 -0
  1544. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/tables.rs +0 -0
  1545. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core/tags.rs +0 -0
  1546. /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/core/types.rs +0 -0
  1547. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/core.rs +0 -0
  1548. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/lib.rs +0 -0
  1549. /data/ext/cargo-vendor/{wasm-encoder-0.215.0 → wasm-encoder-0.217.0}/src/raw.rs +0 -0
  1550. /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/reencode/component.rs +0 -0
  1551. /data/ext/cargo-vendor/{wasm-encoder-0.216.0 → wasm-encoder-0.217.0}/src/reencode.rs +0 -0
  1552. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/README.md +0 -0
  1553. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/examples/simple.rs +0 -0
  1554. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/hash.rs +0 -0
  1555. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_map/detail.rs +0 -0
  1556. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_map/tests.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_map.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/index_set.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/map.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/mod.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/collections/set.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/lib.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/component/names.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/component/start.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/component.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/branch_hinting.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/custom.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/dylink0.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/elements.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/functions.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/linking.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/memories.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/names.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/reloc.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/tables.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/tags.rs +0 -0
  1577. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core/types/matches.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/src/readers/core.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmparser-0.215.0 → wasmparser-0.217.0}/tests/big-module.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/README.md +0 -0
  1581. /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/src/operator.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/src/print.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmprinter-0.215.0 → wasmprinter-0.217.0}/tests/all.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/LICENSE +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/README.md +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/profiling_agent/perfmap.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/profiling_agent/vtune.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/profiling_agent.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/code.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/code_memory.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/bindgen_examples/mod.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/func/options.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/func.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/instance.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/matching.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/resource_table.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/storage.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/store.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/component/values.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/debug.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/externals.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/func/typed.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/disabled/externref.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/disabled/i31.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/disabled/structref.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/enabled/externref.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/enabled/structref.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc/noextern.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/gc.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/instantiate.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/limits.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/module/registry.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/profiling.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/resources.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/signatures.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/stack.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/store/context.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/store/data.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/store/func_refs.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline/func.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline/memory.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline/table.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/trampoline.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/type_registry.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/types/matching.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/uninhabited.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/unix.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/v128.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/aarch64.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/mod.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/riscv64.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/s390x.S +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/s390x.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/unsupported.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/arch/x86_64.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/async_yield.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/component/libcalls.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/component/resources.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/component.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/debug_builtins.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/export.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/host_data.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/gc/i31.rs +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/imports.rs +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance/allocator.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/instance.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/memory.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mmap.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mmap_vec.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/module_id.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/disabled.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/enabled.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/mod.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/pkru.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/mpk/sys.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/store_box.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/mmap.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/mod.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/custom/vm.rs +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/mmap.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/mod.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/unwind.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/mmap.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/unwind.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/table.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/threads/mod.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/threads/shared_memory.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/threads/shared_memory_disabled.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/vm.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime/windows.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/runtime.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/sync_nostd.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-24.0.0 → wasmtime-25.0.0}/src/sync_std.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-asm-macros-24.0.0 → wasmtime-asm-macros-25.0.0}/src/lib.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/LICENSE +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/src/config/tests.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/src/tests.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-cache-24.0.0 → wasmtime-cache-25.0.0}/tests/cache_write_default_config.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/build.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/src/lib.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/char.wit +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/conventions.wit +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/dead-code.wit +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/direct-import.wit +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/empty.wit +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/flags.wit +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/floats.wit +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/function-new.wit +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/integers.wit +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/lists.wit +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/many-arguments.wit +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multi-return.wit +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/multiversion/root.wit +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/records.wit +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/rename.wit +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/resources-export.wit +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/resources-import.wit +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/share-types.wit +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/simple-functions.wit +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/simple-lists.wit +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/simple-wasi.wit +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/small-anonymous.wit +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/smoke-default.wit +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/smoke-export.wit +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/smoke.wit +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/strings.wit +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/unversioned-foo.wit +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/use-paths.wit +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/variants.wit +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/wat.wit +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-component-macro-24.0.0 → wasmtime-component-macro-25.0.0}/tests/codegen_no_std.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-component-util-24.0.0 → wasmtime-component-util-25.0.0}/src/lib.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/LICENSE +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/SECURITY.md +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/builder.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/compiled_function.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/compiler/component.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/gc.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/address_transform.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/expression.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/refs.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/transform/utils.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug/write_debuginfo.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/debug.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/gc/disabled.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/isa_builder.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-cranelift-24.0.0 → wasmtime-cranelift-25.0.0}/src/obj.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/LICENSE +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/examples/factc.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/address_map.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/address_map.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/module_artifacts.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/module_types.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/compile/trap_encoding.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/artifacts.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/compiler.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/dfg.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/info.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/names.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/translate/adapt.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/translate/inline.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/translate.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/types_builder/resources.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/types_builder.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/component.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact/core_types.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact/signature.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact/transcode.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/fact.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/gc.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/lib.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/module.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/module_artifacts.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/module_types.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/obj.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/ref_bits.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/scopevec.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/tunables.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-environ-24.0.0 → wasmtime-environ-25.0.0}/src/vmoffsets.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/LICENSE +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/aarch64.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/arm.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/riscv64.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/s390x.S +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/x86.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix/x86_64.rs +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/unix.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/windows.c +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-fiber-24.0.0 → wasmtime-fiber-25.0.0}/src/windows.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/README.md +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/src/gdb_jit_int.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/src/lib.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-jit-debug-24.0.0 → wasmtime-jit-debug-25.0.0}/src/perf_jitdump.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/lib.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/libc.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/miri.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-24.0.0 → wasmtime-jit-icache-coherence-25.0.0}/src/win.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-slab-24.0.0 → wasmtime-slab-25.0.0}/src/lib.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-types-24.0.0 → wasmtime-types-25.0.0}/LICENSE +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-types-24.0.0 → wasmtime-types-25.0.0}/src/error.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-types-24.0.0 → wasmtime-types-25.0.0}/src/prelude.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-24.0.0 → wasmtime-versioned-export-macros-25.0.0}/src/lib.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/LICENSE +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/README.md +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/clocks/host.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/clocks.rs +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/ctx.rs +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/error.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/clocks.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/env.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/exit.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/filesystem/sync.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/instance_network.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/mod.rs +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/network.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/random.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/tcp.rs +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/tcp_create_socket.rs +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/udp.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/host/udp_create_socket.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/ip_name_lookup.rs +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/lib.rs +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/network.rs +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/poll.rs +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/preview0.rs +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/random.rs +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/stdio/worker_thread_stdin.rs +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/src/udp.rs +0 -0
  1847. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/api.rs +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/async_.rs +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/preview1.rs +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/tests/all/sync.rs +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview0/typenames.witx +0 -0
  1852. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview0/wasi_unstable.witx +0 -0
  1853. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview1/typenames.witx +0 -0
  1854. /data/ext/cargo-vendor/{wasmtime-wasi-24.0.0 → wasmtime-wasi-25.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1855. /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/LICENSE +0 -0
  1856. /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/src/builder.rs +0 -0
  1857. /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/src/compiler.rs +0 -0
  1858. /data/ext/cargo-vendor/{wasmtime-winch-24.0.0 → wasmtime-winch-25.0.0}/src/lib.rs +0 -0
  1859. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-24.0.0 → wasmtime-wit-bindgen-25.0.0}/src/source.rs +0 -0
  1860. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-24.0.0 → wasmtime-wit-bindgen-25.0.0}/src/types.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/README.md +0 -0
  1862. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/alias.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/custom.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/export.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/func.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/instance.rs +0 -0
  1867. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/item_ref.rs +0 -0
  1868. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/module.rs +0 -0
  1869. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/types.rs +0 -0
  1870. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component/wast.rs +0 -0
  1871. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/component.rs +0 -0
  1872. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/binary/dwarf_disabled.rs +0 -0
  1873. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/custom.rs +0 -0
  1874. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/export.rs +0 -0
  1875. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/func.rs +0 -0
  1876. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/global.rs +0 -0
  1877. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/import.rs +0 -0
  1878. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/memory.rs +0 -0
  1879. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
  1880. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/table.rs +0 -0
  1881. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/tag.rs +0 -0
  1882. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/types.rs +0 -0
  1883. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core/wast.rs +0 -0
  1884. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/core.rs +0 -0
  1885. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/encode.rs +0 -0
  1886. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/error.rs +0 -0
  1887. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/gensym.rs +0 -0
  1888. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/names.rs +0 -0
  1889. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/src/token.rs +0 -0
  1890. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/annotations.rs +0 -0
  1891. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/comments.rs +0 -0
  1892. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block1.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block2.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block3.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/inline1.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string1.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string10.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string11.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string12.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string13.wat +0 -0
  1977. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1978. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string14.wat +0 -0
  1979. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1980. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string15.wat +0 -0
  1981. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1982. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string16.wat +0 -0
  1983. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1984. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string2.wat +0 -0
  1985. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1986. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string3.wat +0 -0
  1987. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1988. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string4.wat +0 -0
  1989. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1990. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string5.wat +0 -0
  1991. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1992. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string6.wat +0 -0
  1993. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1994. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string7.wat +0 -0
  1995. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1996. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string8.wat +0 -0
  1997. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1998. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string9.wat +0 -0
  1999. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/string9.wat.err +0 -0
  2000. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  2001. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  2002. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/parse-fail.rs +0 -0
  2003. /data/ext/cargo-vendor/{wast-216.0.0 → wast-217.0.0}/tests/recursive.rs +0 -0
  2004. /data/ext/cargo-vendor/{wat-1.216.0 → wat-1.217.0}/README.md +0 -0
  2005. /data/ext/cargo-vendor/{wat-1.216.0 → wat-1.217.0}/src/lib.rs +0 -0
  2006. /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/LICENSE +0 -0
  2007. /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/README.md +0 -0
  2008. /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/src/error.rs +0 -0
  2009. /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/src/guest_type.rs +0 -0
  2010. /data/ext/cargo-vendor/{wiggle-24.0.0 → wiggle-25.0.0}/src/region.rs +0 -0
  2011. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/LICENSE +0 -0
  2012. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/README.md +0 -0
  2013. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/codegen_settings.rs +0 -0
  2014. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/config.rs +0 -0
  2015. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/lifetimes.rs +0 -0
  2016. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/module_trait.rs +0 -0
  2017. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/error.rs +0 -0
  2018. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/flags.rs +0 -0
  2019. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/handle.rs +0 -0
  2020. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/mod.rs +0 -0
  2021. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/record.rs +0 -0
  2022. /data/ext/cargo-vendor/{wiggle-generate-24.0.0 → wiggle-generate-25.0.0}/src/types/variant.rs +0 -0
  2023. /data/ext/cargo-vendor/{wiggle-macro-24.0.0 → wiggle-macro-25.0.0}/LICENSE +0 -0
  2024. /data/ext/cargo-vendor/{wiggle-macro-24.0.0 → wiggle-macro-25.0.0}/build.rs +0 -0
  2025. /data/ext/cargo-vendor/{wiggle-macro-24.0.0 → wiggle-macro-25.0.0}/src/lib.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/LICENSE +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/build.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/builtin.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/call.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/control.rs +0 -0
  2031. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/codegen/env.rs +0 -0
  2032. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/frame/mod.rs +0 -0
  2033. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/aarch64/mod.rs +0 -0
  2034. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/aarch64/regs.rs +0 -0
  2035. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/reg.rs +0 -0
  2036. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/x64/address.rs +0 -0
  2037. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/x64/mod.rs +0 -0
  2038. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/isa/x64/regs.rs +0 -0
  2039. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/lib.rs +0 -0
  2040. /data/ext/cargo-vendor/{winch-codegen-0.22.0 → winch-codegen-0.23.0}/src/regset.rs +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/README.md +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/abi.rs +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/ast/lex.rs +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/ast/toposort.rs +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/live.rs +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/metadata.rs +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/resolve.rs +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/src/serde_.rs +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/comments.wit +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/comments.wit.json +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include/root.wit +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/complex-include.wit.json +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/cross-package-resource/foo.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/cross-package-resource.wit.json +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1/join.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/diamond1.wit.json +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/empty.wit +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/empty.wit.json +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/feature-gates.wit +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/feature-gates.wit.json +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps/root.wit +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union/root.wit +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps-union.wit.json +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/foreign-deps.wit.json +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/functions.wit +0 -0
  2090. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/functions.wit.json +0 -0
  2091. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2092. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2093. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps/world.wit +0 -0
  2094. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/ignore-files-deps.wit.json +0 -0
  2095. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap1.wit +0 -0
  2096. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap1.wit.json +0 -0
  2097. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap2.wit +0 -0
  2098. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/import-export-overlap2.wit.json +0 -0
  2099. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/include-reps.wit +0 -0
  2100. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/include-reps.wit.json +0 -0
  2101. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kebab-name-include-with.wit +0 -0
  2102. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
  2103. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/a.wit +0 -0
  2104. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
  2105. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
  2106. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
  2107. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
  2108. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/kinds-of-deps.wit.json +0 -0
  2109. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/many-names/a.wit +0 -0
  2110. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/many-names/b.wit +0 -0
  2111. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/many-names.wit.json +0 -0
  2112. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/bar.wit +0 -0
  2113. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/cycle-a.wit +0 -0
  2114. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/cycle-b.wit +0 -0
  2115. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file/foo.wit +0 -0
  2116. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file-multi-package/a.wit +0 -0
  2117. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file-multi-package/b.wit +0 -0
  2118. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file-multi-package.wit.json +0 -0
  2119. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-file.wit.json +0 -0
  2120. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-deps/deps/dep.wit +0 -0
  2121. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-deps/root.wit +0 -0
  2122. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-deps.wit.json +0 -0
  2123. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps/deps/dep1/types.wit +0 -0
  2124. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps/deps/dep2/types.wit +0 -0
  2125. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps/packages.wit +0 -0
  2126. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-shared-deps.wit.json +0 -0
  2127. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps/deps/dep1/types.wit +0 -0
  2128. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps/deps/dep2/types.wit +0 -0
  2129. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps/packages.wit +0 -0
  2130. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/multi-package-transitive-deps.wit.json +0 -0
  2131. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2132. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2133. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  2134. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax1.wit +0 -0
  2135. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax1.wit.json +0 -0
  2136. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax3.wit +0 -0
  2137. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax3.wit.json +0 -0
  2138. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax4.wit +0 -0
  2139. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/package-syntax4.wit.json +0 -0
  2140. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-multiple-nested.wit +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-multiple-nested.wit.json +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-colliding-decl-names.wit +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-colliding-decl-names.wit.json +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-internal-references.wit +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-internal-references.wit.json +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-with-semver.wit +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-nested-with-semver.wit.json +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-single-nested.wit +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/packages-single-nested.wit.json +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/async.wit.result +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated1.wit +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated1.wit.result +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated2.wit +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated2.wit.result +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated3.wit +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated3.wit.result +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated4.wit +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-deprecated4.wit.result +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function.wit +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2165. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2166. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate1.wit +0 -0
  2167. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate1.wit.result +0 -0
  2168. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate2.wit +0 -0
  2169. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate2.wit.result +0 -0
  2170. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate3.wit +0 -0
  2171. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate4.wit +0 -0
  2172. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-gate5.wit +0 -0
  2173. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2174. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2175. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2176. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2177. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2178. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2179. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  2180. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2181. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2182. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2183. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2184. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2185. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2186. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2187. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2188. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2189. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2190. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2191. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2192. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2193. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2194. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2195. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2196. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2197. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2198. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2199. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2200. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2201. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2202. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2203. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2204. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2205. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2206. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2207. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2208. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2209. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2210. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2211. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2212. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2213. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2214. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2215. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2216. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2217. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2218. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2219. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2220. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2221. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2222. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since1.wit +0 -0
  2223. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since1.wit.result +0 -0
  2224. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since3.wit +0 -0
  2225. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-since3.wit.result +0 -0
  2226. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2227. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle.wit +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle2.wit +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle3.wit +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle4.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle5.wit +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/export-twice.wit +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-twice.wit +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/keyword.wit +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-main.wit +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-main.wit.result +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-nested.wit +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-main-declaration-initial-nested.wit.result +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-package.wit +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-file-missing-delimiter/observe.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-file-missing-delimiter/world.wit +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-package-deps-share-nest/deps/dep1/types.wit +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-package-deps-share-nest/deps/dep2/types.wit +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multi-package-deps-share-nest/root.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-inline-cycle.wit +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-package-inline-cycle.wit.result +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit.result +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-colliding-names.wit +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-colliding-names.wit.result +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-with-error.wit +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/nested-packages-with-error.wit.result +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2319. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2320. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit +0 -0
  2321. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/resources-return-borrow.wit +0 -0
  2322. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow1.wit +0 -0
  2323. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow2.wit +0 -0
  2324. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow3.wit +0 -0
  2325. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow3.wit.result +0 -0
  2326. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow4.wit +0 -0
  2327. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow4.wit.result +0 -0
  2328. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow5.wit +0 -0
  2329. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow5.wit.result +0 -0
  2330. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow6.wit +0 -0
  2331. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow7.wit +0 -0
  2332. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow8/deps/baz.wit +0 -0
  2333. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/return-borrow8/foo.wit +0 -0
  2334. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2335. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2336. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2337. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2338. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2339. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2340. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2341. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2342. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2343. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2344. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2345. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2346. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2347. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2348. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2349. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2350. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2351. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2352. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2353. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2354. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2355. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2356. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2357. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2358. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2359. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2360. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2361. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2362. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2363. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2364. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2365. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2366. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2367. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2368. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2369. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2370. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2371. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2372. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2373. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2374. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2375. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2376. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2377. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2378. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2379. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/very-nested-packages.wit +0 -0
  2380. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2381. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2382. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2383. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2384. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2385. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2386. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2387. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2388. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2389. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2390. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/random.wit +0 -0
  2391. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/random.wit.json +0 -0
  2392. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-empty.wit +0 -0
  2393. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-empty.wit.json +0 -0
  2394. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2395. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2396. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple.wit +0 -0
  2397. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-multiple.wit.json +0 -0
  2398. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-return-own.wit +0 -0
  2399. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources-return-own.wit.json +0 -0
  2400. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources.wit +0 -0
  2401. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources.wit.json +0 -0
  2402. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources1.wit +0 -0
  2403. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/resources1.wit.json +0 -0
  2404. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/same-name-import-export.wit +0 -0
  2405. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/same-name-import-export.wit.json +0 -0
  2406. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/shared-types.wit +0 -0
  2407. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/shared-types.wit.json +0 -0
  2408. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/simple-wasm-text.wat +0 -0
  2409. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/simple-wasm-text.wit.json +0 -0
  2410. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/stress-export-elaborate.wit +0 -0
  2411. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2412. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/type-then-eof.wit +0 -0
  2413. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/type-then-eof.wit.json +0 -0
  2414. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/types.wit +0 -0
  2415. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/types.wit.json +0 -0
  2416. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-1.wit +0 -0
  2417. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-1.wit.json +0 -0
  2418. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-2.wit +0 -0
  2419. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/union-fuzz-2.wit.json +0 -0
  2420. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use-chain.wit +0 -0
  2421. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use-chain.wit.json +0 -0
  2422. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use.wit +0 -0
  2423. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/use.wit.json +0 -0
  2424. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/version-syntax.wit +0 -0
  2425. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/version-syntax.wit.json +0 -0
  2426. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2427. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2428. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions/foo.wit +0 -0
  2429. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/versions.wit.json +0 -0
  2430. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/wasi.wit +0 -0
  2431. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/wasi.wit.json +0 -0
  2432. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-diamond.wit +0 -0
  2433. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-diamond.wit.json +0 -0
  2434. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-iface-no-collide.wit +0 -0
  2435. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2436. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import1.wit +0 -0
  2437. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import1.wit.json +0 -0
  2438. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import2.wit +0 -0
  2439. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import2.wit.json +0 -0
  2440. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import3.wit +0 -0
  2441. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-implicit-import3.wit.json +0 -0
  2442. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-same-fields4.wit +0 -0
  2443. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-same-fields4.wit.json +0 -0
  2444. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-funcs.wit +0 -0
  2445. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2446. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-resources.wit +0 -0
  2447. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/world-top-level-resources.wit.json +0 -0
  2448. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-union-dedup.wit +0 -0
  2449. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2450. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-with-types.wit +0 -0
  2451. /data/ext/cargo-vendor/{wit-parser-0.215.0 → wit-parser-0.217.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -1,3481 +0,0 @@
1
- //! S390x ISA: binary code emission.
2
-
3
- use crate::binemit::StackMap;
4
- use crate::ir::{self, MemFlags, TrapCode};
5
- use crate::isa::s390x::inst::*;
6
- use crate::isa::s390x::settings as s390x_settings;
7
- use cranelift_control::ControlPlane;
8
-
9
- /// Debug macro for testing that a regpair is valid: that the high register is even, and the low
10
- /// register is one higher than the high register.
11
- macro_rules! debug_assert_valid_regpair {
12
- ($hi:expr, $lo:expr) => {
13
- if cfg!(debug_assertions) {
14
- match ($hi.to_real_reg(), $lo.to_real_reg()) {
15
- (Some(hi), Some(lo)) => {
16
- assert!(
17
- hi.hw_enc() % 2 == 0,
18
- "High register is not even: {}",
19
- show_reg($hi)
20
- );
21
- assert_eq!(
22
- hi.hw_enc() + 1,
23
- lo.hw_enc(),
24
- "Low register is not valid: {}, {}",
25
- show_reg($hi),
26
- show_reg($lo)
27
- );
28
- }
29
-
30
- _ => {
31
- panic!(
32
- "Expected real registers for {} {}",
33
- show_reg($hi),
34
- show_reg($lo)
35
- );
36
- }
37
- }
38
- }
39
- };
40
- }
41
-
42
- /// Type(s) of memory instructions available for mem_finalize.
43
- pub struct MemInstType {
44
- /// True if 12-bit unsigned displacement is supported.
45
- pub have_d12: bool,
46
- /// True if 20-bit signed displacement is supported.
47
- pub have_d20: bool,
48
- /// True if PC-relative addressing is supported (memory access).
49
- pub have_pcrel: bool,
50
- /// True if PC-relative addressing is supported (load address).
51
- pub have_unaligned_pcrel: bool,
52
- /// True if an index register is supported.
53
- pub have_index: bool,
54
- }
55
-
56
- /// Memory addressing mode finalization: convert "special" modes (e.g.,
57
- /// generic arbitrary stack offset) into real addressing modes, possibly by
58
- /// emitting some helper instructions that come immediately before the use
59
- /// of this amode.
60
- pub fn mem_finalize(
61
- mem: &MemArg,
62
- state: &EmitState,
63
- mi: MemInstType,
64
- ) -> (SmallVec<[Inst; 4]>, MemArg) {
65
- let mut insts = SmallVec::new();
66
-
67
- // Resolve virtual addressing modes.
68
- let mem = match mem {
69
- &MemArg::RegOffset { off, .. }
70
- | &MemArg::InitialSPOffset { off }
71
- | &MemArg::NominalSPOffset { off }
72
- | &MemArg::SlotOffset { off } => {
73
- let base = match mem {
74
- &MemArg::RegOffset { reg, .. } => reg,
75
- &MemArg::InitialSPOffset { .. }
76
- | &MemArg::NominalSPOffset { .. }
77
- | &MemArg::SlotOffset { .. } => stack_reg(),
78
- _ => unreachable!(),
79
- };
80
- let adj = match mem {
81
- &MemArg::InitialSPOffset { .. } => i64::from(
82
- state.frame_layout().clobber_size
83
- + state.frame_layout().fixed_frame_storage_size
84
- + state.frame_layout().outgoing_args_size
85
- + state.nominal_sp_offset,
86
- ),
87
- &MemArg::SlotOffset { .. } => {
88
- i64::from(state.frame_layout().outgoing_args_size + state.nominal_sp_offset)
89
- }
90
- &MemArg::NominalSPOffset { .. } => i64::from(state.nominal_sp_offset),
91
- _ => 0,
92
- };
93
- let off = off + adj;
94
-
95
- if let Some(disp) = UImm12::maybe_from_u64(off as u64) {
96
- MemArg::BXD12 {
97
- base,
98
- index: zero_reg(),
99
- disp,
100
- flags: mem.get_flags(),
101
- }
102
- } else if let Some(disp) = SImm20::maybe_from_i64(off) {
103
- MemArg::BXD20 {
104
- base,
105
- index: zero_reg(),
106
- disp,
107
- flags: mem.get_flags(),
108
- }
109
- } else {
110
- let tmp = writable_spilltmp_reg();
111
- assert!(base != tmp.to_reg());
112
- if let Ok(imm) = i16::try_from(off) {
113
- insts.push(Inst::Mov64SImm16 { rd: tmp, imm });
114
- } else if let Ok(imm) = i32::try_from(off) {
115
- insts.push(Inst::Mov64SImm32 { rd: tmp, imm });
116
- } else {
117
- // The offset must be smaller than the stack frame size,
118
- // which the ABI code limits to 128 MB.
119
- unreachable!();
120
- }
121
- MemArg::reg_plus_reg(base, tmp.to_reg(), mem.get_flags())
122
- }
123
- }
124
- _ => mem.clone(),
125
- };
126
-
127
- // If this addressing mode cannot be handled by the instruction, use load-address.
128
- let need_load_address = match &mem {
129
- &MemArg::Label { .. } | &MemArg::Symbol { .. } if !mi.have_pcrel => true,
130
- &MemArg::Symbol { flags, .. } if !mi.have_unaligned_pcrel && !flags.aligned() => true,
131
- &MemArg::BXD20 { .. } if !mi.have_d20 => true,
132
- &MemArg::BXD12 { index, .. } | &MemArg::BXD20 { index, .. } if !mi.have_index => {
133
- index != zero_reg()
134
- }
135
- _ => false,
136
- };
137
- let mem = if need_load_address {
138
- let flags = mem.get_flags();
139
- let tmp = writable_spilltmp_reg();
140
- insts.push(Inst::LoadAddr { rd: tmp, mem });
141
- MemArg::reg(tmp.to_reg(), flags)
142
- } else {
143
- mem
144
- };
145
-
146
- // Convert 12-bit displacement to 20-bit if required.
147
- let mem = match &mem {
148
- &MemArg::BXD12 {
149
- base,
150
- index,
151
- disp,
152
- flags,
153
- } if !mi.have_d12 => {
154
- assert!(mi.have_d20);
155
- MemArg::BXD20 {
156
- base,
157
- index,
158
- disp: SImm20::from_uimm12(disp),
159
- flags,
160
- }
161
- }
162
- _ => mem,
163
- };
164
-
165
- (insts, mem)
166
- }
167
-
168
- pub fn mem_emit(
169
- rd: Reg,
170
- mem: &MemArg,
171
- opcode_rx: Option<u16>,
172
- opcode_rxy: Option<u16>,
173
- opcode_ril: Option<u16>,
174
- add_trap: bool,
175
- sink: &mut MachBuffer<Inst>,
176
- emit_info: &EmitInfo,
177
- state: &mut EmitState,
178
- ) {
179
- let (mem_insts, mem) = mem_finalize(
180
- mem,
181
- state,
182
- MemInstType {
183
- have_d12: opcode_rx.is_some(),
184
- have_d20: opcode_rxy.is_some(),
185
- have_pcrel: opcode_ril.is_some(),
186
- have_unaligned_pcrel: opcode_ril.is_some() && !add_trap,
187
- have_index: true,
188
- },
189
- );
190
- for inst in mem_insts.into_iter() {
191
- inst.emit(sink, emit_info, state);
192
- }
193
-
194
- if add_trap {
195
- if let Some(trap_code) = mem.get_flags().trap_code() {
196
- sink.add_trap(trap_code);
197
- }
198
- }
199
-
200
- match &mem {
201
- &MemArg::BXD12 {
202
- base, index, disp, ..
203
- } => {
204
- put(
205
- sink,
206
- &enc_rx(opcode_rx.unwrap(), rd, base, index, disp.bits()),
207
- );
208
- }
209
- &MemArg::BXD20 {
210
- base, index, disp, ..
211
- } => {
212
- put(
213
- sink,
214
- &enc_rxy(opcode_rxy.unwrap(), rd, base, index, disp.bits()),
215
- );
216
- }
217
- &MemArg::Label { target } => {
218
- sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
219
- put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
220
- }
221
- &MemArg::Symbol {
222
- ref name, offset, ..
223
- } => {
224
- sink.add_reloc_at_offset(2, Reloc::S390xPCRel32Dbl, &**name, (offset + 2).into());
225
- put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
226
- }
227
- _ => unreachable!(),
228
- }
229
- }
230
-
231
- pub fn mem_rs_emit(
232
- rd: Reg,
233
- rn: Reg,
234
- mem: &MemArg,
235
- opcode_rs: Option<u16>,
236
- opcode_rsy: Option<u16>,
237
- add_trap: bool,
238
- sink: &mut MachBuffer<Inst>,
239
- emit_info: &EmitInfo,
240
- state: &mut EmitState,
241
- ) {
242
- let (mem_insts, mem) = mem_finalize(
243
- mem,
244
- state,
245
- MemInstType {
246
- have_d12: opcode_rs.is_some(),
247
- have_d20: opcode_rsy.is_some(),
248
- have_pcrel: false,
249
- have_unaligned_pcrel: false,
250
- have_index: false,
251
- },
252
- );
253
- for inst in mem_insts.into_iter() {
254
- inst.emit(sink, emit_info, state);
255
- }
256
-
257
- if add_trap {
258
- if let Some(trap_code) = mem.get_flags().trap_code() {
259
- sink.add_trap(trap_code);
260
- }
261
- }
262
-
263
- match &mem {
264
- &MemArg::BXD12 {
265
- base, index, disp, ..
266
- } => {
267
- assert!(index == zero_reg());
268
- put(sink, &enc_rs(opcode_rs.unwrap(), rd, rn, base, disp.bits()));
269
- }
270
- &MemArg::BXD20 {
271
- base, index, disp, ..
272
- } => {
273
- assert!(index == zero_reg());
274
- put(
275
- sink,
276
- &enc_rsy(opcode_rsy.unwrap(), rd, rn, base, disp.bits()),
277
- );
278
- }
279
- _ => unreachable!(),
280
- }
281
- }
282
-
283
- pub fn mem_imm8_emit(
284
- imm: u8,
285
- mem: &MemArg,
286
- opcode_si: u16,
287
- opcode_siy: u16,
288
- add_trap: bool,
289
- sink: &mut MachBuffer<Inst>,
290
- emit_info: &EmitInfo,
291
- state: &mut EmitState,
292
- ) {
293
- let (mem_insts, mem) = mem_finalize(
294
- mem,
295
- state,
296
- MemInstType {
297
- have_d12: true,
298
- have_d20: true,
299
- have_pcrel: false,
300
- have_unaligned_pcrel: false,
301
- have_index: false,
302
- },
303
- );
304
- for inst in mem_insts.into_iter() {
305
- inst.emit(sink, emit_info, state);
306
- }
307
-
308
- if add_trap {
309
- if let Some(trap_code) = mem.get_flags().trap_code() {
310
- sink.add_trap(trap_code);
311
- }
312
- }
313
-
314
- match &mem {
315
- &MemArg::BXD12 {
316
- base, index, disp, ..
317
- } => {
318
- assert!(index == zero_reg());
319
- put(sink, &enc_si(opcode_si, base, disp.bits(), imm));
320
- }
321
- &MemArg::BXD20 {
322
- base, index, disp, ..
323
- } => {
324
- assert!(index == zero_reg());
325
- put(sink, &enc_siy(opcode_siy, base, disp.bits(), imm));
326
- }
327
- _ => unreachable!(),
328
- }
329
- }
330
-
331
- pub fn mem_imm16_emit(
332
- imm: i16,
333
- mem: &MemArg,
334
- opcode_sil: u16,
335
- add_trap: bool,
336
- sink: &mut MachBuffer<Inst>,
337
- emit_info: &EmitInfo,
338
- state: &mut EmitState,
339
- ) {
340
- let (mem_insts, mem) = mem_finalize(
341
- mem,
342
- state,
343
- MemInstType {
344
- have_d12: true,
345
- have_d20: false,
346
- have_pcrel: false,
347
- have_unaligned_pcrel: false,
348
- have_index: false,
349
- },
350
- );
351
- for inst in mem_insts.into_iter() {
352
- inst.emit(sink, emit_info, state);
353
- }
354
-
355
- if add_trap {
356
- if let Some(trap_code) = mem.get_flags().trap_code() {
357
- sink.add_trap(trap_code);
358
- }
359
- }
360
-
361
- match &mem {
362
- &MemArg::BXD12 {
363
- base, index, disp, ..
364
- } => {
365
- assert!(index == zero_reg());
366
- put(sink, &enc_sil(opcode_sil, base, disp.bits(), imm));
367
- }
368
- _ => unreachable!(),
369
- }
370
- }
371
-
372
- pub fn mem_mem_emit(
373
- dst: &MemArgPair,
374
- src: &MemArgPair,
375
- len_minus_one: u8,
376
- opcode_ss: u8,
377
- add_trap: bool,
378
- sink: &mut MachBuffer<Inst>,
379
- _state: &mut EmitState,
380
- ) {
381
- if add_trap {
382
- if let Some(trap_code) = dst.flags.trap_code().or(src.flags.trap_code()) {
383
- sink.add_trap(trap_code);
384
- }
385
- }
386
-
387
- put(
388
- sink,
389
- &enc_ss_a(
390
- opcode_ss,
391
- dst.base,
392
- dst.disp.bits(),
393
- src.base,
394
- src.disp.bits(),
395
- len_minus_one,
396
- ),
397
- );
398
- }
399
-
400
- pub fn mem_vrx_emit(
401
- rd: Reg,
402
- mem: &MemArg,
403
- opcode: u16,
404
- m3: u8,
405
- add_trap: bool,
406
- sink: &mut MachBuffer<Inst>,
407
- emit_info: &EmitInfo,
408
- state: &mut EmitState,
409
- ) {
410
- let (mem_insts, mem) = mem_finalize(
411
- mem,
412
- state,
413
- MemInstType {
414
- have_d12: true,
415
- have_d20: false,
416
- have_pcrel: false,
417
- have_unaligned_pcrel: false,
418
- have_index: true,
419
- },
420
- );
421
- for inst in mem_insts.into_iter() {
422
- inst.emit(sink, emit_info, state);
423
- }
424
-
425
- if add_trap {
426
- if let Some(trap_code) = mem.get_flags().trap_code() {
427
- sink.add_trap(trap_code);
428
- }
429
- }
430
-
431
- match &mem {
432
- &MemArg::BXD12 {
433
- base, index, disp, ..
434
- } => {
435
- put(sink, &enc_vrx(opcode, rd, base, index, disp.bits(), m3));
436
- }
437
- _ => unreachable!(),
438
- }
439
- }
440
-
441
- //=============================================================================
442
- // Instructions and subcomponents: emission
443
-
444
- fn machreg_to_gpr(m: Reg) -> u8 {
445
- assert_eq!(m.class(), RegClass::Int);
446
- u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
447
- }
448
-
449
- fn machreg_to_vr(m: Reg) -> u8 {
450
- assert_eq!(m.class(), RegClass::Float);
451
- u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
452
- }
453
-
454
- fn machreg_to_fpr(m: Reg) -> u8 {
455
- assert!(is_fpr(m));
456
- u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
457
- }
458
-
459
- fn machreg_to_gpr_or_fpr(m: Reg) -> u8 {
460
- let reg = u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap();
461
- assert!(reg < 16);
462
- reg
463
- }
464
-
465
- fn rxb(v1: Option<Reg>, v2: Option<Reg>, v3: Option<Reg>, v4: Option<Reg>) -> u8 {
466
- let mut rxb = 0;
467
-
468
- let is_high_vr = |reg| -> bool {
469
- if let Some(reg) = reg {
470
- if !is_fpr(reg) {
471
- return true;
472
- }
473
- }
474
- false
475
- };
476
-
477
- if is_high_vr(v1) {
478
- rxb = rxb | 8;
479
- }
480
- if is_high_vr(v2) {
481
- rxb = rxb | 4;
482
- }
483
- if is_high_vr(v3) {
484
- rxb = rxb | 2;
485
- }
486
- if is_high_vr(v4) {
487
- rxb = rxb | 1;
488
- }
489
-
490
- rxb
491
- }
492
-
493
- /// E-type instructions.
494
- ///
495
- /// 15
496
- /// opcode
497
- /// 0
498
- ///
499
- fn enc_e(opcode: u16) -> [u8; 2] {
500
- let mut enc: [u8; 2] = [0; 2];
501
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
502
- let opcode2 = (opcode & 0xff) as u8;
503
-
504
- enc[0] = opcode1;
505
- enc[1] = opcode2;
506
- enc
507
- }
508
-
509
- /// RIa-type instructions.
510
- ///
511
- /// 31 23 19 15
512
- /// opcode1 r1 opcode2 i2
513
- /// 24 20 16 0
514
- ///
515
- fn enc_ri_a(opcode: u16, r1: Reg, i2: u16) -> [u8; 4] {
516
- let mut enc: [u8; 4] = [0; 4];
517
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
518
- let opcode2 = (opcode & 0xf) as u8;
519
- let r1 = machreg_to_gpr(r1) & 0x0f;
520
-
521
- enc[0] = opcode1;
522
- enc[1] = r1 << 4 | opcode2;
523
- enc[2..].copy_from_slice(&i2.to_be_bytes());
524
- enc
525
- }
526
-
527
- /// RIb-type instructions.
528
- ///
529
- /// 31 23 19 15
530
- /// opcode1 r1 opcode2 ri2
531
- /// 24 20 16 0
532
- ///
533
- fn enc_ri_b(opcode: u16, r1: Reg, ri2: i32) -> [u8; 4] {
534
- let mut enc: [u8; 4] = [0; 4];
535
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
536
- let opcode2 = (opcode & 0xf) as u8;
537
- let r1 = machreg_to_gpr(r1) & 0x0f;
538
- let ri2 = ((ri2 >> 1) & 0xffff) as u16;
539
-
540
- enc[0] = opcode1;
541
- enc[1] = r1 << 4 | opcode2;
542
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
543
- enc
544
- }
545
-
546
- /// RIc-type instructions.
547
- ///
548
- /// 31 23 19 15
549
- /// opcode1 m1 opcode2 ri2
550
- /// 24 20 16 0
551
- ///
552
- fn enc_ri_c(opcode: u16, m1: u8, ri2: i32) -> [u8; 4] {
553
- let mut enc: [u8; 4] = [0; 4];
554
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
555
- let opcode2 = (opcode & 0xf) as u8;
556
- let m1 = m1 & 0x0f;
557
- let ri2 = ((ri2 >> 1) & 0xffff) as u16;
558
-
559
- enc[0] = opcode1;
560
- enc[1] = m1 << 4 | opcode2;
561
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
562
- enc
563
- }
564
-
565
- /// RIEa-type instructions.
566
- ///
567
- /// 47 39 35 31 15 11 7
568
- /// opcode1 r1 -- i2 m3 -- opcode2
569
- /// 40 36 32 16 12 8 0
570
- ///
571
- fn enc_rie_a(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
572
- let mut enc: [u8; 6] = [0; 6];
573
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
574
- let opcode2 = (opcode & 0xff) as u8;
575
- let r1 = machreg_to_gpr(r1) & 0x0f;
576
- let m3 = m3 & 0x0f;
577
-
578
- enc[0] = opcode1;
579
- enc[1] = r1 << 4;
580
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
581
- enc[4] = m3 << 4;
582
- enc[5] = opcode2;
583
- enc
584
- }
585
-
586
- /// RIEd-type instructions.
587
- ///
588
- /// 47 39 35 31 15 7
589
- /// opcode1 r1 r3 i2 -- opcode2
590
- /// 40 36 32 16 8 0
591
- ///
592
- fn enc_rie_d(opcode: u16, r1: Reg, r3: Reg, i2: u16) -> [u8; 6] {
593
- let mut enc: [u8; 6] = [0; 6];
594
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
595
- let opcode2 = (opcode & 0xff) as u8;
596
- let r1 = machreg_to_gpr(r1) & 0x0f;
597
- let r3 = machreg_to_gpr(r3) & 0x0f;
598
-
599
- enc[0] = opcode1;
600
- enc[1] = r1 << 4 | r3;
601
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
602
- enc[5] = opcode2;
603
- enc
604
- }
605
-
606
- /// RIEf-type instructions.
607
- ///
608
- /// 47 39 35 31 23 15 7
609
- /// opcode1 r1 r2 i3 i4 i5 opcode2
610
- /// 40 36 32 24 16 8 0
611
- ///
612
- fn enc_rie_f(opcode: u16, r1: Reg, r2: Reg, i3: u8, i4: u8, i5: u8) -> [u8; 6] {
613
- let mut enc: [u8; 6] = [0; 6];
614
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
615
- let opcode2 = (opcode & 0xff) as u8;
616
- let r1 = machreg_to_gpr(r1) & 0x0f;
617
- let r2 = machreg_to_gpr(r2) & 0x0f;
618
-
619
- enc[0] = opcode1;
620
- enc[1] = r1 << 4 | r2;
621
- enc[2] = i3;
622
- enc[3] = i4;
623
- enc[4] = i5;
624
- enc[5] = opcode2;
625
- enc
626
- }
627
-
628
- /// RIEg-type instructions.
629
- ///
630
- /// 47 39 35 31 15 7
631
- /// opcode1 r1 m3 i2 -- opcode2
632
- /// 40 36 32 16 8 0
633
- ///
634
- fn enc_rie_g(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
635
- let mut enc: [u8; 6] = [0; 6];
636
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
637
- let opcode2 = (opcode & 0xff) as u8;
638
- let r1 = machreg_to_gpr(r1) & 0x0f;
639
- let m3 = m3 & 0x0f;
640
-
641
- enc[0] = opcode1;
642
- enc[1] = r1 << 4 | m3;
643
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
644
- enc[5] = opcode2;
645
- enc
646
- }
647
-
648
- /// RILa-type instructions.
649
- ///
650
- /// 47 39 35 31
651
- /// opcode1 r1 opcode2 i2
652
- /// 40 36 32 0
653
- ///
654
- fn enc_ril_a(opcode: u16, r1: Reg, i2: u32) -> [u8; 6] {
655
- let mut enc: [u8; 6] = [0; 6];
656
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
657
- let opcode2 = (opcode & 0xf) as u8;
658
- let r1 = machreg_to_gpr(r1) & 0x0f;
659
-
660
- enc[0] = opcode1;
661
- enc[1] = r1 << 4 | opcode2;
662
- enc[2..].copy_from_slice(&i2.to_be_bytes());
663
- enc
664
- }
665
-
666
- /// RILb-type instructions.
667
- ///
668
- /// 47 39 35 31
669
- /// opcode1 r1 opcode2 ri2
670
- /// 40 36 32 0
671
- ///
672
- fn enc_ril_b(opcode: u16, r1: Reg, ri2: u32) -> [u8; 6] {
673
- let mut enc: [u8; 6] = [0; 6];
674
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
675
- let opcode2 = (opcode & 0xf) as u8;
676
- let r1 = machreg_to_gpr(r1) & 0x0f;
677
- let ri2 = ri2 >> 1;
678
-
679
- enc[0] = opcode1;
680
- enc[1] = r1 << 4 | opcode2;
681
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
682
- enc
683
- }
684
-
685
- /// RILc-type instructions.
686
- ///
687
- /// 47 39 35 31
688
- /// opcode1 m1 opcode2 i2
689
- /// 40 36 32 0
690
- ///
691
- fn enc_ril_c(opcode: u16, m1: u8, ri2: u32) -> [u8; 6] {
692
- let mut enc: [u8; 6] = [0; 6];
693
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
694
- let opcode2 = (opcode & 0xf) as u8;
695
- let m1 = m1 & 0x0f;
696
- let ri2 = ri2 >> 1;
697
-
698
- enc[0] = opcode1;
699
- enc[1] = m1 << 4 | opcode2;
700
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
701
- enc
702
- }
703
-
704
- /// RR-type instructions.
705
- ///
706
- /// 15 7 3
707
- /// opcode r1 r2
708
- /// 8 4 0
709
- ///
710
- fn enc_rr(opcode: u16, r1: Reg, r2: Reg) -> [u8; 2] {
711
- let mut enc: [u8; 2] = [0; 2];
712
- let opcode = (opcode & 0xff) as u8;
713
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
714
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
715
-
716
- enc[0] = opcode;
717
- enc[1] = r1 << 4 | r2;
718
- enc
719
- }
720
-
721
- /// RRD-type instructions.
722
- ///
723
- /// 31 15 11 7 3
724
- /// opcode r1 -- r3 r2
725
- /// 16 12 8 4 0
726
- ///
727
- fn enc_rrd(opcode: u16, r1: Reg, r2: Reg, r3: Reg) -> [u8; 4] {
728
- let mut enc: [u8; 4] = [0; 4];
729
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
730
- let opcode2 = (opcode & 0xff) as u8;
731
- let r1 = machreg_to_fpr(r1) & 0x0f;
732
- let r2 = machreg_to_fpr(r2) & 0x0f;
733
- let r3 = machreg_to_fpr(r3) & 0x0f;
734
-
735
- enc[0] = opcode1;
736
- enc[1] = opcode2;
737
- enc[2] = r1 << 4;
738
- enc[3] = r3 << 4 | r2;
739
- enc
740
- }
741
-
742
- /// RRE-type instructions.
743
- ///
744
- /// 31 15 7 3
745
- /// opcode -- r1 r2
746
- /// 16 8 4 0
747
- ///
748
- fn enc_rre(opcode: u16, r1: Reg, r2: Reg) -> [u8; 4] {
749
- let mut enc: [u8; 4] = [0; 4];
750
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
751
- let opcode2 = (opcode & 0xff) as u8;
752
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
753
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
754
-
755
- enc[0] = opcode1;
756
- enc[1] = opcode2;
757
- enc[3] = r1 << 4 | r2;
758
- enc
759
- }
760
-
761
- /// RRFa/b-type instructions.
762
- ///
763
- /// 31 15 11 7 3
764
- /// opcode r3 m4 r1 r2
765
- /// 16 12 8 4 0
766
- ///
767
- fn enc_rrf_ab(opcode: u16, r1: Reg, r2: Reg, r3: Reg, m4: u8) -> [u8; 4] {
768
- let mut enc: [u8; 4] = [0; 4];
769
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
770
- let opcode2 = (opcode & 0xff) as u8;
771
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
772
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
773
- let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
774
- let m4 = m4 & 0x0f;
775
-
776
- enc[0] = opcode1;
777
- enc[1] = opcode2;
778
- enc[2] = r3 << 4 | m4;
779
- enc[3] = r1 << 4 | r2;
780
- enc
781
- }
782
-
783
- /// RRFc/d/e-type instructions.
784
- ///
785
- /// 31 15 11 7 3
786
- /// opcode m3 m4 r1 r2
787
- /// 16 12 8 4 0
788
- ///
789
- fn enc_rrf_cde(opcode: u16, r1: Reg, r2: Reg, m3: u8, m4: u8) -> [u8; 4] {
790
- let mut enc: [u8; 4] = [0; 4];
791
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
792
- let opcode2 = (opcode & 0xff) as u8;
793
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
794
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
795
- let m3 = m3 & 0x0f;
796
- let m4 = m4 & 0x0f;
797
-
798
- enc[0] = opcode1;
799
- enc[1] = opcode2;
800
- enc[2] = m3 << 4 | m4;
801
- enc[3] = r1 << 4 | r2;
802
- enc
803
- }
804
-
805
- /// RS-type instructions.
806
- ///
807
- /// 31 23 19 15 11
808
- /// opcode r1 r3 b2 d2
809
- /// 24 20 16 12 0
810
- ///
811
- fn enc_rs(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 4] {
812
- let opcode = (opcode & 0xff) as u8;
813
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
814
- let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
815
- let b2 = machreg_to_gpr(b2) & 0x0f;
816
- let d2_lo = (d2 & 0xff) as u8;
817
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
818
-
819
- let mut enc: [u8; 4] = [0; 4];
820
- enc[0] = opcode;
821
- enc[1] = r1 << 4 | r3;
822
- enc[2] = b2 << 4 | d2_hi;
823
- enc[3] = d2_lo;
824
- enc
825
- }
826
-
827
- /// RSY-type instructions.
828
- ///
829
- /// 47 39 35 31 27 15 7
830
- /// opcode1 r1 r3 b2 dl2 dh2 opcode2
831
- /// 40 36 32 28 16 8 0
832
- ///
833
- fn enc_rsy(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 6] {
834
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
835
- let opcode2 = (opcode & 0xff) as u8;
836
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
837
- let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
838
- let b2 = machreg_to_gpr(b2) & 0x0f;
839
- let dl2_lo = (d2 & 0xff) as u8;
840
- let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
841
- let dh2 = ((d2 >> 12) & 0xff) as u8;
842
-
843
- let mut enc: [u8; 6] = [0; 6];
844
- enc[0] = opcode1;
845
- enc[1] = r1 << 4 | r3;
846
- enc[2] = b2 << 4 | dl2_hi;
847
- enc[3] = dl2_lo;
848
- enc[4] = dh2;
849
- enc[5] = opcode2;
850
- enc
851
- }
852
-
853
- /// RX-type instructions.
854
- ///
855
- /// 31 23 19 15 11
856
- /// opcode r1 x2 b2 d2
857
- /// 24 20 16 12 0
858
- ///
859
- fn enc_rx(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 4] {
860
- let opcode = (opcode & 0xff) as u8;
861
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
862
- let b2 = machreg_to_gpr(b2) & 0x0f;
863
- let x2 = machreg_to_gpr(x2) & 0x0f;
864
- let d2_lo = (d2 & 0xff) as u8;
865
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
866
-
867
- let mut enc: [u8; 4] = [0; 4];
868
- enc[0] = opcode;
869
- enc[1] = r1 << 4 | x2;
870
- enc[2] = b2 << 4 | d2_hi;
871
- enc[3] = d2_lo;
872
- enc
873
- }
874
-
875
- /// RXY-type instructions.
876
- ///
877
- /// 47 39 35 31 27 15 7
878
- /// opcode1 r1 x2 b2 dl2 dh2 opcode2
879
- /// 40 36 32 28 16 8 0
880
- ///
881
- fn enc_rxy(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 6] {
882
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
883
- let opcode2 = (opcode & 0xff) as u8;
884
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
885
- let b2 = machreg_to_gpr(b2) & 0x0f;
886
- let x2 = machreg_to_gpr(x2) & 0x0f;
887
- let dl2_lo = (d2 & 0xff) as u8;
888
- let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
889
- let dh2 = ((d2 >> 12) & 0xff) as u8;
890
-
891
- let mut enc: [u8; 6] = [0; 6];
892
- enc[0] = opcode1;
893
- enc[1] = r1 << 4 | x2;
894
- enc[2] = b2 << 4 | dl2_hi;
895
- enc[3] = dl2_lo;
896
- enc[4] = dh2;
897
- enc[5] = opcode2;
898
- enc
899
- }
900
-
901
- /// SI-type instructions.
902
- ///
903
- /// 31 23 15 11
904
- /// opcode i2 b1 d1
905
- /// 24 16 12 0
906
- ///
907
- fn enc_si(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 4] {
908
- let opcode = (opcode & 0xff) as u8;
909
- let b1 = machreg_to_gpr(b1) & 0x0f;
910
- let d1_lo = (d1 & 0xff) as u8;
911
- let d1_hi = ((d1 >> 8) & 0x0f) as u8;
912
-
913
- let mut enc: [u8; 4] = [0; 4];
914
- enc[0] = opcode;
915
- enc[1] = i2;
916
- enc[2] = b1 << 4 | d1_hi;
917
- enc[3] = d1_lo;
918
- enc
919
- }
920
-
921
- /// SIL-type instructions.
922
- ///
923
- /// 47 31 27 15
924
- /// opcode b1 d1 i2
925
- /// 32 28 16 0
926
- ///
927
- fn enc_sil(opcode: u16, b1: Reg, d1: u32, i2: i16) -> [u8; 6] {
928
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
929
- let opcode2 = (opcode & 0xff) as u8;
930
- let b1 = machreg_to_gpr(b1) & 0x0f;
931
- let d1_lo = (d1 & 0xff) as u8;
932
- let d1_hi = ((d1 >> 8) & 0x0f) as u8;
933
-
934
- let mut enc: [u8; 6] = [0; 6];
935
- enc[0] = opcode1;
936
- enc[1] = opcode2;
937
- enc[2] = b1 << 4 | d1_hi;
938
- enc[3] = d1_lo;
939
- enc[4..].copy_from_slice(&i2.to_be_bytes());
940
- enc
941
- }
942
-
943
- /// SIY-type instructions.
944
- ///
945
- /// 47 39 31 27 15 7
946
- /// opcode1 i2 b1 dl1 dh1 opcode2
947
- /// 40 32 28 16 8 0
948
- ///
949
- fn enc_siy(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 6] {
950
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
951
- let opcode2 = (opcode & 0xff) as u8;
952
- let b1 = machreg_to_gpr(b1) & 0x0f;
953
- let dl1_lo = (d1 & 0xff) as u8;
954
- let dl1_hi = ((d1 >> 8) & 0x0f) as u8;
955
- let dh1 = ((d1 >> 12) & 0xff) as u8;
956
-
957
- let mut enc: [u8; 6] = [0; 6];
958
- enc[0] = opcode1;
959
- enc[1] = i2;
960
- enc[2] = b1 << 4 | dl1_hi;
961
- enc[3] = dl1_lo;
962
- enc[4] = dh1;
963
- enc[5] = opcode2;
964
- enc
965
- }
966
-
967
- /// SSa-type instructions.
968
- ///
969
- /// 47 39 31 27 15 11
970
- /// opcode l b1 d1 b2 d2
971
- /// 40 32 28 16 12 0
972
- ///
973
- ///
974
- fn enc_ss_a(opcode: u8, b1: Reg, d1: u32, b2: Reg, d2: u32, l: u8) -> [u8; 6] {
975
- let b1 = machreg_to_gpr(b1) & 0x0f;
976
- let d1_lo = (d1 & 0xff) as u8;
977
- let d1_hi = ((d1 >> 8) & 0x0f) as u8;
978
- let b2 = machreg_to_gpr(b2) & 0x0f;
979
- let d2_lo = (d2 & 0xff) as u8;
980
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
981
-
982
- let mut enc: [u8; 6] = [0; 6];
983
- enc[0] = opcode;
984
- enc[1] = l;
985
- enc[2] = b1 << 4 | d1_hi;
986
- enc[3] = d1_lo;
987
- enc[4] = b2 << 4 | d2_hi;
988
- enc[5] = d2_lo;
989
- enc
990
- }
991
-
992
- /// VRIa-type instructions.
993
- ///
994
- /// 47 39 35 31 15 11 7
995
- /// opcode1 v1 - i2 m3 rxb opcode2
996
- /// 40 36 32 16 12 8 0
997
- ///
998
- fn enc_vri_a(opcode: u16, v1: Reg, i2: u16, m3: u8) -> [u8; 6] {
999
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1000
- let opcode2 = (opcode & 0xff) as u8;
1001
- let rxb = rxb(Some(v1), None, None, None);
1002
- let v1 = machreg_to_vr(v1) & 0x0f;
1003
- let m3 = m3 & 0x0f;
1004
-
1005
- let mut enc: [u8; 6] = [0; 6];
1006
- enc[0] = opcode1;
1007
- enc[1] = v1 << 4;
1008
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
1009
- enc[4] = m3 << 4 | rxb;
1010
- enc[5] = opcode2;
1011
- enc
1012
- }
1013
-
1014
- /// VRIb-type instructions.
1015
- ///
1016
- /// 47 39 35 31 23 15 11 7
1017
- /// opcode1 v1 - i2 i3 m4 rxb opcode2
1018
- /// 40 36 32 24 16 12 8 0
1019
- ///
1020
- fn enc_vri_b(opcode: u16, v1: Reg, i2: u8, i3: u8, m4: u8) -> [u8; 6] {
1021
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1022
- let opcode2 = (opcode & 0xff) as u8;
1023
- let rxb = rxb(Some(v1), None, None, None);
1024
- let v1 = machreg_to_vr(v1) & 0x0f;
1025
- let m4 = m4 & 0x0f;
1026
-
1027
- let mut enc: [u8; 6] = [0; 6];
1028
- enc[0] = opcode1;
1029
- enc[1] = v1 << 4;
1030
- enc[2] = i2;
1031
- enc[3] = i3;
1032
- enc[4] = m4 << 4 | rxb;
1033
- enc[5] = opcode2;
1034
- enc
1035
- }
1036
-
1037
- /// VRIc-type instructions.
1038
- ///
1039
- /// 47 39 35 31 15 11 7
1040
- /// opcode1 v1 v3 i2 m4 rxb opcode2
1041
- /// 40 36 32 16 12 8 0
1042
- ///
1043
- fn enc_vri_c(opcode: u16, v1: Reg, i2: u16, v3: Reg, m4: u8) -> [u8; 6] {
1044
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1045
- let opcode2 = (opcode & 0xff) as u8;
1046
- let rxb = rxb(Some(v1), Some(v3), None, None);
1047
- let v1 = machreg_to_vr(v1) & 0x0f;
1048
- let v3 = machreg_to_vr(v3) & 0x0f;
1049
- let m4 = m4 & 0x0f;
1050
-
1051
- let mut enc: [u8; 6] = [0; 6];
1052
- enc[0] = opcode1;
1053
- enc[1] = v1 << 4 | v3;
1054
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
1055
- enc[4] = m4 << 4 | rxb;
1056
- enc[5] = opcode2;
1057
- enc
1058
- }
1059
-
1060
- /// VRRa-type instructions.
1061
- ///
1062
- /// 47 39 35 31 23 19 15 11 7
1063
- /// opcode1 v1 v2 - m5 m3 m2 rxb opcode2
1064
- /// 40 36 32 24 20 16 12 8 0
1065
- ///
1066
- fn enc_vrr_a(opcode: u16, v1: Reg, v2: Reg, m3: u8, m4: u8, m5: u8) -> [u8; 6] {
1067
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1068
- let opcode2 = (opcode & 0xff) as u8;
1069
- let rxb = rxb(Some(v1), Some(v2), None, None);
1070
- let v1 = machreg_to_vr(v1) & 0x0f;
1071
- let v2 = machreg_to_vr(v2) & 0x0f;
1072
- let m3 = m3 & 0x0f;
1073
- let m4 = m4 & 0x0f;
1074
- let m5 = m5 & 0x0f;
1075
-
1076
- let mut enc: [u8; 6] = [0; 6];
1077
- enc[0] = opcode1;
1078
- enc[1] = v1 << 4 | v2;
1079
- enc[2] = 0;
1080
- enc[3] = m5 << 4 | m4;
1081
- enc[4] = m3 << 4 | rxb;
1082
- enc[5] = opcode2;
1083
- enc
1084
- }
1085
-
1086
- /// VRRb-type instructions.
1087
- ///
1088
- /// 47 39 35 31 27 23 19 15 11 7
1089
- /// opcode1 v1 v2 v3 - m5 - m4 rxb opcode2
1090
- /// 40 36 32 28 24 20 16 12 8 0
1091
- ///
1092
- fn enc_vrr_b(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8) -> [u8; 6] {
1093
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1094
- let opcode2 = (opcode & 0xff) as u8;
1095
- let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
1096
- let v1 = machreg_to_vr(v1) & 0x0f;
1097
- let v2 = machreg_to_vr(v2) & 0x0f;
1098
- let v3 = machreg_to_vr(v3) & 0x0f;
1099
- let m4 = m4 & 0x0f;
1100
- let m5 = m5 & 0x0f;
1101
-
1102
- let mut enc: [u8; 6] = [0; 6];
1103
- enc[0] = opcode1;
1104
- enc[1] = v1 << 4 | v2;
1105
- enc[2] = v3 << 4;
1106
- enc[3] = m5 << 4;
1107
- enc[4] = m4 << 4 | rxb;
1108
- enc[5] = opcode2;
1109
- enc
1110
- }
1111
-
1112
- /// VRRc-type instructions.
1113
- ///
1114
- /// 47 39 35 31 27 23 19 15 11 7
1115
- /// opcode1 v1 v2 v3 - m6 m5 m4 rxb opcode2
1116
- /// 40 36 32 28 24 20 16 12 8 0
1117
- ///
1118
- fn enc_vrr_c(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8, m6: u8) -> [u8; 6] {
1119
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1120
- let opcode2 = (opcode & 0xff) as u8;
1121
- let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
1122
- let v1 = machreg_to_vr(v1) & 0x0f;
1123
- let v2 = machreg_to_vr(v2) & 0x0f;
1124
- let v3 = machreg_to_vr(v3) & 0x0f;
1125
- let m4 = m4 & 0x0f;
1126
- let m5 = m5 & 0x0f;
1127
- let m6 = m6 & 0x0f;
1128
-
1129
- let mut enc: [u8; 6] = [0; 6];
1130
- enc[0] = opcode1;
1131
- enc[1] = v1 << 4 | v2;
1132
- enc[2] = v3 << 4;
1133
- enc[3] = m6 << 4 | m5;
1134
- enc[4] = m4 << 4 | rxb;
1135
- enc[5] = opcode2;
1136
- enc
1137
- }
1138
-
1139
- /// VRRe-type instructions.
1140
- ///
1141
- /// 47 39 35 31 27 23 19 15 11 7
1142
- /// opcode1 v1 v2 v3 m6 - m5 v4 rxb opcode2
1143
- /// 40 36 32 28 24 20 16 12 8 0
1144
- ///
1145
- fn enc_vrr_e(opcode: u16, v1: Reg, v2: Reg, v3: Reg, v4: Reg, m5: u8, m6: u8) -> [u8; 6] {
1146
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1147
- let opcode2 = (opcode & 0xff) as u8;
1148
- let rxb = rxb(Some(v1), Some(v2), Some(v3), Some(v4));
1149
- let v1 = machreg_to_vr(v1) & 0x0f;
1150
- let v2 = machreg_to_vr(v2) & 0x0f;
1151
- let v3 = machreg_to_vr(v3) & 0x0f;
1152
- let v4 = machreg_to_vr(v4) & 0x0f;
1153
- let m5 = m5 & 0x0f;
1154
- let m6 = m6 & 0x0f;
1155
-
1156
- let mut enc: [u8; 6] = [0; 6];
1157
- enc[0] = opcode1;
1158
- enc[1] = v1 << 4 | v2;
1159
- enc[2] = v3 << 4 | m6;
1160
- enc[3] = m5;
1161
- enc[4] = v4 << 4 | rxb;
1162
- enc[5] = opcode2;
1163
- enc
1164
- }
1165
-
1166
- /// VRRf-type instructions.
1167
- ///
1168
- /// 47 39 35 31 27 11 7
1169
- /// opcode1 v1 r2 r3 - rxb opcode2
1170
- /// 40 36 32 28 12 8 0
1171
- ///
1172
- fn enc_vrr_f(opcode: u16, v1: Reg, r2: Reg, r3: Reg) -> [u8; 6] {
1173
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1174
- let opcode2 = (opcode & 0xff) as u8;
1175
- let rxb = rxb(Some(v1), None, None, None);
1176
- let v1 = machreg_to_vr(v1) & 0x0f;
1177
- let r2 = machreg_to_gpr(r2) & 0x0f;
1178
- let r3 = machreg_to_gpr(r3) & 0x0f;
1179
-
1180
- let mut enc: [u8; 6] = [0; 6];
1181
- enc[0] = opcode1;
1182
- enc[1] = v1 << 4 | r2;
1183
- enc[2] = r3 << 4;
1184
- enc[4] = rxb;
1185
- enc[5] = opcode2;
1186
- enc
1187
- }
1188
-
1189
- /// VRSa-type instructions.
1190
- ///
1191
- /// 47 39 35 31 27 15 11 7
1192
- /// opcode1 v1 v3 b2 d2 m4 rxb opcode2
1193
- /// 40 36 32 28 16 12 8 0
1194
- ///
1195
- fn enc_vrs_a(opcode: u16, v1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
1196
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1197
- let opcode2 = (opcode & 0xff) as u8;
1198
- let rxb = rxb(Some(v1), Some(v3), None, None);
1199
- let v1 = machreg_to_vr(v1) & 0x0f;
1200
- let b2 = machreg_to_gpr(b2) & 0x0f;
1201
- let v3 = machreg_to_vr(v3) & 0x0f;
1202
- let d2_lo = (d2 & 0xff) as u8;
1203
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1204
- let m4 = m4 & 0x0f;
1205
-
1206
- let mut enc: [u8; 6] = [0; 6];
1207
- enc[0] = opcode1;
1208
- enc[1] = v1 << 4 | v3;
1209
- enc[2] = b2 << 4 | d2_hi;
1210
- enc[3] = d2_lo;
1211
- enc[4] = m4 << 4 | rxb;
1212
- enc[5] = opcode2;
1213
- enc
1214
- }
1215
-
1216
- /// VRSb-type instructions.
1217
- ///
1218
- /// 47 39 35 31 27 15 11 7
1219
- /// opcode1 v1 r3 b2 d2 m4 rxb opcode2
1220
- /// 40 36 32 28 16 12 8 0
1221
- ///
1222
- fn enc_vrs_b(opcode: u16, v1: Reg, b2: Reg, d2: u32, r3: Reg, m4: u8) -> [u8; 6] {
1223
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1224
- let opcode2 = (opcode & 0xff) as u8;
1225
- let rxb = rxb(Some(v1), None, None, None);
1226
- let v1 = machreg_to_vr(v1) & 0x0f;
1227
- let b2 = machreg_to_gpr(b2) & 0x0f;
1228
- let r3 = machreg_to_gpr(r3) & 0x0f;
1229
- let d2_lo = (d2 & 0xff) as u8;
1230
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1231
- let m4 = m4 & 0x0f;
1232
-
1233
- let mut enc: [u8; 6] = [0; 6];
1234
- enc[0] = opcode1;
1235
- enc[1] = v1 << 4 | r3;
1236
- enc[2] = b2 << 4 | d2_hi;
1237
- enc[3] = d2_lo;
1238
- enc[4] = m4 << 4 | rxb;
1239
- enc[5] = opcode2;
1240
- enc
1241
- }
1242
-
1243
- /// VRSc-type instructions.
1244
- ///
1245
- /// 47 39 35 31 27 15 11 7
1246
- /// opcode1 r1 v3 b2 d2 m4 rxb opcode2
1247
- /// 40 36 32 28 16 12 8 0
1248
- ///
1249
- fn enc_vrs_c(opcode: u16, r1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
1250
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1251
- let opcode2 = (opcode & 0xff) as u8;
1252
- let rxb = rxb(None, Some(v3), None, None);
1253
- let r1 = machreg_to_gpr(r1) & 0x0f;
1254
- let b2 = machreg_to_gpr(b2) & 0x0f;
1255
- let v3 = machreg_to_vr(v3) & 0x0f;
1256
- let d2_lo = (d2 & 0xff) as u8;
1257
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1258
- let m4 = m4 & 0x0f;
1259
-
1260
- let mut enc: [u8; 6] = [0; 6];
1261
- enc[0] = opcode1;
1262
- enc[1] = r1 << 4 | v3;
1263
- enc[2] = b2 << 4 | d2_hi;
1264
- enc[3] = d2_lo;
1265
- enc[4] = m4 << 4 | rxb;
1266
- enc[5] = opcode2;
1267
- enc
1268
- }
1269
-
1270
- /// VRX-type instructions.
1271
- ///
1272
- /// 47 39 35 31 27 15 11 7
1273
- /// opcode1 v1 x2 b2 d2 m3 rxb opcode2
1274
- /// 40 36 32 28 16 12 8 0
1275
- ///
1276
- fn enc_vrx(opcode: u16, v1: Reg, b2: Reg, x2: Reg, d2: u32, m3: u8) -> [u8; 6] {
1277
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1278
- let opcode2 = (opcode & 0xff) as u8;
1279
- let rxb = rxb(Some(v1), None, None, None);
1280
- let v1 = machreg_to_vr(v1) & 0x0f;
1281
- let b2 = machreg_to_gpr(b2) & 0x0f;
1282
- let x2 = machreg_to_gpr(x2) & 0x0f;
1283
- let d2_lo = (d2 & 0xff) as u8;
1284
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1285
- let m3 = m3 & 0x0f;
1286
-
1287
- let mut enc: [u8; 6] = [0; 6];
1288
- enc[0] = opcode1;
1289
- enc[1] = v1 << 4 | x2;
1290
- enc[2] = b2 << 4 | d2_hi;
1291
- enc[3] = d2_lo;
1292
- enc[4] = m3 << 4 | rxb;
1293
- enc[5] = opcode2;
1294
- enc
1295
- }
1296
-
1297
- /// Emit encoding to sink.
1298
- fn put(sink: &mut MachBuffer<Inst>, enc: &[u8]) {
1299
- for byte in enc {
1300
- sink.put1(*byte);
1301
- }
1302
- }
1303
-
1304
- /// Emit encoding to sink, adding a trap on the last byte.
1305
- fn put_with_trap(sink: &mut MachBuffer<Inst>, enc: &[u8], trap_code: TrapCode) {
1306
- let len = enc.len();
1307
- for i in 0..len - 1 {
1308
- sink.put1(enc[i]);
1309
- }
1310
- sink.add_trap(trap_code);
1311
- sink.put1(enc[len - 1]);
1312
- }
1313
-
1314
- /// State carried between emissions of a sequence of instructions.
1315
- #[derive(Default, Clone, Debug)]
1316
- pub struct EmitState {
1317
- /// Offset from the actual SP to the "nominal SP". The latter is defined
1318
- /// as the value the stack pointer has after the prolog. This offset is
1319
- /// normally always zero, except during a call sequence using the tail-call
1320
- /// ABI, between the AllocateArgs and the actual call instruction.
1321
- pub(crate) nominal_sp_offset: u32,
1322
-
1323
- /// Safepoint stack map for upcoming instruction, as provided to
1324
- /// `pre_safepoint()`.
1325
- stack_map: Option<StackMap>,
1326
-
1327
- /// The user stack map for the upcoming instruction, as provided to
1328
- /// `pre_safepoint()`.
1329
- user_stack_map: Option<ir::UserStackMap>,
1330
-
1331
- /// Only used during fuzz-testing. Otherwise, it is a zero-sized struct and
1332
- /// optimized away at compiletime. See [cranelift_control].
1333
- ctrl_plane: ControlPlane,
1334
-
1335
- frame_layout: FrameLayout,
1336
- }
1337
-
1338
- impl MachInstEmitState<Inst> for EmitState {
1339
- fn new(abi: &Callee<S390xMachineDeps>, ctrl_plane: ControlPlane) -> Self {
1340
- EmitState {
1341
- nominal_sp_offset: 0,
1342
- stack_map: None,
1343
- user_stack_map: None,
1344
- ctrl_plane,
1345
- frame_layout: abi.frame_layout().clone(),
1346
- }
1347
- }
1348
-
1349
- fn pre_safepoint(
1350
- &mut self,
1351
- stack_map: Option<StackMap>,
1352
- user_stack_map: Option<ir::UserStackMap>,
1353
- ) {
1354
- self.stack_map = stack_map;
1355
- self.user_stack_map = user_stack_map;
1356
- }
1357
-
1358
- fn ctrl_plane_mut(&mut self) -> &mut ControlPlane {
1359
- &mut self.ctrl_plane
1360
- }
1361
-
1362
- fn take_ctrl_plane(self) -> ControlPlane {
1363
- self.ctrl_plane
1364
- }
1365
-
1366
- fn frame_layout(&self) -> &FrameLayout {
1367
- &self.frame_layout
1368
- }
1369
- }
1370
-
1371
- impl EmitState {
1372
- fn take_stack_map(&mut self) -> (Option<StackMap>, Option<ir::UserStackMap>) {
1373
- (self.stack_map.take(), self.user_stack_map.take())
1374
- }
1375
-
1376
- fn clear_post_insn(&mut self) {
1377
- self.stack_map = None;
1378
- }
1379
- }
1380
-
1381
- /// Constant state used during function compilation.
1382
- pub struct EmitInfo {
1383
- isa_flags: s390x_settings::Flags,
1384
- }
1385
-
1386
- impl EmitInfo {
1387
- pub(crate) fn new(isa_flags: s390x_settings::Flags) -> Self {
1388
- Self { isa_flags }
1389
- }
1390
- }
1391
-
1392
- impl MachInstEmit for Inst {
1393
- type State = EmitState;
1394
- type Info = EmitInfo;
1395
-
1396
- fn emit(&self, sink: &mut MachBuffer<Inst>, emit_info: &Self::Info, state: &mut EmitState) {
1397
- self.emit_with_alloc_consumer(sink, emit_info, state)
1398
- }
1399
-
1400
- fn pretty_print_inst(&self, state: &mut EmitState) -> String {
1401
- self.print_with_state(state)
1402
- }
1403
- }
1404
-
1405
- impl Inst {
1406
- fn emit_with_alloc_consumer(
1407
- &self,
1408
- sink: &mut MachBuffer<Inst>,
1409
- emit_info: &EmitInfo,
1410
- state: &mut EmitState,
1411
- ) {
1412
- // Verify that we can emit this Inst in the current ISA
1413
- let matches_isa_flags = |iset_requirement: &InstructionSet| -> bool {
1414
- match iset_requirement {
1415
- // Baseline ISA is z14
1416
- InstructionSet::Base => true,
1417
- // Miscellaneous-Instruction-Extensions Facility 2 (z15)
1418
- InstructionSet::MIE2 => emit_info.isa_flags.has_mie2(),
1419
- // Vector-Enhancements Facility 2 (z15)
1420
- InstructionSet::VXRS_EXT2 => emit_info.isa_flags.has_vxrs_ext2(),
1421
- }
1422
- };
1423
- let isa_requirements = self.available_in_isa();
1424
- if !matches_isa_flags(&isa_requirements) {
1425
- panic!(
1426
- "Cannot emit inst '{:?}' for target; failed to match ISA requirements: {:?}",
1427
- self, isa_requirements
1428
- )
1429
- }
1430
-
1431
- // N.B.: we *must* not exceed the "worst-case size" used to compute
1432
- // where to insert islands, except when islands are explicitly triggered
1433
- // (with an `EmitIsland`). We check this in debug builds. This is `mut`
1434
- // to allow disabling the check for `JTSequence`, which is always
1435
- // emitted following an `EmitIsland`.
1436
- let mut start_off = sink.cur_offset();
1437
-
1438
- match self {
1439
- &Inst::AluRRR { alu_op, rd, rn, rm } => {
1440
- let (opcode, have_rr) = match alu_op {
1441
- ALUOp::Add32 => (0xb9f8, true), // ARK
1442
- ALUOp::Add64 => (0xb9e8, true), // AGRK
1443
- ALUOp::AddLogical32 => (0xb9fa, true), // ALRK
1444
- ALUOp::AddLogical64 => (0xb9ea, true), // ALGRK
1445
- ALUOp::Sub32 => (0xb9f9, true), // SRK
1446
- ALUOp::Sub64 => (0xb9e9, true), // SGRK
1447
- ALUOp::SubLogical32 => (0xb9fb, true), // SLRK
1448
- ALUOp::SubLogical64 => (0xb9eb, true), // SLGRK
1449
- ALUOp::Mul32 => (0xb9fd, true), // MSRKC
1450
- ALUOp::Mul64 => (0xb9ed, true), // MSGRKC
1451
- ALUOp::And32 => (0xb9f4, true), // NRK
1452
- ALUOp::And64 => (0xb9e4, true), // NGRK
1453
- ALUOp::Orr32 => (0xb9f6, true), // ORK
1454
- ALUOp::Orr64 => (0xb9e6, true), // OGRK
1455
- ALUOp::Xor32 => (0xb9f7, true), // XRK
1456
- ALUOp::Xor64 => (0xb9e7, true), // XGRK
1457
- ALUOp::NotAnd32 => (0xb974, false), // NNRK
1458
- ALUOp::NotAnd64 => (0xb964, false), // NNGRK
1459
- ALUOp::NotOrr32 => (0xb976, false), // NORK
1460
- ALUOp::NotOrr64 => (0xb966, false), // NOGRK
1461
- ALUOp::NotXor32 => (0xb977, false), // NXRK
1462
- ALUOp::NotXor64 => (0xb967, false), // NXGRK
1463
- ALUOp::AndNot32 => (0xb9f5, false), // NCRK
1464
- ALUOp::AndNot64 => (0xb9e5, false), // NCGRK
1465
- ALUOp::OrrNot32 => (0xb975, false), // OCRK
1466
- ALUOp::OrrNot64 => (0xb965, false), // OCGRK
1467
- _ => unreachable!(),
1468
- };
1469
- if have_rr && rd.to_reg() == rn {
1470
- let inst = Inst::AluRR {
1471
- alu_op,
1472
- rd,
1473
- ri: rn,
1474
- rm,
1475
- };
1476
- inst.emit(sink, emit_info, state);
1477
- } else {
1478
- put(sink, &enc_rrf_ab(opcode, rd.to_reg(), rn, rm, 0));
1479
- }
1480
- }
1481
- &Inst::AluRRSImm16 {
1482
- alu_op,
1483
- rd,
1484
- rn,
1485
- imm,
1486
- } => {
1487
- if rd.to_reg() == rn {
1488
- let inst = Inst::AluRSImm16 {
1489
- alu_op,
1490
- rd,
1491
- ri: rn,
1492
- imm,
1493
- };
1494
- inst.emit(sink, emit_info, state);
1495
- } else {
1496
- let opcode = match alu_op {
1497
- ALUOp::Add32 => 0xecd8, // AHIK
1498
- ALUOp::Add64 => 0xecd9, // AGHIK
1499
- _ => unreachable!(),
1500
- };
1501
- put(sink, &enc_rie_d(opcode, rd.to_reg(), rn, imm as u16));
1502
- }
1503
- }
1504
- &Inst::AluRR { alu_op, rd, ri, rm } => {
1505
- debug_assert_eq!(rd.to_reg(), ri);
1506
-
1507
- let (opcode, is_rre) = match alu_op {
1508
- ALUOp::Add32 => (0x1a, false), // AR
1509
- ALUOp::Add64 => (0xb908, true), // AGR
1510
- ALUOp::Add64Ext32 => (0xb918, true), // AGFR
1511
- ALUOp::AddLogical32 => (0x1e, false), // ALR
1512
- ALUOp::AddLogical64 => (0xb90a, true), // ALGR
1513
- ALUOp::AddLogical64Ext32 => (0xb91a, true), // ALGFR
1514
- ALUOp::Sub32 => (0x1b, false), // SR
1515
- ALUOp::Sub64 => (0xb909, true), // SGR
1516
- ALUOp::Sub64Ext32 => (0xb919, true), // SGFR
1517
- ALUOp::SubLogical32 => (0x1f, false), // SLR
1518
- ALUOp::SubLogical64 => (0xb90b, true), // SLGR
1519
- ALUOp::SubLogical64Ext32 => (0xb91b, true), // SLGFR
1520
- ALUOp::Mul32 => (0xb252, true), // MSR
1521
- ALUOp::Mul64 => (0xb90c, true), // MSGR
1522
- ALUOp::Mul64Ext32 => (0xb91c, true), // MSGFR
1523
- ALUOp::And32 => (0x14, false), // NR
1524
- ALUOp::And64 => (0xb980, true), // NGR
1525
- ALUOp::Orr32 => (0x16, false), // OR
1526
- ALUOp::Orr64 => (0xb981, true), // OGR
1527
- ALUOp::Xor32 => (0x17, false), // XR
1528
- ALUOp::Xor64 => (0xb982, true), // XGR
1529
- _ => unreachable!(),
1530
- };
1531
- if is_rre {
1532
- put(sink, &enc_rre(opcode, rd.to_reg(), rm));
1533
- } else {
1534
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
1535
- }
1536
- }
1537
- &Inst::AluRX {
1538
- alu_op,
1539
- rd,
1540
- ri,
1541
- ref mem,
1542
- } => {
1543
- debug_assert_eq!(rd.to_reg(), ri);
1544
- let mem = mem.clone();
1545
-
1546
- let (opcode_rx, opcode_rxy) = match alu_op {
1547
- ALUOp::Add32 => (Some(0x5a), Some(0xe35a)), // A(Y)
1548
- ALUOp::Add32Ext16 => (Some(0x4a), Some(0xe37a)), // AH(Y)
1549
- ALUOp::Add64 => (None, Some(0xe308)), // AG
1550
- ALUOp::Add64Ext16 => (None, Some(0xe338)), // AGH
1551
- ALUOp::Add64Ext32 => (None, Some(0xe318)), // AGF
1552
- ALUOp::AddLogical32 => (Some(0x5e), Some(0xe35e)), // AL(Y)
1553
- ALUOp::AddLogical64 => (None, Some(0xe30a)), // ALG
1554
- ALUOp::AddLogical64Ext32 => (None, Some(0xe31a)), // ALGF
1555
- ALUOp::Sub32 => (Some(0x5b), Some(0xe35b)), // S(Y)
1556
- ALUOp::Sub32Ext16 => (Some(0x4b), Some(0xe37b)), // SH(Y)
1557
- ALUOp::Sub64 => (None, Some(0xe309)), // SG
1558
- ALUOp::Sub64Ext16 => (None, Some(0xe339)), // SGH
1559
- ALUOp::Sub64Ext32 => (None, Some(0xe319)), // SGF
1560
- ALUOp::SubLogical32 => (Some(0x5f), Some(0xe35f)), // SL(Y)
1561
- ALUOp::SubLogical64 => (None, Some(0xe30b)), // SLG
1562
- ALUOp::SubLogical64Ext32 => (None, Some(0xe31b)), // SLGF
1563
- ALUOp::Mul32 => (Some(0x71), Some(0xe351)), // MS(Y)
1564
- ALUOp::Mul32Ext16 => (Some(0x4c), Some(0xe37c)), // MH(Y)
1565
- ALUOp::Mul64 => (None, Some(0xe30c)), // MSG
1566
- ALUOp::Mul64Ext16 => (None, Some(0xe33c)), // MSH
1567
- ALUOp::Mul64Ext32 => (None, Some(0xe31c)), // MSGF
1568
- ALUOp::And32 => (Some(0x54), Some(0xe354)), // N(Y)
1569
- ALUOp::And64 => (None, Some(0xe380)), // NG
1570
- ALUOp::Orr32 => (Some(0x56), Some(0xe356)), // O(Y)
1571
- ALUOp::Orr64 => (None, Some(0xe381)), // OG
1572
- ALUOp::Xor32 => (Some(0x57), Some(0xe357)), // X(Y)
1573
- ALUOp::Xor64 => (None, Some(0xe382)), // XG
1574
- _ => unreachable!(),
1575
- };
1576
- let rd = rd.to_reg();
1577
- mem_emit(
1578
- rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
1579
- );
1580
- }
1581
- &Inst::AluRSImm16 {
1582
- alu_op,
1583
- rd,
1584
- ri,
1585
- imm,
1586
- } => {
1587
- debug_assert_eq!(rd.to_reg(), ri);
1588
-
1589
- let opcode = match alu_op {
1590
- ALUOp::Add32 => 0xa7a, // AHI
1591
- ALUOp::Add64 => 0xa7b, // AGHI
1592
- ALUOp::Mul32 => 0xa7c, // MHI
1593
- ALUOp::Mul64 => 0xa7d, // MGHI
1594
- _ => unreachable!(),
1595
- };
1596
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
1597
- }
1598
- &Inst::AluRSImm32 {
1599
- alu_op,
1600
- rd,
1601
- ri,
1602
- imm,
1603
- } => {
1604
- debug_assert_eq!(rd.to_reg(), ri);
1605
-
1606
- let opcode = match alu_op {
1607
- ALUOp::Add32 => 0xc29, // AFI
1608
- ALUOp::Add64 => 0xc28, // AGFI
1609
- ALUOp::Mul32 => 0xc21, // MSFI
1610
- ALUOp::Mul64 => 0xc20, // MSGFI
1611
- _ => unreachable!(),
1612
- };
1613
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
1614
- }
1615
- &Inst::AluRUImm32 {
1616
- alu_op,
1617
- rd,
1618
- ri,
1619
- imm,
1620
- } => {
1621
- debug_assert_eq!(rd.to_reg(), ri);
1622
-
1623
- let opcode = match alu_op {
1624
- ALUOp::AddLogical32 => 0xc2b, // ALFI
1625
- ALUOp::AddLogical64 => 0xc2a, // ALGFI
1626
- ALUOp::SubLogical32 => 0xc25, // SLFI
1627
- ALUOp::SubLogical64 => 0xc24, // SLGFI
1628
- _ => unreachable!(),
1629
- };
1630
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
1631
- }
1632
- &Inst::AluRUImm16Shifted {
1633
- alu_op,
1634
- rd,
1635
- ri,
1636
- imm,
1637
- } => {
1638
- debug_assert_eq!(rd.to_reg(), ri);
1639
-
1640
- let opcode = match (alu_op, imm.shift) {
1641
- (ALUOp::And32, 0) => 0xa57, // NILL
1642
- (ALUOp::And32, 1) => 0xa56, // NILH
1643
- (ALUOp::And64, 0) => 0xa57, // NILL
1644
- (ALUOp::And64, 1) => 0xa56, // NILH
1645
- (ALUOp::And64, 2) => 0xa55, // NIHL
1646
- (ALUOp::And64, 3) => 0xa54, // NIHL
1647
- (ALUOp::Orr32, 0) => 0xa5b, // OILL
1648
- (ALUOp::Orr32, 1) => 0xa5a, // OILH
1649
- (ALUOp::Orr64, 0) => 0xa5b, // OILL
1650
- (ALUOp::Orr64, 1) => 0xa5a, // OILH
1651
- (ALUOp::Orr64, 2) => 0xa59, // OIHL
1652
- (ALUOp::Orr64, 3) => 0xa58, // OIHH
1653
- _ => unreachable!(),
1654
- };
1655
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
1656
- }
1657
- &Inst::AluRUImm32Shifted {
1658
- alu_op,
1659
- rd,
1660
- ri,
1661
- imm,
1662
- } => {
1663
- debug_assert_eq!(rd.to_reg(), ri);
1664
-
1665
- let opcode = match (alu_op, imm.shift) {
1666
- (ALUOp::And32, 0) => 0xc0b, // NILF
1667
- (ALUOp::And64, 0) => 0xc0b, // NILF
1668
- (ALUOp::And64, 1) => 0xc0a, // NIHF
1669
- (ALUOp::Orr32, 0) => 0xc0d, // OILF
1670
- (ALUOp::Orr64, 0) => 0xc0d, // OILF
1671
- (ALUOp::Orr64, 1) => 0xc0c, // OILF
1672
- (ALUOp::Xor32, 0) => 0xc07, // XILF
1673
- (ALUOp::Xor64, 0) => 0xc07, // XILF
1674
- (ALUOp::Xor64, 1) => 0xc06, // XILH
1675
- _ => unreachable!(),
1676
- };
1677
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
1678
- }
1679
-
1680
- &Inst::SMulWide { rd, rn, rm } => {
1681
- let rd1 = rd.hi;
1682
- let rd2 = rd.lo;
1683
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1684
-
1685
- let opcode = 0xb9ec; // MGRK
1686
- put(sink, &enc_rrf_ab(opcode, rd1.to_reg(), rn, rm, 0));
1687
- }
1688
- &Inst::UMulWide { rd, ri, rn } => {
1689
- let rd1 = rd.hi;
1690
- let rd2 = rd.lo;
1691
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1692
- debug_assert_eq!(rd2.to_reg(), ri);
1693
-
1694
- let opcode = 0xb986; // MLGR
1695
- put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
1696
- }
1697
- &Inst::SDivMod32 { rd, ri, rn } => {
1698
- let rd1 = rd.hi;
1699
- let rd2 = rd.lo;
1700
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1701
- debug_assert_eq!(rd2.to_reg(), ri);
1702
-
1703
- let opcode = 0xb91d; // DSGFR
1704
- let trap_code = TrapCode::IntegerDivisionByZero;
1705
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1706
- }
1707
- &Inst::SDivMod64 { rd, ri, rn } => {
1708
- let rd1 = rd.hi;
1709
- let rd2 = rd.lo;
1710
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1711
- debug_assert_eq!(rd2.to_reg(), ri);
1712
-
1713
- let opcode = 0xb90d; // DSGR
1714
- let trap_code = TrapCode::IntegerDivisionByZero;
1715
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1716
- }
1717
- &Inst::UDivMod32 { rd, ri, rn } => {
1718
- let rd1 = rd.hi;
1719
- let rd2 = rd.lo;
1720
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1721
- let ri1 = ri.hi;
1722
- let ri2 = ri.lo;
1723
- debug_assert_eq!(rd1.to_reg(), ri1);
1724
- debug_assert_eq!(rd2.to_reg(), ri2);
1725
-
1726
- let opcode = 0xb997; // DLR
1727
- let trap_code = TrapCode::IntegerDivisionByZero;
1728
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1729
- }
1730
- &Inst::UDivMod64 { rd, ri, rn } => {
1731
- let rd1 = rd.hi;
1732
- let rd2 = rd.lo;
1733
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1734
- let ri1 = ri.hi;
1735
- let ri2 = ri.lo;
1736
- debug_assert_eq!(rd1.to_reg(), ri1);
1737
- debug_assert_eq!(rd2.to_reg(), ri2);
1738
-
1739
- let opcode = 0xb987; // DLGR
1740
- let trap_code = TrapCode::IntegerDivisionByZero;
1741
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1742
- }
1743
- &Inst::Flogr { rd, rn } => {
1744
- let rd1 = rd.hi;
1745
- let rd2 = rd.lo;
1746
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1747
-
1748
- let opcode = 0xb983; // FLOGR
1749
- put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
1750
- }
1751
-
1752
- &Inst::ShiftRR {
1753
- shift_op,
1754
- rd,
1755
- rn,
1756
- shift_imm,
1757
- shift_reg,
1758
- } => {
1759
- let opcode = match shift_op {
1760
- ShiftOp::RotL32 => 0xeb1d, // RLL
1761
- ShiftOp::RotL64 => 0xeb1c, // RLLG
1762
- ShiftOp::LShL32 => 0xebdf, // SLLK (SLL ?)
1763
- ShiftOp::LShL64 => 0xeb0d, // SLLG
1764
- ShiftOp::LShR32 => 0xebde, // SRLK (SRL ?)
1765
- ShiftOp::LShR64 => 0xeb0c, // SRLG
1766
- ShiftOp::AShR32 => 0xebdc, // SRAK (SRA ?)
1767
- ShiftOp::AShR64 => 0xeb0a, // SRAG
1768
- };
1769
- put(
1770
- sink,
1771
- &enc_rsy(opcode, rd.to_reg(), rn, shift_reg, shift_imm.into()),
1772
- );
1773
- }
1774
-
1775
- &Inst::RxSBG {
1776
- op,
1777
- rd,
1778
- ri,
1779
- rn,
1780
- start_bit,
1781
- end_bit,
1782
- rotate_amt,
1783
- } => {
1784
- debug_assert_eq!(rd.to_reg(), ri);
1785
-
1786
- let opcode = match op {
1787
- RxSBGOp::Insert => 0xec59, // RISBGN
1788
- RxSBGOp::And => 0xec54, // RNSBG
1789
- RxSBGOp::Or => 0xec56, // ROSBG
1790
- RxSBGOp::Xor => 0xec57, // RXSBG
1791
- };
1792
- put(
1793
- sink,
1794
- &enc_rie_f(
1795
- opcode,
1796
- rd.to_reg(),
1797
- rn,
1798
- start_bit,
1799
- end_bit,
1800
- (rotate_amt as u8) & 63,
1801
- ),
1802
- );
1803
- }
1804
-
1805
- &Inst::RxSBGTest {
1806
- op,
1807
- rd,
1808
- rn,
1809
- start_bit,
1810
- end_bit,
1811
- rotate_amt,
1812
- } => {
1813
- let opcode = match op {
1814
- RxSBGOp::And => 0xec54, // RNSBG
1815
- RxSBGOp::Or => 0xec56, // ROSBG
1816
- RxSBGOp::Xor => 0xec57, // RXSBG
1817
- _ => unreachable!(),
1818
- };
1819
- put(
1820
- sink,
1821
- &enc_rie_f(
1822
- opcode,
1823
- rd,
1824
- rn,
1825
- start_bit | 0x80,
1826
- end_bit,
1827
- (rotate_amt as u8) & 63,
1828
- ),
1829
- );
1830
- }
1831
-
1832
- &Inst::UnaryRR { op, rd, rn } => {
1833
- match op {
1834
- UnaryOp::Abs32 => {
1835
- let opcode = 0x10; // LPR
1836
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
1837
- }
1838
- UnaryOp::Abs64 => {
1839
- let opcode = 0xb900; // LPGR
1840
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1841
- }
1842
- UnaryOp::Abs64Ext32 => {
1843
- let opcode = 0xb910; // LPGFR
1844
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1845
- }
1846
- UnaryOp::Neg32 => {
1847
- let opcode = 0x13; // LCR
1848
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
1849
- }
1850
- UnaryOp::Neg64 => {
1851
- let opcode = 0xb903; // LCGR
1852
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1853
- }
1854
- UnaryOp::Neg64Ext32 => {
1855
- let opcode = 0xb913; // LCGFR
1856
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1857
- }
1858
- UnaryOp::PopcntByte => {
1859
- let opcode = 0xb9e1; // POPCNT
1860
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 0, 0));
1861
- }
1862
- UnaryOp::PopcntReg => {
1863
- let opcode = 0xb9e1; // POPCNT
1864
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 8, 0));
1865
- }
1866
- UnaryOp::BSwap32 => {
1867
- let opcode = 0xb91f; // LRVR
1868
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1869
- }
1870
- UnaryOp::BSwap64 => {
1871
- let opcode = 0xb90f; // LRVRG
1872
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1873
- }
1874
- }
1875
- }
1876
-
1877
- &Inst::Extend {
1878
- rd,
1879
- rn,
1880
- signed,
1881
- from_bits,
1882
- to_bits,
1883
- } => {
1884
- let opcode = match (signed, from_bits, to_bits) {
1885
- (_, 1, 32) => 0xb926, // LBR
1886
- (_, 1, 64) => 0xb906, // LGBR
1887
- (false, 8, 32) => 0xb994, // LLCR
1888
- (false, 8, 64) => 0xb984, // LLGCR
1889
- (true, 8, 32) => 0xb926, // LBR
1890
- (true, 8, 64) => 0xb906, // LGBR
1891
- (false, 16, 32) => 0xb995, // LLHR
1892
- (false, 16, 64) => 0xb985, // LLGHR
1893
- (true, 16, 32) => 0xb927, // LHR
1894
- (true, 16, 64) => 0xb907, // LGHR
1895
- (false, 32, 64) => 0xb916, // LLGFR
1896
- (true, 32, 64) => 0xb914, // LGFR
1897
- _ => panic!(
1898
- "Unsupported extend combination: signed = {}, from_bits = {}, to_bits = {}",
1899
- signed, from_bits, to_bits
1900
- ),
1901
- };
1902
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1903
- }
1904
-
1905
- &Inst::CmpRR { op, rn, rm } => {
1906
- let (opcode, is_rre) = match op {
1907
- CmpOp::CmpS32 => (0x19, false), // CR
1908
- CmpOp::CmpS64 => (0xb920, true), // CGR
1909
- CmpOp::CmpS64Ext32 => (0xb930, true), // CGFR
1910
- CmpOp::CmpL32 => (0x15, false), // CLR
1911
- CmpOp::CmpL64 => (0xb921, true), // CLGR
1912
- CmpOp::CmpL64Ext32 => (0xb931, true), // CLGFR
1913
- _ => unreachable!(),
1914
- };
1915
- if is_rre {
1916
- put(sink, &enc_rre(opcode, rn, rm));
1917
- } else {
1918
- put(sink, &enc_rr(opcode, rn, rm));
1919
- }
1920
- }
1921
- &Inst::CmpRX { op, rn, ref mem } => {
1922
- let mem = mem.clone();
1923
-
1924
- let (opcode_rx, opcode_rxy, opcode_ril) = match op {
1925
- CmpOp::CmpS32 => (Some(0x59), Some(0xe359), Some(0xc6d)), // C(Y), CRL
1926
- CmpOp::CmpS32Ext16 => (Some(0x49), Some(0xe379), Some(0xc65)), // CH(Y), CHRL
1927
- CmpOp::CmpS64 => (None, Some(0xe320), Some(0xc68)), // CG, CGRL
1928
- CmpOp::CmpS64Ext16 => (None, Some(0xe334), Some(0xc64)), // CGH, CGHRL
1929
- CmpOp::CmpS64Ext32 => (None, Some(0xe330), Some(0xc6c)), // CGF, CGFRL
1930
- CmpOp::CmpL32 => (Some(0x55), Some(0xe355), Some(0xc6f)), // CL(Y), CLRL
1931
- CmpOp::CmpL32Ext16 => (None, None, Some(0xc67)), // CLHRL
1932
- CmpOp::CmpL64 => (None, Some(0xe321), Some(0xc6a)), // CLG, CLGRL
1933
- CmpOp::CmpL64Ext16 => (None, None, Some(0xc66)), // CLGHRL
1934
- CmpOp::CmpL64Ext32 => (None, Some(0xe331), Some(0xc6e)), // CLGF, CLGFRL
1935
- };
1936
- mem_emit(
1937
- rn, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
1938
- );
1939
- }
1940
- &Inst::CmpRSImm16 { op, rn, imm } => {
1941
- let opcode = match op {
1942
- CmpOp::CmpS32 => 0xa7e, // CHI
1943
- CmpOp::CmpS64 => 0xa7f, // CGHI
1944
- _ => unreachable!(),
1945
- };
1946
- put(sink, &enc_ri_a(opcode, rn, imm as u16));
1947
- }
1948
- &Inst::CmpRSImm32 { op, rn, imm } => {
1949
- let opcode = match op {
1950
- CmpOp::CmpS32 => 0xc2d, // CFI
1951
- CmpOp::CmpS64 => 0xc2c, // CGFI
1952
- _ => unreachable!(),
1953
- };
1954
- put(sink, &enc_ril_a(opcode, rn, imm as u32));
1955
- }
1956
- &Inst::CmpRUImm32 { op, rn, imm } => {
1957
- let opcode = match op {
1958
- CmpOp::CmpL32 => 0xc2f, // CLFI
1959
- CmpOp::CmpL64 => 0xc2e, // CLGFI
1960
- _ => unreachable!(),
1961
- };
1962
- put(sink, &enc_ril_a(opcode, rn, imm));
1963
- }
1964
- &Inst::CmpTrapRR {
1965
- op,
1966
- rn,
1967
- rm,
1968
- cond,
1969
- trap_code,
1970
- } => {
1971
- let opcode = match op {
1972
- CmpOp::CmpS32 => 0xb972, // CRT
1973
- CmpOp::CmpS64 => 0xb960, // CGRT
1974
- CmpOp::CmpL32 => 0xb973, // CLRT
1975
- CmpOp::CmpL64 => 0xb961, // CLGRT
1976
- _ => unreachable!(),
1977
- };
1978
- put_with_trap(
1979
- sink,
1980
- &enc_rrf_cde(opcode, rn, rm, cond.bits(), 0),
1981
- trap_code,
1982
- );
1983
- }
1984
- &Inst::CmpTrapRSImm16 {
1985
- op,
1986
- rn,
1987
- imm,
1988
- cond,
1989
- trap_code,
1990
- } => {
1991
- let opcode = match op {
1992
- CmpOp::CmpS32 => 0xec72, // CIT
1993
- CmpOp::CmpS64 => 0xec70, // CGIT
1994
- _ => unreachable!(),
1995
- };
1996
- put_with_trap(
1997
- sink,
1998
- &enc_rie_a(opcode, rn, imm as u16, cond.bits()),
1999
- trap_code,
2000
- );
2001
- }
2002
- &Inst::CmpTrapRUImm16 {
2003
- op,
2004
- rn,
2005
- imm,
2006
- cond,
2007
- trap_code,
2008
- } => {
2009
- let opcode = match op {
2010
- CmpOp::CmpL32 => 0xec73, // CLFIT
2011
- CmpOp::CmpL64 => 0xec71, // CLGIT
2012
- _ => unreachable!(),
2013
- };
2014
- put_with_trap(sink, &enc_rie_a(opcode, rn, imm, cond.bits()), trap_code);
2015
- }
2016
-
2017
- &Inst::AtomicRmw {
2018
- alu_op,
2019
- rd,
2020
- rn,
2021
- ref mem,
2022
- } => {
2023
- let mem = mem.clone();
2024
-
2025
- let opcode = match alu_op {
2026
- ALUOp::Add32 => 0xebf8, // LAA
2027
- ALUOp::Add64 => 0xebe8, // LAAG
2028
- ALUOp::AddLogical32 => 0xebfa, // LAAL
2029
- ALUOp::AddLogical64 => 0xebea, // LAALG
2030
- ALUOp::And32 => 0xebf4, // LAN
2031
- ALUOp::And64 => 0xebe4, // LANG
2032
- ALUOp::Orr32 => 0xebf6, // LAO
2033
- ALUOp::Orr64 => 0xebe6, // LAOG
2034
- ALUOp::Xor32 => 0xebf7, // LAX
2035
- ALUOp::Xor64 => 0xebe7, // LAXG
2036
- _ => unreachable!(),
2037
- };
2038
-
2039
- let rd = rd.to_reg();
2040
- mem_rs_emit(
2041
- rd,
2042
- rn,
2043
- &mem,
2044
- None,
2045
- Some(opcode),
2046
- true,
2047
- sink,
2048
- emit_info,
2049
- state,
2050
- );
2051
- }
2052
- &Inst::Loop { ref body, cond } => {
2053
- // This sequence is *one* instruction in the vcode, and is expanded only here at
2054
- // emission time, because it requires branching to internal labels.
2055
- let loop_label = sink.get_label();
2056
- let done_label = sink.get_label();
2057
-
2058
- // Emit label at the start of the loop.
2059
- sink.bind_label(loop_label, &mut state.ctrl_plane);
2060
-
2061
- for inst in (&body).into_iter() {
2062
- match &inst {
2063
- // Replace a CondBreak with a branch to done_label.
2064
- &Inst::CondBreak { cond } => {
2065
- let inst = Inst::OneWayCondBr {
2066
- target: done_label,
2067
- cond: *cond,
2068
- };
2069
- inst.emit_with_alloc_consumer(sink, emit_info, state);
2070
- }
2071
- _ => inst.emit_with_alloc_consumer(sink, emit_info, state),
2072
- };
2073
- }
2074
-
2075
- let inst = Inst::OneWayCondBr {
2076
- target: loop_label,
2077
- cond,
2078
- };
2079
- inst.emit(sink, emit_info, state);
2080
-
2081
- // Emit label at the end of the loop.
2082
- sink.bind_label(done_label, &mut state.ctrl_plane);
2083
- }
2084
- &Inst::CondBreak { .. } => unreachable!(), // Only valid inside a Loop.
2085
- &Inst::AtomicCas32 {
2086
- rd,
2087
- ri,
2088
- rn,
2089
- ref mem,
2090
- }
2091
- | &Inst::AtomicCas64 {
2092
- rd,
2093
- ri,
2094
- rn,
2095
- ref mem,
2096
- } => {
2097
- debug_assert_eq!(rd.to_reg(), ri);
2098
- let mem = mem.clone();
2099
-
2100
- let (opcode_rs, opcode_rsy) = match self {
2101
- &Inst::AtomicCas32 { .. } => (Some(0xba), Some(0xeb14)), // CS(Y)
2102
- &Inst::AtomicCas64 { .. } => (None, Some(0xeb30)), // CSG
2103
- _ => unreachable!(),
2104
- };
2105
-
2106
- let rd = rd.to_reg();
2107
- mem_rs_emit(
2108
- rd, rn, &mem, opcode_rs, opcode_rsy, true, sink, emit_info, state,
2109
- );
2110
- }
2111
- &Inst::Fence => {
2112
- put(sink, &enc_e(0x07e0));
2113
- }
2114
-
2115
- &Inst::Load32 { rd, ref mem }
2116
- | &Inst::Load32ZExt8 { rd, ref mem }
2117
- | &Inst::Load32SExt8 { rd, ref mem }
2118
- | &Inst::Load32ZExt16 { rd, ref mem }
2119
- | &Inst::Load32SExt16 { rd, ref mem }
2120
- | &Inst::Load64 { rd, ref mem }
2121
- | &Inst::Load64ZExt8 { rd, ref mem }
2122
- | &Inst::Load64SExt8 { rd, ref mem }
2123
- | &Inst::Load64ZExt16 { rd, ref mem }
2124
- | &Inst::Load64SExt16 { rd, ref mem }
2125
- | &Inst::Load64ZExt32 { rd, ref mem }
2126
- | &Inst::Load64SExt32 { rd, ref mem }
2127
- | &Inst::LoadRev16 { rd, ref mem }
2128
- | &Inst::LoadRev32 { rd, ref mem }
2129
- | &Inst::LoadRev64 { rd, ref mem } => {
2130
- let mem = mem.clone();
2131
-
2132
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
2133
- &Inst::Load32 { .. } => (Some(0x58), Some(0xe358), Some(0xc4d)), // L(Y), LRL
2134
- &Inst::Load32ZExt8 { .. } => (None, Some(0xe394), None), // LLC
2135
- &Inst::Load32SExt8 { .. } => (None, Some(0xe376), None), // LB
2136
- &Inst::Load32ZExt16 { .. } => (None, Some(0xe395), Some(0xc42)), // LLH, LLHRL
2137
- &Inst::Load32SExt16 { .. } => (Some(0x48), Some(0xe378), Some(0xc45)), // LH(Y), LHRL
2138
- &Inst::Load64 { .. } => (None, Some(0xe304), Some(0xc48)), // LG, LGRL
2139
- &Inst::Load64ZExt8 { .. } => (None, Some(0xe390), None), // LLGC
2140
- &Inst::Load64SExt8 { .. } => (None, Some(0xe377), None), // LGB
2141
- &Inst::Load64ZExt16 { .. } => (None, Some(0xe391), Some(0xc46)), // LLGH, LLGHRL
2142
- &Inst::Load64SExt16 { .. } => (None, Some(0xe315), Some(0xc44)), // LGH, LGHRL
2143
- &Inst::Load64ZExt32 { .. } => (None, Some(0xe316), Some(0xc4e)), // LLGF, LLGFRL
2144
- &Inst::Load64SExt32 { .. } => (None, Some(0xe314), Some(0xc4c)), // LGF, LGFRL
2145
- &Inst::LoadRev16 { .. } => (None, Some(0xe31f), None), // LRVH
2146
- &Inst::LoadRev32 { .. } => (None, Some(0xe31e), None), // LRV
2147
- &Inst::LoadRev64 { .. } => (None, Some(0xe30f), None), // LRVG
2148
- _ => unreachable!(),
2149
- };
2150
- let rd = rd.to_reg();
2151
- mem_emit(
2152
- rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
2153
- );
2154
- }
2155
-
2156
- &Inst::Store8 { rd, ref mem }
2157
- | &Inst::Store16 { rd, ref mem }
2158
- | &Inst::Store32 { rd, ref mem }
2159
- | &Inst::Store64 { rd, ref mem }
2160
- | &Inst::StoreRev16 { rd, ref mem }
2161
- | &Inst::StoreRev32 { rd, ref mem }
2162
- | &Inst::StoreRev64 { rd, ref mem } => {
2163
- let mem = mem.clone();
2164
-
2165
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
2166
- &Inst::Store8 { .. } => (Some(0x42), Some(0xe372), None), // STC(Y)
2167
- &Inst::Store16 { .. } => (Some(0x40), Some(0xe370), Some(0xc47)), // STH(Y), STHRL
2168
- &Inst::Store32 { .. } => (Some(0x50), Some(0xe350), Some(0xc4f)), // ST(Y), STRL
2169
- &Inst::Store64 { .. } => (None, Some(0xe324), Some(0xc4b)), // STG, STGRL
2170
- &Inst::StoreRev16 { .. } => (None, Some(0xe33f), None), // STRVH
2171
- &Inst::StoreRev32 { .. } => (None, Some(0xe33e), None), // STRV
2172
- &Inst::StoreRev64 { .. } => (None, Some(0xe32f), None), // STRVG
2173
- _ => unreachable!(),
2174
- };
2175
- mem_emit(
2176
- rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
2177
- );
2178
- }
2179
- &Inst::StoreImm8 { imm, ref mem } => {
2180
- let mem = mem.clone();
2181
-
2182
- let opcode_si = 0x92; // MVI
2183
- let opcode_siy = 0xeb52; // MVIY
2184
- mem_imm8_emit(
2185
- imm, &mem, opcode_si, opcode_siy, true, sink, emit_info, state,
2186
- );
2187
- }
2188
- &Inst::StoreImm16 { imm, ref mem }
2189
- | &Inst::StoreImm32SExt16 { imm, ref mem }
2190
- | &Inst::StoreImm64SExt16 { imm, ref mem } => {
2191
- let mem = mem.clone();
2192
-
2193
- let opcode = match self {
2194
- &Inst::StoreImm16 { .. } => 0xe544, // MVHHI
2195
- &Inst::StoreImm32SExt16 { .. } => 0xe54c, // MVHI
2196
- &Inst::StoreImm64SExt16 { .. } => 0xe548, // MVGHI
2197
- _ => unreachable!(),
2198
- };
2199
- mem_imm16_emit(imm, &mem, opcode, true, sink, emit_info, state);
2200
- }
2201
- &Inst::Mvc {
2202
- ref dst,
2203
- ref src,
2204
- len_minus_one,
2205
- } => {
2206
- let dst = dst.clone();
2207
- let src = src.clone();
2208
- let opcode = 0xd2; // MVC
2209
- mem_mem_emit(&dst, &src, len_minus_one, opcode, true, sink, state);
2210
- }
2211
-
2212
- &Inst::LoadMultiple64 { rt, rt2, ref mem } => {
2213
- let mem = mem.clone();
2214
-
2215
- let opcode = 0xeb04; // LMG
2216
- let rt = rt.to_reg();
2217
- let rt2 = rt2.to_reg();
2218
- mem_rs_emit(
2219
- rt,
2220
- rt2,
2221
- &mem,
2222
- None,
2223
- Some(opcode),
2224
- true,
2225
- sink,
2226
- emit_info,
2227
- state,
2228
- );
2229
- }
2230
- &Inst::StoreMultiple64 { rt, rt2, ref mem } => {
2231
- let mem = mem.clone();
2232
-
2233
- let opcode = 0xeb24; // STMG
2234
- mem_rs_emit(
2235
- rt,
2236
- rt2,
2237
- &mem,
2238
- None,
2239
- Some(opcode),
2240
- true,
2241
- sink,
2242
- emit_info,
2243
- state,
2244
- );
2245
- }
2246
-
2247
- &Inst::LoadAddr { rd, ref mem } => {
2248
- let mem = mem.clone();
2249
-
2250
- let opcode_rx = Some(0x41); // LA
2251
- let opcode_rxy = Some(0xe371); // LAY
2252
- let opcode_ril = Some(0xc00); // LARL
2253
- let rd = rd.to_reg();
2254
- mem_emit(
2255
- rd, &mem, opcode_rx, opcode_rxy, opcode_ril, false, sink, emit_info, state,
2256
- );
2257
- }
2258
-
2259
- &Inst::Mov64 { rd, rm } => {
2260
- let opcode = 0xb904; // LGR
2261
- put(sink, &enc_rre(opcode, rd.to_reg(), rm));
2262
- }
2263
- &Inst::MovPReg { rd, rm } => {
2264
- let rm: Reg = rm.into();
2265
- debug_assert!([regs::gpr(0), regs::gpr(14), regs::gpr(15)].contains(&rm));
2266
- Inst::Mov64 { rd, rm }.emit(sink, emit_info, state);
2267
- }
2268
- &Inst::Mov32 { rd, rm } => {
2269
- let opcode = 0x18; // LR
2270
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2271
- }
2272
- &Inst::Mov32Imm { rd, imm } => {
2273
- let opcode = 0xc09; // IILF
2274
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
2275
- }
2276
- &Inst::Mov32SImm16 { rd, imm } => {
2277
- let opcode = 0xa78; // LHI
2278
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
2279
- }
2280
- &Inst::Mov64SImm16 { rd, imm } => {
2281
- let opcode = 0xa79; // LGHI
2282
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
2283
- }
2284
- &Inst::Mov64SImm32 { rd, imm } => {
2285
- let opcode = 0xc01; // LGFI
2286
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
2287
- }
2288
- &Inst::CMov32 { rd, cond, ri, rm } => {
2289
- debug_assert_eq!(rd.to_reg(), ri);
2290
-
2291
- let opcode = 0xb9f2; // LOCR
2292
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
2293
- }
2294
- &Inst::CMov64 { rd, cond, ri, rm } => {
2295
- debug_assert_eq!(rd.to_reg(), ri);
2296
-
2297
- let opcode = 0xb9e2; // LOCGR
2298
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
2299
- }
2300
- &Inst::CMov32SImm16 { rd, cond, ri, imm } => {
2301
- debug_assert_eq!(rd.to_reg(), ri);
2302
-
2303
- let opcode = 0xec42; // LOCHI
2304
- put(
2305
- sink,
2306
- &enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
2307
- );
2308
- }
2309
- &Inst::CMov64SImm16 { rd, cond, ri, imm } => {
2310
- debug_assert_eq!(rd.to_reg(), ri);
2311
-
2312
- let opcode = 0xec46; // LOCGHI
2313
- put(
2314
- sink,
2315
- &enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
2316
- );
2317
- }
2318
- &Inst::Mov64UImm16Shifted { rd, imm } => {
2319
- let opcode = match imm.shift {
2320
- 0 => 0xa5f, // LLILL
2321
- 1 => 0xa5e, // LLILH
2322
- 2 => 0xa5d, // LLIHL
2323
- 3 => 0xa5c, // LLIHH
2324
- _ => unreachable!(),
2325
- };
2326
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
2327
- }
2328
- &Inst::Mov64UImm32Shifted { rd, imm } => {
2329
- let opcode = match imm.shift {
2330
- 0 => 0xc0f, // LLILF
2331
- 1 => 0xc0e, // LLIHF
2332
- _ => unreachable!(),
2333
- };
2334
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
2335
- }
2336
- &Inst::Insert64UImm16Shifted { rd, ri, imm } => {
2337
- debug_assert_eq!(rd.to_reg(), ri);
2338
-
2339
- let opcode = match imm.shift {
2340
- 0 => 0xa53, // IILL
2341
- 1 => 0xa52, // IILH
2342
- 2 => 0xa51, // IIHL
2343
- 3 => 0xa50, // IIHH
2344
- _ => unreachable!(),
2345
- };
2346
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
2347
- }
2348
- &Inst::Insert64UImm32Shifted { rd, ri, imm } => {
2349
- debug_assert_eq!(rd.to_reg(), ri);
2350
-
2351
- let opcode = match imm.shift {
2352
- 0 => 0xc09, // IILF
2353
- 1 => 0xc08, // IIHF
2354
- _ => unreachable!(),
2355
- };
2356
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
2357
- }
2358
- &Inst::LoadAR { rd, ar } => {
2359
- let opcode = 0xb24f; // EAR
2360
- put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
2361
- }
2362
-
2363
- &Inst::InsertAR { rd, ri, ar } => {
2364
- debug_assert_eq!(rd.to_reg(), ri);
2365
-
2366
- let opcode = 0xb24f; // EAR
2367
- put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
2368
- }
2369
- &Inst::LoadSymbolReloc {
2370
- rd,
2371
- ref symbol_reloc,
2372
- } => {
2373
- let opcode = 0xa75; // BRAS
2374
- let reg = writable_spilltmp_reg().to_reg();
2375
- put(sink, &enc_ri_b(opcode, reg, 12));
2376
- let (reloc, name, offset) = match &**symbol_reloc {
2377
- SymbolReloc::Absolute { name, offset } => (Reloc::Abs8, name, *offset),
2378
- SymbolReloc::TlsGd { name } => (Reloc::S390xTlsGd64, name, 0),
2379
- };
2380
- sink.add_reloc(reloc, name, offset);
2381
- sink.put8(0);
2382
- let inst = Inst::Load64 {
2383
- rd,
2384
- mem: MemArg::reg(reg, MemFlags::trusted()),
2385
- };
2386
- inst.emit(sink, emit_info, state);
2387
- }
2388
-
2389
- &Inst::FpuMove32 { rd, rn } => {
2390
- if is_fpr(rd.to_reg()) && is_fpr(rn) {
2391
- let opcode = 0x38; // LER
2392
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
2393
- } else {
2394
- let opcode = 0xe756; // VLR
2395
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2396
- }
2397
- }
2398
- &Inst::FpuMove64 { rd, rn } => {
2399
- if is_fpr(rd.to_reg()) && is_fpr(rn) {
2400
- let opcode = 0x28; // LDR
2401
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
2402
- } else {
2403
- let opcode = 0xe756; // VLR
2404
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2405
- }
2406
- }
2407
- &Inst::FpuCMov32 { rd, cond, ri, rm } => {
2408
- debug_assert_eq!(rd.to_reg(), ri);
2409
-
2410
- if is_fpr(rd.to_reg()) && is_fpr(rm) {
2411
- let opcode = 0xa74; // BCR
2412
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
2413
- let opcode = 0x38; // LER
2414
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2415
- } else {
2416
- let opcode = 0xa74; // BCR
2417
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2418
- let opcode = 0xe756; // VLR
2419
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2420
- }
2421
- }
2422
- &Inst::FpuCMov64 { rd, cond, ri, rm } => {
2423
- debug_assert_eq!(rd.to_reg(), ri);
2424
-
2425
- if is_fpr(rd.to_reg()) && is_fpr(rm) {
2426
- let opcode = 0xa74; // BCR
2427
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
2428
- let opcode = 0x28; // LDR
2429
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2430
- } else {
2431
- let opcode = 0xa74; // BCR
2432
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2433
- let opcode = 0xe756; // VLR
2434
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2435
- }
2436
- }
2437
- &Inst::LoadFpuConst32 { rd, const_data } => {
2438
- let opcode = 0xa75; // BRAS
2439
- let reg = writable_spilltmp_reg().to_reg();
2440
- put(sink, &enc_ri_b(opcode, reg, 8));
2441
- sink.put4(const_data.swap_bytes());
2442
- let inst = Inst::VecLoadLaneUndef {
2443
- size: 32,
2444
- rd,
2445
- mem: MemArg::reg(reg, MemFlags::trusted()),
2446
- lane_imm: 0,
2447
- };
2448
- inst.emit(sink, emit_info, state);
2449
- }
2450
- &Inst::LoadFpuConst64 { rd, const_data } => {
2451
- let opcode = 0xa75; // BRAS
2452
- let reg = writable_spilltmp_reg().to_reg();
2453
- put(sink, &enc_ri_b(opcode, reg, 12));
2454
- sink.put8(const_data.swap_bytes());
2455
- let inst = Inst::VecLoadLaneUndef {
2456
- size: 64,
2457
- rd,
2458
- mem: MemArg::reg(reg, MemFlags::trusted()),
2459
- lane_imm: 0,
2460
- };
2461
- inst.emit(sink, emit_info, state);
2462
- }
2463
- &Inst::FpuRR { fpu_op, rd, rn } => {
2464
- let (opcode, m3, m4, m5, opcode_fpr) = match fpu_op {
2465
- FPUOp1::Abs32 => (0xe7cc, 2, 8, 2, Some(0xb300)), // WFPSO, LPEBR
2466
- FPUOp1::Abs64 => (0xe7cc, 3, 8, 2, Some(0xb310)), // WFPSO, LPDBR
2467
- FPUOp1::Abs32x4 => (0xe7cc, 2, 0, 2, None), // VFPSO
2468
- FPUOp1::Abs64x2 => (0xe7cc, 3, 0, 2, None), // VFPSO
2469
- FPUOp1::Neg32 => (0xe7cc, 2, 8, 0, Some(0xb303)), // WFPSO, LCEBR
2470
- FPUOp1::Neg64 => (0xe7cc, 3, 8, 0, Some(0xb313)), // WFPSO, LCDBR
2471
- FPUOp1::Neg32x4 => (0xe7cc, 2, 0, 0, None), // VFPSO
2472
- FPUOp1::Neg64x2 => (0xe7cc, 3, 0, 0, None), // VFPSO
2473
- FPUOp1::NegAbs32 => (0xe7cc, 2, 8, 1, Some(0xb301)), // WFPSO, LNEBR
2474
- FPUOp1::NegAbs64 => (0xe7cc, 3, 8, 1, Some(0xb311)), // WFPSO, LNDBR
2475
- FPUOp1::NegAbs32x4 => (0xe7cc, 2, 0, 1, None), // VFPSO
2476
- FPUOp1::NegAbs64x2 => (0xe7cc, 3, 0, 1, None), // VFPSO
2477
- FPUOp1::Sqrt32 => (0xe7ce, 2, 8, 0, Some(0xb314)), // WFSQ, SQEBR
2478
- FPUOp1::Sqrt64 => (0xe7ce, 3, 8, 0, Some(0xb315)), // WFSQ, SQDBR
2479
- FPUOp1::Sqrt32x4 => (0xe7ce, 2, 0, 0, None), // VFSQ
2480
- FPUOp1::Sqrt64x2 => (0xe7ce, 3, 0, 0, None), // VFSQ
2481
- FPUOp1::Cvt32To64 => (0xe7c4, 2, 8, 0, Some(0xb304)), // WFLL, LDEBR
2482
- FPUOp1::Cvt32x4To64x2 => (0xe7c4, 2, 0, 0, None), // VFLL
2483
- };
2484
- if m4 == 8 && is_fpr(rd.to_reg()) && is_fpr(rn) {
2485
- put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rn));
2486
- } else {
2487
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, m5));
2488
- }
2489
- }
2490
- &Inst::FpuRRR { fpu_op, rd, rn, rm } => {
2491
- let (opcode, m4, m5, m6, opcode_fpr) = match fpu_op {
2492
- FPUOp2::Add32 => (0xe7e3, 2, 8, 0, Some(0xb30a)), // WFA, AEBR
2493
- FPUOp2::Add64 => (0xe7e3, 3, 8, 0, Some(0xb31a)), // WFA, ADBR
2494
- FPUOp2::Add32x4 => (0xe7e3, 2, 0, 0, None), // VFA
2495
- FPUOp2::Add64x2 => (0xe7e3, 3, 0, 0, None), // VFA
2496
- FPUOp2::Sub32 => (0xe7e2, 2, 8, 0, Some(0xb30b)), // WFS, SEBR
2497
- FPUOp2::Sub64 => (0xe7e2, 3, 8, 0, Some(0xb31b)), // WFS, SDBR
2498
- FPUOp2::Sub32x4 => (0xe7e2, 2, 0, 0, None), // VFS
2499
- FPUOp2::Sub64x2 => (0xe7e2, 3, 0, 0, None), // VFS
2500
- FPUOp2::Mul32 => (0xe7e7, 2, 8, 0, Some(0xb317)), // WFM, MEEBR
2501
- FPUOp2::Mul64 => (0xe7e7, 3, 8, 0, Some(0xb31c)), // WFM, MDBR
2502
- FPUOp2::Mul32x4 => (0xe7e7, 2, 0, 0, None), // VFM
2503
- FPUOp2::Mul64x2 => (0xe7e7, 3, 0, 0, None), // VFM
2504
- FPUOp2::Div32 => (0xe7e5, 2, 8, 0, Some(0xb30d)), // WFD, DEBR
2505
- FPUOp2::Div64 => (0xe7e5, 3, 8, 0, Some(0xb31d)), // WFD, DDBR
2506
- FPUOp2::Div32x4 => (0xe7e5, 2, 0, 0, None), // VFD
2507
- FPUOp2::Div64x2 => (0xe7e5, 3, 0, 0, None), // VFD
2508
- FPUOp2::Max32 => (0xe7ef, 2, 8, 1, None), // WFMAX
2509
- FPUOp2::Max64 => (0xe7ef, 3, 8, 1, None), // WFMAX
2510
- FPUOp2::Max32x4 => (0xe7ef, 2, 0, 1, None), // VFMAX
2511
- FPUOp2::Max64x2 => (0xe7ef, 3, 0, 1, None), // VFMAX
2512
- FPUOp2::Min32 => (0xe7ee, 2, 8, 1, None), // WFMIN
2513
- FPUOp2::Min64 => (0xe7ee, 3, 8, 1, None), // WFMIN
2514
- FPUOp2::Min32x4 => (0xe7ee, 2, 0, 1, None), // VFMIN
2515
- FPUOp2::Min64x2 => (0xe7ee, 3, 0, 1, None), // VFMIN
2516
- FPUOp2::MaxPseudo32 => (0xe7ef, 2, 8, 3, None), // WFMAX
2517
- FPUOp2::MaxPseudo64 => (0xe7ef, 3, 8, 3, None), // WFMAX
2518
- FPUOp2::MaxPseudo32x4 => (0xe7ef, 2, 0, 3, None), // VFMAX
2519
- FPUOp2::MaxPseudo64x2 => (0xe7ef, 3, 0, 3, None), // VFMAX
2520
- FPUOp2::MinPseudo32 => (0xe7ee, 2, 8, 3, None), // WFMIN
2521
- FPUOp2::MinPseudo64 => (0xe7ee, 3, 8, 3, None), // WFMIN
2522
- FPUOp2::MinPseudo32x4 => (0xe7ee, 2, 0, 3, None), // VFMIN
2523
- FPUOp2::MinPseudo64x2 => (0xe7ee, 3, 0, 3, None), // VFMIN
2524
- };
2525
- if m5 == 8 && opcode_fpr.is_some() && rd.to_reg() == rn && is_fpr(rn) && is_fpr(rm)
2526
- {
2527
- put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rm));
2528
- } else {
2529
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, m5, m6));
2530
- }
2531
- }
2532
- &Inst::FpuRRRR {
2533
- fpu_op,
2534
- rd,
2535
- rn,
2536
- rm,
2537
- ra,
2538
- } => {
2539
- let (opcode, m5, m6, opcode_fpr) = match fpu_op {
2540
- FPUOp3::MAdd32 => (0xe78f, 8, 2, Some(0xb30e)), // WFMA, MAEBR
2541
- FPUOp3::MAdd64 => (0xe78f, 8, 3, Some(0xb31e)), // WFMA, MADBR
2542
- FPUOp3::MAdd32x4 => (0xe78f, 0, 2, None), // VFMA
2543
- FPUOp3::MAdd64x2 => (0xe78f, 0, 3, None), // VFMA
2544
- FPUOp3::MSub32 => (0xe78e, 8, 2, Some(0xb30f)), // WFMS, MSEBR
2545
- FPUOp3::MSub64 => (0xe78e, 8, 3, Some(0xb31f)), // WFMS, MSDBR
2546
- FPUOp3::MSub32x4 => (0xe78e, 0, 2, None), // VFMS
2547
- FPUOp3::MSub64x2 => (0xe78e, 0, 3, None), // VFMS
2548
- };
2549
- if m5 == 8 && rd.to_reg() == ra && is_fpr(rn) && is_fpr(rm) && is_fpr(ra) {
2550
- put(sink, &enc_rrd(opcode_fpr.unwrap(), rd.to_reg(), rm, rn));
2551
- } else {
2552
- put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, m5, m6));
2553
- }
2554
- }
2555
- &Inst::FpuRound { op, mode, rd, rn } => {
2556
- let mode = match mode {
2557
- FpuRoundMode::Current => 0,
2558
- FpuRoundMode::ToNearest => 1,
2559
- FpuRoundMode::ShorterPrecision => 3,
2560
- FpuRoundMode::ToNearestTiesToEven => 4,
2561
- FpuRoundMode::ToZero => 5,
2562
- FpuRoundMode::ToPosInfinity => 6,
2563
- FpuRoundMode::ToNegInfinity => 7,
2564
- };
2565
- let (opcode, m3, m4, opcode_fpr) = match op {
2566
- FpuRoundOp::Cvt64To32 => (0xe7c5, 3, 8, Some(0xb344)), // WFLR, LEDBR(A)
2567
- FpuRoundOp::Cvt64x2To32x4 => (0xe7c5, 3, 0, None), // VFLR
2568
- FpuRoundOp::Round32 => (0xe7c7, 2, 8, Some(0xb357)), // WFI, FIEBR
2569
- FpuRoundOp::Round64 => (0xe7c7, 3, 8, Some(0xb35f)), // WFI, FIDBR
2570
- FpuRoundOp::Round32x4 => (0xe7c7, 2, 0, None), // VFI
2571
- FpuRoundOp::Round64x2 => (0xe7c7, 3, 0, None), // VFI
2572
- FpuRoundOp::ToSInt32 => (0xe7c2, 2, 8, None), // WCSFP
2573
- FpuRoundOp::ToSInt64 => (0xe7c2, 3, 8, None), // WCSFP
2574
- FpuRoundOp::ToUInt32 => (0xe7c0, 2, 8, None), // WCLFP
2575
- FpuRoundOp::ToUInt64 => (0xe7c0, 3, 8, None), // WCLFP
2576
- FpuRoundOp::ToSInt32x4 => (0xe7c2, 2, 0, None), // VCSFP
2577
- FpuRoundOp::ToSInt64x2 => (0xe7c2, 3, 0, None), // VCSFP
2578
- FpuRoundOp::ToUInt32x4 => (0xe7c0, 2, 0, None), // VCLFP
2579
- FpuRoundOp::ToUInt64x2 => (0xe7c0, 3, 0, None), // VCLFP
2580
- FpuRoundOp::FromSInt32 => (0xe7c3, 2, 8, None), // WCFPS
2581
- FpuRoundOp::FromSInt64 => (0xe7c3, 3, 8, None), // WCFPS
2582
- FpuRoundOp::FromUInt32 => (0xe7c1, 2, 8, None), // WCFPL
2583
- FpuRoundOp::FromUInt64 => (0xe7c1, 3, 8, None), // WCFPL
2584
- FpuRoundOp::FromSInt32x4 => (0xe7c3, 2, 0, None), // VCFPS
2585
- FpuRoundOp::FromSInt64x2 => (0xe7c3, 3, 0, None), // VCFPS
2586
- FpuRoundOp::FromUInt32x4 => (0xe7c1, 2, 0, None), // VCFPL
2587
- FpuRoundOp::FromUInt64x2 => (0xe7c1, 3, 0, None), // VCFPL
2588
- };
2589
- if m4 == 8 && opcode_fpr.is_some() && is_fpr(rd.to_reg()) && is_fpr(rn) {
2590
- put(
2591
- sink,
2592
- &enc_rrf_cde(opcode_fpr.unwrap(), rd.to_reg(), rn, mode, 0),
2593
- );
2594
- } else {
2595
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, mode));
2596
- }
2597
- }
2598
- &Inst::FpuCmp32 { rn, rm } => {
2599
- if is_fpr(rn) && is_fpr(rm) {
2600
- let opcode = 0xb309; // CEBR
2601
- put(sink, &enc_rre(opcode, rn, rm));
2602
- } else {
2603
- let opcode = 0xe7cb; // WFC
2604
- put(sink, &enc_vrr_a(opcode, rn, rm, 2, 0, 0));
2605
- }
2606
- }
2607
- &Inst::FpuCmp64 { rn, rm } => {
2608
- if is_fpr(rn) && is_fpr(rm) {
2609
- let opcode = 0xb319; // CDBR
2610
- put(sink, &enc_rre(opcode, rn, rm));
2611
- } else {
2612
- let opcode = 0xe7cb; // WFC
2613
- put(sink, &enc_vrr_a(opcode, rn, rm, 3, 0, 0));
2614
- }
2615
- }
2616
-
2617
- &Inst::VecRRR { op, rd, rn, rm } => {
2618
- let (opcode, m4) = match op {
2619
- VecBinaryOp::Add8x16 => (0xe7f3, 0), // VAB
2620
- VecBinaryOp::Add16x8 => (0xe7f3, 1), // VAH
2621
- VecBinaryOp::Add32x4 => (0xe7f3, 2), // VAF
2622
- VecBinaryOp::Add64x2 => (0xe7f3, 3), // VAG
2623
- VecBinaryOp::Add128 => (0xe7f3, 4), // VAQ
2624
- VecBinaryOp::Sub8x16 => (0xe7f7, 0), // VSB
2625
- VecBinaryOp::Sub16x8 => (0xe7f7, 1), // VSH
2626
- VecBinaryOp::Sub32x4 => (0xe7f7, 2), // VSF
2627
- VecBinaryOp::Sub64x2 => (0xe7f7, 3), // VSG
2628
- VecBinaryOp::Sub128 => (0xe7f7, 4), // VSQ
2629
- VecBinaryOp::Mul8x16 => (0xe7a2, 0), // VMLB
2630
- VecBinaryOp::Mul16x8 => (0xe7a2, 1), // VMLHW
2631
- VecBinaryOp::Mul32x4 => (0xe7a2, 2), // VMLF
2632
- VecBinaryOp::UMulHi8x16 => (0xe7a1, 0), // VMLHB
2633
- VecBinaryOp::UMulHi16x8 => (0xe7a1, 1), // VMLHH
2634
- VecBinaryOp::UMulHi32x4 => (0xe7a1, 2), // VMLHF
2635
- VecBinaryOp::SMulHi8x16 => (0xe7a3, 0), // VMHB
2636
- VecBinaryOp::SMulHi16x8 => (0xe7a3, 1), // VMHH
2637
- VecBinaryOp::SMulHi32x4 => (0xe7a3, 2), // VMHF
2638
- VecBinaryOp::UMulEven8x16 => (0xe7a4, 0), // VMLEB
2639
- VecBinaryOp::UMulEven16x8 => (0xe7a4, 1), // VMLEH
2640
- VecBinaryOp::UMulEven32x4 => (0xe7a4, 2), // VMLEF
2641
- VecBinaryOp::SMulEven8x16 => (0xe7a6, 0), // VMEB
2642
- VecBinaryOp::SMulEven16x8 => (0xe7a6, 1), // VMEH
2643
- VecBinaryOp::SMulEven32x4 => (0xe7a6, 2), // VMEF
2644
- VecBinaryOp::UMulOdd8x16 => (0xe7a5, 0), // VMLOB
2645
- VecBinaryOp::UMulOdd16x8 => (0xe7a5, 1), // VMLOH
2646
- VecBinaryOp::UMulOdd32x4 => (0xe7a5, 2), // VMLOF
2647
- VecBinaryOp::SMulOdd8x16 => (0xe7a7, 0), // VMOB
2648
- VecBinaryOp::SMulOdd16x8 => (0xe7a7, 1), // VMOH
2649
- VecBinaryOp::SMulOdd32x4 => (0xe7a7, 2), // VMOF
2650
- VecBinaryOp::UMax8x16 => (0xe7fd, 0), // VMXLB
2651
- VecBinaryOp::UMax16x8 => (0xe7fd, 1), // VMXLH
2652
- VecBinaryOp::UMax32x4 => (0xe7fd, 2), // VMXLF
2653
- VecBinaryOp::UMax64x2 => (0xe7fd, 3), // VMXLG
2654
- VecBinaryOp::SMax8x16 => (0xe7ff, 0), // VMXB
2655
- VecBinaryOp::SMax16x8 => (0xe7ff, 1), // VMXH
2656
- VecBinaryOp::SMax32x4 => (0xe7ff, 2), // VMXF
2657
- VecBinaryOp::SMax64x2 => (0xe7ff, 3), // VMXG
2658
- VecBinaryOp::UMin8x16 => (0xe7fc, 0), // VMNLB
2659
- VecBinaryOp::UMin16x8 => (0xe7fc, 1), // VMNLH
2660
- VecBinaryOp::UMin32x4 => (0xe7fc, 2), // VMNLF
2661
- VecBinaryOp::UMin64x2 => (0xe7fc, 3), // VMNLG
2662
- VecBinaryOp::SMin8x16 => (0xe7fe, 0), // VMNB
2663
- VecBinaryOp::SMin16x8 => (0xe7fe, 1), // VMNH
2664
- VecBinaryOp::SMin32x4 => (0xe7fe, 2), // VMNF
2665
- VecBinaryOp::SMin64x2 => (0xe7fe, 3), // VMNG
2666
- VecBinaryOp::UAvg8x16 => (0xe7f0, 0), // VAVGLB
2667
- VecBinaryOp::UAvg16x8 => (0xe7f0, 1), // VAVGLH
2668
- VecBinaryOp::UAvg32x4 => (0xe7f0, 2), // VAVGLF
2669
- VecBinaryOp::UAvg64x2 => (0xe7f0, 3), // VAVGLG
2670
- VecBinaryOp::SAvg8x16 => (0xe7f2, 0), // VAVGB
2671
- VecBinaryOp::SAvg16x8 => (0xe7f2, 1), // VAVGH
2672
- VecBinaryOp::SAvg32x4 => (0xe7f2, 2), // VAVGF
2673
- VecBinaryOp::SAvg64x2 => (0xe7f2, 3), // VAVGG
2674
- VecBinaryOp::And128 => (0xe768, 0), // VN
2675
- VecBinaryOp::Orr128 => (0xe76a, 0), // VO
2676
- VecBinaryOp::Xor128 => (0xe76d, 0), // VX
2677
- VecBinaryOp::NotAnd128 => (0xe76e, 0), // VNN
2678
- VecBinaryOp::NotOrr128 => (0xe76b, 0), // VNO
2679
- VecBinaryOp::NotXor128 => (0xe76c, 0), // VNX
2680
- VecBinaryOp::AndNot128 => (0xe769, 0), // VNC
2681
- VecBinaryOp::OrrNot128 => (0xe76f, 0), // VOC
2682
- VecBinaryOp::BitPermute128 => (0xe785, 0), // VBPERM
2683
- VecBinaryOp::LShLByByte128 => (0xe775, 0), // VSLB
2684
- VecBinaryOp::LShRByByte128 => (0xe77d, 0), // VSRLB
2685
- VecBinaryOp::AShRByByte128 => (0xe77f, 0), // VSRAB
2686
- VecBinaryOp::LShLByBit128 => (0xe774, 0), // VSL
2687
- VecBinaryOp::LShRByBit128 => (0xe77c, 0), // VSRL
2688
- VecBinaryOp::AShRByBit128 => (0xe77e, 0), // VSRA
2689
- VecBinaryOp::Pack16x8 => (0xe794, 1), // VPKH
2690
- VecBinaryOp::Pack32x4 => (0xe794, 2), // VPKF
2691
- VecBinaryOp::Pack64x2 => (0xe794, 3), // VPKG
2692
- VecBinaryOp::PackUSat16x8 => (0xe795, 1), // VPKLSH
2693
- VecBinaryOp::PackUSat32x4 => (0xe795, 2), // VPKLSF
2694
- VecBinaryOp::PackUSat64x2 => (0xe795, 3), // VPKLSG
2695
- VecBinaryOp::PackSSat16x8 => (0xe797, 1), // VPKSH
2696
- VecBinaryOp::PackSSat32x4 => (0xe797, 2), // VPKSF
2697
- VecBinaryOp::PackSSat64x2 => (0xe797, 3), // VPKSG
2698
- VecBinaryOp::MergeLow8x16 => (0xe760, 0), // VMRLB
2699
- VecBinaryOp::MergeLow16x8 => (0xe760, 1), // VMRLH
2700
- VecBinaryOp::MergeLow32x4 => (0xe760, 2), // VMRLF
2701
- VecBinaryOp::MergeLow64x2 => (0xe760, 3), // VMRLG
2702
- VecBinaryOp::MergeHigh8x16 => (0xe761, 0), // VMRHB
2703
- VecBinaryOp::MergeHigh16x8 => (0xe761, 1), // VMRHH
2704
- VecBinaryOp::MergeHigh32x4 => (0xe761, 2), // VMRHF
2705
- VecBinaryOp::MergeHigh64x2 => (0xe761, 3), // VMRHG
2706
- };
2707
-
2708
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
2709
- }
2710
- &Inst::VecRR { op, rd, rn } => {
2711
- let (opcode, m3) = match op {
2712
- VecUnaryOp::Abs8x16 => (0xe7df, 0), // VLPB
2713
- VecUnaryOp::Abs16x8 => (0xe7df, 1), // VLPH
2714
- VecUnaryOp::Abs32x4 => (0xe7df, 2), // VLPF
2715
- VecUnaryOp::Abs64x2 => (0xe7df, 3), // VLPG
2716
- VecUnaryOp::Neg8x16 => (0xe7de, 0), // VLCB
2717
- VecUnaryOp::Neg16x8 => (0xe7de, 1), // VLCH
2718
- VecUnaryOp::Neg32x4 => (0xe7de, 2), // VLCF
2719
- VecUnaryOp::Neg64x2 => (0xe7de, 3), // VLCG
2720
- VecUnaryOp::Popcnt8x16 => (0xe750, 0), // VPOPCTB
2721
- VecUnaryOp::Popcnt16x8 => (0xe750, 1), // VPOPCTH
2722
- VecUnaryOp::Popcnt32x4 => (0xe750, 2), // VPOPCTF
2723
- VecUnaryOp::Popcnt64x2 => (0xe750, 3), // VPOPCTG
2724
- VecUnaryOp::Clz8x16 => (0xe753, 0), // VCLZB
2725
- VecUnaryOp::Clz16x8 => (0xe753, 1), // VCLZH
2726
- VecUnaryOp::Clz32x4 => (0xe753, 2), // VCLZF
2727
- VecUnaryOp::Clz64x2 => (0xe753, 3), // VCLZG
2728
- VecUnaryOp::Ctz8x16 => (0xe752, 0), // VCTZB
2729
- VecUnaryOp::Ctz16x8 => (0xe752, 1), // VCTZH
2730
- VecUnaryOp::Ctz32x4 => (0xe752, 2), // VCTZF
2731
- VecUnaryOp::Ctz64x2 => (0xe752, 3), // VCTZG
2732
- VecUnaryOp::UnpackULow8x16 => (0xe7d4, 0), // VUPLLB
2733
- VecUnaryOp::UnpackULow16x8 => (0xe7d4, 1), // VUPLLH
2734
- VecUnaryOp::UnpackULow32x4 => (0xe7d4, 2), // VUPLLF
2735
- VecUnaryOp::UnpackUHigh8x16 => (0xe7d5, 0), // VUPLHB
2736
- VecUnaryOp::UnpackUHigh16x8 => (0xe7d5, 1), // VUPLHH
2737
- VecUnaryOp::UnpackUHigh32x4 => (0xe7d5, 2), // VUPLHF
2738
- VecUnaryOp::UnpackSLow8x16 => (0xe7d6, 0), // VUPLB
2739
- VecUnaryOp::UnpackSLow16x8 => (0xe7d6, 1), // VUPLH
2740
- VecUnaryOp::UnpackSLow32x4 => (0xe7d6, 2), // VUPLF
2741
- VecUnaryOp::UnpackSHigh8x16 => (0xe7d7, 0), // VUPHB
2742
- VecUnaryOp::UnpackSHigh16x8 => (0xe7d7, 1), // VUPHH
2743
- VecUnaryOp::UnpackSHigh32x4 => (0xe7d7, 2), // VUPHF
2744
- };
2745
-
2746
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, 0, 0));
2747
- }
2748
- &Inst::VecShiftRR {
2749
- shift_op,
2750
- rd,
2751
- rn,
2752
- shift_imm,
2753
- shift_reg,
2754
- } => {
2755
- let (opcode, m4) = match shift_op {
2756
- VecShiftOp::RotL8x16 => (0xe733, 0), // VERLLB
2757
- VecShiftOp::RotL16x8 => (0xe733, 1), // VERLLH
2758
- VecShiftOp::RotL32x4 => (0xe733, 2), // VERLLF
2759
- VecShiftOp::RotL64x2 => (0xe733, 3), // VERLLG
2760
- VecShiftOp::LShL8x16 => (0xe730, 0), // VESLB
2761
- VecShiftOp::LShL16x8 => (0xe730, 1), // VESLH
2762
- VecShiftOp::LShL32x4 => (0xe730, 2), // VESLF
2763
- VecShiftOp::LShL64x2 => (0xe730, 3), // VESLG
2764
- VecShiftOp::LShR8x16 => (0xe738, 0), // VESRLB
2765
- VecShiftOp::LShR16x8 => (0xe738, 1), // VESRLH
2766
- VecShiftOp::LShR32x4 => (0xe738, 2), // VESRLF
2767
- VecShiftOp::LShR64x2 => (0xe738, 3), // VESRLG
2768
- VecShiftOp::AShR8x16 => (0xe73a, 0), // VESRAB
2769
- VecShiftOp::AShR16x8 => (0xe73a, 1), // VESRAH
2770
- VecShiftOp::AShR32x4 => (0xe73a, 2), // VESRAF
2771
- VecShiftOp::AShR64x2 => (0xe73a, 3), // VESRAG
2772
- };
2773
- put(
2774
- sink,
2775
- &enc_vrs_a(opcode, rd.to_reg(), shift_reg, shift_imm.into(), rn, m4),
2776
- );
2777
- }
2778
- &Inst::VecSelect { rd, rn, rm, ra } => {
2779
- let opcode = 0xe78d; // VSEL
2780
- put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
2781
- }
2782
- &Inst::VecPermute { rd, rn, rm, ra } => {
2783
- let opcode = 0xe78c; // VPERM
2784
- put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
2785
- }
2786
- &Inst::VecPermuteDWImm {
2787
- rd,
2788
- rn,
2789
- rm,
2790
- idx1,
2791
- idx2,
2792
- } => {
2793
- let m4 = (idx1 & 1) * 4 + (idx2 & 1);
2794
-
2795
- let opcode = 0xe784; // VPDI
2796
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
2797
- }
2798
- &Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
2799
- let (opcode, m4) = match op {
2800
- VecIntCmpOp::CmpEq8x16 => (0xe7f8, 0), // VCEQB
2801
- VecIntCmpOp::CmpEq16x8 => (0xe7f8, 1), // VCEQH
2802
- VecIntCmpOp::CmpEq32x4 => (0xe7f8, 2), // VCEQF
2803
- VecIntCmpOp::CmpEq64x2 => (0xe7f8, 3), // VCEQG
2804
- VecIntCmpOp::SCmpHi8x16 => (0xe7fb, 0), // VCHB
2805
- VecIntCmpOp::SCmpHi16x8 => (0xe7fb, 1), // VCHH
2806
- VecIntCmpOp::SCmpHi32x4 => (0xe7fb, 2), // VCHG
2807
- VecIntCmpOp::SCmpHi64x2 => (0xe7fb, 3), // VCHG
2808
- VecIntCmpOp::UCmpHi8x16 => (0xe7f9, 0), // VCHLB
2809
- VecIntCmpOp::UCmpHi16x8 => (0xe7f9, 1), // VCHLH
2810
- VecIntCmpOp::UCmpHi32x4 => (0xe7f9, 2), // VCHLG
2811
- VecIntCmpOp::UCmpHi64x2 => (0xe7f9, 3), // VCHLG
2812
- };
2813
- let m5 = match self {
2814
- &Inst::VecIntCmp { .. } => 0,
2815
- &Inst::VecIntCmpS { .. } => 1,
2816
- _ => unreachable!(),
2817
- };
2818
-
2819
- put(sink, &enc_vrr_b(opcode, rd.to_reg(), rn, rm, m4, m5));
2820
- }
2821
- &Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
2822
- let (opcode, m4) = match op {
2823
- VecFloatCmpOp::CmpEq32x4 => (0xe7e8, 2), // VFCESB
2824
- VecFloatCmpOp::CmpEq64x2 => (0xe7e8, 3), // VFCEDB
2825
- VecFloatCmpOp::CmpHi32x4 => (0xe7eb, 2), // VFCHSB
2826
- VecFloatCmpOp::CmpHi64x2 => (0xe7eb, 3), // VFCHDB
2827
- VecFloatCmpOp::CmpHiEq32x4 => (0xe7ea, 2), // VFCHESB
2828
- VecFloatCmpOp::CmpHiEq64x2 => (0xe7ea, 3), // VFCHEDB
2829
- };
2830
- let m6 = match self {
2831
- &Inst::VecFloatCmp { .. } => 0,
2832
- &Inst::VecFloatCmpS { .. } => 1,
2833
- _ => unreachable!(),
2834
- };
2835
-
2836
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, m6));
2837
- }
2838
- &Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
2839
- // Synthetic instruction to compare 128-bit values.
2840
- // Sets CC 1 if rn > rm, sets a different CC otherwise.
2841
-
2842
- // Use VECTOR ELEMENT COMPARE to compare the high parts.
2843
- // Swap the inputs to get:
2844
- // CC 1 if high(rn) > high(rm)
2845
- // CC 2 if high(rn) < high(rm)
2846
- // CC 0 if high(rn) == high(rm)
2847
- let (opcode, m3) = match self {
2848
- &Inst::VecInt128SCmpHi { .. } => (0xe7db, 3), // VECG
2849
- &Inst::VecInt128UCmpHi { .. } => (0xe7d9, 3), // VECLG
2850
- _ => unreachable!(),
2851
- };
2852
- put(sink, &enc_vrr_a(opcode, rm, rn, m3, 0, 0));
2853
-
2854
- // If CC != 0, we'd done, so jump over the next instruction.
2855
- let opcode = 0xa74; // BCR
2856
- put(sink, &enc_ri_c(opcode, 7, 4 + 6));
2857
-
2858
- // Otherwise, use VECTOR COMPARE HIGH LOGICAL.
2859
- // Since we already know the high parts are equal, the CC
2860
- // result will only depend on the low parts:
2861
- // CC 1 if low(rn) > low(rm)
2862
- // CC 3 if low(rn) <= low(rm)
2863
- let inst = Inst::VecIntCmpS {
2864
- op: VecIntCmpOp::UCmpHi64x2,
2865
- // N.B.: This is the first write to tmp, and it happens
2866
- // after all uses of rn and rm. If this were to ever
2867
- // change, tmp would have to become an early-def.
2868
- rd: tmp,
2869
- rn,
2870
- rm,
2871
- };
2872
- inst.emit(sink, emit_info, state);
2873
- }
2874
-
2875
- &Inst::VecLoad { rd, ref mem }
2876
- | &Inst::VecLoadRev { rd, ref mem }
2877
- | &Inst::VecLoadByte16Rev { rd, ref mem }
2878
- | &Inst::VecLoadByte32Rev { rd, ref mem }
2879
- | &Inst::VecLoadByte64Rev { rd, ref mem }
2880
- | &Inst::VecLoadElt16Rev { rd, ref mem }
2881
- | &Inst::VecLoadElt32Rev { rd, ref mem }
2882
- | &Inst::VecLoadElt64Rev { rd, ref mem } => {
2883
- let mem = mem.clone();
2884
-
2885
- let (opcode, m3) = match self {
2886
- &Inst::VecLoad { .. } => (0xe706, 0), // VL
2887
- &Inst::VecLoadRev { .. } => (0xe606, 4), // VLBRQ
2888
- &Inst::VecLoadByte16Rev { .. } => (0xe606, 1), // VLBRH
2889
- &Inst::VecLoadByte32Rev { .. } => (0xe606, 2), // VLBRF
2890
- &Inst::VecLoadByte64Rev { .. } => (0xe606, 3), // VLBRG
2891
- &Inst::VecLoadElt16Rev { .. } => (0xe607, 1), // VLERH
2892
- &Inst::VecLoadElt32Rev { .. } => (0xe607, 2), // VLERF
2893
- &Inst::VecLoadElt64Rev { .. } => (0xe607, 3), // VLERG
2894
- _ => unreachable!(),
2895
- };
2896
- mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
2897
- }
2898
- &Inst::VecStore { rd, ref mem }
2899
- | &Inst::VecStoreRev { rd, ref mem }
2900
- | &Inst::VecStoreByte16Rev { rd, ref mem }
2901
- | &Inst::VecStoreByte32Rev { rd, ref mem }
2902
- | &Inst::VecStoreByte64Rev { rd, ref mem }
2903
- | &Inst::VecStoreElt16Rev { rd, ref mem }
2904
- | &Inst::VecStoreElt32Rev { rd, ref mem }
2905
- | &Inst::VecStoreElt64Rev { rd, ref mem } => {
2906
- let mem = mem.clone();
2907
-
2908
- let (opcode, m3) = match self {
2909
- &Inst::VecStore { .. } => (0xe70e, 0), // VST
2910
- &Inst::VecStoreRev { .. } => (0xe60e, 4), // VSTBRQ
2911
- &Inst::VecStoreByte16Rev { .. } => (0xe60e, 1), // VSTBRH
2912
- &Inst::VecStoreByte32Rev { .. } => (0xe60e, 2), // VSTBRF
2913
- &Inst::VecStoreByte64Rev { .. } => (0xe60e, 3), // VSTBRG
2914
- &Inst::VecStoreElt16Rev { .. } => (0xe60f, 1), // VSTERH
2915
- &Inst::VecStoreElt32Rev { .. } => (0xe60f, 2), // VSTERF
2916
- &Inst::VecStoreElt64Rev { .. } => (0xe60f, 3), // VSTERG
2917
- _ => unreachable!(),
2918
- };
2919
- mem_vrx_emit(rd, &mem, opcode, m3, true, sink, emit_info, state);
2920
- }
2921
- &Inst::VecLoadReplicate { size, rd, ref mem }
2922
- | &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
2923
- let mem = mem.clone();
2924
-
2925
- let (opcode, m3) = match (self, size) {
2926
- (&Inst::VecLoadReplicate { .. }, 8) => (0xe705, 0), // VLREPB
2927
- (&Inst::VecLoadReplicate { .. }, 16) => (0xe705, 1), // VLREPH
2928
- (&Inst::VecLoadReplicate { .. }, 32) => (0xe705, 2), // VLREPF
2929
- (&Inst::VecLoadReplicate { .. }, 64) => (0xe705, 3), // VLREPG
2930
- (&Inst::VecLoadReplicateRev { .. }, 16) => (0xe605, 1), // VLREPBRH
2931
- (&Inst::VecLoadReplicateRev { .. }, 32) => (0xe605, 2), // VLREPBRF
2932
- (&Inst::VecLoadReplicateRev { .. }, 64) => (0xe605, 3), // VLREPBRG
2933
- _ => unreachable!(),
2934
- };
2935
- mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
2936
- }
2937
-
2938
- &Inst::VecMov { rd, rn } => {
2939
- let opcode = 0xe756; // VLR
2940
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2941
- }
2942
- &Inst::VecCMov { rd, cond, ri, rm } => {
2943
- debug_assert_eq!(rd.to_reg(), ri);
2944
-
2945
- let opcode = 0xa74; // BCR
2946
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2947
- let opcode = 0xe756; // VLR
2948
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2949
- }
2950
- &Inst::MovToVec128 { rd, rn, rm } => {
2951
- let opcode = 0xe762; // VLVGP
2952
- put(sink, &enc_vrr_f(opcode, rd.to_reg(), rn, rm));
2953
- }
2954
- &Inst::VecLoadConst { rd, const_data } => {
2955
- let opcode = 0xa75; // BRAS
2956
- let reg = writable_spilltmp_reg().to_reg();
2957
- put(sink, &enc_ri_b(opcode, reg, 20));
2958
- for i in const_data.to_be_bytes().iter() {
2959
- sink.put1(*i);
2960
- }
2961
- let inst = Inst::VecLoad {
2962
- rd,
2963
- mem: MemArg::reg(reg, MemFlags::trusted()),
2964
- };
2965
- inst.emit(sink, emit_info, state);
2966
- }
2967
- &Inst::VecLoadConstReplicate {
2968
- size,
2969
- rd,
2970
- const_data,
2971
- } => {
2972
- let opcode = 0xa75; // BRAS
2973
- let reg = writable_spilltmp_reg().to_reg();
2974
- put(sink, &enc_ri_b(opcode, reg, (4 + size / 8) as i32));
2975
- for i in 0..size / 8 {
2976
- sink.put1((const_data >> (size - 8 - 8 * i)) as u8);
2977
- }
2978
- let inst = Inst::VecLoadReplicate {
2979
- size,
2980
- rd,
2981
- mem: MemArg::reg(reg, MemFlags::trusted()),
2982
- };
2983
- inst.emit(sink, emit_info, state);
2984
- }
2985
- &Inst::VecImmByteMask { rd, mask } => {
2986
- let opcode = 0xe744; // VGBM
2987
- put(sink, &enc_vri_a(opcode, rd.to_reg(), mask, 0));
2988
- }
2989
- &Inst::VecImmBitMask {
2990
- size,
2991
- rd,
2992
- start_bit,
2993
- end_bit,
2994
- } => {
2995
- let (opcode, m4) = match size {
2996
- 8 => (0xe746, 0), // VGMB
2997
- 16 => (0xe746, 1), // VGMH
2998
- 32 => (0xe746, 2), // VGMF
2999
- 64 => (0xe746, 3), // VGMG
3000
- _ => unreachable!(),
3001
- };
3002
- put(
3003
- sink,
3004
- &enc_vri_b(opcode, rd.to_reg(), start_bit, end_bit, m4),
3005
- );
3006
- }
3007
- &Inst::VecImmReplicate { size, rd, imm } => {
3008
- let (opcode, m3) = match size {
3009
- 8 => (0xe745, 0), // VREPIB
3010
- 16 => (0xe745, 1), // VREPIH
3011
- 32 => (0xe745, 2), // VREPIF
3012
- 64 => (0xe745, 3), // VREPIG
3013
- _ => unreachable!(),
3014
- };
3015
- put(sink, &enc_vri_a(opcode, rd.to_reg(), imm as u16, m3));
3016
- }
3017
- &Inst::VecLoadLane {
3018
- size,
3019
- rd,
3020
- ri,
3021
- ref mem,
3022
- lane_imm,
3023
- }
3024
- | &Inst::VecLoadLaneRev {
3025
- size,
3026
- rd,
3027
- ri,
3028
- ref mem,
3029
- lane_imm,
3030
- } => {
3031
- debug_assert_eq!(rd.to_reg(), ri);
3032
- let mem = mem.clone();
3033
-
3034
- let opcode_vrx = match (self, size) {
3035
- (&Inst::VecLoadLane { .. }, 8) => 0xe700, // VLEB
3036
- (&Inst::VecLoadLane { .. }, 16) => 0xe701, // VLEH
3037
- (&Inst::VecLoadLane { .. }, 32) => 0xe703, // VLEF
3038
- (&Inst::VecLoadLane { .. }, 64) => 0xe702, // VLEG
3039
- (&Inst::VecLoadLaneRev { .. }, 16) => 0xe601, // VLEBRH
3040
- (&Inst::VecLoadLaneRev { .. }, 32) => 0xe603, // VLEBRF
3041
- (&Inst::VecLoadLaneRev { .. }, 64) => 0xe602, // VLEBRG
3042
- _ => unreachable!(),
3043
- };
3044
-
3045
- let rd = rd.to_reg();
3046
- mem_vrx_emit(
3047
- rd,
3048
- &mem,
3049
- opcode_vrx,
3050
- lane_imm.into(),
3051
- true,
3052
- sink,
3053
- emit_info,
3054
- state,
3055
- );
3056
- }
3057
- &Inst::VecLoadLaneUndef {
3058
- size,
3059
- rd,
3060
- ref mem,
3061
- lane_imm,
3062
- }
3063
- | &Inst::VecLoadLaneRevUndef {
3064
- size,
3065
- rd,
3066
- ref mem,
3067
- lane_imm,
3068
- } => {
3069
- let mem = mem.clone();
3070
-
3071
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
3072
- (&Inst::VecLoadLaneUndef { .. }, 8) => (0xe700, None, None), // VLEB
3073
- (&Inst::VecLoadLaneUndef { .. }, 16) => (0xe701, None, None), // VLEH
3074
- (&Inst::VecLoadLaneUndef { .. }, 32) => (0xe703, Some(0x78), Some(0xed64)), // VLEF, LE(Y)
3075
- (&Inst::VecLoadLaneUndef { .. }, 64) => (0xe702, Some(0x68), Some(0xed65)), // VLEG, LD(Y)
3076
- (&Inst::VecLoadLaneRevUndef { .. }, 16) => (0xe601, None, None), // VLEBRH
3077
- (&Inst::VecLoadLaneRevUndef { .. }, 32) => (0xe603, None, None), // VLEBRF
3078
- (&Inst::VecLoadLaneRevUndef { .. }, 64) => (0xe602, None, None), // VLEBRG
3079
- _ => unreachable!(),
3080
- };
3081
-
3082
- let rd = rd.to_reg();
3083
- if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
3084
- mem_emit(
3085
- rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
3086
- );
3087
- } else {
3088
- mem_vrx_emit(
3089
- rd,
3090
- &mem,
3091
- opcode_vrx,
3092
- lane_imm.into(),
3093
- true,
3094
- sink,
3095
- emit_info,
3096
- state,
3097
- );
3098
- }
3099
- }
3100
- &Inst::VecStoreLane {
3101
- size,
3102
- rd,
3103
- ref mem,
3104
- lane_imm,
3105
- }
3106
- | &Inst::VecStoreLaneRev {
3107
- size,
3108
- rd,
3109
- ref mem,
3110
- lane_imm,
3111
- } => {
3112
- let mem = mem.clone();
3113
-
3114
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
3115
- (&Inst::VecStoreLane { .. }, 8) => (0xe708, None, None), // VSTEB
3116
- (&Inst::VecStoreLane { .. }, 16) => (0xe709, None, None), // VSTEH
3117
- (&Inst::VecStoreLane { .. }, 32) => (0xe70b, Some(0x70), Some(0xed66)), // VSTEF, STE(Y)
3118
- (&Inst::VecStoreLane { .. }, 64) => (0xe70a, Some(0x60), Some(0xed67)), // VSTEG, STD(Y)
3119
- (&Inst::VecStoreLaneRev { .. }, 16) => (0xe609, None, None), // VSTEBRH
3120
- (&Inst::VecStoreLaneRev { .. }, 32) => (0xe60b, None, None), // VSTEBRF
3121
- (&Inst::VecStoreLaneRev { .. }, 64) => (0xe60a, None, None), // VSTEBRG
3122
- _ => unreachable!(),
3123
- };
3124
-
3125
- if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
3126
- mem_emit(
3127
- rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
3128
- );
3129
- } else {
3130
- mem_vrx_emit(
3131
- rd,
3132
- &mem,
3133
- opcode_vrx,
3134
- lane_imm.into(),
3135
- true,
3136
- sink,
3137
- emit_info,
3138
- state,
3139
- );
3140
- }
3141
- }
3142
- &Inst::VecInsertLane {
3143
- size,
3144
- rd,
3145
- ri,
3146
- rn,
3147
- lane_imm,
3148
- lane_reg,
3149
- } => {
3150
- debug_assert_eq!(rd.to_reg(), ri);
3151
-
3152
- let (opcode_vrs, m4) = match size {
3153
- 8 => (0xe722, 0), // VLVGB
3154
- 16 => (0xe722, 1), // VLVGH
3155
- 32 => (0xe722, 2), // VLVGF
3156
- 64 => (0xe722, 3), // VLVGG
3157
- _ => unreachable!(),
3158
- };
3159
- put(
3160
- sink,
3161
- &enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3162
- );
3163
- }
3164
- &Inst::VecInsertLaneUndef {
3165
- size,
3166
- rd,
3167
- rn,
3168
- lane_imm,
3169
- lane_reg,
3170
- } => {
3171
- let (opcode_vrs, m4, opcode_rre) = match size {
3172
- 8 => (0xe722, 0, None), // VLVGB
3173
- 16 => (0xe722, 1, None), // VLVGH
3174
- 32 => (0xe722, 2, None), // VLVGF
3175
- 64 => (0xe722, 3, Some(0xb3c1)), // VLVGG, LDGR
3176
- _ => unreachable!(),
3177
- };
3178
- if opcode_rre.is_some()
3179
- && lane_imm == 0
3180
- && lane_reg == zero_reg()
3181
- && is_fpr(rd.to_reg())
3182
- {
3183
- put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
3184
- } else {
3185
- put(
3186
- sink,
3187
- &enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3188
- );
3189
- }
3190
- }
3191
- &Inst::VecExtractLane {
3192
- size,
3193
- rd,
3194
- rn,
3195
- lane_imm,
3196
- lane_reg,
3197
- } => {
3198
- let (opcode_vrs, m4, opcode_rre) = match size {
3199
- 8 => (0xe721, 0, None), // VLGVB
3200
- 16 => (0xe721, 1, None), // VLGVH
3201
- 32 => (0xe721, 2, None), // VLGVF
3202
- 64 => (0xe721, 3, Some(0xb3cd)), // VLGVG, LGDR
3203
- _ => unreachable!(),
3204
- };
3205
- if opcode_rre.is_some() && lane_imm == 0 && lane_reg == zero_reg() && is_fpr(rn) {
3206
- put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
3207
- } else {
3208
- put(
3209
- sink,
3210
- &enc_vrs_c(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3211
- );
3212
- }
3213
- }
3214
- &Inst::VecInsertLaneImm {
3215
- size,
3216
- rd,
3217
- ri,
3218
- imm,
3219
- lane_imm,
3220
- } => {
3221
- debug_assert_eq!(rd.to_reg(), ri);
3222
-
3223
- let opcode = match size {
3224
- 8 => 0xe740, // VLEIB
3225
- 16 => 0xe741, // LEIVH
3226
- 32 => 0xe743, // VLEIF
3227
- 64 => 0xe742, // VLEIG
3228
- _ => unreachable!(),
3229
- };
3230
- put(
3231
- sink,
3232
- &enc_vri_a(opcode, rd.to_reg(), imm as u16, lane_imm.into()),
3233
- );
3234
- }
3235
- &Inst::VecReplicateLane {
3236
- size,
3237
- rd,
3238
- rn,
3239
- lane_imm,
3240
- } => {
3241
- let (opcode, m4) = match size {
3242
- 8 => (0xe74d, 0), // VREPB
3243
- 16 => (0xe74d, 1), // VREPH
3244
- 32 => (0xe74d, 2), // VREPF
3245
- 64 => (0xe74d, 3), // VREPG
3246
- _ => unreachable!(),
3247
- };
3248
- put(
3249
- sink,
3250
- &enc_vri_c(opcode, rd.to_reg(), lane_imm.into(), rn, m4),
3251
- );
3252
- }
3253
-
3254
- &Inst::AllocateArgs { size } => {
3255
- let inst = if let Ok(size) = i16::try_from(size) {
3256
- Inst::AluRSImm16 {
3257
- alu_op: ALUOp::Add64,
3258
- rd: writable_stack_reg(),
3259
- ri: stack_reg(),
3260
- imm: -size,
3261
- }
3262
- } else {
3263
- Inst::AluRUImm32 {
3264
- alu_op: ALUOp::SubLogical64,
3265
- rd: writable_stack_reg(),
3266
- ri: stack_reg(),
3267
- imm: size,
3268
- }
3269
- };
3270
- inst.emit(sink, emit_info, state);
3271
- state.nominal_sp_offset += size;
3272
- }
3273
- &Inst::Call { link, ref info } => {
3274
- debug_assert_eq!(link.to_reg(), gpr(14));
3275
-
3276
- let opcode = 0xc05; // BRASL
3277
-
3278
- // Add relocation for target function. This has to be done *before*
3279
- // the S390xTlsGdCall relocation if any, to ensure linker relaxation
3280
- // works correctly.
3281
- sink.add_reloc_at_offset(2, Reloc::S390xPLTRel32Dbl, &info.dest, 2);
3282
-
3283
- // Add relocation for TLS libcalls to enable linker optimizations.
3284
- match &info.tls_symbol {
3285
- None => {}
3286
- Some(SymbolReloc::TlsGd { name }) => {
3287
- sink.add_reloc(Reloc::S390xTlsGdCall, name, 0)
3288
- }
3289
- _ => unreachable!(),
3290
- }
3291
-
3292
- let (stack_map, user_stack_map) = state.take_stack_map();
3293
- if let Some(s) = stack_map {
3294
- sink.add_stack_map(StackMapExtent::UpcomingBytes(6), s);
3295
- }
3296
- if let Some(s) = user_stack_map {
3297
- let offset = sink.cur_offset() + 6;
3298
- sink.push_user_stack_map(state, offset, s);
3299
- }
3300
-
3301
- put(sink, &enc_ril_b(opcode, link.to_reg(), 0));
3302
- sink.add_call_site();
3303
-
3304
- state.nominal_sp_offset -= info.callee_pop_size;
3305
- }
3306
- &Inst::CallInd { link, ref info } => {
3307
- debug_assert_eq!(link.to_reg(), gpr(14));
3308
- let rn = info.rn;
3309
-
3310
- let (stack_map, user_stack_map) = state.take_stack_map();
3311
- if let Some(s) = stack_map {
3312
- sink.add_stack_map(StackMapExtent::UpcomingBytes(2), s);
3313
- }
3314
- if let Some(s) = user_stack_map {
3315
- let offset = sink.cur_offset() + 2;
3316
- sink.push_user_stack_map(state, offset, s);
3317
- }
3318
-
3319
- let opcode = 0x0d; // BASR
3320
- put(sink, &enc_rr(opcode, link.to_reg(), rn));
3321
- sink.add_call_site();
3322
-
3323
- state.nominal_sp_offset -= info.callee_pop_size;
3324
- }
3325
- &Inst::ReturnCall { ref info } => {
3326
- for inst in S390xMachineDeps::gen_tail_epilogue(
3327
- state.frame_layout(),
3328
- info.callee_pop_size,
3329
- None,
3330
- ) {
3331
- inst.emit(sink, emit_info, state);
3332
- }
3333
-
3334
- let opcode = 0xc04; // BCRL
3335
- sink.add_reloc_at_offset(2, Reloc::S390xPLTRel32Dbl, &info.dest, 2);
3336
- put(sink, &enc_ril_c(opcode, 15, 0));
3337
- sink.add_call_site();
3338
- }
3339
- &Inst::ReturnCallInd { ref info } => {
3340
- let mut rn = info.rn;
3341
- for inst in S390xMachineDeps::gen_tail_epilogue(
3342
- state.frame_layout(),
3343
- info.callee_pop_size,
3344
- Some(&mut rn),
3345
- ) {
3346
- inst.emit(sink, emit_info, state);
3347
- }
3348
-
3349
- let opcode = 0x07; // BCR
3350
- put(sink, &enc_rr(opcode, gpr(15), rn));
3351
- sink.add_call_site();
3352
- }
3353
- &Inst::Args { .. } => {}
3354
- &Inst::Rets { .. } => {}
3355
- &Inst::Ret { link } => {
3356
- debug_assert_eq!(link, gpr(14));
3357
- let opcode = 0x07; // BCR
3358
- put(sink, &enc_rr(opcode, gpr(15), link));
3359
- }
3360
- &Inst::Jump { dest } => {
3361
- let off = sink.cur_offset();
3362
- // Indicate that the jump uses a label, if so, so that a fixup can occur later.
3363
- sink.use_label_at_offset(off, dest, LabelUse::BranchRIL);
3364
- sink.add_uncond_branch(off, off + 6, dest);
3365
- // Emit the jump itself.
3366
- let opcode = 0xc04; // BCRL
3367
- put(sink, &enc_ril_c(opcode, 15, 0));
3368
- }
3369
- &Inst::IndirectBr { rn, .. } => {
3370
- let opcode = 0x07; // BCR
3371
- put(sink, &enc_rr(opcode, gpr(15), rn));
3372
- }
3373
- &Inst::CondBr {
3374
- taken,
3375
- not_taken,
3376
- cond,
3377
- } => {
3378
- let opcode = 0xc04; // BCRL
3379
-
3380
- // Conditional part first.
3381
- let cond_off = sink.cur_offset();
3382
- sink.use_label_at_offset(cond_off, taken, LabelUse::BranchRIL);
3383
- let inverted = &enc_ril_c(opcode, cond.invert().bits(), 0);
3384
- sink.add_cond_branch(cond_off, cond_off + 6, taken, inverted);
3385
- put(sink, &enc_ril_c(opcode, cond.bits(), 0));
3386
-
3387
- // Unconditional part next.
3388
- let uncond_off = sink.cur_offset();
3389
- sink.use_label_at_offset(uncond_off, not_taken, LabelUse::BranchRIL);
3390
- sink.add_uncond_branch(uncond_off, uncond_off + 6, not_taken);
3391
- put(sink, &enc_ril_c(opcode, 15, 0));
3392
- }
3393
- &Inst::OneWayCondBr { target, cond } => {
3394
- let opcode = 0xc04; // BCRL
3395
- sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
3396
- put(sink, &enc_ril_c(opcode, cond.bits(), 0));
3397
- }
3398
- &Inst::Nop0 => {}
3399
- &Inst::Nop2 => {
3400
- put(sink, &enc_e(0x0707));
3401
- }
3402
- &Inst::Debugtrap => {
3403
- put(sink, &enc_e(0x0001));
3404
- }
3405
- &Inst::Trap { trap_code } => {
3406
- put_with_trap(sink, &enc_e(0x0000), trap_code);
3407
- }
3408
- &Inst::TrapIf { cond, trap_code } => {
3409
- // We implement a TrapIf as a conditional branch into the middle
3410
- // of the branch (BRCL) instruction itself - those middle two bytes
3411
- // are zero, which matches the trap instruction itself.
3412
- let opcode = 0xc04; // BCRL
3413
- let enc = &enc_ril_c(opcode, cond.bits(), 2);
3414
- debug_assert!(enc.len() == 6 && enc[2] == 0 && enc[3] == 0);
3415
- // The trap must be placed on the last byte of the embedded trap
3416
- // instruction, so we need to emit the encoding in two parts.
3417
- put_with_trap(sink, &enc[0..4], trap_code);
3418
- put(sink, &enc[4..6]);
3419
- }
3420
- &Inst::JTSequence { ridx, ref targets } => {
3421
- let table_label = sink.get_label();
3422
-
3423
- // This sequence is *one* instruction in the vcode, and is expanded only here at
3424
- // emission time, because we cannot allow the regalloc to insert spills/reloads in
3425
- // the middle; we depend on hardcoded PC-rel addressing below.
3426
-
3427
- // Set temp register to address of jump table.
3428
- let rtmp = writable_spilltmp_reg();
3429
- let inst = Inst::LoadAddr {
3430
- rd: rtmp,
3431
- mem: MemArg::Label {
3432
- target: table_label,
3433
- },
3434
- };
3435
- inst.emit(sink, emit_info, state);
3436
-
3437
- // Set temp to target address by adding the value of the jump table entry.
3438
- let inst = Inst::AluRX {
3439
- alu_op: ALUOp::Add64Ext32,
3440
- rd: rtmp,
3441
- ri: rtmp.to_reg(),
3442
- mem: MemArg::reg_plus_reg(rtmp.to_reg(), ridx, MemFlags::trusted()),
3443
- };
3444
- inst.emit(sink, emit_info, state);
3445
-
3446
- // Branch to computed address. (`targets` here is only used for successor queries
3447
- // and is not needed for emission.)
3448
- let inst = Inst::IndirectBr {
3449
- rn: rtmp.to_reg(),
3450
- targets: vec![],
3451
- };
3452
- inst.emit(sink, emit_info, state);
3453
-
3454
- // Emit jump table (table of 32-bit offsets).
3455
- sink.bind_label(table_label, &mut state.ctrl_plane);
3456
- let jt_off = sink.cur_offset();
3457
- for &target in targets.iter() {
3458
- let word_off = sink.cur_offset();
3459
- let off_into_table = word_off - jt_off;
3460
- sink.use_label_at_offset(word_off, target, LabelUse::PCRel32);
3461
- sink.put4(off_into_table.swap_bytes());
3462
- }
3463
-
3464
- // Lowering produces an EmitIsland before using a JTSequence, so we can safely
3465
- // disable the worst-case-size check in this case.
3466
- start_off = sink.cur_offset();
3467
- }
3468
-
3469
- &Inst::Unwind { ref inst } => {
3470
- sink.add_unwind(inst.clone());
3471
- }
3472
-
3473
- &Inst::DummyUse { .. } => {}
3474
- }
3475
-
3476
- let end_off = sink.cur_offset();
3477
- debug_assert!((end_off - start_off) <= Inst::worst_case_size());
3478
-
3479
- state.clear_post_insn();
3480
- }
3481
- }