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