wasmtime 24.0.0 → 25.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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,4919 @@
1
+ ;; x86-64 instruction selection and CLIF-to-MachInst lowering.
2
+
3
+ ;; The main lowering constructor term: takes a clif `Inst` and returns the
4
+ ;; register(s) within which the lowered instruction's result values live.
5
+ (decl partial lower (Inst) InstOutput)
6
+
7
+ ;; A variant of the main lowering constructor term, used for branches.
8
+ ;; The only difference is that it gets an extra argument holding a vector
9
+ ;; of branch targets to be used.
10
+ (decl partial lower_branch (Inst MachLabelSlice) Unit)
11
+
12
+ ;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13
+
14
+ ;; `i64` and smaller.
15
+ (rule (lower (has_type (fits_in_64 ty)
16
+ (iconst (u64_from_imm64 x))))
17
+ (imm ty x))
18
+
19
+ ;; `i128`
20
+ (rule 1 (lower (has_type $I128
21
+ (iconst (u64_from_imm64 x))))
22
+ (value_regs (imm $I64 x)
23
+ (imm $I64 0)))
24
+
25
+ ;;;; Rules for `f16const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26
+
27
+ (rule (lower (f16const (u16_from_ieee16 x)))
28
+ (imm $F16 x))
29
+
30
+ ;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
31
+
32
+ (rule (lower (f32const (u32_from_ieee32 x)))
33
+ (imm $F32 x))
34
+
35
+ ;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
36
+
37
+ (rule (lower (f64const (u64_from_ieee64 x)))
38
+ (imm $F64 x))
39
+
40
+ ;;;; Rules for `f128const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
+ (rule (lower (f128const const))
42
+ ;; TODO use Inst::gen_constant() instead.
43
+ (x64_xmm_load_const $F128 (const_to_vconst const)))
44
+
45
+ (rule 1 (lower (f128const (u128_from_constant 0)))
46
+ (xmm_zero $F128))
47
+
48
+ ;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
49
+
50
+ ;; `i64` and smaller.
51
+
52
+ ;; Base case for 8 and 16-bit types
53
+ (rule -6 (lower (has_type (fits_in_16 ty)
54
+ (iadd x y)))
55
+ (x64_add ty x y))
56
+
57
+ ;; Base case for 32 and 64-bit types which might end up using the `lea`
58
+ ;; instruction to fold multiple operations into one.
59
+ ;;
60
+ ;; Note that at this time this always generates a `lea` pseudo-instruction,
61
+ ;; but the actual instruction emitted might be an `add` if it's equivalent.
62
+ ;; For more details on this see the `emit.rs` logic to emit
63
+ ;; `LoadEffectiveAddress`.
64
+ (rule -5 (lower (has_type (ty_32_or_64 ty) (iadd x y)))
65
+ (x64_lea ty (to_amode_add (mem_flags_trusted) x y (zero_offset))))
66
+
67
+ ;; Higher-priority cases than the previous two where a load can be sunk into
68
+ ;; the add instruction itself. Note that both operands are tested for
69
+ ;; sink-ability since addition is commutative
70
+ (rule -4 (lower (has_type (fits_in_64 ty)
71
+ (iadd x (sinkable_load y))))
72
+ (x64_add ty x y))
73
+ (rule -3 (lower (has_type (fits_in_64 ty)
74
+ (iadd (sinkable_load x) y)))
75
+ (x64_add ty y x))
76
+
77
+ ;; SSE.
78
+
79
+ (rule (lower (has_type (multi_lane 8 16)
80
+ (iadd x y)))
81
+ (x64_paddb x y))
82
+
83
+ (rule (lower (has_type (multi_lane 16 8)
84
+ (iadd x y)))
85
+ (x64_paddw x y))
86
+
87
+ (rule (lower (has_type (multi_lane 32 4)
88
+ (iadd x y)))
89
+ (x64_paddd x y))
90
+
91
+ (rule (lower (has_type (multi_lane 64 2)
92
+ (iadd x y)))
93
+ (x64_paddq x y))
94
+
95
+ ;; `i128`
96
+ (rule 1 (lower (has_type $I128 (iadd x y)))
97
+ ;; Get the high/low registers for `x`.
98
+ (let ((x_regs ValueRegs x)
99
+ (y_regs ValueRegs y))
100
+ (iadd128
101
+ (value_regs_get_gpr x_regs 0)
102
+ (value_regs_get_gpr x_regs 1)
103
+ (value_regs_get_gpr y_regs 0)
104
+ (value_regs_get_gpr y_regs 1))))
105
+ (rule 2 (lower (has_type $I128 (iadd x (iconcat y_lo y_hi))))
106
+ (let ((x_regs ValueRegs x))
107
+ (iadd128 (value_regs_get_gpr x 0) (value_regs_get_gpr x 1) y_lo y_hi)))
108
+ (rule 3 (lower (has_type $I128 (iadd x (uextend y @ (value_type $I64)))))
109
+ (let ((x_regs ValueRegs x))
110
+ (iadd128 (value_regs_get_gpr x 0) (value_regs_get_gpr x 1)
111
+ y (RegMemImm.Imm 0))))
112
+
113
+ ;; Helper for lowering 128-bit addition with the 64-bit halves of the lhs/rhs
114
+ ;; already split. The first two arguments are lo/hi for the lhs and the second
115
+ ;; two are lo/hi for the rhs.
116
+ (decl iadd128 (Gpr Gpr GprMemImm GprMemImm) ValueRegs)
117
+ (rule (iadd128 x_lo x_hi y_lo y_hi)
118
+ (with_flags (x64_add_with_flags_paired $I64 x_lo y_lo)
119
+ (x64_adc_paired $I64 x_hi y_hi)))
120
+
121
+ ;;;; Helpers for `*_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
122
+
123
+ (decl construct_overflow_op (CC ProducesFlags) InstOutput)
124
+ (rule (construct_overflow_op cc inst)
125
+ (let ((results ValueRegs (with_flags inst
126
+ (x64_setcc_paired cc))))
127
+ (output_pair (value_regs_get results 0)
128
+ (value_regs_get results 1))))
129
+
130
+ (decl construct_overflow_op_alu (Type CC AluRmiROpcode Gpr GprMemImm) InstOutput)
131
+ (rule (construct_overflow_op_alu ty cc alu_op src1 src2)
132
+ (construct_overflow_op cc (x64_alurmi_with_flags_paired alu_op ty src1 src2)))
133
+
134
+ ;; This essentially creates
135
+ ;; alu_<op1> x_lo, y_lo
136
+ ;; alu_<op2> x_hi, y_hi
137
+ ;; set<cc> r8
138
+ (decl construct_overflow_op_alu_128 (CC AluRmiROpcode AluRmiROpcode Value Value) InstOutput)
139
+ (rule (construct_overflow_op_alu_128 cc op1 op2 x y)
140
+ ;; Get the high/low registers for `x`.
141
+ (let ((x_regs ValueRegs x)
142
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
143
+ (x_hi Gpr (value_regs_get_gpr x_regs 1)))
144
+ ;; Get the high/low registers for `y`.
145
+ (let ((y_regs ValueRegs y)
146
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
147
+ (y_hi Gpr (value_regs_get_gpr y_regs 1)))
148
+ (let ((lo_inst ProducesFlags (x64_alurmi_with_flags_paired op1 $I64 x_lo y_lo))
149
+ (hi_inst ConsumesAndProducesFlags (x64_alurmi_with_flags_chained op2 $I64 x_hi y_hi))
150
+ (of_inst ConsumesFlags (x64_setcc_paired cc))
151
+
152
+ (result MultiReg (with_flags_chained lo_inst hi_inst of_inst)))
153
+ (multi_reg_to_pair_and_single result)))))
154
+
155
+ ;;;; Rules for `uadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
156
+
157
+ (rule 1 (lower (uadd_overflow x y @ (value_type (fits_in_64 ty))))
158
+ (construct_overflow_op_alu ty (CC.B) (AluRmiROpcode.Add) x y))
159
+
160
+ ;; i128 gets lowered into adc and add
161
+ (rule 0 (lower (uadd_overflow x y @ (value_type $I128)))
162
+ (construct_overflow_op_alu_128 (CC.B) (AluRmiROpcode.Add) (AluRmiROpcode.Adc) x y))
163
+
164
+ ;;;; Rules for `sadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
165
+
166
+ (rule 1 (lower (sadd_overflow x y @ (value_type (fits_in_64 ty))))
167
+ (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Add) x y))
168
+
169
+ (rule 0 (lower (sadd_overflow x y @ (value_type $I128)))
170
+ (construct_overflow_op_alu_128 (CC.O) (AluRmiROpcode.Add) (AluRmiROpcode.Adc) x y))
171
+
172
+ ;;;; Rules for `usub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
173
+
174
+ (rule 1 (lower (usub_overflow x y @ (value_type (fits_in_64 ty))))
175
+ (construct_overflow_op_alu ty (CC.B) (AluRmiROpcode.Sub) x y))
176
+
177
+ (rule 0 (lower (usub_overflow x y @ (value_type $I128)))
178
+ (construct_overflow_op_alu_128 (CC.B) (AluRmiROpcode.Sub) (AluRmiROpcode.Sbb) x y))
179
+
180
+ ;;;; Rules for `ssub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
181
+
182
+ (rule 1 (lower (ssub_overflow x y @ (value_type (fits_in_64 ty))))
183
+ (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Sub) x y))
184
+
185
+ (rule 0 (lower (ssub_overflow x y @ (value_type $I128)))
186
+ (construct_overflow_op_alu_128 (CC.O) (AluRmiROpcode.Sub) (AluRmiROpcode.Sbb) x y))
187
+
188
+ ;;;; Rules for `umul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
189
+
190
+ (rule 2 (lower (umul_overflow x y @ (value_type $I8)))
191
+ (construct_overflow_op (CC.O) (x64_mul8_with_flags_paired $false x y)))
192
+
193
+ (rule 3 (lower (umul_overflow x y @ (value_type (ty_int_ref_16_to_64 ty))))
194
+ (construct_overflow_op (CC.O) (x64_mul_lo_with_flags_paired ty $false x y)))
195
+
196
+ ;;;; Rules for `smul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
197
+
198
+ (rule 2 (lower (smul_overflow x y @ (value_type $I8)))
199
+ (construct_overflow_op (CC.O) (x64_mul8_with_flags_paired $true x y)))
200
+
201
+ (rule 3 (lower (smul_overflow x y @ (value_type (ty_int_ref_16_to_64 ty))))
202
+ (construct_overflow_op (CC.O) (x64_mul_lo_with_flags_paired ty $true x y)))
203
+
204
+ ;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
205
+
206
+ (rule (lower (has_type (multi_lane 8 16)
207
+ (sadd_sat x y)))
208
+ (x64_paddsb x y))
209
+
210
+ (rule (lower (has_type (multi_lane 16 8)
211
+ (sadd_sat x y)))
212
+ (x64_paddsw x y))
213
+
214
+ ;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
215
+
216
+ (rule (lower (has_type (multi_lane 8 16)
217
+ (uadd_sat x y)))
218
+ (x64_paddusb x y))
219
+
220
+ (rule (lower (has_type (multi_lane 16 8)
221
+ (uadd_sat x y)))
222
+ (x64_paddusw x y))
223
+
224
+ ;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
225
+
226
+ ;; `i64` and smaller.
227
+
228
+ ;; Sub two registers.
229
+ (rule -3 (lower (has_type (fits_in_64 ty)
230
+ (isub x y)))
231
+ (x64_sub ty x y))
232
+
233
+ ;; SSE.
234
+
235
+ (rule (lower (has_type (multi_lane 8 16)
236
+ (isub x y)))
237
+ (x64_psubb x y))
238
+
239
+ (rule (lower (has_type (multi_lane 16 8)
240
+ (isub x y)))
241
+ (x64_psubw x y))
242
+
243
+ (rule (lower (has_type (multi_lane 32 4)
244
+ (isub x y)))
245
+ (x64_psubd x y))
246
+
247
+ (rule (lower (has_type (multi_lane 64 2)
248
+ (isub x y)))
249
+ (x64_psubq x y))
250
+
251
+ ;; `i128`
252
+ (rule 1 (lower (has_type $I128 (isub x y)))
253
+ ;; Get the high/low registers for `x`.
254
+ (let ((x_regs ValueRegs x)
255
+ (y_regs ValueRegs y))
256
+ (isub128
257
+ (value_regs_get_gpr x_regs 0)
258
+ (value_regs_get_gpr x_regs 1)
259
+ (value_regs_get_gpr y_regs 0)
260
+ (value_regs_get_gpr y_regs 1))))
261
+ (rule 2 (lower (has_type $I128 (isub x (iconcat y_lo y_hi))))
262
+ (let ((x_regs ValueRegs x))
263
+ (isub128 (value_regs_get_gpr x 0) (value_regs_get_gpr x 1) y_lo y_hi)))
264
+ (rule 3 (lower (has_type $I128 (isub x (uextend y @ (value_type $I64)))))
265
+ (let ((x_regs ValueRegs x))
266
+ (isub128 (value_regs_get_gpr x 0) (value_regs_get_gpr x 1)
267
+ y (RegMemImm.Imm 0))))
268
+
269
+ ;; Helper for lowering 128-bit subtraction with the 64-bit halves of the lhs/rhs
270
+ ;; already split. The first two arguments are lo/hi for the lhs and the second
271
+ ;; two are lo/hi for the rhs.
272
+ (decl isub128 (Gpr Gpr GprMemImm GprMemImm) ValueRegs)
273
+ (rule (isub128 x_lo x_hi y_lo y_hi)
274
+ (with_flags (x64_sub_with_flags_paired $I64 x_lo y_lo)
275
+ (x64_sbb_paired $I64 x_hi y_hi)))
276
+
277
+ ;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
278
+
279
+ (rule (lower (has_type (multi_lane 8 16)
280
+ (ssub_sat x y)))
281
+ (x64_psubsb x y))
282
+
283
+ (rule (lower (has_type (multi_lane 16 8)
284
+ (ssub_sat x y)))
285
+ (x64_psubsw x y))
286
+
287
+ ;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
288
+
289
+ (rule (lower (has_type (multi_lane 8 16)
290
+ (usub_sat x y)))
291
+ (x64_psubusb x y))
292
+
293
+ (rule (lower (has_type (multi_lane 16 8)
294
+ (usub_sat x y)))
295
+ (x64_psubusw x y))
296
+
297
+ ;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
298
+
299
+ ;; `{i,b}64` and smaller.
300
+
301
+ ;; And two registers.
302
+ (rule 0 (lower (has_type ty (band x y)))
303
+ (if (ty_int_ref_scalar_64 ty))
304
+ (x64_and ty x y))
305
+
306
+ ;; The above case automatically handles when the rhs is an immediate or a
307
+ ;; sinkable load, but additionally handle the lhs here.
308
+
309
+ (rule 1 (lower (has_type ty (band (sinkable_load x) y)))
310
+ (if (ty_int_ref_scalar_64 ty))
311
+ (x64_and ty y x))
312
+
313
+ (rule 2 (lower (has_type ty (band (simm32_from_value x) y)))
314
+ (if (ty_int_ref_scalar_64 ty))
315
+ (x64_and ty y x))
316
+
317
+ ;; f32 and f64
318
+
319
+ (rule 5 (lower (has_type (ty_scalar_float ty) (band x y)))
320
+ (sse_and ty x y))
321
+
322
+ ;; SSE.
323
+
324
+ (decl sse_and (Type Xmm XmmMem) Xmm)
325
+ (rule (sse_and $F32X4 x y) (x64_andps x y))
326
+ (rule (sse_and $F64X2 x y) (x64_andpd x y))
327
+ (rule (sse_and $F32 x y) (x64_andps x y))
328
+ (rule (sse_and $F64 x y) (x64_andpd x y))
329
+ (rule -1 (sse_and (multi_lane _bits _lanes) x y) (x64_pand x y))
330
+
331
+ (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
332
+ (band x y)))
333
+ (sse_and ty x y))
334
+
335
+ ;; `i128`.
336
+
337
+ (decl and_i128 (ValueRegs ValueRegs) ValueRegs)
338
+ (rule (and_i128 x y)
339
+ (let ((x_regs ValueRegs x)
340
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
341
+ (x_hi Gpr (value_regs_get_gpr x_regs 1))
342
+ (y_regs ValueRegs y)
343
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
344
+ (y_hi Gpr (value_regs_get_gpr y_regs 1)))
345
+ (value_gprs (x64_and $I64 x_lo y_lo)
346
+ (x64_and $I64 x_hi y_hi))))
347
+
348
+ (rule 7 (lower (has_type $I128 (band x y)))
349
+ (and_i128 x y))
350
+
351
+ ;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
352
+ ;; by Cranelift's `band_not` instruction that is legalized into the simpler
353
+ ;; forms early on.
354
+
355
+ (decl sse_and_not (Type Xmm XmmMem) Xmm)
356
+ (rule (sse_and_not $F32X4 x y) (x64_andnps x y))
357
+ (rule (sse_and_not $F64X2 x y) (x64_andnpd x y))
358
+ (rule -1 (sse_and_not (multi_lane _bits _lanes) x y) (x64_pandn x y))
359
+
360
+ ;; Note the flipping of operands below as we're match
361
+ ;;
362
+ ;; (band x (bnot y))
363
+ ;;
364
+ ;; while x86 does
365
+ ;;
366
+ ;; pandn(x, y) = and(not(x), y)
367
+ (rule 8 (lower (has_type ty @ (multi_lane _bits _lane) (band x (bnot y))))
368
+ (sse_and_not ty y x))
369
+ (rule 9 (lower (has_type ty @ (multi_lane _bits _lane) (band (bnot y) x)))
370
+ (sse_and_not ty y x))
371
+
372
+ (rule 10 (lower (has_type ty (band x (bnot y))))
373
+ (if (ty_int_ref_scalar_64 ty))
374
+ (if-let $true (use_bmi1))
375
+ ;; the first argument is the one that gets inverted with andn
376
+ (x64_andn ty y x))
377
+ (rule 11 (lower (has_type ty (band (bnot y) x)))
378
+ (if (ty_int_ref_scalar_64 ty))
379
+ (if-let $true (use_bmi1))
380
+ (x64_andn ty y x))
381
+
382
+ ;; Specialization of `blsr` for BMI1
383
+
384
+ (decl pure partial val_minus_one (Value) Value)
385
+ (rule 0 (val_minus_one (isub x (u64_from_iconst 1))) x)
386
+ (rule 0 (val_minus_one (iadd x (i64_from_iconst -1))) x)
387
+ (rule 1 (val_minus_one (iadd (i64_from_iconst -1) x)) x)
388
+
389
+ (rule 12 (lower (has_type (ty_32_or_64 ty) (band x y)))
390
+ (if-let $true (use_bmi1))
391
+ (if-let x (val_minus_one y))
392
+ (x64_blsr ty x))
393
+ (rule 13 (lower (has_type (ty_32_or_64 ty) (band y x)))
394
+ (if-let $true (use_bmi1))
395
+ (if-let x (val_minus_one y))
396
+ (x64_blsr ty x))
397
+
398
+ ;; Specialization of `blsi` for BMI1
399
+
400
+ (rule 14 (lower (has_type (ty_32_or_64 ty) (band (ineg x) x)))
401
+ (if-let $true (use_bmi1))
402
+ (x64_blsi ty x))
403
+ (rule 15 (lower (has_type (ty_32_or_64 ty) (band x (ineg x))))
404
+ (if-let $true (use_bmi1))
405
+ (x64_blsi ty x))
406
+
407
+ ;; Specialization of `bzhi` for BMI2
408
+ ;;
409
+ ;; The `bzhi` instruction clears all bits indexed by the second operand of the
410
+ ;; first operand. This is pattern-matched here with a `band` against a mask
411
+ ;; which is generated to be N bits large. Note that if the index is larger than
412
+ ;; the bit-width of the type then `bzhi` doesn't have the same semantics as
413
+ ;; `ishl`, so an `and` instruction is required to mask the index to match the
414
+ ;; semantics of Cranelift's `ishl`.
415
+
416
+ (rule 16 (lower (has_type (ty_32_or_64 ty) (band x y)))
417
+ (if-let $true (use_bmi2))
418
+ (if-let (ishl (u64_from_iconst 1) index) (val_minus_one y))
419
+ (x64_bzhi ty x (x64_and ty index (RegMemImm.Imm (u32_sub (ty_bits ty) 1)))))
420
+
421
+ ;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
422
+
423
+ ;; `{i,b}64` and smaller.
424
+
425
+ ;; Or two registers.
426
+ (rule 0 (lower (has_type ty (bor x y)))
427
+ (if (ty_int_ref_scalar_64 ty))
428
+ (x64_or ty x y))
429
+
430
+ ;; Handle immediates/sinkable loads on the lhs in addition to the automatic
431
+ ;; handling of the rhs above
432
+
433
+ (rule 1 (lower (has_type ty (bor (sinkable_load x) y)))
434
+ (if (ty_int_ref_scalar_64 ty))
435
+ (x64_or ty y x))
436
+
437
+ (rule 2 (lower (has_type ty (bor (simm32_from_value x) y)))
438
+ (if (ty_int_ref_scalar_64 ty))
439
+ (x64_or ty y x))
440
+
441
+ ;; f32 and f64
442
+
443
+ (rule 5 (lower (has_type (ty_scalar_float ty) (bor x y)))
444
+ (sse_or ty x y))
445
+
446
+ ;; SSE.
447
+
448
+ (decl sse_or (Type Xmm XmmMem) Xmm)
449
+ (rule (sse_or $F32X4 x y) (x64_orps x y))
450
+ (rule (sse_or $F64X2 x y) (x64_orpd x y))
451
+ (rule (sse_or $F32 x y) (x64_orps x y))
452
+ (rule (sse_or $F64 x y) (x64_orpd x y))
453
+ (rule -1 (sse_or (multi_lane _bits _lanes) x y) (x64_por x y))
454
+
455
+ (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
456
+ (bor x y)))
457
+ (sse_or ty x y))
458
+
459
+ ;; `{i,b}128`.
460
+
461
+ (decl or_i128 (ValueRegs ValueRegs) ValueRegs)
462
+ (rule (or_i128 x y)
463
+ (let ((x_lo Gpr (value_regs_get_gpr x 0))
464
+ (x_hi Gpr (value_regs_get_gpr x 1))
465
+ (y_lo Gpr (value_regs_get_gpr y 0))
466
+ (y_hi Gpr (value_regs_get_gpr y 1)))
467
+ (value_gprs (x64_or $I64 x_lo y_lo)
468
+ (x64_or $I64 x_hi y_hi))))
469
+
470
+ (rule 7 (lower (has_type $I128 (bor x y)))
471
+ (or_i128 x y))
472
+
473
+ ;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
474
+
475
+ ;; `{i,b}64` and smaller.
476
+
477
+ ;; Xor two registers.
478
+ (rule 0 (lower (has_type ty (bxor x y)))
479
+ (if (ty_int_ref_scalar_64 ty))
480
+ (x64_xor ty x y))
481
+
482
+ ;; Handle xor with lhs immediates/sinkable loads in addition to the automatic
483
+ ;; handling of the rhs above.
484
+
485
+ (rule 1 (lower (has_type ty (bxor (sinkable_load x) y)))
486
+ (if (ty_int_ref_scalar_64 ty))
487
+ (x64_xor ty y x))
488
+
489
+ (rule 4 (lower (has_type ty (bxor (simm32_from_value x) y)))
490
+ (if (ty_int_ref_scalar_64 ty))
491
+ (x64_xor ty y x))
492
+
493
+ ;; f32 and f64
494
+
495
+ (rule 5 (lower (has_type (ty_scalar_float ty) (bxor x y)))
496
+ (x64_xor_vector ty x y))
497
+
498
+ ;; SSE.
499
+
500
+ (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes) (bxor x y)))
501
+ (x64_xor_vector ty x y))
502
+
503
+ ;; `{i,b}128`.
504
+
505
+ (rule 7 (lower (has_type $I128 (bxor x y)))
506
+ (let ((x_regs ValueRegs x)
507
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
508
+ (x_hi Gpr (value_regs_get_gpr x_regs 1))
509
+ (y_regs ValueRegs y)
510
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
511
+ (y_hi Gpr (value_regs_get_gpr y_regs 1)))
512
+ (value_gprs (x64_xor $I64 x_lo y_lo)
513
+ (x64_xor $I64 x_hi y_hi))))
514
+
515
+ ;; Specialization of `blsmsk` for BMI1
516
+
517
+ (rule 8 (lower (has_type (ty_32_or_64 ty) (bxor x y)))
518
+ (if-let $true (use_bmi1))
519
+ (if-let x (val_minus_one y))
520
+ (x64_blsmsk ty x))
521
+ (rule 9 (lower (has_type (ty_32_or_64 ty) (bxor y x)))
522
+ (if-let $true (use_bmi1))
523
+ (if-let x (val_minus_one y))
524
+ (x64_blsmsk ty x))
525
+
526
+ ;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
527
+
528
+ ;; `i64` and smaller.
529
+
530
+ (rule -1 (lower (has_type (fits_in_64 ty) (ishl src amt)))
531
+ (x64_shl ty src (put_masked_in_imm8_gpr amt ty)))
532
+
533
+ ;; `i128`.
534
+
535
+ (decl shl_i128 (ValueRegs Gpr) ValueRegs)
536
+ (rule (shl_i128 src amt)
537
+ ;; Unpack the registers that make up the 128-bit value being shifted.
538
+ (let ((src_lo Gpr (value_regs_get_gpr src 0))
539
+ (src_hi Gpr (value_regs_get_gpr src 1))
540
+ ;; Do two 64-bit shifts.
541
+ (lo_shifted Gpr (x64_shl $I64 src_lo amt))
542
+ (hi_shifted Gpr (x64_shl $I64 src_hi amt))
543
+ ;; `src_lo >> (64 - amt)` are the bits to carry over from the lo
544
+ ;; into the hi.
545
+ (carry Gpr (x64_shr $I64
546
+ src_lo
547
+ (x64_sub $I64
548
+ (imm $I64 64)
549
+ amt)))
550
+ (zero Gpr (imm $I64 0))
551
+ ;; Nullify the carry if we are shifting in by a multiple of 128.
552
+ (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64)
553
+ amt
554
+ (RegMemImm.Imm 127))
555
+ (cmove $I64
556
+ (CC.Z)
557
+ zero
558
+ carry)))
559
+ ;; Add the carry into the high half.
560
+ (hi_shifted_ Gpr (x64_or $I64 carry_ hi_shifted)))
561
+ ;; Combine the two shifted halves. However, if we are shifting by >= 64
562
+ ;; (modulo 128), then the low bits are zero and the high bits are our
563
+ ;; low bits.
564
+ (with_flags (x64_test (OperandSize.Size64) amt (RegMemImm.Imm 64))
565
+ (consumes_flags_concat
566
+ (cmove $I64 (CC.Z) lo_shifted zero)
567
+ (cmove $I64 (CC.Z) hi_shifted_ lo_shifted)))))
568
+
569
+ (rule (lower (has_type $I128 (ishl src amt)))
570
+ ;; NB: Only the low bits of `amt` matter since we logically mask the shift
571
+ ;; amount to the value's bit width.
572
+ (let ((amt_ Gpr (lo_gpr amt)))
573
+ (shl_i128 src amt_)))
574
+
575
+ ;; SSE.
576
+
577
+ ;; Since the x86 instruction set does not have any 8x16 shift instructions (even
578
+ ;; in higher feature sets like AVX), we lower the `ishl.i8x16` to a sequence of
579
+ ;; instructions. The basic idea, whether the amount to shift by is an immediate
580
+ ;; or not, is to use a 16x8 shift and then mask off the incorrect bits to 0s.
581
+ (rule (lower (has_type ty @ $I8X16 (ishl src amt)))
582
+ (let (
583
+ ;; Mask the amount to ensure wrapping behaviour
584
+ (masked_amt RegMemImm (mask_xmm_shift ty amt))
585
+ ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
586
+ ;; correct for half of the lanes; the others must be fixed up with
587
+ ;; the mask below.
588
+ (unmasked Xmm (x64_psllw src (mov_rmi_to_xmm masked_amt)))
589
+ (mask_addr SyntheticAmode (ishl_i8x16_mask masked_amt))
590
+ (mask Reg (x64_load $I8X16 mask_addr (ExtKind.None))))
591
+ (sse_and $I8X16 unmasked (RegMem.Reg mask))))
592
+
593
+ ;; Get the address of the mask to use when fixing up the lanes that weren't
594
+ ;; correctly generated by the 16x8 shift.
595
+ (decl ishl_i8x16_mask (RegMemImm) SyntheticAmode)
596
+
597
+ ;; When the shift amount is known, we can statically (i.e. at compile time)
598
+ ;; determine the mask to use and only emit that.
599
+ (decl ishl_i8x16_mask_for_const (u32) SyntheticAmode)
600
+ (extern constructor ishl_i8x16_mask_for_const ishl_i8x16_mask_for_const)
601
+ (rule (ishl_i8x16_mask (RegMemImm.Imm amt))
602
+ (ishl_i8x16_mask_for_const amt))
603
+
604
+ ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
605
+ ;; time) find the correct mask offset in the table. We use `lea` to find the
606
+ ;; base address of the mask table and then complex addressing to offset to the
607
+ ;; right mask: `base_address + amt << 4`
608
+ (decl ishl_i8x16_mask_table () SyntheticAmode)
609
+ (extern constructor ishl_i8x16_mask_table ishl_i8x16_mask_table)
610
+ (rule (ishl_i8x16_mask (RegMemImm.Reg amt))
611
+ (let ((mask_table SyntheticAmode (ishl_i8x16_mask_table))
612
+ (base_mask_addr Gpr (x64_lea $I64 mask_table))
613
+ (mask_offset Gpr (x64_shl $I64 amt
614
+ (imm8_to_imm8_gpr 4))))
615
+ (Amode.ImmRegRegShift 0
616
+ base_mask_addr
617
+ mask_offset
618
+ 0
619
+ (mem_flags_trusted))))
620
+
621
+ (rule (ishl_i8x16_mask (RegMemImm.Mem amt))
622
+ (ishl_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
623
+
624
+ ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
625
+
626
+ (rule (lower (has_type ty @ $I16X8 (ishl src amt)))
627
+ (x64_psllw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
628
+
629
+ (rule (lower (has_type ty @ $I32X4 (ishl src amt)))
630
+ (x64_pslld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
631
+
632
+ (rule (lower (has_type ty @ $I64X2 (ishl src amt)))
633
+ (x64_psllq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
634
+
635
+ ;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
636
+
637
+ ;; `i64` and smaller.
638
+
639
+ (rule -1 (lower (has_type (fits_in_64 ty) (ushr src amt)))
640
+ (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Zero))))
641
+ (x64_shr ty src_ (put_masked_in_imm8_gpr amt ty))))
642
+
643
+ ;; `i128`.
644
+
645
+ (decl shr_i128 (ValueRegs Gpr) ValueRegs)
646
+ (rule (shr_i128 src amt)
647
+ ;; Unpack the lo/hi halves of `src`.
648
+ (let ((src_lo Gpr (value_regs_get_gpr src 0))
649
+ (src_hi Gpr (value_regs_get_gpr src 1))
650
+ ;; Do a shift on each half.
651
+ (lo_shifted Gpr (x64_shr $I64 src_lo amt))
652
+ (hi_shifted Gpr (x64_shr $I64 src_hi amt))
653
+ ;; `src_hi << (64 - amt)` are the bits to carry over from the hi
654
+ ;; into the lo.
655
+ (carry Gpr (x64_shl $I64
656
+ src_hi
657
+ (x64_sub $I64
658
+ (imm $I64 64)
659
+ amt)))
660
+ ;; Share the zero value to reduce register pressure
661
+ (zero Gpr (imm $I64 0))
662
+
663
+ ;; Nullify the carry if we are shifting by a multiple of 128.
664
+ (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) amt (RegMemImm.Imm 127))
665
+ (cmove $I64 (CC.Z) zero carry)))
666
+ ;; Add the carry bits into the lo.
667
+ (lo_shifted_ Gpr (x64_or $I64 carry_ lo_shifted)))
668
+ ;; Combine the two shifted halves. However, if we are shifting by >= 64
669
+ ;; (modulo 128), then the hi bits are zero and the lo bits are what
670
+ ;; would otherwise be our hi bits.
671
+ (with_flags (x64_test (OperandSize.Size64) amt (RegMemImm.Imm 64))
672
+ (consumes_flags_concat
673
+ (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
674
+ (cmove $I64 (CC.Z) hi_shifted zero)))))
675
+
676
+ (rule (lower (has_type $I128 (ushr src amt)))
677
+ ;; NB: Only the low bits of `amt` matter since we logically mask the shift
678
+ ;; amount to the value's bit width.
679
+ (let ((amt_ Gpr (lo_gpr amt)))
680
+ (shr_i128 src amt_)))
681
+
682
+ ;; SSE.
683
+
684
+ ;; There are no 8x16 shifts in x64. Do the same 16x8-shift-and-mask thing we do
685
+ ;; with 8x16 `ishl`.
686
+ (rule (lower (has_type ty @ $I8X16 (ushr src amt)))
687
+ (let (
688
+ ;; Mask the amount to ensure wrapping behaviour
689
+ (masked_amt RegMemImm (mask_xmm_shift ty amt))
690
+ ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
691
+ ;; correct for half of the lanes; the others must be fixed up with
692
+ ;; the mask below.
693
+ (unmasked Xmm (x64_psrlw src (mov_rmi_to_xmm masked_amt))))
694
+ (sse_and $I8X16
695
+ unmasked
696
+ (ushr_i8x16_mask masked_amt))))
697
+
698
+ ;; Get the address of the mask to use when fixing up the lanes that weren't
699
+ ;; correctly generated by the 16x8 shift.
700
+ (decl ushr_i8x16_mask (RegMemImm) SyntheticAmode)
701
+
702
+ ;; When the shift amount is known, we can statically (i.e. at compile time)
703
+ ;; determine the mask to use and only emit that.
704
+ (decl ushr_i8x16_mask_for_const (u32) SyntheticAmode)
705
+ (extern constructor ushr_i8x16_mask_for_const ushr_i8x16_mask_for_const)
706
+ (rule (ushr_i8x16_mask (RegMemImm.Imm amt))
707
+ (ushr_i8x16_mask_for_const amt))
708
+
709
+ ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
710
+ ;; time) find the correct mask offset in the table. We use `lea` to find the
711
+ ;; base address of the mask table and then complex addressing to offset to the
712
+ ;; right mask: `base_address + amt << 4`
713
+ (decl ushr_i8x16_mask_table () SyntheticAmode)
714
+ (extern constructor ushr_i8x16_mask_table ushr_i8x16_mask_table)
715
+ (rule (ushr_i8x16_mask (RegMemImm.Reg amt))
716
+ (let ((mask_table SyntheticAmode (ushr_i8x16_mask_table))
717
+ (base_mask_addr Gpr (x64_lea $I64 mask_table))
718
+ (mask_offset Gpr (x64_shl $I64
719
+ amt
720
+ (imm8_to_imm8_gpr 4))))
721
+ (Amode.ImmRegRegShift 0
722
+ base_mask_addr
723
+ mask_offset
724
+ 0
725
+ (mem_flags_trusted))))
726
+
727
+ (rule (ushr_i8x16_mask (RegMemImm.Mem amt))
728
+ (ushr_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
729
+
730
+ ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
731
+
732
+ (rule (lower (has_type ty @ $I16X8 (ushr src amt)))
733
+ (x64_psrlw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
734
+
735
+ (rule (lower (has_type ty @ $I32X4 (ushr src amt)))
736
+ (x64_psrld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
737
+
738
+ (rule (lower (has_type ty @ $I64X2 (ushr src amt)))
739
+ (x64_psrlq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
740
+
741
+ (decl mask_xmm_shift (Type Value) RegMemImm)
742
+ (rule (mask_xmm_shift ty amt)
743
+ (gpr_to_reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
744
+ (rule 1 (mask_xmm_shift ty (iconst n))
745
+ (RegMemImm.Imm (shift_amount_masked ty n)))
746
+
747
+ ;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
748
+
749
+ ;; `i64` and smaller.
750
+
751
+ (rule -1 (lower (has_type (fits_in_64 ty) (sshr src amt)))
752
+ (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Sign))))
753
+ (x64_sar ty src_ (put_masked_in_imm8_gpr amt ty))))
754
+
755
+ ;; `i128`.
756
+
757
+ (decl sar_i128 (ValueRegs Gpr) ValueRegs)
758
+ (rule (sar_i128 src amt)
759
+ ;; Unpack the low/high halves of `src`.
760
+ (let ((src_lo Gpr (value_regs_get_gpr src 0))
761
+ (src_hi Gpr (value_regs_get_gpr src 1))
762
+ ;; Do a shift of each half. NB: the low half uses an unsigned shift
763
+ ;; because its MSB is not a sign bit.
764
+ (lo_shifted Gpr (x64_shr $I64 src_lo amt))
765
+ (hi_shifted Gpr (x64_sar $I64 src_hi amt))
766
+ ;; `src_hi << (64 - amt)` are the bits to carry over from the low
767
+ ;; half to the high half.
768
+ (carry Gpr (x64_shl $I64
769
+ src_hi
770
+ (x64_sub $I64
771
+ (imm $I64 64)
772
+ amt)))
773
+ ;; Nullify the carry if we are shifting by a multiple of 128.
774
+ (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) amt (RegMemImm.Imm 127))
775
+ (cmove $I64 (CC.Z) (imm $I64 0) carry)))
776
+ ;; Add the carry into the low half.
777
+ (lo_shifted_ Gpr (x64_or $I64 lo_shifted carry_))
778
+ ;; Get all sign bits.
779
+ (sign_bits Gpr (x64_sar $I64 src_hi (imm8_to_imm8_gpr 63))))
780
+ ;; Combine the two shifted halves. However, if we are shifting by >= 64
781
+ ;; (modulo 128), then the hi bits are all sign bits and the lo bits are
782
+ ;; what would otherwise be our hi bits.
783
+ (with_flags (x64_test (OperandSize.Size64) amt (RegMemImm.Imm 64))
784
+ (consumes_flags_concat
785
+ (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
786
+ (cmove $I64 (CC.Z) hi_shifted sign_bits)))))
787
+
788
+ (rule (lower (has_type $I128 (sshr src amt)))
789
+ ;; NB: Only the low bits of `amt` matter since we logically mask the shift
790
+ ;; amount to the value's bit width.
791
+ (let ((amt_ Gpr (lo_gpr amt)))
792
+ (sar_i128 src amt_)))
793
+
794
+ ;; SSE.
795
+
796
+ ;; Since the x86 instruction set does not have an 8x16 shift instruction and the
797
+ ;; approach used for `ishl` and `ushr` cannot be easily used (the masks do not
798
+ ;; preserve the sign), we use a different approach here: separate the low and
799
+ ;; high lanes, shift them separately, and merge them into the final result.
800
+ ;;
801
+ ;; Visually, this looks like the following, where `src.i8x16 = [s0, s1, ...,
802
+ ;; s15]:
803
+ ;;
804
+ ;; lo.i16x8 = [(s0, s0), (s1, s1), ..., (s7, s7)]
805
+ ;; shifted_lo.i16x8 = shift each lane of `low`
806
+ ;; hi.i16x8 = [(s8, s8), (s9, s9), ..., (s15, s15)]
807
+ ;; shifted_hi.i16x8 = shift each lane of `high`
808
+ ;; result = [s0'', s1'', ..., s15'']
809
+ (rule (lower (has_type ty @ $I8X16 (sshr src amt @ (value_type amt_ty))))
810
+ (let ((src_ Xmm (put_in_xmm src))
811
+ ;; Mask the amount to ensure wrapping behaviour
812
+ (masked_amt RegMemImm (mask_xmm_shift ty amt))
813
+ ;; In order for `packsswb` later to only use the high byte of each
814
+ ;; 16x8 lane, we shift right an extra 8 bits, relying on `psraw` to
815
+ ;; fill in the upper bits appropriately.
816
+ (lo Xmm (x64_punpcklbw src_ src_))
817
+ (hi Xmm (x64_punpckhbw src_ src_))
818
+ (amt_ XmmMemImm (sshr_i8x16_bigger_shift amt_ty masked_amt))
819
+ (shifted_lo Xmm (x64_psraw lo amt_))
820
+ (shifted_hi Xmm (x64_psraw hi amt_)))
821
+ (x64_packsswb shifted_lo shifted_hi)))
822
+
823
+ (decl sshr_i8x16_bigger_shift (Type RegMemImm) XmmMemImm)
824
+ (rule (sshr_i8x16_bigger_shift _ty (RegMemImm.Imm i))
825
+ (xmm_mem_imm_new (RegMemImm.Imm (u32_add i 8))))
826
+ (rule (sshr_i8x16_bigger_shift ty (RegMemImm.Reg r))
827
+ (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
828
+ r
829
+ (RegMemImm.Imm 8)))))
830
+ (rule (sshr_i8x16_bigger_shift ty rmi @ (RegMemImm.Mem _m))
831
+ (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
832
+ (imm ty 8)
833
+ rmi))))
834
+
835
+ ;; `sshr.{i16x8,i32x4}` can be a simple `psra{w,d}`, we just have to make sure
836
+ ;; that if the shift amount is in a register, it is in an XMM register.
837
+
838
+ (rule (lower (has_type ty @ $I16X8 (sshr src amt)))
839
+ (x64_psraw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
840
+
841
+ (rule (lower (has_type ty @ $I32X4 (sshr src amt)))
842
+ (x64_psrad src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
843
+
844
+ ;; The `sshr.i64x2` CLIF instruction has no single x86 instruction in the older
845
+ ;; feature sets. To remedy this, a small dance is done with an unsigned right
846
+ ;; shift plus some extra ops.
847
+ (rule 3 (lower (has_type ty @ $I64X2 (sshr src (iconst n))))
848
+ (if-let $true (use_avx512vl))
849
+ (if-let $true (use_avx512f))
850
+ (x64_vpsraq_imm src (shift_amount_masked ty n)))
851
+
852
+ (rule 2 (lower (has_type ty @ $I64X2 (sshr src amt)))
853
+ (if-let $true (use_avx512vl))
854
+ (if-let $true (use_avx512f))
855
+ (let ((masked Gpr (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
856
+ (x64_vpsraq src (x64_movd_to_xmm masked))))
857
+
858
+ (rule 1 (lower (has_type $I64X2 (sshr src (iconst (u64_from_imm64 (u64_as_u32 amt))))))
859
+ (lower_i64x2_sshr_imm src (u32_and amt 63)))
860
+
861
+ (rule (lower (has_type $I64X2 (sshr src amt)))
862
+ (lower_i64x2_sshr_gpr src (x64_and $I64 amt (RegMemImm.Imm 63))))
863
+
864
+ (decl lower_i64x2_sshr_imm (Xmm u32) Xmm)
865
+
866
+ ;; If the shift amount is less than 32 then do an sshr with 32-bit lanes to
867
+ ;; produce the upper halves of each result, followed by a ushr of 64-bit lanes
868
+ ;; to produce the lower halves of each result. Interleave results at the end.
869
+ (rule 2 (lower_i64x2_sshr_imm vec imm)
870
+ (if-let $true (u64_lt imm 32))
871
+ (let (
872
+ (high32 Xmm (x64_psrad vec (xmi_imm imm)))
873
+ (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
874
+ (low32 Xmm (x64_psrlq vec (xmi_imm imm)))
875
+ (low32 Xmm (x64_pshufd low32 0b11_10_10_00))
876
+ )
877
+ (x64_punpckldq low32 high32)))
878
+
879
+ ;; If the shift amount is 32 then the `psrlq` from the above rule can be avoided
880
+ (rule 1 (lower_i64x2_sshr_imm vec 32)
881
+ (let (
882
+ (low32 Xmm (x64_pshufd vec 0b11_10_11_01))
883
+ (high32 Xmm (x64_psrad vec (xmi_imm 31)))
884
+ (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
885
+ )
886
+ (x64_punpckldq low32 high32)))
887
+
888
+ ;; Shifts >= 32 use one `psrad` to generate the upper bits and second `psrad` to
889
+ ;; generate the lower bits. Everything is then woven back together with
890
+ ;; shuffles.
891
+ (rule (lower_i64x2_sshr_imm vec imm)
892
+ (if-let $true (u64_lt 32 imm))
893
+ (let (
894
+ (high32 Xmm (x64_psrad vec (xmi_imm 31)))
895
+ (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
896
+ (low32 Xmm (x64_psrad vec (xmi_imm (u32_sub imm 32))))
897
+ (low32 Xmm (x64_pshufd low32 0b11_10_11_01))
898
+ )
899
+ (x64_punpckldq low32 high32)))
900
+
901
+ ;; A variable shift amount is slightly more complicated than the immediate
902
+ ;; shift amounts from above. The `Gpr` argument is guaranteed to be <= 63 by
903
+ ;; earlier masking. A `ushr` operation is used with some xor/sub math to
904
+ ;; generate the sign bits.
905
+ (decl lower_i64x2_sshr_gpr (Xmm Gpr) Xmm)
906
+ (rule (lower_i64x2_sshr_gpr vec val)
907
+ (let (
908
+ (val Xmm (x64_movq_to_xmm val))
909
+ (mask Xmm (flip_high_bit_mask $I64X2))
910
+ (sign_bit_loc Xmm (x64_psrlq mask val))
911
+ (ushr Xmm (x64_psrlq vec val))
912
+ (ushr_sign_bit_flip Xmm (x64_pxor sign_bit_loc ushr))
913
+ )
914
+ (x64_psubq ushr_sign_bit_flip sign_bit_loc)))
915
+
916
+ ;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
917
+
918
+ ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
919
+ ;; we operate on the whole register. For const's we mask the constant.
920
+
921
+ (rule -1 (lower (has_type (fits_in_64 ty) (rotl src amt)))
922
+ (x64_rotl ty src (put_masked_in_imm8_gpr amt ty)))
923
+
924
+
925
+ ;; `i128`.
926
+
927
+ (rule (lower (has_type $I128 (rotl src amt)))
928
+ (let ((src_ ValueRegs src)
929
+ ;; NB: Only the low bits of `amt` matter since we logically mask the
930
+ ;; rotation amount to the value's bit width.
931
+ (amt_ Gpr (lo_gpr amt)))
932
+ (or_i128 (shl_i128 src_ amt_)
933
+ (shr_i128 src_ (x64_sub $I64
934
+ (imm $I64 128)
935
+ amt_)))))
936
+
937
+ ;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
938
+
939
+ ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
940
+ ;; we operate on the whole register. For const's we mask the constant.
941
+
942
+ (rule -1 (lower (has_type (fits_in_64 ty) (rotr src amt)))
943
+ (x64_rotr ty src (put_masked_in_imm8_gpr amt ty)))
944
+
945
+
946
+ ;; `i128`.
947
+
948
+ (rule (lower (has_type $I128 (rotr src amt)))
949
+ (let ((src_ ValueRegs src)
950
+ ;; NB: Only the low bits of `amt` matter since we logically mask the
951
+ ;; rotation amount to the value's bit width.
952
+ (amt_ Gpr (lo_gpr amt)))
953
+ (or_i128 (shr_i128 src_ amt_)
954
+ (shl_i128 src_ (x64_sub $I64
955
+ (imm $I64 128)
956
+ amt_)))))
957
+
958
+ ;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
959
+
960
+ ;; `i64` and smaller.
961
+
962
+ (rule -1 (lower (has_type (fits_in_64 ty) (ineg x)))
963
+ (x64_neg ty x))
964
+
965
+ (rule -2 (lower (has_type $I128 (ineg x)))
966
+ ;; Get the high/low registers for `x`.
967
+ (let ((regs ValueRegs x)
968
+ (lo Gpr (value_regs_get_gpr regs 0))
969
+ (hi Gpr (value_regs_get_gpr regs 1)))
970
+ ;; Do a neg followed by an sub-with-borrow.
971
+ (with_flags (x64_neg_paired $I64 lo)
972
+ (x64_sbb_paired $I64 (imm $I64 0) hi))))
973
+
974
+ ;; SSE.
975
+
976
+ (rule (lower (has_type $I8X16 (ineg x)))
977
+ (x64_psubb (imm $I8X16 0) x))
978
+
979
+ (rule (lower (has_type $I16X8 (ineg x)))
980
+ (x64_psubw (imm $I16X8 0) x))
981
+
982
+ (rule (lower (has_type $I32X4 (ineg x)))
983
+ (x64_psubd (imm $I32X4 0) x))
984
+
985
+ (rule (lower (has_type $I64X2 (ineg x)))
986
+ (x64_psubq (imm $I64X2 0) x))
987
+
988
+ ;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
989
+
990
+ (rule (lower (has_type (multi_lane 8 16)
991
+ (avg_round x y)))
992
+ (x64_pavgb x y))
993
+
994
+ (rule (lower (has_type (multi_lane 16 8)
995
+ (avg_round x y)))
996
+ (x64_pavgw x y))
997
+
998
+ ;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
999
+
1000
+ ;; `i64` and smaller.
1001
+
1002
+ ;; 8-bit base case, needs a special instruction encoding and additionally
1003
+ ;; move sinkable loads to the right.
1004
+ (rule -7 (lower (has_type $I8 (imul x y))) (x64_mul8 $false x y))
1005
+ (rule -6 (lower (has_type $I8 (imul (sinkable_load x) y))) (x64_mul8 $false y x))
1006
+
1007
+ ;; 16-to-64-bit base cases, same as above by moving sinkable loads to the right.
1008
+ (rule -5 (lower (has_type (ty_int_ref_16_to_64 ty) (imul x y)))
1009
+ (x64_imul ty x y))
1010
+ (rule -4 (lower (has_type (ty_int_ref_16_to_64 ty) (imul (sinkable_load x) y)))
1011
+ (x64_imul ty y x))
1012
+
1013
+ ;; lift out constants to use 3-operand form
1014
+ (rule -3 (lower (has_type (ty_int_ref_16_to_64 ty) (imul x (i32_from_iconst y))))
1015
+ (x64_imul_imm ty x y))
1016
+ (rule -2 (lower (has_type (ty_int_ref_16_to_64 ty) (imul (i32_from_iconst x) y)))
1017
+ (x64_imul_imm ty y x))
1018
+
1019
+ ;; `i128`.
1020
+
1021
+ (rule 2 (lower (has_type $I128 (imul x y)))
1022
+ (let ((x_regs ValueRegs x)
1023
+ (y_regs ValueRegs y))
1024
+ (imul128
1025
+ (value_regs_get_gpr x_regs 0)
1026
+ (value_regs_get_gpr x_regs 1)
1027
+ (value_regs_get_gpr y_regs 0)
1028
+ (value_regs_get_gpr y_regs 1))))
1029
+
1030
+ (rule 4 (lower (has_type $I128 (imul (iconcat x_lo x_hi) (iconcat y_lo y_hi))))
1031
+ (imul128 x_lo x_hi y_lo y_hi))
1032
+
1033
+ ;; Helper for lowering 128-bit multiplication with the 64-bit halves of the
1034
+ ;; lhs/rhs already split. The first two arguments are lo/hi for the lhs and the
1035
+ ;; second two are lo/hi for the rhs.
1036
+ ;;
1037
+ ;; mul:
1038
+ ;; dst_lo = lhs_lo * rhs_lo
1039
+ ;; dst_hi = umulhi(lhs_lo, rhs_lo) +
1040
+ ;; lhs_lo * rhs_hi +
1041
+ ;; lhs_hi * rhs_lo
1042
+ ;;
1043
+ ;; so we emit:
1044
+ ;; lo_hi = mul x_lo, y_hi
1045
+ ;; hi_lo = mul x_hi, y_lo
1046
+ ;; hilo_hilo = add lo_hi, hi_lo
1047
+ ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
1048
+ ;; dst_hi = add hilo_hilo, hi_lolo
1049
+ ;; return (dst_lo, dst_hi)
1050
+ (decl imul128 (Gpr Gpr GprMem GprMem) ValueRegs)
1051
+ (rule (imul128 x_lo x_hi y_lo y_hi)
1052
+ ;; Put `x` into registers and unpack its hi/lo halves.
1053
+ (let (;; lo_hi = mul x_lo, y_hi
1054
+ (lo_hi Gpr (x64_imul $I64 x_lo y_hi))
1055
+ ;; hi_lo = mul x_hi, y_lo
1056
+ (hi_lo Gpr (x64_imul $I64 x_hi y_lo))
1057
+ ;; hilo_hilo = add lo_hi, hi_lo
1058
+ (hilo_hilo Gpr (x64_add $I64 lo_hi hi_lo))
1059
+ ;; dst_lo:hi_lolo = x64_mul x_lo, y_lo
1060
+ (mul_regs ValueRegs (x64_mul $I64 $false x_lo y_lo))
1061
+ (dst_lo Gpr (value_regs_get_gpr mul_regs 0))
1062
+ (hi_lolo Gpr (value_regs_get_gpr mul_regs 1))
1063
+ ;; dst_hi = add hilo_hilo, hi_lolo
1064
+ (dst_hi Gpr (x64_add $I64 hilo_hilo hi_lolo)))
1065
+ (value_gprs dst_lo dst_hi)))
1066
+
1067
+ ;; The `mul` and `imul` instructions on x64 are defined as taking 64-bit
1068
+ ;; operands and producing a 128-bit result, which exactly matches the semantics
1069
+ ;; of widening 64-bit inputs to 128-bit and then multiplying them. That means
1070
+ ;; that these cases can get some some simpler codegen.
1071
+ (rule 5 (lower (has_type $I128 (imul (uextend x @ (value_type $I64))
1072
+ (uextend y @ (value_type $I64)))))
1073
+ (x64_mul $I64 $false x y))
1074
+ (rule 5 (lower (has_type $I128 (imul (sextend x @ (value_type $I64))
1075
+ (sextend y @ (value_type $I64)))))
1076
+ (x64_mul $I64 $true x y))
1077
+
1078
+ ;; SSE.
1079
+
1080
+ ;; (No i8x16 multiply.)
1081
+
1082
+ (rule (lower (has_type (multi_lane 16 8) (imul x y)))
1083
+ (x64_pmullw x y))
1084
+
1085
+ (rule (lower (has_type (multi_lane 32 4) (imul x y)))
1086
+ (if-let $true (use_sse41))
1087
+ (x64_pmulld x y))
1088
+
1089
+ ;; Without `pmulld` the `pmuludq` instruction is used instead which performs
1090
+ ;; 32-bit multiplication storing the 64-bit result. The 64-bit result is
1091
+ ;; truncated to 32-bits and everything else is woven into place.
1092
+ (rule -1 (lower (has_type (multi_lane 32 4) (imul x y)))
1093
+ (let (
1094
+ (x Xmm x)
1095
+ (y Xmm y)
1096
+ (x_hi Xmm (x64_pshufd x 0b00_11_00_01))
1097
+ (y_hi Xmm (x64_pshufd y 0b00_11_00_01))
1098
+ (mul_lo Xmm (x64_pshufd (x64_pmuludq x y) 0b00_00_10_00))
1099
+ (mul_hi Xmm (x64_pshufd (x64_pmuludq x_hi y_hi) 0b00_00_10_00))
1100
+ )
1101
+ (x64_punpckldq mul_lo mul_hi)))
1102
+
1103
+ ;; With AVX-512 we can implement `i64x2` multiplication with a single
1104
+ ;; instruction.
1105
+ (rule 3 (lower (has_type (multi_lane 64 2) (imul x y)))
1106
+ (if-let $true (use_avx512vl))
1107
+ (if-let $true (use_avx512dq))
1108
+ (x64_vpmullq x y))
1109
+
1110
+ ;; Otherwise, for i64x2 multiplication we describe a lane A as being composed of
1111
+ ;; a 32-bit upper half "Ah" and a 32-bit lower half "Al". The 32-bit long hand
1112
+ ;; multiplication can then be written as:
1113
+ ;;
1114
+ ;; Ah Al
1115
+ ;; * Bh Bl
1116
+ ;; -----
1117
+ ;; Al * Bl
1118
+ ;; + (Ah * Bl) << 32
1119
+ ;; + (Al * Bh) << 32
1120
+ ;;
1121
+ ;; So for each lane we will compute:
1122
+ ;;
1123
+ ;; A * B = (Al * Bl) + ((Ah * Bl) + (Al * Bh)) << 32
1124
+ ;;
1125
+ ;; Note, the algorithm will use `pmuludq` which operates directly on the lower
1126
+ ;; 32-bit (`Al` or `Bl`) of a lane and writes the result to the full 64-bits of
1127
+ ;; the lane of the destination. For this reason we don't need shifts to isolate
1128
+ ;; the lower 32-bits, however, we will need to use shifts to isolate the high
1129
+ ;; 32-bits when doing calculations, i.e., `Ah == A >> 32`.
1130
+ (rule (lower (has_type (multi_lane 64 2)
1131
+ (imul a b)))
1132
+ (let ((a0 Xmm a)
1133
+ (b0 Xmm b)
1134
+ ;; a_hi = A >> 32
1135
+ (a_hi Xmm (x64_psrlq a0 (xmi_imm 32)))
1136
+ ;; ah_bl = Ah * Bl
1137
+ (ah_bl Xmm (x64_pmuludq a_hi b0))
1138
+ ;; b_hi = B >> 32
1139
+ (b_hi Xmm (x64_psrlq b0 (xmi_imm 32)))
1140
+ ;; al_bh = Al * Bh
1141
+ (al_bh Xmm (x64_pmuludq a0 b_hi))
1142
+ ;; aa_bb = ah_bl + al_bh
1143
+ (aa_bb Xmm (x64_paddq ah_bl al_bh))
1144
+ ;; aa_bb_shifted = aa_bb << 32
1145
+ (aa_bb_shifted Xmm (x64_psllq aa_bb (xmi_imm 32)))
1146
+ ;; al_bl = Al * Bl
1147
+ (al_bl Xmm (x64_pmuludq a0 b0)))
1148
+ ;; al_bl + aa_bb_shifted
1149
+ (x64_paddq al_bl aa_bb_shifted)))
1150
+
1151
+ ;; Special case for `i32x4.extmul_high_i16x8_s`.
1152
+ (rule 1 (lower (has_type (multi_lane 32 4)
1153
+ (imul (swiden_high (and (value_type (multi_lane 16 8))
1154
+ x))
1155
+ (swiden_high (and (value_type (multi_lane 16 8))
1156
+ y)))))
1157
+ (let ((x2 Xmm x)
1158
+ (y2 Xmm y)
1159
+ (lo Xmm (x64_pmullw x2 y2))
1160
+ (hi Xmm (x64_pmulhw x2 y2)))
1161
+ (x64_punpckhwd lo hi)))
1162
+
1163
+ ;; Special case for `i64x2.extmul_high_i32x4_s`.
1164
+ (rule 1 (lower (has_type (multi_lane 64 2)
1165
+ (imul (swiden_high (and (value_type (multi_lane 32 4))
1166
+ x))
1167
+ (swiden_high (and (value_type (multi_lane 32 4))
1168
+ y)))))
1169
+ (if-let $true (use_sse41))
1170
+ (let ((x2 Xmm (x64_pshufd x 0xFA))
1171
+ (y2 Xmm (x64_pshufd y 0xFA)))
1172
+ (x64_pmuldq x2 y2)))
1173
+
1174
+ ;; Special case for `i32x4.extmul_low_i16x8_s`.
1175
+ (rule 1 (lower (has_type (multi_lane 32 4)
1176
+ (imul (swiden_low (and (value_type (multi_lane 16 8))
1177
+ x))
1178
+ (swiden_low (and (value_type (multi_lane 16 8))
1179
+ y)))))
1180
+ (let ((x2 Xmm x)
1181
+ (y2 Xmm y)
1182
+ (lo Xmm (x64_pmullw x2 y2))
1183
+ (hi Xmm (x64_pmulhw x2 y2)))
1184
+ (x64_punpcklwd lo hi)))
1185
+
1186
+ ;; Special case for `i64x2.extmul_low_i32x4_s`.
1187
+ (rule 1 (lower (has_type (multi_lane 64 2)
1188
+ (imul (swiden_low (and (value_type (multi_lane 32 4))
1189
+ x))
1190
+ (swiden_low (and (value_type (multi_lane 32 4))
1191
+ y)))))
1192
+ (if-let $true (use_sse41))
1193
+ (let ((x2 Xmm (x64_pshufd x 0x50))
1194
+ (y2 Xmm (x64_pshufd y 0x50)))
1195
+ (x64_pmuldq x2 y2)))
1196
+
1197
+ ;; Special case for `i32x4.extmul_high_i16x8_u`.
1198
+ (rule 1 (lower (has_type (multi_lane 32 4)
1199
+ (imul (uwiden_high (and (value_type (multi_lane 16 8))
1200
+ x))
1201
+ (uwiden_high (and (value_type (multi_lane 16 8))
1202
+ y)))))
1203
+ (let ((x2 Xmm x)
1204
+ (y2 Xmm y)
1205
+ (lo Xmm (x64_pmullw x2 y2))
1206
+ (hi Xmm (x64_pmulhuw x2 y2)))
1207
+ (x64_punpckhwd lo hi)))
1208
+
1209
+ ;; Special case for `i64x2.extmul_high_i32x4_u`.
1210
+ (rule 1 (lower (has_type (multi_lane 64 2)
1211
+ (imul (uwiden_high (and (value_type (multi_lane 32 4))
1212
+ x))
1213
+ (uwiden_high (and (value_type (multi_lane 32 4))
1214
+ y)))))
1215
+ (let ((x2 Xmm (x64_pshufd x 0xFA))
1216
+ (y2 Xmm (x64_pshufd y 0xFA)))
1217
+ (x64_pmuludq x2 y2)))
1218
+
1219
+ ;; Special case for `i32x4.extmul_low_i16x8_u`.
1220
+ (rule 1 (lower (has_type (multi_lane 32 4)
1221
+ (imul (uwiden_low (and (value_type (multi_lane 16 8))
1222
+ x))
1223
+ (uwiden_low (and (value_type (multi_lane 16 8))
1224
+ y)))))
1225
+ (let ((x2 Xmm x)
1226
+ (y2 Xmm y)
1227
+ (lo Xmm (x64_pmullw x2 y2))
1228
+ (hi Xmm (x64_pmulhuw x2 y2)))
1229
+ (x64_punpcklwd lo hi)))
1230
+
1231
+ ;; Special case for `i64x2.extmul_low_i32x4_u`.
1232
+ (rule 1 (lower (has_type (multi_lane 64 2)
1233
+ (imul (uwiden_low (and (value_type (multi_lane 32 4))
1234
+ x))
1235
+ (uwiden_low (and (value_type (multi_lane 32 4))
1236
+ y)))))
1237
+ (let ((x2 Xmm (x64_pshufd x 0x50))
1238
+ (y2 Xmm (x64_pshufd y 0x50)))
1239
+ (x64_pmuludq x2 y2)))
1240
+
1241
+ ;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1242
+
1243
+ (rule 1 (lower (has_type $I8X16 (iabs x)))
1244
+ (if-let $true (use_ssse3))
1245
+ (x64_pabsb x))
1246
+
1247
+ ;; Note the use of `pminub` with signed inputs will produce the positive signed
1248
+ ;; result which is what is desired here. The `pmaxub` isn't available until
1249
+ ;; SSE4.1 in which case the single-instruction above lowering would apply.
1250
+ (rule (lower (has_type $I8X16 (iabs x)))
1251
+ (let (
1252
+ (x Xmm x)
1253
+ (negated Xmm (x64_psubb (xmm_zero $I8X16) x))
1254
+ )
1255
+ (x64_pminub x negated)))
1256
+
1257
+ (rule 1 (lower (has_type $I16X8 (iabs x)))
1258
+ (if-let $true (use_ssse3))
1259
+ (x64_pabsw x))
1260
+
1261
+ (rule (lower (has_type $I16X8 (iabs x)))
1262
+ (let (
1263
+ (x Xmm x)
1264
+ (negated Xmm (x64_psubw (xmm_zero $I16X8) x))
1265
+ )
1266
+ (x64_pmaxsw x negated)))
1267
+
1268
+ (rule 1 (lower (has_type $I32X4 (iabs x)))
1269
+ (if-let $true (use_ssse3))
1270
+ (x64_pabsd x))
1271
+
1272
+ ;; Generate a `negative_mask` which is either numerically -1 or 0 depending on
1273
+ ;; if the lane is negative. If the lane is positive then the xor operation
1274
+ ;; won't change the lane but otherwise it'll bit-flip everything. By then
1275
+ ;; subtracting the mask this subtracts 0 for positive lanes (does nothing) or
1276
+ ;; ends up adding one for negative lanes. This means that for a negative lane
1277
+ ;; `x` the result is `!x + 1` which is the result of negating it.
1278
+ (rule (lower (has_type $I32X4 (iabs x)))
1279
+ (let (
1280
+ (x Xmm x)
1281
+ (negative_mask Xmm (x64_psrad x (xmi_imm 31)))
1282
+ (flipped_if_negative Xmm (x64_pxor x negative_mask))
1283
+ )
1284
+ (x64_psubd flipped_if_negative negative_mask)))
1285
+
1286
+ ;; When AVX512 is available, we can use a single `vpabsq` instruction.
1287
+ (rule 2 (lower (has_type $I64X2 (iabs x)))
1288
+ (if-let $true (use_avx512vl))
1289
+ (if-let $true (use_avx512f))
1290
+ (x64_vpabsq x))
1291
+
1292
+ ;; Otherwise, we use a separate register, `neg`, to contain the results of `0 -
1293
+ ;; x` and then blend in those results with `blendvpd` if the MSB of `neg` was
1294
+ ;; set to 1 (i.e. if `neg` was negative or, conversely, if `x` was originally
1295
+ ;; positive).
1296
+ (rule 1 (lower (has_type $I64X2 (iabs x)))
1297
+ (if-let $true (use_sse41))
1298
+ (let ((rx Xmm x)
1299
+ (neg Xmm (x64_psubq (imm $I64X2 0) rx)))
1300
+ (x64_blendvpd neg rx neg)))
1301
+
1302
+ ;; and if `blendvpd` isn't available then perform a shift/shuffle to generate a
1303
+ ;; mask of which lanes are negative, followed by flipping bits/sub to make both
1304
+ ;; positive.
1305
+ (rule (lower (has_type $I64X2 (iabs x)))
1306
+ (let ((x Xmm x)
1307
+ (signs Xmm (x64_psrad x (RegMemImm.Imm 31)))
1308
+ (signs Xmm (x64_pshufd signs 0b11_11_01_01))
1309
+ (xor_if_negative Xmm (x64_pxor x signs)))
1310
+ (x64_psubq xor_if_negative signs)))
1311
+
1312
+ ;; `i64` and smaller.
1313
+
1314
+ (rule -1 (lower (has_type (fits_in_64 ty) (iabs x)))
1315
+ (let ((src Gpr x)
1316
+ (neg ProducesFlags (x64_neg_paired ty src))
1317
+ ;; Manually extract the result from the neg, then ignore
1318
+ ;; it below, since we need to pass it into the cmove
1319
+ ;; before we pass the cmove to with_flags_reg.
1320
+ (neg_result Gpr (produces_flags_get_reg neg))
1321
+ ;; When the neg instruction sets the sign flag,
1322
+ ;; takes the original (non-negative) value.
1323
+ (cmove ConsumesFlags (cmove ty (CC.S) src neg_result)))
1324
+ (with_flags_reg (produces_flags_ignore neg) cmove)))
1325
+
1326
+ ;; `i128`. Negate the low bits, `adc` to the higher bits, then negate high bits.
1327
+ (rule (lower (has_type $I128 (iabs x)))
1328
+ ;; Get the high/low registers for `x`.
1329
+ (let ((x_regs ValueRegs x)
1330
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
1331
+ (x_hi Gpr (value_regs_get_gpr x_regs 1))
1332
+ ; negate low bits, then add 0 with carry to high bits.
1333
+ (neg_lo ProducesFlags (x64_neg_paired $I64 x_lo))
1334
+ (adc_hi ConsumesFlags (x64_adc_paired $I64 x_hi (imm $I64 0)))
1335
+ (neg_adc_vals ValueRegs (with_flags neg_lo adc_hi))
1336
+ ; negate high bits.
1337
+ (neg_hi ProducesFlags (x64_neg_paired $I64 (value_regs_get neg_adc_vals 1)))
1338
+ (neg_hi_flag_only ProducesFlags (produces_flags_ignore neg_hi))
1339
+ ; cmove based on sign flag from hi negation.
1340
+ (cmove_lo ConsumesFlags (cmove $I64 (CC.S) x_lo
1341
+ (value_regs_get neg_adc_vals 0)))
1342
+ (cmove_hi ConsumesFlags (cmove $I64 (CC.S) x_hi
1343
+ (produces_flags_get_reg neg_hi)))
1344
+ (cmoves ConsumesFlags (consumes_flags_concat cmove_lo cmove_hi)))
1345
+ (with_flags neg_hi_flag_only cmoves)))
1346
+
1347
+ ;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1348
+
1349
+ (rule (lower (has_type $F32 (fabs x)))
1350
+ (x64_andps x (imm $F32 0x7fffffff)))
1351
+
1352
+ (rule (lower (has_type $F64 (fabs x)))
1353
+ (x64_andpd x (imm $F64 0x7fffffffffffffff)))
1354
+
1355
+ ;; Special case for `f32x4.abs`.
1356
+ (rule (lower (has_type $F32X4 (fabs x)))
1357
+ (x64_andps x
1358
+ (x64_psrld (vector_all_ones) (xmi_imm 1))))
1359
+
1360
+ ;; Special case for `f64x2.abs`.
1361
+ (rule (lower (has_type $F64X2 (fabs x)))
1362
+ (x64_andpd x
1363
+ (x64_psrlq (vector_all_ones) (xmi_imm 1))))
1364
+
1365
+ ;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1366
+
1367
+ (rule (lower (has_type $F32 (fneg x)))
1368
+ (x64_xorps x (imm $F32 0x80000000)))
1369
+
1370
+ (rule (lower (has_type $F64 (fneg x)))
1371
+ (x64_xorpd x (imm $F64 0x8000000000000000)))
1372
+
1373
+ (rule (lower (has_type $F32X4 (fneg x)))
1374
+ (x64_xorps x
1375
+ (x64_pslld (vector_all_ones) (xmi_imm 31))))
1376
+
1377
+ (rule (lower (has_type $F64X2 (fneg x)))
1378
+ (x64_xorpd x
1379
+ (x64_psllq (vector_all_ones) (xmi_imm 63))))
1380
+
1381
+ ;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1382
+
1383
+ (decl lower_bmask (Type Type ValueRegs) ValueRegs)
1384
+
1385
+ ;; Values that fit in a register
1386
+ ;;
1387
+ ;; Use the neg instruction on the input which sets the CF (carry) flag
1388
+ ;; to 0 if the input is 0 or 1 otherwise.
1389
+ ;; We then subtract the output register with itself, which always gives a 0,
1390
+ ;; however use the carry flag from the previous negate to generate a -1 if it
1391
+ ;; was nonzero.
1392
+ ;;
1393
+ ;; neg in_reg
1394
+ ;; sbb out_reg, out_reg
1395
+ (rule 0
1396
+ (lower_bmask (fits_in_64 out_ty) (fits_in_64 in_ty) val)
1397
+ (let ((reg Gpr (value_regs_get_gpr val 0))
1398
+ (out ValueRegs (with_flags
1399
+ (x64_neg_paired in_ty reg)
1400
+ (x64_sbb_paired out_ty reg reg))))
1401
+ ;; Extract only the output of the sbb instruction
1402
+ (value_reg (value_regs_get out 1))))
1403
+
1404
+
1405
+ ;; If the input type is I128 we can `or` the registers, and recurse to the general case.
1406
+ (rule 1
1407
+ (lower_bmask (fits_in_64 out_ty) $I128 val)
1408
+ (let ((lo Gpr (value_regs_get_gpr val 0))
1409
+ (hi Gpr (value_regs_get_gpr val 1))
1410
+ (mixed Gpr (x64_or $I64 lo hi)))
1411
+ (lower_bmask out_ty $I64 (value_reg mixed))))
1412
+
1413
+ ;; If the output type is I128 we just duplicate the result of the I64 lowering
1414
+ (rule 2
1415
+ (lower_bmask $I128 in_ty val)
1416
+ (let ((res ValueRegs (lower_bmask $I64 in_ty val))
1417
+ (res Gpr (value_regs_get_gpr res 0)))
1418
+ (value_regs res res)))
1419
+
1420
+
1421
+ ;; Call the lower_bmask rule that does all the procssing
1422
+ (rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
1423
+ (lower_bmask out_ty in_ty x))
1424
+
1425
+ ;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1426
+
1427
+ ;; `i64` and smaller.
1428
+
1429
+ (rule -2 (lower (has_type ty (bnot x)))
1430
+ (if (ty_int_ref_scalar_64 ty))
1431
+ (x64_not ty x))
1432
+
1433
+
1434
+ ;; `i128`.
1435
+
1436
+ (decl i128_not (Value) ValueRegs)
1437
+ (rule (i128_not x)
1438
+ (let ((x_regs ValueRegs x)
1439
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
1440
+ (x_hi Gpr (value_regs_get_gpr x_regs 1)))
1441
+ (value_gprs (x64_not $I64 x_lo)
1442
+ (x64_not $I64 x_hi))))
1443
+
1444
+ (rule (lower (has_type $I128 (bnot x)))
1445
+ (i128_not x))
1446
+
1447
+ ;; f32 and f64
1448
+
1449
+ (rule -3 (lower (has_type (ty_scalar_float ty) (bnot x)))
1450
+ (x64_xor_vector ty x (vector_all_ones)))
1451
+
1452
+ ;; Special case for vector-types where bit-negation is an xor against an
1453
+ ;; all-one value
1454
+ (rule -1 (lower (has_type ty @ (multi_lane _bits _lanes) (bnot x)))
1455
+ (x64_xor_vector ty x (vector_all_ones)))
1456
+
1457
+ ;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1458
+
1459
+ (rule (lower (has_type ty @ (multi_lane _bits _lanes)
1460
+ (bitselect condition
1461
+ if_true
1462
+ if_false)))
1463
+ ;; a = and if_true, condition
1464
+ ;; b = and_not condition, if_false
1465
+ ;; or b, a
1466
+ (let ((cond_xmm Xmm condition)
1467
+ (a Xmm (sse_and ty if_true cond_xmm))
1468
+ (b Xmm (sse_and_not ty cond_xmm if_false)))
1469
+ (sse_or ty b a)))
1470
+
1471
+ ;; If every byte of the condition is guaranteed to be all ones or all zeroes,
1472
+ ;; we can use x64_blend.
1473
+ (rule 1 (lower (has_type ty @ (multi_lane _bits _lanes)
1474
+ (bitselect condition
1475
+ if_true
1476
+ if_false)))
1477
+ (if-let $true (use_sse41))
1478
+ (if (all_ones_or_all_zeros condition))
1479
+ (x64_pblendvb if_false if_true condition))
1480
+
1481
+ (decl pure partial all_ones_or_all_zeros (Value) bool)
1482
+ (rule (all_ones_or_all_zeros (and (icmp _ _ _) (value_type (multi_lane _ _)))) $true)
1483
+ (rule (all_ones_or_all_zeros (and (fcmp _ _ _) (value_type (multi_lane _ _)))) $true)
1484
+ (rule (all_ones_or_all_zeros (and (bitcast _ (fcmp _ _ _)) (value_type (multi_lane _ _)))) $true)
1485
+ (rule (all_ones_or_all_zeros (vconst (vconst_all_ones_or_all_zeros))) $true)
1486
+
1487
+ (decl pure vconst_all_ones_or_all_zeros () Constant)
1488
+ (extern extractor vconst_all_ones_or_all_zeros vconst_all_ones_or_all_zeros)
1489
+
1490
+ ;; Specializations for floating-pointer compares to generate a `minp*` or a
1491
+ ;; `maxp*` instruction. These are equivalent to the wasm `f32x4.{pmin,pmax}`
1492
+ ;; instructions and how they're lowered into CLIF. Note the careful ordering
1493
+ ;; of all the operands here to ensure that the input CLIF matched is implemented
1494
+ ;; by the corresponding x64 instruction.
1495
+ (rule 2 (lower (has_type $F32X4 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) x y)) x y)))
1496
+ (x64_minps x y))
1497
+ (rule 2 (lower (has_type $F64X2 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) x y)) x y)))
1498
+ (x64_minpd x y))
1499
+
1500
+ (rule 3 (lower (has_type $F32X4 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) y x)) x y)))
1501
+ (x64_maxps x y))
1502
+ (rule 3 (lower (has_type $F64X2 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) y x)) x y)))
1503
+ (x64_maxpd x y))
1504
+
1505
+ ;; Scalar rules
1506
+
1507
+ (rule 3 (lower (has_type $I128 (bitselect c t f)))
1508
+ (let ((a ValueRegs (and_i128 c t))
1509
+ (b ValueRegs (and_i128 (i128_not c) f)))
1510
+ (or_i128 a b)))
1511
+
1512
+ (rule 4 (lower (has_type (ty_int_ref_scalar_64 ty) (bitselect c t f)))
1513
+ (let ((a Gpr (x64_and ty c t))
1514
+ (b Gpr (x64_and ty (x64_not ty c) f)))
1515
+ (x64_or ty a b)))
1516
+
1517
+ (rule 5 (lower (has_type (ty_scalar_float ty) (bitselect c t f)))
1518
+ (let ((a Xmm (sse_and ty c t))
1519
+ (c_neg Xmm (x64_xor_vector ty c (vector_all_ones)))
1520
+ (b Xmm (sse_and ty c_neg f)))
1521
+ (sse_or ty a b)))
1522
+
1523
+ ;;;; Rules for `x86_blendv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1524
+
1525
+ (rule (lower (has_type $I8X16
1526
+ (x86_blendv condition if_true if_false)))
1527
+ (if-let $true (use_sse41))
1528
+ (x64_pblendvb if_false if_true condition))
1529
+
1530
+ (rule (lower (has_type $I32X4
1531
+ (x86_blendv condition if_true if_false)))
1532
+ (if-let $true (use_sse41))
1533
+ (x64_blendvps if_false if_true condition))
1534
+
1535
+ (rule (lower (has_type $I64X2
1536
+ (x86_blendv condition if_true if_false)))
1537
+ (if-let $true (use_sse41))
1538
+ (x64_blendvpd if_false if_true condition))
1539
+
1540
+ ;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1541
+
1542
+ (rule 1 (lower (insertlane vec @ (value_type $I8X16) val (u8_from_uimm8 idx)))
1543
+ (if-let $true (use_sse41))
1544
+ (x64_pinsrb vec val idx))
1545
+ (rule 2 (lower (insertlane vec @ (value_type $I8X16) (sinkable_load_exact val) (u8_from_uimm8 idx)))
1546
+ (if-let $true (use_sse41))
1547
+ (x64_pinsrb vec val idx))
1548
+
1549
+ ;; This lowering is particularly unoptimized and is mostly just here to work
1550
+ ;; rather than here to be fast. Requiring SSE 4.1 for the above lowering isn't
1551
+ ;; the end of the world hopefully as that's a pretty old instruction set, so
1552
+ ;; this is the "simplest" version that works on SSE2 for now.
1553
+ ;;
1554
+ ;; This lowering masks the original vector with a constant with all 1s except
1555
+ ;; for the "hole" where this value will get placed into, meaning the desired
1556
+ ;; lane is guaranteed as all 0s. Next the `val` is shuffled into this hole with
1557
+ ;; a few operations:
1558
+ ;;
1559
+ ;; 1. The `val` is zero-extended to 32-bits to guarantee the lower 32-bits
1560
+ ;; are all defined.
1561
+ ;; 2. An arithmetic shift-left is used with the low two bits of `n`, the
1562
+ ;; desired lane, to move the value into the right position within the 32-bit
1563
+ ;; register value.
1564
+ ;; 3. The 32-bit register is moved with `movd` into an XMM register
1565
+ ;; 4. The XMM register, where all lanes are 0 except for the first lane which
1566
+ ;; has the shifted value, is then shuffled with `pshufd` to move the
1567
+ ;; shifted value to the correct and final lane. This uses the upper two
1568
+ ;; bits of `n` to index the i32x4 lane that we're targeting.
1569
+ ;;
1570
+ ;; This all, laboriously, gets the `val` into the desired lane so it's then
1571
+ ;; `por`'d with the original vec-with-a-hole to produce the final result of the
1572
+ ;; insertion.
1573
+ (rule (lower (insertlane vec @ (value_type $I8X16) val (u8_from_uimm8 n)))
1574
+ (let ((vec_with_hole Xmm (x64_pand vec (insert_i8x16_lane_hole n)))
1575
+ (val Gpr (x64_movzx (ExtMode.BL) val))
1576
+ (val Gpr (x64_shl $I32 val (Imm8Reg.Imm8 (u8_shl (u8_and n 3) 3))))
1577
+ (val Xmm (x64_movd_to_xmm val))
1578
+ (val_at_hole Xmm (x64_pshufd val (insert_i8x16_lane_pshufd_imm (u8_shr n 2)))))
1579
+ (x64_por vec_with_hole val_at_hole)))
1580
+
1581
+ (decl insert_i8x16_lane_hole (u8) VCodeConstant)
1582
+ (extern constructor insert_i8x16_lane_hole insert_i8x16_lane_hole)
1583
+ (decl insert_i8x16_lane_pshufd_imm (u8) u8)
1584
+ (rule (insert_i8x16_lane_pshufd_imm 0) 0b01_01_01_00)
1585
+ (rule (insert_i8x16_lane_pshufd_imm 1) 0b01_01_00_01)
1586
+ (rule (insert_i8x16_lane_pshufd_imm 2) 0b01_00_01_01)
1587
+ (rule (insert_i8x16_lane_pshufd_imm 3) 0b00_01_01_01)
1588
+
1589
+
1590
+ ;; i16x8.replace_lane
1591
+ (rule (lower (insertlane vec @ (value_type $I16X8) val (u8_from_uimm8 idx)))
1592
+ (x64_pinsrw vec val idx))
1593
+ (rule 1 (lower (insertlane vec @ (value_type $I16X8) (sinkable_load_exact val) (u8_from_uimm8 idx)))
1594
+ (x64_pinsrw vec val idx))
1595
+
1596
+ ;; i32x4.replace_lane
1597
+ (rule 1 (lower (insertlane vec @ (value_type $I32X4) val (u8_from_uimm8 idx)))
1598
+ (if-let $true (use_sse41))
1599
+ (x64_pinsrd vec val idx))
1600
+
1601
+ (rule (lower (insertlane vec @ (value_type $I32X4) val (u8_from_uimm8 0)))
1602
+ (x64_movss_regmove vec (x64_movd_to_xmm val)))
1603
+
1604
+ ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1605
+ ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1606
+ (rule (lower (insertlane vec @ (value_type $I32X4) val (u8_from_uimm8 1)))
1607
+ (let ((val Xmm (x64_movd_to_xmm val))
1608
+ (vec Xmm vec))
1609
+ (x64_shufps (x64_punpcklqdq val vec) vec 0b11_10_00_10)))
1610
+
1611
+ ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1612
+ ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1613
+ (rule (lower (insertlane vec @ (value_type $I32X4) val (u8_from_uimm8 2)))
1614
+ (let ((val Xmm (x64_movd_to_xmm val))
1615
+ (vec Xmm vec))
1616
+ (x64_shufps vec (x64_shufps val vec 0b00_11_00_00) 0b10_00_01_00)))
1617
+
1618
+ ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1619
+ ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1620
+ (rule (lower (insertlane vec @ (value_type $I32X4) val (u8_from_uimm8 3)))
1621
+ (let ((val Xmm (x64_movd_to_xmm val))
1622
+ (vec Xmm vec))
1623
+ (x64_shufps vec (x64_shufps val vec 0b11_10_01_00) 0b00_10_01_00)))
1624
+
1625
+ ;; i64x2.replace_lane
1626
+ (rule 1 (lower (insertlane vec @ (value_type $I64X2) val (u8_from_uimm8 idx)))
1627
+ (if-let $true (use_sse41))
1628
+ (x64_pinsrq vec val idx))
1629
+ (rule (lower (insertlane vec @ (value_type $I64X2) val (u8_from_uimm8 0)))
1630
+ (x64_movsd_regmove vec (x64_movq_to_xmm val)))
1631
+ (rule (lower (insertlane vec @ (value_type $I64X2) val (u8_from_uimm8 1)))
1632
+ (x64_punpcklqdq vec (x64_movq_to_xmm val)))
1633
+
1634
+ ;; (i64x2.replace_lane 1) with a splat as source for lane 0 -- we can elide
1635
+ ;; the splat and just do a move. This turns out to be a common pattern when
1636
+ ;; constructing an i64x2 out of two i64s.
1637
+ (rule 3 (lower (insertlane (has_type $I64X2 (splat lane0))
1638
+ lane1
1639
+ (u8_from_uimm8 1)))
1640
+ (if-let $true (use_sse41))
1641
+ (x64_pinsrq (bitcast_gpr_to_xmm 64 lane0) lane1 1))
1642
+
1643
+ (rule 1 (lower (insertlane vec @ (value_type $F32X4) (sinkable_load val) (u8_from_uimm8 idx)))
1644
+ (if-let $true (use_sse41))
1645
+ (x64_insertps vec val (sse_insertps_lane_imm idx)))
1646
+ (rule (lower (insertlane vec @ (value_type $F32X4) val (u8_from_uimm8 idx)))
1647
+ (f32x4_insertlane vec val idx))
1648
+
1649
+ ;; Helper function used below for `insertlane` but also here for other
1650
+ (decl f32x4_insertlane (Xmm Xmm u8) Xmm)
1651
+
1652
+ ;; f32x4.replace_lane
1653
+ (rule 1 (f32x4_insertlane vec val idx)
1654
+ (if-let $true (use_sse41))
1655
+ (x64_insertps vec val (sse_insertps_lane_imm idx)))
1656
+
1657
+ ;; External rust code used to calculate the immediate value to `insertps`.
1658
+ (decl sse_insertps_lane_imm (u8) u8)
1659
+ (extern constructor sse_insertps_lane_imm sse_insertps_lane_imm)
1660
+
1661
+ ;; f32x4.replace_lane 0
1662
+ (rule (f32x4_insertlane vec val 0)
1663
+ (x64_movss_regmove vec val))
1664
+
1665
+ ;; f32x4.replace_lane 1
1666
+ ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1667
+ ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1668
+ (rule (f32x4_insertlane vec val 1)
1669
+ (let ((tmp Xmm (x64_movlhps val vec)))
1670
+ (x64_shufps tmp vec 0b11_10_00_10)))
1671
+
1672
+ ;; f32x4.replace_lane 2
1673
+ ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1674
+ ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1675
+ (rule (f32x4_insertlane vec val 2)
1676
+ (let ((tmp Xmm (x64_shufps val vec 0b00_11_00_00)))
1677
+ (x64_shufps vec tmp 0b10_00_01_00)))
1678
+
1679
+ ;; f32x4.replace_lane 3
1680
+ ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1681
+ ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1682
+ (rule (f32x4_insertlane vec val 3)
1683
+ (let ((tmp Xmm (x64_shufps val vec 0b11_10_01_00)))
1684
+ (x64_shufps vec tmp 0b00_10_01_00)))
1685
+
1686
+ ;; f64x2.replace_lane 0
1687
+ ;;
1688
+ ;; Here the `movsd` instruction is used specifically to specialize moving
1689
+ ;; into the fist lane where unlike above cases we're not using the lane
1690
+ ;; immediate as an immediate to the instruction itself.
1691
+ (rule (lower (insertlane vec @ (value_type $F64X2) val (u8_from_uimm8 0)))
1692
+ (x64_movsd_regmove vec val))
1693
+
1694
+ ;; f64x2.replace_lane 1
1695
+ ;;
1696
+ ;; Here the `movlhps` instruction is used specifically to specialize moving
1697
+ ;; into the second lane where unlike above cases we're not using the lane
1698
+ ;; immediate as an immediate to the instruction itself.
1699
+ (rule (lower (insertlane vec @ (value_type $F64X2) val (u8_from_uimm8 1)))
1700
+ (x64_movlhps vec val))
1701
+
1702
+ ;;;; Rules for `smin`, `smax`, `umin`, `umax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1703
+
1704
+ ;; `i64` and smaller.
1705
+
1706
+ (decl cmp_and_choose (Type CC Value Value) ValueRegs)
1707
+ (rule (cmp_and_choose (fits_in_64 ty) cc x y)
1708
+ (let ((size OperandSize (raw_operand_size_of_type ty))
1709
+ ;; We need to put x and y in registers explicitly because
1710
+ ;; we use the values more than once. Hence, even if these
1711
+ ;; are "unique uses" at the CLIF level and would otherwise
1712
+ ;; allow for load-op merging, here we cannot do that.
1713
+ (x_reg Reg x)
1714
+ (y_reg Reg y))
1715
+ (with_flags_reg (x64_cmp size y_reg x_reg)
1716
+ (cmove ty cc y_reg x_reg))))
1717
+
1718
+ (rule -1 (lower (has_type (fits_in_64 ty) (umin x y)))
1719
+ (cmp_and_choose ty (CC.B) x y))
1720
+
1721
+ (rule -1 (lower (has_type (fits_in_64 ty) (umax x y)))
1722
+ (cmp_and_choose ty (CC.NB) x y))
1723
+
1724
+ (rule -1 (lower (has_type (fits_in_64 ty) (smin x y)))
1725
+ (cmp_and_choose ty (CC.L) x y))
1726
+
1727
+ (rule -1 (lower (has_type (fits_in_64 ty) (smax x y)))
1728
+ (cmp_and_choose ty (CC.NL) x y))
1729
+
1730
+ ;; SSE helpers for determining if single-instruction lowerings are available.
1731
+
1732
+ (decl pure has_pmins (Type) bool)
1733
+ (rule 1 (has_pmins $I16X8) $true)
1734
+ (rule 1 (has_pmins $I64X2) $false)
1735
+ (rule (has_pmins _) (use_sse41))
1736
+
1737
+ (decl pure has_pmaxs (Type) bool)
1738
+ (rule 1 (has_pmaxs $I16X8) $true)
1739
+ (rule 1 (has_pmaxs $I64X2) $false)
1740
+ (rule (has_pmaxs _) (use_sse41))
1741
+
1742
+ (decl pure has_pmaxu (Type) bool)
1743
+ (rule 1 (has_pmaxu $I8X16) $true)
1744
+ (rule 1 (has_pmaxu $I64X2) $false)
1745
+ (rule (has_pmaxu _) (use_sse41))
1746
+
1747
+ (decl pure has_pminu (Type) bool)
1748
+ (rule 1 (has_pminu $I8X16) $true)
1749
+ (rule 1 (has_pminu $I64X2) $false)
1750
+ (rule (has_pminu _) (use_sse41))
1751
+
1752
+ ;; SSE `smax`.
1753
+
1754
+ (rule (lower (has_type (ty_vec128 ty) (smax x y)))
1755
+ (lower_vec_smax ty x y))
1756
+
1757
+ (decl lower_vec_smax (Type Xmm Xmm) Xmm)
1758
+ (rule 1 (lower_vec_smax ty x y)
1759
+ (if-let $true (has_pmaxs ty))
1760
+ (x64_pmaxs ty x y))
1761
+
1762
+ (rule (lower_vec_smax ty x y)
1763
+ (let (
1764
+ (x Xmm x)
1765
+ (y Xmm y)
1766
+ (cmp Xmm (x64_pcmpgt ty x y))
1767
+ (x_is_max Xmm (x64_pand cmp x))
1768
+ (y_is_max Xmm (x64_pandn cmp y))
1769
+ )
1770
+ (x64_por x_is_max y_is_max)))
1771
+
1772
+ ;; SSE `smin`.
1773
+
1774
+ (rule 1 (lower (has_type (ty_vec128 ty) (smin x y)))
1775
+ (if-let $true (has_pmins ty))
1776
+ (x64_pmins ty x y))
1777
+
1778
+ (rule (lower (has_type (ty_vec128 ty) (smin x y)))
1779
+ (let (
1780
+ (x Xmm x)
1781
+ (y Xmm y)
1782
+ (cmp Xmm (x64_pcmpgt ty y x))
1783
+ (x_is_min Xmm (x64_pand cmp x))
1784
+ (y_is_min Xmm (x64_pandn cmp y))
1785
+ )
1786
+ (x64_por x_is_min y_is_min)))
1787
+
1788
+ ;; SSE `umax`.
1789
+
1790
+ (rule 2 (lower (has_type (ty_vec128 ty) (umax x y)))
1791
+ (if-let $true (has_pmaxu ty))
1792
+ (x64_pmaxu ty x y))
1793
+
1794
+ ;; If y < x then the saturating subtraction will be zero, otherwise when added
1795
+ ;; back to x it'll return y.
1796
+ (rule 1 (lower (has_type $I16X8 (umax x y)))
1797
+ (let ((x Xmm x))
1798
+ (x64_paddw x (x64_psubusw y x))))
1799
+
1800
+ ;; Flip the upper bits of each lane so the signed comparison has the same
1801
+ ;; result as a signed comparison, and then select the results with the output
1802
+ ;; mask. See `pcmpgt` lowering for info on flipping the upper bit.
1803
+ (rule (lower (has_type (ty_vec128 ty) (umax x y)))
1804
+ (let (
1805
+ (x Xmm x)
1806
+ (y Xmm y)
1807
+ (mask Xmm (flip_high_bit_mask ty))
1808
+ (x_masked Xmm (x64_pxor x mask))
1809
+ (y_masked Xmm (x64_pxor y mask))
1810
+ (cmp Xmm (x64_pcmpgt ty x_masked y_masked))
1811
+ (x_is_max Xmm (x64_pand cmp x))
1812
+ (y_is_max Xmm (x64_pandn cmp y))
1813
+ )
1814
+ (x64_por x_is_max y_is_max)))
1815
+
1816
+ (decl flip_high_bit_mask (Type) Xmm)
1817
+ (rule (flip_high_bit_mask $I16X8)
1818
+ (x64_movdqu_load (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000)))
1819
+ (rule (flip_high_bit_mask $I32X4)
1820
+ (x64_movdqu_load (emit_u128_le_const 0x80000000_80000000_80000000_80000000)))
1821
+ (rule (flip_high_bit_mask $I64X2)
1822
+ (x64_movdqu_load (emit_u128_le_const 0x8000000000000000_8000000000000000)))
1823
+
1824
+ ;; SSE `umin`.
1825
+
1826
+ (rule 2 (lower (has_type (ty_vec128 ty) (umin x y)))
1827
+ (if-let $true (has_pminu ty))
1828
+ (x64_pminu ty x y))
1829
+
1830
+ ;; If x < y then the saturating subtraction will be 0. Otherwise if x > y then
1831
+ ;; the saturated result, when subtracted again, will go back to `y`.
1832
+ (rule 1 (lower (has_type $I16X8 (umin x y)))
1833
+ (let ((x Xmm x))
1834
+ (x64_psubw x (x64_psubusw x y))))
1835
+
1836
+ ;; Same as `umax`, and see `pcmpgt` for docs on flipping the upper bit.
1837
+ (rule (lower (has_type (ty_vec128 ty) (umin x y)))
1838
+ (let (
1839
+ (x Xmm x)
1840
+ (y Xmm y)
1841
+ (mask Xmm (flip_high_bit_mask ty))
1842
+ (x_masked Xmm (x64_pxor x mask))
1843
+ (y_masked Xmm (x64_pxor y mask))
1844
+ (cmp Xmm (x64_pcmpgt ty y_masked x_masked))
1845
+ (x_is_max Xmm (x64_pand cmp x))
1846
+ (y_is_max Xmm (x64_pandn cmp y))
1847
+ )
1848
+ (x64_por x_is_max y_is_max)))
1849
+
1850
+ ;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1851
+
1852
+ (rule (lower (trap code))
1853
+ (side_effect (x64_ud2 code)))
1854
+
1855
+ ;;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1856
+
1857
+ (rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
1858
+ (with_flags
1859
+ (x64_add_with_flags_paired ty a b)
1860
+ (trap_if (CC.B) tc)))
1861
+
1862
+ ;; Handle lhs immediates/sinkable loads in addition to the automatic rhs
1863
+ ;; handling of above.
1864
+
1865
+ (rule 1 (lower (has_type (fits_in_64 ty)
1866
+ (uadd_overflow_trap (simm32_from_value a) b tc)))
1867
+ (with_flags
1868
+ (x64_add_with_flags_paired ty b a)
1869
+ (trap_if (CC.B) tc)))
1870
+
1871
+ (rule 2 (lower (has_type (fits_in_64 ty)
1872
+ (uadd_overflow_trap (sinkable_load a) b tc)))
1873
+ (with_flags
1874
+ (x64_add_with_flags_paired ty b a)
1875
+ (trap_if (CC.B) tc)))
1876
+
1877
+ ;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1878
+
1879
+ ;; N.B.: the Ret itself is generated by the ABI.
1880
+ (rule (lower (return args))
1881
+ (lower_return args))
1882
+
1883
+ ;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1884
+
1885
+ (rule -2 (lower (icmp cc a @ (value_type (fits_in_64 ty)) b))
1886
+ (lower_icmp_bool (emit_cmp cc a b)))
1887
+
1888
+ (rule -1 (lower (icmp cc a @ (value_type $I128) b))
1889
+ (lower_icmp_bool (emit_cmp cc a b)))
1890
+
1891
+ ;; Peephole optimization for `x < 0`, when x is a signed 64 bit value
1892
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I64) (u64_from_iconst 0))))
1893
+ (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1894
+
1895
+ ;; Peephole optimization for `0 > x`, when x is a signed 64 bit value
1896
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I64))))
1897
+ (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1898
+
1899
+ ;; Peephole optimization for `0 <= x`, when x is a signed 64 bit value
1900
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I64))))
1901
+ (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1902
+
1903
+ ;; Peephole optimization for `x >= 0`, when x is a signed 64 bit value
1904
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I64) (u64_from_iconst 0))))
1905
+ (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1906
+
1907
+ ;; Peephole optimization for `x < 0`, when x is a signed 32 bit value
1908
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I32) (u64_from_iconst 0))))
1909
+ (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1910
+
1911
+ ;; Peephole optimization for `0 > x`, when x is a signed 32 bit value
1912
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I32))))
1913
+ (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1914
+
1915
+ ;; Peephole optimization for `0 <= x`, when x is a signed 32 bit value
1916
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I32))))
1917
+ (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1918
+
1919
+ ;; Peephole optimization for `x >= 0`, when x is a signed 32 bit value
1920
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I32) (u64_from_iconst 0))))
1921
+ (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1922
+
1923
+ ;; For XMM-held values, we lower to `PCMP*` instructions, sometimes more than
1924
+ ;; one. To note: what is different here about the output values is that each
1925
+ ;; lane will be filled with all 1s or all 0s according to the comparison,
1926
+ ;; whereas for GPR-held values, the result will be simply 0 or 1 (upper bits
1927
+ ;; unset).
1928
+ (rule (lower (icmp (IntCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1929
+ (x64_pcmpeq ty a b))
1930
+
1931
+ ;; To lower a not-equals comparison, we perform an equality comparison
1932
+ ;; (PCMPEQ*) and then invert the bits (PXOR with all 1s).
1933
+ (rule (lower (icmp (IntCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1934
+ (let ((checked Xmm (x64_pcmpeq ty a b))
1935
+ (all_ones Xmm (vector_all_ones)))
1936
+ (x64_pxor checked all_ones)))
1937
+
1938
+ ;; SSE `sgt`
1939
+
1940
+ (rule (lower (icmp (IntCC.SignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1941
+ (x64_pcmpgt ty a b))
1942
+
1943
+ ;; SSE `slt`
1944
+
1945
+ (rule (lower (icmp (IntCC.SignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1946
+ (x64_pcmpgt ty b a))
1947
+
1948
+ ;; SSE `ugt`
1949
+
1950
+ ;; N.B.: we must manually prevent load coalescing operands; the
1951
+ ;; register allocator gets confused otherwise.
1952
+ (rule 1 (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1953
+ (if-let $true (has_pmaxu ty))
1954
+ (let ((a Xmm a)
1955
+ (b Xmm b)
1956
+ (max Xmm (x64_pmaxu ty a b))
1957
+ (eq Xmm (x64_pcmpeq ty max b)))
1958
+ (x64_pxor eq (vector_all_ones))))
1959
+
1960
+ ;; Flip the upper bit of each lane so the result of a signed comparison is the
1961
+ ;; same as the result of an unsigned comparison (see docs on `pcmpgt` for more)
1962
+ (rule (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1963
+ (let ((mask Xmm (flip_high_bit_mask ty))
1964
+ (a_masked Xmm (x64_pxor a mask))
1965
+ (b_masked Xmm (x64_pxor b mask)))
1966
+ (x64_pcmpgt ty a_masked b_masked)))
1967
+
1968
+ ;; SSE `ult`
1969
+
1970
+ (rule 1 (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1971
+ (if-let $true (has_pminu ty))
1972
+ ;; N.B.: see note above.
1973
+ (let ((a Xmm a)
1974
+ (b Xmm b)
1975
+ (min Xmm (x64_pminu ty a b))
1976
+ (eq Xmm (x64_pcmpeq ty min b)))
1977
+ (x64_pxor eq (vector_all_ones))))
1978
+
1979
+ ;; Flip the upper bit of `a` and `b` so the signed comparison result will
1980
+ ;; be the same as the unsigned comparison result (see docs on `pcmpgt` for more).
1981
+ (rule (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1982
+ (let ((mask Xmm (flip_high_bit_mask ty))
1983
+ (a_masked Xmm (x64_pxor a mask))
1984
+ (b_masked Xmm (x64_pxor b mask)))
1985
+ (x64_pcmpgt ty b_masked a_masked)))
1986
+
1987
+ ;; SSE `sge`
1988
+
1989
+ ;; Use `pmaxs*` and compare the result to `a` to see if it's `>= b`.
1990
+ (rule 1 (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1991
+ (if-let $true (has_pmaxs ty))
1992
+ (x64_pcmpeq ty a (x64_pmaxs ty a b)))
1993
+
1994
+ ;; Without `pmaxs*` use a `pcmpgt*` with reversed operands and invert the
1995
+ ;; result.
1996
+ (rule (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1997
+ (x64_pxor (x64_pcmpgt ty b a) (vector_all_ones)))
1998
+
1999
+ ;; SSE `sle`
2000
+
2001
+ ;; With `pmins*` use that and compare the result to `a`.
2002
+ (rule 1 (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2003
+ (if-let $true (has_pmins ty))
2004
+ (x64_pcmpeq ty a (x64_pmins ty a b)))
2005
+
2006
+ ;; Without `pmins*` perform a greater-than test and invert the result.
2007
+ (rule (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2008
+ (x64_pxor (x64_pcmpgt ty a b) (vector_all_ones)))
2009
+
2010
+ ;; SSE `uge`
2011
+
2012
+ (rule 2 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2013
+ (if-let $true (has_pmaxu ty))
2014
+ (x64_pcmpeq ty a (x64_pmaxu ty a b)))
2015
+
2016
+ ;; Perform a saturating subtract of `a` from `b` and if the result is zero then
2017
+ ;; `a` is greater or equal.
2018
+ (rule 1 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type $I16X8) b))
2019
+ (x64_pcmpeqw (x64_psubusw b a) (xmm_zero $I16X8)))
2020
+
2021
+ ;; Flip the upper bit of each lane so the signed comparison is the same as
2022
+ ;; an unsigned one and then invert the result. See docs on `pcmpgt` for why
2023
+ ;; flipping the upper bit works.
2024
+ (rule (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2025
+ (let (
2026
+ (mask Xmm (flip_high_bit_mask ty))
2027
+ (a_masked Xmm (x64_pxor a mask))
2028
+ (b_masked Xmm (x64_pxor b mask))
2029
+ (cmp Xmm (x64_pcmpgt ty b_masked a_masked))
2030
+ )
2031
+ (x64_pxor cmp (vector_all_ones))))
2032
+
2033
+ ;; SSE `ule`
2034
+
2035
+ (rule 2 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2036
+ (if-let $true (has_pminu ty))
2037
+ (x64_pcmpeq ty a (x64_pminu ty a b)))
2038
+
2039
+ ;; A saturating subtraction will produce zeros if `a` is less than `b`, so
2040
+ ;; compare that result to an all-zeros result to figure out lanes of `a` that
2041
+ ;; are <= to the lanes in `b`
2042
+ (rule 1 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type $I16X8) b))
2043
+ (let ((zeros_if_a_is_min Xmm (x64_psubusw a b)))
2044
+ (x64_pcmpeqw zeros_if_a_is_min (xmm_zero $I8X16))))
2045
+
2046
+ ;; Flip the upper bit of each lane in `a` and `b` so a signed comparison
2047
+ ;; produces the same result as an unsigned comparison. Then test test for `gt`
2048
+ ;; and invert the result to get the `le` that is desired here. See docs on
2049
+ ;; `pcmpgt` for why flipping the upper bit works.
2050
+ (rule (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2051
+ (let (
2052
+ (mask Xmm (flip_high_bit_mask ty))
2053
+ (a_masked Xmm (x64_pxor a mask))
2054
+ (b_masked Xmm (x64_pxor b mask))
2055
+ (cmp Xmm (x64_pcmpgt ty a_masked b_masked))
2056
+ )
2057
+ (x64_pxor cmp (vector_all_ones))))
2058
+
2059
+ ;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2060
+
2061
+ ;; CLIF's `fcmp` instruction always operates on XMM registers--both scalar and
2062
+ ;; vector. For the scalar versions, we use the flag-setting behavior of the
2063
+ ;; `UCOMIS*` instruction to `SETcc` a 0 or 1 in a GPR register. Note that CLIF's
2064
+ ;; `select` uses the same kind of flag-setting behavior but chooses values other
2065
+ ;; than 0 or 1.
2066
+ ;;
2067
+ ;; Checking the result of `UCOMIS*` is unfortunately difficult in some cases
2068
+ ;; because we do not have `SETcc` instructions that explicitly check
2069
+ ;; simultaneously for the condition (i.e., `eq`, `le`, `gt`, etc.) *and*
2070
+ ;; orderedness. Instead, we must check the flags multiple times. The UCOMIS*
2071
+ ;; documentation (see Intel's Software Developer's Manual, volume 2, chapter 4)
2072
+ ;; is helpful:
2073
+ ;; - unordered assigns Z = 1, P = 1, C = 1
2074
+ ;; - greater than assigns Z = 0, P = 0, C = 0
2075
+ ;; - less than assigns Z = 0, P = 0, C = 1
2076
+ ;; - equal assigns Z = 1, P = 0, C = 0
2077
+
2078
+ (rule -1 (lower (fcmp cc a @ (value_type (ty_scalar_float ty)) b))
2079
+ (lower_fcmp_bool (emit_fcmp cc a b)))
2080
+
2081
+ ;; For vector lowerings, we use `CMPP*` instructions with a 3-bit operand that
2082
+ ;; determines the comparison to make. Note that comparisons that succeed will
2083
+ ;; fill the lane with 1s; comparisons that do not will fill the lane with 0s.
2084
+
2085
+ (rule (lower (fcmp (FloatCC.Equal) a @ (value_type (ty_vec128 ty)) b))
2086
+ (x64_cmpp ty a b (FcmpImm.Equal)))
2087
+ (rule (lower (fcmp (FloatCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
2088
+ (x64_cmpp ty a b (FcmpImm.NotEqual)))
2089
+ (rule (lower (fcmp (FloatCC.LessThan) a @ (value_type (ty_vec128 ty)) b))
2090
+ (x64_cmpp ty a b (FcmpImm.LessThan)))
2091
+ (rule (lower (fcmp (FloatCC.LessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2092
+ (x64_cmpp ty a b (FcmpImm.LessThanOrEqual)))
2093
+ (rule (lower (fcmp (FloatCC.Ordered) a @ (value_type (ty_vec128 ty)) b))
2094
+ (x64_cmpp ty a b (FcmpImm.Ordered)))
2095
+ (rule (lower (fcmp (FloatCC.Unordered) a @ (value_type (ty_vec128 ty)) b))
2096
+ (x64_cmpp ty a b (FcmpImm.Unordered)))
2097
+ (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThan) a @ (value_type (ty_vec128 ty)) b))
2098
+ (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThan)))
2099
+ (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2100
+ (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThanOrEqual)))
2101
+
2102
+ ;; Some vector lowerings rely on flipping the operands and using a reversed
2103
+ ;; comparison code.
2104
+
2105
+ (rule (lower (fcmp (FloatCC.GreaterThan) a @ (value_type (ty_vec128 ty)) b))
2106
+ (x64_cmpp ty b a (FcmpImm.LessThan)))
2107
+ (rule (lower (fcmp (FloatCC.GreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2108
+ (x64_cmpp ty b a (FcmpImm.LessThanOrEqual)))
2109
+ (rule (lower (fcmp (FloatCC.UnorderedOrLessThan) a @ (value_type (ty_vec128 ty)) b))
2110
+ (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThan)))
2111
+ (rule (lower (fcmp (FloatCC.UnorderedOrLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2112
+ (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThanOrEqual)))
2113
+
2114
+ ;; Some vector lowerings are simply not supported for certain codes:
2115
+ ;; - FloatCC::OrderedNotEqual
2116
+ ;; - FloatCC::UnorderedOrEqual
2117
+
2118
+ ;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2119
+
2120
+ ;; When a `select` has an `fcmp` as a condition then rely on `emit_fcmp` to
2121
+ ;; figure out how to perform the comparison.
2122
+ ;;
2123
+ ;; Note, though, that the `FloatCC.Equal` requires an "and" to happen for two
2124
+ ;; condition codes which isn't the easiest thing to lower to a `cmove`
2125
+ ;; instruction. For this reason a `select (fcmp eq ..) ..` is instead
2126
+ ;; flipped around to be `select (fcmp ne ..) ..` with all operands reversed.
2127
+ ;; This will produce a `FcmpCondResult.OrCondition` which is easier to codegen
2128
+ ;; for.
2129
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp cc a b)) x y)))
2130
+ (lower_select_fcmp ty (emit_fcmp cc a b) x y))
2131
+ (rule 1 (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.Equal) a b)) x y)))
2132
+ (lower_select_fcmp ty (emit_fcmp (FloatCC.NotEqual) a b) y x))
2133
+
2134
+ (decl lower_select_fcmp (Type FcmpCondResult Value Value) InstOutput)
2135
+ (rule (lower_select_fcmp ty (FcmpCondResult.Condition flags cc) x y)
2136
+ (with_flags flags (cmove_from_values ty cc x y)))
2137
+ (rule (lower_select_fcmp ty (FcmpCondResult.OrCondition flags cc1 cc2) x y)
2138
+ (with_flags flags (cmove_or_from_values ty cc1 cc2 x y)))
2139
+
2140
+ ;; We also can lower `select`s that depend on an `icmp` test, but more simply
2141
+ ;; than the `fcmp` variants above. In these cases, we lower to a `CMP`
2142
+ ;; instruction plus a `CMOV`; recall that `cmove_from_values` here may emit more
2143
+ ;; than one instruction for certain types (e.g., XMM-held, I128).
2144
+
2145
+ (rule (lower (has_type ty (select (maybe_uextend (icmp cc a @ (value_type (fits_in_64 a_ty)) b)) x y)))
2146
+ (lower_select_icmp ty (emit_cmp cc a b) x y))
2147
+
2148
+ ;; Finally, we lower `select` from a condition value `c`. These rules are meant
2149
+ ;; to be the final, default lowerings if no other patterns matched above.
2150
+
2151
+ (rule -1 (lower (has_type ty (select c @ (value_type (fits_in_64 a_ty)) x y)))
2152
+ (let ((size OperandSize (raw_operand_size_of_type a_ty))
2153
+ ;; N.B.: disallow load-op fusion, see above. TODO:
2154
+ ;; https://github.com/bytecodealliance/wasmtime/issues/3953.
2155
+ (gpr_c Gpr (put_in_gpr c)))
2156
+ (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
2157
+
2158
+ (rule -2 (lower (has_type ty (select c @ (value_type $I128) x y)))
2159
+ (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
2160
+ (select_icmp cond_result x y)))
2161
+
2162
+ (decl lower_select_icmp (Type IcmpCondResult Value Value) InstOutput)
2163
+ (rule (lower_select_icmp ty (IcmpCondResult.Condition flags cc) x y)
2164
+ (with_flags flags (cmove_from_values ty cc x y)))
2165
+
2166
+ ;; Specializations for floating-point compares to generate a `mins*` or a
2167
+ ;; `maxs*` instruction. These are equivalent to the "pseudo-m{in,ax}"
2168
+ ;; specializations for vectors.
2169
+ (rule 2 (lower (has_type $F32 (select (maybe_uextend (fcmp (FloatCC.LessThan) x y)) x y)))
2170
+ (x64_minss x y))
2171
+ (rule 2 (lower (has_type $F64 (select (maybe_uextend (fcmp (FloatCC.LessThan) x y)) x y)))
2172
+ (x64_minsd x y))
2173
+ (rule 3 (lower (has_type $F32 (select (maybe_uextend (fcmp (FloatCC.LessThan) y x)) x y)))
2174
+ (x64_maxss x y))
2175
+ (rule 3 (lower (has_type $F64 (select (maybe_uextend (fcmp (FloatCC.LessThan) y x)) x y)))
2176
+ (x64_maxsd x y))
2177
+
2178
+ ;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2179
+
2180
+ (rule 2 (lower (has_type (ty_32_or_64 ty) (clz src)))
2181
+ (do_clz ty ty src))
2182
+
2183
+ (rule 1 (lower (has_type (ty_8_or_16 ty) (clz src)))
2184
+ (let ((extended Gpr (extend_to_gpr src $I64 (ExtendKind.Zero)))
2185
+ (clz Gpr (do_clz $I64 $I64 extended)))
2186
+ (x64_sub $I64 clz (RegMemImm.Imm (u32_sub 64 (ty_bits ty))))))
2187
+
2188
+
2189
+ (rule 0 (lower
2190
+ (has_type $I128
2191
+ (clz src)))
2192
+ (let ((upper Gpr (do_clz $I64 $I64 (value_regs_get_gpr src 1)))
2193
+ (lower Gpr (x64_add $I64
2194
+ (do_clz $I64 $I64 (value_regs_get_gpr src 0))
2195
+ (RegMemImm.Imm 64)))
2196
+ (result_lo Gpr
2197
+ (with_flags_reg
2198
+ (x64_cmp_imm (OperandSize.Size64) upper 64)
2199
+ (cmove $I64 (CC.NZ) upper lower))))
2200
+ (value_regs result_lo (imm $I64 0))))
2201
+
2202
+ ;; Implementation helper for clz; operates on 32 or 64-bit units.
2203
+ (decl do_clz (Type Type Gpr) Gpr)
2204
+
2205
+ ;; If available, we can use a plain lzcnt instruction here. Note no
2206
+ ;; special handling is required for zero inputs, because the machine
2207
+ ;; instruction does what the CLIF expects for zero, i.e. it returns
2208
+ ;; zero.
2209
+ (rule 1 (do_clz ty orig_ty src)
2210
+ (if-let $true (use_lzcnt))
2211
+ (x64_lzcnt ty src))
2212
+
2213
+ (rule 0 (do_clz ty orig_ty src)
2214
+ (let ((highest_bit_index Reg (bsr_or_else ty src (imm_i64 $I64 -1)))
2215
+ (bits_minus_1 Reg (imm ty (u64_sub (ty_bits_u64 orig_ty) 1))))
2216
+ (x64_sub ty bits_minus_1 highest_bit_index)))
2217
+
2218
+ ;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2219
+
2220
+ (rule 2 (lower (has_type (ty_32_or_64 ty) (ctz src)))
2221
+ (do_ctz ty ty src))
2222
+
2223
+ (rule 1 (lower (has_type (ty_8_or_16 ty) (ctz src)))
2224
+ (let ((extended Gpr (extend_to_gpr src $I32 (ExtendKind.Zero)))
2225
+ (stopbit Gpr (x64_or $I32 extended (RegMemImm.Imm (u32_shl 1 (ty_bits ty))))))
2226
+ (do_ctz $I32 ty stopbit)))
2227
+
2228
+ (rule 0 (lower
2229
+ (has_type $I128
2230
+ (ctz src)))
2231
+ (let ((lower Gpr (do_ctz $I64 $I64 (value_regs_get_gpr src 0)))
2232
+ (upper Gpr (x64_add $I64
2233
+ (do_ctz $I64 $I64 (value_regs_get_gpr src 1))
2234
+ (RegMemImm.Imm 64)))
2235
+ (result_lo Gpr
2236
+ (with_flags_reg
2237
+ (x64_cmp_imm (OperandSize.Size64) lower 64)
2238
+ (cmove $I64 (CC.Z) upper lower))))
2239
+ (value_regs result_lo (imm $I64 0))))
2240
+
2241
+ (decl do_ctz (Type Type Gpr) Gpr)
2242
+
2243
+ ;; Analogous to `clz` cases above, but using mirror instructions
2244
+ ;; (tzcnt vs lzcnt, bsf vs bsr).
2245
+ (rule 1 (do_ctz ty orig_ty src)
2246
+ (if-let $true (use_bmi1))
2247
+ (x64_tzcnt ty src))
2248
+
2249
+ (rule 0 (do_ctz ty orig_ty src)
2250
+ (bsf_or_else ty src (imm $I64 (ty_bits_u64 orig_ty))))
2251
+
2252
+ ;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2253
+
2254
+ (rule 4 (lower (has_type (ty_32_or_64 ty) (popcnt src)))
2255
+ (if-let $true (use_popcnt))
2256
+ (x64_popcnt ty src))
2257
+
2258
+ (rule 3 (lower (has_type (ty_8_or_16 ty) (popcnt src)))
2259
+ (if-let $true (use_popcnt))
2260
+ (x64_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2261
+
2262
+ (rule 1 (lower (has_type $I128 (popcnt src)))
2263
+ (if-let $true (use_popcnt))
2264
+ (let ((lo_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 0)))
2265
+ (hi_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 1))))
2266
+ (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2267
+
2268
+ (rule -1 (lower
2269
+ (has_type (ty_32_or_64 ty)
2270
+ (popcnt src)))
2271
+ (do_popcnt ty src))
2272
+
2273
+ (rule -2 (lower
2274
+ (has_type (ty_8_or_16 ty)
2275
+ (popcnt src)))
2276
+ (do_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2277
+
2278
+ (rule (lower
2279
+ (has_type $I128
2280
+ (popcnt src)))
2281
+ (let ((lo_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 0)))
2282
+ (hi_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 1))))
2283
+ (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2284
+
2285
+ ;; Implementation of popcount when we don't nave a native popcount
2286
+ ;; instruction.
2287
+ (decl do_popcnt (Type Gpr) Gpr)
2288
+ (rule (do_popcnt $I64 src)
2289
+ (let ((shifted1 Gpr (x64_shr $I64 src (Imm8Reg.Imm8 1)))
2290
+ (sevens Gpr (imm $I64 0x7777777777777777))
2291
+ (masked1 Gpr (x64_and $I64 shifted1 sevens))
2292
+ ;; diff1 := src - ((src >> 1) & 0b0111_0111_0111...)
2293
+ (diff1 Gpr (x64_sub $I64 src masked1))
2294
+ (shifted2 Gpr (x64_shr $I64 masked1 (Imm8Reg.Imm8 1)))
2295
+ (masked2 Gpr (x64_and $I64 shifted2 sevens))
2296
+ ;; diff2 := diff1 - ((diff1 >> 1) & 0b0111_0111_0111...)
2297
+ (diff2 Gpr (x64_sub $I64 diff1 masked2))
2298
+ (shifted3 Gpr (x64_shr $I64 masked2 (Imm8Reg.Imm8 1)))
2299
+ (masked3 Gpr (x64_and $I64 shifted3 sevens))
2300
+ ;; diff3 := diff2 - ((diff2 >> 1) & 0b0111_0111_0111...)
2301
+ ;;
2302
+ ;; At this point, each nibble of diff3 is the popcount of
2303
+ ;; that nibble. This works because at each step above, we
2304
+ ;; are basically subtracting floor(value / 2) from the
2305
+ ;; running value; the leftover remainder is 1 if the LSB
2306
+ ;; was 1. After three steps, we have (nibble / 8) -- 0 or
2307
+ ;; 1 for the MSB of the nibble -- plus three possible
2308
+ ;; additions for the three other bits.
2309
+ (diff3 Gpr (x64_sub $I64 diff2 masked3))
2310
+ ;; Add the two nibbles of each byte together.
2311
+ (sum1 Gpr (x64_add $I64
2312
+ (x64_shr $I64 diff3 (Imm8Reg.Imm8 4))
2313
+ diff3))
2314
+ ;; Mask the above sum to have the popcount for each byte
2315
+ ;; in the lower nibble of that byte.
2316
+ (ofof Gpr (imm $I64 0x0f0f0f0f0f0f0f0f))
2317
+ (masked4 Gpr (x64_and $I64 sum1 ofof))
2318
+ (ones Gpr (imm $I64 0x0101010101010101))
2319
+ ;; Use a multiply to sum all of the bytes' popcounts into
2320
+ ;; the top byte. Consider the binomial expansion for the
2321
+ ;; top byte: it is the sum of the bytes (masked4 >> 56) *
2322
+ ;; 0x01 + (masked4 >> 48) * 0x01 + (masked4 >> 40) * 0x01
2323
+ ;; + ... + (masked4 >> 0).
2324
+ (mul Gpr (x64_imul $I64 masked4 ones))
2325
+ ;; Now take that top byte and return it as the popcount.
2326
+ (final Gpr (x64_shr $I64 mul (Imm8Reg.Imm8 56))))
2327
+ final))
2328
+
2329
+ ;; This is the 32-bit version of the above; the steps for each nibble
2330
+ ;; are the same, we just use constants half as wide.
2331
+ (rule (do_popcnt $I32 src)
2332
+ (let ((shifted1 Gpr (x64_shr $I32 src (Imm8Reg.Imm8 1)))
2333
+ (sevens Gpr (imm $I32 0x77777777))
2334
+ (masked1 Gpr (x64_and $I32 shifted1 sevens))
2335
+ (diff1 Gpr (x64_sub $I32 src masked1))
2336
+ (shifted2 Gpr (x64_shr $I32 masked1 (Imm8Reg.Imm8 1)))
2337
+ (masked2 Gpr (x64_and $I32 shifted2 sevens))
2338
+ (diff2 Gpr (x64_sub $I32 diff1 masked2))
2339
+ (shifted3 Gpr (x64_shr $I32 masked2 (Imm8Reg.Imm8 1)))
2340
+ (masked3 Gpr (x64_and $I32 shifted3 sevens))
2341
+ (diff3 Gpr (x64_sub $I32 diff2 masked3))
2342
+ (sum1 Gpr (x64_add $I32
2343
+ (x64_shr $I32 diff3 (Imm8Reg.Imm8 4))
2344
+ diff3))
2345
+ (masked4 Gpr (x64_and $I32 sum1 (RegMemImm.Imm 0x0f0f0f0f)))
2346
+ (mul Gpr (x64_imul_imm $I32 masked4 0x01010101))
2347
+ (final Gpr (x64_shr $I32 mul (Imm8Reg.Imm8 24))))
2348
+ final))
2349
+
2350
+
2351
+ (rule 2 (lower (has_type $I8X16 (popcnt src)))
2352
+ (if-let $true (use_avx512vl))
2353
+ (if-let $true (use_avx512bitalg))
2354
+ (x64_vpopcntb src))
2355
+
2356
+
2357
+ ;; For SSE 4.2 we use Mula's algorithm (https://arxiv.org/pdf/1611.07612.pdf):
2358
+ ;;
2359
+ ;; __m128i count_bytes ( __m128i v) {
2360
+ ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2361
+ ;; __m128i low_mask = _mm_set1_epi8 (0x0f);
2362
+ ;; __m128i lo = _mm_and_si128 (v, low_mask);
2363
+ ;; __m128i hi = _mm_and_si128 (_mm_srli_epi16 (v, 4), low_mask);
2364
+ ;; __m128i cnt1 = _mm_shuffle_epi8 (lookup, lo);
2365
+ ;; __m128i cnt2 = _mm_shuffle_epi8 (lookup, hi);
2366
+ ;; return _mm_add_epi8 (cnt1, cnt2);
2367
+ ;; }
2368
+ ;;
2369
+ ;; Details of the above algorithm can be found in the reference noted above, but the basics
2370
+ ;; are to create a lookup table that pre populates the popcnt values for each number [0,15].
2371
+ ;; The algorithm uses shifts to isolate 4 bit sections of the vector, pshufb as part of the
2372
+ ;; lookup process, and adds together the results.
2373
+ ;;
2374
+ ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2375
+
2376
+
2377
+ (rule 1 (lower (has_type $I8X16 (popcnt src)))
2378
+ (if-let $true (use_ssse3))
2379
+ (let ((low_mask XmmMem (emit_u128_le_const 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f))
2380
+ (low_nibbles Xmm (sse_and $I8X16 src low_mask))
2381
+ ;; Note that this is a 16x8 shift, but that's OK; we mask
2382
+ ;; off anything that traverses from one byte to the next
2383
+ ;; with the low_mask below.
2384
+ (shifted_src Xmm (x64_psrlw src (xmi_imm 4)))
2385
+ (high_nibbles Xmm (sse_and $I8X16 shifted_src low_mask))
2386
+ (lookup Xmm (x64_xmm_load_const $I8X16
2387
+ (emit_u128_le_const 0x04030302_03020201_03020201_02010100)))
2388
+ (bit_counts_low Xmm (x64_pshufb lookup low_nibbles))
2389
+ (bit_counts_high Xmm (x64_pshufb lookup high_nibbles)))
2390
+ (x64_paddb bit_counts_low bit_counts_high)))
2391
+
2392
+ ;; A modified version of the popcnt method from Hacker's Delight.
2393
+ (rule (lower (has_type $I8X16 (popcnt src)))
2394
+ (let ((mask1 XmmMem (emit_u128_le_const 0x77777777777777777777777777777777))
2395
+ (src Xmm src)
2396
+ (shifted Xmm (x64_pand (x64_psrlq src (xmi_imm 1)) mask1))
2397
+ (src Xmm (x64_psubb src shifted))
2398
+ (shifted Xmm (x64_pand (x64_psrlq shifted (xmi_imm 1)) mask1))
2399
+ (src Xmm (x64_psubb src shifted))
2400
+ (shifted Xmm (x64_pand (x64_psrlq shifted (xmi_imm 1)) mask1))
2401
+ (src Xmm (x64_psubb src shifted))
2402
+ (src Xmm (x64_paddb src (x64_psrlw src (xmi_imm 4)))))
2403
+ (x64_pand src (emit_u128_le_const 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f))))
2404
+
2405
+ ;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2406
+
2407
+ (rule (lower (has_type $I8 (bitrev src)))
2408
+ (do_bitrev8 $I32 src))
2409
+
2410
+ (rule (lower (has_type $I16 (bitrev src)))
2411
+ (do_bitrev16 $I32 src))
2412
+
2413
+ (rule (lower (has_type $I32 (bitrev src)))
2414
+ (do_bitrev32 $I32 src))
2415
+
2416
+ (rule (lower (has_type $I64 (bitrev src)))
2417
+ (do_bitrev64 $I64 src))
2418
+
2419
+ (rule (lower (has_type $I128 (bitrev src)))
2420
+ (value_regs
2421
+ (do_bitrev64 $I64 (value_regs_get_gpr src 1))
2422
+ (do_bitrev64 $I64 (value_regs_get_gpr src 0))))
2423
+
2424
+ (decl do_bitrev8 (Type Gpr) Gpr)
2425
+ (rule (do_bitrev8 ty src)
2426
+ (let ((tymask u64 (ty_mask ty))
2427
+ (mask1 Gpr (imm ty (u64_and tymask 0x5555555555555555)))
2428
+ (lo1 Gpr (x64_and ty src mask1))
2429
+ (hi1 Gpr (x64_and ty (x64_shr ty src (Imm8Reg.Imm8 1)) mask1))
2430
+ (swap1 Gpr (x64_or ty
2431
+ (x64_shl ty lo1 (Imm8Reg.Imm8 1))
2432
+ hi1))
2433
+ (mask2 Gpr (imm ty (u64_and tymask 0x3333333333333333)))
2434
+ (lo2 Gpr (x64_and ty swap1 mask2))
2435
+ (hi2 Gpr (x64_and ty (x64_shr ty swap1 (Imm8Reg.Imm8 2)) mask2))
2436
+ (swap2 Gpr (x64_or ty
2437
+ (x64_shl ty lo2 (Imm8Reg.Imm8 2))
2438
+ hi2))
2439
+ (mask4 Gpr (imm ty (u64_and tymask 0x0f0f0f0f0f0f0f0f)))
2440
+ (lo4 Gpr (x64_and ty swap2 mask4))
2441
+ (hi4 Gpr (x64_and ty (x64_shr ty swap2 (Imm8Reg.Imm8 4)) mask4))
2442
+ (swap4 Gpr (x64_or ty
2443
+ (x64_shl ty lo4 (Imm8Reg.Imm8 4))
2444
+ hi4)))
2445
+ swap4))
2446
+
2447
+ (decl do_bitrev16 (Type Gpr) Gpr)
2448
+ (rule (do_bitrev16 ty src)
2449
+ (let ((src_ Gpr (do_bitrev8 ty src))
2450
+ (tymask u64 (ty_mask ty))
2451
+ (mask8 Gpr (imm ty (u64_and tymask 0x00ff00ff00ff00ff)))
2452
+ (lo8 Gpr (x64_and ty src_ mask8))
2453
+ (hi8 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 8)) mask8))
2454
+ (swap8 Gpr (x64_or ty
2455
+ (x64_shl ty lo8 (Imm8Reg.Imm8 8))
2456
+ hi8)))
2457
+ swap8))
2458
+
2459
+ (decl do_bitrev32 (Type Gpr) Gpr)
2460
+ (rule (do_bitrev32 ty src)
2461
+ (let ((src_ Gpr (do_bitrev16 ty src))
2462
+ (tymask u64 (ty_mask ty))
2463
+ (mask16 Gpr (imm ty (u64_and tymask 0x0000ffff0000ffff)))
2464
+ (lo16 Gpr (x64_and ty src_ mask16))
2465
+ (hi16 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 16)) mask16))
2466
+ (swap16 Gpr (x64_or ty
2467
+ (x64_shl ty lo16 (Imm8Reg.Imm8 16))
2468
+ hi16)))
2469
+ swap16))
2470
+
2471
+ (decl do_bitrev64 (Type Gpr) Gpr)
2472
+ (rule (do_bitrev64 ty @ $I64 src)
2473
+ (let ((src_ Gpr (do_bitrev32 ty src))
2474
+ (mask32 Gpr (imm ty 0xffffffff))
2475
+ (lo32 Gpr (x64_and ty src_ mask32))
2476
+ (hi32 Gpr (x64_shr ty src_ (Imm8Reg.Imm8 32)))
2477
+ (swap32 Gpr (x64_or ty
2478
+ (x64_shl ty lo32 (Imm8Reg.Imm8 32))
2479
+ hi32)))
2480
+ swap32))
2481
+
2482
+ ;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2483
+
2484
+ ;; x64 bswap instruction is only for 32- or 64-bit swaps
2485
+ ;; implement the 16-bit swap as a rotl by 8
2486
+ (rule (lower (has_type $I16 (bswap src)))
2487
+ (x64_rotl $I16 src (Imm8Reg.Imm8 8)))
2488
+
2489
+ (rule (lower (has_type $I32 (bswap src)))
2490
+ (x64_bswap $I32 src))
2491
+
2492
+ (rule (lower (has_type $I64 (bswap src)))
2493
+ (x64_bswap $I64 src))
2494
+
2495
+ (rule (lower (has_type $I128 (bswap src)))
2496
+ (value_regs
2497
+ (x64_bswap $I64 (value_regs_get_gpr src 1))
2498
+ (x64_bswap $I64 (value_regs_get_gpr src 0))))
2499
+
2500
+ ;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2501
+
2502
+ ;; I{8,16,32,64} -> I128.
2503
+ (rule (lower (has_type $I128 (uextend src)))
2504
+ (value_regs (extend_to_gpr src $I64 (ExtendKind.Zero)) (imm $I64 0)))
2505
+
2506
+ ;; I{8,16,32} -> I64.
2507
+ (rule (lower (has_type $I64 (uextend src)))
2508
+ (extend_to_gpr src $I64 (ExtendKind.Zero)))
2509
+
2510
+ ;; I{8,16} -> I32
2511
+ ;; I8 -> I16
2512
+ (rule -1 (lower (has_type (fits_in_32 _) (uextend src)))
2513
+ (extend_to_gpr src $I32 (ExtendKind.Zero)))
2514
+
2515
+ ;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2516
+
2517
+ ;; I{8,16,32} -> I128.
2518
+ ;;
2519
+ ;; Produce upper 64 bits sign-extended from lower 64: shift right by
2520
+ ;; 63 bits to spread the sign bit across the result.
2521
+ (rule (lower (has_type $I128 (sextend src)))
2522
+ (let ((lo Gpr (extend_to_gpr src $I64 (ExtendKind.Sign)))
2523
+ (hi Gpr (x64_sar $I64 lo (Imm8Reg.Imm8 63))))
2524
+ (value_regs lo hi)))
2525
+
2526
+ ;; I{8,16,32} -> I64.
2527
+ (rule (lower (has_type $I64 (sextend src)))
2528
+ (extend_to_gpr src $I64 (ExtendKind.Sign)))
2529
+
2530
+ ;; I{8,16} -> I32
2531
+ ;; I8 -> I16
2532
+ (rule -1 (lower (has_type (fits_in_32 _) (sextend src)))
2533
+ (extend_to_gpr src $I32 (ExtendKind.Sign)))
2534
+
2535
+ ;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2536
+
2537
+ ;; T -> T is always a no-op, even I128 -> I128.
2538
+ (rule (lower (has_type ty (ireduce src @ (value_type ty))))
2539
+ src)
2540
+
2541
+ ;; T -> I{64,32,16,8}: We can simply pass through the value: values
2542
+ ;; are always stored with high bits undefined, so we can just leave
2543
+ ;; them be.
2544
+ (rule 1 (lower (has_type (fits_in_64 ty) (ireduce src)))
2545
+ (value_regs_get_gpr src 0))
2546
+
2547
+ ;; Rules for `debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2548
+
2549
+ (rule (lower (debugtrap))
2550
+ (side_effect (x64_hlt)))
2551
+
2552
+ ;; Rules for `x86_pmaddubsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2553
+
2554
+ (rule (lower (has_type $I16X8 (x86_pmaddubsw x y)))
2555
+ (if-let $true (use_ssse3))
2556
+ (x64_pmaddubsw y x))
2557
+
2558
+ ;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2559
+
2560
+ (rule (lower (has_type $F32 (fadd x y)))
2561
+ (x64_addss x y))
2562
+ (rule (lower (has_type $F64 (fadd x y)))
2563
+ (x64_addsd x y))
2564
+ (rule (lower (has_type $F32X4 (fadd x y)))
2565
+ (x64_addps x y))
2566
+ (rule (lower (has_type $F64X2 (fadd x y)))
2567
+ (x64_addpd x y))
2568
+
2569
+ ;; The above rules automatically sink loads for rhs operands, so additionally
2570
+ ;; add rules for sinking loads with lhs operands.
2571
+ (rule 1 (lower (has_type $F32 (fadd (sinkable_load x) y)))
2572
+ (x64_addss y x))
2573
+ (rule 1 (lower (has_type $F64 (fadd (sinkable_load x) y)))
2574
+ (x64_addsd y x))
2575
+ (rule 1 (lower (has_type $F32X4 (fadd (sinkable_load x) y)))
2576
+ (x64_addps y x))
2577
+ (rule 1 (lower (has_type $F64X2 (fadd (sinkable_load x) y)))
2578
+ (x64_addpd y x))
2579
+
2580
+ ;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2581
+
2582
+ (rule (lower (has_type $F32 (fsub x y)))
2583
+ (x64_subss x y))
2584
+ (rule (lower (has_type $F64 (fsub x y)))
2585
+ (x64_subsd x y))
2586
+ (rule (lower (has_type $F32X4 (fsub x y)))
2587
+ (x64_subps x y))
2588
+ (rule (lower (has_type $F64X2 (fsub x y)))
2589
+ (x64_subpd x y))
2590
+
2591
+ ;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2592
+
2593
+ (rule (lower (has_type $F32 (fmul x y)))
2594
+ (x64_mulss x y))
2595
+ (rule (lower (has_type $F64 (fmul x y)))
2596
+ (x64_mulsd x y))
2597
+ (rule (lower (has_type $F32X4 (fmul x y)))
2598
+ (x64_mulps x y))
2599
+ (rule (lower (has_type $F64X2 (fmul x y)))
2600
+ (x64_mulpd x y))
2601
+
2602
+ ;; The above rules automatically sink loads for rhs operands, so additionally
2603
+ ;; add rules for sinking loads with lhs operands.
2604
+ (rule 1 (lower (has_type $F32 (fmul (sinkable_load x) y)))
2605
+ (x64_mulss y x))
2606
+ (rule 1 (lower (has_type $F64 (fmul (sinkable_load x) y)))
2607
+ (x64_mulsd y x))
2608
+ (rule 1 (lower (has_type $F32X4 (fmul (sinkable_load x) y)))
2609
+ (x64_mulps y x))
2610
+ (rule 1 (lower (has_type $F64X2 (fmul (sinkable_load x) y)))
2611
+ (x64_mulpd y x))
2612
+
2613
+ ;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2614
+
2615
+ (rule (lower (has_type $F32 (fdiv x y)))
2616
+ (x64_divss x y))
2617
+ (rule (lower (has_type $F64 (fdiv x y)))
2618
+ (x64_divsd x y))
2619
+ (rule (lower (has_type $F32X4 (fdiv x y)))
2620
+ (x64_divps x y))
2621
+ (rule (lower (has_type $F64X2 (fdiv x y)))
2622
+ (x64_divpd x y))
2623
+
2624
+ ;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2625
+ (rule (lower (has_type $F32 (sqrt x)))
2626
+ (x64_sqrtss (xmm_zero $F32X4) x))
2627
+ (rule (lower (has_type $F64 (sqrt x)))
2628
+ (x64_sqrtsd (xmm_zero $F64X2) x))
2629
+ (rule (lower (has_type $F32X4 (sqrt x)))
2630
+ (x64_sqrtps x))
2631
+ (rule (lower (has_type $F64X2 (sqrt x)))
2632
+ (x64_sqrtpd x))
2633
+
2634
+ ;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2635
+ (rule (lower (has_type $F64 (fpromote x)))
2636
+ (x64_cvtss2sd (xmm_zero $F64X2) x))
2637
+
2638
+ ;; Rules for `fvpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2639
+ (rule (lower (has_type $F64X2 (fvpromote_low x)))
2640
+ (x64_cvtps2pd (put_in_xmm x)))
2641
+
2642
+ ;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2643
+ (rule (lower (has_type $F32 (fdemote x)))
2644
+ (x64_cvtsd2ss (xmm_zero $F32X4) x))
2645
+
2646
+ ;; Rules for `fvdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2647
+ (rule (lower (has_type $F32X4 (fvdemote x)))
2648
+ (x64_cvtpd2ps x))
2649
+
2650
+ ;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2651
+
2652
+ (rule (lower (has_type $F32 (fmin x y)))
2653
+ (xmm_min_max_seq $F32 $true x y))
2654
+ (rule (lower (has_type $F64 (fmin x y)))
2655
+ (xmm_min_max_seq $F64 $true x y))
2656
+
2657
+ ;; Vector-typed version. We don't use single pseudoinstructions as
2658
+ ;; above, because we don't need to generate a mini-CFG. Instead, we
2659
+ ;; perform a branchless series of operations.
2660
+ ;;
2661
+ ;; We cannot simply use native min instructions (minps, minpd) because
2662
+ ;; NaN handling is different per CLIF semantics than on
2663
+ ;; x86. Specifically, if an argument is NaN, or the arguments are both
2664
+ ;; zero but of opposite signs, then the x86 instruction always
2665
+ ;; produces the second argument. However, per CLIF semantics, we
2666
+ ;; require that fmin(NaN, _) = fmin(_, NaN) = NaN, and fmin(+0, -0) =
2667
+ ;; fmin(-0, +0) = -0.
2668
+
2669
+ (rule (lower (has_type $F32X4 (fmin x y)))
2670
+ ;; Compute min(x, y) and min(y, x) with native
2671
+ ;; instructions. These will differ in one of the edge cases
2672
+ ;; above that we have to handle properly. (Conversely, if they
2673
+ ;; don't differ, then the native instruction's answer is the
2674
+ ;; right one per CLIF semantics.)
2675
+ (let ((x Xmm x) ;; force x/y into registers and disallow load sinking
2676
+ (y Xmm y)
2677
+ (min1 Xmm (x64_minps x y))
2678
+ (min2 Xmm (x64_minps y x))
2679
+ ;; Compute the OR of the two. Note that NaNs have an
2680
+ ;; exponent field of all-ones (0xFF for F32), so if either
2681
+ ;; result is a NaN, this OR will be. And if either is a
2682
+ ;; zero (which has an exponent of 0 and mantissa of 0),
2683
+ ;; this captures a sign-bit of 1 (negative) if either
2684
+ ;; input is negative.
2685
+ ;;
2686
+ ;; In the case where we don't have a +/-0 mismatch or
2687
+ ;; NaNs, then `min1` and `min2` are equal and `min_or` is
2688
+ ;; the correct minimum.
2689
+ (min_or Xmm (x64_orps min1 min2))
2690
+ ;; "compare unordered" produces a true mask (all ones) in
2691
+ ;; a given lane if the min is a NaN. We use this to
2692
+ ;; generate a mask to ensure quiet NaNs.
2693
+ (is_nan_mask Xmm (x64_cmpps min_or min2 (FcmpImm.Unordered)))
2694
+ ;; OR in the NaN mask.
2695
+ (min_or_2 Xmm (x64_orps min_or is_nan_mask))
2696
+ ;; Shift the NaN mask down so that it covers just the
2697
+ ;; fraction below the NaN signalling bit; we'll use this
2698
+ ;; to mask off non-canonical NaN payloads.
2699
+ ;;
2700
+ ;; All-ones for NaN, shifted down to leave 10 top bits (1
2701
+ ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2702
+ ;; cleared.
2703
+ (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2704
+ ;; Do a NAND, so that we retain every bit not set in
2705
+ ;; `nan_fraction_mask`. This mask will be all zeroes (so
2706
+ ;; we retain every bit) in non-NaN cases, and will have
2707
+ ;; ones (so we clear those bits) in NaN-payload bits
2708
+ ;; otherwise.
2709
+ (final Xmm (x64_andnps nan_fraction_mask min_or_2)))
2710
+ final))
2711
+
2712
+ ;; Likewise for F64 lanes, except that the right-shift is by 13 bits
2713
+ ;; (1 sign, 11 exponent, 1 QNaN bit).
2714
+ (rule (lower (has_type $F64X2 (fmin x y)))
2715
+ (let ((x Xmm x) ;; force x/y into registers and disallow load sinking
2716
+ (y Xmm y)
2717
+ (min1 Xmm (x64_minpd x y))
2718
+ (min2 Xmm (x64_minpd y x))
2719
+ (min_or Xmm (x64_orpd min1 min2))
2720
+ (is_nan_mask Xmm (x64_cmppd min1 min2 (FcmpImm.Unordered)))
2721
+ (min_or_2 Xmm (x64_orpd min_or is_nan_mask))
2722
+ (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2723
+ (final Xmm (x64_andnpd nan_fraction_mask min_or_2)))
2724
+ final))
2725
+
2726
+ ;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2727
+
2728
+ (rule (lower (has_type $F32 (fmax x y)))
2729
+ (xmm_min_max_seq $F32 $false x y))
2730
+ (rule (lower (has_type $F64 (fmax x y)))
2731
+ (xmm_min_max_seq $F64 $false x y))
2732
+
2733
+ ;; The vector version of fmax here is a dual to the fmin sequence
2734
+ ;; above, almost, with a few differences.
2735
+
2736
+ (rule (lower (has_type $F32X4 (fmax x y)))
2737
+ ;; Compute max(x, y) and max(y, x) with native
2738
+ ;; instructions. These will differ in one of the edge cases
2739
+ ;; above that we have to handle properly. (Conversely, if they
2740
+ ;; don't differ, then the native instruction's answer is the
2741
+ ;; right one per CLIF semantics.)
2742
+ (let ((x Xmm x) ;; force x/y into registers and disallow load sinking
2743
+ (y Xmm y)
2744
+ (max1 Xmm (x64_maxps x y))
2745
+ (max2 Xmm (x64_maxps y x))
2746
+ ;; Compute the XOR of the two maxima. In the case
2747
+ ;; where we don't have a +/-0 mismatch or NaNs, then
2748
+ ;; `min1` and `min2` are equal and this XOR is zero.
2749
+ (max_xor Xmm (x64_xorps max1 max2))
2750
+ ;; OR the XOR into one of the original maxima. If they are
2751
+ ;; equal, this does nothing. If max2 was NaN, its exponent
2752
+ ;; bits were all-ones, so the xor's exponent bits were the
2753
+ ;; complement of max1, and the OR of max1 and max_xor has
2754
+ ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2755
+ ;; its exponent bits were already all-ones, so the OR will
2756
+ ;; be a NaN as well.
2757
+ (max_blended_nan Xmm (x64_orps max1 max_xor))
2758
+ ;; Subtract the XOR. This ensures that if we had +0 and
2759
+ ;; -0, we end up with +0.
2760
+ (max_blended_nan_positive Xmm (x64_subps max_blended_nan max_xor))
2761
+ ;; "compare unordered" produces a true mask (all ones) in
2762
+ ;; a given lane if the min is a NaN. We use this to
2763
+ ;; generate a mask to ensure quiet NaNs.
2764
+ (is_nan_mask Xmm (x64_cmpps max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2765
+ ;; Shift the NaN mask down so that it covers just the
2766
+ ;; fraction below the NaN signalling bit; we'll use this
2767
+ ;; to mask off non-canonical NaN payloads.
2768
+ ;;
2769
+ ;; All-ones for NaN, shifted down to leave 10 top bits (1
2770
+ ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2771
+ ;; cleared.
2772
+ (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2773
+ ;; Do a NAND, so that we retain every bit not set in
2774
+ ;; `nan_fraction_mask`. This mask will be all zeroes (so
2775
+ ;; we retain every bit) in non-NaN cases, and will have
2776
+ ;; ones (so we clear those bits) in NaN-payload bits
2777
+ ;; otherwise.
2778
+ (final Xmm (x64_andnps nan_fraction_mask max_blended_nan_positive)))
2779
+ final))
2780
+
2781
+ (rule (lower (has_type $F64X2 (fmax x y)))
2782
+ ;; Compute max(x, y) and max(y, x) with native
2783
+ ;; instructions. These will differ in one of the edge cases
2784
+ ;; above that we have to handle properly. (Conversely, if they
2785
+ ;; don't differ, then the native instruction's answer is the
2786
+ ;; right one per CLIF semantics.)
2787
+ (let ((x Xmm x) ;; force x/y into registers and disallow load sinking
2788
+ (y Xmm y)
2789
+ (max1 Xmm (x64_maxpd x y))
2790
+ (max2 Xmm (x64_maxpd y x))
2791
+ ;; Compute the XOR of the two maxima. In the case
2792
+ ;; where we don't have a +/-0 mismatch or NaNs, then
2793
+ ;; `min1` and `min2` are equal and this XOR is zero.
2794
+ (max_xor Xmm (x64_xorpd max1 max2))
2795
+ ;; OR the XOR into one of the original maxima. If they are
2796
+ ;; equal, this does nothing. If max2 was NaN, its exponent
2797
+ ;; bits were all-ones, so the xor's exponent bits were the
2798
+ ;; complement of max1, and the OR of max1 and max_xor has
2799
+ ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2800
+ ;; its exponent bits were already all-ones, so the OR will
2801
+ ;; be a NaN as well.
2802
+ (max_blended_nan Xmm (x64_orpd max1 max_xor))
2803
+ ;; Subtract the XOR. This ensures that if we had +0 and
2804
+ ;; -0, we end up with +0.
2805
+ (max_blended_nan_positive Xmm (x64_subpd max_blended_nan max_xor))
2806
+ ;; `cmpps` with predicate index `3` is `cmpunordps`, or
2807
+ ;; "compare unordered": it produces a true mask (all ones)
2808
+ ;; in a given lane if the min is a NaN. We use this to
2809
+ ;; generate a mask to ensure quiet NaNs.
2810
+ (is_nan_mask Xmm (x64_cmppd max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2811
+ ;; Shift the NaN mask down so that it covers just the
2812
+ ;; fraction below the NaN signalling bit; we'll use this
2813
+ ;; to mask off non-canonical NaN payloads.
2814
+ ;;
2815
+ ;; All-ones for NaN, shifted down to leave 13 top bits (1
2816
+ ;; sign, 11 exponent, 1 QNaN bit that must remain set)
2817
+ ;; cleared.
2818
+ (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2819
+ ;; Do a NAND, so that we retain every bit not set in
2820
+ ;; `nan_fraction_mask`. This mask will be all zeroes (so
2821
+ ;; we retain every bit) in non-NaN cases, and will have
2822
+ ;; ones (so we clear those bits) in NaN-payload bits
2823
+ ;; otherwise.
2824
+ (final Xmm (x64_andnpd nan_fraction_mask max_blended_nan_positive)))
2825
+ final))
2826
+
2827
+ ;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2828
+
2829
+ ;; Base case for fma is to call out to one of two libcalls. For vectors they
2830
+ ;; need to be decomposed, handle each element individually, and then recomposed.
2831
+
2832
+ (rule (lower (has_type $F32 (fma x y z)))
2833
+ (libcall_3 (LibCall.FmaF32) x y z))
2834
+ (rule (lower (has_type $F64 (fma x y z)))
2835
+ (libcall_3 (LibCall.FmaF64) x y z))
2836
+
2837
+ (rule (lower (has_type $F32X4 (fma x y z)))
2838
+ (let (
2839
+ (x Xmm (put_in_xmm x))
2840
+ (y Xmm (put_in_xmm y))
2841
+ (z Xmm (put_in_xmm z))
2842
+ (x0 Xmm (libcall_3 (LibCall.FmaF32) x y z))
2843
+ (x1 Xmm (libcall_3 (LibCall.FmaF32)
2844
+ (x64_pshufd x 1)
2845
+ (x64_pshufd y 1)
2846
+ (x64_pshufd z 1)))
2847
+ (x2 Xmm (libcall_3 (LibCall.FmaF32)
2848
+ (x64_pshufd x 2)
2849
+ (x64_pshufd y 2)
2850
+ (x64_pshufd z 2)))
2851
+ (x3 Xmm (libcall_3 (LibCall.FmaF32)
2852
+ (x64_pshufd x 3)
2853
+ (x64_pshufd y 3)
2854
+ (x64_pshufd z 3)))
2855
+
2856
+ (tmp Xmm (f32x4_insertlane x0 x1 1))
2857
+ (tmp Xmm (f32x4_insertlane tmp x2 2))
2858
+ (tmp Xmm (f32x4_insertlane tmp x3 3))
2859
+ )
2860
+ tmp))
2861
+ (rule (lower (has_type $F64X2 (fma x y z)))
2862
+ (let (
2863
+ (x Xmm (put_in_xmm x))
2864
+ (y Xmm (put_in_xmm y))
2865
+ (z Xmm (put_in_xmm z))
2866
+ (x0 Xmm (libcall_3 (LibCall.FmaF64) x y z))
2867
+ (x1 Xmm (libcall_3 (LibCall.FmaF64)
2868
+ (x64_pshufd x 0xee)
2869
+ (x64_pshufd y 0xee)
2870
+ (x64_pshufd z 0xee)))
2871
+ )
2872
+ (x64_movlhps x0 x1)))
2873
+
2874
+
2875
+ ;; Special case for when the `fma` feature is active and a native instruction
2876
+ ;; can be used.
2877
+ (rule 1 (lower (has_type ty (fma x y z)))
2878
+ (if-let $true (use_fma))
2879
+ (fmadd ty x y z))
2880
+
2881
+ (decl fmadd (Type Value Value Value) Xmm)
2882
+ (decl fnmadd (Type Value Value Value) Xmm)
2883
+
2884
+ ;; Base case. Note that this will automatically sink a load with `z`, the value
2885
+ ;; to add.
2886
+ (rule (fmadd ty x y z) (x64_vfmadd213 ty x y z))
2887
+
2888
+ ;; Allow sinking loads with one of the two values being multiplied in addition
2889
+ ;; to the value being added. Note that both x and y can be sunk here due to
2890
+ ;; multiplication being commutative.
2891
+ (rule 1 (fmadd ty (sinkable_load x) y z) (x64_vfmadd132 ty y z x))
2892
+ (rule 2 (fmadd ty x (sinkable_load y) z) (x64_vfmadd132 ty x z y))
2893
+
2894
+ ;; If one of the values being multiplied is negated then use a `vfnmadd*`
2895
+ ;; instruction instead
2896
+ (rule 3 (fmadd ty (fneg x) y z) (fnmadd ty x y z))
2897
+ (rule 4 (fmadd ty x (fneg y) z) (fnmadd ty x y z))
2898
+
2899
+ (rule (fnmadd ty x y z) (x64_vfnmadd213 ty x y z))
2900
+ (rule 1 (fnmadd ty (sinkable_load x) y z) (x64_vfnmadd132 ty y z x))
2901
+ (rule 2 (fnmadd ty x (sinkable_load y) z) (x64_vfnmadd132 ty x z y))
2902
+
2903
+ ;; Like `fmadd` if one argument is negated switch which one is being codegen'd
2904
+ (rule 3 (fnmadd ty (fneg x) y z) (fmadd ty x y z))
2905
+ (rule 4 (fnmadd ty x (fneg y) z) (fmadd ty x y z))
2906
+
2907
+
2908
+ (rule 2 (lower (has_type ty (fma x y (fneg z))))
2909
+ (if-let $true (use_fma))
2910
+ (fmsub ty x y z))
2911
+
2912
+ ;; fmsub and fnmsub
2913
+ (decl fmsub (Type Value Value Value) Xmm)
2914
+ (decl fnmsub (Type Value Value Value) Xmm)
2915
+
2916
+ ;; Base case, will sink a load of `z` automatically.
2917
+ (rule (fmsub ty x y z) (x64_vfmsub213 ty x y z))
2918
+
2919
+ ;; Allow sinking loads with one of the two values being multiplied in addition
2920
+ ;; to the value being subtracted. Note that both x and y can be sunk here due to
2921
+ ;; multiplication being commutative.
2922
+ (rule 1 (fmsub ty (sinkable_load x) y z) (x64_vfmsub132 ty y z x))
2923
+ (rule 2 (fmsub ty x (sinkable_load y) z) (x64_vfmsub132 ty x z y))
2924
+
2925
+ ;; If one of the values being multiplied is negated then use a `vfnmsub*`
2926
+ ;; instruction instead
2927
+ (rule 3 (fmsub ty (fneg x) y z) (fnmsub ty x y z))
2928
+ (rule 4 (fmsub ty x (fneg y) z) (fnmsub ty x y z))
2929
+
2930
+ (rule (fnmsub ty x y z) (x64_vfnmsub213 ty x y z))
2931
+ (rule 1 (fnmsub ty (sinkable_load x) y z) (x64_vfnmsub132 ty y z x))
2932
+ (rule 2 (fnmsub ty x (sinkable_load y) z) (x64_vfnmsub132 ty x z y))
2933
+
2934
+ ;; Like `fmsub` if one argument is negated switch which one is being codegen'd
2935
+ (rule 3 (fnmsub ty (fneg x) y z) (fmsub ty x y z))
2936
+ (rule 4 (fnmsub ty x (fneg y) z) (fmsub ty x y z))
2937
+
2938
+
2939
+ ;; Rules for `load*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2940
+
2941
+ ;; In order to load a value from memory to a GPR register, we may need to extend
2942
+ ;; the loaded value from 8-, 16-, or 32-bits to this backend's expected GPR
2943
+ ;; width: 64 bits. Note that `ext_mode` will load 1-bit types (booleans) as
2944
+ ;; 8-bit loads.
2945
+ ;;
2946
+ ;; By default, we zero-extend all sub-64-bit loads to a GPR.
2947
+ (rule -4 (lower (has_type (and (fits_in_32 ty) (is_gpr_type _)) (load flags address offset)))
2948
+ (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address offset)))
2949
+ ;; But if we know that both the `from` and `to` are 64 bits, we simply load with
2950
+ ;; no extension.
2951
+ (rule -1 (lower (has_type (ty_int_ref_64 ty) (load flags address offset)))
2952
+ (x64_mov (to_amode flags address offset)))
2953
+ ;; Also, certain scalar loads have a specific `from` width and extension kind
2954
+ ;; (signed -> `sx`, zeroed -> `zx`). We overwrite the high bits of the 64-bit
2955
+ ;; GPR even if the `to` type is smaller (e.g., 16-bits).
2956
+ (rule (lower (has_type (is_gpr_type ty) (uload8 flags address offset)))
2957
+ (x64_movzx (ExtMode.BQ) (to_amode flags address offset)))
2958
+ (rule (lower (has_type (is_gpr_type ty) (sload8 flags address offset)))
2959
+ (x64_movsx (ExtMode.BQ) (to_amode flags address offset)))
2960
+ (rule (lower (has_type (is_gpr_type ty) (uload16 flags address offset)))
2961
+ (x64_movzx (ExtMode.WQ) (to_amode flags address offset)))
2962
+ (rule (lower (has_type (is_gpr_type ty) (sload16 flags address offset)))
2963
+ (x64_movsx (ExtMode.WQ) (to_amode flags address offset)))
2964
+ (rule (lower (has_type (is_gpr_type ty) (uload32 flags address offset)))
2965
+ (x64_movzx (ExtMode.LQ) (to_amode flags address offset)))
2966
+ (rule (lower (has_type (is_gpr_type ty) (sload32 flags address offset)))
2967
+ (x64_movsx (ExtMode.LQ) (to_amode flags address offset)))
2968
+
2969
+ ;; To load to XMM registers, we use the x64-specific instructions for each type.
2970
+ ;; For `$F32` and `$F64` this is important--we only want to load 32 or 64 bits.
2971
+ ;; But for the 128-bit types, this is not strictly necessary for performance but
2972
+ ;; might help with clarity during disassembly.
2973
+ (rule (lower (has_type $F16 (load flags address offset)))
2974
+ (x64_pinsrw (xmm_uninit_value) (to_amode flags address offset) 0))
2975
+ (rule (lower (has_type $F32 (load flags address offset)))
2976
+ (x64_movss_load (to_amode flags address offset)))
2977
+ (rule (lower (has_type $F64 (load flags address offset)))
2978
+ (x64_movsd_load (to_amode flags address offset)))
2979
+ (rule (lower (has_type $F128 (load flags address offset)))
2980
+ (x64_movdqu_load (to_amode flags address offset)))
2981
+ (rule (lower (has_type $F32X4 (load flags address offset)))
2982
+ (x64_movups_load (to_amode flags address offset)))
2983
+ (rule (lower (has_type $F64X2 (load flags address offset)))
2984
+ (x64_movupd_load (to_amode flags address offset)))
2985
+ (rule -2 (lower (has_type (ty_vec128 ty) (load flags address offset)))
2986
+ (x64_movdqu_load (to_amode flags address offset)))
2987
+
2988
+ ;; We can load an I128 by doing two 64-bit loads.
2989
+ (rule -3 (lower (has_type $I128
2990
+ (load flags address offset)))
2991
+ (let ((addr_lo Amode (to_amode flags address offset))
2992
+ (addr_hi Amode (amode_offset addr_lo 8))
2993
+ (value_lo Reg (x64_mov addr_lo))
2994
+ (value_hi Reg (x64_mov addr_hi)))
2995
+ (value_regs value_lo value_hi)))
2996
+
2997
+ ;; We also include widening vector loads; these sign- or zero-extend each lane
2998
+ ;; to the next wider width (e.g., 16x4 -> 32x4).
2999
+ (rule 1 (lower (has_type $I16X8 (sload8x8 flags address offset)))
3000
+ (if-let $true (use_sse41))
3001
+ (x64_pmovsxbw (to_amode flags address offset)))
3002
+ (rule 1 (lower (has_type $I16X8 (uload8x8 flags address offset)))
3003
+ (if-let $true (use_sse41))
3004
+ (x64_pmovzxbw (to_amode flags address offset)))
3005
+ (rule 1 (lower (has_type $I32X4 (sload16x4 flags address offset)))
3006
+ (if-let $true (use_sse41))
3007
+ (x64_pmovsxwd (to_amode flags address offset)))
3008
+ (rule 1 (lower (has_type $I32X4 (uload16x4 flags address offset)))
3009
+ (if-let $true (use_sse41))
3010
+ (x64_pmovzxwd (to_amode flags address offset)))
3011
+ (rule 1 (lower (has_type $I64X2 (sload32x2 flags address offset)))
3012
+ (if-let $true (use_sse41))
3013
+ (x64_pmovsxdq (to_amode flags address offset)))
3014
+ (rule 1 (lower (has_type $I64X2 (uload32x2 flags address offset)))
3015
+ (if-let $true (use_sse41))
3016
+ (x64_pmovzxdq (to_amode flags address offset)))
3017
+
3018
+ (rule (lower (has_type $I16X8 (sload8x8 flags address offset)))
3019
+ (lower_swiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
3020
+ (rule (lower (has_type $I16X8 (uload8x8 flags address offset)))
3021
+ (lower_uwiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
3022
+ (rule (lower (has_type $I32X4 (sload16x4 flags address offset)))
3023
+ (lower_swiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
3024
+ (rule (lower (has_type $I32X4 (uload16x4 flags address offset)))
3025
+ (lower_uwiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
3026
+ (rule (lower (has_type $I64X2 (sload32x2 flags address offset)))
3027
+ (lower_swiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
3028
+ (rule (lower (has_type $I64X2 (uload32x2 flags address offset)))
3029
+ (lower_uwiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
3030
+
3031
+ ;; Rules for `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3032
+
3033
+ ;; 8-, 16-, 32- and 64-bit GPR stores.
3034
+ (rule -2 (lower (store flags
3035
+ value @ (value_type (is_gpr_type ty))
3036
+ address
3037
+ offset))
3038
+ (side_effect
3039
+ (x64_movrm ty (to_amode flags address offset) value)))
3040
+
3041
+ ;; Explicit 8/16/32-bit opcodes.
3042
+ (rule (lower (istore8 flags value address offset))
3043
+ (side_effect
3044
+ (x64_movrm $I8 (to_amode flags address offset) value)))
3045
+ (rule (lower (istore16 flags value address offset))
3046
+ (side_effect
3047
+ (x64_movrm $I16 (to_amode flags address offset) value)))
3048
+ (rule (lower (istore32 flags value address offset))
3049
+ (side_effect
3050
+ (x64_movrm $I32 (to_amode flags address offset) value)))
3051
+
3052
+ ;; IMM stores
3053
+ (rule 4 (lower (store flags value @ (value_type (fits_in_64 ty)) address offset))
3054
+ (if-let (i32_from_iconst imm) value)
3055
+ (side_effect
3056
+ (x64_movimm_m ty (to_amode flags address offset) imm)))
3057
+
3058
+ ;; F16 stores of values in XMM registers.
3059
+ (rule 0 (lower (store flags
3060
+ value @ (value_type $F16)
3061
+ address
3062
+ offset))
3063
+ (side_effect
3064
+ (x64_movrm $I16 (to_amode flags address offset) (bitcast_xmm_to_gpr 16 value))))
3065
+
3066
+ (rule 1 (lower (store flags
3067
+ value @ (value_type $F16)
3068
+ address
3069
+ offset))
3070
+ (if-let $true (use_sse41))
3071
+ (side_effect
3072
+ (x64_pextrw_store (to_amode flags address offset) value 0)))
3073
+
3074
+ ;; F32 stores of values in XMM registers.
3075
+ (rule 1 (lower (store flags
3076
+ value @ (value_type $F32)
3077
+ address
3078
+ offset))
3079
+ (side_effect
3080
+ (x64_movss_store (to_amode flags address offset) value)))
3081
+
3082
+ ;; F64 stores of values in XMM registers.
3083
+ (rule 1 (lower (store flags
3084
+ value @ (value_type $F64)
3085
+ address
3086
+ offset))
3087
+ (side_effect
3088
+ (x64_movsd_store (to_amode flags address offset) value)))
3089
+
3090
+ ;; F128 stores of values in XMM registers.
3091
+ (rule 1 (lower (store flags
3092
+ value @ (value_type $F128)
3093
+ address
3094
+ offset))
3095
+ (side_effect
3096
+ (x64_movdqu_store (to_amode flags address offset) value)))
3097
+
3098
+ ;; Stores of F32X4 vectors.
3099
+ (rule 1 (lower (store flags
3100
+ value @ (value_type $F32X4)
3101
+ address
3102
+ offset))
3103
+ (side_effect
3104
+ (x64_movups_store (to_amode flags address offset) value)))
3105
+
3106
+ ;; Stores of F64X2 vectors.
3107
+ (rule 1 (lower (store flags
3108
+ value @ (value_type $F64X2)
3109
+ address
3110
+ offset))
3111
+ (side_effect
3112
+ (x64_movupd_store (to_amode flags address offset) value)))
3113
+
3114
+ ;; Stores of all other 128-bit vector types with integer lanes.
3115
+ (rule -1 (lower (store flags
3116
+ value @ (value_type (ty_vec128_int _))
3117
+ address
3118
+ offset))
3119
+ (side_effect
3120
+ (x64_movdqu_store (to_amode flags address offset) value)))
3121
+
3122
+ ;; Stores of I128 values: store the two 64-bit halves separately.
3123
+ (rule 0 (lower (store flags
3124
+ value @ (value_type $I128)
3125
+ address
3126
+ offset))
3127
+ (let ((value_reg ValueRegs value)
3128
+ (value_lo Gpr (value_regs_get_gpr value_reg 0))
3129
+ (value_hi Gpr (value_regs_get_gpr value_reg 1))
3130
+ (addr_lo Amode (to_amode flags address offset))
3131
+ (addr_hi Amode (amode_offset addr_lo 8)))
3132
+ (side_effect
3133
+ (side_effect_concat
3134
+ (x64_movrm $I64 addr_lo value_lo)
3135
+ (x64_movrm $I64 addr_hi value_hi)))))
3136
+
3137
+ ;; Slightly optimize the extraction of the first lane from a vector which is
3138
+ ;; stored in memory. In the case the first lane specifically is selected the
3139
+ ;; standard `movss` and `movsd` instructions can be used as-if we're storing a
3140
+ ;; f32 or f64 despite the source perhaps being an integer vector since the
3141
+ ;; result of the instruction is the same.
3142
+ (rule 2 (lower (store flags
3143
+ (has_type $F32 (extractlane value (u8_from_uimm8 0)))
3144
+ address
3145
+ offset))
3146
+ (side_effect
3147
+ (x64_movss_store (to_amode flags address offset) value)))
3148
+ (rule 2 (lower (store flags
3149
+ (has_type $F64 (extractlane value (u8_from_uimm8 0)))
3150
+ address
3151
+ offset))
3152
+ (side_effect
3153
+ (x64_movsd_store (to_amode flags address offset) value)))
3154
+ (rule 2 (lower (store flags
3155
+ (has_type $I8 (extractlane value (u8_from_uimm8 n)))
3156
+ address
3157
+ offset))
3158
+ (if-let $true (use_sse41))
3159
+ (side_effect
3160
+ (x64_pextrb_store (to_amode flags address offset) value n)))
3161
+ (rule 2 (lower (store flags
3162
+ (has_type $I16 (extractlane value (u8_from_uimm8 n)))
3163
+ address
3164
+ offset))
3165
+ (if-let $true (use_sse41))
3166
+ (side_effect
3167
+ (x64_pextrw_store (to_amode flags address offset) value n)))
3168
+ (rule 2 (lower (store flags
3169
+ (has_type $I32 (extractlane value (u8_from_uimm8 n)))
3170
+ address
3171
+ offset))
3172
+ (if-let $true (use_sse41))
3173
+ (side_effect
3174
+ (x64_pextrd_store (to_amode flags address offset) value n)))
3175
+ (rule 2 (lower (store flags
3176
+ (has_type $I64 (extractlane value (u8_from_uimm8 n)))
3177
+ address
3178
+ offset))
3179
+ (if-let $true (use_sse41))
3180
+ (side_effect
3181
+ (x64_pextrq_store (to_amode flags address offset) value n)))
3182
+
3183
+ ;; Rules for `load*` + ALU op + `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3184
+
3185
+ ;; Add mem, reg
3186
+ (rule 3 (lower
3187
+ (store flags
3188
+ (has_type (ty_32_or_64 ty)
3189
+ (iadd (and
3190
+ (sinkable_load sink)
3191
+ (load flags addr offset))
3192
+ src2))
3193
+ addr
3194
+ offset))
3195
+ (let ((_ RegMemImm sink))
3196
+ (side_effect
3197
+ (x64_add_mem ty (to_amode flags addr offset) src2))))
3198
+
3199
+ ;; Add mem, reg with args swapped
3200
+ (rule 2 (lower
3201
+ (store flags
3202
+ (has_type (ty_32_or_64 ty)
3203
+ (iadd src2
3204
+ (and
3205
+ (sinkable_load sink)
3206
+ (load flags addr offset))))
3207
+ addr
3208
+ offset))
3209
+ (let ((_ RegMemImm sink))
3210
+ (side_effect
3211
+ (x64_add_mem ty (to_amode flags addr offset) src2))))
3212
+
3213
+ ;; Sub mem, reg
3214
+ (rule 2 (lower
3215
+ (store flags
3216
+ (has_type (ty_32_or_64 ty)
3217
+ (isub (and
3218
+ (sinkable_load sink)
3219
+ (load flags addr offset))
3220
+ src2))
3221
+ addr
3222
+ offset))
3223
+ (let ((_ RegMemImm sink))
3224
+ (side_effect
3225
+ (x64_sub_mem ty (to_amode flags addr offset) src2))))
3226
+
3227
+ ;; And mem, reg
3228
+ (rule 3 (lower
3229
+ (store flags
3230
+ (has_type (ty_32_or_64 ty)
3231
+ (band (and
3232
+ (sinkable_load sink)
3233
+ (load flags addr offset))
3234
+ src2))
3235
+ addr
3236
+ offset))
3237
+ (let ((_ RegMemImm sink))
3238
+ (side_effect
3239
+ (x64_and_mem ty (to_amode flags addr offset) src2))))
3240
+
3241
+ ;; And mem, reg with args swapped
3242
+ (rule 2 (lower
3243
+ (store flags
3244
+ (has_type (ty_32_or_64 ty)
3245
+ (band src2
3246
+ (and
3247
+ (sinkable_load sink)
3248
+ (load flags addr offset))))
3249
+ addr
3250
+ offset))
3251
+ (let ((_ RegMemImm sink))
3252
+ (side_effect
3253
+ (x64_and_mem ty (to_amode flags addr offset) src2))))
3254
+
3255
+ ;; Or mem, reg
3256
+ (rule 3 (lower
3257
+ (store flags
3258
+ (has_type (ty_32_or_64 ty)
3259
+ (bor (and
3260
+ (sinkable_load sink)
3261
+ (load flags addr offset))
3262
+ src2))
3263
+ addr
3264
+ offset))
3265
+ (let ((_ RegMemImm sink))
3266
+ (side_effect
3267
+ (x64_or_mem ty (to_amode flags addr offset) src2))))
3268
+
3269
+ ;; Or mem, reg with args swapped
3270
+ (rule 2 (lower
3271
+ (store flags
3272
+ (has_type (ty_32_or_64 ty)
3273
+ (bor src2
3274
+ (and
3275
+ (sinkable_load sink)
3276
+ (load flags addr offset))))
3277
+ addr
3278
+ offset))
3279
+ (let ((_ RegMemImm sink))
3280
+ (side_effect
3281
+ (x64_or_mem ty (to_amode flags addr offset) src2))))
3282
+
3283
+ ;; Xor mem, reg
3284
+ (rule 3 (lower
3285
+ (store flags
3286
+ (has_type (ty_32_or_64 ty)
3287
+ (bxor (and
3288
+ (sinkable_load sink)
3289
+ (load flags addr offset))
3290
+ src2))
3291
+ addr
3292
+ offset))
3293
+ (let ((_ RegMemImm sink))
3294
+ (side_effect
3295
+ (x64_xor_mem ty (to_amode flags addr offset) src2))))
3296
+
3297
+ ;; Xor mem, reg with args swapped
3298
+ (rule 2 (lower
3299
+ (store flags
3300
+ (has_type (ty_32_or_64 ty)
3301
+ (bxor src2
3302
+ (and
3303
+ (sinkable_load sink)
3304
+ (load flags addr offset))))
3305
+ addr
3306
+ offset))
3307
+ (let ((_ RegMemImm sink))
3308
+ (side_effect
3309
+ (x64_xor_mem ty (to_amode flags addr offset) src2))))
3310
+
3311
+ ;; Rules for `fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3312
+
3313
+ (rule (lower (fence))
3314
+ (side_effect (x64_mfence)))
3315
+
3316
+ ;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3317
+
3318
+ (rule (lower (func_addr (func_ref_data _ extname dist)))
3319
+ (load_ext_name extname 0 dist))
3320
+
3321
+ ;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3322
+
3323
+ (rule (lower (symbol_value (symbol_value_data extname dist offset)))
3324
+ (load_ext_name extname offset dist))
3325
+
3326
+ ;; Rules for `atomic_load` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3327
+
3328
+ ;; This is a normal load. The x86-TSO memory model provides sufficient
3329
+ ;; sequencing to satisfy the CLIF synchronisation requirements for `AtomicLoad`
3330
+ ;; without the need for any fence instructions.
3331
+ ;;
3332
+ ;; As described in the `atomic_load` documentation, this lowering is only valid
3333
+ ;; for I8, I16, I32, and I64. The sub-64-bit types are zero extended, as with a
3334
+ ;; normal load.
3335
+ (rule 1 (lower (has_type $I64 (atomic_load flags address)))
3336
+ (x64_mov (to_amode flags address (zero_offset))))
3337
+ (rule (lower (has_type (and (fits_in_32 ty) (ty_int _)) (atomic_load flags address)))
3338
+ (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address (zero_offset))))
3339
+
3340
+ ;; Rules for `atomic_store` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3341
+
3342
+ ;; This is a normal store followed by an `mfence` instruction. As described in
3343
+ ;; the `atomic_load` documentation, this lowering is only valid for I8, I16,
3344
+ ;; I32, and I64.
3345
+ (rule (lower (atomic_store flags
3346
+ value @ (value_type (and (fits_in_64 ty) (ty_int _)))
3347
+ address))
3348
+ (side_effect (side_effect_concat
3349
+ (x64_movrm ty (to_amode flags address (zero_offset)) value)
3350
+ (x64_mfence))))
3351
+
3352
+ ;; Rules for `atomic_cas` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3353
+
3354
+ (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3355
+ (atomic_cas flags address expected replacement)))
3356
+ (x64_cmpxchg ty expected replacement (to_amode flags address (zero_offset))))
3357
+
3358
+ ;; Rules for `atomic_rmw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3359
+
3360
+ ;; This is a simple, general-case atomic update, based on a loop involving
3361
+ ;; `cmpxchg`. Note that we could do much better than this in the case where the
3362
+ ;; old value at the location (that is to say, the SSA `Value` computed by this
3363
+ ;; CLIF instruction) is not required. In that case, we could instead implement
3364
+ ;; this using a single `lock`-prefixed x64 read-modify-write instruction. Also,
3365
+ ;; even in the case where the old value is required, for the `add` and `sub`
3366
+ ;; cases, we can use the single instruction `lock xadd`. However, those
3367
+ ;; improvements have been left for another day. TODO: filed as
3368
+ ;; https://github.com/bytecodealliance/wasmtime/issues/2153.
3369
+
3370
+ (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3371
+ (atomic_rmw flags op address input)))
3372
+ (x64_atomic_rmw_seq ty op (to_amode flags address (zero_offset)) input))
3373
+
3374
+ ;; Rules for `call` and `call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3375
+
3376
+ (rule (lower (call (func_ref_data sig_ref extname dist) inputs))
3377
+ (gen_call sig_ref extname dist inputs))
3378
+
3379
+ (rule (lower (call_indirect sig_ref val inputs))
3380
+ (gen_call_indirect sig_ref val inputs))
3381
+
3382
+ ;;;; Rules for `return_call` and `return_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;
3383
+
3384
+ (rule (lower (return_call (func_ref_data sig_ref extname dist) args))
3385
+ (gen_return_call sig_ref extname dist args))
3386
+
3387
+ (rule (lower (return_call_indirect sig_ref callee args))
3388
+ (gen_return_call_indirect sig_ref callee args))
3389
+
3390
+ ;; Rules for `stack_switch` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3391
+
3392
+ ;; currently, only the Basic model is supported
3393
+ (rule (lower (stack_switch store_context_ptr load_context_ptr in_payload0))
3394
+ (if-let (StackSwitchModel.Basic) (stack_switch_model))
3395
+ (let ((store_context_ptr Gpr (put_in_gpr store_context_ptr))
3396
+ (load_context_ptr Gpr (put_in_gpr load_context_ptr))
3397
+ (in_payload0 Gpr (put_in_gpr in_payload0)))
3398
+ (x64_stack_switch_basic store_context_ptr load_context_ptr in_payload0)))
3399
+
3400
+ ;;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;
3401
+
3402
+ (rule (lower (get_frame_pointer))
3403
+ (x64_rbp))
3404
+
3405
+ (rule (lower (get_stack_pointer))
3406
+ (x64_rsp))
3407
+
3408
+ (rule (lower (get_return_address))
3409
+ (x64_load $I64
3410
+ (Amode.ImmReg 8 (x64_rbp) (mem_flags_trusted))
3411
+ (ExtKind.None)))
3412
+
3413
+ ;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3414
+
3415
+ (rule (lower_branch (jump _) (single_target target))
3416
+ (emit_side_effect (jmp_known target)))
3417
+
3418
+ ;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3419
+
3420
+ (rule 2 (lower_branch (brif (maybe_uextend (icmp cc a b)) _ _) (two_targets then else))
3421
+ (emit_side_effect (jmp_cond_icmp (emit_cmp cc a b) then else)))
3422
+
3423
+ (rule 2 (lower_branch (brif (maybe_uextend (fcmp cc a b)) _ _) (two_targets then else))
3424
+ (emit_side_effect (jmp_cond_fcmp (emit_fcmp cc a b) then else)))
3425
+
3426
+ (rule 2 (lower_branch (brif (maybe_uextend (vany_true a)) _ _) (two_targets then else))
3427
+ (emit_side_effect (jmp_cond_icmp (emit_vany_true a) then else)))
3428
+
3429
+ (rule 2 (lower_branch (brif (maybe_uextend (vall_true a)) _ _) (two_targets then else))
3430
+ (emit_side_effect (jmp_cond_icmp (emit_vall_true a) then else)))
3431
+
3432
+ (rule 1 (lower_branch (brif val @ (value_type $I128) _ _)
3433
+ (two_targets then else))
3434
+ (emit_side_effect (jmp_cond_icmp (cmp_zero_i128 (CC.Z) val) then else)))
3435
+
3436
+ (rule (lower_branch (brif val @ (value_type (ty_int_bool_or_ref)) _ _)
3437
+ (two_targets then else))
3438
+ (emit_side_effect (with_flags_side_effect
3439
+ (cmp_zero_int_bool_ref val)
3440
+ (jmp_cond (CC.NZ) then else))))
3441
+
3442
+
3443
+ ;; Compare an I128 value to zero, returning a flags result suitable for making a
3444
+ ;; jump decision. The comparison is implemented as `(hi | low) == 0`,
3445
+ ;; and the result can be interpreted as follows
3446
+ ;; * CC.Z indicates that the value was non-zero, as one or both of the halves of
3447
+ ;; the value were non-zero
3448
+ ;; * CC.NZ indicates that both halves of the value were 0
3449
+ (decl cmp_zero_i128 (CC ValueRegs) IcmpCondResult)
3450
+ (rule (cmp_zero_i128 (cc_nz_or_z cc) val)
3451
+ (let ((lo Gpr (value_regs_get_gpr val 0))
3452
+ (hi Gpr (value_regs_get_gpr val 1)))
3453
+ (icmp_cond_result
3454
+ (x64_alurmi_flags_side_effect (AluRmiROpcode.Or) $I64 lo hi)
3455
+ (cc_invert cc))))
3456
+
3457
+
3458
+ (decl cmp_zero_int_bool_ref (Value) ProducesFlags)
3459
+ (rule (cmp_zero_int_bool_ref val @ (value_type ty))
3460
+ (let ((size OperandSize (raw_operand_size_of_type ty))
3461
+ (src Gpr val))
3462
+ (x64_test size src src)))
3463
+
3464
+ ;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3465
+
3466
+ (rule (lower_branch (br_table idx @ (value_type ty) _) (jump_table_targets default_target jt_targets))
3467
+ (let ((size OperandSize (raw_operand_size_of_type ty))
3468
+ (jt_size u32 (jump_table_size jt_targets))
3469
+ (size_reg Reg (imm ty (u32_as_u64 jt_size)))
3470
+ (idx_reg Gpr (extend_to_gpr idx $I64 (ExtendKind.Zero)))
3471
+ (clamped_idx Reg (with_flags_reg
3472
+ (x64_cmp size idx_reg size_reg)
3473
+ (cmove ty (CC.B) idx_reg size_reg))))
3474
+ (emit_side_effect (jmp_table_seq ty clamped_idx default_target jt_targets))))
3475
+
3476
+ ;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3477
+
3478
+ (rule (lower (select_spectre_guard (icmp cc a b) x y))
3479
+ (select_icmp (emit_cmp cc a b) x y))
3480
+
3481
+ (rule -1 (lower (has_type ty (select_spectre_guard c @ (value_type (fits_in_64 a_ty)) x y)))
3482
+ (let ((size OperandSize (raw_operand_size_of_type a_ty))
3483
+ (gpr_c Gpr (put_in_gpr c)))
3484
+ (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
3485
+
3486
+ (rule -2 (lower (has_type ty (select_spectre_guard c @ (value_type $I128) x y)))
3487
+ (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
3488
+ (select_icmp cond_result x y)))
3489
+
3490
+ ;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3491
+
3492
+ ;; Note that the `cvtsi2s{s,d}` instruction is not just an int-to-float
3493
+ ;; conversion instruction in isolation, it also takes the upper 64-bits of an
3494
+ ;; xmm register and places it into the destination. We don't actually want that
3495
+ ;; to happen as it could accidentally create a false dependency with a
3496
+ ;; previous instruction defining the register's upper 64-bits. See #7085 for
3497
+ ;; an instance of this.
3498
+ ;;
3499
+ ;; This means that the first operand to all of the int-to-float conversions here
3500
+ ;; are `(xmm_zero)` operands which is a guaranteed zero register that has no
3501
+ ;; dependencies on other instructions.
3502
+ ;;
3503
+ ;; Ideally this would be lifted out to a higher level to get deduplicated
3504
+ ;; between consecutive int-to-float operations but that's not easy
3505
+ ;; to do at this time. One possibility would be a mid-end rule which rewrites
3506
+ ;; `fcvt_from_sint` to an x86-specific opcode using a zero constant which would
3507
+ ;; be subject to normal LICM, but that's not feasible today.
3508
+
3509
+ (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I8))))
3510
+ (x64_cvtsi2ss $I32 (xmm_zero $F32X4) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3511
+
3512
+ (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I16))))
3513
+ (x64_cvtsi2ss $I32 (xmm_zero $F32X4) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3514
+
3515
+ (rule 1 (lower (has_type $F32 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3516
+ (x64_cvtsi2ss ty (xmm_zero $F32X4) a))
3517
+
3518
+ (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I8))))
3519
+ (x64_cvtsi2sd $I32 (xmm_zero $F64X2) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3520
+
3521
+ (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I16))))
3522
+ (x64_cvtsi2sd $I32 (xmm_zero $F64X2) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3523
+
3524
+ (rule 1 (lower (has_type $F64 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3525
+ (x64_cvtsi2sd ty (xmm_zero $F64X2) a))
3526
+
3527
+ (rule 0 (lower (fcvt_from_sint a @ (value_type $I32X4)))
3528
+ (x64_cvtdq2ps a))
3529
+
3530
+ ;; Base case: decompose the i64x2 input into two scalar registers and convert
3531
+ ;; each of those into a float. Afterwards re-pack the two results into the final
3532
+ ;; destination.
3533
+ (rule 0 (lower (fcvt_from_sint a @ (value_type $I64X2)))
3534
+ (let (
3535
+ (a Xmm a)
3536
+ (zero Xmm (xmm_zero $F64X2))
3537
+ (f0 Xmm (x64_cvtsi2sd $I64 zero (x64_movq_to_gpr a)))
3538
+ (f1 Xmm (x64_cvtsi2sd $I64 zero (x64_movq_to_gpr (x64_pshufd a 0b11_10_11_10))))
3539
+ )
3540
+ (x64_unpcklpd f0 f1)))
3541
+
3542
+ (rule 1 (lower (has_type $F64X2 (fcvt_from_sint (swiden_low a @ (value_type $I32X4)))))
3543
+ (x64_cvtdq2pd a))
3544
+
3545
+ ;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3546
+
3547
+ (rule 1 (lower (has_type $F32 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3548
+ (x64_cvtsi2ss $I64 (xmm_zero $F32X4) (extend_to_gpr val $I64 (ExtendKind.Zero))))
3549
+
3550
+ (rule 1 (lower (has_type $F64 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3551
+ (x64_cvtsi2sd $I64 (xmm_zero $F64X2) (extend_to_gpr val $I64 (ExtendKind.Zero))))
3552
+
3553
+ (rule (lower (has_type ty (fcvt_from_uint val @ (value_type $I64))))
3554
+ (cvt_u64_to_float_seq ty val))
3555
+
3556
+ ;; Base case of u64x2 being converted to f64x2. No native instruction for this
3557
+ ;; is available so it's emulated through a series of instructions that exploit
3558
+ ;; the binary representation of 64-bit floats. This sequence of instructions is
3559
+ ;; copied from LLVM and my understanding of the general idea is to roughly:
3560
+ ;;
3561
+ ;; * For each bullet below operate in parallel on the left and right lanes.
3562
+ ;; * Move the low 32 bits of the input into one register and the upper
3563
+ ;; 32-bits into a different register, where both have all 0s for the upper
3564
+ ;; 32-bits. (e.g. split the 64-bit input into two locations)
3565
+ ;; * For the low bits, create `1.<twenty-zeros><low32>p52` via bit tricks.
3566
+ ;; * For the high bits, create `1.<twenty-zeros><high32>p84` via bit tricks.
3567
+ ;; * Create the constant `1.0p84 + 1.0p52`
3568
+ ;; * Add the two high halves and subtract the constant.
3569
+ ;;
3570
+ ;; Apply some math and this should produce the same result as the native
3571
+ ;; conversion.
3572
+ ;;
3573
+ ;; As for the bit tricks a float is represented where the low 53 bits are the
3574
+ ;; decimal of the float, basically:
3575
+ ;;
3576
+ ;; f = 1.<fraction> ^ (<exponent> - 1023)
3577
+ ;;
3578
+ ;; where `<fraction>` is the low 53 bits. By placing the 32-bit halves from
3579
+ ;; the original integer into the low 53 bits and setting the exponent right it
3580
+ ;; means that each 32-bit half can become part of a 64-bit floating point
3581
+ ;; number. The final step in combining via float arithmetic will chop off the
3582
+ ;; leading `1.` at the start of the float that we constructed, one for the low
3583
+ ;; half and one for the upper half.
3584
+ (rule -1 (lower (has_type $F64X2 (fcvt_from_uint val @ (value_type $I64X2))))
3585
+ (let ((low32_mask XmmMem (emit_u128_le_const 0x00000000ffffffff_00000000ffffffff))
3586
+ (float_1p52 XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000))
3587
+ (float_1p84 XmmMem (emit_u128_le_const 0x4530000000000000_4530000000000000))
3588
+ (float_1p84_plus_1p52 XmmMem (emit_u128_le_const 0x4530000000100000_4530000000100000))
3589
+ (low32 Xmm (x64_pand val low32_mask))
3590
+ (low32_as_float Xmm (x64_por low32 float_1p52))
3591
+ (high32 Xmm (x64_psrlq val (xmi_imm 32)))
3592
+ (high32_as_float Xmm (x64_por high32 float_1p84)))
3593
+ (x64_addpd low32_as_float (x64_subpd high32_as_float float_1p84_plus_1p52))))
3594
+
3595
+ ;; Algorithm uses unpcklps to help create a float that is equivalent
3596
+ ;; 0x1.0p52 + double(src). 0x1.0p52 is unique because at this exponent
3597
+ ;; every value of the mantissa represents a corresponding uint32 number.
3598
+ ;; When we subtract 0x1.0p52 we are left with double(src).
3599
+ (rule 1 (lower (has_type $F64X2 (fcvt_from_uint (uwiden_low val @ (value_type $I32X4)))))
3600
+ (let ((uint_mask XmmMem (emit_u128_le_const 0x43300000_43300000))
3601
+ (res Xmm (x64_unpcklps val uint_mask))
3602
+ (uint_mask_high XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000)))
3603
+ (x64_subpd res uint_mask_high)))
3604
+
3605
+ ;; When AVX512VL and AVX512F are available,
3606
+ ;; `fcvt_from_uint` can be lowered to a single instruction.
3607
+ (rule 2 (lower (has_type $F32X4 (fcvt_from_uint src)))
3608
+ (if-let $true (use_avx512vl))
3609
+ (if-let $true (use_avx512f))
3610
+ (x64_vcvtudq2ps src))
3611
+
3612
+ ;; Converting packed unsigned integers to packed floats
3613
+ ;; requires a few steps. There is no single instruction
3614
+ ;; lowering for converting unsigned floats but there is for
3615
+ ;; converting packed signed integers to float (cvtdq2ps). In
3616
+ ;; the steps below we isolate the upper half (16 bits) and
3617
+ ;; lower half (16 bits) of each lane and then we convert
3618
+ ;; each half separately using cvtdq2ps meant for signed
3619
+ ;; integers. In order for this to work for the upper half
3620
+ ;; bits we must shift right by 1 (divide by 2) these bits in
3621
+ ;; order to ensure the most significant bit is 0 not signed,
3622
+ ;; and then after the conversion we double the value.
3623
+ ;; Finally we add the converted values where addition will
3624
+ ;; correctly round.
3625
+ ;;
3626
+ ;; Sequence:
3627
+ ;; -> A = 0xffffffff
3628
+ ;; -> Ah = 0xffff0000
3629
+ ;; -> Al = 0x0000ffff
3630
+ ;; -> Convert(Al) // Convert int to float
3631
+ ;; -> Ah = Ah >> 1 // Shift right 1 to assure Ah conversion isn't treated as signed
3632
+ ;; -> Convert(Ah) // Convert .. with no loss of significant digits from previous shift
3633
+ ;; -> Ah = Ah + Ah // Double Ah to account for shift right before the conversion.
3634
+ ;; -> dst = Ah + Al // Add the two floats together
3635
+ (rule 1 (lower (has_type $F32X4 (fcvt_from_uint val)))
3636
+ (let ((a Xmm val)
3637
+
3638
+ ;; get the low 16 bits
3639
+ (a_lo Xmm (x64_pslld a (xmi_imm 16)))
3640
+ (a_lo Xmm (x64_psrld a_lo (xmi_imm 16)))
3641
+
3642
+ ;; get the high 16 bits
3643
+ (a_hi Xmm (x64_psubd a a_lo))
3644
+
3645
+ ;; convert the low 16 bits
3646
+ (a_lo Xmm (x64_cvtdq2ps a_lo))
3647
+
3648
+ ;; shift the high bits by 1, convert, and double to get the correct
3649
+ ;; value
3650
+ (a_hi Xmm (x64_psrld a_hi (xmi_imm 1)))
3651
+ (a_hi Xmm (x64_cvtdq2ps a_hi))
3652
+ (a_hi Xmm (x64_addps a_hi a_hi)))
3653
+
3654
+ ;; add together the two converted values
3655
+ (x64_addps a_hi a_lo)))
3656
+
3657
+ ;; Rules for `fcvt_to_uint` and `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3658
+
3659
+ (rule (lower (has_type out_ty (fcvt_to_uint val @ (value_type (ty_scalar_float _)))))
3660
+ (cvt_float_to_uint_seq out_ty val $false))
3661
+
3662
+ (rule (lower (has_type out_ty (fcvt_to_uint_sat val @ (value_type (ty_scalar_float _)))))
3663
+ (cvt_float_to_uint_seq out_ty val $true))
3664
+
3665
+ (rule (lower (has_type out_ty (fcvt_to_sint val @ (value_type (ty_scalar_float _)))))
3666
+ (cvt_float_to_sint_seq out_ty val $false))
3667
+
3668
+ (rule (lower (has_type out_ty (fcvt_to_sint_sat val @ (value_type (ty_scalar_float _)))))
3669
+ (cvt_float_to_sint_seq out_ty val $true))
3670
+
3671
+ ;; The x64 backend currently only supports these two type combinations.
3672
+ (rule 1 (lower (has_type $I32X4 (fcvt_to_sint_sat val @ (value_type $F32X4))))
3673
+ (let ((src Xmm val)
3674
+
3675
+ ;; Sets tmp to zero if float is NaN
3676
+ (tmp Xmm (x64_cmpps src src (FcmpImm.Equal)))
3677
+ (dst Xmm (x64_andps src tmp))
3678
+
3679
+ ;; Sets top bit of tmp if float is positive
3680
+ ;; Setting up to set top bit on negative float values
3681
+ (tmp Xmm (x64_pxor tmp dst))
3682
+
3683
+ ;; Convert the packed float to packed doubleword.
3684
+ (dst Xmm (x64_cvttps2dq dst))
3685
+
3686
+ ;; Set top bit only if < 0
3687
+ (tmp Xmm (x64_pand dst tmp))
3688
+ (tmp Xmm (x64_psrad tmp (xmi_imm 31))))
3689
+
3690
+ ;; On overflow 0x80000000 is returned to a lane.
3691
+ ;; Below sets positive overflow lanes to 0x7FFFFFFF
3692
+ ;; Keeps negative overflow lanes as is.
3693
+ (x64_pxor tmp dst)))
3694
+
3695
+ ;; The algorithm for converting floats to unsigned ints is a little tricky. The
3696
+ ;; complication arises because we are converting from a signed 64-bit int with a positive
3697
+ ;; integer range from 1..INT_MAX (0x1..0x7FFFFFFF) to an unsigned integer with an extended
3698
+ ;; range from (INT_MAX+1)..UINT_MAX. It's this range from (INT_MAX+1)..UINT_MAX
3699
+ ;; (0x80000000..0xFFFFFFFF) that needs to be accounted for as a special case since our
3700
+ ;; conversion instruction (cvttps2dq) only converts as high as INT_MAX (0x7FFFFFFF), but
3701
+ ;; which conveniently setting underflows and overflows (smaller than MIN_INT or larger than
3702
+ ;; MAX_INT) to be INT_MAX+1 (0x80000000). Nothing that the range (INT_MAX+1)..UINT_MAX includes
3703
+ ;; precisely INT_MAX values we can correctly account for and convert every value in this range
3704
+ ;; if we simply subtract INT_MAX+1 before doing the cvttps2dq conversion. After the subtraction
3705
+ ;; every value originally (INT_MAX+1)..UINT_MAX is now the range (0..INT_MAX).
3706
+ ;; After the conversion we add INT_MAX+1 back to this converted value, noting again that
3707
+ ;; values we are trying to account for were already set to INT_MAX+1 during the original conversion.
3708
+ ;; We simply have to create a mask and make sure we are adding together only the lanes that need
3709
+ ;; to be accounted for. Digesting it all the steps then are:
3710
+ ;;
3711
+ ;; Step 1 - Account for NaN and negative floats by setting these src values to zero.
3712
+ ;; Step 2 - Make a copy (tmp1) of the src value since we need to convert twice for
3713
+ ;; reasons described above.
3714
+ ;; Step 3 - Convert the original src values. This will convert properly all floats up to INT_MAX
3715
+ ;; Step 4 - Subtract INT_MAX from the copy set (tmp1). Note, all zero and negative values are those
3716
+ ;; values that were originally in the range (0..INT_MAX). This will come in handy during
3717
+ ;; step 7 when we zero negative lanes.
3718
+ ;; Step 5 - Create a bit mask for tmp1 that will correspond to all lanes originally less than
3719
+ ;; UINT_MAX that are now less than INT_MAX thanks to the subtraction.
3720
+ ;; Step 6 - Convert the second set of values (tmp1)
3721
+ ;; Step 7 - Prep the converted second set by zeroing out negative lanes (these have already been
3722
+ ;; converted correctly with the first set) and by setting overflow lanes to 0x7FFFFFFF
3723
+ ;; as this will allow us to properly saturate overflow lanes when adding to 0x80000000
3724
+ ;; Step 8 - Add the original converted src and the converted tmp1 where float values originally less
3725
+ ;; than and equal to INT_MAX will be unchanged, float values originally between INT_MAX+1 and
3726
+ ;; UINT_MAX will add together (INT_MAX) + (SRC - INT_MAX), and float values originally
3727
+ ;; greater than UINT_MAX will be saturated to UINT_MAX (0xFFFFFFFF) after adding (0x8000000 + 0x7FFFFFFF).
3728
+ ;;
3729
+ ;;
3730
+ ;; The table below illustrates the result after each step where it matters for the converted set.
3731
+ ;; Note the original value range (original src set) is the final dst in Step 8:
3732
+ ;;
3733
+ ;; Original src set:
3734
+ ;; | Original Value Range | Step 1 | Step 3 | Step 8 |
3735
+ ;; | -FLT_MIN..FLT_MAX | 0.0..FLT_MAX | 0..INT_MAX(w/overflow) | 0..UINT_MAX(w/saturation) |
3736
+ ;;
3737
+ ;; Copied src set (tmp1):
3738
+ ;; | Step 2 | Step 4 |
3739
+ ;; | 0.0..FLT_MAX | (0.0-(INT_MAX+1))..(FLT_MAX-(INT_MAX+1)) |
3740
+ ;;
3741
+ ;; | Step 6 | Step 7 |
3742
+ ;; | (0-(INT_MAX+1))..(UINT_MAX-(INT_MAX+1))(w/overflow) | ((INT_MAX+1)-(INT_MAX+1))..(INT_MAX+1) |
3743
+ (rule 1 (lower (has_type $I32X4 (fcvt_to_uint_sat val @ (value_type $F32X4))))
3744
+ (let ((src Xmm val)
3745
+
3746
+ ;; Converting to unsigned int so if float src is negative or NaN
3747
+ ;; will first set to zero.
3748
+ (tmp2 Xmm (xmm_zero $F32X4))
3749
+ (dst Xmm (x64_maxps src tmp2))
3750
+
3751
+ ;; Set tmp2 to INT_MAX+1. It is important to note here that after it looks
3752
+ ;; like we are only converting INT_MAX (0x7FFFFFFF) but in fact because
3753
+ ;; single precision IEEE-754 floats can only accurately represent contiguous
3754
+ ;; integers up to 2^23 and outside of this range it rounds to the closest
3755
+ ;; integer that it can represent. In the case of INT_MAX, this value gets
3756
+ ;; represented as 0x4f000000 which is the integer value (INT_MAX+1).
3757
+ (tmp2 Xmm (x64_pcmpeqd tmp2 tmp2))
3758
+ (tmp2 Xmm (x64_psrld tmp2 (xmi_imm 1)))
3759
+ (tmp2 Xmm (x64_cvtdq2ps tmp2))
3760
+
3761
+ ;; Make a copy of these lanes and then do the first conversion.
3762
+ ;; Overflow lanes greater than the maximum allowed signed value will
3763
+ ;; set to 0x80000000. Negative and NaN lanes will be 0x0
3764
+ (tmp1 Xmm dst)
3765
+ (dst Xmm (x64_cvttps2dq dst))
3766
+
3767
+ ;; Set lanes to src - max_signed_int
3768
+ (tmp1 Xmm (x64_subps tmp1 tmp2))
3769
+
3770
+ ;; Create mask for all positive lanes to saturate (i.e. greater than
3771
+ ;; or equal to the maximum allowable unsigned int).
3772
+ (tmp2 Xmm (x64_cmpps tmp2 tmp1 (FcmpImm.LessThanOrEqual)))
3773
+
3774
+ ;; Convert those set of lanes that have the max_signed_int factored out.
3775
+ (tmp1 Xmm (x64_cvttps2dq tmp1))
3776
+
3777
+ ;; Prepare converted lanes by zeroing negative lanes and prepping lanes
3778
+ ;; that have positive overflow (based on the mask) by setting these lanes
3779
+ ;; to 0x7FFFFFFF
3780
+ (tmp1 Xmm (x64_pxor tmp1 tmp2))
3781
+ (tmp2 Xmm (xmm_zero $I32X4))
3782
+ (tmp1 Xmm (lower_vec_smax $I32X4 tmp1 tmp2)))
3783
+
3784
+ ;; Add this second set of converted lanes to the original to properly handle
3785
+ ;; values greater than max signed int.
3786
+ (x64_paddd tmp1 dst)))
3787
+
3788
+ ;; Rules for `x86_cvtt2dq` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3789
+
3790
+ (rule (lower (has_type $I32X4 (x86_cvtt2dq val @ (value_type $F32X4))))
3791
+ (x64_cvttps2dq val))
3792
+
3793
+ ;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3794
+
3795
+ (rule (lower (has_type $I8X16 (iadd_pairwise x y)))
3796
+ (let (
3797
+ ;; Shuffle all the even lanes of `x` and `y` into one register
3798
+ (even_lane_mask Xmm (x64_movdqu_load (emit_u128_le_const 0x00ff_00ff_00ff_00ff_00ff_00ff_00ff_00ff)))
3799
+ (x_evens Xmm (x64_pand x even_lane_mask))
3800
+ (y_evens Xmm (x64_pand y even_lane_mask))
3801
+ (evens Xmm (x64_packuswb x_evens y_evens))
3802
+
3803
+ ;; Shuffle all the odd lanes of `x` and `y` into one register
3804
+ (x_odds Xmm (x64_psrlw x (xmi_imm 8)))
3805
+ (y_odds Xmm (x64_psrlw y (xmi_imm 8)))
3806
+ (odds Xmm (x64_packuswb x_odds y_odds))
3807
+ )
3808
+ (x64_paddb evens odds)))
3809
+
3810
+
3811
+ (rule 1 (lower (has_type $I16X8 (iadd_pairwise x y)))
3812
+ (if-let $true (use_ssse3))
3813
+ (x64_phaddw x y))
3814
+
3815
+ (rule (lower (has_type $I16X8 (iadd_pairwise x y)))
3816
+ (let (
3817
+ (x Xmm x)
3818
+ (y Xmm y)
3819
+
3820
+ ;; Shuffle the even-numbered 16-bit lanes into low four lanes of each
3821
+ ;; vector by shuffling 16-bit lanes then shuffling 32-bit lanes.
3822
+ ;; With these in place generate a new vector from the two low 64-bits
3823
+ ;; of each vector (the low four 16-bit lanes).
3824
+ ;;
3825
+ ;; 0xe8 == 0b11_10_10_00
3826
+ (x_evens Xmm (x64_pshufd (x64_pshufhw (x64_pshuflw x 0xe8) 0xe8) 0xe8))
3827
+ (y_evens Xmm (x64_pshufd (x64_pshufhw (x64_pshuflw y 0xe8) 0xe8) 0xe8))
3828
+ (evens Xmm (x64_punpcklqdq x_evens y_evens))
3829
+
3830
+ ;; Shuffle the odd-numbered 16-bit lanes into the low 8 lanes by
3831
+ ;; performing `sshr` operation on 32-bit lanes, effectively moving the
3832
+ ;; odd lanes into even lanes while leaving their sign bits in the
3833
+ ;; odd lanes. The `packssdw` instruction then conveniently will
3834
+ ;; put everything into one vector for us.
3835
+ (x_shifted Xmm (x64_psrad x (xmi_imm 16)))
3836
+ (y_shifted Xmm (x64_psrad y (xmi_imm 16)))
3837
+ (odds Xmm (x64_packssdw x_shifted y_shifted))
3838
+ )
3839
+ (x64_paddw evens odds)))
3840
+
3841
+ (rule 1 (lower (has_type $I32X4 (iadd_pairwise x y)))
3842
+ (if-let $true (use_ssse3))
3843
+ (x64_phaddd x y))
3844
+
3845
+ (rule (lower (has_type $I32X4 (iadd_pairwise x y)))
3846
+ (let (
3847
+ (x Xmm x)
3848
+ (y Xmm y)
3849
+ ;; evens = [ x[0] x[2] y[0] y[2] ]
3850
+ (evens Xmm (x64_shufps x y 0b10_00_10_00))
3851
+ ;; odds = [ x[1] x[3] y[1] y[3] ]
3852
+ (odds Xmm (x64_shufps x y 0b11_01_11_01))
3853
+ )
3854
+ (x64_paddd evens odds)))
3855
+
3856
+ ;; special case for the `i16x8.extadd_pairwise_i8x16_s` wasm instruction
3857
+ (rule 2 (lower
3858
+ (has_type $I16X8 (iadd_pairwise
3859
+ (swiden_low val @ (value_type $I8X16))
3860
+ (swiden_high val))))
3861
+ (if-let $true (use_ssse3))
3862
+ (let ((mul_const Xmm (x64_xmm_load_const $I8X16
3863
+ (emit_u128_le_const 0x01010101010101010101010101010101))))
3864
+ (x64_pmaddubsw mul_const val)))
3865
+
3866
+ ;; special case for the `i32x4.extadd_pairwise_i16x8_s` wasm instruction
3867
+ (rule 2 (lower
3868
+ (has_type $I32X4 (iadd_pairwise
3869
+ (swiden_low val @ (value_type $I16X8))
3870
+ (swiden_high val))))
3871
+ (let ((mul_const XmmMem (emit_u128_le_const 0x0001_0001_0001_0001_0001_0001_0001_0001)))
3872
+ (x64_pmaddwd val mul_const)))
3873
+
3874
+ ;; special case for the `i16x8.extadd_pairwise_i8x16_u` wasm instruction
3875
+ (rule 2 (lower
3876
+ (has_type $I16X8 (iadd_pairwise
3877
+ (uwiden_low val @ (value_type $I8X16))
3878
+ (uwiden_high val))))
3879
+ (if-let $true (use_ssse3))
3880
+ (let ((mul_const XmmMem (emit_u128_le_const 0x01010101010101010101010101010101)))
3881
+ (x64_pmaddubsw val mul_const)))
3882
+
3883
+ ;; special case for the `i32x4.extadd_pairwise_i16x8_u` wasm instruction
3884
+ (rule 2 (lower
3885
+ (has_type $I32X4 (iadd_pairwise
3886
+ (uwiden_low val @ (value_type $I16X8))
3887
+ (uwiden_high val))))
3888
+ (let ((xor_const XmmMem (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000))
3889
+ (dst Xmm (x64_pxor val xor_const))
3890
+
3891
+ (madd_const XmmMem (emit_u128_le_const 0x0001_0001_0001_0001_0001_0001_0001_0001))
3892
+ (dst Xmm (x64_pmaddwd dst madd_const))
3893
+
3894
+ (addd_const XmmMem (emit_u128_le_const 0x00010000_00010000_00010000_00010000)))
3895
+ (x64_paddd dst addd_const)))
3896
+
3897
+ ;; special case for the `i32x4.dot_i16x8_s` wasm instruction
3898
+ (rule 2 (lower
3899
+ (has_type $I32X4 (iadd_pairwise
3900
+ (imul (swiden_low x) (swiden_low y))
3901
+ (imul (swiden_high x) (swiden_high y)))))
3902
+ (x64_pmaddwd x y))
3903
+
3904
+ ;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3905
+
3906
+ ;; With SSE4.1 use the `pmovsx*` instructions for this
3907
+ (rule 1 (lower (has_type $I16X8 (swiden_low val @ (value_type $I8X16))))
3908
+ (if-let $true (use_sse41))
3909
+ (x64_pmovsxbw val))
3910
+ (rule 1 (lower (has_type $I32X4 (swiden_low val @ (value_type $I16X8))))
3911
+ (if-let $true (use_sse41))
3912
+ (x64_pmovsxwd val))
3913
+ (rule 1 (lower (has_type $I64X2 (swiden_low val @ (value_type $I32X4))))
3914
+ (if-let $true (use_sse41))
3915
+ (x64_pmovsxdq val))
3916
+
3917
+ (rule (lower (has_type ty (swiden_low val))) (lower_swiden_low ty val))
3918
+
3919
+ (decl lower_swiden_low (Type Xmm) Xmm)
3920
+
3921
+ ;; Duplicate the low lanes next to each other, then perform a wider shift-right
3922
+ ;; by the low lane width to move the upper of each pair back into the lower lane
3923
+ ;; of each pair, achieving the widening of the lower lanes.
3924
+ (rule (lower_swiden_low $I16X8 val)
3925
+ (x64_psraw (x64_punpcklbw val val) (xmi_imm 8)))
3926
+ (rule (lower_swiden_low $I32X4 val)
3927
+ (x64_psrad (x64_punpcklwd val val) (xmi_imm 16)))
3928
+
3929
+ ;; Generate the sign-extended halves with a `val < 0` comparison (expressed
3930
+ ;; reversed here), then interleave the low 32-bit halves to create the full
3931
+ ;; 64-bit results.
3932
+ (rule (lower_swiden_low $I64X2 val)
3933
+ (let ((tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3934
+ (x64_punpckldq val tmp)))
3935
+
3936
+ ;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3937
+
3938
+ ;; Similar to `swiden_low` with SSE4.1 except that the upper lanes are moved
3939
+ ;; to the lower lanes first.
3940
+ (rule 1 (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3941
+ (if-let $true (use_sse41))
3942
+ (if-let $true (use_ssse3))
3943
+ (let ((x Xmm val))
3944
+ (x64_pmovsxbw (x64_palignr x x 8))))
3945
+ (rule 1 (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3946
+ (if-let $true (use_sse41))
3947
+ (if-let $true (use_ssse3))
3948
+ (let ((x Xmm val))
3949
+ (x64_pmovsxwd (x64_palignr x x 8))))
3950
+ (rule 1 (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3951
+ (if-let $true (use_sse41))
3952
+ (x64_pmovsxdq (x64_pshufd val 0b11_10_11_10)))
3953
+
3954
+ ;; Similar to `swiden_low` versions but using `punpckh*` instructions to
3955
+ ;; pair the high lanes next to each other.
3956
+ (rule (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3957
+ (let ((val Xmm val))
3958
+ (x64_psraw (x64_punpckhbw val val) (xmi_imm 8))))
3959
+ (rule (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3960
+ (let ((val Xmm val))
3961
+ (x64_psrad (x64_punpckhwd val val) (xmi_imm 16))))
3962
+
3963
+ ;; Same as `swiden_low`, but `val` has its high lanes moved down.
3964
+ (rule (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3965
+ (let ((val Xmm (x64_pshufd val 0b00_00_11_10))
3966
+ (tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3967
+ (x64_punpckldq val tmp)))
3968
+
3969
+ ;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3970
+
3971
+ ;; With SSE4.1 use the `pmovzx*` instructions for this
3972
+ (rule 1 (lower (has_type $I16X8 (uwiden_low val @ (value_type $I8X16))))
3973
+ (if-let $true (use_sse41))
3974
+ (x64_pmovzxbw val))
3975
+ (rule 1 (lower (has_type $I32X4 (uwiden_low val @ (value_type $I16X8))))
3976
+ (if-let $true (use_sse41))
3977
+ (x64_pmovzxwd val))
3978
+ (rule 1 (lower (has_type $I64X2 (uwiden_low val @ (value_type $I32X4))))
3979
+ (if-let $true (use_sse41))
3980
+ (x64_pmovzxdq val))
3981
+
3982
+ (rule (lower (has_type ty (uwiden_low val))) (lower_uwiden_low ty val))
3983
+
3984
+ ;; Interleave an all-zero register with the low lanes to produce zero-extended
3985
+ ;; results.
3986
+ (decl lower_uwiden_low (Type Xmm) Xmm)
3987
+ (rule (lower_uwiden_low $I16X8 val) (x64_punpcklbw val (xmm_zero $I8X16)))
3988
+ (rule (lower_uwiden_low $I32X4 val) (x64_punpcklwd val (xmm_zero $I8X16)))
3989
+ (rule (lower_uwiden_low $I64X2 val) (x64_unpcklps val (xmm_zero $F32X4)))
3990
+
3991
+ ;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3992
+
3993
+ ;; Same as `uwiden_high`, but interleaving high lanes instead.
3994
+ ;;
3995
+ ;; Note that according to `llvm-mca` at least these instructions are faster
3996
+ ;; than using `pmovzx*` in terms of cycles, even if SSE4.1 is available.
3997
+ (rule (lower (has_type $I16X8 (uwiden_high val @ (value_type $I8X16))))
3998
+ (x64_punpckhbw val (xmm_zero $I8X16)))
3999
+ (rule (lower (has_type $I32X4 (uwiden_high val @ (value_type $I16X8))))
4000
+ (x64_punpckhwd val (xmm_zero $I8X16)))
4001
+ (rule (lower (has_type $I64X2 (uwiden_high val @ (value_type $I32X4))))
4002
+ (x64_unpckhps val (xmm_zero $F32X4)))
4003
+
4004
+ ;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4005
+
4006
+ (rule (lower (has_type $I8X16 (snarrow a @ (value_type $I16X8) b)))
4007
+ (x64_packsswb a b))
4008
+
4009
+ (rule (lower (has_type $I16X8 (snarrow a @ (value_type $I32X4) b)))
4010
+ (x64_packssdw a b))
4011
+
4012
+ ;; We're missing a `snarrow` case for $I64X2
4013
+ ;; https://github.com/bytecodealliance/wasmtime/issues/4734
4014
+
4015
+ ;; This rule is a special case for handling the translation of the wasm op
4016
+ ;; `i32x4.trunc_sat_f64x2_s_zero`. It can be removed once we have an
4017
+ ;; implementation of `snarrow` for `I64X2`.
4018
+ (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (fcvt_to_sint_sat val))
4019
+ (vconst (u128_from_constant 0)))))
4020
+ (let ((a Xmm val)
4021
+
4022
+ ;; y = i32x4.trunc_sat_f64x2_s_zero(x) is lowered to:
4023
+ ;; MOVE xmm_tmp, xmm_x
4024
+ ;; CMPEQPD xmm_tmp, xmm_x
4025
+ ;; MOVE xmm_y, xmm_x
4026
+ ;; ANDPS xmm_tmp, [wasm_f64x2_splat(2147483647.0)]
4027
+ ;; MINPD xmm_y, xmm_tmp
4028
+ ;; CVTTPD2DQ xmm_y, xmm_y
4029
+
4030
+ (tmp1 Xmm (x64_cmppd a a (FcmpImm.Equal)))
4031
+
4032
+ ;; 2147483647.0 is equivalent to 0x41DFFFFFFFC00000
4033
+ (umax_mask XmmMem (emit_u128_le_const 0x41DFFFFFFFC00000_41DFFFFFFFC00000))
4034
+
4035
+ ;; ANDPD xmm_y, [wasm_f64x2_splat(2147483647.0)]
4036
+ (tmp1 Xmm (x64_andps tmp1 umax_mask))
4037
+ (dst Xmm (x64_minpd a tmp1)))
4038
+ (x64_cvttpd2dq dst)))
4039
+
4040
+ ;; This rule is a special case for handling the translation of the wasm op
4041
+ ;; `i32x4.relaxed_trunc_f64x2_s_zero`.
4042
+ (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (x86_cvtt2dq val))
4043
+ (vconst (u128_from_constant 0)))))
4044
+ (x64_cvttpd2dq val))
4045
+
4046
+ ;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4047
+
4048
+ (rule (lower (has_type $I8X16 (unarrow a @ (value_type $I16X8) b)))
4049
+ (x64_packuswb a b))
4050
+
4051
+ (rule 1 (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
4052
+ (if-let $true (use_sse41))
4053
+ (x64_packusdw a b))
4054
+
4055
+ ;; For each input `a` and `b` take the four 32-bit lanes and compress them to
4056
+ ;; the low 64-bits of the vector as four 16-bit lanes. Then these are woven
4057
+ ;; into one final vector with a `punpcklqdq`.
4058
+ ;;
4059
+ ;; If this is performance sensitive then it's probably best to upgrade the CPU
4060
+ ;; to get the above single-instruction lowering.
4061
+ (rule (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
4062
+ (let (
4063
+ (a Xmm (unarrow_i32x4_lanes_to_low_u16_lanes a))
4064
+ (b Xmm (unarrow_i32x4_lanes_to_low_u16_lanes b))
4065
+ )
4066
+ (x64_punpcklqdq a b)))
4067
+
4068
+ (decl unarrow_i32x4_lanes_to_low_u16_lanes (Xmm) Xmm)
4069
+ (rule (unarrow_i32x4_lanes_to_low_u16_lanes val)
4070
+ (let (
4071
+ ;; First convert all negative values in `val` to zero lanes.
4072
+ (val_gt_zero Xmm (x64_pcmpgtd val (xmm_zero $I32X4)))
4073
+ (val Xmm (x64_pand val val_gt_zero))
4074
+
4075
+ ;; Next clamp all larger-than-u16-max lanes to u16::MAX.
4076
+ (max Xmm (x64_movdqu_load (emit_u128_le_const 0x0000ffff_0000ffff_0000ffff_0000ffff)))
4077
+ (cmp Xmm (x64_pcmpgtd max val))
4078
+ (valid_lanes Xmm (x64_pand val cmp))
4079
+ (clamped_lanes Xmm (x64_pandn cmp max))
4080
+ (val Xmm (x64_por valid_lanes clamped_lanes))
4081
+
4082
+ ;; Within each 64-bit half of the 32x4 vector move the first 16 bits
4083
+ ;; and the third 16 bits to the bottom of the half. Afterwards
4084
+ ;; for the 32x4 vector move the first and third lanes to the bottom
4085
+ ;; lanes, which finishes up the conversion here as all the lanes
4086
+ ;; are now converted to 16-bit values in the low 4 lanes.
4087
+ (val Xmm (x64_pshuflw val 0b00_00_10_00))
4088
+ (val Xmm (x64_pshufhw val 0b00_00_10_00))
4089
+ )
4090
+ (x64_pshufd val 0b00_00_10_00)))
4091
+
4092
+
4093
+ ;; We're missing a `unarrow` case for $I64X2
4094
+ ;; https://github.com/bytecodealliance/wasmtime/issues/4734
4095
+
4096
+ ;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4097
+
4098
+ (rule -3 (lower (has_type (is_gpr_type (fits_in_64 ty)) (bitcast _ src @ (value_type (is_xmm_type _)))))
4099
+ (bitcast_xmm_to_gpr (ty_bits ty) src))
4100
+
4101
+ (rule -2 (lower (has_type (is_xmm_type (fits_in_64 ty)) (bitcast _ src @ (value_type (is_gpr_type _)))))
4102
+ (bitcast_gpr_to_xmm (ty_bits ty) src))
4103
+
4104
+ (rule -1 (lower (has_type $I128 (bitcast _ src @ (value_type (is_xmm_type _)))))
4105
+ (bitcast_xmm_to_gprs src))
4106
+
4107
+ (rule 0 (lower (has_type (is_xmm_type _) (bitcast _ src @ (value_type $I128))))
4108
+ (bitcast_gprs_to_xmm src))
4109
+
4110
+ ;; Bitcast between types residing in GPR registers is a no-op.
4111
+ (rule 1 (lower (has_type (is_gpr_type _)
4112
+ (bitcast _ x @ (value_type (is_gpr_type _)))))
4113
+ x)
4114
+
4115
+ ;; Bitcast between types residing in XMM registers is a no-op.
4116
+ (rule 3 (lower (has_type (is_xmm_type _)
4117
+ (bitcast _ x @ (value_type (is_xmm_type _)))))
4118
+ x)
4119
+
4120
+ ;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4121
+
4122
+ (rule (lower (has_type $F32 (fcopysign a @ (value_type $F32) b)))
4123
+ (let ((sign_bit Xmm (imm $F32 0x80000000)))
4124
+ (x64_orps
4125
+ (x64_andnps sign_bit a)
4126
+ (x64_andps sign_bit b))))
4127
+
4128
+ (rule (lower (has_type $F64 (fcopysign a @ (value_type $F64) b)))
4129
+ (let ((sign_bit Xmm (imm $F64 0x8000000000000000)))
4130
+ (x64_orpd
4131
+ (x64_andnpd sign_bit a)
4132
+ (x64_andpd sign_bit b))))
4133
+
4134
+ ;; Helper for the `ceil`/`floor`/`nearest`/`trunc` instructions ;;;;;;;;;;;;;;;;
4135
+
4136
+ ;; Emits either a `round{ss,sd,ps,pd}` instruction, as appropriate, or generates
4137
+ ;; the appropriate libcall and sequence to call that.
4138
+ (decl x64_round (Type RegMem RoundImm) Xmm)
4139
+ (rule 1 (x64_round $F32 a imm)
4140
+ (if-let $true (use_sse41))
4141
+ (x64_roundss a imm))
4142
+ (rule 1 (x64_round $F64 a imm)
4143
+ (if-let $true (use_sse41))
4144
+ (x64_roundsd a imm))
4145
+ (rule 1 (x64_round $F32X4 a imm)
4146
+ (if-let $true (use_sse41))
4147
+ (x64_roundps a imm))
4148
+ (rule 1 (x64_round $F64X2 a imm)
4149
+ (if-let $true (use_sse41))
4150
+ (x64_roundpd a imm))
4151
+
4152
+ (rule (x64_round $F32 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F32 imm) a))
4153
+ (rule (x64_round $F64 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F64 imm) a))
4154
+ (rule (x64_round $F32X4 (RegMem.Reg a) imm)
4155
+ (let (
4156
+ (libcall LibCall (round_libcall $F32 imm))
4157
+ (result Xmm (libcall_1 libcall a))
4158
+ (a1 Xmm (libcall_1 libcall (x64_pshufd a 1)))
4159
+ (result Xmm (f32x4_insertlane result a1 1))
4160
+ (a2 Xmm (libcall_1 libcall (x64_pshufd a 2)))
4161
+ (result Xmm (f32x4_insertlane result a2 2))
4162
+ (a3 Xmm (libcall_1 libcall (x64_pshufd a 3)))
4163
+ (result Xmm (f32x4_insertlane result a3 3))
4164
+ )
4165
+ result))
4166
+ (rule (x64_round $F64X2 (RegMem.Reg a) imm)
4167
+ (let (
4168
+ (libcall LibCall (round_libcall $F64 imm))
4169
+ (result Xmm (libcall_1 libcall a))
4170
+ (a1 Xmm (libcall_1 libcall (x64_pshufd a 0b00_00_11_10)))
4171
+ )
4172
+ (x64_movlhps result a1)))
4173
+ (rule (x64_round ty (RegMem.Mem addr) imm)
4174
+ (x64_round ty (RegMem.Reg (x64_load ty addr (ExtKind.ZeroExtend))) imm))
4175
+
4176
+ (decl round_libcall (Type RoundImm) LibCall)
4177
+ (rule (round_libcall $F32 (RoundImm.RoundUp)) (LibCall.CeilF32))
4178
+ (rule (round_libcall $F64 (RoundImm.RoundUp)) (LibCall.CeilF64))
4179
+ (rule (round_libcall $F32 (RoundImm.RoundDown)) (LibCall.FloorF32))
4180
+ (rule (round_libcall $F64 (RoundImm.RoundDown)) (LibCall.FloorF64))
4181
+ (rule (round_libcall $F32 (RoundImm.RoundNearest)) (LibCall.NearestF32))
4182
+ (rule (round_libcall $F64 (RoundImm.RoundNearest)) (LibCall.NearestF64))
4183
+ (rule (round_libcall $F32 (RoundImm.RoundZero)) (LibCall.TruncF32))
4184
+ (rule (round_libcall $F64 (RoundImm.RoundZero)) (LibCall.TruncF64))
4185
+
4186
+ ;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4187
+
4188
+ (rule (lower (ceil a @ (value_type ty)))
4189
+ (x64_round ty a (RoundImm.RoundUp)))
4190
+
4191
+ ;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4192
+
4193
+ (rule (lower (floor a @ (value_type ty)))
4194
+ (x64_round ty a (RoundImm.RoundDown)))
4195
+
4196
+ ;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4197
+
4198
+ (rule (lower (nearest a @ (value_type ty)))
4199
+ (x64_round ty a (RoundImm.RoundNearest)))
4200
+
4201
+ ;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4202
+
4203
+ (rule (lower (trunc a @ (value_type ty)))
4204
+ (x64_round ty a (RoundImm.RoundZero)))
4205
+
4206
+ ;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4207
+
4208
+ (rule (lower (stack_addr stack_slot offset))
4209
+ (stack_addr_impl stack_slot offset))
4210
+
4211
+ ;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4212
+
4213
+ ;; NB: a `RegMem` divisor, while allowed in the instruction encoding, isn't
4214
+ ;; used right now to prevent a possibly-trapping load getting folded into the
4215
+ ;; `div` instruction. Ideally non-trapping loads would get folded, however, or
4216
+ ;; alternatively Wasmtime/Cranelift would grow support for multiple traps on
4217
+ ;; a single opcode and the signal kind would differentiate at runtime.
4218
+
4219
+ ;; The inputs to the `div` instruction are different for 8-bit division so
4220
+ ;; it needs a special case here since the instruction being crafted has a
4221
+ ;; different shape.
4222
+ (rule 2 (lower (udiv a @ (value_type $I8) b))
4223
+ (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
4224
+ (put_in_gpr b)
4225
+ (DivSignedness.Unsigned)
4226
+ (TrapCode.IntegerDivisionByZero)))
4227
+
4228
+ ;; 16-to-64-bit division is all done with a similar instruction and the only
4229
+ ;; tricky requirement here is that when div traps are disallowed the divisor
4230
+ ;; must not be zero.
4231
+ (rule 1 (lower (udiv a @ (value_type (fits_in_64 ty)) b))
4232
+ (x64_div_quotient a
4233
+ (imm $I64 0)
4234
+ (put_in_gpr b)
4235
+ (raw_operand_size_of_type ty)
4236
+ (DivSignedness.Unsigned)
4237
+ (TrapCode.IntegerDivisionByZero)))
4238
+
4239
+ ;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4240
+
4241
+ (rule 2 (lower (sdiv a @ (value_type $I8) b))
4242
+ (x64_div8 (x64_sign_extend_data a (OperandSize.Size8))
4243
+ (nonzero_sdiv_divisor $I8 b)
4244
+ (DivSignedness.Signed)
4245
+ (TrapCode.IntegerOverflow)))
4246
+
4247
+ (rule 1 (lower (sdiv a @ (value_type (fits_in_64 ty)) b))
4248
+ (let (
4249
+ (a Gpr a)
4250
+ (size OperandSize (raw_operand_size_of_type ty))
4251
+ )
4252
+ (x64_div_quotient a
4253
+ (x64_sign_extend_data a size)
4254
+ (nonzero_sdiv_divisor ty b)
4255
+ size
4256
+ (DivSignedness.Signed)
4257
+ (TrapCode.IntegerOverflow))))
4258
+
4259
+ ;; Checks to make sure that the input `Value` is a non-zero value for `sdiv`.
4260
+ ;;
4261
+ ;; This is required to differentiate the divide-by-zero trap from the
4262
+ ;; integer-overflow trap, the two trapping conditions of signed division.
4263
+ (decl nonzero_sdiv_divisor (Type Value) Reg)
4264
+ (rule 1 (nonzero_sdiv_divisor ty (iconst imm))
4265
+ (if-let n (safe_divisor_from_imm64 ty imm))
4266
+ (imm ty n))
4267
+ (rule 0 (nonzero_sdiv_divisor ty val)
4268
+ (let (
4269
+ (val Reg val)
4270
+ (_ InstOutput (side_effect (with_flags_side_effect
4271
+ (x64_test (raw_operand_size_of_type ty) val val)
4272
+ (trap_if (CC.Z) (TrapCode.IntegerDivisionByZero)))))
4273
+ )
4274
+ val))
4275
+
4276
+ ;; Rules for `urem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4277
+
4278
+ ;; The remainder is in AH, so take the result of the division and right-shift
4279
+ ;; by 8.
4280
+ (rule 2 (lower (urem a @ (value_type $I8) b))
4281
+ (let (
4282
+ (result Gpr (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
4283
+ (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
4284
+ (DivSignedness.Unsigned)
4285
+ (TrapCode.IntegerDivisionByZero)))
4286
+ )
4287
+ (x64_shr $I64 result (Imm8Reg.Imm8 8))))
4288
+
4289
+ (rule 1 (lower (urem a @ (value_type (fits_in_64 ty)) b))
4290
+ (x64_div_remainder a
4291
+ (imm $I64 0)
4292
+ (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
4293
+ (raw_operand_size_of_type ty)
4294
+ (DivSignedness.Unsigned)
4295
+ (TrapCode.IntegerDivisionByZero)))
4296
+
4297
+ ;; Rules for `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4298
+
4299
+ ;; Special-cases first for constant `srem` where the checks for 0 and -1 aren't
4300
+ ;; applicable.
4301
+ ;;
4302
+ ;; Note that like `urem` for i8 types the result is in AH so to get the result
4303
+ ;; it's right-shifted down.
4304
+ (rule 3 (lower (srem a @ (value_type $I8) (iconst imm)))
4305
+ (if-let n (safe_divisor_from_imm64 $I8 imm))
4306
+ (let (
4307
+ (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
4308
+ (result Gpr (x64_div8 a (imm $I8 n) (DivSignedness.Signed) (TrapCode.IntegerDivisionByZero)))
4309
+ )
4310
+ (x64_shr $I64 result (Imm8Reg.Imm8 8))))
4311
+
4312
+ ;; Same as the above rule but for 16-to-64 bit types.
4313
+ (rule 2 (lower (srem a @ (value_type ty) (iconst imm)))
4314
+ (if-let n (safe_divisor_from_imm64 ty imm))
4315
+ (let (
4316
+ (a Gpr a)
4317
+ (size OperandSize (raw_operand_size_of_type ty))
4318
+ )
4319
+ (x64_div_remainder a
4320
+ (x64_sign_extend_data a size)
4321
+ (imm ty n)
4322
+ size
4323
+ (DivSignedness.Signed)
4324
+ (TrapCode.IntegerDivisionByZero))))
4325
+
4326
+ (rule 1 (lower (srem a @ (value_type $I8) b))
4327
+ (let (
4328
+ (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
4329
+ )
4330
+ (x64_shr $I64 (x64_checked_srem_seq8 a b) (Imm8Reg.Imm8 8))))
4331
+
4332
+ (rule (lower (srem a @ (value_type ty) b))
4333
+ (let (
4334
+ (a Gpr a)
4335
+ (size OperandSize (raw_operand_size_of_type ty))
4336
+ (hi Gpr (x64_sign_extend_data a size))
4337
+ (tmp ValueRegs (x64_checked_srem_seq size a hi b))
4338
+ )
4339
+ (value_regs_get tmp 1)))
4340
+
4341
+ ;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4342
+
4343
+ (rule 0 (lower (umulhi a @ (value_type $I8) b))
4344
+ (x64_shr $I16 (x64_mul8 $false a b) (imm8_to_imm8_gpr 8)))
4345
+
4346
+ (rule 1 (lower (umulhi a @ (value_type (ty_int_ref_16_to_64 ty)) b))
4347
+ (value_regs_get_gpr (x64_mul ty $false a b) 1))
4348
+
4349
+ ;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4350
+
4351
+ (rule 0 (lower (smulhi a @ (value_type $I8) b))
4352
+ (x64_sar $I16 (x64_mul8 $true a b) (imm8_to_imm8_gpr 8)))
4353
+
4354
+ (rule 1 (lower (smulhi a @ (value_type (ty_int_ref_16_to_64 ty)) b))
4355
+ (value_regs_get_gpr (x64_mul ty $true a b) 1))
4356
+
4357
+ ;; Rules for `get_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4358
+
4359
+ (rule (lower (get_pinned_reg))
4360
+ (read_pinned_gpr))
4361
+
4362
+ ;; Rules for `set_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4363
+
4364
+ (rule (lower (set_pinned_reg a @ (value_type ty)))
4365
+ (side_effect (write_pinned_gpr a)))
4366
+
4367
+ ;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4368
+
4369
+ (rule (lower (has_type ty (vconst const)))
4370
+ ;; TODO use Inst::gen_constant() instead.
4371
+ (x64_xmm_load_const ty (const_to_vconst const)))
4372
+
4373
+ ;; Special cases for known constant patterns to skip a 16-byte load.
4374
+ (rule 1 (lower (has_type ty (vconst (u128_from_constant 0)))) (xmm_zero ty))
4375
+ (rule 1 (lower (has_type ty (vconst (u128_from_constant -1)))) (vector_all_ones))
4376
+
4377
+ ;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4378
+
4379
+ ;; Special case for `pblendw` which takes an 8-bit immediate where each bit
4380
+ ;; indicates which lane of the two operands is chosen for the output. A bit of
4381
+ ;; 0 chooses the corresponding 16-it lane from `a` and a bit of 1 chooses the
4382
+ ;; corresponding 16-bit lane from `b`.
4383
+ (rule 14 (lower (shuffle a b (pblendw_imm n)))
4384
+ (if-let $true (use_sse41))
4385
+ (x64_pblendw a b n))
4386
+ (decl pblendw_imm (u8) Immediate)
4387
+ (extern extractor pblendw_imm pblendw_imm)
4388
+
4389
+ ;; When the shuffle looks like "concatenate `a` and `b` and shift right by n*8
4390
+ ;; bytes", that's a `palignr` instruction. Note that the order of operands are
4391
+ ;; swapped in the instruction here. The `palignr` instruction uses the second
4392
+ ;; operand as the low-order bytes and the first operand as high-order bytes,
4393
+ ;; so put `a` second.
4394
+ (rule 13 (lower (shuffle a b (palignr_imm_from_immediate n)))
4395
+ (if-let $true (use_ssse3))
4396
+ (x64_palignr b a n))
4397
+ (decl palignr_imm_from_immediate (u8) Immediate)
4398
+ (extern extractor palignr_imm_from_immediate palignr_imm_from_immediate)
4399
+
4400
+ ;; Special case the `pshuf{l,h}w` instruction which shuffles four 16-bit
4401
+ ;; integers within one value, preserving the other four 16-bit integers in that
4402
+ ;; value (either the high or low half). The complicated logic is in the
4403
+ ;; extractors here implemented in Rust and note that there's two cases for each
4404
+ ;; instruction here to match when either the first or second shuffle operand is
4405
+ ;; used.
4406
+ (rule 12 (lower (shuffle x y (pshuflw_lhs_imm imm)))
4407
+ (x64_pshuflw x imm))
4408
+ (rule 11 (lower (shuffle x y (pshuflw_rhs_imm imm)))
4409
+ (x64_pshuflw y imm))
4410
+ (rule 10 (lower (shuffle x y (pshufhw_lhs_imm imm)))
4411
+ (x64_pshufhw x imm))
4412
+ (rule 9 (lower (shuffle x y (pshufhw_rhs_imm imm)))
4413
+ (x64_pshufhw y imm))
4414
+
4415
+ (decl pshuflw_lhs_imm (u8) Immediate)
4416
+ (extern extractor pshuflw_lhs_imm pshuflw_lhs_imm)
4417
+ (decl pshuflw_rhs_imm (u8) Immediate)
4418
+ (extern extractor pshuflw_rhs_imm pshuflw_rhs_imm)
4419
+ (decl pshufhw_lhs_imm (u8) Immediate)
4420
+ (extern extractor pshufhw_lhs_imm pshufhw_lhs_imm)
4421
+ (decl pshufhw_rhs_imm (u8) Immediate)
4422
+ (extern extractor pshufhw_rhs_imm pshufhw_rhs_imm)
4423
+
4424
+ ;; Special case for the `pshufd` instruction which will permute 32-bit values
4425
+ ;; within a single register. This is only applicable if the `imm` specified
4426
+ ;; selects 32-bit values from either `x` or `y`, but not both. This means
4427
+ ;; there's one rule for selecting from `x` and another rule for selecting from
4428
+ ;; `y`.
4429
+ (rule 8 (lower (shuffle x y (pshufd_lhs_imm imm)))
4430
+ (x64_pshufd x imm))
4431
+ (rule 7 (lower (shuffle x y (pshufd_rhs_imm imm)))
4432
+ (x64_pshufd y imm))
4433
+
4434
+ (decl pshufd_lhs_imm (u8) Immediate)
4435
+ (extern extractor pshufd_lhs_imm pshufd_lhs_imm)
4436
+ (decl pshufd_rhs_imm (u8) Immediate)
4437
+ (extern extractor pshufd_rhs_imm pshufd_rhs_imm)
4438
+
4439
+ ;; Special case for i8-level interleaving of upper/low bytes.
4440
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f0f_1e0e_1d0d_1c0c_1b0b_1a0a_1909_1808)))
4441
+ (x64_punpckhbw a b))
4442
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x1707_1606_1505_1404_1303_1202_1101_1000)))
4443
+ (x64_punpcklbw a b))
4444
+
4445
+ ;; Special case for i16-level interleaving of upper/low bytes.
4446
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1d1c_0d0c_1b1a_0b0a_1918_0908)))
4447
+ (x64_punpckhwd a b))
4448
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716_0706_1514_0504_1312_0302_1110_0100)))
4449
+ (x64_punpcklwd a b))
4450
+
4451
+ ;; Special case for i32-level interleaving of upper/low bytes.
4452
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_1b1a1918_0b0a0908)))
4453
+ (x64_punpckhdq a b))
4454
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x17161514_07060504_13121110_03020100)))
4455
+ (x64_punpckldq a b))
4456
+
4457
+ ;; Special case for i64-level interleaving of upper/low bytes.
4458
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c1b1a1918_0f0e0d0c0b0a0908)))
4459
+ (x64_punpckhqdq a b))
4460
+ (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716151413121110_0706050403020100)))
4461
+ (x64_punpcklqdq a b))
4462
+
4463
+ ;; If the vector shift mask is all 0s then that means the first byte of the
4464
+ ;; first operand is broadcast to all bytes. Falling through would load an
4465
+ ;; all-zeros constant from a rip-relative location but it should be slightly
4466
+ ;; more efficient to execute the `pshufb` here-and-now with an xor'd-to-be-zero
4467
+ ;; register.
4468
+ (rule 6 (lower (shuffle a _ (u128_from_immediate 0)))
4469
+ (if-let $true (use_ssse3))
4470
+ (x64_pshufb a (xmm_zero $I8X16)))
4471
+
4472
+ ;; Special case for the `shufps` instruction which will select two 32-bit values
4473
+ ;; from the first operand and two 32-bit values from the second operand. Note
4474
+ ;; that there is a second case here as well for when the operands can be
4475
+ ;; swapped.
4476
+ ;;
4477
+ ;; Note that the priority of this instruction is currently lower than the above
4478
+ ;; special cases since `shufps` handles many of them and for now it's
4479
+ ;; hypothesized that the dedicated instructions are better than `shufps`.
4480
+ ;; Someone with more knowledge about x86 timings should perhaps reorder the
4481
+ ;; rules here eventually though.
4482
+ (rule 5 (lower (shuffle x y (shufps_imm imm)))
4483
+ (x64_shufps x y imm))
4484
+ (rule 4 (lower (shuffle x y (shufps_rev_imm imm)))
4485
+ (x64_shufps y x imm))
4486
+
4487
+ (decl shufps_imm(u8) Immediate)
4488
+ (extern extractor shufps_imm shufps_imm)
4489
+ (decl shufps_rev_imm(u8) Immediate)
4490
+ (extern extractor shufps_rev_imm shufps_rev_imm)
4491
+
4492
+
4493
+ ;; If `lhs` and `rhs` are the same we can use a single PSHUFB to shuffle the XMM
4494
+ ;; register. We statically build `constructed_mask` to zero out any unknown lane
4495
+ ;; indices (may not be completely necessary: verification could fail incorrect
4496
+ ;; mask values) and fix the indexes to all point to the `dst` vector.
4497
+ (rule 3 (lower (shuffle a a (vec_mask_from_immediate mask)))
4498
+ (if-let $true (use_ssse3))
4499
+ (x64_pshufb a (shuffle_0_31_mask mask)))
4500
+
4501
+ ;; For the case where the shuffle mask contains out-of-bounds values (values
4502
+ ;; greater than 31) we must mask off those resulting values in the result of
4503
+ ;; `vpermi2b`.
4504
+ (rule 2 (lower (shuffle a b (vec_mask_from_immediate (perm_from_mask_with_zeros mask zeros))))
4505
+ (if-let $true (use_avx512vl))
4506
+ (if-let $true (use_avx512vbmi))
4507
+ (x64_andps (x64_vpermi2b (x64_xmm_load_const $I8X16 mask) a b) zeros))
4508
+
4509
+ ;; However, if the shuffle mask contains no out-of-bounds values, we can use
4510
+ ;; `vpermi2b` without any masking.
4511
+ (rule 1 (lower (shuffle a b (vec_mask_from_immediate mask)))
4512
+ (if-let $true (use_avx512vl))
4513
+ (if-let $true (use_avx512vbmi))
4514
+ (x64_vpermi2b (x64_xmm_load_const $I8X16 (perm_from_mask mask)) a b))
4515
+
4516
+ ;; If `lhs` and `rhs` are different, we must shuffle each separately and then OR
4517
+ ;; them together. This is necessary due to PSHUFB semantics. As in the case
4518
+ ;; above, we build the `constructed_mask` for each case statically.
4519
+ (rule (lower (shuffle a b (vec_mask_from_immediate mask)))
4520
+ (x64_por
4521
+ (lower_pshufb a (shuffle_0_15_mask mask))
4522
+ (lower_pshufb b (shuffle_16_31_mask mask))))
4523
+
4524
+ ;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4525
+
4526
+ ;; SIMD swizzle; the following inefficient implementation is due to the Wasm
4527
+ ;; SIMD spec requiring mask indexes greater than 15 to have the same semantics
4528
+ ;; as a 0 index. For the spec discussion, see
4529
+ ;; https://github.com/WebAssembly/simd/issues/93. The CLIF semantics match the
4530
+ ;; Wasm SIMD semantics for this instruction. The instruction format maps to
4531
+ ;; variables like: %dst = swizzle %src, %mask
4532
+ (rule (lower (swizzle src mask))
4533
+ (let ((mask Xmm (x64_paddusb mask (emit_u128_le_const 0x70707070707070707070707070707070))))
4534
+ (lower_pshufb src mask)))
4535
+
4536
+ ;; Rules for `x86_pshufb` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4537
+
4538
+ (rule (lower (x86_pshufb src mask))
4539
+ (if-let $true (use_ssse3))
4540
+ (x64_pshufb src mask))
4541
+
4542
+ ;; A helper function to generate either the `pshufb` instruction or a libcall to
4543
+ ;; the `X86Pshufb` libcall. Note that the libcall is not exactly the most
4544
+ ;; performant thing in the world so this is primarily here for completeness
4545
+ ;; of lowerings on all x86 cpus but if rules are ideally gated on the presence
4546
+ ;; of SSSE3 to use the `pshufb` instruction itself.
4547
+ (decl lower_pshufb (Xmm RegMem) Xmm)
4548
+ (rule 1 (lower_pshufb src mask)
4549
+ (if-let $true (use_ssse3))
4550
+ (x64_pshufb src mask))
4551
+ (rule (lower_pshufb src (RegMem.Reg mask))
4552
+ (libcall_2 (LibCall.X86Pshufb) src mask))
4553
+ (rule (lower_pshufb src (RegMem.Mem addr))
4554
+ (lower_pshufb src (x64_movdqu_load addr)))
4555
+
4556
+ ;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4557
+
4558
+ ;; Remove the extractlane instruction, leaving the float where it is. The upper
4559
+ ;; bits will remain unchanged; for correctness, this relies on Cranelift type
4560
+ ;; checking to avoid using those bits.
4561
+ (rule 3 (lower (has_type (ty_scalar_float _) (extractlane val 0)))
4562
+ val)
4563
+
4564
+ ;; `f32x4.extract_lane N` where `N != 0`
4565
+ (rule 1 (lower (extractlane val @ (value_type $F32X4) (u8_from_uimm8 lane)))
4566
+ (x64_pshufd val lane))
4567
+
4568
+ ;; `f64x2.extract_lane N` where `N != 0` (aka N == 1)
4569
+ (rule (lower (extractlane val @ (value_type $F64X2) 1))
4570
+ (x64_pshufd val 0b11_10_11_10))
4571
+
4572
+ ;; `i8x16.extract_lane N`
4573
+ ;;
4574
+ ;; Note that without SSE4.1 a 16-bit lane extraction is performed and then
4575
+ ;; the result is updated if the desired index is either odd or even.
4576
+ (rule 2 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4577
+ (if-let $true (use_sse41))
4578
+ (x64_pextrb val lane))
4579
+ ;; extracting an odd lane has an extra shift-right
4580
+ (rule 1 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4581
+ (if-let 1 (u8_and lane 1))
4582
+ (x64_shr $I16 (x64_pextrw val (u8_shr lane 1)) (Imm8Reg.Imm8 8)))
4583
+ ;; Extracting an even lane already has the desired lane in the lower bits. Note
4584
+ ;; that having arbitrary upper bits in the returned register should be ok since
4585
+ ;; all operators on the resulting `i8` type should work correctly regardless of
4586
+ ;; the bits in the rest of the register.
4587
+ (rule (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4588
+ (if-let 0 (u8_and lane 1))
4589
+ (x64_pextrw val (u8_shr lane 1)))
4590
+
4591
+ ;; `i16x8.extract_lane N`
4592
+ (rule (lower (extractlane val @ (value_type ty @ $I16X8) (u8_from_uimm8 lane)))
4593
+ (x64_pextrw val lane))
4594
+
4595
+ ;; `i32x4.extract_lane N`
4596
+ (rule 2 (lower (extractlane val @ (value_type ty @ $I32X4) (u8_from_uimm8 lane)))
4597
+ (if-let $true (use_sse41))
4598
+ (x64_pextrd val lane))
4599
+ (rule 1 (lower (extractlane val @ (value_type $I32X4) 0))
4600
+ (x64_movd_to_gpr val))
4601
+ (rule (lower (extractlane val @ (value_type $I32X4) (u8_from_uimm8 n)))
4602
+ (x64_movd_to_gpr (x64_pshufd val n)))
4603
+
4604
+ ;; `i64x2.extract_lane N`
4605
+ (rule 1 (lower (extractlane val @ (value_type $I64X2) (u8_from_uimm8 lane)))
4606
+ (if-let $true (use_sse41))
4607
+ (x64_pextrq val lane))
4608
+ (rule (lower (extractlane val @ (value_type $I64X2) 0))
4609
+ (x64_movq_to_gpr val))
4610
+ (rule (lower (extractlane val @ (value_type $I64X2) 1))
4611
+ (x64_movq_to_gpr (x64_pshufd val 0b00_00_11_10)))
4612
+
4613
+ ;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4614
+
4615
+ ;; Case 1: when moving a scalar float, we simply move from one XMM register
4616
+ ;; to another, expecting the register allocator to elide this. Here we
4617
+ ;; assume that the upper bits of a scalar float have not been munged with
4618
+ ;; (the same assumption the old backend makes).
4619
+ (rule 1 (lower (scalar_to_vector src @ (value_type (ty_scalar_float _))))
4620
+ src)
4621
+
4622
+ ;; Case 2: when moving a scalar value of any other type, use MOVD to zero
4623
+ ;; the upper lanes.
4624
+ (rule (lower (scalar_to_vector src @ (value_type ty)))
4625
+ (bitcast_gpr_to_xmm (ty_bits ty) src))
4626
+
4627
+ ;; Case 3: when presented with `load + scalar_to_vector`, coalesce into a single
4628
+ ;; MOVSS/MOVSD instruction.
4629
+ (rule 2 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_32 _)))))
4630
+ (x64_movss_load src))
4631
+ (rule 3 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_64 _)))))
4632
+ (x64_movsd_load src))
4633
+
4634
+ ;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4635
+
4636
+ ;; For all the splat rules below one of the goals is that splatting a value
4637
+ ;; doesn't end up accidentally depending on the previous value in a register.
4638
+ ;; This means that instructions are chosen to avoid false dependencies where
4639
+ ;; new values are created fresh or otherwise overwrite previous register
4640
+ ;; contents where possible.
4641
+ ;;
4642
+ ;; Additionally splats are specialized to special-case load-and-splat which
4643
+ ;; has a number of micro-optimizations available.
4644
+
4645
+ ;; i8x16 splats: use `vpbroadcastb` on AVX2 and otherwise `pshufb` broadcasts
4646
+ ;; with a mask of zero which is calculated with an xor-against-itself register.
4647
+ (rule 0 (lower (has_type $I8X16 (splat src)))
4648
+ (let ((src Xmm (x64_movd_to_xmm src)))
4649
+ (x64_pshufd (x64_pshuflw (x64_punpcklbw src src) 0) 0)))
4650
+ (rule 1 (lower (has_type $I8X16 (splat src)))
4651
+ (if-let $true (use_ssse3))
4652
+ (x64_pshufb (bitcast_gpr_to_xmm 32 src) (xmm_zero $I8X16)))
4653
+ (rule 2 (lower (has_type $I8X16 (splat src)))
4654
+ (if-let $true (use_avx2))
4655
+ (x64_vpbroadcastb (bitcast_gpr_to_xmm 32 src)))
4656
+ (rule 3 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4657
+ (if-let $true (use_sse41))
4658
+ (if-let $true (use_ssse3))
4659
+ (x64_pshufb (x64_pinsrb (xmm_uninit_value) addr 0) (xmm_zero $I8X16)))
4660
+ (rule 4 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4661
+ (if-let $true (use_avx2))
4662
+ (x64_vpbroadcastb addr))
4663
+
4664
+ ;; i16x8 splats: use `vpbroadcastw` on AVX2 and otherwise a 16-bit value is
4665
+ ;; loaded into an xmm register, `pshuflw` broadcasts the low 16-bit lane
4666
+ ;; to the low four lanes, and `pshufd` broadcasts the low 32-bit lane (which
4667
+ ;; at that point is two of the 16-bit values we want to broadcast) to all the
4668
+ ;; lanes.
4669
+ (rule 0 (lower (has_type $I16X8 (splat src)))
4670
+ (x64_pshufd (x64_pshuflw (bitcast_gpr_to_xmm 32 src) 0) 0))
4671
+ (rule 1 (lower (has_type $I16X8 (splat src)))
4672
+ (if-let $true (use_avx2))
4673
+ (x64_vpbroadcastw (bitcast_gpr_to_xmm 32 src)))
4674
+ (rule 2 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4675
+ (x64_pshufd (x64_pshuflw (x64_pinsrw (xmm_uninit_value) addr 0) 0) 0))
4676
+ (rule 3 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4677
+ (if-let $true (use_avx2))
4678
+ (x64_vpbroadcastw addr))
4679
+
4680
+ ;; i32x4.splat - use `vpbroadcastd` on AVX2 and otherwise `pshufd` can be
4681
+ ;; used to broadcast the low lane to all other lanes.
4682
+ ;;
4683
+ ;; Note that sinkable-load cases come later
4684
+ (rule 0 (lower (has_type $I32X4 (splat src)))
4685
+ (x64_pshufd (bitcast_gpr_to_xmm 32 src) 0))
4686
+ (rule 1 (lower (has_type $I32X4 (splat src)))
4687
+ (if-let $true (use_avx2))
4688
+ (x64_vpbroadcastd (bitcast_gpr_to_xmm 32 src)))
4689
+
4690
+ ;; f32x4.splat - the source is already in an xmm register so `shufps` is all
4691
+ ;; that's necessary to complete the splat. This is specialized to `vbroadcastss`
4692
+ ;; on AVX2 to leverage that specific instruction for this operation.
4693
+ (rule 0 (lower (has_type $F32X4 (splat src)))
4694
+ (let ((tmp Xmm src))
4695
+ (x64_shufps src src 0)))
4696
+ (rule 1 (lower (has_type $F32X4 (splat src)))
4697
+ (if-let $true (use_avx2))
4698
+ (x64_vbroadcastss src))
4699
+
4700
+ ;; t32x4.splat of a load - use a `movss` to load into an xmm register and then
4701
+ ;; `shufps` broadcasts to the other lanes. Note that this is used for both i32
4702
+ ;; and f32 splats.
4703
+ ;;
4704
+ ;; With AVX the `vbroadcastss` instruction suits this purpose precisely. Note
4705
+ ;; that the memory-operand encoding of `vbroadcastss` is usable with AVX, but
4706
+ ;; the register-based encoding is only available with AVX2. With the
4707
+ ;; `sinkable_load` extractor this should be guaranteed to use the memory-based
4708
+ ;; encoding hence the `use_avx` test.
4709
+ (rule 5 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4710
+ (let ((tmp Xmm (x64_movss_load addr)))
4711
+ (x64_shufps tmp tmp 0)))
4712
+ (rule 6 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4713
+ (if-let $true (use_avx))
4714
+ (x64_vbroadcastss addr))
4715
+
4716
+ ;; t64x2.splat - use `pshufd` to broadcast the lower 64-bit lane to the upper
4717
+ ;; lane. A minor specialization for sinkable loads to avoid going through a gpr
4718
+ ;; for i64 splats is used as well when `movddup` is available.
4719
+ (rule 0 (lower (has_type $I64X2 (splat src)))
4720
+ (x64_pshufd (bitcast_gpr_to_xmm 64 src) 0b01_00_01_00))
4721
+ (rule 0 (lower (has_type $F64X2 (splat src)))
4722
+ (x64_pshufd src 0b01_00_01_00))
4723
+ (rule 6 (lower (has_type (multi_lane 64 2) (splat (sinkable_load addr))))
4724
+ (if-let $true (use_ssse3))
4725
+ (x64_movddup addr))
4726
+
4727
+ ;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4728
+
4729
+ (rule 1 (lower (vany_true val))
4730
+ (if-let $true (use_sse41))
4731
+ (let ((val Xmm val))
4732
+ (with_flags (x64_ptest val val) (x64_setcc (CC.NZ)))))
4733
+
4734
+ ;; Any nonzero byte in `val` means that any lane is true. Compare `val` with a
4735
+ ;; zeroed register and extract the high bits to a gpr mask. If the mask is
4736
+ ;; 0xffff then every byte was equal to zero, so test if the comparison is
4737
+ ;; not-equal or NZ.
4738
+ (rule (lower (vany_true val))
4739
+ (lower_icmp_bool (emit_vany_true val)))
4740
+
4741
+ (decl emit_vany_true (Value) IcmpCondResult)
4742
+ (rule (emit_vany_true val)
4743
+ (let (
4744
+ (any_byte_zero Xmm (x64_pcmpeqb val (xmm_zero $I8X16)))
4745
+ (mask Gpr (x64_pmovmskb (OperandSize.Size32) any_byte_zero))
4746
+ )
4747
+ (icmp_cond_result (x64_cmp_imm (OperandSize.Size32) mask 0xffff)
4748
+ (CC.NZ))))
4749
+
4750
+ ;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4751
+
4752
+ (rule (lower (vall_true val))
4753
+ (lower_icmp_bool (emit_vall_true val)))
4754
+
4755
+ (decl emit_vall_true (Value) IcmpCondResult)
4756
+ (rule 1 (emit_vall_true val @ (value_type ty))
4757
+ (if-let $true (use_sse41))
4758
+ (let ((src Xmm val)
4759
+ (zeros Xmm (xmm_zero ty))
4760
+ (cmp Xmm (x64_pcmpeq (vec_int_type ty) src zeros)))
4761
+ (icmp_cond_result (x64_ptest cmp cmp) (CC.Z))))
4762
+
4763
+ ;; Perform an appropriately-sized lane-wise comparison with zero. If the
4764
+ ;; result is all 0s then all of them are true because nothing was equal to
4765
+ ;; zero.
4766
+ (rule (emit_vall_true val @ (value_type ty))
4767
+ (let ((lanes_with_zero Xmm (x64_pcmpeq (vec_int_type ty) val (xmm_zero ty)))
4768
+ (mask Gpr (x64_pmovmskb (OperandSize.Size32) lanes_with_zero)))
4769
+ (icmp_cond_result (x64_test (OperandSize.Size32) mask mask)
4770
+ (CC.Z))))
4771
+
4772
+ ;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4773
+
4774
+ ;; The Intel specification allows using both 32-bit and 64-bit GPRs as
4775
+ ;; destination for the "move mask" instructions. This is controlled by the REX.R
4776
+ ;; bit: "In 64-bit mode, the instruction can access additional registers when
4777
+ ;; used with a REX.R prefix. The default operand size is 64-bit in 64-bit mode"
4778
+ ;; (PMOVMSKB in IA Software Development Manual, vol. 2). This being the case, we
4779
+ ;; will always clear REX.W since its use is unnecessary (`OperandSize` is used
4780
+ ;; for setting/clearing REX.W) as we need at most 16 bits of output for
4781
+ ;; `vhigh_bits`.
4782
+
4783
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 8 16))))
4784
+ (x64_pmovmskb (OperandSize.Size32) val))
4785
+
4786
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 32 4))))
4787
+ (x64_movmskps (OperandSize.Size32) val))
4788
+
4789
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 64 2))))
4790
+ (x64_movmskpd (OperandSize.Size32) val))
4791
+
4792
+ ;; There is no x86 instruction for extracting the high bit of 16-bit lanes so
4793
+ ;; here we:
4794
+ ;; - duplicate the 16-bit lanes of `src` into 8-bit lanes:
4795
+ ;; PACKSSWB([x1, x2, ...], [x1, x2, ...]) = [x1', x2', ..., x1', x2', ...]
4796
+ ;; - use PMOVMSKB to gather the high bits; now we have duplicates, though
4797
+ ;; - shift away the bottom 8 high bits to remove the duplicates.
4798
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 16 8))))
4799
+ (let ((src Xmm val)
4800
+ (tmp Xmm (x64_packsswb src src))
4801
+ (tmp Gpr (x64_pmovmskb (OperandSize.Size32) tmp)))
4802
+ (x64_shr $I64 tmp (Imm8Reg.Imm8 8))))
4803
+
4804
+ ;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4805
+
4806
+ (rule (lower (iconcat lo @ (value_type $I64) hi))
4807
+ (value_regs lo hi))
4808
+
4809
+ ;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4810
+
4811
+ (rule (lower (isplit val @ (value_type $I128)))
4812
+ (let ((regs ValueRegs val)
4813
+ (lo Reg (value_regs_get regs 0))
4814
+ (hi Reg (value_regs_get regs 1)))
4815
+ (output_pair lo hi)))
4816
+
4817
+ ;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4818
+
4819
+ (rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
4820
+ (elf_tls_get_addr name))
4821
+
4822
+ (rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
4823
+ (macho_tls_get_addr name))
4824
+
4825
+ (rule (lower (has_type (tls_model (TlsModel.Coff)) (tls_value (symbol_value_data name _ _))))
4826
+ (coff_tls_get_addr name))
4827
+
4828
+ ;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4829
+
4830
+ (rule 1 (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
4831
+ (if-let $true (use_ssse3))
4832
+ (let ((src1 Xmm qx)
4833
+ (src2 Xmm qy)
4834
+
4835
+ (mask XmmMem (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000))
4836
+ (dst Xmm (x64_pmulhrsw src1 src2))
4837
+ (cmp Xmm (x64_pcmpeqw dst mask)))
4838
+ (x64_pxor dst cmp)))
4839
+
4840
+ ;; This operation is defined in wasm as:
4841
+ ;;
4842
+ ;; S.SignedSaturate((x * y + 0x4000) >> 15)
4843
+ ;;
4844
+ ;; so perform all those operations here manually with a lack of the native
4845
+ ;; instruction.
4846
+ (rule (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
4847
+ (let (
4848
+ (qx Xmm qx)
4849
+ (qy Xmm qy)
4850
+ ;; Multiply `qx` and `qy` generating 32-bit intermediate results. The
4851
+ ;; 32-bit results have their low-halves stored in `mul_lsb` and the
4852
+ ;; high halves are stored in `mul_msb`. These are then shuffled into
4853
+ ;; `mul_lo` and `mul_hi` which represent the low 4 multiplications
4854
+ ;; and the upper 4 multiplications.
4855
+ (mul_lsb Xmm (x64_pmullw qx qy))
4856
+ (mul_msb Xmm (x64_pmulhw qx qy))
4857
+ (mul_lo Xmm (x64_punpcklwd mul_lsb mul_msb))
4858
+ (mul_hi Xmm (x64_punpckhwd mul_lsb mul_msb))
4859
+ ;; Add the 0x4000 constant to all multiplications
4860
+ (val Xmm (x64_movdqu_load (emit_u128_le_const 0x00004000_00004000_00004000_00004000)))
4861
+ (mul_lo Xmm (x64_paddd mul_lo val))
4862
+ (mul_hi Xmm (x64_paddd mul_hi val))
4863
+ ;; Perform the right-shift by 15 to all multiplications
4864
+ (lo Xmm (x64_psrad mul_lo (xmi_imm 15)))
4865
+ (hi Xmm (x64_psrad mul_hi (xmi_imm 15)))
4866
+ )
4867
+ ;; And finally perform a saturating 32-to-16-bit conversion.
4868
+ (x64_packssdw lo hi)))
4869
+
4870
+ ;; Rules for `x86_pmulhrsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4871
+
4872
+ (rule (lower (x86_pmulhrsw qx @ (value_type $I16X8) qy))
4873
+ (if-let $true (use_ssse3))
4874
+ (x64_pmulhrsw qx qy))
4875
+
4876
+ ;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4877
+
4878
+ ;; TODO: currently we only lower a special case of `uunarrow` needed to support
4879
+ ;; the translation of wasm's i32x4.trunc_sat_f64x2_u_zero operation.
4880
+ ;; https://github.com/bytecodealliance/wasmtime/issues/4791
4881
+ ;;
4882
+ ;; y = i32x4.trunc_sat_f64x2_u_zero(x) is lowered to:
4883
+ ;; MOVAPD xmm_y, xmm_x
4884
+ ;; XORPD xmm_tmp, xmm_tmp
4885
+ ;; MAXPD xmm_y, xmm_tmp
4886
+ ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4887
+ ;; ROUNDPD xmm_y, xmm_y, 0x0B
4888
+ ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4889
+ ;; SHUFPS xmm_y, xmm_xmp, 0x88
4890
+ (rule (lower (uunarrow (fcvt_to_uint_sat src @ (value_type $F64X2))
4891
+ (vconst (u128_from_constant 0))))
4892
+ (let ((src Xmm src)
4893
+
4894
+ ;; MOVAPD xmm_y, xmm_x
4895
+ ;; XORPD xmm_tmp, xmm_tmp
4896
+ (zeros Xmm (xmm_zero $F64X2))
4897
+ (dst Xmm (x64_maxpd src zeros))
4898
+
4899
+ ;; 4294967295.0 is equivalent to 0x41EFFFFFFFE00000
4900
+ (umax_mask XmmMem (emit_u128_le_const 0x41EFFFFFFFE00000_41EFFFFFFFE00000))
4901
+
4902
+ ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4903
+ (dst Xmm (x64_minpd dst umax_mask))
4904
+
4905
+ ;; ROUNDPD xmm_y, xmm_y, 0x0B
4906
+ (dst Xmm (x64_round $F64X2 dst (RoundImm.RoundZero)))
4907
+
4908
+ ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4909
+ (uint_mask XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000))
4910
+
4911
+ (dst Xmm (x64_addpd dst uint_mask)))
4912
+
4913
+ ;; SHUFPS xmm_y, xmm_xmp, 0x88
4914
+ (x64_shufps dst zeros 0x88)))
4915
+
4916
+ ;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4917
+
4918
+ (rule (lower (nop))
4919
+ (invalid_reg))