wasmtime 12.0.1 → 13.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2318) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +176 -221
  3. data/ext/Cargo.toml +6 -6
  4. data/ext/cargo-vendor/cap-net-ext-2.0.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cap-net-ext-2.0.0/COPYRIGHT +29 -0
  6. data/ext/cargo-vendor/cap-net-ext-2.0.0/Cargo.toml +38 -0
  7. data/ext/cargo-vendor/cap-net-ext-2.0.0/README.md +24 -0
  8. data/ext/cargo-vendor/cap-net-ext-2.0.0/src/lib.rs +771 -0
  9. data/ext/cargo-vendor/cranelift-bforest-0.100.0/.cargo-checksum.json +1 -0
  10. data/ext/cargo-vendor/cranelift-bforest-0.100.0/Cargo.toml +31 -0
  11. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/lib.rs +184 -0
  12. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/map.rs +922 -0
  13. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/pool.rs +219 -0
  14. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/set.rs +597 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.100.0/.cargo-checksum.json +1 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.100.0/Cargo.toml +164 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/binemit/mod.rs +141 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/binemit/stack_map.rs +155 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/bitset.rs +166 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/context.rs +372 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/incremental_cache.rs +256 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/atomic_rmw_op.rs +104 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/condcodes.rs +404 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/constant.rs +463 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/dfg.rs +1686 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/dynamic_type.rs +55 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/entities.rs +567 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/extfunc.rs +411 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/extname.rs +333 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/function.rs +475 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/globalvalue.rs +155 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/immediates.rs +1615 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/instructions.rs +1000 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/jumptable.rs +168 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/known_symbol.rs +47 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/libcall.rs +232 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/memflags.rs +279 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/mod.rs +106 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/sourceloc.rs +117 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/stackslot.rs +216 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/table.rs +40 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/trapcode.rs +144 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/types.rs +630 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/abi.rs +1573 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/args.rs +747 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/emit.rs +3911 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/emit_tests.rs +7951 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/mod.rs +3049 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst.isle +4173 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower/isle.rs +871 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower.isle +2889 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower.rs +132 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower_dynamic_neon.isle +98 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/call_conv.rs +119 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/abi.rs +981 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/args.rs +1900 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/emit.rs +3203 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/encode.rs +326 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/imms.rs +236 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/mod.rs +2162 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/vector.rs +1059 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst.isle +3092 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst_vector.isle +1887 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/lower/isle.rs +620 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/lower.isle +2119 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/abi.rs +949 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/inst/mod.rs +3430 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/inst.isle +5043 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/lower.isle +3982 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind/systemv.rs +272 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind/winx64.rs +334 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind.rs +182 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/abi.rs +1200 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/encoding/evex.rs +749 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/encoding/rex.rs +589 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/args.rs +2188 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/emit.rs +4300 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/emit_tests.rs +5474 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/mod.rs +2763 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst.isle +5110 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower/isle.rs +1096 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower.isle +4675 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower.rs +340 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isle_prelude.rs +899 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/legalizer/mod.rs +356 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/lib.rs +107 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/abi.rs +2644 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/buffer.rs +2362 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/isle.rs +846 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/mod.rs +553 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/reg.rs +556 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/vcode.rs +1646 -0
  93. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/bitops.isle +147 -0
  94. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/cprop.isle +200 -0
  95. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/extends.isle +34 -0
  96. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/icmp.isle +177 -0
  97. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/selects.isle +59 -0
  98. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/vector.isle +88 -0
  99. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/prelude.isle +603 -0
  100. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/prelude_lower.isle +1029 -0
  101. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/value_label.rs +32 -0
  102. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/verifier/mod.rs +1986 -0
  103. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/.cargo-checksum.json +1 -0
  104. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/Cargo.toml +26 -0
  105. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/constant_hash.rs +63 -0
  106. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/gen_inst.rs +1784 -0
  107. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/shared/instructions.rs +3810 -0
  108. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/.cargo-checksum.json +1 -0
  109. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/Cargo.toml +22 -0
  110. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/src/lib.rs +12 -0
  111. data/ext/cargo-vendor/cranelift-control-0.100.0/.cargo-checksum.json +1 -0
  112. data/ext/cargo-vendor/cranelift-control-0.100.0/Cargo.toml +30 -0
  113. data/ext/cargo-vendor/cranelift-entity-0.100.0/.cargo-checksum.json +1 -0
  114. data/ext/cargo-vendor/cranelift-entity-0.100.0/Cargo.toml +41 -0
  115. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/lib.rs +316 -0
  116. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/list.rs +955 -0
  117. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/packed_option.rs +171 -0
  118. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/primary.rs +456 -0
  119. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/sparse.rs +368 -0
  120. data/ext/cargo-vendor/cranelift-frontend-0.100.0/.cargo-checksum.json +1 -0
  121. data/ext/cargo-vendor/cranelift-frontend-0.100.0/Cargo.toml +54 -0
  122. data/ext/cargo-vendor/cranelift-frontend-0.100.0/src/lib.rs +191 -0
  123. data/ext/cargo-vendor/cranelift-isle-0.100.0/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/cranelift-isle-0.100.0/Cargo.toml +37 -0
  125. data/ext/cargo-vendor/cranelift-native-0.100.0/.cargo-checksum.json +1 -0
  126. data/ext/cargo-vendor/cranelift-native-0.100.0/Cargo.toml +38 -0
  127. data/ext/cargo-vendor/cranelift-native-0.100.0/src/lib.rs +190 -0
  128. data/ext/cargo-vendor/cranelift-wasm-0.100.0/.cargo-checksum.json +1 -0
  129. data/ext/cargo-vendor/cranelift-wasm-0.100.0/Cargo.toml +92 -0
  130. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/code_translator.rs +3641 -0
  131. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/environ/dummy.rs +942 -0
  132. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/environ/spec.rs +949 -0
  133. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/func_translator.rs +432 -0
  134. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/heap.rs +108 -0
  135. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/lib.rs +64 -0
  136. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/sections_translator.rs +408 -0
  137. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/translation_utils.rs +97 -0
  138. data/ext/cargo-vendor/fallible-iterator-0.3.0/.cargo-checksum.json +1 -0
  139. data/ext/cargo-vendor/fallible-iterator-0.3.0/CHANGELOG.md +39 -0
  140. data/ext/cargo-vendor/fallible-iterator-0.3.0/Cargo.toml +29 -0
  141. data/ext/cargo-vendor/fallible-iterator-0.3.0/README.md +16 -0
  142. data/ext/cargo-vendor/fallible-iterator-0.3.0/src/lib.rs +2808 -0
  143. data/ext/cargo-vendor/fallible-iterator-0.3.0/src/test.rs +477 -0
  144. data/ext/cargo-vendor/serde-1.0.188/.cargo-checksum.json +1 -0
  145. data/ext/cargo-vendor/serde-1.0.188/Cargo.toml +69 -0
  146. data/ext/cargo-vendor/serde-1.0.188/build.rs +90 -0
  147. data/ext/cargo-vendor/serde-1.0.188/src/de/ignored_any.rs +238 -0
  148. data/ext/cargo-vendor/serde-1.0.188/src/de/impls.rs +2966 -0
  149. data/ext/cargo-vendor/serde-1.0.188/src/de/mod.rs +2290 -0
  150. data/ext/cargo-vendor/serde-1.0.188/src/de/value.rs +1708 -0
  151. data/ext/cargo-vendor/serde-1.0.188/src/integer128.rs +9 -0
  152. data/ext/cargo-vendor/serde-1.0.188/src/lib.rs +327 -0
  153. data/ext/cargo-vendor/serde-1.0.188/src/macros.rs +231 -0
  154. data/ext/cargo-vendor/serde-1.0.188/src/ser/fmt.rs +170 -0
  155. data/ext/cargo-vendor/serde-1.0.188/src/ser/impls.rs +998 -0
  156. data/ext/cargo-vendor/serde-1.0.188/src/ser/mod.rs +1952 -0
  157. data/ext/cargo-vendor/serde_derive-1.0.188/.cargo-checksum.json +1 -0
  158. data/ext/cargo-vendor/serde_derive-1.0.188/Cargo.toml +59 -0
  159. data/ext/cargo-vendor/serde_derive-1.0.188/src/lib.rs +102 -0
  160. data/ext/cargo-vendor/serde_derive-1.0.188/src/ser.rs +1359 -0
  161. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/.cargo-checksum.json +1 -0
  162. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/Cargo.toml +96 -0
  163. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/src/lib.rs +161 -0
  164. data/ext/cargo-vendor/wasi-common-13.0.0/.cargo-checksum.json +1 -0
  165. data/ext/cargo-vendor/wasi-common-13.0.0/Cargo.toml +87 -0
  166. data/ext/cargo-vendor/wasm-encoder-0.32.0/.cargo-checksum.json +1 -0
  167. data/ext/cargo-vendor/wasm-encoder-0.32.0/Cargo.toml +33 -0
  168. data/ext/cargo-vendor/wasm-encoder-0.32.0/src/component/types.rs +769 -0
  169. data/ext/cargo-vendor/wasm-encoder-0.33.1/.cargo-checksum.json +1 -0
  170. data/ext/cargo-vendor/wasm-encoder-0.33.1/Cargo.toml +33 -0
  171. data/ext/cargo-vendor/wasm-encoder-0.33.1/README.md +80 -0
  172. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/aliases.rs +160 -0
  173. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/builder.rs +449 -0
  174. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/canonicals.rs +159 -0
  175. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/components.rs +29 -0
  176. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/exports.rs +127 -0
  177. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/imports.rs +200 -0
  178. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/instances.rs +200 -0
  179. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/modules.rs +29 -0
  180. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/names.rs +149 -0
  181. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/start.rs +52 -0
  182. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/types.rs +769 -0
  183. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component.rs +168 -0
  184. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/code.rs +2913 -0
  185. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/custom.rs +73 -0
  186. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/data.rs +185 -0
  187. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/dump.rs +627 -0
  188. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/elements.rs +220 -0
  189. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/exports.rs +85 -0
  190. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/functions.rs +63 -0
  191. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/globals.rs +90 -0
  192. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/imports.rs +142 -0
  193. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/linking.rs +263 -0
  194. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/memories.rs +99 -0
  195. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/names.rs +265 -0
  196. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/producers.rs +180 -0
  197. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/start.rs +39 -0
  198. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/tables.rs +104 -0
  199. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/tags.rs +85 -0
  200. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/types.rs +372 -0
  201. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core.rs +168 -0
  202. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/lib.rs +215 -0
  203. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/raw.rs +30 -0
  204. data/ext/cargo-vendor/wasmparser-0.112.0/.cargo-checksum.json +1 -0
  205. data/ext/cargo-vendor/wasmparser-0.112.0/Cargo.lock +644 -0
  206. data/ext/cargo-vendor/wasmparser-0.112.0/Cargo.toml +54 -0
  207. data/ext/cargo-vendor/wasmparser-0.112.0/src/limits.rs +58 -0
  208. data/ext/cargo-vendor/wasmparser-0.112.0/src/readers/component/types.rs +542 -0
  209. data/ext/cargo-vendor/wasmparser-0.112.0/src/readers/core/types.rs +1303 -0
  210. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/component.rs +3120 -0
  211. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/core.rs +1352 -0
  212. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/types.rs +3239 -0
  213. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator.rs +1569 -0
  214. data/ext/cargo-vendor/wasmparser-0.113.1/.cargo-checksum.json +1 -0
  215. data/ext/cargo-vendor/wasmparser-0.113.1/Cargo.lock +644 -0
  216. data/ext/cargo-vendor/wasmparser-0.113.1/Cargo.toml +54 -0
  217. data/ext/cargo-vendor/wasmparser-0.113.1/src/binary_reader.rs +1706 -0
  218. data/ext/cargo-vendor/wasmparser-0.113.1/src/lib.rs +726 -0
  219. data/ext/cargo-vendor/wasmparser-0.113.1/src/limits.rs +58 -0
  220. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/component/types.rs +542 -0
  221. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core/dylink0.rs +132 -0
  222. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core/types.rs +1303 -0
  223. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core.rs +37 -0
  224. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/component.rs +3120 -0
  225. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/core.rs +1352 -0
  226. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/operators.rs +3466 -0
  227. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/types.rs +3239 -0
  228. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator.rs +1595 -0
  229. data/ext/cargo-vendor/wasmprinter-0.2.66/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasmprinter-0.2.66/Cargo.toml +39 -0
  231. data/ext/cargo-vendor/wasmprinter-0.2.66/src/lib.rs +2965 -0
  232. data/ext/cargo-vendor/wasmprinter-0.2.66/src/operator.rs +873 -0
  233. data/ext/cargo-vendor/wasmtime-13.0.0/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/wasmtime-13.0.0/Cargo.toml +191 -0
  235. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/component.rs +474 -0
  236. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/func/typed.rs +2297 -0
  237. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/instance.rs +793 -0
  238. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/linker.rs +483 -0
  239. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/mod.rs +344 -0
  240. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/types.rs +523 -0
  241. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/values.rs +1272 -0
  242. data/ext/cargo-vendor/wasmtime-13.0.0/src/config.rs +2313 -0
  243. data/ext/cargo-vendor/wasmtime-13.0.0/src/engine/serialization.rs +657 -0
  244. data/ext/cargo-vendor/wasmtime-13.0.0/src/engine.rs +790 -0
  245. data/ext/cargo-vendor/wasmtime-13.0.0/src/instance.rs +884 -0
  246. data/ext/cargo-vendor/wasmtime-13.0.0/src/limits.rs +398 -0
  247. data/ext/cargo-vendor/wasmtime-13.0.0/src/module.rs +1349 -0
  248. data/ext/cargo-vendor/wasmtime-13.0.0/src/store.rs +2246 -0
  249. data/ext/cargo-vendor/wasmtime-13.0.0/src/trampoline/memory.rs +255 -0
  250. data/ext/cargo-vendor/wasmtime-13.0.0/src/trampoline.rs +76 -0
  251. data/ext/cargo-vendor/wasmtime-asm-macros-13.0.0/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/wasmtime-asm-macros-13.0.0/Cargo.toml +22 -0
  253. data/ext/cargo-vendor/wasmtime-cache-13.0.0/.cargo-checksum.json +1 -0
  254. data/ext/cargo-vendor/wasmtime-cache-13.0.0/Cargo.toml +72 -0
  255. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/config.rs +584 -0
  256. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/worker/tests.rs +758 -0
  257. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/worker.rs +894 -0
  258. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/Cargo.toml +58 -0
  260. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/src/bindgen.rs +387 -0
  261. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/src/component.rs +1295 -0
  262. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/tests/codegen/resources-import.wit +87 -0
  263. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/tests/codegen/variants.wit +136 -0
  264. data/ext/cargo-vendor/wasmtime-component-util-13.0.0/.cargo-checksum.json +1 -0
  265. data/ext/cargo-vendor/wasmtime-component-util-13.0.0/Cargo.toml +25 -0
  266. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/.cargo-checksum.json +1 -0
  267. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/Cargo.toml +97 -0
  268. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/builder.rs +123 -0
  269. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/compiler.rs +1301 -0
  270. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/debug/transform/attr.rs +340 -0
  271. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/debug.rs +18 -0
  272. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/func_environ.rs +2589 -0
  273. data/ext/cargo-vendor/wasmtime-cranelift-shared-13.0.0/.cargo-checksum.json +1 -0
  274. data/ext/cargo-vendor/wasmtime-cranelift-shared-13.0.0/Cargo.toml +57 -0
  275. data/ext/cargo-vendor/wasmtime-environ-13.0.0/.cargo-checksum.json +1 -0
  276. data/ext/cargo-vendor/wasmtime-environ-13.0.0/Cargo.lock +711 -0
  277. data/ext/cargo-vendor/wasmtime-environ-13.0.0/Cargo.toml +118 -0
  278. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/address_map.rs +192 -0
  279. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/builtin.rs +143 -0
  280. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/compilation.rs +403 -0
  281. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/compiler.rs +47 -0
  282. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/info.rs +583 -0
  283. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/types.rs +1866 -0
  284. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/fact/trampoline.rs +3229 -0
  285. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/fact/transcode.rs +168 -0
  286. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/lib.rs +59 -0
  287. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module.rs +1083 -0
  288. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module_environ.rs +876 -0
  289. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module_types.rs +78 -0
  290. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/stack_map.rs +36 -0
  291. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/tunables.rs +115 -0
  292. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/vmoffsets.rs +919 -0
  293. data/ext/cargo-vendor/wasmtime-fiber-13.0.0/.cargo-checksum.json +1 -0
  294. data/ext/cargo-vendor/wasmtime-fiber-13.0.0/Cargo.toml +51 -0
  295. data/ext/cargo-vendor/wasmtime-jit-13.0.0/.cargo-checksum.json +1 -0
  296. data/ext/cargo-vendor/wasmtime-jit-13.0.0/Cargo.toml +106 -0
  297. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/instantiate.rs +760 -0
  298. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/lib.rs +21 -0
  299. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/miri.rs +15 -0
  300. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/systemv.rs +90 -0
  301. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/winx64.rs +44 -0
  302. data/ext/cargo-vendor/wasmtime-jit-debug-13.0.0/.cargo-checksum.json +1 -0
  303. data/ext/cargo-vendor/wasmtime-jit-debug-13.0.0/Cargo.toml +58 -0
  304. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-13.0.0/.cargo-checksum.json +1 -0
  305. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-13.0.0/Cargo.toml +37 -0
  306. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/.cargo-checksum.json +1 -0
  307. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/Cargo.toml +122 -0
  308. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/on_demand.rs +154 -0
  309. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/index_allocator.rs +684 -0
  310. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/memory_pool.rs +460 -0
  311. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/stack_pool.rs +242 -0
  312. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/table_pool.rs +221 -0
  313. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling.rs +633 -0
  314. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator.rs +686 -0
  315. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance.rs +1382 -0
  316. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/lib.rs +276 -0
  317. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/libcalls.rs +775 -0
  318. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/memory.rs +958 -0
  319. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/parking_spot.rs +520 -0
  320. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/table.rs +598 -0
  321. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/trampolines/s390x.S +70 -0
  322. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/traphandlers/macos.rs +486 -0
  323. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/traphandlers.rs +815 -0
  324. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/vmcontext.rs +1197 -0
  325. data/ext/cargo-vendor/wasmtime-types-13.0.0/.cargo-checksum.json +1 -0
  326. data/ext/cargo-vendor/wasmtime-types-13.0.0/Cargo.toml +36 -0
  327. data/ext/cargo-vendor/wasmtime-types-13.0.0/src/lib.rs +504 -0
  328. data/ext/cargo-vendor/wasmtime-versioned-export-macros-13.0.0/.cargo-checksum.json +1 -0
  329. data/ext/cargo-vendor/wasmtime-versioned-export-macros-13.0.0/Cargo.toml +32 -0
  330. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/.cargo-checksum.json +1 -0
  331. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/Cargo.toml +232 -0
  332. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/lib.rs +135 -0
  333. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/command.rs +121 -0
  334. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/ctx.rs +351 -0
  335. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/filesystem.rs +277 -0
  336. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/clocks.rs +107 -0
  337. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/env.rs +15 -0
  338. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/exit.rs +11 -0
  339. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/filesystem/sync.rs +645 -0
  340. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/filesystem.rs +1167 -0
  341. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/instance_network.rs +11 -0
  342. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/io.rs +553 -0
  343. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/mod.rs +10 -0
  344. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/network.rs +186 -0
  345. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/tcp.rs +511 -0
  346. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/tcp_create_socket.rs +18 -0
  347. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/mod.rs +233 -0
  348. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/network.rs +32 -0
  349. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/pipe.rs +1067 -0
  350. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/preview1.rs +2078 -0
  351. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio/unix.rs +160 -0
  352. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio/worker_thread_stdin.rs +140 -0
  353. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio.rs +354 -0
  354. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stream.rs +347 -0
  355. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/table.rs +293 -0
  356. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/tcp.rs +280 -0
  357. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/command-extended.wit +39 -0
  358. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/command.wit +33 -0
  359. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/environment.wit +18 -0
  360. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/exit.wit +4 -0
  361. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/run.wit +4 -0
  362. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/terminal.wit +59 -0
  363. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/preopens.wit +6 -0
  364. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/types.wit +824 -0
  365. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/world.wit +6 -0
  366. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/http/proxy.wit +34 -0
  367. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/http/types.wit +155 -0
  368. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/io/streams.wit +300 -0
  369. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/logging/logging.wit +37 -0
  370. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/ip-name-lookup.wit +69 -0
  371. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/network.wit +187 -0
  372. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/tcp-create-socket.wit +27 -0
  373. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/tcp.wit +268 -0
  374. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/udp-create-socket.wit +27 -0
  375. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/udp.wit +220 -0
  376. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/main.wit +33 -0
  377. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/test.wit +41 -0
  378. data/ext/cargo-vendor/wasmtime-winch-13.0.0/.cargo-checksum.json +1 -0
  379. data/ext/cargo-vendor/wasmtime-winch-13.0.0/Cargo.toml +63 -0
  380. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/.cargo-checksum.json +1 -0
  381. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/Cargo.toml +32 -0
  382. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/lib.rs +1953 -0
  383. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/rust.rs +490 -0
  384. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/types.rs +194 -0
  385. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/.cargo-checksum.json +1 -0
  386. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/Cargo.toml +22 -0
  387. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/src/lib.rs +404 -0
  388. data/ext/cargo-vendor/wast-65.0.1/.cargo-checksum.json +1 -0
  389. data/ext/cargo-vendor/wast-65.0.1/Cargo.toml +50 -0
  390. data/ext/cargo-vendor/wast-65.0.1/src/component/binary.rs +1021 -0
  391. data/ext/cargo-vendor/wast-65.0.1/src/component/expand.rs +875 -0
  392. data/ext/cargo-vendor/wast-65.0.1/src/component/resolve.rs +1005 -0
  393. data/ext/cargo-vendor/wast-65.0.1/src/component/types.rs +991 -0
  394. data/ext/cargo-vendor/wast-65.0.1/src/component/wast.rs +160 -0
  395. data/ext/cargo-vendor/wast-65.0.1/src/core/binary.rs +1241 -0
  396. data/ext/cargo-vendor/wast-65.0.1/src/core/expr.rs +2021 -0
  397. data/ext/cargo-vendor/wast-65.0.1/src/core/table.rs +288 -0
  398. data/ext/cargo-vendor/wast-65.0.1/src/core/types.rs +847 -0
  399. data/ext/cargo-vendor/wast-65.0.1/src/core/wast.rs +256 -0
  400. data/ext/cargo-vendor/wast-65.0.1/src/lib.rs +536 -0
  401. data/ext/cargo-vendor/wat-1.0.73/.cargo-checksum.json +1 -0
  402. data/ext/cargo-vendor/wat-1.0.73/Cargo.toml +27 -0
  403. data/ext/cargo-vendor/wiggle-13.0.0/.cargo-checksum.json +1 -0
  404. data/ext/cargo-vendor/wiggle-13.0.0/Cargo.toml +106 -0
  405. data/ext/cargo-vendor/wiggle-13.0.0/src/lib.rs +1198 -0
  406. data/ext/cargo-vendor/wiggle-generate-13.0.0/.cargo-checksum.json +1 -0
  407. data/ext/cargo-vendor/wiggle-generate-13.0.0/Cargo.toml +58 -0
  408. data/ext/cargo-vendor/wiggle-generate-13.0.0/LICENSE +220 -0
  409. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/config.rs +663 -0
  410. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/types/record.rs +132 -0
  411. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/wasmtime.rs +170 -0
  412. data/ext/cargo-vendor/wiggle-macro-13.0.0/.cargo-checksum.json +1 -0
  413. data/ext/cargo-vendor/wiggle-macro-13.0.0/Cargo.toml +55 -0
  414. data/ext/cargo-vendor/wiggle-macro-13.0.0/LICENSE +220 -0
  415. data/ext/cargo-vendor/winch-codegen-0.11.0/.cargo-checksum.json +1 -0
  416. data/ext/cargo-vendor/winch-codegen-0.11.0/Cargo.toml +62 -0
  417. data/ext/cargo-vendor/winch-codegen-0.11.0/src/abi/mod.rs +269 -0
  418. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/call.rs +219 -0
  419. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/context.rs +423 -0
  420. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/control.rs +456 -0
  421. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/mod.rs +337 -0
  422. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/abi.rs +260 -0
  423. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/address.rs +144 -0
  424. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/asm.rs +250 -0
  425. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/masm.rs +357 -0
  426. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/regs.rs +177 -0
  427. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/reg.rs +73 -0
  428. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/abi.rs +390 -0
  429. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/address.rs +34 -0
  430. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/asm.rs +847 -0
  431. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/masm.rs +659 -0
  432. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/mod.rs +148 -0
  433. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/regs.rs +233 -0
  434. data/ext/cargo-vendor/winch-codegen-0.11.0/src/masm.rs +465 -0
  435. data/ext/cargo-vendor/winch-codegen-0.11.0/src/regalloc.rs +73 -0
  436. data/ext/cargo-vendor/winch-codegen-0.11.0/src/regset.rs +118 -0
  437. data/ext/cargo-vendor/winch-codegen-0.11.0/src/stack.rs +338 -0
  438. data/ext/cargo-vendor/winch-codegen-0.11.0/src/trampoline.rs +489 -0
  439. data/ext/cargo-vendor/winch-codegen-0.11.0/src/visitor.rs +736 -0
  440. data/ext/cargo-vendor/wit-parser-0.11.1/.cargo-checksum.json +1 -0
  441. data/ext/cargo-vendor/wit-parser-0.11.1/Cargo.toml +70 -0
  442. data/ext/cargo-vendor/wit-parser-0.11.1/src/abi.rs +241 -0
  443. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast/lex.rs +714 -0
  444. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast/resolve.rs +1418 -0
  445. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast.rs +1361 -0
  446. data/ext/cargo-vendor/wit-parser-0.11.1/src/lib.rs +711 -0
  447. data/ext/cargo-vendor/wit-parser-0.11.1/src/live.rs +111 -0
  448. data/ext/cargo-vendor/wit-parser-0.11.1/src/resolve.rs +1757 -0
  449. data/ext/cargo-vendor/wit-parser-0.11.1/src/serde_.rs +108 -0
  450. data/ext/cargo-vendor/wit-parser-0.11.1/src/sizealign.rs +144 -0
  451. data/ext/cargo-vendor/wit-parser-0.11.1/tests/all.rs +190 -0
  452. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/comments.wit.json +46 -0
  453. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/complex-include.wit.json +168 -0
  454. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/cross-package-resource.wit.json +67 -0
  455. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/diamond1.wit.json +55 -0
  456. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/disambiguate-diamond.wit.json +107 -0
  457. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/embedded.wit.md.json +40 -0
  458. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/empty.wit.json +12 -0
  459. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/foreign-deps-union.wit.json +380 -0
  460. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/foreign-deps.wit.json +344 -0
  461. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/functions.wit.json +166 -0
  462. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/ignore-files-deps.wit.json +39 -0
  463. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/include-reps.wit.json +60 -0
  464. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/kebab-name-include-with.wit.json +70 -0
  465. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/many-names.wit.json +40 -0
  466. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/multi-file.wit.json +298 -0
  467. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/name-both-resource-and-type.wit.json +89 -0
  468. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax1.wit.json +12 -0
  469. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax3.wit.json +12 -0
  470. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax4.wit.json +12 -0
  471. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs/a.wit +2 -0
  472. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs/b.wit +2 -0
  473. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs.wit.result +8 -0
  474. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/random.wit +27 -0
  475. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/random.wit.json +64 -0
  476. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-empty.wit.json +72 -0
  477. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple-returns-borrow.wit.json +74 -0
  478. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple-returns-own.wit.json +83 -0
  479. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple.wit.json +281 -0
  480. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-return-borrow.wit.json +69 -0
  481. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-return-own.wit.json +78 -0
  482. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources.wit.json +340 -0
  483. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources1.wit.json +96 -0
  484. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/shared-types.wit.json +83 -0
  485. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/stress-export-elaborate.wit.json +1136 -0
  486. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/type-then-eof.wit.json +32 -0
  487. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/types.wit +58 -0
  488. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/types.wit.json +751 -0
  489. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/union-fuzz-1.wit.json +35 -0
  490. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/use-chain.wit.json +53 -0
  491. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/use.wit.json +172 -0
  492. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/versions.wit.json +91 -0
  493. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/wasi.wit.json +296 -0
  494. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-diamond.wit +23 -0
  495. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-diamond.wit.json +118 -0
  496. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-iface-no-collide.wit.json +66 -0
  497. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import1.wit.json +75 -0
  498. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import2.wit.json +70 -0
  499. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import3.wit.json +71 -0
  500. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-same-fields4.wit.json +76 -0
  501. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-top-level-funcs.wit.json +86 -0
  502. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-top-level-resources.wit.json +240 -0
  503. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/worlds-union-dedup.wit.json +100 -0
  504. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/worlds-with-types.wit.json +202 -0
  505. data/ext/src/ruby_api/wasi_ctx_builder.rs +8 -8
  506. data/lib/wasmtime/version.rb +1 -1
  507. metadata +1627 -1813
  508. data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +0 -1
  509. data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +0 -321
  510. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +0 -548
  511. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +0 -145
  512. data/ext/cargo-vendor/addr2line-0.20.0/LICENSE-MIT +0 -25
  513. data/ext/cargo-vendor/addr2line-0.20.0/README.md +0 -48
  514. data/ext/cargo-vendor/addr2line-0.20.0/bench.plot.r +0 -23
  515. data/ext/cargo-vendor/addr2line-0.20.0/benchmark.sh +0 -112
  516. data/ext/cargo-vendor/addr2line-0.20.0/coverage.sh +0 -5
  517. data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +0 -306
  518. data/ext/cargo-vendor/addr2line-0.20.0/rustfmt.toml +0 -1
  519. data/ext/cargo-vendor/addr2line-0.20.0/src/builtin_split_dwarf_loader.rs +0 -164
  520. data/ext/cargo-vendor/addr2line-0.20.0/src/function.rs +0 -555
  521. data/ext/cargo-vendor/addr2line-0.20.0/src/lazy.rs +0 -31
  522. data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +0 -1729
  523. data/ext/cargo-vendor/addr2line-0.20.0/tests/correctness.rs +0 -126
  524. data/ext/cargo-vendor/addr2line-0.20.0/tests/output_equivalence.rs +0 -135
  525. data/ext/cargo-vendor/addr2line-0.20.0/tests/parse.rs +0 -114
  526. data/ext/cargo-vendor/cranelift-bforest-0.99.1/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-bforest-0.99.1/Cargo.toml +0 -31
  528. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/lib.rs +0 -198
  529. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/map.rs +0 -923
  530. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/pool.rs +0 -220
  531. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/set.rs +0 -598
  532. data/ext/cargo-vendor/cranelift-codegen-0.99.1/.cargo-checksum.json +0 -1
  533. data/ext/cargo-vendor/cranelift-codegen-0.99.1/Cargo.toml +0 -159
  534. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/binemit/mod.rs +0 -141
  535. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/binemit/stack_map.rs +0 -152
  536. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/bitset.rs +0 -163
  537. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/context.rs +0 -368
  538. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/incremental_cache.rs +0 -256
  539. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/atomic_rmw_op.rs +0 -104
  540. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/condcodes.rs +0 -404
  541. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/constant.rs +0 -463
  542. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/dfg.rs +0 -1686
  543. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/dynamic_type.rs +0 -55
  544. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/entities.rs +0 -567
  545. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extfunc.rs +0 -411
  546. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extname.rs +0 -333
  547. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/function.rs +0 -469
  548. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/globalvalue.rs +0 -155
  549. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/immediates.rs +0 -1615
  550. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/instructions.rs +0 -1000
  551. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/jumptable.rs +0 -168
  552. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/known_symbol.rs +0 -47
  553. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/libcall.rs +0 -232
  554. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/memflags.rs +0 -279
  555. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/mod.rs +0 -106
  556. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/sourceloc.rs +0 -117
  557. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/stackslot.rs +0 -216
  558. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/table.rs +0 -40
  559. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/trapcode.rs +0 -144
  560. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/types.rs +0 -630
  561. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/abi.rs +0 -1543
  562. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/args.rs +0 -741
  563. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit.rs +0 -3919
  564. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit_tests.rs +0 -7897
  565. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/mod.rs +0 -3039
  566. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst.isle +0 -4048
  567. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower/isle.rs +0 -873
  568. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.isle +0 -2907
  569. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.rs +0 -702
  570. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower_dynamic_neon.isle +0 -110
  571. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/call_conv.rs +0 -119
  572. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/abi.rs +0 -985
  573. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/args.rs +0 -1812
  574. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/emit.rs +0 -3254
  575. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/encode.rs +0 -281
  576. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/imms.rs +0 -250
  577. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/mod.rs +0 -2125
  578. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/vector.rs +0 -939
  579. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst.isle +0 -2972
  580. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst_vector.isle +0 -1650
  581. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower/isle.rs +0 -620
  582. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower.isle +0 -2002
  583. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/abi.rs +0 -948
  584. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst/mod.rs +0 -3426
  585. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst.isle +0 -5043
  586. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/lower.isle +0 -3983
  587. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind/systemv.rs +0 -272
  588. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind/winx64.rs +0 -334
  589. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind.rs +0 -182
  590. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/abi.rs +0 -1204
  591. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/evex.rs +0 -749
  592. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/rex.rs +0 -588
  593. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/args.rs +0 -2193
  594. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit.rs +0 -4298
  595. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit_tests.rs +0 -5678
  596. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/mod.rs +0 -2759
  597. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst.isle +0 -5079
  598. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower/isle.rs +0 -1096
  599. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.isle +0 -4651
  600. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.rs +0 -340
  601. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isle_prelude.rs +0 -894
  602. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/legalizer/mod.rs +0 -346
  603. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/lib.rs +0 -140
  604. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/abi.rs +0 -2641
  605. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/buffer.rs +0 -2365
  606. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/isle.rs +0 -837
  607. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/mod.rs +0 -551
  608. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/reg.rs +0 -556
  609. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/vcode.rs +0 -1591
  610. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/bitops.isle +0 -106
  611. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/cprop.isle +0 -200
  612. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/extends.isle +0 -41
  613. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/icmp.isle +0 -177
  614. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/selects.isle +0 -63
  615. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/vector.isle +0 -8
  616. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude.isle +0 -594
  617. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude_lower.isle +0 -1024
  618. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/value_label.rs +0 -32
  619. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/verifier/mod.rs +0 -1884
  620. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/.cargo-checksum.json +0 -1
  621. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/Cargo.toml +0 -26
  622. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/constant_hash.rs +0 -64
  623. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/gen_inst.rs +0 -1785
  624. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/instructions.rs +0 -3847
  625. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/.cargo-checksum.json +0 -1
  626. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/Cargo.toml +0 -22
  627. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/src/lib.rs +0 -26
  628. data/ext/cargo-vendor/cranelift-control-0.99.1/.cargo-checksum.json +0 -1
  629. data/ext/cargo-vendor/cranelift-control-0.99.1/Cargo.toml +0 -30
  630. data/ext/cargo-vendor/cranelift-entity-0.99.1/.cargo-checksum.json +0 -1
  631. data/ext/cargo-vendor/cranelift-entity-0.99.1/Cargo.toml +0 -35
  632. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/lib.rs +0 -330
  633. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/list.rs +0 -955
  634. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/packed_option.rs +0 -171
  635. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/primary.rs +0 -456
  636. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/sparse.rs +0 -368
  637. data/ext/cargo-vendor/cranelift-frontend-0.99.1/.cargo-checksum.json +0 -1
  638. data/ext/cargo-vendor/cranelift-frontend-0.99.1/Cargo.toml +0 -53
  639. data/ext/cargo-vendor/cranelift-frontend-0.99.1/src/lib.rs +0 -204
  640. data/ext/cargo-vendor/cranelift-isle-0.99.1/.cargo-checksum.json +0 -1
  641. data/ext/cargo-vendor/cranelift-isle-0.99.1/Cargo.toml +0 -37
  642. data/ext/cargo-vendor/cranelift-native-0.99.1/.cargo-checksum.json +0 -1
  643. data/ext/cargo-vendor/cranelift-native-0.99.1/Cargo.toml +0 -38
  644. data/ext/cargo-vendor/cranelift-native-0.99.1/src/lib.rs +0 -204
  645. data/ext/cargo-vendor/cranelift-wasm-0.99.1/.cargo-checksum.json +0 -1
  646. data/ext/cargo-vendor/cranelift-wasm-0.99.1/Cargo.toml +0 -85
  647. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/code_translator.rs +0 -3608
  648. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/dummy.rs +0 -942
  649. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/spec.rs +0 -913
  650. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/func_translator.rs +0 -431
  651. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/heap.rs +0 -99
  652. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/lib.rs +0 -78
  653. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/sections_translator.rs +0 -420
  654. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/translation_utils.rs +0 -99
  655. data/ext/cargo-vendor/env_logger-0.10.0/.cargo-checksum.json +0 -1
  656. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.lock +0 -254
  657. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.toml +0 -129
  658. data/ext/cargo-vendor/env_logger-0.10.0/LICENSE-APACHE +0 -201
  659. data/ext/cargo-vendor/env_logger-0.10.0/README.md +0 -183
  660. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_default_format.rs +0 -40
  661. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_format.rs +0 -54
  662. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_logger.rs +0 -62
  663. data/ext/cargo-vendor/env_logger-0.10.0/examples/default.rs +0 -38
  664. data/ext/cargo-vendor/env_logger-0.10.0/examples/direct_logger.rs +0 -39
  665. data/ext/cargo-vendor/env_logger-0.10.0/examples/filters_from_code.rs +0 -20
  666. data/ext/cargo-vendor/env_logger-0.10.0/examples/in_tests.rs +0 -54
  667. data/ext/cargo-vendor/env_logger-0.10.0/examples/syslog_friendly_format.rs +0 -24
  668. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/mod.rs +0 -868
  669. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/regex.rs +0 -29
  670. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/string.rs +0 -24
  671. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/extern_impl.rs +0 -118
  672. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/mod.rs +0 -11
  673. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/shim_impl.rs +0 -5
  674. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/mod.rs +0 -652
  675. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/atty.rs +0 -33
  676. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/mod.rs +0 -253
  677. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/extern_impl.rs +0 -532
  678. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/mod.rs +0 -12
  679. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/shim_impl.rs +0 -72
  680. data/ext/cargo-vendor/env_logger-0.10.0/src/lib.rs +0 -1311
  681. data/ext/cargo-vendor/env_logger-0.10.0/tests/init-twice-retains-filter.rs +0 -40
  682. data/ext/cargo-vendor/env_logger-0.10.0/tests/log-in-log.rs +0 -39
  683. data/ext/cargo-vendor/env_logger-0.10.0/tests/log_tls_dtors.rs +0 -66
  684. data/ext/cargo-vendor/env_logger-0.10.0/tests/regexp_filter.rs +0 -57
  685. data/ext/cargo-vendor/fallible-iterator-0.2.0/.cargo-checksum.json +0 -1
  686. data/ext/cargo-vendor/fallible-iterator-0.2.0/CHANGELOG.md +0 -26
  687. data/ext/cargo-vendor/fallible-iterator-0.2.0/Cargo.toml +0 -27
  688. data/ext/cargo-vendor/fallible-iterator-0.2.0/README.md +0 -15
  689. data/ext/cargo-vendor/fallible-iterator-0.2.0/src/lib.rs +0 -2606
  690. data/ext/cargo-vendor/fallible-iterator-0.2.0/src/test.rs +0 -455
  691. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/.cargo-checksum.json +0 -1
  692. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/Cargo.toml +0 -36
  693. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/README.md +0 -25
  694. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/run-tests.sh +0 -12
  695. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/src/lib.rs +0 -200
  696. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/tests/test.rs +0 -323
  697. data/ext/cargo-vendor/gimli-0.27.3/.cargo-checksum.json +0 -1
  698. data/ext/cargo-vendor/gimli-0.27.3/CHANGELOG.md +0 -943
  699. data/ext/cargo-vendor/gimli-0.27.3/Cargo.lock +0 -345
  700. data/ext/cargo-vendor/gimli-0.27.3/Cargo.toml +0 -151
  701. data/ext/cargo-vendor/gimli-0.27.3/LICENSE-APACHE +0 -201
  702. data/ext/cargo-vendor/gimli-0.27.3/LICENSE-MIT +0 -25
  703. data/ext/cargo-vendor/gimli-0.27.3/README.md +0 -78
  704. data/ext/cargo-vendor/gimli-0.27.3/examples/dwarf-validate.rs +0 -267
  705. data/ext/cargo-vendor/gimli-0.27.3/examples/dwarfdump.rs +0 -2369
  706. data/ext/cargo-vendor/gimli-0.27.3/examples/simple.rs +0 -67
  707. data/ext/cargo-vendor/gimli-0.27.3/examples/simple_line.rs +0 -106
  708. data/ext/cargo-vendor/gimli-0.27.3/src/arch.rs +0 -751
  709. data/ext/cargo-vendor/gimli-0.27.3/src/common.rs +0 -381
  710. data/ext/cargo-vendor/gimli-0.27.3/src/constants.rs +0 -1426
  711. data/ext/cargo-vendor/gimli-0.27.3/src/endianity.rs +0 -256
  712. data/ext/cargo-vendor/gimli-0.27.3/src/leb128.rs +0 -612
  713. data/ext/cargo-vendor/gimli-0.27.3/src/lib.rs +0 -79
  714. data/ext/cargo-vendor/gimli-0.27.3/src/read/abbrev.rs +0 -1089
  715. data/ext/cargo-vendor/gimli-0.27.3/src/read/addr.rs +0 -128
  716. data/ext/cargo-vendor/gimli-0.27.3/src/read/aranges.rs +0 -660
  717. data/ext/cargo-vendor/gimli-0.27.3/src/read/cfi.rs +0 -7574
  718. data/ext/cargo-vendor/gimli-0.27.3/src/read/dwarf.rs +0 -1184
  719. data/ext/cargo-vendor/gimli-0.27.3/src/read/endian_reader.rs +0 -639
  720. data/ext/cargo-vendor/gimli-0.27.3/src/read/endian_slice.rs +0 -350
  721. data/ext/cargo-vendor/gimli-0.27.3/src/read/index.rs +0 -535
  722. data/ext/cargo-vendor/gimli-0.27.3/src/read/lazy.rs +0 -116
  723. data/ext/cargo-vendor/gimli-0.27.3/src/read/line.rs +0 -3130
  724. data/ext/cargo-vendor/gimli-0.27.3/src/read/lists.rs +0 -68
  725. data/ext/cargo-vendor/gimli-0.27.3/src/read/loclists.rs +0 -1627
  726. data/ext/cargo-vendor/gimli-0.27.3/src/read/lookup.rs +0 -202
  727. data/ext/cargo-vendor/gimli-0.27.3/src/read/mod.rs +0 -830
  728. data/ext/cargo-vendor/gimli-0.27.3/src/read/op.rs +0 -4119
  729. data/ext/cargo-vendor/gimli-0.27.3/src/read/pubnames.rs +0 -141
  730. data/ext/cargo-vendor/gimli-0.27.3/src/read/pubtypes.rs +0 -141
  731. data/ext/cargo-vendor/gimli-0.27.3/src/read/reader.rs +0 -502
  732. data/ext/cargo-vendor/gimli-0.27.3/src/read/rnglists.rs +0 -1458
  733. data/ext/cargo-vendor/gimli-0.27.3/src/read/str.rs +0 -321
  734. data/ext/cargo-vendor/gimli-0.27.3/src/read/unit.rs +0 -6139
  735. data/ext/cargo-vendor/gimli-0.27.3/src/read/util.rs +0 -251
  736. data/ext/cargo-vendor/gimli-0.27.3/src/read/value.rs +0 -1621
  737. data/ext/cargo-vendor/gimli-0.27.3/src/test_util.rs +0 -53
  738. data/ext/cargo-vendor/gimli-0.27.3/src/write/abbrev.rs +0 -188
  739. data/ext/cargo-vendor/gimli-0.27.3/src/write/cfi.rs +0 -1025
  740. data/ext/cargo-vendor/gimli-0.27.3/src/write/dwarf.rs +0 -138
  741. data/ext/cargo-vendor/gimli-0.27.3/src/write/endian_vec.rs +0 -117
  742. data/ext/cargo-vendor/gimli-0.27.3/src/write/line.rs +0 -1957
  743. data/ext/cargo-vendor/gimli-0.27.3/src/write/loc.rs +0 -550
  744. data/ext/cargo-vendor/gimli-0.27.3/src/write/mod.rs +0 -425
  745. data/ext/cargo-vendor/gimli-0.27.3/src/write/op.rs +0 -1618
  746. data/ext/cargo-vendor/gimli-0.27.3/src/write/range.rs +0 -416
  747. data/ext/cargo-vendor/gimli-0.27.3/src/write/section.rs +0 -172
  748. data/ext/cargo-vendor/gimli-0.27.3/src/write/str.rs +0 -172
  749. data/ext/cargo-vendor/gimli-0.27.3/src/write/unit.rs +0 -3152
  750. data/ext/cargo-vendor/gimli-0.27.3/src/write/writer.rs +0 -494
  751. data/ext/cargo-vendor/hashbrown-0.12.3/.cargo-checksum.json +0 -1
  752. data/ext/cargo-vendor/hashbrown-0.12.3/CHANGELOG.md +0 -402
  753. data/ext/cargo-vendor/hashbrown-0.12.3/Cargo.toml +0 -113
  754. data/ext/cargo-vendor/hashbrown-0.12.3/LICENSE-APACHE +0 -201
  755. data/ext/cargo-vendor/hashbrown-0.12.3/LICENSE-MIT +0 -25
  756. data/ext/cargo-vendor/hashbrown-0.12.3/README.md +0 -126
  757. data/ext/cargo-vendor/hashbrown-0.12.3/benches/bench.rs +0 -331
  758. data/ext/cargo-vendor/hashbrown-0.12.3/benches/insert_unique_unchecked.rs +0 -32
  759. data/ext/cargo-vendor/hashbrown-0.12.3/clippy.toml +0 -1
  760. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/mod.rs +0 -4
  761. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/helpers.rs +0 -27
  762. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/map.rs +0 -734
  763. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/mod.rs +0 -4
  764. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/raw.rs +0 -231
  765. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/set.rs +0 -659
  766. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/serde.rs +0 -201
  767. data/ext/cargo-vendor/hashbrown-0.12.3/src/lib.rs +0 -150
  768. data/ext/cargo-vendor/hashbrown-0.12.3/src/macros.rs +0 -70
  769. data/ext/cargo-vendor/hashbrown-0.12.3/src/map.rs +0 -8408
  770. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/alloc.rs +0 -73
  771. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/bitmask.rs +0 -122
  772. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/generic.rs +0 -154
  773. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/mod.rs +0 -2460
  774. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/sse2.rs +0 -146
  775. data/ext/cargo-vendor/hashbrown-0.12.3/src/rustc_entry.rs +0 -630
  776. data/ext/cargo-vendor/hashbrown-0.12.3/src/scopeguard.rs +0 -74
  777. data/ext/cargo-vendor/hashbrown-0.12.3/src/set.rs +0 -2790
  778. data/ext/cargo-vendor/hashbrown-0.12.3/tests/hasher.rs +0 -65
  779. data/ext/cargo-vendor/hashbrown-0.12.3/tests/rayon.rs +0 -533
  780. data/ext/cargo-vendor/hashbrown-0.12.3/tests/serde.rs +0 -65
  781. data/ext/cargo-vendor/hashbrown-0.12.3/tests/set.rs +0 -34
  782. data/ext/cargo-vendor/humantime-2.1.0/.cargo-checksum.json +0 -1
  783. data/ext/cargo-vendor/humantime-2.1.0/Cargo.toml +0 -37
  784. data/ext/cargo-vendor/humantime-2.1.0/LICENSE-APACHE +0 -202
  785. data/ext/cargo-vendor/humantime-2.1.0/LICENSE-MIT +0 -26
  786. data/ext/cargo-vendor/humantime-2.1.0/README.md +0 -68
  787. data/ext/cargo-vendor/humantime-2.1.0/benches/datetime_format.rs +0 -56
  788. data/ext/cargo-vendor/humantime-2.1.0/benches/datetime_parse.rs +0 -47
  789. data/ext/cargo-vendor/humantime-2.1.0/bulk.yaml +0 -8
  790. data/ext/cargo-vendor/humantime-2.1.0/src/date.rs +0 -623
  791. data/ext/cargo-vendor/humantime-2.1.0/src/duration.rs +0 -456
  792. data/ext/cargo-vendor/humantime-2.1.0/src/lib.rs +0 -34
  793. data/ext/cargo-vendor/humantime-2.1.0/src/wrapper.rs +0 -107
  794. data/ext/cargo-vendor/humantime-2.1.0/vagga.yaml +0 -92
  795. data/ext/cargo-vendor/indexmap-1.9.3/.cargo-checksum.json +0 -1
  796. data/ext/cargo-vendor/indexmap-1.9.3/Cargo.toml +0 -108
  797. data/ext/cargo-vendor/indexmap-1.9.3/LICENSE-APACHE +0 -201
  798. data/ext/cargo-vendor/indexmap-1.9.3/LICENSE-MIT +0 -25
  799. data/ext/cargo-vendor/indexmap-1.9.3/README.md +0 -55
  800. data/ext/cargo-vendor/indexmap-1.9.3/RELEASES.md +0 -388
  801. data/ext/cargo-vendor/indexmap-1.9.3/benches/bench.rs +0 -763
  802. data/ext/cargo-vendor/indexmap-1.9.3/benches/faststring.rs +0 -185
  803. data/ext/cargo-vendor/indexmap-1.9.3/build.rs +0 -8
  804. data/ext/cargo-vendor/indexmap-1.9.3/src/arbitrary.rs +0 -75
  805. data/ext/cargo-vendor/indexmap-1.9.3/src/equivalent.rs +0 -27
  806. data/ext/cargo-vendor/indexmap-1.9.3/src/lib.rs +0 -194
  807. data/ext/cargo-vendor/indexmap-1.9.3/src/macros.rs +0 -178
  808. data/ext/cargo-vendor/indexmap-1.9.3/src/map/core/raw.rs +0 -191
  809. data/ext/cargo-vendor/indexmap-1.9.3/src/map/core.rs +0 -700
  810. data/ext/cargo-vendor/indexmap-1.9.3/src/map.rs +0 -1947
  811. data/ext/cargo-vendor/indexmap-1.9.3/src/mutable_keys.rs +0 -75
  812. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/map.rs +0 -583
  813. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/mod.rs +0 -27
  814. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/set.rs +0 -741
  815. data/ext/cargo-vendor/indexmap-1.9.3/src/rustc.rs +0 -158
  816. data/ext/cargo-vendor/indexmap-1.9.3/src/serde.rs +0 -155
  817. data/ext/cargo-vendor/indexmap-1.9.3/src/serde_seq.rs +0 -112
  818. data/ext/cargo-vendor/indexmap-1.9.3/src/set.rs +0 -1912
  819. data/ext/cargo-vendor/indexmap-1.9.3/src/util.rs +0 -31
  820. data/ext/cargo-vendor/indexmap-1.9.3/tests/equivalent_trait.rs +0 -53
  821. data/ext/cargo-vendor/indexmap-1.9.3/tests/macros_full_path.rs +0 -19
  822. data/ext/cargo-vendor/indexmap-1.9.3/tests/quick.rs +0 -573
  823. data/ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs +0 -28
  824. data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +0 -1
  825. data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +0 -621
  826. data/ext/cargo-vendor/object-0.31.1/Cargo.toml +0 -161
  827. data/ext/cargo-vendor/object-0.31.1/LICENSE-APACHE +0 -201
  828. data/ext/cargo-vendor/object-0.31.1/LICENSE-MIT +0 -25
  829. data/ext/cargo-vendor/object-0.31.1/README.md +0 -58
  830. data/ext/cargo-vendor/object-0.31.1/clippy.toml +0 -1
  831. data/ext/cargo-vendor/object-0.31.1/src/archive.rs +0 -91
  832. data/ext/cargo-vendor/object-0.31.1/src/common.rs +0 -499
  833. data/ext/cargo-vendor/object-0.31.1/src/elf.rs +0 -6146
  834. data/ext/cargo-vendor/object-0.31.1/src/endian.rs +0 -831
  835. data/ext/cargo-vendor/object-0.31.1/src/lib.rs +0 -116
  836. data/ext/cargo-vendor/object-0.31.1/src/macho.rs +0 -3307
  837. data/ext/cargo-vendor/object-0.31.1/src/pe.rs +0 -3050
  838. data/ext/cargo-vendor/object-0.31.1/src/pod.rs +0 -239
  839. data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +0 -1323
  840. data/ext/cargo-vendor/object-0.31.1/src/read/archive.rs +0 -739
  841. data/ext/cargo-vendor/object-0.31.1/src/read/coff/comdat.rs +0 -207
  842. data/ext/cargo-vendor/object-0.31.1/src/read/coff/file.rs +0 -364
  843. data/ext/cargo-vendor/object-0.31.1/src/read/coff/mod.rs +0 -18
  844. data/ext/cargo-vendor/object-0.31.1/src/read/coff/relocation.rs +0 -104
  845. data/ext/cargo-vendor/object-0.31.1/src/read/coff/section.rs +0 -574
  846. data/ext/cargo-vendor/object-0.31.1/src/read/coff/symbol.rs +0 -626
  847. data/ext/cargo-vendor/object-0.31.1/src/read/elf/attributes.rs +0 -303
  848. data/ext/cargo-vendor/object-0.31.1/src/read/elf/comdat.rs +0 -160
  849. data/ext/cargo-vendor/object-0.31.1/src/read/elf/compression.rs +0 -56
  850. data/ext/cargo-vendor/object-0.31.1/src/read/elf/dynamic.rs +0 -117
  851. data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +0 -910
  852. data/ext/cargo-vendor/object-0.31.1/src/read/elf/hash.rs +0 -220
  853. data/ext/cargo-vendor/object-0.31.1/src/read/elf/mod.rs +0 -42
  854. data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +0 -263
  855. data/ext/cargo-vendor/object-0.31.1/src/read/elf/relocation.rs +0 -571
  856. data/ext/cargo-vendor/object-0.31.1/src/read/elf/section.rs +0 -1146
  857. data/ext/cargo-vendor/object-0.31.1/src/read/elf/segment.rs +0 -332
  858. data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +0 -577
  859. data/ext/cargo-vendor/object-0.31.1/src/read/elf/version.rs +0 -421
  860. data/ext/cargo-vendor/object-0.31.1/src/read/macho/dyld_cache.rs +0 -343
  861. data/ext/cargo-vendor/object-0.31.1/src/read/macho/fat.rs +0 -122
  862. data/ext/cargo-vendor/object-0.31.1/src/read/macho/file.rs +0 -731
  863. data/ext/cargo-vendor/object-0.31.1/src/read/macho/load_command.rs +0 -373
  864. data/ext/cargo-vendor/object-0.31.1/src/read/macho/mod.rs +0 -30
  865. data/ext/cargo-vendor/object-0.31.1/src/read/macho/relocation.rs +0 -127
  866. data/ext/cargo-vendor/object-0.31.1/src/read/macho/section.rs +0 -387
  867. data/ext/cargo-vendor/object-0.31.1/src/read/macho/segment.rs +0 -301
  868. data/ext/cargo-vendor/object-0.31.1/src/read/macho/symbol.rs +0 -488
  869. data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +0 -760
  870. data/ext/cargo-vendor/object-0.31.1/src/read/pe/data_directory.rs +0 -211
  871. data/ext/cargo-vendor/object-0.31.1/src/read/pe/export.rs +0 -331
  872. data/ext/cargo-vendor/object-0.31.1/src/read/pe/file.rs +0 -1029
  873. data/ext/cargo-vendor/object-0.31.1/src/read/pe/import.rs +0 -332
  874. data/ext/cargo-vendor/object-0.31.1/src/read/pe/mod.rs +0 -34
  875. data/ext/cargo-vendor/object-0.31.1/src/read/pe/relocation.rs +0 -90
  876. data/ext/cargo-vendor/object-0.31.1/src/read/pe/resource.rs +0 -207
  877. data/ext/cargo-vendor/object-0.31.1/src/read/pe/rich.rs +0 -91
  878. data/ext/cargo-vendor/object-0.31.1/src/read/pe/section.rs +0 -434
  879. data/ext/cargo-vendor/object-0.31.1/src/read/read_cache.rs +0 -182
  880. data/ext/cargo-vendor/object-0.31.1/src/read/read_ref.rs +0 -137
  881. data/ext/cargo-vendor/object-0.31.1/src/read/traits.rs +0 -469
  882. data/ext/cargo-vendor/object-0.31.1/src/read/util.rs +0 -425
  883. data/ext/cargo-vendor/object-0.31.1/src/read/wasm.rs +0 -951
  884. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/comdat.rs +0 -129
  885. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/file.rs +0 -629
  886. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/mod.rs +0 -21
  887. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/relocation.rs +0 -127
  888. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/section.rs +0 -427
  889. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/segment.rs +0 -113
  890. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/symbol.rs +0 -695
  891. data/ext/cargo-vendor/object-0.31.1/src/write/coff.rs +0 -725
  892. data/ext/cargo-vendor/object-0.31.1/src/write/elf/mod.rs +0 -9
  893. data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +0 -891
  894. data/ext/cargo-vendor/object-0.31.1/src/write/elf/writer.rs +0 -2143
  895. data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +0 -978
  896. data/ext/cargo-vendor/object-0.31.1/src/write/mod.rs +0 -943
  897. data/ext/cargo-vendor/object-0.31.1/src/write/pe.rs +0 -847
  898. data/ext/cargo-vendor/object-0.31.1/src/write/string.rs +0 -159
  899. data/ext/cargo-vendor/object-0.31.1/src/write/util.rs +0 -260
  900. data/ext/cargo-vendor/object-0.31.1/src/write/xcoff.rs +0 -556
  901. data/ext/cargo-vendor/object-0.31.1/src/xcoff.rs +0 -893
  902. data/ext/cargo-vendor/object-0.31.1/tests/integration.rs +0 -2
  903. data/ext/cargo-vendor/object-0.31.1/tests/parse_self.rs +0 -25
  904. data/ext/cargo-vendor/object-0.31.1/tests/read/coff.rs +0 -23
  905. data/ext/cargo-vendor/object-0.31.1/tests/read/mod.rs +0 -3
  906. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/bss.rs +0 -255
  907. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/coff.rs +0 -56
  908. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/comdat.rs +0 -225
  909. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/common.rs +0 -245
  910. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/elf.rs +0 -289
  911. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +0 -24
  912. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +0 -636
  913. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/section_flags.rs +0 -90
  914. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/tls.rs +0 -316
  915. data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +0 -1
  916. data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +0 -66
  917. data/ext/cargo-vendor/serde-1.0.185/build.rs +0 -97
  918. data/ext/cargo-vendor/serde-1.0.185/src/de/ignored_any.rs +0 -242
  919. data/ext/cargo-vendor/serde-1.0.185/src/de/impls.rs +0 -2968
  920. data/ext/cargo-vendor/serde-1.0.185/src/de/mod.rs +0 -2299
  921. data/ext/cargo-vendor/serde-1.0.185/src/de/utf8.rs +0 -46
  922. data/ext/cargo-vendor/serde-1.0.185/src/de/value.rs +0 -1711
  923. data/ext/cargo-vendor/serde-1.0.185/src/integer128.rs +0 -82
  924. data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +0 -327
  925. data/ext/cargo-vendor/serde-1.0.185/src/macros.rs +0 -235
  926. data/ext/cargo-vendor/serde-1.0.185/src/ser/fmt.rs +0 -175
  927. data/ext/cargo-vendor/serde-1.0.185/src/ser/impls.rs +0 -1012
  928. data/ext/cargo-vendor/serde-1.0.185/src/ser/mod.rs +0 -1958
  929. data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +0 -1
  930. data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +0 -59
  931. data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +0 -102
  932. data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +0 -1359
  933. data/ext/cargo-vendor/termcolor-1.2.0/.cargo-checksum.json +0 -1
  934. data/ext/cargo-vendor/termcolor-1.2.0/COPYING +0 -3
  935. data/ext/cargo-vendor/termcolor-1.2.0/Cargo.toml +0 -40
  936. data/ext/cargo-vendor/termcolor-1.2.0/LICENSE-MIT +0 -21
  937. data/ext/cargo-vendor/termcolor-1.2.0/README.md +0 -115
  938. data/ext/cargo-vendor/termcolor-1.2.0/UNLICENSE +0 -24
  939. data/ext/cargo-vendor/termcolor-1.2.0/rustfmt.toml +0 -2
  940. data/ext/cargo-vendor/termcolor-1.2.0/src/lib.rs +0 -2350
  941. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/.cargo-checksum.json +0 -1
  942. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/Cargo.toml +0 -96
  943. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/src/lib.rs +0 -141
  944. data/ext/cargo-vendor/wasi-common-12.0.1/.cargo-checksum.json +0 -1
  945. data/ext/cargo-vendor/wasi-common-12.0.1/Cargo.toml +0 -87
  946. data/ext/cargo-vendor/wasm-encoder-0.31.1/.cargo-checksum.json +0 -1
  947. data/ext/cargo-vendor/wasm-encoder-0.31.1/Cargo.toml +0 -33
  948. data/ext/cargo-vendor/wasm-encoder-0.31.1/src/component/types.rs +0 -784
  949. data/ext/cargo-vendor/wasmparser-0.110.0/.cargo-checksum.json +0 -1
  950. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.lock +0 -644
  951. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.toml +0 -54
  952. data/ext/cargo-vendor/wasmparser-0.110.0/src/limits.rs +0 -59
  953. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/types.rs +0 -548
  954. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/types.rs +0 -1141
  955. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core.rs +0 -35
  956. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/component.rs +0 -3144
  957. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/core.rs +0 -1314
  958. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/types.rs +0 -3197
  959. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator.rs +0 -1568
  960. data/ext/cargo-vendor/wasmparser-0.111.0/.cargo-checksum.json +0 -1
  961. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.lock +0 -644
  962. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.toml +0 -54
  963. data/ext/cargo-vendor/wasmparser-0.111.0/src/binary_reader.rs +0 -1706
  964. data/ext/cargo-vendor/wasmparser-0.111.0/src/lib.rs +0 -726
  965. data/ext/cargo-vendor/wasmparser-0.111.0/src/limits.rs +0 -59
  966. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/types.rs +0 -548
  967. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/types.rs +0 -1141
  968. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/component.rs +0 -3148
  969. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/core.rs +0 -1314
  970. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/operators.rs +0 -3466
  971. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/types.rs +0 -3283
  972. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator.rs +0 -1568
  973. data/ext/cargo-vendor/wasmprinter-0.2.63/.cargo-checksum.json +0 -1
  974. data/ext/cargo-vendor/wasmprinter-0.2.63/Cargo.toml +0 -39
  975. data/ext/cargo-vendor/wasmprinter-0.2.63/src/lib.rs +0 -2962
  976. data/ext/cargo-vendor/wasmprinter-0.2.63/src/operator.rs +0 -873
  977. data/ext/cargo-vendor/wasmtime-12.0.1/.cargo-checksum.json +0 -1
  978. data/ext/cargo-vendor/wasmtime-12.0.1/Cargo.toml +0 -186
  979. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/component.rs +0 -466
  980. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/typed.rs +0 -2326
  981. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/instance.rs +0 -781
  982. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/linker.rs +0 -479
  983. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/mod.rs +0 -316
  984. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/types.rs +0 -562
  985. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/values.rs +0 -1376
  986. data/ext/cargo-vendor/wasmtime-12.0.1/src/config.rs +0 -2096
  987. data/ext/cargo-vendor/wasmtime-12.0.1/src/engine/serialization.rs +0 -629
  988. data/ext/cargo-vendor/wasmtime-12.0.1/src/engine.rs +0 -756
  989. data/ext/cargo-vendor/wasmtime-12.0.1/src/instance.rs +0 -883
  990. data/ext/cargo-vendor/wasmtime-12.0.1/src/limits.rs +0 -357
  991. data/ext/cargo-vendor/wasmtime-12.0.1/src/module.rs +0 -1346
  992. data/ext/cargo-vendor/wasmtime-12.0.1/src/store.rs +0 -2212
  993. data/ext/cargo-vendor/wasmtime-12.0.1/src/trampoline/memory.rs +0 -202
  994. data/ext/cargo-vendor/wasmtime-12.0.1/src/trampoline.rs +0 -76
  995. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/.cargo-checksum.json +0 -1
  996. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/Cargo.toml +0 -22
  997. data/ext/cargo-vendor/wasmtime-cache-12.0.1/.cargo-checksum.json +0 -1
  998. data/ext/cargo-vendor/wasmtime-cache-12.0.1/Cargo.toml +0 -73
  999. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/config.rs +0 -584
  1000. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/worker/tests.rs +0 -758
  1001. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/worker.rs +0 -903
  1002. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/.cargo-checksum.json +0 -1
  1003. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/Cargo.toml +0 -58
  1004. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/bindgen.rs +0 -343
  1005. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/component.rs +0 -1319
  1006. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/tests/codegen/unions.wit +0 -66
  1007. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/tests/codegen/variants.wit +0 -147
  1008. data/ext/cargo-vendor/wasmtime-component-util-12.0.1/.cargo-checksum.json +0 -1
  1009. data/ext/cargo-vendor/wasmtime-component-util-12.0.1/Cargo.toml +0 -25
  1010. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/.cargo-checksum.json +0 -1
  1011. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/Cargo.toml +0 -93
  1012. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/builder.rs +0 -116
  1013. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/compiler.rs +0 -1297
  1014. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/attr.rs +0 -339
  1015. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug.rs +0 -20
  1016. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/func_environ.rs +0 -2377
  1017. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/.cargo-checksum.json +0 -1
  1018. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/Cargo.toml +0 -57
  1019. data/ext/cargo-vendor/wasmtime-environ-12.0.1/.cargo-checksum.json +0 -1
  1020. data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.lock +0 -736
  1021. data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.toml +0 -116
  1022. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/address_map.rs +0 -192
  1023. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/builtin.rs +0 -127
  1024. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/compilation.rs +0 -400
  1025. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/compiler.rs +0 -47
  1026. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/info.rs +0 -583
  1027. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/types.rs +0 -1920
  1028. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/trampoline.rs +0 -3269
  1029. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/transcode.rs +0 -168
  1030. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/lib.rs +0 -76
  1031. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module.rs +0 -1083
  1032. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_environ.rs +0 -887
  1033. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_types.rs +0 -78
  1034. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/stack_map.rs +0 -36
  1035. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/tunables.rs +0 -115
  1036. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/vmoffsets.rs +0 -940
  1037. data/ext/cargo-vendor/wasmtime-fiber-12.0.1/.cargo-checksum.json +0 -1
  1038. data/ext/cargo-vendor/wasmtime-fiber-12.0.1/Cargo.toml +0 -51
  1039. data/ext/cargo-vendor/wasmtime-jit-12.0.1/.cargo-checksum.json +0 -1
  1040. data/ext/cargo-vendor/wasmtime-jit-12.0.1/Cargo.toml +0 -104
  1041. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/instantiate.rs +0 -760
  1042. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/lib.rs +0 -38
  1043. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/miri.rs +0 -15
  1044. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/systemv.rs +0 -90
  1045. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/winx64.rs +0 -44
  1046. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/.cargo-checksum.json +0 -1
  1047. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/Cargo.toml +0 -58
  1048. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/.cargo-checksum.json +0 -1
  1049. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/Cargo.toml +0 -37
  1050. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/.cargo-checksum.json +0 -1
  1051. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/Cargo.toml +0 -119
  1052. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/on_demand.rs +0 -127
  1053. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/pooling/index_allocator.rs +0 -599
  1054. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/pooling.rs +0 -1368
  1055. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator.rs +0 -414
  1056. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance.rs +0 -1345
  1057. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/lib.rs +0 -289
  1058. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/libcalls.rs +0 -627
  1059. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/memory.rs +0 -958
  1060. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/parking_spot.rs +0 -522
  1061. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/table.rs +0 -595
  1062. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/s390x.S +0 -62
  1063. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers/macos.rs +0 -476
  1064. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers.rs +0 -782
  1065. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/vmcontext.rs +0 -1221
  1066. data/ext/cargo-vendor/wasmtime-types-12.0.1/.cargo-checksum.json +0 -1
  1067. data/ext/cargo-vendor/wasmtime-types-12.0.1/Cargo.toml +0 -34
  1068. data/ext/cargo-vendor/wasmtime-types-12.0.1/src/lib.rs +0 -504
  1069. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/.cargo-checksum.json +0 -1
  1070. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/Cargo.toml +0 -32
  1071. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/.cargo-checksum.json +0 -1
  1072. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/Cargo.toml +0 -191
  1073. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/lib.rs +0 -131
  1074. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/command.rs +0 -91
  1075. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/ctx.rs +0 -237
  1076. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/filesystem.rs +0 -216
  1077. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/mod.rs +0 -185
  1078. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/pipe.rs +0 -846
  1079. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview1/mod.rs +0 -1870
  1080. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/clocks.rs +0 -107
  1081. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/env.rs +0 -37
  1082. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/exit.rs +0 -11
  1083. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem/sync.rs +0 -613
  1084. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem.rs +0 -1096
  1085. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/io.rs +0 -494
  1086. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/mod.rs +0 -6
  1087. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/unix.rs +0 -133
  1088. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/worker_thread_stdin.rs +0 -133
  1089. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio.rs +0 -218
  1090. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stream.rs +0 -302
  1091. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/table.rs +0 -287
  1092. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/filesystem/filesystem.wit +0 -782
  1093. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/http/types.wit +0 -159
  1094. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/io/streams.wit +0 -254
  1095. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/logging/handler.wit +0 -34
  1096. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/command-extended.wit +0 -36
  1097. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/command.wit +0 -26
  1098. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/proxy.wit +0 -9
  1099. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/reactor.wit +0 -24
  1100. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/ip-name-lookup.wit +0 -69
  1101. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/network.wit +0 -187
  1102. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/tcp-create-socket.wit +0 -27
  1103. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/tcp.wit +0 -255
  1104. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/udp-create-socket.wit +0 -27
  1105. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/udp.wit +0 -211
  1106. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/environment.wit +0 -16
  1107. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/exit.wit +0 -4
  1108. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/preopens.wit +0 -7
  1109. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/main.wit +0 -1
  1110. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/test.wit +0 -28
  1111. data/ext/cargo-vendor/wasmtime-winch-12.0.1/.cargo-checksum.json +0 -1
  1112. data/ext/cargo-vendor/wasmtime-winch-12.0.1/Cargo.toml +0 -63
  1113. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/.cargo-checksum.json +0 -1
  1114. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/Cargo.toml +0 -32
  1115. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/lib.rs +0 -1705
  1116. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/rust.rs +0 -498
  1117. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/types.rs +0 -185
  1118. data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +0 -1
  1119. data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +0 -50
  1120. data/ext/cargo-vendor/wast-63.0.0/src/component/binary.rs +0 -1022
  1121. data/ext/cargo-vendor/wast-63.0.0/src/component/expand.rs +0 -880
  1122. data/ext/cargo-vendor/wast-63.0.0/src/component/resolve.rs +0 -1010
  1123. data/ext/cargo-vendor/wast-63.0.0/src/component/types.rs +0 -1013
  1124. data/ext/cargo-vendor/wast-63.0.0/src/component/wast.rs +0 -166
  1125. data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +0 -1246
  1126. data/ext/cargo-vendor/wast-63.0.0/src/core/expr.rs +0 -1970
  1127. data/ext/cargo-vendor/wast-63.0.0/src/core/table.rs +0 -305
  1128. data/ext/cargo-vendor/wast-63.0.0/src/core/types.rs +0 -843
  1129. data/ext/cargo-vendor/wast-63.0.0/src/core/wast.rs +0 -236
  1130. data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +0 -537
  1131. data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +0 -1
  1132. data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +0 -27
  1133. data/ext/cargo-vendor/wiggle-12.0.1/.cargo-checksum.json +0 -1
  1134. data/ext/cargo-vendor/wiggle-12.0.1/Cargo.toml +0 -106
  1135. data/ext/cargo-vendor/wiggle-12.0.1/src/lib.rs +0 -1198
  1136. data/ext/cargo-vendor/wiggle-generate-12.0.1/.cargo-checksum.json +0 -1
  1137. data/ext/cargo-vendor/wiggle-generate-12.0.1/Cargo.toml +0 -58
  1138. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/config.rs +0 -697
  1139. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/types/record.rs +0 -117
  1140. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/wasmtime.rs +0 -170
  1141. data/ext/cargo-vendor/wiggle-macro-12.0.1/.cargo-checksum.json +0 -1
  1142. data/ext/cargo-vendor/wiggle-macro-12.0.1/Cargo.toml +0 -55
  1143. data/ext/cargo-vendor/winapi-util-0.1.5/.cargo-checksum.json +0 -1
  1144. data/ext/cargo-vendor/winapi-util-0.1.5/COPYING +0 -3
  1145. data/ext/cargo-vendor/winapi-util-0.1.5/Cargo.toml +0 -30
  1146. data/ext/cargo-vendor/winapi-util-0.1.5/LICENSE-MIT +0 -21
  1147. data/ext/cargo-vendor/winapi-util-0.1.5/README.md +0 -58
  1148. data/ext/cargo-vendor/winapi-util-0.1.5/UNLICENSE +0 -24
  1149. data/ext/cargo-vendor/winapi-util-0.1.5/rustfmt.toml +0 -2
  1150. data/ext/cargo-vendor/winapi-util-0.1.5/src/console.rs +0 -402
  1151. data/ext/cargo-vendor/winapi-util-0.1.5/src/file.rs +0 -168
  1152. data/ext/cargo-vendor/winapi-util-0.1.5/src/lib.rs +0 -32
  1153. data/ext/cargo-vendor/winapi-util-0.1.5/src/win.rs +0 -246
  1154. data/ext/cargo-vendor/winch-codegen-0.10.1/.cargo-checksum.json +0 -1
  1155. data/ext/cargo-vendor/winch-codegen-0.10.1/Cargo.toml +0 -62
  1156. data/ext/cargo-vendor/winch-codegen-0.10.1/LICENSE +0 -219
  1157. data/ext/cargo-vendor/winch-codegen-0.10.1/src/abi/mod.rs +0 -251
  1158. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/call.rs +0 -199
  1159. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/context.rs +0 -368
  1160. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/control.rs +0 -437
  1161. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/mod.rs +0 -330
  1162. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/abi.rs +0 -250
  1163. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/address.rs +0 -144
  1164. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/asm.rs +0 -312
  1165. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/masm.rs +0 -293
  1166. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/regs.rs +0 -166
  1167. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/reg.rs +0 -51
  1168. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/abi.rs +0 -375
  1169. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/address.rs +0 -17
  1170. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/asm.rs +0 -855
  1171. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/masm.rs +0 -516
  1172. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/mod.rs +0 -149
  1173. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/regs.rs +0 -192
  1174. data/ext/cargo-vendor/winch-codegen-0.10.1/src/masm.rs +0 -352
  1175. data/ext/cargo-vendor/winch-codegen-0.10.1/src/regalloc.rs +0 -70
  1176. data/ext/cargo-vendor/winch-codegen-0.10.1/src/regset.rs +0 -90
  1177. data/ext/cargo-vendor/winch-codegen-0.10.1/src/stack.rs +0 -235
  1178. data/ext/cargo-vendor/winch-codegen-0.10.1/src/trampoline.rs +0 -494
  1179. data/ext/cargo-vendor/winch-codegen-0.10.1/src/visitor.rs +0 -656
  1180. data/ext/cargo-vendor/wit-parser-0.9.2/.cargo-checksum.json +0 -1
  1181. data/ext/cargo-vendor/wit-parser-0.9.2/Cargo.toml +0 -62
  1182. data/ext/cargo-vendor/wit-parser-0.9.2/src/abi.rs +0 -2199
  1183. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/lex.rs +0 -717
  1184. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/resolve.rs +0 -1437
  1185. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast.rs +0 -1362
  1186. data/ext/cargo-vendor/wit-parser-0.9.2/src/lib.rs +0 -666
  1187. data/ext/cargo-vendor/wit-parser-0.9.2/src/live.rs +0 -116
  1188. data/ext/cargo-vendor/wit-parser-0.9.2/src/resolve.rs +0 -1749
  1189. data/ext/cargo-vendor/wit-parser-0.9.2/src/sizealign.rs +0 -145
  1190. data/ext/cargo-vendor/wit-parser-0.9.2/tests/all.rs +0 -168
  1191. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/empty-union.wit +0 -6
  1192. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/empty-union.wit.result +0 -5
  1193. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/types.wit +0 -61
  1194. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-diamond.wit +0 -22
  1195. /data/ext/cargo-vendor/{addr2line-0.20.0 → cap-net-ext-2.0.0}/LICENSE-APACHE +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1/LICENSE → cap-net-ext-2.0.0/LICENSE-Apache-2.0_WITH_LLVM-exception} +0 -0
  1197. /data/ext/cargo-vendor/{env_logger-0.10.0 → cap-net-ext-2.0.0}/LICENSE-MIT +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-bforest-0.100.0}/LICENSE +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/README.md +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/src/node.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/src/path.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-0.100.0}/LICENSE +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/README.md +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/benches/x64-evex-encoding.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/build.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/alias_analysis.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/cfg_printer.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/constant_hash.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ctxhash.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/cursor.rs +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/data_value.rs +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dbg.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dce.rs +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dominator_tree.rs +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/cost.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/domtree.rs +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/elaborate.rs +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph.rs +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/flowgraph.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/fx.rs +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/inst_predicates.rs +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/builder.rs +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/layout.rs +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/progpoint.rs +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/imms.rs +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/regs.rs +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/unwind.rs +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst_neon.isle +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/mod.rs +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/settings.rs +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/mod.rs +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/regs.rs +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/unwind.rs +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/lower.rs +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/mod.rs +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/settings.rs +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/args.rs +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/emit.rs +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/imms.rs +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/regs.rs +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/unwind.rs +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower/isle.rs +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower.rs +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/mod.rs +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/settings.rs +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/encoding/mod.rs +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/encoding/vex.rs +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/emit_state.rs +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/regs.rs +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind.rs +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/mod.rs +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/settings.rs +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/iterators.rs +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/legalizer/globalvalue.rs +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/legalizer/table.rs +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/loop_analysis.rs +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/blockorder.rs +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/compile.rs +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/helpers.rs +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/inst_common.rs +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/lower.rs +0 -0
  1273. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/valueregs.rs +0 -0
  1274. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/nan_canonicalization.rs +0 -0
  1275. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/README.md +0 -0
  1276. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/arithmetic.isle +0 -0
  1277. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/generated_code.rs +0 -0
  1278. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/remat.isle +0 -0
  1279. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/shifts.isle +0 -0
  1280. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts.rs +0 -0
  1281. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/prelude_opt.isle +0 -0
  1282. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/print_errors.rs +0 -0
  1283. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/remove_constant_phis.rs +0 -0
  1284. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/result.rs +0 -0
  1285. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/scoped_hash_map.rs +0 -0
  1286. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/settings.rs +0 -0
  1287. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/souper_harvest.rs +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/timing.rs +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/unionfind.rs +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/unreachable_code.rs +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/write.rs +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-meta-0.100.0}/LICENSE +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/README.md +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/formats.rs +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/instructions.rs +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/isa.rs +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/mod.rs +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/operands.rs +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/settings.rs +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/types.rs +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/typevar.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/error.rs +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/gen_settings.rs +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/gen_types.rs +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/arm64.rs +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/mod.rs +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/riscv64.rs +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/s390x.rs +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/x86.rs +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/lib.rs +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/entities.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/formats.rs +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/immediates.rs +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/mod.rs +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/settings.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/types.rs +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/srcgen.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/unique_table.rs +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-codegen-shared-0.100.0}/LICENSE +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/README.md +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/src/constant_hash.rs +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/src/constants.rs +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-control-0.100.0}/LICENSE +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/README.md +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/chaos.rs +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/lib.rs +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/zero_sized.rs +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-entity-0.100.0}/LICENSE +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/README.md +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/boxed_slice.rs +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/iter.rs +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/keys.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/map.rs +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/set.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-frontend-0.100.0}/LICENSE +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/README.md +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/frontend.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/ssa.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/switch.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/variable.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/README.md +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/build.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/bad_converters.isle +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/error1.isle +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/extra_parens.isle +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/impure_expression.isle +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/impure_rhs.isle +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/multi_prio.isle +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/borrows.isle +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/borrows_main.rs +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/iflets.isle +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/iflets_main.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_constructor.isle +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_constructor_main.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_extractor.isle +0 -0
  1359. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_extractor_main.rs +0 -0
  1360. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/test.isle +0 -0
  1361. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/test_main.rs +0 -0
  1362. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/bound_var.isle +0 -0
  1363. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/construct_and_extract.isle +0 -0
  1364. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/conversions.isle +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/conversions_extern.isle +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/let.isle +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/nodebug.isle +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test2.isle +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test3.isle +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test4.isle +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/tutorial.isle +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/iconst.isle +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/iconst_main.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/let_shadowing.isle +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/let_shadowing_main.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/ast.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/codegen.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/compile.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/error.rs +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/lexer.rs +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/lib.rs +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/log.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/overlap.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/parser.rs +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/sema.rs +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/serialize.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/trie_again.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/tests/run_tests.rs +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-native-0.100.0}/LICENSE +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-native-0.100.0}/README.md +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-native-0.100.0}/src/riscv.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → cranelift-wasm-0.100.0}/LICENSE +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/README.md +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/code_translator/bounds_checks.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/environ/mod.rs +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/module_translator.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/state.rs +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/tests/wasm_testsuite.rs +0 -0
  1400. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/arith.wat +0 -0
  1401. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/br_table.wat +0 -0
  1402. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/call-simd.wat +0 -0
  1403. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/call.wat +0 -0
  1404. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_fannkuch.wat +0 -0
  1405. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_fasta.wat +0 -0
  1406. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_ifs.wat +0 -0
  1407. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_primes.wat +0 -0
  1408. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/fac-multi-value.wat +0 -0
  1409. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/fibonacci.wat +0 -0
  1410. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/globals.wat +0 -0
  1411. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/icall-simd.wat +0 -0
  1412. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/icall.wat +0 -0
  1413. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-0.wat +0 -0
  1414. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-1.wat +0 -0
  1415. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-2.wat +0 -0
  1416. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-3.wat +0 -0
  1417. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-4.wat +0 -0
  1418. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-5.wat +0 -0
  1419. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-6.wat +0 -0
  1420. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  1421. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-unreachable-else-params.wat +0 -0
  1422. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  1423. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/memory.wat +0 -0
  1424. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-0.wat +0 -0
  1425. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-1.wat +0 -0
  1426. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-10.wat +0 -0
  1427. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-11.wat +0 -0
  1428. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-12.wat +0 -0
  1429. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-13.wat +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-14.wat +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-15.wat +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-16.wat +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-17.wat +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-2.wat +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-3.wat +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-4.wat +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-5.wat +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-6.wat +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-7.wat +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-8.wat +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-9.wat +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/nullref.wat +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/passive-data.wat +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/pr2303.wat +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/pr2559.wat +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/ref-func-0.wat +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/rust_fannkuch.wat +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/select.wat +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/simd-store.wat +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/simd.wat +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/table-copy.wat +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/unreachable_code.wat +0 -0
  1453. /data/ext/cargo-vendor/{fallible-iterator-0.2.0 → fallible-iterator-0.3.0}/LICENSE-APACHE +0 -0
  1454. /data/ext/cargo-vendor/{fallible-iterator-0.2.0 → fallible-iterator-0.3.0}/LICENSE-MIT +0 -0
  1455. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/LICENSE-APACHE +0 -0
  1456. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/LICENSE-MIT +0 -0
  1457. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/README.md +0 -0
  1458. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/crates-io.md +0 -0
  1459. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/format.rs +0 -0
  1460. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/seed.rs +0 -0
  1461. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/size_hint.rs +0 -0
  1462. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/de.rs +0 -0
  1463. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/doc.rs +0 -0
  1464. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/ser.rs +0 -0
  1466. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/ser/impossible.rs +0 -0
  1467. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/std_error.rs +0 -0
  1468. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/LICENSE-APACHE +0 -0
  1469. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/LICENSE-MIT +0 -0
  1470. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/README.md +0 -0
  1471. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/crates-io.md +0 -0
  1472. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/bound.rs +0 -0
  1473. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/de.rs +0 -0
  1474. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/dummy.rs +0 -0
  1475. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/fragment.rs +0 -0
  1476. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/ast.rs +0 -0
  1477. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/attr.rs +0 -0
  1478. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/case.rs +0 -0
  1479. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/check.rs +0 -0
  1480. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/ctxt.rs +0 -0
  1481. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/mod.rs +0 -0
  1482. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/receiver.rs +0 -0
  1483. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/respan.rs +0 -0
  1484. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/symbol.rs +0 -0
  1485. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/pretend.rs +0 -0
  1486. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/this.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-cap-std-sync-13.0.0}/LICENSE +0 -0
  1488. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/README.md +0 -0
  1489. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/clocks.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/dir.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/file.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/net.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched/unix.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched/windows.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/stdio.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasi-common-13.0.0}/LICENSE +0 -0
  1498. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/README.md +0 -0
  1499. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/README.md +0 -0
  1500. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/docs/README.md +0 -0
  1501. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/README.md +0 -0
  1502. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/docs.md +0 -0
  1503. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  1504. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  1505. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  1506. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  1507. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  1508. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  1509. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  1510. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  1511. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  1512. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  1513. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  1514. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
  1515. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  1516. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  1517. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/docs.html +0 -0
  1518. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/docs.md +0 -0
  1519. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  1520. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  1521. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/proposal-template/README.md +0 -0
  1522. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/proposals/README.md +0 -0
  1523. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/snapshots/README.md +0 -0
  1524. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/standard/README.md +0 -0
  1525. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/build.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/clocks.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/ctx.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/dir.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/error.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/file.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/lib.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/pipe.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/random.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/sched/subscription.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/sched.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/mod.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_0.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_1/error.rs +0 -0
  1539. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_1.rs +0 -0
  1540. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/string_array.rs +0 -0
  1541. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/table.rs +0 -0
  1542. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasm-encoder-0.32.0}/LICENSE +0 -0
  1543. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/README.md +0 -0
  1544. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/aliases.rs +0 -0
  1545. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/builder.rs +0 -0
  1546. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/canonicals.rs +0 -0
  1547. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/components.rs +0 -0
  1548. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/exports.rs +0 -0
  1549. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/imports.rs +0 -0
  1550. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/instances.rs +0 -0
  1551. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/modules.rs +0 -0
  1552. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/names.rs +0 -0
  1553. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/start.rs +0 -0
  1554. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component.rs +0 -0
  1555. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/code.rs +0 -0
  1556. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/custom.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/data.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/dump.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/elements.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/exports.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/functions.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/globals.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/imports.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/linking.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/memories.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/names.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/producers.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/start.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/tables.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/tags.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/types.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/lib.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/raw.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasm-encoder-0.33.1}/LICENSE +0 -0
  1576. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmparser-0.112.0}/LICENSE +0 -0
  1577. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/README.md +0 -0
  1578. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/benches/benchmark.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/examples/simple.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/binary_reader.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/lib.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/parser.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/aliases.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/canonicals.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/exports.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/imports.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/instances.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/names.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/start.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/code.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/coredumps.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/custom.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/data.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.112.0}/src/readers/core/dylink0.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/elements.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/exports.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/functions.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/globals.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/imports.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/init.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/memories.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/names.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/operators.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/producers.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/tables.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/tags.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.112.0}/src/readers/core.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/resources.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/func.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/names.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/operators.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/tests/big-module.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmparser-0.113.1}/LICENSE +0 -0
  1616. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/README.md +0 -0
  1617. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/benches/benchmark.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/examples/simple.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/parser.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/aliases.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/canonicals.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/exports.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/imports.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/instances.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/names.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/start.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/code.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/coredumps.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/custom.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/data.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/elements.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/exports.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/functions.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/globals.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/imports.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/init.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/memories.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/names.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/operators.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/producers.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/tables.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/tags.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/resources.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/validator/func.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/validator/names.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/tests/big-module.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmprinter-0.2.66}/LICENSE +0 -0
  1650. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmprinter-0.2.66}/README.md +0 -0
  1651. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmprinter-0.2.66}/tests/all.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-13.0.0}/LICENSE +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/README.md +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/code.rs +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/compiler.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func/host.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func/options.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/matching.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/resources.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/storage.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/store.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/coredump.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/externals.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/func/typed.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/func.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/lib.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/linker.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/memory.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/module/registry.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/profiling.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/ref.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/resources.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/signatures.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/context.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/data.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/func_refs.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/func.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/global.rs +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/table.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trap.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/types/matching.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/types.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/unix.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/values.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/windows.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-asm-macros-12.0.1 → wasmtime-asm-macros-13.0.0}/src/lib.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-cache-13.0.0}/LICENSE +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/build.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/config/tests.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/lib.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/tests.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/tests/cache_write_default_config.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/src/lib.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/char.wit +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/conventions.wit +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/direct-import.wit +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/empty.wit +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/flags.wit +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/floats.wit +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/function-new.wit +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/integers.wit +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/lists.wit +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/many-arguments.wit +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/multi-return.wit +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/records.wit +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/rename.wit +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/share-types.wit +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-functions.wit +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-lists.wit +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-wasi.wit +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/small-anonymous.wit +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke-default.wit +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke-export.wit +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke.wit +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/strings.wit +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/use-paths.wit +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen.rs +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-component-util-12.0.1 → wasmtime-component-util-13.0.0}/src/lib.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-cranelift-13.0.0}/LICENSE +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/SECURITY.md +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/compiler/component.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/gc.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/address_transform.rs +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/expression.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/line_program.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/mod.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/refs.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/simulate.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/unit.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/utils.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/write_debuginfo.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/compiled_function.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/isa_builder.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/lib.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/obj.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-environ-13.0.0}/LICENSE +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/examples/factc.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/dfg.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate/adapt.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate/inline.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/types/resources.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/core_types.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/signature.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/traps.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/obj.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/ref_bits.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/scopevec.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/trap_encoding.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-fiber-13.0.0}/LICENSE +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/build.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/lib.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/aarch64.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/arm.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/riscv64.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/s390x.S +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/x86.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/x86_64.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/windows.c +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/windows.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-types-12.0.1 → wasmtime-jit-13.0.0}/LICENSE +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/code_memory.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/debug.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/demangling.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/jitdump.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/perfmap.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/vtune.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/unwind.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/README.md +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/gdb_jit_int.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/lib.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/perf_jitdump.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/lib.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/libc.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/miri.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/win.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-runtime-13.0.0}/LICENSE +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/build.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component/libcalls.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component/resources.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/cow.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/debug_builtins.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/export.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/externref.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/helpers.c +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/imports.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/miri.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/unix.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/windows.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap_vec.rs +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/module_id.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/send_sync_ptr.rs +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/store_box.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/aarch64.rs +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/riscv64.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/s390x.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/x86_64.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/coredump.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/unix.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/windows.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
  1822. /data/ext/cargo-vendor/{wast-63.0.0 → wasmtime-types-13.0.0}/LICENSE +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-types-12.0.1 → wasmtime-types-13.0.0}/src/error.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-12.0.1 → wasmtime-versioned-export-macros-13.0.0}/src/lib.rs +0 -0
  1825. /data/ext/cargo-vendor/{wat-1.0.70 → wasmtime-wasi-13.0.0}/LICENSE +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/README.md +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/build.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/clocks/host.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/clocks.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/error.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1/src/preview2/preview2 → wasmtime-wasi-13.0.0/src/preview2/host}/random.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/poll.rs +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/random.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base → wasmtime-wasi-13.0.0/wit/deps/cli}/stdio.wit +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/timezone.wit +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/http/incoming-handler.wit +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/poll/poll.wit +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/insecure-seed.wit +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/insecure.wit +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/random.wit +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/witx/typenames.witx +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
  1847. /data/ext/cargo-vendor/{file-per-thread-logger-0.2.0 → wasmtime-winch-13.0.0}/LICENSE +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/builder.rs +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/compiler.rs +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/lib.rs +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-12.0.1 → wasmtime-wit-bindgen-13.0.0}/src/source.rs +0 -0
  1852. /data/ext/cargo-vendor/{wiggle-12.0.1 → wast-65.0.1}/LICENSE +0 -0
  1853. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/README.md +0 -0
  1854. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/alias.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/component.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/custom.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/export.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/func.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/import.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/instance.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/item_ref.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/module.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/custom.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/export.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/func.rs +0 -0
  1867. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/global.rs +0 -0
  1868. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/import.rs +0 -0
  1869. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/memory.rs +0 -0
  1870. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/module.rs +0 -0
  1871. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/deinline_import_export.rs +0 -0
  1872. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/mod.rs +0 -0
  1873. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/names.rs +0 -0
  1874. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/types.rs +0 -0
  1875. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/tag.rs +0 -0
  1876. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core.rs +0 -0
  1877. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/encode.rs +0 -0
  1878. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/error.rs +0 -0
  1879. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/gensym.rs +0 -0
  1880. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/lexer.rs +0 -0
  1881. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/names.rs +0 -0
  1882. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/parser.rs +0 -0
  1883. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/token.rs +0 -0
  1884. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/wast.rs +0 -0
  1885. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/wat.rs +0 -0
  1886. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/annotations.rs +0 -0
  1887. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/comments.rs +0 -0
  1888. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-index.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name2.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name3.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block1.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block1.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block2.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block2.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block3.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block3.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/inline1.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/inline1.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string1.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string1.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string10.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string10.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string11.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string11.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string12.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string12.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string13.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string13.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string14.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string14.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string15.wat +0 -0
  1977. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string15.wat.err +0 -0
  1978. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string16.wat +0 -0
  1979. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string16.wat.err +0 -0
  1980. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string2.wat +0 -0
  1981. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string2.wat.err +0 -0
  1982. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string3.wat +0 -0
  1983. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string3.wat.err +0 -0
  1984. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string4.wat +0 -0
  1985. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string4.wat.err +0 -0
  1986. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string5.wat +0 -0
  1987. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string5.wat.err +0 -0
  1988. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string6.wat +0 -0
  1989. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string6.wat.err +0 -0
  1990. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string7.wat +0 -0
  1991. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string7.wat.err +0 -0
  1992. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string8.wat +0 -0
  1993. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string8.wat.err +0 -0
  1994. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string9.wat +0 -0
  1995. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string9.wat.err +0 -0
  1996. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/unbalanced.wat +0 -0
  1997. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
  1998. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail.rs +0 -0
  1999. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/recursive.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wat-1.0.73}/LICENSE +0 -0
  2001. /data/ext/cargo-vendor/{wat-1.0.70 → wat-1.0.73}/README.md +0 -0
  2002. /data/ext/cargo-vendor/{wat-1.0.70 → wat-1.0.73}/src/lib.rs +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-macro-12.0.1 → wiggle-13.0.0}/LICENSE +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/README.md +0 -0
  2005. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/borrow.rs +0 -0
  2006. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/error.rs +0 -0
  2007. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/guest_type.rs +0 -0
  2008. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/region.rs +0 -0
  2009. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/wasmtime.rs +0 -0
  2010. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/README.md +0 -0
  2011. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/codegen_settings.rs +0 -0
  2012. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/funcs.rs +0 -0
  2013. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/lib.rs +0 -0
  2014. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/lifetimes.rs +0 -0
  2015. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/module_trait.rs +0 -0
  2016. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/names.rs +0 -0
  2017. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/error.rs +0 -0
  2018. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/flags.rs +0 -0
  2019. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/handle.rs +0 -0
  2020. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/mod.rs +0 -0
  2021. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/variant.rs +0 -0
  2022. /data/ext/cargo-vendor/{wiggle-macro-12.0.1 → wiggle-macro-13.0.0}/src/lib.rs +0 -0
  2023. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → winch-codegen-0.11.0}/LICENSE +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/build.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/abi/local.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/codegen/env.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/frame/mod.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/isa/aarch64/mod.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/isa/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/lib.rs +0 -0
  2031. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/README.md +0 -0
  2032. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/src/ast/toposort.rs +0 -0
  2033. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/comments.wit +0 -0
  2034. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2035. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2036. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/root.wit +0 -0
  2037. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2038. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/cross-package-resource/foo.wit +0 -0
  2039. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2040. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/join.wit +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/embedded.wit.md +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/empty.wit +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/root.wit +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/root.wit +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/functions.wit +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/world.wit +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/include-reps.wit +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/kebab-name-include-with.wit +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/many-names/a.wit +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/many-names/b.wit +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/bar.wit +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/cycle-a.wit +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/cycle-b.wit +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/foo.wit +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax1.wit +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax3.wit +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax4.wit +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/async.wit.result +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/async1.wit.result +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function.wit +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2090. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2091. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2092. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2093. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2094. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2095. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-list.wit +0 -0
  2096. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2097. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2098. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  2099. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2100. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2101. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  2102. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2103. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2104. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  2105. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2106. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2107. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  2108. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2109. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2110. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  2111. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2112. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2113. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2114. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2115. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2116. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2117. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2118. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2119. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2120. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2121. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2122. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2123. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2124. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2125. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2126. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2127. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2128. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2129. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2130. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2131. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2132. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2133. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2134. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2135. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2136. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2137. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2138. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2139. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2140. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle.wit +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle2.wit +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle3.wit +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle4.wit +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle5.wit +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2165. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2166. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2167. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2168. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2169. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2170. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2171. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2172. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2173. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2174. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2175. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/export-twice.wit +0 -0
  2176. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2177. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2178. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2179. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2180. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2181. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2182. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2183. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2184. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2185. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2186. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2187. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap1.wit +0 -0
  2188. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -0
  2189. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap2.wit +0 -0
  2190. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -0
  2191. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-twice.wit +0 -0
  2192. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2193. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2194. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2195. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2196. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2197. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2198. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2199. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2200. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2201. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2202. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-md.md +0 -0
  2203. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-md.wit.result +0 -0
  2204. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2205. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2206. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2207. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2208. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2209. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2210. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2211. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2212. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2213. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2214. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/keyword.wit +0 -0
  2215. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2216. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/missing-package.wit +0 -0
  2217. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2218. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2219. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2220. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2221. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2222. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2223. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2224. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2225. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2226. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2227. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/union-fuzz-2.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/union-fuzz-2.wit.result +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-empty.wit +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple.wit +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-return-borrow.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-return-own.wit +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources.wit +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources1.wit +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/shared-types.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/stress-export-elaborate.wit +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/type-then-eof.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/union-fuzz-1.wit +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/use-chain.wit +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/use.wit +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/foo.wit +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/wasi.wit +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-iface-no-collide.wit +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import1.wit +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import2.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import3.wit +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-same-fields4.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-top-level-funcs.wit +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-top-level-resources.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/worlds-union-dedup.wit +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/worlds-with-types.wit +0 -0
@@ -1,4651 +0,0 @@
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 `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26
-
27
- (rule (lower (f32const (u32_from_ieee32 x)))
28
- (imm $F32 x))
29
-
30
- ;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
31
-
32
- (rule (lower (f64const (u64_from_ieee64 x)))
33
- (imm $F64 x))
34
-
35
- ;;;; Rules for `null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
36
-
37
- (rule (lower (has_type ty (null)))
38
- (imm ty 0))
39
-
40
- ;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
-
42
- ;; `i64` and smaller.
43
-
44
- ;; Base case for 8 and 16-bit types
45
- (rule -6 (lower (has_type (fits_in_16 ty)
46
- (iadd x y)))
47
- (x64_add ty x y))
48
-
49
- ;; Base case for 32 and 64-bit types which might end up using the `lea`
50
- ;; instruction to fold multiple operations into one.
51
- ;;
52
- ;; Note that at this time this always generates a `lea` pseudo-instruction,
53
- ;; but the actual instruction emitted might be an `add` if it's equivalent.
54
- ;; For more details on this see the `emit.rs` logic to emit
55
- ;; `LoadEffectiveAddress`.
56
- (rule -5 (lower (has_type (ty_32_or_64 ty) (iadd x y)))
57
- (x64_lea ty (to_amode_add (mem_flags_trusted) x y (zero_offset))))
58
-
59
- ;; Higher-priority cases than the previous two where a load can be sunk into
60
- ;; the add instruction itself. Note that both operands are tested for
61
- ;; sink-ability since addition is commutative
62
- (rule -4 (lower (has_type (fits_in_64 ty)
63
- (iadd x (sinkable_load y))))
64
- (x64_add ty x y))
65
- (rule -3 (lower (has_type (fits_in_64 ty)
66
- (iadd (sinkable_load x) y)))
67
- (x64_add ty y x))
68
-
69
- ;; SSE.
70
-
71
- (rule (lower (has_type (multi_lane 8 16)
72
- (iadd x y)))
73
- (x64_paddb x y))
74
-
75
- (rule (lower (has_type (multi_lane 16 8)
76
- (iadd x y)))
77
- (x64_paddw x y))
78
-
79
- (rule (lower (has_type (multi_lane 32 4)
80
- (iadd x y)))
81
- (x64_paddd x y))
82
-
83
- (rule (lower (has_type (multi_lane 64 2)
84
- (iadd x y)))
85
- (x64_paddq x y))
86
-
87
- ;; `i128`
88
- (rule 1 (lower (has_type $I128 (iadd x y)))
89
- ;; Get the high/low registers for `x`.
90
- (let ((x_regs ValueRegs x)
91
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
92
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
93
- ;; Get the high/low registers for `y`.
94
- (let ((y_regs ValueRegs y)
95
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
96
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
97
- ;; Do an add followed by an add-with-carry.
98
- (with_flags (x64_add_with_flags_paired $I64 x_lo y_lo)
99
- (x64_adc_paired $I64 x_hi y_hi)))))
100
-
101
- ;;;; Helpers for `*_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
102
-
103
- (decl construct_overflow_op (CC ProducesFlags) InstOutput)
104
- (rule (construct_overflow_op cc inst)
105
- (let ((results ValueRegs (with_flags inst
106
- (x64_setcc_paired cc))))
107
- (output_pair (value_regs_get results 0)
108
- (value_regs_get results 1))))
109
-
110
- (decl construct_overflow_op_alu (Type CC AluRmiROpcode Gpr GprMemImm) InstOutput)
111
- (rule (construct_overflow_op_alu ty cc alu_op src1 src2)
112
- (construct_overflow_op cc (x64_alurmi_with_flags_paired alu_op ty src1 src2)))
113
-
114
- ;; This essentially creates
115
- ;; alu_<op1> x_lo, y_lo
116
- ;; alu_<op2> x_hi, y_hi
117
- ;; set<cc> r8
118
- (decl construct_overflow_op_alu_128 (CC AluRmiROpcode AluRmiROpcode Value Value) InstOutput)
119
- (rule (construct_overflow_op_alu_128 cc op1 op2 x y)
120
- ;; Get the high/low registers for `x`.
121
- (let ((x_regs ValueRegs x)
122
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
123
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
124
- ;; Get the high/low registers for `y`.
125
- (let ((y_regs ValueRegs y)
126
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
127
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
128
- (let ((lo_inst ProducesFlags (x64_alurmi_with_flags_paired op1 $I64 x_lo y_lo))
129
- (hi_inst ConsumesAndProducesFlags (x64_alurmi_with_flags_chained op2 $I64 x_hi y_hi))
130
- (of_inst ConsumesFlags (x64_setcc_paired cc))
131
-
132
- (result MultiReg (with_flags_chained lo_inst hi_inst of_inst)))
133
- (multi_reg_to_pair_and_single result)))))
134
-
135
- ;;;; Rules for `uadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
136
-
137
- (rule 1 (lower (uadd_overflow x y @ (value_type (fits_in_64 ty))))
138
- (construct_overflow_op_alu ty (CC.B) (AluRmiROpcode.Add) x y))
139
-
140
- ;; i128 gets lowered into adc and add
141
- (rule 0 (lower (uadd_overflow x y @ (value_type $I128)))
142
- (construct_overflow_op_alu_128 (CC.B) (AluRmiROpcode.Add) (AluRmiROpcode.Adc) x y))
143
-
144
- ;;;; Rules for `sadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
145
-
146
- (rule 1 (lower (sadd_overflow x y @ (value_type (fits_in_64 ty))))
147
- (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Add) x y))
148
-
149
- (rule 0 (lower (sadd_overflow x y @ (value_type $I128)))
150
- (construct_overflow_op_alu_128 (CC.O) (AluRmiROpcode.Add) (AluRmiROpcode.Adc) x y))
151
-
152
- ;;;; Rules for `usub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
153
-
154
- (rule 1 (lower (usub_overflow x y @ (value_type (fits_in_64 ty))))
155
- (construct_overflow_op_alu ty (CC.B) (AluRmiROpcode.Sub) x y))
156
-
157
- (rule 0 (lower (usub_overflow x y @ (value_type $I128)))
158
- (construct_overflow_op_alu_128 (CC.B) (AluRmiROpcode.Sub) (AluRmiROpcode.Sbb) x y))
159
-
160
- ;;;; Rules for `ssub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
161
-
162
- (rule 1 (lower (ssub_overflow x y @ (value_type (fits_in_64 ty))))
163
- (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Sub) x y))
164
-
165
- (rule 0 (lower (ssub_overflow x y @ (value_type $I128)))
166
- (construct_overflow_op_alu_128 (CC.O) (AluRmiROpcode.Sub) (AluRmiROpcode.Sbb) x y))
167
-
168
- ;;;; Rules for `umul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
169
-
170
- (rule 2 (lower (umul_overflow x y @ (value_type (fits_in_64 ty))))
171
- (construct_overflow_op (CC.O) (x64_umullo_with_flags_paired ty x y)))
172
-
173
- ;;;; Rules for `smul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
174
-
175
- (rule 2 (lower (smul_overflow x y @ (value_type (ty_int_ref_16_to_64 ty))))
176
- (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Mul) x y))
177
-
178
- ;; there is no 8bit imul with an immediate operand so we need to put it in a register or memory
179
- (rule 1 (lower (smul_overflow x y @ (value_type $I8)))
180
- (construct_overflow_op (CC.O) (x64_alurmi_with_flags_paired (AluRmiROpcode.Mul) $I8 x (reg_mem_to_reg_mem_imm (put_in_reg_mem y)))))
181
-
182
- ;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
183
-
184
- (rule (lower (has_type (multi_lane 8 16)
185
- (sadd_sat x y)))
186
- (x64_paddsb x y))
187
-
188
- (rule (lower (has_type (multi_lane 16 8)
189
- (sadd_sat x y)))
190
- (x64_paddsw x y))
191
-
192
- ;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
193
-
194
- (rule (lower (has_type (multi_lane 8 16)
195
- (uadd_sat x y)))
196
- (x64_paddusb x y))
197
-
198
- (rule (lower (has_type (multi_lane 16 8)
199
- (uadd_sat x y)))
200
- (x64_paddusw x y))
201
-
202
- ;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
203
-
204
- ;; `i64` and smaller.
205
-
206
- ;; Sub two registers.
207
- (rule -3 (lower (has_type (fits_in_64 ty)
208
- (isub x y)))
209
- (x64_sub ty x y))
210
-
211
- ;; SSE.
212
-
213
- (rule (lower (has_type (multi_lane 8 16)
214
- (isub x y)))
215
- (x64_psubb x y))
216
-
217
- (rule (lower (has_type (multi_lane 16 8)
218
- (isub x y)))
219
- (x64_psubw x y))
220
-
221
- (rule (lower (has_type (multi_lane 32 4)
222
- (isub x y)))
223
- (x64_psubd x y))
224
-
225
- (rule (lower (has_type (multi_lane 64 2)
226
- (isub x y)))
227
- (x64_psubq x y))
228
-
229
- ;; `i128`
230
- (rule 1 (lower (has_type $I128 (isub x y)))
231
- ;; Get the high/low registers for `x`.
232
- (let ((x_regs ValueRegs x)
233
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
234
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
235
- ;; Get the high/low registers for `y`.
236
- (let ((y_regs ValueRegs y)
237
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
238
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
239
- ;; Do a sub followed by an sub-with-borrow.
240
- (with_flags (x64_sub_with_flags_paired $I64 x_lo y_lo)
241
- (x64_sbb_paired $I64 x_hi y_hi)))))
242
-
243
- ;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
244
-
245
- (rule (lower (has_type (multi_lane 8 16)
246
- (ssub_sat x y)))
247
- (x64_psubsb x y))
248
-
249
- (rule (lower (has_type (multi_lane 16 8)
250
- (ssub_sat x y)))
251
- (x64_psubsw x y))
252
-
253
- ;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
254
-
255
- (rule (lower (has_type (multi_lane 8 16)
256
- (usub_sat x y)))
257
- (x64_psubusb x y))
258
-
259
- (rule (lower (has_type (multi_lane 16 8)
260
- (usub_sat x y)))
261
- (x64_psubusw x y))
262
-
263
- ;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
264
-
265
- ;; `{i,b}64` and smaller.
266
-
267
- ;; And two registers.
268
- (rule 0 (lower (has_type ty (band x y)))
269
- (if (ty_int_ref_scalar_64 ty))
270
- (x64_and ty x y))
271
-
272
- ;; The above case automatically handles when the rhs is an immediate or a
273
- ;; sinkable load, but additionally handle the lhs here.
274
-
275
- (rule 1 (lower (has_type ty (band (sinkable_load x) y)))
276
- (if (ty_int_ref_scalar_64 ty))
277
- (x64_and ty y x))
278
-
279
- (rule 2 (lower (has_type ty (band (simm32_from_value x) y)))
280
- (if (ty_int_ref_scalar_64 ty))
281
- (x64_and ty y x))
282
-
283
- ;; f32 and f64
284
-
285
- (rule 5 (lower (has_type (ty_scalar_float ty) (band x y)))
286
- (sse_and ty x y))
287
-
288
- ;; SSE.
289
-
290
- (decl sse_and (Type Xmm XmmMem) Xmm)
291
- (rule (sse_and $F32X4 x y) (x64_andps x y))
292
- (rule (sse_and $F64X2 x y) (x64_andpd x y))
293
- (rule (sse_and $F32 x y) (x64_andps x y))
294
- (rule (sse_and $F64 x y) (x64_andpd x y))
295
- (rule -1 (sse_and (multi_lane _bits _lanes) x y) (x64_pand x y))
296
-
297
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
298
- (band x y)))
299
- (sse_and ty x y))
300
-
301
- ;; `i128`.
302
-
303
- (rule 7 (lower (has_type $I128 (band x y)))
304
- (let ((x_regs ValueRegs x)
305
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
306
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
307
- (y_regs ValueRegs y)
308
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
309
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
310
- (value_gprs (x64_and $I64 x_lo y_lo)
311
- (x64_and $I64 x_hi y_hi))))
312
-
313
- ;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
314
- ;; by Cranelift's `band_not` instruction that is legalized into the simpler
315
- ;; forms early on.
316
-
317
- (decl sse_and_not (Type Xmm XmmMem) Xmm)
318
- (rule (sse_and_not $F32X4 x y) (x64_andnps x y))
319
- (rule (sse_and_not $F64X2 x y) (x64_andnpd x y))
320
- (rule -1 (sse_and_not (multi_lane _bits _lanes) x y) (x64_pandn x y))
321
-
322
- ;; Note the flipping of operands below as we're match
323
- ;;
324
- ;; (band x (bnot y))
325
- ;;
326
- ;; while x86 does
327
- ;;
328
- ;; pandn(x, y) = and(not(x), y)
329
- (rule 8 (lower (has_type ty @ (multi_lane _bits _lane) (band x (bnot y))))
330
- (sse_and_not ty y x))
331
- (rule 9 (lower (has_type ty @ (multi_lane _bits _lane) (band (bnot y) x)))
332
- (sse_and_not ty y x))
333
-
334
- (rule 10 (lower (has_type ty (band x (bnot y))))
335
- (if (ty_int_ref_scalar_64 ty))
336
- (if-let $true (use_bmi1))
337
- ;; the first argument is the one that gets inverted with andn
338
- (x64_andn ty y x))
339
- (rule 11 (lower (has_type ty (band (bnot y) x)))
340
- (if (ty_int_ref_scalar_64 ty))
341
- (if-let $true (use_bmi1))
342
- (x64_andn ty y x))
343
-
344
- ;; Specialization of `blsr` for BMI1
345
-
346
- (rule 12 (lower (has_type (ty_32_or_64 ty) (band (isub x (iconst (u64_from_imm64 1))) x)))
347
- (if-let $true (use_bmi1))
348
- (x64_blsr ty x))
349
- (rule 13 (lower (has_type (ty_32_or_64 ty) (band x (isub x (iconst (u64_from_imm64 1))))))
350
- (if-let $true (use_bmi1))
351
- (x64_blsr ty x))
352
-
353
- ;; Specialization of `blsi` for BMI1
354
-
355
- (rule 12 (lower (has_type (ty_32_or_64 ty) (band (ineg x) x)))
356
- (if-let $true (use_bmi1))
357
- (x64_blsi ty x))
358
- (rule 13 (lower (has_type (ty_32_or_64 ty) (band x (ineg x))))
359
- (if-let $true (use_bmi1))
360
- (x64_blsi ty x))
361
-
362
- ;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
363
-
364
- ;; `{i,b}64` and smaller.
365
-
366
- ;; Or two registers.
367
- (rule 0 (lower (has_type ty (bor x y)))
368
- (if (ty_int_ref_scalar_64 ty))
369
- (x64_or ty x y))
370
-
371
- ;; Handle immediates/sinkable loads on the lhs in addition to the automatic
372
- ;; handling of the rhs above
373
-
374
- (rule 1 (lower (has_type ty (bor (sinkable_load x) y)))
375
- (if (ty_int_ref_scalar_64 ty))
376
- (x64_or ty y x))
377
-
378
- (rule 2 (lower (has_type ty (bor (simm32_from_value x) y)))
379
- (if (ty_int_ref_scalar_64 ty))
380
- (x64_or ty y x))
381
-
382
- ;; f32 and f64
383
-
384
- (rule 5 (lower (has_type (ty_scalar_float ty) (bor x y)))
385
- (sse_or ty x y))
386
-
387
- ;; SSE.
388
-
389
- (decl sse_or (Type Xmm XmmMem) Xmm)
390
- (rule (sse_or $F32X4 x y) (x64_orps x y))
391
- (rule (sse_or $F64X2 x y) (x64_orpd x y))
392
- (rule (sse_or $F32 x y) (x64_orps x y))
393
- (rule (sse_or $F64 x y) (x64_orpd x y))
394
- (rule -1 (sse_or (multi_lane _bits _lanes) x y) (x64_por x y))
395
-
396
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
397
- (bor x y)))
398
- (sse_or ty x y))
399
-
400
- ;; `{i,b}128`.
401
-
402
- (decl or_i128 (ValueRegs ValueRegs) ValueRegs)
403
- (rule (or_i128 x y)
404
- (let ((x_lo Gpr (value_regs_get_gpr x 0))
405
- (x_hi Gpr (value_regs_get_gpr x 1))
406
- (y_lo Gpr (value_regs_get_gpr y 0))
407
- (y_hi Gpr (value_regs_get_gpr y 1)))
408
- (value_gprs (x64_or $I64 x_lo y_lo)
409
- (x64_or $I64 x_hi y_hi))))
410
-
411
- (rule 7 (lower (has_type $I128 (bor x y)))
412
- (or_i128 x y))
413
-
414
- ;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
415
-
416
- ;; `{i,b}64` and smaller.
417
-
418
- ;; Xor two registers.
419
- (rule 0 (lower (has_type ty (bxor x y)))
420
- (if (ty_int_ref_scalar_64 ty))
421
- (x64_xor ty x y))
422
-
423
- ;; Handle xor with lhs immediates/sinkable loads in addition to the automatic
424
- ;; handling of the rhs above.
425
-
426
- (rule 1 (lower (has_type ty (bxor (sinkable_load x) y)))
427
- (if (ty_int_ref_scalar_64 ty))
428
- (x64_xor ty y x))
429
-
430
- (rule 4 (lower (has_type ty (bxor (simm32_from_value x) y)))
431
- (if (ty_int_ref_scalar_64 ty))
432
- (x64_xor ty y x))
433
-
434
- ;; f32 and f64
435
-
436
- (rule 5 (lower (has_type (ty_scalar_float ty) (bxor x y)))
437
- (x64_xor_vector ty x y))
438
-
439
- ;; SSE.
440
-
441
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes) (bxor x y)))
442
- (x64_xor_vector ty x y))
443
-
444
- ;; `{i,b}128`.
445
-
446
- (rule 7 (lower (has_type $I128 (bxor x y)))
447
- (let ((x_regs ValueRegs x)
448
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
449
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
450
- (y_regs ValueRegs y)
451
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
452
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
453
- (value_gprs (x64_xor $I64 x_lo y_lo)
454
- (x64_xor $I64 x_hi y_hi))))
455
-
456
- ;; Specialization of `blsmsk` for BMI1
457
-
458
- (rule 8 (lower (has_type (ty_32_or_64 ty) (bxor (isub x (iconst (u64_from_imm64 1))) x)))
459
- (if-let $true (use_bmi1))
460
- (x64_blsmsk ty x))
461
- (rule 9 (lower (has_type (ty_32_or_64 ty) (bxor x (isub x (iconst (u64_from_imm64 1))))))
462
- (if-let $true (use_bmi1))
463
- (x64_blsmsk ty x))
464
-
465
- ;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
466
-
467
- ;; `i64` and smaller.
468
-
469
- (rule -1 (lower (has_type (fits_in_64 ty) (ishl src amt)))
470
- (x64_shl ty src (put_masked_in_imm8_gpr amt ty)))
471
-
472
- ;; `i128`.
473
-
474
- (decl shl_i128 (ValueRegs Gpr) ValueRegs)
475
- (rule (shl_i128 src amt)
476
- ;; Unpack the registers that make up the 128-bit value being shifted.
477
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
478
- (src_hi Gpr (value_regs_get_gpr src 1))
479
- ;; Do two 64-bit shifts.
480
- (lo_shifted Gpr (x64_shl $I64 src_lo amt))
481
- (hi_shifted Gpr (x64_shl $I64 src_hi amt))
482
- ;; `src_lo >> (64 - amt)` are the bits to carry over from the lo
483
- ;; into the hi.
484
- (carry Gpr (x64_shr $I64
485
- src_lo
486
- (x64_sub $I64
487
- (imm $I64 64)
488
- amt)))
489
- (zero Gpr (imm $I64 0))
490
- ;; Nullify the carry if we are shifting in by a multiple of 128.
491
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64)
492
- (RegMemImm.Imm 127)
493
- amt)
494
- (cmove $I64
495
- (CC.Z)
496
- zero
497
- carry)))
498
- ;; Add the carry into the high half.
499
- (hi_shifted_ Gpr (x64_or $I64 carry_ hi_shifted)))
500
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
501
- ;; (modulo 128), then the low bits are zero and the high bits are our
502
- ;; low bits.
503
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
504
- (consumes_flags_concat
505
- (cmove $I64 (CC.Z) lo_shifted zero)
506
- (cmove $I64 (CC.Z) hi_shifted_ lo_shifted)))))
507
-
508
- (rule (lower (has_type $I128 (ishl src amt)))
509
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
510
- ;; amount to the value's bit width.
511
- (let ((amt_ Gpr (lo_gpr amt)))
512
- (shl_i128 src amt_)))
513
-
514
- ;; SSE.
515
-
516
- ;; Since the x86 instruction set does not have any 8x16 shift instructions (even
517
- ;; in higher feature sets like AVX), we lower the `ishl.i8x16` to a sequence of
518
- ;; instructions. The basic idea, whether the amount to shift by is an immediate
519
- ;; or not, is to use a 16x8 shift and then mask off the incorrect bits to 0s.
520
- (rule (lower (has_type ty @ $I8X16 (ishl src amt)))
521
- (let (
522
- ;; Mask the amount to ensure wrapping behaviour
523
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
524
- ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
525
- ;; correct for half of the lanes; the others must be fixed up with
526
- ;; the mask below.
527
- (unmasked Xmm (x64_psllw src (mov_rmi_to_xmm masked_amt)))
528
- (mask_addr SyntheticAmode (ishl_i8x16_mask masked_amt))
529
- (mask Reg (x64_load $I8X16 mask_addr (ExtKind.None))))
530
- (sse_and $I8X16 unmasked (RegMem.Reg mask))))
531
-
532
- ;; Get the address of the mask to use when fixing up the lanes that weren't
533
- ;; correctly generated by the 16x8 shift.
534
- (decl ishl_i8x16_mask (RegMemImm) SyntheticAmode)
535
-
536
- ;; When the shift amount is known, we can statically (i.e. at compile time)
537
- ;; determine the mask to use and only emit that.
538
- (decl ishl_i8x16_mask_for_const (u32) SyntheticAmode)
539
- (extern constructor ishl_i8x16_mask_for_const ishl_i8x16_mask_for_const)
540
- (rule (ishl_i8x16_mask (RegMemImm.Imm amt))
541
- (ishl_i8x16_mask_for_const amt))
542
-
543
- ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
544
- ;; time) find the correct mask offset in the table. We use `lea` to find the
545
- ;; base address of the mask table and then complex addressing to offset to the
546
- ;; right mask: `base_address + amt << 4`
547
- (decl ishl_i8x16_mask_table () SyntheticAmode)
548
- (extern constructor ishl_i8x16_mask_table ishl_i8x16_mask_table)
549
- (rule (ishl_i8x16_mask (RegMemImm.Reg amt))
550
- (let ((mask_table SyntheticAmode (ishl_i8x16_mask_table))
551
- (base_mask_addr Gpr (x64_lea $I64 mask_table))
552
- (mask_offset Gpr (x64_shl $I64 amt
553
- (imm8_to_imm8_gpr 4))))
554
- (Amode.ImmRegRegShift 0
555
- base_mask_addr
556
- mask_offset
557
- 0
558
- (mem_flags_trusted))))
559
-
560
- (rule (ishl_i8x16_mask (RegMemImm.Mem amt))
561
- (ishl_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
562
-
563
- ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
564
-
565
- (rule (lower (has_type ty @ $I16X8 (ishl src amt)))
566
- (x64_psllw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
567
-
568
- (rule (lower (has_type ty @ $I32X4 (ishl src amt)))
569
- (x64_pslld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
570
-
571
- (rule (lower (has_type ty @ $I64X2 (ishl src amt)))
572
- (x64_psllq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
573
-
574
- ;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
575
-
576
- ;; `i64` and smaller.
577
-
578
- (rule -1 (lower (has_type (fits_in_64 ty) (ushr src amt)))
579
- (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Zero))))
580
- (x64_shr ty src_ (put_masked_in_imm8_gpr amt ty))))
581
-
582
- ;; `i128`.
583
-
584
- (decl shr_i128 (ValueRegs Gpr) ValueRegs)
585
- (rule (shr_i128 src amt)
586
- ;; Unpack the lo/hi halves of `src`.
587
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
588
- (src_hi Gpr (value_regs_get_gpr src 1))
589
- ;; Do a shift on each half.
590
- (lo_shifted Gpr (x64_shr $I64 src_lo amt))
591
- (hi_shifted Gpr (x64_shr $I64 src_hi amt))
592
- ;; `src_hi << (64 - amt)` are the bits to carry over from the hi
593
- ;; into the lo.
594
- (carry Gpr (x64_shl $I64
595
- src_hi
596
- (x64_sub $I64
597
- (imm $I64 64)
598
- amt)))
599
- ;; Share the zero value to reduce register pressure
600
- (zero Gpr (imm $I64 0))
601
-
602
- ;; Nullify the carry if we are shifting by a multiple of 128.
603
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
604
- (cmove $I64 (CC.Z) zero carry)))
605
- ;; Add the carry bits into the lo.
606
- (lo_shifted_ Gpr (x64_or $I64 carry_ lo_shifted)))
607
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
608
- ;; (modulo 128), then the hi bits are zero and the lo bits are what
609
- ;; would otherwise be our hi bits.
610
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
611
- (consumes_flags_concat
612
- (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
613
- (cmove $I64 (CC.Z) hi_shifted zero)))))
614
-
615
- (rule (lower (has_type $I128 (ushr src amt)))
616
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
617
- ;; amount to the value's bit width.
618
- (let ((amt_ Gpr (lo_gpr amt)))
619
- (shr_i128 src amt_)))
620
-
621
- ;; SSE.
622
-
623
- ;; There are no 8x16 shifts in x64. Do the same 16x8-shift-and-mask thing we do
624
- ;; with 8x16 `ishl`.
625
- (rule (lower (has_type ty @ $I8X16 (ushr src amt)))
626
- (let (
627
- ;; Mask the amount to ensure wrapping behaviour
628
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
629
- ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
630
- ;; correct for half of the lanes; the others must be fixed up with
631
- ;; the mask below.
632
- (unmasked Xmm (x64_psrlw src (mov_rmi_to_xmm masked_amt))))
633
- (sse_and $I8X16
634
- unmasked
635
- (ushr_i8x16_mask masked_amt))))
636
-
637
- ;; Get the address of the mask to use when fixing up the lanes that weren't
638
- ;; correctly generated by the 16x8 shift.
639
- (decl ushr_i8x16_mask (RegMemImm) SyntheticAmode)
640
-
641
- ;; When the shift amount is known, we can statically (i.e. at compile time)
642
- ;; determine the mask to use and only emit that.
643
- (decl ushr_i8x16_mask_for_const (u32) SyntheticAmode)
644
- (extern constructor ushr_i8x16_mask_for_const ushr_i8x16_mask_for_const)
645
- (rule (ushr_i8x16_mask (RegMemImm.Imm amt))
646
- (ushr_i8x16_mask_for_const amt))
647
-
648
- ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
649
- ;; time) find the correct mask offset in the table. We use `lea` to find the
650
- ;; base address of the mask table and then complex addressing to offset to the
651
- ;; right mask: `base_address + amt << 4`
652
- (decl ushr_i8x16_mask_table () SyntheticAmode)
653
- (extern constructor ushr_i8x16_mask_table ushr_i8x16_mask_table)
654
- (rule (ushr_i8x16_mask (RegMemImm.Reg amt))
655
- (let ((mask_table SyntheticAmode (ushr_i8x16_mask_table))
656
- (base_mask_addr Gpr (x64_lea $I64 mask_table))
657
- (mask_offset Gpr (x64_shl $I64
658
- amt
659
- (imm8_to_imm8_gpr 4))))
660
- (Amode.ImmRegRegShift 0
661
- base_mask_addr
662
- mask_offset
663
- 0
664
- (mem_flags_trusted))))
665
-
666
- (rule (ushr_i8x16_mask (RegMemImm.Mem amt))
667
- (ushr_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
668
-
669
- ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
670
-
671
- (rule (lower (has_type ty @ $I16X8 (ushr src amt)))
672
- (x64_psrlw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
673
-
674
- (rule (lower (has_type ty @ $I32X4 (ushr src amt)))
675
- (x64_psrld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
676
-
677
- (rule (lower (has_type ty @ $I64X2 (ushr src amt)))
678
- (x64_psrlq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
679
-
680
- (decl mask_xmm_shift (Type Value) RegMemImm)
681
- (rule (mask_xmm_shift ty amt)
682
- (gpr_to_reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
683
- (rule 1 (mask_xmm_shift ty (iconst n))
684
- (RegMemImm.Imm (shift_amount_masked ty n)))
685
-
686
- ;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
687
-
688
- ;; `i64` and smaller.
689
-
690
- (rule -1 (lower (has_type (fits_in_64 ty) (sshr src amt)))
691
- (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Sign))))
692
- (x64_sar ty src_ (put_masked_in_imm8_gpr amt ty))))
693
-
694
- ;; `i128`.
695
-
696
- (decl sar_i128 (ValueRegs Gpr) ValueRegs)
697
- (rule (sar_i128 src amt)
698
- ;; Unpack the low/high halves of `src`.
699
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
700
- (src_hi Gpr (value_regs_get_gpr src 1))
701
- ;; Do a shift of each half. NB: the low half uses an unsigned shift
702
- ;; because its MSB is not a sign bit.
703
- (lo_shifted Gpr (x64_shr $I64 src_lo amt))
704
- (hi_shifted Gpr (x64_sar $I64 src_hi amt))
705
- ;; `src_hi << (64 - amt)` are the bits to carry over from the low
706
- ;; half to the high half.
707
- (carry Gpr (x64_shl $I64
708
- src_hi
709
- (x64_sub $I64
710
- (imm $I64 64)
711
- amt)))
712
- ;; Nullify the carry if we are shifting by a multiple of 128.
713
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
714
- (cmove $I64 (CC.Z) (imm $I64 0) carry)))
715
- ;; Add the carry into the low half.
716
- (lo_shifted_ Gpr (x64_or $I64 lo_shifted carry_))
717
- ;; Get all sign bits.
718
- (sign_bits Gpr (x64_sar $I64 src_hi (imm8_to_imm8_gpr 63))))
719
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
720
- ;; (modulo 128), then the hi bits are all sign bits and the lo bits are
721
- ;; what would otherwise be our hi bits.
722
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
723
- (consumes_flags_concat
724
- (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
725
- (cmove $I64 (CC.Z) hi_shifted sign_bits)))))
726
-
727
- (rule (lower (has_type $I128 (sshr src amt)))
728
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
729
- ;; amount to the value's bit width.
730
- (let ((amt_ Gpr (lo_gpr amt)))
731
- (sar_i128 src amt_)))
732
-
733
- ;; SSE.
734
-
735
- ;; Since the x86 instruction set does not have an 8x16 shift instruction and the
736
- ;; approach used for `ishl` and `ushr` cannot be easily used (the masks do not
737
- ;; preserve the sign), we use a different approach here: separate the low and
738
- ;; high lanes, shift them separately, and merge them into the final result.
739
- ;;
740
- ;; Visually, this looks like the following, where `src.i8x16 = [s0, s1, ...,
741
- ;; s15]:
742
- ;;
743
- ;; lo.i16x8 = [(s0, s0), (s1, s1), ..., (s7, s7)]
744
- ;; shifted_lo.i16x8 = shift each lane of `low`
745
- ;; hi.i16x8 = [(s8, s8), (s9, s9), ..., (s15, s15)]
746
- ;; shifted_hi.i16x8 = shift each lane of `high`
747
- ;; result = [s0'', s1'', ..., s15'']
748
- (rule (lower (has_type ty @ $I8X16 (sshr src amt @ (value_type amt_ty))))
749
- (let ((src_ Xmm (put_in_xmm src))
750
- ;; Mask the amount to ensure wrapping behaviour
751
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
752
- ;; In order for `packsswb` later to only use the high byte of each
753
- ;; 16x8 lane, we shift right an extra 8 bits, relying on `psraw` to
754
- ;; fill in the upper bits appropriately.
755
- (lo Xmm (x64_punpcklbw src_ src_))
756
- (hi Xmm (x64_punpckhbw src_ src_))
757
- (amt_ XmmMemImm (sshr_i8x16_bigger_shift amt_ty masked_amt))
758
- (shifted_lo Xmm (x64_psraw lo amt_))
759
- (shifted_hi Xmm (x64_psraw hi amt_)))
760
- (x64_packsswb shifted_lo shifted_hi)))
761
-
762
- (decl sshr_i8x16_bigger_shift (Type RegMemImm) XmmMemImm)
763
- (rule (sshr_i8x16_bigger_shift _ty (RegMemImm.Imm i))
764
- (xmm_mem_imm_new (RegMemImm.Imm (u32_add i 8))))
765
- (rule (sshr_i8x16_bigger_shift ty (RegMemImm.Reg r))
766
- (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
767
- r
768
- (RegMemImm.Imm 8)))))
769
- (rule (sshr_i8x16_bigger_shift ty rmi @ (RegMemImm.Mem _m))
770
- (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
771
- (imm ty 8)
772
- rmi))))
773
-
774
- ;; `sshr.{i16x8,i32x4}` can be a simple `psra{w,d}`, we just have to make sure
775
- ;; that if the shift amount is in a register, it is in an XMM register.
776
-
777
- (rule (lower (has_type ty @ $I16X8 (sshr src amt)))
778
- (x64_psraw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
779
-
780
- (rule (lower (has_type ty @ $I32X4 (sshr src amt)))
781
- (x64_psrad src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
782
-
783
- ;; The `sshr.i64x2` CLIF instruction has no single x86 instruction in the older
784
- ;; feature sets. To remedy this, a small dance is done with an unsigned right
785
- ;; shift plus some extra ops.
786
- (rule 3 (lower (has_type ty @ $I64X2 (sshr src (iconst n))))
787
- (if-let $true (use_avx512vl))
788
- (if-let $true (use_avx512f))
789
- (x64_vpsraq_imm src (shift_amount_masked ty n)))
790
-
791
- (rule 2 (lower (has_type ty @ $I64X2 (sshr src amt)))
792
- (if-let $true (use_avx512vl))
793
- (if-let $true (use_avx512f))
794
- (let ((masked Gpr (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
795
- (x64_vpsraq src (x64_movd_to_xmm masked))))
796
-
797
- (rule 1 (lower (has_type $I64X2 (sshr src (iconst (u64_from_imm64 (u64_as_u32 amt))))))
798
- (lower_i64x2_sshr_imm src (u32_and amt 63)))
799
-
800
- (rule (lower (has_type $I64X2 (sshr src amt)))
801
- (lower_i64x2_sshr_gpr src (x64_and $I64 amt (RegMemImm.Imm 63))))
802
-
803
- (decl lower_i64x2_sshr_imm (Xmm u32) Xmm)
804
-
805
- ;; If the shift amount is less than 32 then do an sshr with 32-bit lanes to
806
- ;; produce the upper halves of each result, followed by a ushr of 64-bit lanes
807
- ;; to produce the lower halves of each result. Interleave results at the end.
808
- (rule 2 (lower_i64x2_sshr_imm vec imm)
809
- (if-let $true (u64_lt imm 32))
810
- (let (
811
- (high32 Xmm (x64_psrad vec (xmi_imm imm)))
812
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
813
- (low32 Xmm (x64_psrlq vec (xmi_imm imm)))
814
- (low32 Xmm (x64_pshufd low32 0b11_10_10_00))
815
- )
816
- (x64_punpckldq low32 high32)))
817
-
818
- ;; If the shift amount is 32 then the `psrlq` from the above rule can be avoided
819
- (rule 1 (lower_i64x2_sshr_imm vec 32)
820
- (let (
821
- (low32 Xmm (x64_pshufd vec 0b11_10_11_01))
822
- (high32 Xmm (x64_psrad vec (xmi_imm 31)))
823
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
824
- )
825
- (x64_punpckldq low32 high32)))
826
-
827
- ;; Shifts >= 32 use one `psrad` to generate the upper bits and second `psrad` to
828
- ;; generate the lower bits. Everything is then woven back together with
829
- ;; shuffles.
830
- (rule (lower_i64x2_sshr_imm vec imm)
831
- (if-let $true (u64_lt 32 imm))
832
- (let (
833
- (high32 Xmm (x64_psrad vec (xmi_imm 31)))
834
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
835
- (low32 Xmm (x64_psrad vec (xmi_imm (u32_sub imm 32))))
836
- (low32 Xmm (x64_pshufd low32 0b11_10_10_01))
837
- )
838
- (x64_punpckldq low32 high32)))
839
-
840
- ;; A variable shift amount is slightly more complicated than the immediate
841
- ;; shift amounts from above. The `Gpr` argument is guaranteed to be <= 63 by
842
- ;; earlier masking. A `ushr` operation is used with some xor/sub math to
843
- ;; generate the sign bits.
844
- (decl lower_i64x2_sshr_gpr (Xmm Gpr) Xmm)
845
- (rule (lower_i64x2_sshr_gpr vec val)
846
- (let (
847
- (val Xmm (x64_movq_to_xmm val))
848
- (mask Xmm (flip_high_bit_mask $I64X2))
849
- (sign_bit_loc Xmm (x64_psrlq mask val))
850
- (ushr Xmm (x64_psrlq vec val))
851
- (ushr_sign_bit_flip Xmm (x64_pxor sign_bit_loc ushr))
852
- )
853
- (x64_psubq ushr_sign_bit_flip sign_bit_loc)))
854
-
855
- ;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
856
-
857
- ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
858
- ;; we operate on the whole register. For const's we mask the constant.
859
-
860
- (rule -1 (lower (has_type (fits_in_64 ty) (rotl src amt)))
861
- (x64_rotl ty src (put_masked_in_imm8_gpr amt ty)))
862
-
863
-
864
- ;; `i128`.
865
-
866
- (rule (lower (has_type $I128 (rotl src amt)))
867
- (let ((src_ ValueRegs src)
868
- ;; NB: Only the low bits of `amt` matter since we logically mask the
869
- ;; rotation amount to the value's bit width.
870
- (amt_ Gpr (lo_gpr amt)))
871
- (or_i128 (shl_i128 src_ amt_)
872
- (shr_i128 src_ (x64_sub $I64
873
- (imm $I64 128)
874
- amt_)))))
875
-
876
- ;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
877
-
878
- ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
879
- ;; we operate on the whole register. For const's we mask the constant.
880
-
881
- (rule -1 (lower (has_type (fits_in_64 ty) (rotr src amt)))
882
- (x64_rotr ty src (put_masked_in_imm8_gpr amt ty)))
883
-
884
-
885
- ;; `i128`.
886
-
887
- (rule (lower (has_type $I128 (rotr src amt)))
888
- (let ((src_ ValueRegs src)
889
- ;; NB: Only the low bits of `amt` matter since we logically mask the
890
- ;; rotation amount to the value's bit width.
891
- (amt_ Gpr (lo_gpr amt)))
892
- (or_i128 (shr_i128 src_ amt_)
893
- (shl_i128 src_ (x64_sub $I64
894
- (imm $I64 128)
895
- amt_)))))
896
-
897
- ;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
898
-
899
- ;; `i64` and smaller.
900
-
901
- (rule -1 (lower (has_type (fits_in_64 ty) (ineg x)))
902
- (x64_neg ty x))
903
-
904
- (rule -2 (lower (has_type $I128 (ineg x)))
905
- ;; Get the high/low registers for `x`.
906
- (let ((regs ValueRegs x)
907
- (lo Gpr (value_regs_get_gpr regs 0))
908
- (hi Gpr (value_regs_get_gpr regs 1)))
909
- ;; Do a neg followed by an sub-with-borrow.
910
- (with_flags (x64_neg_paired $I64 lo)
911
- (x64_sbb_paired $I64 (imm $I64 0) hi))))
912
-
913
- ;; SSE.
914
-
915
- (rule (lower (has_type $I8X16 (ineg x)))
916
- (x64_psubb (imm $I8X16 0) x))
917
-
918
- (rule (lower (has_type $I16X8 (ineg x)))
919
- (x64_psubw (imm $I16X8 0) x))
920
-
921
- (rule (lower (has_type $I32X4 (ineg x)))
922
- (x64_psubd (imm $I32X4 0) x))
923
-
924
- (rule (lower (has_type $I64X2 (ineg x)))
925
- (x64_psubq (imm $I64X2 0) x))
926
-
927
- ;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
928
-
929
- (rule (lower (has_type (multi_lane 8 16)
930
- (avg_round x y)))
931
- (x64_pavgb x y))
932
-
933
- (rule (lower (has_type (multi_lane 16 8)
934
- (avg_round x y)))
935
- (x64_pavgw x y))
936
-
937
- ;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
938
-
939
- ;; `i64` and smaller.
940
-
941
- ;; Multiply two registers.
942
- (rule -5 (lower (has_type (fits_in_64 ty) (imul x y)))
943
- (x64_mul ty x y))
944
-
945
- ;; Handle multiplication where the lhs is an immediate or sinkable load in
946
- ;; addition to the automatic rhs handling above.
947
-
948
- (rule -4 (lower (has_type (fits_in_64 ty)
949
- (imul (simm32_from_value x) y)))
950
- (x64_mul ty y x))
951
- (rule -3 (lower (has_type (fits_in_64 ty)
952
- (imul (sinkable_load x) y)))
953
- (x64_mul ty y x))
954
-
955
- ;; `i128`.
956
-
957
- ;; mul:
958
- ;; dst_lo = lhs_lo * rhs_lo
959
- ;; dst_hi = umulhi(lhs_lo, rhs_lo) +
960
- ;; lhs_lo * rhs_hi +
961
- ;; lhs_hi * rhs_lo
962
- ;;
963
- ;; so we emit:
964
- ;; lo_hi = mul x_lo, y_hi
965
- ;; hi_lo = mul x_hi, y_lo
966
- ;; hilo_hilo = add lo_hi, hi_lo
967
- ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
968
- ;; dst_hi = add hilo_hilo, hi_lolo
969
- ;; return (dst_lo, dst_hi)
970
- (rule 2 (lower (has_type $I128 (imul x y)))
971
- ;; Put `x` into registers and unpack its hi/lo halves.
972
- (let ((x_regs ValueRegs x)
973
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
974
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
975
- ;; Put `y` into registers and unpack its hi/lo halves.
976
- (y_regs ValueRegs y)
977
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
978
- (y_hi Gpr (value_regs_get_gpr y_regs 1))
979
- ;; lo_hi = mul x_lo, y_hi
980
- (lo_hi Gpr (x64_mul $I64 x_lo y_hi))
981
- ;; hi_lo = mul x_hi, y_lo
982
- (hi_lo Gpr (x64_mul $I64 x_hi y_lo))
983
- ;; hilo_hilo = add lo_hi, hi_lo
984
- (hilo_hilo Gpr (x64_add $I64 lo_hi hi_lo))
985
- ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
986
- (mul_regs ValueRegs (mulhi_u $I64 x_lo y_lo))
987
- (dst_lo Gpr (value_regs_get_gpr mul_regs 0))
988
- (hi_lolo Gpr (value_regs_get_gpr mul_regs 1))
989
- ;; dst_hi = add hilo_hilo, hi_lolo
990
- (dst_hi Gpr (x64_add $I64 hilo_hilo hi_lolo)))
991
- (value_gprs dst_lo dst_hi)))
992
-
993
- ;; SSE.
994
-
995
- ;; (No i8x16 multiply.)
996
-
997
- (rule (lower (has_type (multi_lane 16 8) (imul x y)))
998
- (x64_pmullw x y))
999
-
1000
- (rule (lower (has_type (multi_lane 32 4) (imul x y)))
1001
- (if-let $true (use_sse41))
1002
- (x64_pmulld x y))
1003
-
1004
- ;; Without `pmulld` the `pmuludq` instruction is used instead which performs
1005
- ;; 32-bit multiplication storing the 64-bit result. The 64-bit result is
1006
- ;; truncated to 32-bits and everything else is woven into place.
1007
- (rule -1 (lower (has_type (multi_lane 32 4) (imul x y)))
1008
- (let (
1009
- (x Xmm x)
1010
- (y Xmm y)
1011
- (x_hi Xmm (x64_pshufd x 0b00_11_00_01))
1012
- (y_hi Xmm (x64_pshufd y 0b00_11_00_01))
1013
- (mul_lo Xmm (x64_pshufd (x64_pmuludq x y) 0b00_00_10_00))
1014
- (mul_hi Xmm (x64_pshufd (x64_pmuludq x_hi y_hi) 0b00_00_10_00))
1015
- )
1016
- (x64_punpckldq mul_lo mul_hi)))
1017
-
1018
- ;; With AVX-512 we can implement `i64x2` multiplication with a single
1019
- ;; instruction.
1020
- (rule 3 (lower (has_type (multi_lane 64 2) (imul x y)))
1021
- (if-let $true (use_avx512vl))
1022
- (if-let $true (use_avx512dq))
1023
- (x64_vpmullq x y))
1024
-
1025
- ;; Otherwise, for i64x2 multiplication we describe a lane A as being composed of
1026
- ;; a 32-bit upper half "Ah" and a 32-bit lower half "Al". The 32-bit long hand
1027
- ;; multiplication can then be written as:
1028
- ;;
1029
- ;; Ah Al
1030
- ;; * Bh Bl
1031
- ;; -----
1032
- ;; Al * Bl
1033
- ;; + (Ah * Bl) << 32
1034
- ;; + (Al * Bh) << 32
1035
- ;;
1036
- ;; So for each lane we will compute:
1037
- ;;
1038
- ;; A * B = (Al * Bl) + ((Ah * Bl) + (Al * Bh)) << 32
1039
- ;;
1040
- ;; Note, the algorithm will use `pmuludq` which operates directly on the lower
1041
- ;; 32-bit (`Al` or `Bl`) of a lane and writes the result to the full 64-bits of
1042
- ;; the lane of the destination. For this reason we don't need shifts to isolate
1043
- ;; the lower 32-bits, however, we will need to use shifts to isolate the high
1044
- ;; 32-bits when doing calculations, i.e., `Ah == A >> 32`.
1045
- (rule (lower (has_type (multi_lane 64 2)
1046
- (imul a b)))
1047
- (let ((a0 Xmm a)
1048
- (b0 Xmm b)
1049
- ;; a_hi = A >> 32
1050
- (a_hi Xmm (x64_psrlq a0 (xmi_imm 32)))
1051
- ;; ah_bl = Ah * Bl
1052
- (ah_bl Xmm (x64_pmuludq a_hi b0))
1053
- ;; b_hi = B >> 32
1054
- (b_hi Xmm (x64_psrlq b0 (xmi_imm 32)))
1055
- ;; al_bh = Al * Bh
1056
- (al_bh Xmm (x64_pmuludq a0 b_hi))
1057
- ;; aa_bb = ah_bl + al_bh
1058
- (aa_bb Xmm (x64_paddq ah_bl al_bh))
1059
- ;; aa_bb_shifted = aa_bb << 32
1060
- (aa_bb_shifted Xmm (x64_psllq aa_bb (xmi_imm 32)))
1061
- ;; al_bl = Al * Bl
1062
- (al_bl Xmm (x64_pmuludq a0 b0)))
1063
- ;; al_bl + aa_bb_shifted
1064
- (x64_paddq al_bl aa_bb_shifted)))
1065
-
1066
- ;; Special case for `i32x4.extmul_high_i16x8_s`.
1067
- (rule 1 (lower (has_type (multi_lane 32 4)
1068
- (imul (swiden_high (and (value_type (multi_lane 16 8))
1069
- x))
1070
- (swiden_high (and (value_type (multi_lane 16 8))
1071
- y)))))
1072
- (let ((x2 Xmm x)
1073
- (y2 Xmm y)
1074
- (lo Xmm (x64_pmullw x2 y2))
1075
- (hi Xmm (x64_pmulhw x2 y2)))
1076
- (x64_punpckhwd lo hi)))
1077
-
1078
- ;; Special case for `i64x2.extmul_high_i32x4_s`.
1079
- (rule 1 (lower (has_type (multi_lane 64 2)
1080
- (imul (swiden_high (and (value_type (multi_lane 32 4))
1081
- x))
1082
- (swiden_high (and (value_type (multi_lane 32 4))
1083
- y)))))
1084
- (if-let $true (use_sse41))
1085
- (let ((x2 Xmm (x64_pshufd x 0xFA))
1086
- (y2 Xmm (x64_pshufd y 0xFA)))
1087
- (x64_pmuldq x2 y2)))
1088
-
1089
- ;; Special case for `i32x4.extmul_low_i16x8_s`.
1090
- (rule 1 (lower (has_type (multi_lane 32 4)
1091
- (imul (swiden_low (and (value_type (multi_lane 16 8))
1092
- x))
1093
- (swiden_low (and (value_type (multi_lane 16 8))
1094
- y)))))
1095
- (let ((x2 Xmm x)
1096
- (y2 Xmm y)
1097
- (lo Xmm (x64_pmullw x2 y2))
1098
- (hi Xmm (x64_pmulhw x2 y2)))
1099
- (x64_punpcklwd lo hi)))
1100
-
1101
- ;; Special case for `i64x2.extmul_low_i32x4_s`.
1102
- (rule 1 (lower (has_type (multi_lane 64 2)
1103
- (imul (swiden_low (and (value_type (multi_lane 32 4))
1104
- x))
1105
- (swiden_low (and (value_type (multi_lane 32 4))
1106
- y)))))
1107
- (if-let $true (use_sse41))
1108
- (let ((x2 Xmm (x64_pshufd x 0x50))
1109
- (y2 Xmm (x64_pshufd y 0x50)))
1110
- (x64_pmuldq x2 y2)))
1111
-
1112
- ;; Special case for `i32x4.extmul_high_i16x8_u`.
1113
- (rule 1 (lower (has_type (multi_lane 32 4)
1114
- (imul (uwiden_high (and (value_type (multi_lane 16 8))
1115
- x))
1116
- (uwiden_high (and (value_type (multi_lane 16 8))
1117
- y)))))
1118
- (let ((x2 Xmm x)
1119
- (y2 Xmm y)
1120
- (lo Xmm (x64_pmullw x2 y2))
1121
- (hi Xmm (x64_pmulhuw x2 y2)))
1122
- (x64_punpckhwd lo hi)))
1123
-
1124
- ;; Special case for `i64x2.extmul_high_i32x4_u`.
1125
- (rule 1 (lower (has_type (multi_lane 64 2)
1126
- (imul (uwiden_high (and (value_type (multi_lane 32 4))
1127
- x))
1128
- (uwiden_high (and (value_type (multi_lane 32 4))
1129
- y)))))
1130
- (let ((x2 Xmm (x64_pshufd x 0xFA))
1131
- (y2 Xmm (x64_pshufd y 0xFA)))
1132
- (x64_pmuludq x2 y2)))
1133
-
1134
- ;; Special case for `i32x4.extmul_low_i16x8_u`.
1135
- (rule 1 (lower (has_type (multi_lane 32 4)
1136
- (imul (uwiden_low (and (value_type (multi_lane 16 8))
1137
- x))
1138
- (uwiden_low (and (value_type (multi_lane 16 8))
1139
- y)))))
1140
- (let ((x2 Xmm x)
1141
- (y2 Xmm y)
1142
- (lo Xmm (x64_pmullw x2 y2))
1143
- (hi Xmm (x64_pmulhuw x2 y2)))
1144
- (x64_punpcklwd lo hi)))
1145
-
1146
- ;; Special case for `i64x2.extmul_low_i32x4_u`.
1147
- (rule 1 (lower (has_type (multi_lane 64 2)
1148
- (imul (uwiden_low (and (value_type (multi_lane 32 4))
1149
- x))
1150
- (uwiden_low (and (value_type (multi_lane 32 4))
1151
- y)))))
1152
- (let ((x2 Xmm (x64_pshufd x 0x50))
1153
- (y2 Xmm (x64_pshufd y 0x50)))
1154
- (x64_pmuludq x2 y2)))
1155
-
1156
- ;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1157
-
1158
- (rule 1 (lower (has_type $I8X16 (iabs x)))
1159
- (if-let $true (use_ssse3))
1160
- (x64_pabsb x))
1161
-
1162
- ;; Note the use of `pminub` with signed inputs will produce the positive signed
1163
- ;; result which is what is desired here. The `pmaxub` isn't available until
1164
- ;; SSE4.1 in which case the single-instruction above lowering would apply.
1165
- (rule (lower (has_type $I8X16 (iabs x)))
1166
- (let (
1167
- (x Xmm x)
1168
- (negated Xmm (x64_psubb (xmm_zero $I8X16) x))
1169
- )
1170
- (x64_pminub x negated)))
1171
-
1172
- (rule 1 (lower (has_type $I16X8 (iabs x)))
1173
- (if-let $true (use_ssse3))
1174
- (x64_pabsw x))
1175
-
1176
- (rule (lower (has_type $I16X8 (iabs x)))
1177
- (let (
1178
- (x Xmm x)
1179
- (negated Xmm (x64_psubw (xmm_zero $I16X8) x))
1180
- )
1181
- (x64_pmaxsw x negated)))
1182
-
1183
- (rule 1 (lower (has_type $I32X4 (iabs x)))
1184
- (if-let $true (use_ssse3))
1185
- (x64_pabsd x))
1186
-
1187
- ;; Generate a `negative_mask` which is either numerically -1 or 0 depending on
1188
- ;; if the lane is negative. If the lane is positive then the xor operation
1189
- ;; won't change the lane but otherwise it'll bit-flip everything. By then
1190
- ;; subtracting the mask this subtracts 0 for positive lanes (does nothing) or
1191
- ;; ends up adding one for negative lanes. This means that for a negative lane
1192
- ;; `x` the result is `!x + 1` which is the result of negating it.
1193
- (rule (lower (has_type $I32X4 (iabs x)))
1194
- (let (
1195
- (x Xmm x)
1196
- (negative_mask Xmm (x64_psrad x (xmi_imm 31)))
1197
- (flipped_if_negative Xmm (x64_pxor x negative_mask))
1198
- )
1199
- (x64_psubd flipped_if_negative negative_mask)))
1200
-
1201
- ;; When AVX512 is available, we can use a single `vpabsq` instruction.
1202
- (rule 2 (lower (has_type $I64X2 (iabs x)))
1203
- (if-let $true (use_avx512vl))
1204
- (if-let $true (use_avx512f))
1205
- (x64_vpabsq x))
1206
-
1207
- ;; Otherwise, we use a separate register, `neg`, to contain the results of `0 -
1208
- ;; x` and then blend in those results with `blendvpd` if the MSB of `neg` was
1209
- ;; set to 1 (i.e. if `neg` was negative or, conversely, if `x` was originally
1210
- ;; positive).
1211
- (rule 1 (lower (has_type $I64X2 (iabs x)))
1212
- (if-let $true (use_sse41))
1213
- (let ((rx Xmm x)
1214
- (neg Xmm (x64_psubq (imm $I64X2 0) rx)))
1215
- (x64_blendvpd neg rx neg)))
1216
-
1217
- ;; and if `blendvpd` isn't available then perform a shift/shuffle to generate a
1218
- ;; mask of which lanes are negative, followed by flipping bits/sub to make both
1219
- ;; positive.
1220
- (rule (lower (has_type $I64X2 (iabs x)))
1221
- (let ((x Xmm x)
1222
- (signs Xmm (x64_psrad x (RegMemImm.Imm 31)))
1223
- (signs Xmm (x64_pshufd signs 0b11_11_01_01))
1224
- (xor_if_negative Xmm (x64_pxor x signs)))
1225
- (x64_psubq xor_if_negative signs)))
1226
-
1227
- ;; `i64` and smaller.
1228
-
1229
- (rule -1 (lower (has_type (fits_in_64 ty) (iabs x)))
1230
- (let ((src Gpr x)
1231
- (neg ProducesFlags (x64_neg_paired ty src))
1232
- ;; Manually extract the result from the neg, then ignore
1233
- ;; it below, since we need to pass it into the cmove
1234
- ;; before we pass the cmove to with_flags_reg.
1235
- (neg_result Gpr (produces_flags_get_reg neg))
1236
- ;; When the neg instruction sets the sign flag,
1237
- ;; takes the original (non-negative) value.
1238
- (cmove ConsumesFlags (cmove ty (CC.S) src neg_result)))
1239
- (with_flags_reg (produces_flags_ignore neg) cmove)))
1240
-
1241
- ;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1242
-
1243
- (rule (lower (has_type $F32 (fabs x)))
1244
- (x64_andps x (imm $F32 0x7fffffff)))
1245
-
1246
- (rule (lower (has_type $F64 (fabs x)))
1247
- (x64_andpd x (imm $F64 0x7fffffffffffffff)))
1248
-
1249
- ;; Special case for `f32x4.abs`.
1250
- (rule (lower (has_type $F32X4 (fabs x)))
1251
- (x64_andps x
1252
- (x64_psrld (vector_all_ones) (xmi_imm 1))))
1253
-
1254
- ;; Special case for `f64x2.abs`.
1255
- (rule (lower (has_type $F64X2 (fabs x)))
1256
- (x64_andpd x
1257
- (x64_psrlq (vector_all_ones) (xmi_imm 1))))
1258
-
1259
- ;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1260
-
1261
- (rule (lower (has_type $F32 (fneg x)))
1262
- (x64_xorps x (imm $F32 0x80000000)))
1263
-
1264
- (rule (lower (has_type $F64 (fneg x)))
1265
- (x64_xorpd x (imm $F64 0x8000000000000000)))
1266
-
1267
- (rule (lower (has_type $F32X4 (fneg x)))
1268
- (x64_xorps x
1269
- (x64_pslld (vector_all_ones) (xmi_imm 31))))
1270
-
1271
- (rule (lower (has_type $F64X2 (fneg x)))
1272
- (x64_xorpd x
1273
- (x64_psllq (vector_all_ones) (xmi_imm 63))))
1274
-
1275
- ;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1276
-
1277
- (decl lower_bmask (Type Type ValueRegs) ValueRegs)
1278
-
1279
- ;; Values that fit in a register
1280
- ;;
1281
- ;; Use the neg instruction on the input which sets the CF (carry) flag
1282
- ;; to 0 if the input is 0 or 1 otherwise.
1283
- ;; We then subtract the output register with itself, which always gives a 0,
1284
- ;; however use the carry flag from the previous negate to generate a -1 if it
1285
- ;; was nonzero.
1286
- ;;
1287
- ;; neg in_reg
1288
- ;; sbb out_reg, out_reg
1289
- (rule 0
1290
- (lower_bmask (fits_in_64 out_ty) (fits_in_64 in_ty) val)
1291
- (let ((reg Gpr (value_regs_get_gpr val 0))
1292
- (out ValueRegs (with_flags
1293
- (x64_neg_paired in_ty reg)
1294
- (x64_sbb_paired out_ty reg reg))))
1295
- ;; Extract only the output of the sbb instruction
1296
- (value_reg (value_regs_get out 1))))
1297
-
1298
-
1299
- ;; If the input type is I128 we can `or` the registers, and recurse to the general case.
1300
- (rule 1
1301
- (lower_bmask (fits_in_64 out_ty) $I128 val)
1302
- (let ((lo Gpr (value_regs_get_gpr val 0))
1303
- (hi Gpr (value_regs_get_gpr val 1))
1304
- (mixed Gpr (x64_or $I64 lo hi)))
1305
- (lower_bmask out_ty $I64 (value_reg mixed))))
1306
-
1307
- ;; If the output type is I128 we just duplicate the result of the I64 lowering
1308
- (rule 2
1309
- (lower_bmask $I128 in_ty val)
1310
- (let ((res ValueRegs (lower_bmask $I64 in_ty val))
1311
- (res Gpr (value_regs_get_gpr res 0)))
1312
- (value_regs res res)))
1313
-
1314
-
1315
- ;; Call the lower_bmask rule that does all the procssing
1316
- (rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
1317
- (lower_bmask out_ty in_ty x))
1318
-
1319
- ;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1320
-
1321
- ;; `i64` and smaller.
1322
-
1323
- (rule -2 (lower (has_type ty (bnot x)))
1324
- (if (ty_int_ref_scalar_64 ty))
1325
- (x64_not ty x))
1326
-
1327
-
1328
- ;; `i128`.
1329
-
1330
- (decl i128_not (Value) ValueRegs)
1331
- (rule (i128_not x)
1332
- (let ((x_regs ValueRegs x)
1333
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
1334
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
1335
- (value_gprs (x64_not $I64 x_lo)
1336
- (x64_not $I64 x_hi))))
1337
-
1338
- (rule (lower (has_type $I128 (bnot x)))
1339
- (i128_not x))
1340
-
1341
- ;; f32 and f64
1342
-
1343
- (rule -3 (lower (has_type (ty_scalar_float ty) (bnot x)))
1344
- (x64_xor_vector ty x (vector_all_ones)))
1345
-
1346
- ;; Special case for vector-types where bit-negation is an xor against an
1347
- ;; all-one value
1348
- (rule -1 (lower (has_type ty @ (multi_lane _bits _lanes) (bnot x)))
1349
- (x64_xor_vector ty x (vector_all_ones)))
1350
-
1351
- ;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1352
-
1353
- (rule (lower (has_type ty @ (multi_lane _bits _lanes)
1354
- (bitselect condition
1355
- if_true
1356
- if_false)))
1357
- ;; a = and if_true, condition
1358
- ;; b = and_not condition, if_false
1359
- ;; or b, a
1360
- (let ((cond_xmm Xmm condition)
1361
- (a Xmm (sse_and ty if_true cond_xmm))
1362
- (b Xmm (sse_and_not ty cond_xmm if_false)))
1363
- (sse_or ty b a)))
1364
-
1365
- ;; If every byte of the condition is guaranteed to be all ones or all zeroes,
1366
- ;; we can use x64_blend.
1367
- (rule 1 (lower (has_type ty @ (multi_lane _bits _lanes)
1368
- (bitselect condition
1369
- if_true
1370
- if_false)))
1371
- (if-let $true (use_sse41))
1372
- (if (all_ones_or_all_zeros condition))
1373
- (x64_blend ty
1374
- condition
1375
- if_true
1376
- if_false))
1377
-
1378
- (decl pure partial all_ones_or_all_zeros (Value) bool)
1379
- (rule (all_ones_or_all_zeros (and (icmp _ _ _) (value_type (multi_lane _ _)))) $true)
1380
- (rule (all_ones_or_all_zeros (and (fcmp _ _ _) (value_type (multi_lane _ _)))) $true)
1381
- (rule (all_ones_or_all_zeros (vconst (vconst_all_ones_or_all_zeros))) $true)
1382
-
1383
- (decl pure vconst_all_ones_or_all_zeros () Constant)
1384
- (extern extractor vconst_all_ones_or_all_zeros vconst_all_ones_or_all_zeros)
1385
-
1386
- ;;;; Rules for `x86_blendv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1387
-
1388
- (rule (lower (has_type $I8X16
1389
- (x86_blendv condition if_true if_false)))
1390
- (if-let $true (use_sse41))
1391
- (x64_pblendvb if_false if_true condition))
1392
-
1393
- (rule (lower (has_type $I32X4
1394
- (x86_blendv condition if_true if_false)))
1395
- (if-let $true (use_sse41))
1396
- (x64_blendvps if_false if_true condition))
1397
-
1398
- (rule (lower (has_type $I64X2
1399
- (x86_blendv condition if_true if_false)))
1400
- (if-let $true (use_sse41))
1401
- (x64_blendvpd if_false if_true condition))
1402
-
1403
- ;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1404
-
1405
- (rule (lower (insertlane vec @ (value_type ty) val (u8_from_uimm8 idx)))
1406
- (vec_insert_lane ty vec val idx))
1407
-
1408
- ;; Helper function used below for `insertlane` but also here for other
1409
- ;; lowerings.
1410
- ;;
1411
- ;; Note that the `Type` used here is the type of vector the insertion is
1412
- ;; happening into, or the type of the first `Reg` argument.
1413
- (decl vec_insert_lane (Type Xmm RegMem u8) Xmm)
1414
-
1415
- ;; i8x16.replace_lane
1416
- (rule 1 (vec_insert_lane $I8X16 vec val idx)
1417
- (if-let $true (use_sse41))
1418
- (x64_pinsrb vec val idx))
1419
-
1420
- ;; This lowering is particularly unoptimized and is mostly just here to work
1421
- ;; rather than here to be fast. Requiring SSE 4.1 for the above lowering isn't
1422
- ;; the end of the world hopefully as that's a pretty old instruction set, so
1423
- ;; this is the "simplest" version that works on SSE2 for now.
1424
- ;;
1425
- ;; This lowering masks the original vector with a constant with all 1s except
1426
- ;; for the "hole" where this value will get placed into, meaning the desired
1427
- ;; lane is guaranteed as all 0s. Next the `val` is shuffled into this hole with
1428
- ;; a few operations:
1429
- ;;
1430
- ;; 1. The `val` is zero-extended to 32-bits to guarantee the lower 32-bits
1431
- ;; are all defined.
1432
- ;; 2. An arithmetic shift-left is used with the low two bits of `n`, the
1433
- ;; desired lane, to move the value into the right position within the 32-bit
1434
- ;; register value.
1435
- ;; 3. The 32-bit register is moved with `movd` into an XMM register
1436
- ;; 4. The XMM register, where all lanes are 0 except for the first lane which
1437
- ;; has the shifted value, is then shuffled with `pshufd` to move the
1438
- ;; shifted value to the correct and final lane. This uses the upper two
1439
- ;; bits of `n` to index the i32x4 lane that we're targeting.
1440
- ;;
1441
- ;; This all, laboriously, gets the `val` into the desired lane so it's then
1442
- ;; `por`'d with the original vec-with-a-hole to produce the final result of the
1443
- ;; insertion.
1444
- (rule (vec_insert_lane $I8X16 vec val n)
1445
- (let ((vec_with_hole Xmm (x64_pand vec (insert_i8x16_lane_hole n)))
1446
- (val Gpr (x64_movzx (ExtMode.BL) val))
1447
- (val Gpr (x64_shl $I32 val (Imm8Reg.Imm8 (u8_shl (u8_and n 3) 3))))
1448
- (val Xmm (x64_movd_to_xmm val))
1449
- (val_at_hole Xmm (x64_pshufd val (insert_i8x16_lane_pshufd_imm (u8_shr n 2)))))
1450
- (x64_por vec_with_hole val_at_hole)))
1451
-
1452
- (decl insert_i8x16_lane_hole (u8) VCodeConstant)
1453
- (extern constructor insert_i8x16_lane_hole insert_i8x16_lane_hole)
1454
- (decl insert_i8x16_lane_pshufd_imm (u8) u8)
1455
- (rule (insert_i8x16_lane_pshufd_imm 0) 0b01_01_01_00)
1456
- (rule (insert_i8x16_lane_pshufd_imm 1) 0b01_01_00_01)
1457
- (rule (insert_i8x16_lane_pshufd_imm 2) 0b01_00_01_01)
1458
- (rule (insert_i8x16_lane_pshufd_imm 3) 0b00_01_01_01)
1459
-
1460
- ;; i16x8.replace_lane
1461
- (rule (vec_insert_lane $I16X8 vec val idx)
1462
- (x64_pinsrw vec val idx))
1463
-
1464
- ;; i32x4.replace_lane
1465
- (rule 1 (vec_insert_lane $I32X4 vec val idx)
1466
- (if-let $true (use_sse41))
1467
- (x64_pinsrd vec val idx))
1468
-
1469
- (rule (vec_insert_lane $I32X4 vec val 0)
1470
- (x64_movss_regmove vec (x64_movd_to_xmm val)))
1471
-
1472
- ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1473
- ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1474
- (rule (vec_insert_lane $I32X4 vec val 1)
1475
- (let ((val Xmm (x64_movd_to_xmm val))
1476
- (vec Xmm vec))
1477
- (x64_shufps (x64_punpcklqdq val vec) vec 0b11_10_00_10)))
1478
-
1479
- ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1480
- ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1481
- (rule (vec_insert_lane $I32X4 vec val 2)
1482
- (let ((val Xmm (x64_movd_to_xmm val))
1483
- (vec Xmm vec))
1484
- (x64_shufps vec (x64_shufps val vec 0b00_11_00_00) 0b10_00_01_00)))
1485
-
1486
- ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1487
- ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1488
- (rule (vec_insert_lane $I32X4 vec val 3)
1489
- (let ((val Xmm (x64_movd_to_xmm val))
1490
- (vec Xmm vec))
1491
- (x64_shufps vec (x64_shufps val vec 0b11_10_01_00) 0b00_10_01_00)))
1492
-
1493
- ;; i64x2.replace_lane
1494
- (rule 1 (vec_insert_lane $I64X2 vec val idx)
1495
- (if-let $true (use_sse41))
1496
- (x64_pinsrq vec val idx))
1497
- (rule (vec_insert_lane $I64X2 vec val 0)
1498
- (x64_movsd_regmove vec (x64_movq_to_xmm val)))
1499
- (rule (vec_insert_lane $I64X2 vec val 1)
1500
- (x64_punpcklqdq vec (x64_movq_to_xmm val)))
1501
-
1502
- ;; f32x4.replace_lane
1503
- (rule 1 (vec_insert_lane $F32X4 vec val idx)
1504
- (if-let $true (use_sse41))
1505
- (x64_insertps vec val (sse_insertps_lane_imm idx)))
1506
-
1507
- ;; f32x4.replace_lane 0 - without insertps
1508
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 0)
1509
- (x64_movss_regmove vec val))
1510
-
1511
- ;; f32x4.replace_lane 1 - without insertps
1512
- ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1513
- ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1514
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 1)
1515
- (let ((tmp Xmm (x64_movlhps val vec)))
1516
- (x64_shufps tmp vec 0b11_10_00_10)))
1517
-
1518
- ;; f32x4.replace_lane 2 - without insertps
1519
- ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1520
- ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1521
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 2)
1522
- (let ((tmp Xmm (x64_shufps val vec 0b00_11_00_00)))
1523
- (x64_shufps vec tmp 0b10_00_01_00)))
1524
-
1525
- ;; f32x4.replace_lane 3 - without insertps
1526
- ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1527
- ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1528
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 3)
1529
- (let ((tmp Xmm (x64_shufps val vec 0b11_10_01_00)))
1530
- (x64_shufps vec tmp 0b00_10_01_00)))
1531
-
1532
- ;; Recursively delegate to the above rules by loading from memory first.
1533
- (rule (vec_insert_lane $F32X4 vec (RegMem.Mem addr) idx)
1534
- (vec_insert_lane $F32X4 vec (x64_movss_load addr) idx))
1535
-
1536
- ;; External rust code used to calculate the immediate value to `insertps`.
1537
- (decl sse_insertps_lane_imm (u8) u8)
1538
- (extern constructor sse_insertps_lane_imm sse_insertps_lane_imm)
1539
-
1540
- ;; f64x2.replace_lane 0
1541
- ;;
1542
- ;; Here the `movsd` instruction is used specifically to specialize moving
1543
- ;; into the fist lane where unlike above cases we're not using the lane
1544
- ;; immediate as an immediate to the instruction itself.
1545
- (rule (vec_insert_lane $F64X2 vec (RegMem.Reg val) 0)
1546
- (x64_movsd_regmove vec val))
1547
- (rule (vec_insert_lane $F64X2 vec (RegMem.Mem val) 0)
1548
- (x64_movsd_regmove vec (x64_movsd_load val)))
1549
-
1550
- ;; f64x2.replace_lane 1
1551
- ;;
1552
- ;; Here the `movlhps` instruction is used specifically to specialize moving
1553
- ;; into the second lane where unlike above cases we're not using the lane
1554
- ;; immediate as an immediate to the instruction itself.
1555
- (rule (vec_insert_lane $F64X2 vec val 1)
1556
- (x64_movlhps vec val))
1557
-
1558
- ;;;; Rules for `smin`, `smax`, `umin`, `umax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1559
-
1560
- ;; `i64` and smaller.
1561
-
1562
- (decl cmp_and_choose (Type CC Value Value) ValueRegs)
1563
- (rule (cmp_and_choose (fits_in_64 ty) cc x y)
1564
- (let ((size OperandSize (raw_operand_size_of_type ty))
1565
- ;; We need to put x and y in registers explicitly because
1566
- ;; we use the values more than once. Hence, even if these
1567
- ;; are "unique uses" at the CLIF level and would otherwise
1568
- ;; allow for load-op merging, here we cannot do that.
1569
- (x_reg Reg x)
1570
- (y_reg Reg y))
1571
- (with_flags_reg (x64_cmp size x_reg y_reg)
1572
- (cmove ty cc y_reg x_reg))))
1573
-
1574
- (rule -1 (lower (has_type (fits_in_64 ty) (umin x y)))
1575
- (cmp_and_choose ty (CC.B) x y))
1576
-
1577
- (rule -1 (lower (has_type (fits_in_64 ty) (umax x y)))
1578
- (cmp_and_choose ty (CC.NB) x y))
1579
-
1580
- (rule -1 (lower (has_type (fits_in_64 ty) (smin x y)))
1581
- (cmp_and_choose ty (CC.L) x y))
1582
-
1583
- (rule -1 (lower (has_type (fits_in_64 ty) (smax x y)))
1584
- (cmp_and_choose ty (CC.NL) x y))
1585
-
1586
- ;; SSE helpers for determining if single-instruction lowerings are available.
1587
-
1588
- (decl pure has_pmins (Type) bool)
1589
- (rule 1 (has_pmins $I16X8) $true)
1590
- (rule 1 (has_pmins $I64X2) $false)
1591
- (rule (has_pmins _) (use_sse41))
1592
-
1593
- (decl pure has_pmaxs (Type) bool)
1594
- (rule 1 (has_pmaxs $I16X8) $true)
1595
- (rule 1 (has_pmaxs $I64X2) $false)
1596
- (rule (has_pmaxs _) (use_sse41))
1597
-
1598
- (decl pure has_pmaxu (Type) bool)
1599
- (rule 1 (has_pmaxu $I8X16) $true)
1600
- (rule 1 (has_pmaxu $I64X2) $false)
1601
- (rule (has_pmaxu _) (use_sse41))
1602
-
1603
- (decl pure has_pminu (Type) bool)
1604
- (rule 1 (has_pminu $I8X16) $true)
1605
- (rule 1 (has_pminu $I64X2) $false)
1606
- (rule (has_pminu _) (use_sse41))
1607
-
1608
- ;; SSE `smax`.
1609
-
1610
- (rule (lower (has_type (ty_vec128 ty) (smax x y)))
1611
- (lower_vec_smax ty x y))
1612
-
1613
- (decl lower_vec_smax (Type Xmm Xmm) Xmm)
1614
- (rule 1 (lower_vec_smax ty x y)
1615
- (if-let $true (has_pmaxs ty))
1616
- (x64_pmaxs ty x y))
1617
-
1618
- (rule (lower_vec_smax ty x y)
1619
- (let (
1620
- (x Xmm x)
1621
- (y Xmm y)
1622
- (cmp Xmm (x64_pcmpgt ty x y))
1623
- (x_is_max Xmm (x64_pand cmp x))
1624
- (y_is_max Xmm (x64_pandn cmp y))
1625
- )
1626
- (x64_por x_is_max y_is_max)))
1627
-
1628
- ;; SSE `smin`.
1629
-
1630
- (rule 1 (lower (has_type (ty_vec128 ty) (smin x y)))
1631
- (if-let $true (has_pmins ty))
1632
- (x64_pmins ty x y))
1633
-
1634
- (rule (lower (has_type (ty_vec128 ty) (smin x y)))
1635
- (let (
1636
- (x Xmm x)
1637
- (y Xmm y)
1638
- (cmp Xmm (x64_pcmpgt ty y x))
1639
- (x_is_min Xmm (x64_pand cmp x))
1640
- (y_is_min Xmm (x64_pandn cmp y))
1641
- )
1642
- (x64_por x_is_min y_is_min)))
1643
-
1644
- ;; SSE `umax`.
1645
-
1646
- (rule 2 (lower (has_type (ty_vec128 ty) (umax x y)))
1647
- (if-let $true (has_pmaxu ty))
1648
- (x64_pmaxu ty x y))
1649
-
1650
- ;; If y < x then the saturating subtraction will be zero, otherwise when added
1651
- ;; back to x it'll return y.
1652
- (rule 1 (lower (has_type $I16X8 (umax x y)))
1653
- (let ((x Xmm x))
1654
- (x64_paddw x (x64_psubusw y x))))
1655
-
1656
- ;; Flip the upper bits of each lane so the signed comparison has the same
1657
- ;; result as a signed comparison, and then select the results with the output
1658
- ;; mask. See `pcmpgt` lowering for info on flipping the upper bit.
1659
- (rule (lower (has_type (ty_vec128 ty) (umax x y)))
1660
- (let (
1661
- (x Xmm x)
1662
- (y Xmm y)
1663
- (mask Xmm (flip_high_bit_mask ty))
1664
- (x_masked Xmm (x64_pxor x mask))
1665
- (y_masked Xmm (x64_pxor y mask))
1666
- (cmp Xmm (x64_pcmpgt ty x_masked y_masked))
1667
- (x_is_max Xmm (x64_pand cmp x))
1668
- (y_is_max Xmm (x64_pandn cmp y))
1669
- )
1670
- (x64_por x_is_max y_is_max)))
1671
-
1672
- (decl flip_high_bit_mask (Type) Xmm)
1673
- (rule (flip_high_bit_mask $I16X8)
1674
- (x64_movdqu_load (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000)))
1675
- (rule (flip_high_bit_mask $I32X4)
1676
- (x64_movdqu_load (emit_u128_le_const 0x80000000_80000000_80000000_80000000)))
1677
- (rule (flip_high_bit_mask $I64X2)
1678
- (x64_movdqu_load (emit_u128_le_const 0x8000000000000000_8000000000000000)))
1679
-
1680
- ;; SSE `umin`.
1681
-
1682
- (rule 2 (lower (has_type (ty_vec128 ty) (umin x y)))
1683
- (if-let $true (has_pminu ty))
1684
- (x64_pminu ty x y))
1685
-
1686
- ;; If x < y then the saturating subtraction will be 0. Otherwise if x > y then
1687
- ;; the saturated result, when subtracted again, will go back to `y`.
1688
- (rule 1 (lower (has_type $I16X8 (umin x y)))
1689
- (let ((x Xmm x))
1690
- (x64_psubw x (x64_psubusw x y))))
1691
-
1692
- ;; Same as `umax`, and see `pcmpgt` for docs on flipping the upper bit.
1693
- (rule (lower (has_type (ty_vec128 ty) (umin x y)))
1694
- (let (
1695
- (x Xmm x)
1696
- (y Xmm y)
1697
- (mask Xmm (flip_high_bit_mask ty))
1698
- (x_masked Xmm (x64_pxor x mask))
1699
- (y_masked Xmm (x64_pxor y mask))
1700
- (cmp Xmm (x64_pcmpgt ty y_masked x_masked))
1701
- (x_is_max Xmm (x64_pand cmp x))
1702
- (y_is_max Xmm (x64_pandn cmp y))
1703
- )
1704
- (x64_por x_is_max y_is_max)))
1705
-
1706
- ;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1707
-
1708
- (rule (lower (trap code))
1709
- (side_effect (x64_ud2 code)))
1710
-
1711
- ;;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1712
-
1713
- (rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
1714
- (with_flags
1715
- (x64_add_with_flags_paired ty a b)
1716
- (trap_if (CC.B) tc)))
1717
-
1718
- ;; Handle lhs immediates/sinkable loads in addition to the automatic rhs
1719
- ;; handling of above.
1720
-
1721
- (rule 1 (lower (has_type (fits_in_64 ty)
1722
- (uadd_overflow_trap (simm32_from_value a) b tc)))
1723
- (with_flags
1724
- (x64_add_with_flags_paired ty b a)
1725
- (trap_if (CC.B) tc)))
1726
-
1727
- (rule 2 (lower (has_type (fits_in_64 ty)
1728
- (uadd_overflow_trap (sinkable_load a) b tc)))
1729
- (with_flags
1730
- (x64_add_with_flags_paired ty b a)
1731
- (trap_if (CC.B) tc)))
1732
-
1733
- ;;;; Rules for `resumable_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1734
-
1735
- (rule (lower (resumable_trap code))
1736
- (side_effect (x64_ud2 code)))
1737
-
1738
- ;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1739
-
1740
- ;; N.B.: the Ret itself is generated by the ABI.
1741
- (rule (lower (return args))
1742
- (lower_return args))
1743
-
1744
- ;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1745
-
1746
- (rule -2 (lower (icmp cc a @ (value_type (fits_in_64 ty)) b))
1747
- (lower_icmp_bool (emit_cmp cc a b)))
1748
-
1749
- (rule -1 (lower (icmp cc a @ (value_type $I128) b))
1750
- (lower_icmp_bool (emit_cmp cc a b)))
1751
-
1752
- ;; Peephole optimization for `x < 0`, when x is a signed 64 bit value
1753
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I64) (u64_from_iconst 0))))
1754
- (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1755
-
1756
- ;; Peephole optimization for `0 > x`, when x is a signed 64 bit value
1757
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I64))))
1758
- (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1759
-
1760
- ;; Peephole optimization for `0 <= x`, when x is a signed 64 bit value
1761
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I64))))
1762
- (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1763
-
1764
- ;; Peephole optimization for `x >= 0`, when x is a signed 64 bit value
1765
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I64) (u64_from_iconst 0))))
1766
- (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1767
-
1768
- ;; Peephole optimization for `x < 0`, when x is a signed 32 bit value
1769
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I32) (u64_from_iconst 0))))
1770
- (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1771
-
1772
- ;; Peephole optimization for `0 > x`, when x is a signed 32 bit value
1773
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I32))))
1774
- (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1775
-
1776
- ;; Peephole optimization for `0 <= x`, when x is a signed 32 bit value
1777
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I32))))
1778
- (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1779
-
1780
- ;; Peephole optimization for `x >= 0`, when x is a signed 32 bit value
1781
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I32) (u64_from_iconst 0))))
1782
- (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1783
-
1784
- ;; For XMM-held values, we lower to `PCMP*` instructions, sometimes more than
1785
- ;; one. To note: what is different here about the output values is that each
1786
- ;; lane will be filled with all 1s or all 0s according to the comparison,
1787
- ;; whereas for GPR-held values, the result will be simply 0 or 1 (upper bits
1788
- ;; unset).
1789
- (rule (lower (icmp (IntCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1790
- (x64_pcmpeq ty a b))
1791
-
1792
- ;; To lower a not-equals comparison, we perform an equality comparison
1793
- ;; (PCMPEQ*) and then invert the bits (PXOR with all 1s).
1794
- (rule (lower (icmp (IntCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1795
- (let ((checked Xmm (x64_pcmpeq ty a b))
1796
- (all_ones Xmm (vector_all_ones)))
1797
- (x64_pxor checked all_ones)))
1798
-
1799
- ;; SSE `sgt`
1800
-
1801
- (rule (lower (icmp (IntCC.SignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1802
- (x64_pcmpgt ty a b))
1803
-
1804
- ;; SSE `slt`
1805
-
1806
- (rule (lower (icmp (IntCC.SignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1807
- (x64_pcmpgt ty b a))
1808
-
1809
- ;; SSE `ugt`
1810
-
1811
- ;; N.B.: we must manually prevent load coalescing operands; the
1812
- ;; register allocator gets confused otherwise.
1813
- (rule 1 (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1814
- (if-let $true (has_pmaxu ty))
1815
- (let ((a Xmm a)
1816
- (b Xmm b)
1817
- (max Xmm (x64_pmaxu ty a b))
1818
- (eq Xmm (x64_pcmpeq ty max b)))
1819
- (x64_pxor eq (vector_all_ones))))
1820
-
1821
- ;; Flip the upper bit of each lane so the result of a signed comparison is the
1822
- ;; same as the result of an unsigned comparison (see docs on `pcmpgt` for more)
1823
- (rule (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1824
- (let ((mask Xmm (flip_high_bit_mask ty))
1825
- (a_masked Xmm (x64_pxor a mask))
1826
- (b_masked Xmm (x64_pxor b mask)))
1827
- (x64_pcmpgt ty a_masked b_masked)))
1828
-
1829
- ;; SSE `ult`
1830
-
1831
- (rule 1 (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1832
- (if-let $true (has_pminu ty))
1833
- ;; N.B.: see note above.
1834
- (let ((a Xmm a)
1835
- (b Xmm b)
1836
- (min Xmm (x64_pminu ty a b))
1837
- (eq Xmm (x64_pcmpeq ty min b)))
1838
- (x64_pxor eq (vector_all_ones))))
1839
-
1840
- ;; Flip the upper bit of `a` and `b` so the signed comparison result will
1841
- ;; be the same as the unsigned comparison result (see docs on `pcmpgt` for more).
1842
- (rule (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1843
- (let ((mask Xmm (flip_high_bit_mask ty))
1844
- (a_masked Xmm (x64_pxor a mask))
1845
- (b_masked Xmm (x64_pxor b mask)))
1846
- (x64_pcmpgt ty b_masked a_masked)))
1847
-
1848
- ;; SSE `sge`
1849
-
1850
- ;; Use `pmaxs*` and compare the result to `a` to see if it's `>= b`.
1851
- (rule 1 (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1852
- (if-let $true (has_pmaxs ty))
1853
- (x64_pcmpeq ty a (x64_pmaxs ty a b)))
1854
-
1855
- ;; Without `pmaxs*` use a `pcmpgt*` with reversed operands and invert the
1856
- ;; result.
1857
- (rule (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1858
- (x64_pxor (x64_pcmpgt ty b a) (vector_all_ones)))
1859
-
1860
- ;; SSE `sle`
1861
-
1862
- ;; With `pmins*` use that and compare the result to `a`.
1863
- (rule 1 (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1864
- (if-let $true (has_pmins ty))
1865
- (x64_pcmpeq ty a (x64_pmins ty a b)))
1866
-
1867
- ;; Without `pmins*` perform a greater-than test and invert the result.
1868
- (rule (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1869
- (x64_pxor (x64_pcmpgt ty a b) (vector_all_ones)))
1870
-
1871
- ;; SSE `uge`
1872
-
1873
- (rule 2 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1874
- (if-let $true (has_pmaxu ty))
1875
- (x64_pcmpeq ty a (x64_pmaxu ty a b)))
1876
-
1877
- ;; Perform a saturating subtract of `a` from `b` and if the result is zero then
1878
- ;; `a` is greater or equal.
1879
- (rule 1 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type $I16X8) b))
1880
- (x64_pcmpeqw (x64_psubusw b a) (xmm_zero $I16X8)))
1881
-
1882
- ;; Flip the upper bit of each lane so the signed comparison is the same as
1883
- ;; an unsigned one and then invert the result. See docs on `pcmpgt` for why
1884
- ;; flipping the upper bit works.
1885
- (rule (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1886
- (let (
1887
- (mask Xmm (flip_high_bit_mask ty))
1888
- (a_masked Xmm (x64_pxor a mask))
1889
- (b_masked Xmm (x64_pxor b mask))
1890
- (cmp Xmm (x64_pcmpgt ty b_masked a_masked))
1891
- )
1892
- (x64_pxor cmp (vector_all_ones))))
1893
-
1894
- ;; SSE `ule`
1895
-
1896
- (rule 2 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1897
- (if-let $true (has_pminu ty))
1898
- (x64_pcmpeq ty a (x64_pminu ty a b)))
1899
-
1900
- ;; A saturating subtraction will produce zeros if `a` is less than `b`, so
1901
- ;; compare that result to an all-zeros result to figure out lanes of `a` that
1902
- ;; are <= to the lanes in `b`
1903
- (rule 1 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type $I16X8) b))
1904
- (let ((zeros_if_a_is_min Xmm (x64_psubusw a b)))
1905
- (x64_pcmpeqw zeros_if_a_is_min (xmm_zero $I8X16))))
1906
-
1907
- ;; Flip the upper bit of each lane in `a` and `b` so a signed comparison
1908
- ;; produces the same result as an unsigned comparison. Then test test for `gt`
1909
- ;; and invert the result to get the `le` that is desired here. See docs on
1910
- ;; `pcmpgt` for why flipping the upper bit works.
1911
- (rule (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1912
- (let (
1913
- (mask Xmm (flip_high_bit_mask ty))
1914
- (a_masked Xmm (x64_pxor a mask))
1915
- (b_masked Xmm (x64_pxor b mask))
1916
- (cmp Xmm (x64_pcmpgt ty a_masked b_masked))
1917
- )
1918
- (x64_pxor cmp (vector_all_ones))))
1919
-
1920
- ;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1921
-
1922
- ;; CLIF's `fcmp` instruction always operates on XMM registers--both scalar and
1923
- ;; vector. For the scalar versions, we use the flag-setting behavior of the
1924
- ;; `UCOMIS*` instruction to `SETcc` a 0 or 1 in a GPR register. Note that CLIF's
1925
- ;; `select` uses the same kind of flag-setting behavior but chooses values other
1926
- ;; than 0 or 1.
1927
- ;;
1928
- ;; Checking the result of `UCOMIS*` is unfortunately difficult in some cases
1929
- ;; because we do not have `SETcc` instructions that explicitly check
1930
- ;; simultaneously for the condition (i.e., `eq`, `le`, `gt`, etc.) *and*
1931
- ;; orderedness. Instead, we must check the flags multiple times. The UCOMIS*
1932
- ;; documentation (see Intel's Software Developer's Manual, volume 2, chapter 4)
1933
- ;; is helpful:
1934
- ;; - unordered assigns Z = 1, P = 1, C = 1
1935
- ;; - greater than assigns Z = 0, P = 0, C = 0
1936
- ;; - less than assigns Z = 0, P = 0, C = 1
1937
- ;; - equal assigns Z = 1, P = 0, C = 0
1938
-
1939
- (rule -1 (lower (fcmp cc a @ (value_type (ty_scalar_float ty)) b))
1940
- (lower_fcmp_bool (emit_fcmp cc a b)))
1941
-
1942
- ;; For vector lowerings, we use `CMPP*` instructions with a 3-bit operand that
1943
- ;; determines the comparison to make. Note that comparisons that succeed will
1944
- ;; fill the lane with 1s; comparisons that do not will fill the lane with 0s.
1945
-
1946
- (rule (lower (fcmp (FloatCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1947
- (x64_cmpp ty a b (FcmpImm.Equal)))
1948
- (rule (lower (fcmp (FloatCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1949
- (x64_cmpp ty a b (FcmpImm.NotEqual)))
1950
- (rule (lower (fcmp (FloatCC.LessThan) a @ (value_type (ty_vec128 ty)) b))
1951
- (x64_cmpp ty a b (FcmpImm.LessThan)))
1952
- (rule (lower (fcmp (FloatCC.LessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1953
- (x64_cmpp ty a b (FcmpImm.LessThanOrEqual)))
1954
- (rule (lower (fcmp (FloatCC.Ordered) a @ (value_type (ty_vec128 ty)) b))
1955
- (x64_cmpp ty a b (FcmpImm.Ordered)))
1956
- (rule (lower (fcmp (FloatCC.Unordered) a @ (value_type (ty_vec128 ty)) b))
1957
- (x64_cmpp ty a b (FcmpImm.Unordered)))
1958
- (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1959
- (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThan)))
1960
- (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1961
- (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThanOrEqual)))
1962
-
1963
- ;; Some vector lowerings rely on flipping the operands and using a reversed
1964
- ;; comparison code.
1965
-
1966
- (rule (lower (fcmp (FloatCC.GreaterThan) a @ (value_type (ty_vec128 ty)) b))
1967
- (x64_cmpp ty b a (FcmpImm.LessThan)))
1968
- (rule (lower (fcmp (FloatCC.GreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1969
- (x64_cmpp ty b a (FcmpImm.LessThanOrEqual)))
1970
- (rule (lower (fcmp (FloatCC.UnorderedOrLessThan) a @ (value_type (ty_vec128 ty)) b))
1971
- (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThan)))
1972
- (rule (lower (fcmp (FloatCC.UnorderedOrLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1973
- (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThanOrEqual)))
1974
-
1975
- ;; Some vector lowerings are simply not supported for certain codes:
1976
- ;; - FloatCC::OrderedNotEqual
1977
- ;; - FloatCC::UnorderedOrEqual
1978
-
1979
- ;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1980
-
1981
- ;; When a `select` has an `fcmp` as a condition then rely on `emit_fcmp` to
1982
- ;; figure out how to perform the comparison.
1983
- ;;
1984
- ;; Note, though, that the `FloatCC.Equal` requires an "and" to happen for two
1985
- ;; condition codes which isn't the easiest thing to lower to a `cmove`
1986
- ;; instruction. For this reason a `select (fcmp eq ..) ..` is instead
1987
- ;; flipped around to be `select (fcmp ne ..) ..` with all operands reversed.
1988
- ;; This will produce a `FcmpCondResult.OrCondition` which is easier to codegen
1989
- ;; for.
1990
- (rule (lower (has_type ty (select (maybe_uextend (fcmp cc a b)) x y)))
1991
- (lower_select_fcmp ty (emit_fcmp cc a b) x y))
1992
- (rule 1 (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.Equal) a b)) x y)))
1993
- (lower_select_fcmp ty (emit_fcmp (FloatCC.NotEqual) a b) y x))
1994
-
1995
- (decl lower_select_fcmp (Type FcmpCondResult Value Value) InstOutput)
1996
- (rule (lower_select_fcmp ty (FcmpCondResult.Condition flags cc) x y)
1997
- (with_flags flags (cmove_from_values ty cc x y)))
1998
- (rule (lower_select_fcmp ty (FcmpCondResult.OrCondition flags cc1 cc2) x y)
1999
- (with_flags flags (cmove_or_from_values ty cc1 cc2 x y)))
2000
-
2001
- ;; We also can lower `select`s that depend on an `icmp` test, but more simply
2002
- ;; than the `fcmp` variants above. In these cases, we lower to a `CMP`
2003
- ;; instruction plus a `CMOV`; recall that `cmove_from_values` here may emit more
2004
- ;; than one instruction for certain types (e.g., XMM-held, I128).
2005
-
2006
- (rule (lower (has_type ty (select (maybe_uextend (icmp cc a @ (value_type (fits_in_64 a_ty)) b)) x y)))
2007
- (let ((size OperandSize (raw_operand_size_of_type a_ty)))
2008
- (with_flags (x64_cmp size b a) (cmove_from_values ty cc x y))))
2009
-
2010
- ;; Finally, we lower `select` from a condition value `c`. These rules are meant
2011
- ;; to be the final, default lowerings if no other patterns matched above.
2012
-
2013
- (rule -1 (lower (has_type ty (select c @ (value_type (fits_in_64 a_ty)) x y)))
2014
- (let ((size OperandSize (raw_operand_size_of_type a_ty))
2015
- ;; N.B.: disallow load-op fusion, see above. TODO:
2016
- ;; https://github.com/bytecodealliance/wasmtime/issues/3953.
2017
- (gpr_c Gpr (put_in_gpr c)))
2018
- (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
2019
-
2020
- (rule -2 (lower (has_type ty (select c @ (value_type $I128) x y)))
2021
- (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
2022
- (select_icmp cond_result x y)))
2023
-
2024
- ;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2025
-
2026
- ;; If available, we can use a plain lzcnt instruction here. Note no
2027
- ;; special handling is required for zero inputs, because the machine
2028
- ;; instruction does what the CLIF expects for zero, i.e. it returns
2029
- ;; zero.
2030
- (rule 3 (lower (has_type (ty_32_or_64 ty) (clz src)))
2031
- (if-let $true (use_lzcnt))
2032
- (x64_lzcnt ty src))
2033
-
2034
- (rule 2 (lower (has_type (ty_32_or_64 ty) (clz src)))
2035
- (do_clz ty ty src))
2036
-
2037
- (rule 1 (lower
2038
- (has_type (ty_8_or_16 ty)
2039
- (clz src)))
2040
- (do_clz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
2041
-
2042
- (rule 0 (lower
2043
- (has_type $I128
2044
- (clz src)))
2045
- (let ((upper Gpr (do_clz $I64 $I64 (value_regs_get_gpr src 1)))
2046
- (lower Gpr (x64_add $I64
2047
- (do_clz $I64 $I64 (value_regs_get_gpr src 0))
2048
- (RegMemImm.Imm 64)))
2049
- (result_lo Gpr
2050
- (with_flags_reg
2051
- (x64_cmp_imm (OperandSize.Size64) 64 upper)
2052
- (cmove $I64 (CC.NZ) upper lower))))
2053
- (value_regs result_lo (imm $I64 0))))
2054
-
2055
- ;; Implementation helper for clz; operates on 32 or 64-bit units.
2056
- (decl do_clz (Type Type Gpr) Gpr)
2057
- (rule (do_clz ty orig_ty src)
2058
- (let ((highest_bit_index Reg (bsr_or_else ty src (imm_i64 $I64 -1)))
2059
- (bits_minus_1 Reg (imm ty (u64_sub (ty_bits_u64 orig_ty) 1))))
2060
- (x64_sub ty bits_minus_1 highest_bit_index)))
2061
-
2062
- ;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2063
-
2064
- ;; Analogous to `clz` cases above, but using mirror instructions
2065
- ;; (tzcnt vs lzcnt, bsf vs bsr).
2066
-
2067
- (rule 3 (lower (has_type (ty_32_or_64 ty) (ctz src)))
2068
- (if-let $true (use_bmi1))
2069
- (x64_tzcnt ty src))
2070
-
2071
- (rule 2 (lower (has_type (ty_32_or_64 ty) (ctz src)))
2072
- (do_ctz ty ty src))
2073
-
2074
- (rule 1 (lower
2075
- (has_type (ty_8_or_16 ty)
2076
- (ctz src)))
2077
- (do_ctz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
2078
-
2079
- (rule 0 (lower
2080
- (has_type $I128
2081
- (ctz src)))
2082
- (let ((lower Gpr (do_ctz $I64 $I64 (value_regs_get_gpr src 0)))
2083
- (upper Gpr (x64_add $I64
2084
- (do_ctz $I64 $I64 (value_regs_get_gpr src 1))
2085
- (RegMemImm.Imm 64)))
2086
- (result_lo Gpr
2087
- (with_flags_reg
2088
- (x64_cmp_imm (OperandSize.Size64) 64 lower)
2089
- (cmove $I64 (CC.Z) upper lower))))
2090
- (value_regs result_lo (imm $I64 0))))
2091
-
2092
- (decl do_ctz (Type Type Gpr) Gpr)
2093
- (rule (do_ctz ty orig_ty src)
2094
- (bsf_or_else ty src (imm $I64 (ty_bits_u64 orig_ty))))
2095
-
2096
- ;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2097
-
2098
- (rule 4 (lower (has_type (ty_32_or_64 ty) (popcnt src)))
2099
- (if-let $true (use_popcnt))
2100
- (x64_popcnt ty src))
2101
-
2102
- (rule 3 (lower (has_type (ty_8_or_16 ty) (popcnt src)))
2103
- (if-let $true (use_popcnt))
2104
- (x64_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2105
-
2106
- (rule 1 (lower (has_type $I128 (popcnt src)))
2107
- (if-let $true (use_popcnt))
2108
- (let ((lo_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 0)))
2109
- (hi_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 1))))
2110
- (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2111
-
2112
- (rule -1 (lower
2113
- (has_type (ty_32_or_64 ty)
2114
- (popcnt src)))
2115
- (do_popcnt ty src))
2116
-
2117
- (rule -2 (lower
2118
- (has_type (ty_8_or_16 ty)
2119
- (popcnt src)))
2120
- (do_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2121
-
2122
- (rule (lower
2123
- (has_type $I128
2124
- (popcnt src)))
2125
- (let ((lo_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 0)))
2126
- (hi_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 1))))
2127
- (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2128
-
2129
- ;; Implementation of popcount when we don't nave a native popcount
2130
- ;; instruction.
2131
- (decl do_popcnt (Type Gpr) Gpr)
2132
- (rule (do_popcnt $I64 src)
2133
- (let ((shifted1 Gpr (x64_shr $I64 src (Imm8Reg.Imm8 1)))
2134
- (sevens Gpr (imm $I64 0x7777777777777777))
2135
- (masked1 Gpr (x64_and $I64 shifted1 sevens))
2136
- ;; diff1 := src - ((src >> 1) & 0b0111_0111_0111...)
2137
- (diff1 Gpr (x64_sub $I64 src masked1))
2138
- (shifted2 Gpr (x64_shr $I64 masked1 (Imm8Reg.Imm8 1)))
2139
- (masked2 Gpr (x64_and $I64 shifted2 sevens))
2140
- ;; diff2 := diff1 - ((diff1 >> 1) & 0b0111_0111_0111...)
2141
- (diff2 Gpr (x64_sub $I64 diff1 masked2))
2142
- (shifted3 Gpr (x64_shr $I64 masked2 (Imm8Reg.Imm8 1)))
2143
- (masked3 Gpr (x64_and $I64 shifted3 sevens))
2144
- ;; diff3 := diff2 - ((diff2 >> 1) & 0b0111_0111_0111...)
2145
- ;;
2146
- ;; At this point, each nibble of diff3 is the popcount of
2147
- ;; that nibble. This works because at each step above, we
2148
- ;; are basically subtracting floor(value / 2) from the
2149
- ;; running value; the leftover remainder is 1 if the LSB
2150
- ;; was 1. After three steps, we have (nibble / 8) -- 0 or
2151
- ;; 1 for the MSB of the nibble -- plus three possible
2152
- ;; additions for the three other bits.
2153
- (diff3 Gpr (x64_sub $I64 diff2 masked3))
2154
- ;; Add the two nibbles of each byte together.
2155
- (sum1 Gpr (x64_add $I64
2156
- (x64_shr $I64 diff3 (Imm8Reg.Imm8 4))
2157
- diff3))
2158
- ;; Mask the above sum to have the popcount for each byte
2159
- ;; in the lower nibble of that byte.
2160
- (ofof Gpr (imm $I64 0x0f0f0f0f0f0f0f0f))
2161
- (masked4 Gpr (x64_and $I64 sum1 ofof))
2162
- (ones Gpr (imm $I64 0x0101010101010101))
2163
- ;; Use a multiply to sum all of the bytes' popcounts into
2164
- ;; the top byte. Consider the binomial expansion for the
2165
- ;; top byte: it is the sum of the bytes (masked4 >> 56) *
2166
- ;; 0x01 + (masked4 >> 48) * 0x01 + (masked4 >> 40) * 0x01
2167
- ;; + ... + (masked4 >> 0).
2168
- (mul Gpr (x64_mul $I64 masked4 ones))
2169
- ;; Now take that top byte and return it as the popcount.
2170
- (final Gpr (x64_shr $I64 mul (Imm8Reg.Imm8 56))))
2171
- final))
2172
-
2173
- ;; This is the 32-bit version of the above; the steps for each nibble
2174
- ;; are the same, we just use constants half as wide.
2175
- (rule (do_popcnt $I32 src)
2176
- (let ((shifted1 Gpr (x64_shr $I32 src (Imm8Reg.Imm8 1)))
2177
- (sevens Gpr (imm $I32 0x77777777))
2178
- (masked1 Gpr (x64_and $I32 shifted1 sevens))
2179
- (diff1 Gpr (x64_sub $I32 src masked1))
2180
- (shifted2 Gpr (x64_shr $I32 masked1 (Imm8Reg.Imm8 1)))
2181
- (masked2 Gpr (x64_and $I32 shifted2 sevens))
2182
- (diff2 Gpr (x64_sub $I32 diff1 masked2))
2183
- (shifted3 Gpr (x64_shr $I32 masked2 (Imm8Reg.Imm8 1)))
2184
- (masked3 Gpr (x64_and $I32 shifted3 sevens))
2185
- (diff3 Gpr (x64_sub $I32 diff2 masked3))
2186
- (sum1 Gpr (x64_add $I32
2187
- (x64_shr $I32 diff3 (Imm8Reg.Imm8 4))
2188
- diff3))
2189
- (masked4 Gpr (x64_and $I32 sum1 (RegMemImm.Imm 0x0f0f0f0f)))
2190
- (mul Gpr (x64_mul $I32 masked4 (RegMemImm.Imm 0x01010101)))
2191
- (final Gpr (x64_shr $I32 mul (Imm8Reg.Imm8 24))))
2192
- final))
2193
-
2194
-
2195
- (rule 2 (lower (has_type $I8X16 (popcnt src)))
2196
- (if-let $true (use_avx512vl))
2197
- (if-let $true (use_avx512bitalg))
2198
- (x64_vpopcntb src))
2199
-
2200
-
2201
- ;; For SSE 4.2 we use Mula's algorithm (https://arxiv.org/pdf/1611.07612.pdf):
2202
- ;;
2203
- ;; __m128i count_bytes ( __m128i v) {
2204
- ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2205
- ;; __m128i low_mask = _mm_set1_epi8 (0x0f);
2206
- ;; __m128i lo = _mm_and_si128 (v, low_mask);
2207
- ;; __m128i hi = _mm_and_si128 (_mm_srli_epi16 (v, 4), low_mask);
2208
- ;; __m128i cnt1 = _mm_shuffle_epi8 (lookup, lo);
2209
- ;; __m128i cnt2 = _mm_shuffle_epi8 (lookup, hi);
2210
- ;; return _mm_add_epi8 (cnt1, cnt2);
2211
- ;; }
2212
- ;;
2213
- ;; Details of the above algorithm can be found in the reference noted above, but the basics
2214
- ;; are to create a lookup table that pre populates the popcnt values for each number [0,15].
2215
- ;; The algorithm uses shifts to isolate 4 bit sections of the vector, pshufb as part of the
2216
- ;; lookup process, and adds together the results.
2217
- ;;
2218
- ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2219
-
2220
-
2221
- (rule 1 (lower (has_type $I8X16 (popcnt src)))
2222
- (if-let $true (use_ssse3))
2223
- (let ((low_mask XmmMem (emit_u128_le_const 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f))
2224
- (low_nibbles Xmm (sse_and $I8X16 src low_mask))
2225
- ;; Note that this is a 16x8 shift, but that's OK; we mask
2226
- ;; off anything that traverses from one byte to the next
2227
- ;; with the low_mask below.
2228
- (shifted_src Xmm (x64_psrlw src (xmi_imm 4)))
2229
- (high_nibbles Xmm (sse_and $I8X16 shifted_src low_mask))
2230
- (lookup Xmm (x64_xmm_load_const $I8X16
2231
- (emit_u128_le_const 0x04030302_03020201_03020201_02010100)))
2232
- (bit_counts_low Xmm (x64_pshufb lookup low_nibbles))
2233
- (bit_counts_high Xmm (x64_pshufb lookup high_nibbles)))
2234
- (x64_paddb bit_counts_low bit_counts_high)))
2235
-
2236
- ;; A modified version of the popcnt method from Hacker's Delight.
2237
- (rule (lower (has_type $I8X16 (popcnt src)))
2238
- (let ((mask1 XmmMem (emit_u128_le_const 0x77777777777777777777777777777777))
2239
- (src Xmm src)
2240
- (shifted Xmm (x64_pand (x64_psrlq src (xmi_imm 1)) mask1))
2241
- (src Xmm (x64_psubb src shifted))
2242
- (shifted Xmm (x64_pand (x64_psrlq shifted (xmi_imm 1)) mask1))
2243
- (src Xmm (x64_psubb src shifted))
2244
- (shifted Xmm (x64_pand (x64_psrlq shifted (xmi_imm 1)) mask1))
2245
- (src Xmm (x64_psubb src shifted))
2246
- (src Xmm (x64_paddb src (x64_psrlw src (xmi_imm 4)))))
2247
- (x64_pand src (emit_u128_le_const 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f))))
2248
-
2249
- ;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2250
-
2251
- (rule (lower (has_type $I8 (bitrev src)))
2252
- (do_bitrev8 $I32 src))
2253
-
2254
- (rule (lower (has_type $I16 (bitrev src)))
2255
- (do_bitrev16 $I32 src))
2256
-
2257
- (rule (lower (has_type $I32 (bitrev src)))
2258
- (do_bitrev32 $I32 src))
2259
-
2260
- (rule (lower (has_type $I64 (bitrev src)))
2261
- (do_bitrev64 $I64 src))
2262
-
2263
- (rule (lower (has_type $I128 (bitrev src)))
2264
- (value_regs
2265
- (do_bitrev64 $I64 (value_regs_get_gpr src 1))
2266
- (do_bitrev64 $I64 (value_regs_get_gpr src 0))))
2267
-
2268
- (decl do_bitrev8 (Type Gpr) Gpr)
2269
- (rule (do_bitrev8 ty src)
2270
- (let ((tymask u64 (ty_mask ty))
2271
- (mask1 Gpr (imm ty (u64_and tymask 0x5555555555555555)))
2272
- (lo1 Gpr (x64_and ty src mask1))
2273
- (hi1 Gpr (x64_and ty (x64_shr ty src (Imm8Reg.Imm8 1)) mask1))
2274
- (swap1 Gpr (x64_or ty
2275
- (x64_shl ty lo1 (Imm8Reg.Imm8 1))
2276
- hi1))
2277
- (mask2 Gpr (imm ty (u64_and tymask 0x3333333333333333)))
2278
- (lo2 Gpr (x64_and ty swap1 mask2))
2279
- (hi2 Gpr (x64_and ty (x64_shr ty swap1 (Imm8Reg.Imm8 2)) mask2))
2280
- (swap2 Gpr (x64_or ty
2281
- (x64_shl ty lo2 (Imm8Reg.Imm8 2))
2282
- hi2))
2283
- (mask4 Gpr (imm ty (u64_and tymask 0x0f0f0f0f0f0f0f0f)))
2284
- (lo4 Gpr (x64_and ty swap2 mask4))
2285
- (hi4 Gpr (x64_and ty (x64_shr ty swap2 (Imm8Reg.Imm8 4)) mask4))
2286
- (swap4 Gpr (x64_or ty
2287
- (x64_shl ty lo4 (Imm8Reg.Imm8 4))
2288
- hi4)))
2289
- swap4))
2290
-
2291
- (decl do_bitrev16 (Type Gpr) Gpr)
2292
- (rule (do_bitrev16 ty src)
2293
- (let ((src_ Gpr (do_bitrev8 ty src))
2294
- (tymask u64 (ty_mask ty))
2295
- (mask8 Gpr (imm ty (u64_and tymask 0x00ff00ff00ff00ff)))
2296
- (lo8 Gpr (x64_and ty src_ mask8))
2297
- (hi8 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 8)) mask8))
2298
- (swap8 Gpr (x64_or ty
2299
- (x64_shl ty lo8 (Imm8Reg.Imm8 8))
2300
- hi8)))
2301
- swap8))
2302
-
2303
- (decl do_bitrev32 (Type Gpr) Gpr)
2304
- (rule (do_bitrev32 ty src)
2305
- (let ((src_ Gpr (do_bitrev16 ty src))
2306
- (tymask u64 (ty_mask ty))
2307
- (mask16 Gpr (imm ty (u64_and tymask 0x0000ffff0000ffff)))
2308
- (lo16 Gpr (x64_and ty src_ mask16))
2309
- (hi16 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 16)) mask16))
2310
- (swap16 Gpr (x64_or ty
2311
- (x64_shl ty lo16 (Imm8Reg.Imm8 16))
2312
- hi16)))
2313
- swap16))
2314
-
2315
- (decl do_bitrev64 (Type Gpr) Gpr)
2316
- (rule (do_bitrev64 ty @ $I64 src)
2317
- (let ((src_ Gpr (do_bitrev32 ty src))
2318
- (mask32 Gpr (imm ty 0xffffffff))
2319
- (lo32 Gpr (x64_and ty src_ mask32))
2320
- (hi32 Gpr (x64_shr ty src_ (Imm8Reg.Imm8 32)))
2321
- (swap32 Gpr (x64_or ty
2322
- (x64_shl ty lo32 (Imm8Reg.Imm8 32))
2323
- hi32)))
2324
- swap32))
2325
-
2326
- ;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2327
-
2328
- ;; x64 bswap instruction is only for 32- or 64-bit swaps
2329
- ;; implement the 16-bit swap as a rotl by 8
2330
- (rule (lower (has_type $I16 (bswap src)))
2331
- (x64_rotl $I16 src (Imm8Reg.Imm8 8)))
2332
-
2333
- (rule (lower (has_type $I32 (bswap src)))
2334
- (x64_bswap $I32 src))
2335
-
2336
- (rule (lower (has_type $I64 (bswap src)))
2337
- (x64_bswap $I64 src))
2338
-
2339
- (rule (lower (has_type $I128 (bswap src)))
2340
- (value_regs
2341
- (x64_bswap $I64 (value_regs_get_gpr src 1))
2342
- (x64_bswap $I64 (value_regs_get_gpr src 0))))
2343
-
2344
- ;; Rules for `is_null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2345
-
2346
- ;; Null references are represented by the constant value `0`.
2347
- (rule (lower (is_null src @ (value_type $R64)))
2348
- (with_flags
2349
- (x64_cmp_imm (OperandSize.Size64) 0 src)
2350
- (x64_setcc (CC.Z))))
2351
-
2352
- ;; Rules for `is_invalid` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2353
-
2354
- ;; Invalid references are represented by the constant value `-1`.
2355
- (rule (lower (is_invalid src @ (value_type $R64)))
2356
- (with_flags
2357
- (x64_cmp_imm (OperandSize.Size64) 0xffffffff src) ;; simm32 0xffff_ffff is sign-extended to -1.
2358
- (x64_setcc (CC.Z))))
2359
-
2360
-
2361
- ;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2362
-
2363
- ;; I{8,16,32,64} -> I128.
2364
- (rule (lower (has_type $I128 (uextend src)))
2365
- (value_regs (extend_to_gpr src $I64 (ExtendKind.Zero)) (imm $I64 0)))
2366
-
2367
- ;; I{8,16,32} -> I64.
2368
- (rule (lower (has_type $I64 (uextend src)))
2369
- (extend_to_gpr src $I64 (ExtendKind.Zero)))
2370
-
2371
- ;; I{8,16} -> I32
2372
- ;; I8 -> I16
2373
- (rule -1 (lower (has_type (fits_in_32 _) (uextend src)))
2374
- (extend_to_gpr src $I32 (ExtendKind.Zero)))
2375
-
2376
- ;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2377
-
2378
- ;; I{8,16,32} -> I128.
2379
- ;;
2380
- ;; Produce upper 64 bits sign-extended from lower 64: shift right by
2381
- ;; 63 bits to spread the sign bit across the result.
2382
- (rule (lower (has_type $I128 (sextend src)))
2383
- (let ((lo Gpr (extend_to_gpr src $I64 (ExtendKind.Sign)))
2384
- (hi Gpr (x64_sar $I64 lo (Imm8Reg.Imm8 63))))
2385
- (value_regs lo hi)))
2386
-
2387
- ;; I{8,16,32} -> I64.
2388
- (rule (lower (has_type $I64 (sextend src)))
2389
- (extend_to_gpr src $I64 (ExtendKind.Sign)))
2390
-
2391
- ;; I{8,16} -> I32
2392
- ;; I8 -> I16
2393
- (rule -1 (lower (has_type (fits_in_32 _) (sextend src)))
2394
- (extend_to_gpr src $I32 (ExtendKind.Sign)))
2395
-
2396
- ;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2397
-
2398
- ;; T -> T is always a no-op, even I128 -> I128.
2399
- (rule (lower (has_type ty (ireduce src @ (value_type ty))))
2400
- src)
2401
-
2402
- ;; T -> I{64,32,16,8}: We can simply pass through the value: values
2403
- ;; are always stored with high bits undefined, so we can just leave
2404
- ;; them be.
2405
- (rule 1 (lower (has_type (fits_in_64 ty) (ireduce src)))
2406
- (value_regs_get_gpr src 0))
2407
-
2408
- ;; Rules for `debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2409
-
2410
- (rule (lower (debugtrap))
2411
- (side_effect (x64_hlt)))
2412
-
2413
- ;; Rules for `x86_pmaddubsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2414
-
2415
- (rule (lower (has_type $I16X8 (x86_pmaddubsw x y)))
2416
- (if-let $true (use_ssse3))
2417
- (x64_pmaddubsw y x))
2418
-
2419
- ;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2420
-
2421
- (rule (lower (has_type $F32 (fadd x y)))
2422
- (x64_addss x y))
2423
- (rule (lower (has_type $F64 (fadd x y)))
2424
- (x64_addsd x y))
2425
- (rule (lower (has_type $F32X4 (fadd x y)))
2426
- (x64_addps x y))
2427
- (rule (lower (has_type $F64X2 (fadd x y)))
2428
- (x64_addpd x y))
2429
-
2430
- ;; The above rules automatically sink loads for rhs operands, so additionally
2431
- ;; add rules for sinking loads with lhs operands.
2432
- (rule 1 (lower (has_type $F32 (fadd (sinkable_load x) y)))
2433
- (x64_addss y x))
2434
- (rule 1 (lower (has_type $F64 (fadd (sinkable_load x) y)))
2435
- (x64_addsd y x))
2436
- (rule 1 (lower (has_type $F32X4 (fadd (sinkable_load x) y)))
2437
- (x64_addps y x))
2438
- (rule 1 (lower (has_type $F64X2 (fadd (sinkable_load x) y)))
2439
- (x64_addpd y x))
2440
-
2441
- ;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2442
-
2443
- (rule (lower (has_type $F32 (fsub x y)))
2444
- (x64_subss x y))
2445
- (rule (lower (has_type $F64 (fsub x y)))
2446
- (x64_subsd x y))
2447
- (rule (lower (has_type $F32X4 (fsub x y)))
2448
- (x64_subps x y))
2449
- (rule (lower (has_type $F64X2 (fsub x y)))
2450
- (x64_subpd x y))
2451
-
2452
- ;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2453
-
2454
- (rule (lower (has_type $F32 (fmul x y)))
2455
- (x64_mulss x y))
2456
- (rule (lower (has_type $F64 (fmul x y)))
2457
- (x64_mulsd x y))
2458
- (rule (lower (has_type $F32X4 (fmul x y)))
2459
- (x64_mulps x y))
2460
- (rule (lower (has_type $F64X2 (fmul x y)))
2461
- (x64_mulpd x y))
2462
-
2463
- ;; The above rules automatically sink loads for rhs operands, so additionally
2464
- ;; add rules for sinking loads with lhs operands.
2465
- (rule 1 (lower (has_type $F32 (fmul (sinkable_load x) y)))
2466
- (x64_mulss y x))
2467
- (rule 1 (lower (has_type $F64 (fmul (sinkable_load x) y)))
2468
- (x64_mulsd y x))
2469
- (rule 1 (lower (has_type $F32X4 (fmul (sinkable_load x) y)))
2470
- (x64_mulps y x))
2471
- (rule 1 (lower (has_type $F64X2 (fmul (sinkable_load x) y)))
2472
- (x64_mulpd y x))
2473
-
2474
- ;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2475
-
2476
- (rule (lower (has_type $F32 (fdiv x y)))
2477
- (x64_divss x y))
2478
- (rule (lower (has_type $F64 (fdiv x y)))
2479
- (x64_divsd x y))
2480
- (rule (lower (has_type $F32X4 (fdiv x y)))
2481
- (x64_divps x y))
2482
- (rule (lower (has_type $F64X2 (fdiv x y)))
2483
- (x64_divpd x y))
2484
-
2485
- ;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2486
- (rule (lower (has_type $F32 (sqrt x)))
2487
- (x64_sqrtss x))
2488
- (rule (lower (has_type $F64 (sqrt x)))
2489
- (x64_sqrtsd x))
2490
- (rule (lower (has_type $F32X4 (sqrt x)))
2491
- (x64_sqrtps x))
2492
- (rule (lower (has_type $F64X2 (sqrt x)))
2493
- (x64_sqrtpd x))
2494
-
2495
- ;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2496
- (rule (lower (has_type $F64 (fpromote x)))
2497
- (x64_cvtss2sd x))
2498
-
2499
- ;; Rules for `fvpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2500
- (rule (lower (has_type $F64X2 (fvpromote_low x)))
2501
- (x64_cvtps2pd (put_in_xmm x)))
2502
-
2503
- ;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2504
- (rule (lower (has_type $F32 (fdemote x)))
2505
- (x64_cvtsd2ss x))
2506
-
2507
- ;; Rules for `fvdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2508
- (rule (lower (has_type $F32X4 (fvdemote x)))
2509
- (x64_cvtpd2ps x))
2510
-
2511
- ;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2512
-
2513
- (rule (lower (has_type $F32 (fmin x y)))
2514
- (xmm_min_max_seq $F32 $true x y))
2515
- (rule (lower (has_type $F64 (fmin x y)))
2516
- (xmm_min_max_seq $F64 $true x y))
2517
-
2518
- ;; Vector-typed version. We don't use single pseudoinstructions as
2519
- ;; above, because we don't need to generate a mini-CFG. Instead, we
2520
- ;; perform a branchless series of operations.
2521
- ;;
2522
- ;; We cannot simply use native min instructions (minps, minpd) because
2523
- ;; NaN handling is different per CLIF semantics than on
2524
- ;; x86. Specifically, if an argument is NaN, or the arguments are both
2525
- ;; zero but of opposite signs, then the x86 instruction always
2526
- ;; produces the second argument. However, per CLIF semantics, we
2527
- ;; require that fmin(NaN, _) = fmin(_, NaN) = NaN, and fmin(+0, -0) =
2528
- ;; fmin(-0, +0) = -0.
2529
-
2530
- (rule (lower (has_type $F32X4 (fmin x y)))
2531
- ;; Compute min(x, y) and min(y, x) with native
2532
- ;; instructions. These will differ in one of the edge cases
2533
- ;; above that we have to handle properly. (Conversely, if they
2534
- ;; don't differ, then the native instruction's answer is the
2535
- ;; right one per CLIF semantics.)
2536
- (let ((min1 Xmm (x64_minps x y))
2537
- (min2 Xmm (x64_minps y x))
2538
- ;; Compute the OR of the two. Note that NaNs have an
2539
- ;; exponent field of all-ones (0xFF for F32), so if either
2540
- ;; result is a NaN, this OR will be. And if either is a
2541
- ;; zero (which has an exponent of 0 and mantissa of 0),
2542
- ;; this captures a sign-bit of 1 (negative) if either
2543
- ;; input is negative.
2544
- ;;
2545
- ;; In the case where we don't have a +/-0 mismatch or
2546
- ;; NaNs, then `min1` and `min2` are equal and `min_or` is
2547
- ;; the correct minimum.
2548
- (min_or Xmm (x64_orps min1 min2))
2549
- ;; "compare unordered" produces a true mask (all ones) in
2550
- ;; a given lane if the min is a NaN. We use this to
2551
- ;; generate a mask to ensure quiet NaNs.
2552
- (is_nan_mask Xmm (x64_cmpps min_or min2 (FcmpImm.Unordered)))
2553
- ;; OR in the NaN mask.
2554
- (min_or_2 Xmm (x64_orps min_or is_nan_mask))
2555
- ;; Shift the NaN mask down so that it covers just the
2556
- ;; fraction below the NaN signalling bit; we'll use this
2557
- ;; to mask off non-canonical NaN payloads.
2558
- ;;
2559
- ;; All-ones for NaN, shifted down to leave 10 top bits (1
2560
- ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2561
- ;; cleared.
2562
- (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2563
- ;; Do a NAND, so that we retain every bit not set in
2564
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2565
- ;; we retain every bit) in non-NaN cases, and will have
2566
- ;; ones (so we clear those bits) in NaN-payload bits
2567
- ;; otherwise.
2568
- (final Xmm (x64_andnps nan_fraction_mask min_or_2)))
2569
- final))
2570
-
2571
- ;; Likewise for F64 lanes, except that the right-shift is by 13 bits
2572
- ;; (1 sign, 11 exponent, 1 QNaN bit).
2573
- (rule (lower (has_type $F64X2 (fmin x y)))
2574
- (let ((min1 Xmm (x64_minpd x y))
2575
- (min2 Xmm (x64_minpd y x))
2576
- (min_or Xmm (x64_orpd min1 min2))
2577
- (is_nan_mask Xmm (x64_cmppd min1 min2 (FcmpImm.Unordered)))
2578
- (min_or_2 Xmm (x64_orpd min_or is_nan_mask))
2579
- (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2580
- (final Xmm (x64_andnpd nan_fraction_mask min_or_2)))
2581
- final))
2582
-
2583
- ;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2584
-
2585
- (rule (lower (has_type $F32 (fmax x y)))
2586
- (xmm_min_max_seq $F32 $false x y))
2587
- (rule (lower (has_type $F64 (fmax x y)))
2588
- (xmm_min_max_seq $F64 $false x y))
2589
-
2590
- ;; The vector version of fmax here is a dual to the fmin sequence
2591
- ;; above, almost, with a few differences.
2592
-
2593
- (rule (lower (has_type $F32X4 (fmax x y)))
2594
- ;; Compute max(x, y) and max(y, x) with native
2595
- ;; instructions. These will differ in one of the edge cases
2596
- ;; above that we have to handle properly. (Conversely, if they
2597
- ;; don't differ, then the native instruction's answer is the
2598
- ;; right one per CLIF semantics.)
2599
- (let ((max1 Xmm (x64_maxps x y))
2600
- (max2 Xmm (x64_maxps y x))
2601
- ;; Compute the XOR of the two maxima. In the case
2602
- ;; where we don't have a +/-0 mismatch or NaNs, then
2603
- ;; `min1` and `min2` are equal and this XOR is zero.
2604
- (max_xor Xmm (x64_xorps max1 max2))
2605
- ;; OR the XOR into one of the original maxima. If they are
2606
- ;; equal, this does nothing. If max2 was NaN, its exponent
2607
- ;; bits were all-ones, so the xor's exponent bits were the
2608
- ;; complement of max1, and the OR of max1 and max_xor has
2609
- ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2610
- ;; its exponent bits were already all-ones, so the OR will
2611
- ;; be a NaN as well.
2612
- (max_blended_nan Xmm (x64_orps max1 max_xor))
2613
- ;; Subtract the XOR. This ensures that if we had +0 and
2614
- ;; -0, we end up with +0.
2615
- (max_blended_nan_positive Xmm (x64_subps max_blended_nan max_xor))
2616
- ;; "compare unordered" produces a true mask (all ones) in
2617
- ;; a given lane if the min is a NaN. We use this to
2618
- ;; generate a mask to ensure quiet NaNs.
2619
- (is_nan_mask Xmm (x64_cmpps max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2620
- ;; Shift the NaN mask down so that it covers just the
2621
- ;; fraction below the NaN signalling bit; we'll use this
2622
- ;; to mask off non-canonical NaN payloads.
2623
- ;;
2624
- ;; All-ones for NaN, shifted down to leave 10 top bits (1
2625
- ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2626
- ;; cleared.
2627
- (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2628
- ;; Do a NAND, so that we retain every bit not set in
2629
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2630
- ;; we retain every bit) in non-NaN cases, and will have
2631
- ;; ones (so we clear those bits) in NaN-payload bits
2632
- ;; otherwise.
2633
- (final Xmm (x64_andnps nan_fraction_mask max_blended_nan_positive)))
2634
- final))
2635
-
2636
- (rule (lower (has_type $F64X2 (fmax x y)))
2637
- ;; Compute max(x, y) and max(y, x) with native
2638
- ;; instructions. These will differ in one of the edge cases
2639
- ;; above that we have to handle properly. (Conversely, if they
2640
- ;; don't differ, then the native instruction's answer is the
2641
- ;; right one per CLIF semantics.)
2642
- (let ((max1 Xmm (x64_maxpd x y))
2643
- (max2 Xmm (x64_maxpd y x))
2644
- ;; Compute the XOR of the two maxima. In the case
2645
- ;; where we don't have a +/-0 mismatch or NaNs, then
2646
- ;; `min1` and `min2` are equal and this XOR is zero.
2647
- (max_xor Xmm (x64_xorpd max1 max2))
2648
- ;; OR the XOR into one of the original maxima. If they are
2649
- ;; equal, this does nothing. If max2 was NaN, its exponent
2650
- ;; bits were all-ones, so the xor's exponent bits were the
2651
- ;; complement of max1, and the OR of max1 and max_xor has
2652
- ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2653
- ;; its exponent bits were already all-ones, so the OR will
2654
- ;; be a NaN as well.
2655
- (max_blended_nan Xmm (x64_orpd max1 max_xor))
2656
- ;; Subtract the XOR. This ensures that if we had +0 and
2657
- ;; -0, we end up with +0.
2658
- (max_blended_nan_positive Xmm (x64_subpd max_blended_nan max_xor))
2659
- ;; `cmpps` with predicate index `3` is `cmpunordps`, or
2660
- ;; "compare unordered": it produces a true mask (all ones)
2661
- ;; in a given lane if the min is a NaN. We use this to
2662
- ;; generate a mask to ensure quiet NaNs.
2663
- (is_nan_mask Xmm (x64_cmppd max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2664
- ;; Shift the NaN mask down so that it covers just the
2665
- ;; fraction below the NaN signalling bit; we'll use this
2666
- ;; to mask off non-canonical NaN payloads.
2667
- ;;
2668
- ;; All-ones for NaN, shifted down to leave 13 top bits (1
2669
- ;; sign, 11 exponent, 1 QNaN bit that must remain set)
2670
- ;; cleared.
2671
- (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2672
- ;; Do a NAND, so that we retain every bit not set in
2673
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2674
- ;; we retain every bit) in non-NaN cases, and will have
2675
- ;; ones (so we clear those bits) in NaN-payload bits
2676
- ;; otherwise.
2677
- (final Xmm (x64_andnpd nan_fraction_mask max_blended_nan_positive)))
2678
- final))
2679
-
2680
- ;; Rules for `fmin_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2681
-
2682
- (rule (lower (has_type $F32 (fmin_pseudo x y)))
2683
- (x64_minss y x))
2684
- (rule (lower (has_type $F64 (fmin_pseudo x y)))
2685
- (x64_minsd y x))
2686
- (rule (lower (has_type $F32X4 (fmin_pseudo x y)))
2687
- (x64_minps y x))
2688
- (rule (lower (has_type $F64X2 (fmin_pseudo x y)))
2689
- (x64_minpd y x))
2690
-
2691
- ;; Rules for `fmax_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2692
-
2693
- (rule (lower (has_type $F32 (fmax_pseudo x y)))
2694
- (x64_maxss y x))
2695
- (rule (lower (has_type $F64 (fmax_pseudo x y)))
2696
- (x64_maxsd y x))
2697
- (rule (lower (has_type $F32X4 (fmax_pseudo x y)))
2698
- (x64_maxps y x))
2699
- (rule (lower (has_type $F64X2 (fmax_pseudo x y)))
2700
- (x64_maxpd y x))
2701
-
2702
- ;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2703
-
2704
- ;; Base case for fma is to call out to one of two libcalls. For vectors they
2705
- ;; need to be decomposed, handle each element individually, and then recomposed.
2706
-
2707
- (rule (lower (has_type $F32 (fma x y z)))
2708
- (libcall_3 (LibCall.FmaF32) x y z))
2709
- (rule (lower (has_type $F64 (fma x y z)))
2710
- (libcall_3 (LibCall.FmaF64) x y z))
2711
-
2712
- (rule (lower (has_type $F32X4 (fma x y z)))
2713
- (let (
2714
- (x Xmm (put_in_xmm x))
2715
- (y Xmm (put_in_xmm y))
2716
- (z Xmm (put_in_xmm z))
2717
- (x0 Xmm (libcall_3 (LibCall.FmaF32) x y z))
2718
- (x1 Xmm (libcall_3 (LibCall.FmaF32)
2719
- (x64_pshufd x 1)
2720
- (x64_pshufd y 1)
2721
- (x64_pshufd z 1)))
2722
- (x2 Xmm (libcall_3 (LibCall.FmaF32)
2723
- (x64_pshufd x 2)
2724
- (x64_pshufd y 2)
2725
- (x64_pshufd z 2)))
2726
- (x3 Xmm (libcall_3 (LibCall.FmaF32)
2727
- (x64_pshufd x 3)
2728
- (x64_pshufd y 3)
2729
- (x64_pshufd z 3)))
2730
-
2731
- (tmp Xmm (vec_insert_lane $F32X4 x0 x1 1))
2732
- (tmp Xmm (vec_insert_lane $F32X4 tmp x2 2))
2733
- (tmp Xmm (vec_insert_lane $F32X4 tmp x3 3))
2734
- )
2735
- tmp))
2736
- (rule (lower (has_type $F64X2 (fma x y z)))
2737
- (let (
2738
- (x Xmm (put_in_xmm x))
2739
- (y Xmm (put_in_xmm y))
2740
- (z Xmm (put_in_xmm z))
2741
- (x0 Xmm (libcall_3 (LibCall.FmaF64) x y z))
2742
- (x1 Xmm (libcall_3 (LibCall.FmaF64)
2743
- (x64_pshufd x 0xee)
2744
- (x64_pshufd y 0xee)
2745
- (x64_pshufd z 0xee)))
2746
- )
2747
- (vec_insert_lane $F64X2 x0 x1 1)))
2748
-
2749
-
2750
- ;; Special case for when the `fma` feature is active and a native instruction
2751
- ;; can be used.
2752
- (rule 1 (lower (has_type ty (fma x y z)))
2753
- (if-let $true (use_fma))
2754
- (fmadd ty x y z))
2755
-
2756
- (decl fmadd (Type Value Value Value) Xmm)
2757
- (decl fnmadd (Type Value Value Value) Xmm)
2758
-
2759
- ;; Base case. Note that this will automatically sink a load with `z`, the value
2760
- ;; to add.
2761
- (rule (fmadd ty x y z) (x64_vfmadd213 ty x y z))
2762
-
2763
- ;; Allow sinking loads with one of the two values being multiplied in addition
2764
- ;; to the value being added. Note that both x and y can be sunk here due to
2765
- ;; multiplication being commutative.
2766
- (rule 1 (fmadd ty (sinkable_load x) y z) (x64_vfmadd132 ty y z x))
2767
- (rule 2 (fmadd ty x (sinkable_load y) z) (x64_vfmadd132 ty x z y))
2768
-
2769
- ;; If one of the values being multiplied is negated then use a `vfnmadd*`
2770
- ;; instruction instead
2771
- (rule 3 (fmadd ty (fneg x) y z) (fnmadd ty x y z))
2772
- (rule 4 (fmadd ty x (fneg y) z) (fnmadd ty x y z))
2773
-
2774
- (rule (fnmadd ty x y z) (x64_vfnmadd213 ty x y z))
2775
- (rule 1 (fnmadd ty (sinkable_load x) y z) (x64_vfnmadd132 ty y z x))
2776
- (rule 2 (fnmadd ty x (sinkable_load y) z) (x64_vfnmadd132 ty x z y))
2777
-
2778
- ;; Like `fmadd` if one argument is negated switch which one is being codegen'd
2779
- (rule 3 (fnmadd ty (fneg x) y z) (fmadd ty x y z))
2780
- (rule 4 (fnmadd ty x (fneg y) z) (fmadd ty x y z))
2781
-
2782
- ;; Rules for `load*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2783
-
2784
- ;; In order to load a value from memory to a GPR register, we may need to extend
2785
- ;; the loaded value from 8-, 16-, or 32-bits to this backend's expected GPR
2786
- ;; width: 64 bits. Note that `ext_mode` will load 1-bit types (booleans) as
2787
- ;; 8-bit loads.
2788
- ;;
2789
- ;; By default, we zero-extend all sub-64-bit loads to a GPR.
2790
- (rule -4 (lower (has_type (and (fits_in_32 ty) (is_gpr_type _)) (load flags address offset)))
2791
- (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address offset)))
2792
- ;; But if we know that both the `from` and `to` are 64 bits, we simply load with
2793
- ;; no extension.
2794
- (rule -1 (lower (has_type (ty_int_ref_64 ty) (load flags address offset)))
2795
- (x64_mov (to_amode flags address offset)))
2796
- ;; Also, certain scalar loads have a specific `from` width and extension kind
2797
- ;; (signed -> `sx`, zeroed -> `zx`). We overwrite the high bits of the 64-bit
2798
- ;; GPR even if the `to` type is smaller (e.g., 16-bits).
2799
- (rule (lower (has_type (is_gpr_type ty) (uload8 flags address offset)))
2800
- (x64_movzx (ExtMode.BQ) (to_amode flags address offset)))
2801
- (rule (lower (has_type (is_gpr_type ty) (sload8 flags address offset)))
2802
- (x64_movsx (ExtMode.BQ) (to_amode flags address offset)))
2803
- (rule (lower (has_type (is_gpr_type ty) (uload16 flags address offset)))
2804
- (x64_movzx (ExtMode.WQ) (to_amode flags address offset)))
2805
- (rule (lower (has_type (is_gpr_type ty) (sload16 flags address offset)))
2806
- (x64_movsx (ExtMode.WQ) (to_amode flags address offset)))
2807
- (rule (lower (has_type (is_gpr_type ty) (uload32 flags address offset)))
2808
- (x64_movzx (ExtMode.LQ) (to_amode flags address offset)))
2809
- (rule (lower (has_type (is_gpr_type ty) (sload32 flags address offset)))
2810
- (x64_movsx (ExtMode.LQ) (to_amode flags address offset)))
2811
-
2812
- ;; To load to XMM registers, we use the x64-specific instructions for each type.
2813
- ;; For `$F32` and `$F64` this is important--we only want to load 32 or 64 bits.
2814
- ;; But for the 128-bit types, this is not strictly necessary for performance but
2815
- ;; might help with clarity during disassembly.
2816
- (rule (lower (has_type $F32 (load flags address offset)))
2817
- (x64_movss_load (to_amode flags address offset)))
2818
- (rule (lower (has_type $F64 (load flags address offset)))
2819
- (x64_movsd_load (to_amode flags address offset)))
2820
- (rule (lower (has_type $F32X4 (load flags address offset)))
2821
- (x64_movups_load (to_amode flags address offset)))
2822
- (rule (lower (has_type $F64X2 (load flags address offset)))
2823
- (x64_movupd_load (to_amode flags address offset)))
2824
- (rule -2 (lower (has_type (ty_vec128 ty) (load flags address offset)))
2825
- (x64_movdqu_load (to_amode flags address offset)))
2826
-
2827
- ;; We can load an I128 by doing two 64-bit loads.
2828
- (rule -3 (lower (has_type $I128
2829
- (load flags address offset)))
2830
- (let ((addr_lo Amode (to_amode flags address offset))
2831
- (addr_hi Amode (amode_offset addr_lo 8))
2832
- (value_lo Reg (x64_mov addr_lo))
2833
- (value_hi Reg (x64_mov addr_hi)))
2834
- (value_regs value_lo value_hi)))
2835
-
2836
- ;; We also include widening vector loads; these sign- or zero-extend each lane
2837
- ;; to the next wider width (e.g., 16x4 -> 32x4).
2838
- (rule 1 (lower (has_type $I16X8 (sload8x8 flags address offset)))
2839
- (if-let $true (use_sse41))
2840
- (x64_pmovsxbw (to_amode flags address offset)))
2841
- (rule 1 (lower (has_type $I16X8 (uload8x8 flags address offset)))
2842
- (if-let $true (use_sse41))
2843
- (x64_pmovzxbw (to_amode flags address offset)))
2844
- (rule 1 (lower (has_type $I32X4 (sload16x4 flags address offset)))
2845
- (if-let $true (use_sse41))
2846
- (x64_pmovsxwd (to_amode flags address offset)))
2847
- (rule 1 (lower (has_type $I32X4 (uload16x4 flags address offset)))
2848
- (if-let $true (use_sse41))
2849
- (x64_pmovzxwd (to_amode flags address offset)))
2850
- (rule 1 (lower (has_type $I64X2 (sload32x2 flags address offset)))
2851
- (if-let $true (use_sse41))
2852
- (x64_pmovsxdq (to_amode flags address offset)))
2853
- (rule 1 (lower (has_type $I64X2 (uload32x2 flags address offset)))
2854
- (if-let $true (use_sse41))
2855
- (x64_pmovzxdq (to_amode flags address offset)))
2856
-
2857
- (rule (lower (has_type $I16X8 (sload8x8 flags address offset)))
2858
- (lower_swiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
2859
- (rule (lower (has_type $I16X8 (uload8x8 flags address offset)))
2860
- (lower_uwiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
2861
- (rule (lower (has_type $I32X4 (sload16x4 flags address offset)))
2862
- (lower_swiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
2863
- (rule (lower (has_type $I32X4 (uload16x4 flags address offset)))
2864
- (lower_uwiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
2865
- (rule (lower (has_type $I64X2 (sload32x2 flags address offset)))
2866
- (lower_swiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
2867
- (rule (lower (has_type $I64X2 (uload32x2 flags address offset)))
2868
- (lower_uwiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
2869
-
2870
- ;; Rules for `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2871
-
2872
- ;; 8-, 16-, 32- and 64-bit GPR stores.
2873
- (rule -2 (lower (store flags
2874
- value @ (value_type (is_gpr_type ty))
2875
- address
2876
- offset))
2877
- (side_effect
2878
- (x64_movrm ty (to_amode flags address offset) value)))
2879
-
2880
- ;; Explicit 8/16/32-bit opcodes.
2881
- (rule (lower (istore8 flags value address offset))
2882
- (side_effect
2883
- (x64_movrm $I8 (to_amode flags address offset) value)))
2884
- (rule (lower (istore16 flags value address offset))
2885
- (side_effect
2886
- (x64_movrm $I16 (to_amode flags address offset) value)))
2887
- (rule (lower (istore32 flags value address offset))
2888
- (side_effect
2889
- (x64_movrm $I32 (to_amode flags address offset) value)))
2890
-
2891
- ;; F32 stores of values in XMM registers.
2892
- (rule 1 (lower (store flags
2893
- value @ (value_type $F32)
2894
- address
2895
- offset))
2896
- (side_effect
2897
- (x64_movss_store (to_amode flags address offset) value)))
2898
-
2899
- ;; F64 stores of values in XMM registers.
2900
- (rule 1 (lower (store flags
2901
- value @ (value_type $F64)
2902
- address
2903
- offset))
2904
- (side_effect
2905
- (x64_movsd_store (to_amode flags address offset) value)))
2906
-
2907
- ;; Stores of F32X4 vectors.
2908
- (rule 1 (lower (store flags
2909
- value @ (value_type $F32X4)
2910
- address
2911
- offset))
2912
- (side_effect
2913
- (x64_movups_store (to_amode flags address offset) value)))
2914
-
2915
- ;; Stores of F64X2 vectors.
2916
- (rule 1 (lower (store flags
2917
- value @ (value_type $F64X2)
2918
- address
2919
- offset))
2920
- (side_effect
2921
- (x64_movupd_store (to_amode flags address offset) value)))
2922
-
2923
- ;; Stores of all other 128-bit vector types with integer lanes.
2924
- (rule -1 (lower (store flags
2925
- value @ (value_type (ty_vec128_int _))
2926
- address
2927
- offset))
2928
- (side_effect
2929
- (x64_movdqu_store (to_amode flags address offset) value)))
2930
-
2931
- ;; Stores of I128 values: store the two 64-bit halves separately.
2932
- (rule 0 (lower (store flags
2933
- value @ (value_type $I128)
2934
- address
2935
- offset))
2936
- (let ((value_reg ValueRegs value)
2937
- (value_lo Gpr (value_regs_get_gpr value_reg 0))
2938
- (value_hi Gpr (value_regs_get_gpr value_reg 1))
2939
- (addr_lo Amode (to_amode flags address offset))
2940
- (addr_hi Amode (amode_offset addr_lo 8)))
2941
- (side_effect
2942
- (side_effect_concat
2943
- (x64_movrm $I64 addr_lo value_lo)
2944
- (x64_movrm $I64 addr_hi value_hi)))))
2945
-
2946
- ;; Slightly optimize the extraction of the first lane from a vector which is
2947
- ;; stored in memory. In the case the first lane specifically is selected the
2948
- ;; standard `movss` and `movsd` instructions can be used as-if we're storing a
2949
- ;; f32 or f64 despite the source perhaps being an integer vector since the
2950
- ;; result of the instruction is the same.
2951
- (rule 2 (lower (store flags
2952
- (has_type $F32 (extractlane value (u8_from_uimm8 0)))
2953
- address
2954
- offset))
2955
- (side_effect
2956
- (x64_movss_store (to_amode flags address offset) value)))
2957
- (rule 2 (lower (store flags
2958
- (has_type $F64 (extractlane value (u8_from_uimm8 0)))
2959
- address
2960
- offset))
2961
- (side_effect
2962
- (x64_movsd_store (to_amode flags address offset) value)))
2963
- (rule 2 (lower (store flags
2964
- (has_type $I8 (extractlane value (u8_from_uimm8 n)))
2965
- address
2966
- offset))
2967
- (if-let $true (use_sse41))
2968
- (side_effect
2969
- (x64_pextrb_store (to_amode flags address offset) value n)))
2970
- (rule 2 (lower (store flags
2971
- (has_type $I16 (extractlane value (u8_from_uimm8 n)))
2972
- address
2973
- offset))
2974
- (if-let $true (use_sse41))
2975
- (side_effect
2976
- (x64_pextrw_store (to_amode flags address offset) value n)))
2977
- (rule 2 (lower (store flags
2978
- (has_type $I32 (extractlane value (u8_from_uimm8 n)))
2979
- address
2980
- offset))
2981
- (if-let $true (use_sse41))
2982
- (side_effect
2983
- (x64_pextrd_store (to_amode flags address offset) value n)))
2984
- (rule 2 (lower (store flags
2985
- (has_type $I64 (extractlane value (u8_from_uimm8 n)))
2986
- address
2987
- offset))
2988
- (if-let $true (use_sse41))
2989
- (side_effect
2990
- (x64_pextrq_store (to_amode flags address offset) value n)))
2991
-
2992
- ;; Rules for `load*` + ALU op + `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2993
-
2994
- ;; Add mem, reg
2995
- (rule 3 (lower
2996
- (store flags
2997
- (has_type (ty_32_or_64 ty)
2998
- (iadd (and
2999
- (sinkable_load sink)
3000
- (load flags addr offset))
3001
- src2))
3002
- addr
3003
- offset))
3004
- (let ((_ RegMemImm sink))
3005
- (side_effect
3006
- (x64_add_mem ty (to_amode flags addr offset) src2))))
3007
-
3008
- ;; Add mem, reg with args swapped
3009
- (rule 2 (lower
3010
- (store flags
3011
- (has_type (ty_32_or_64 ty)
3012
- (iadd src2
3013
- (and
3014
- (sinkable_load sink)
3015
- (load flags addr offset))))
3016
- addr
3017
- offset))
3018
- (let ((_ RegMemImm sink))
3019
- (side_effect
3020
- (x64_add_mem ty (to_amode flags addr offset) src2))))
3021
-
3022
- ;; Sub mem, reg
3023
- (rule 2 (lower
3024
- (store flags
3025
- (has_type (ty_32_or_64 ty)
3026
- (isub (and
3027
- (sinkable_load sink)
3028
- (load flags addr offset))
3029
- src2))
3030
- addr
3031
- offset))
3032
- (let ((_ RegMemImm sink))
3033
- (side_effect
3034
- (x64_sub_mem ty (to_amode flags addr offset) src2))))
3035
-
3036
- ;; And mem, reg
3037
- (rule 3 (lower
3038
- (store flags
3039
- (has_type (ty_32_or_64 ty)
3040
- (band (and
3041
- (sinkable_load sink)
3042
- (load flags addr offset))
3043
- src2))
3044
- addr
3045
- offset))
3046
- (let ((_ RegMemImm sink))
3047
- (side_effect
3048
- (x64_and_mem ty (to_amode flags addr offset) src2))))
3049
-
3050
- ;; And mem, reg with args swapped
3051
- (rule 2 (lower
3052
- (store flags
3053
- (has_type (ty_32_or_64 ty)
3054
- (band src2
3055
- (and
3056
- (sinkable_load sink)
3057
- (load flags addr offset))))
3058
- addr
3059
- offset))
3060
- (let ((_ RegMemImm sink))
3061
- (side_effect
3062
- (x64_and_mem ty (to_amode flags addr offset) src2))))
3063
-
3064
- ;; Or mem, reg
3065
- (rule 3 (lower
3066
- (store flags
3067
- (has_type (ty_32_or_64 ty)
3068
- (bor (and
3069
- (sinkable_load sink)
3070
- (load flags addr offset))
3071
- src2))
3072
- addr
3073
- offset))
3074
- (let ((_ RegMemImm sink))
3075
- (side_effect
3076
- (x64_or_mem ty (to_amode flags addr offset) src2))))
3077
-
3078
- ;; Or mem, reg with args swapped
3079
- (rule 2 (lower
3080
- (store flags
3081
- (has_type (ty_32_or_64 ty)
3082
- (bor src2
3083
- (and
3084
- (sinkable_load sink)
3085
- (load flags addr offset))))
3086
- addr
3087
- offset))
3088
- (let ((_ RegMemImm sink))
3089
- (side_effect
3090
- (x64_or_mem ty (to_amode flags addr offset) src2))))
3091
-
3092
- ;; Xor mem, reg
3093
- (rule 3 (lower
3094
- (store flags
3095
- (has_type (ty_32_or_64 ty)
3096
- (bxor (and
3097
- (sinkable_load sink)
3098
- (load flags addr offset))
3099
- src2))
3100
- addr
3101
- offset))
3102
- (let ((_ RegMemImm sink))
3103
- (side_effect
3104
- (x64_xor_mem ty (to_amode flags addr offset) src2))))
3105
-
3106
- ;; Xor mem, reg with args swapped
3107
- (rule 2 (lower
3108
- (store flags
3109
- (has_type (ty_32_or_64 ty)
3110
- (bxor src2
3111
- (and
3112
- (sinkable_load sink)
3113
- (load flags addr offset))))
3114
- addr
3115
- offset))
3116
- (let ((_ RegMemImm sink))
3117
- (side_effect
3118
- (x64_xor_mem ty (to_amode flags addr offset) src2))))
3119
-
3120
- ;; Rules for `fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3121
-
3122
- (rule (lower (fence))
3123
- (side_effect (x64_mfence)))
3124
-
3125
- ;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3126
-
3127
- (rule (lower (func_addr (func_ref_data _ extname dist)))
3128
- (load_ext_name extname 0 dist))
3129
-
3130
- ;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3131
-
3132
- (rule (lower (symbol_value (symbol_value_data extname dist offset)))
3133
- (load_ext_name extname offset dist))
3134
-
3135
- ;; Rules for `atomic_load` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3136
-
3137
- ;; This is a normal load. The x86-TSO memory model provides sufficient
3138
- ;; sequencing to satisfy the CLIF synchronisation requirements for `AtomicLoad`
3139
- ;; without the need for any fence instructions.
3140
- ;;
3141
- ;; As described in the `atomic_load` documentation, this lowering is only valid
3142
- ;; for I8, I16, I32, and I64. The sub-64-bit types are zero extended, as with a
3143
- ;; normal load.
3144
- (rule 1 (lower (has_type $I64 (atomic_load flags address)))
3145
- (x64_mov (to_amode flags address (zero_offset))))
3146
- (rule (lower (has_type (and (fits_in_32 ty) (ty_int _)) (atomic_load flags address)))
3147
- (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address (zero_offset))))
3148
-
3149
- ;; Rules for `atomic_store` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3150
-
3151
- ;; This is a normal store followed by an `mfence` instruction. As described in
3152
- ;; the `atomic_load` documentation, this lowering is only valid for I8, I16,
3153
- ;; I32, and I64.
3154
- (rule (lower (atomic_store flags
3155
- value @ (value_type (and (fits_in_64 ty) (ty_int _)))
3156
- address))
3157
- (side_effect (side_effect_concat
3158
- (x64_movrm ty (to_amode flags address (zero_offset)) value)
3159
- (x64_mfence))))
3160
-
3161
- ;; Rules for `atomic_cas` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3162
-
3163
- (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3164
- (atomic_cas flags address expected replacement)))
3165
- (x64_cmpxchg ty expected replacement (to_amode flags address (zero_offset))))
3166
-
3167
- ;; Rules for `atomic_rmw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3168
-
3169
- ;; This is a simple, general-case atomic update, based on a loop involving
3170
- ;; `cmpxchg`. Note that we could do much better than this in the case where the
3171
- ;; old value at the location (that is to say, the SSA `Value` computed by this
3172
- ;; CLIF instruction) is not required. In that case, we could instead implement
3173
- ;; this using a single `lock`-prefixed x64 read-modify-write instruction. Also,
3174
- ;; even in the case where the old value is required, for the `add` and `sub`
3175
- ;; cases, we can use the single instruction `lock xadd`. However, those
3176
- ;; improvements have been left for another day. TODO: filed as
3177
- ;; https://github.com/bytecodealliance/wasmtime/issues/2153.
3178
-
3179
- (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3180
- (atomic_rmw flags op address input)))
3181
- (x64_atomic_rmw_seq ty op (to_amode flags address (zero_offset)) input))
3182
-
3183
- ;; Rules for `call` and `call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3184
-
3185
- (rule (lower (call (func_ref_data sig_ref extname dist) inputs))
3186
- (gen_call sig_ref extname dist inputs))
3187
-
3188
- (rule (lower (call_indirect sig_ref val inputs))
3189
- (gen_call_indirect sig_ref val inputs))
3190
-
3191
- ;;;; Rules for `return_call` and `return_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;
3192
-
3193
- (rule (lower (return_call (func_ref_data sig_ref extname dist) args))
3194
- (gen_return_call sig_ref extname dist args))
3195
-
3196
- (rule (lower (return_call_indirect sig_ref callee args))
3197
- (gen_return_call_indirect sig_ref callee args))
3198
-
3199
- ;;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;
3200
-
3201
- (rule (lower (get_frame_pointer))
3202
- (x64_rbp))
3203
-
3204
- (rule (lower (get_stack_pointer))
3205
- (x64_rsp))
3206
-
3207
- (rule (lower (get_return_address))
3208
- (x64_load $I64
3209
- (Amode.ImmReg 8 (x64_rbp) (mem_flags_trusted))
3210
- (ExtKind.None)))
3211
-
3212
- ;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3213
-
3214
- (rule (lower_branch (jump _) (single_target target))
3215
- (emit_side_effect (jmp_known target)))
3216
-
3217
- ;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3218
-
3219
- (rule 2 (lower_branch (brif (maybe_uextend (icmp cc a b)) _ _) (two_targets then else))
3220
- (emit_side_effect (jmp_cond_icmp (emit_cmp cc a b) then else)))
3221
-
3222
- (rule 2 (lower_branch (brif (maybe_uextend (fcmp cc a b)) _ _) (two_targets then else))
3223
- (emit_side_effect (jmp_cond_fcmp (emit_fcmp cc a b) then else)))
3224
-
3225
- (rule 1 (lower_branch (brif val @ (value_type $I128) _ _)
3226
- (two_targets then else))
3227
- (emit_side_effect (jmp_cond_icmp (cmp_zero_i128 (CC.Z) val) then else)))
3228
-
3229
- (rule (lower_branch (brif val @ (value_type (ty_int_bool_or_ref)) _ _)
3230
- (two_targets then else))
3231
- (emit_side_effect (with_flags_side_effect
3232
- (cmp_zero_int_bool_ref val)
3233
- (jmp_cond (CC.NZ) then else))))
3234
-
3235
-
3236
- ;; Compare an I128 value to zero, returning a flags result suitable for making a
3237
- ;; jump decision. The comparison is implemented as `(hi == 0) && (low == 0)`,
3238
- ;; and the result can be interpreted as follows
3239
- ;; * CC.Z indicates that the value was non-zero, as one or both of the halves of
3240
- ;; the value were non-zero
3241
- ;; * CC.NZ indicates that both halves of the value were 0
3242
- (decl cmp_zero_i128 (CC ValueRegs) IcmpCondResult)
3243
- (rule (cmp_zero_i128 (cc_nz_or_z cc) val)
3244
- (let ((lo Gpr (value_regs_get_gpr val 0))
3245
- (hi Gpr (value_regs_get_gpr val 1))
3246
- (lo_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) lo)
3247
- (x64_setcc (CC.Z))))
3248
- (hi_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) hi)
3249
- (x64_setcc (CC.Z)))))
3250
- (icmp_cond_result (x64_test (OperandSize.Size8) lo_z hi_z) cc)))
3251
-
3252
-
3253
- (decl cmp_zero_int_bool_ref (Value) ProducesFlags)
3254
- (rule (cmp_zero_int_bool_ref val @ (value_type ty))
3255
- (let ((size OperandSize (raw_operand_size_of_type ty))
3256
- (src Gpr val))
3257
- (x64_test size src src)))
3258
-
3259
- ;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3260
-
3261
- (rule (lower_branch (br_table idx @ (value_type ty) _) (jump_table_targets default_target jt_targets))
3262
- (let ((size OperandSize (raw_operand_size_of_type ty))
3263
- (jt_size u32 (jump_table_size jt_targets))
3264
- (size_reg Reg (imm ty (u32_as_u64 jt_size)))
3265
- (idx_reg Gpr (extend_to_gpr idx $I64 (ExtendKind.Zero)))
3266
- (clamped_idx Reg (with_flags_reg
3267
- (x64_cmp size size_reg idx_reg)
3268
- (cmove ty (CC.B) idx_reg size_reg))))
3269
- (emit_side_effect (jmp_table_seq ty clamped_idx default_target jt_targets))))
3270
-
3271
- ;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3272
-
3273
- (rule (lower (select_spectre_guard (icmp cc a b) x y))
3274
- (select_icmp (emit_cmp cc a b) x y))
3275
-
3276
- (rule -1 (lower (has_type ty (select_spectre_guard c @ (value_type (fits_in_64 a_ty)) x y)))
3277
- (let ((size OperandSize (raw_operand_size_of_type a_ty))
3278
- (gpr_c Gpr (put_in_gpr c)))
3279
- (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
3280
-
3281
- (rule -2 (lower (has_type ty (select_spectre_guard c @ (value_type $I128) x y)))
3282
- (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
3283
- (select_icmp cond_result x y)))
3284
-
3285
- ;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3286
-
3287
- (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I8))))
3288
- (x64_cvtsi2ss $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3289
-
3290
- (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I16))))
3291
- (x64_cvtsi2ss $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3292
-
3293
- (rule 1 (lower (has_type $F32 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3294
- (x64_cvtsi2ss ty a))
3295
-
3296
- (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I8))))
3297
- (x64_cvtsi2sd $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3298
-
3299
- (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I16))))
3300
- (x64_cvtsi2sd $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3301
-
3302
- (rule 1 (lower (has_type $F64 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3303
- (x64_cvtsi2sd ty a))
3304
-
3305
- (rule 0 (lower (fcvt_from_sint a @ (value_type $I32X4)))
3306
- (x64_cvtdq2ps a))
3307
-
3308
- (rule 1 (lower (has_type $F64X2 (fcvt_from_sint (swiden_low a @ (value_type $I32X4)))))
3309
- (x64_cvtdq2pd a))
3310
-
3311
- ;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3312
-
3313
- (rule 1 (lower (has_type $F32 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3314
- (x64_cvtsi2ss $I64 (extend_to_gpr val $I64 (ExtendKind.Zero))))
3315
-
3316
- (rule 1 (lower (has_type $F64 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3317
- (x64_cvtsi2sd $I64 (extend_to_gpr val $I64 (ExtendKind.Zero))))
3318
-
3319
- (rule (lower (has_type ty (fcvt_from_uint val @ (value_type $I64))))
3320
- (cvt_u64_to_float_seq ty val))
3321
-
3322
- ;; Algorithm uses unpcklps to help create a float that is equivalent
3323
- ;; 0x1.0p52 + double(src). 0x1.0p52 is unique because at this exponent
3324
- ;; every value of the mantissa represents a corresponding uint32 number.
3325
- ;; When we subtract 0x1.0p52 we are left with double(src).
3326
- (rule 1 (lower (has_type $F64X2 (fcvt_from_uint (uwiden_low val @ (value_type $I32X4)))))
3327
- (let ((uint_mask XmmMem (emit_u128_le_const 0x43300000_43300000))
3328
- (res Xmm (x64_unpcklps val uint_mask))
3329
- (uint_mask_high XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000)))
3330
- (x64_subpd res uint_mask_high)))
3331
-
3332
- ;; When AVX512VL and AVX512F are available,
3333
- ;; `fcvt_from_uint` can be lowered to a single instruction.
3334
- (rule 2 (lower (has_type $F32X4 (fcvt_from_uint src)))
3335
- (if-let $true (use_avx512vl))
3336
- (if-let $true (use_avx512f))
3337
- (x64_vcvtudq2ps src))
3338
-
3339
- ;; Converting packed unsigned integers to packed floats
3340
- ;; requires a few steps. There is no single instruction
3341
- ;; lowering for converting unsigned floats but there is for
3342
- ;; converting packed signed integers to float (cvtdq2ps). In
3343
- ;; the steps below we isolate the upper half (16 bits) and
3344
- ;; lower half (16 bits) of each lane and then we convert
3345
- ;; each half separately using cvtdq2ps meant for signed
3346
- ;; integers. In order for this to work for the upper half
3347
- ;; bits we must shift right by 1 (divide by 2) these bits in
3348
- ;; order to ensure the most significant bit is 0 not signed,
3349
- ;; and then after the conversion we double the value.
3350
- ;; Finally we add the converted values where addition will
3351
- ;; correctly round.
3352
- ;;
3353
- ;; Sequence:
3354
- ;; -> A = 0xffffffff
3355
- ;; -> Ah = 0xffff0000
3356
- ;; -> Al = 0x0000ffff
3357
- ;; -> Convert(Al) // Convert int to float
3358
- ;; -> Ah = Ah >> 1 // Shift right 1 to assure Ah conversion isn't treated as signed
3359
- ;; -> Convert(Ah) // Convert .. with no loss of significant digits from previous shift
3360
- ;; -> Ah = Ah + Ah // Double Ah to account for shift right before the conversion.
3361
- ;; -> dst = Ah + Al // Add the two floats together
3362
- (rule 1 (lower (has_type $F32X4 (fcvt_from_uint val)))
3363
- (let ((a Xmm val)
3364
-
3365
- ;; get the low 16 bits
3366
- (a_lo Xmm (x64_pslld a (xmi_imm 16)))
3367
- (a_lo Xmm (x64_psrld a_lo (xmi_imm 16)))
3368
-
3369
- ;; get the high 16 bits
3370
- (a_hi Xmm (x64_psubd a a_lo))
3371
-
3372
- ;; convert the low 16 bits
3373
- (a_lo Xmm (x64_cvtdq2ps a_lo))
3374
-
3375
- ;; shift the high bits by 1, convert, and double to get the correct
3376
- ;; value
3377
- (a_hi Xmm (x64_psrld a_hi (xmi_imm 1)))
3378
- (a_hi Xmm (x64_cvtdq2ps a_hi))
3379
- (a_hi Xmm (x64_addps a_hi a_hi)))
3380
-
3381
- ;; add together the two converted values
3382
- (x64_addps a_hi a_lo)))
3383
-
3384
- ;; Rules for `fcvt_to_uint` and `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3385
-
3386
- (rule (lower (has_type out_ty (fcvt_to_uint val @ (value_type (ty_scalar_float _)))))
3387
- (cvt_float_to_uint_seq out_ty val $false))
3388
-
3389
- (rule (lower (has_type out_ty (fcvt_to_uint_sat val @ (value_type (ty_scalar_float _)))))
3390
- (cvt_float_to_uint_seq out_ty val $true))
3391
-
3392
- (rule (lower (has_type out_ty (fcvt_to_sint val @ (value_type (ty_scalar_float _)))))
3393
- (cvt_float_to_sint_seq out_ty val $false))
3394
-
3395
- (rule (lower (has_type out_ty (fcvt_to_sint_sat val @ (value_type (ty_scalar_float _)))))
3396
- (cvt_float_to_sint_seq out_ty val $true))
3397
-
3398
- ;; The x64 backend currently only supports these two type combinations.
3399
- (rule 1 (lower (has_type $I32X4 (fcvt_to_sint_sat val @ (value_type $F32X4))))
3400
- (let ((src Xmm val)
3401
-
3402
- ;; Sets tmp to zero if float is NaN
3403
- (tmp Xmm (x64_cmpps src src (FcmpImm.Equal)))
3404
- (dst Xmm (x64_andps src tmp))
3405
-
3406
- ;; Sets top bit of tmp if float is positive
3407
- ;; Setting up to set top bit on negative float values
3408
- (tmp Xmm (x64_pxor tmp dst))
3409
-
3410
- ;; Convert the packed float to packed doubleword.
3411
- (dst Xmm (x64_cvttps2dq dst))
3412
-
3413
- ;; Set top bit only if < 0
3414
- (tmp Xmm (x64_pand dst tmp))
3415
- (tmp Xmm (x64_psrad tmp (xmi_imm 31))))
3416
-
3417
- ;; On overflow 0x80000000 is returned to a lane.
3418
- ;; Below sets positive overflow lanes to 0x7FFFFFFF
3419
- ;; Keeps negative overflow lanes as is.
3420
- (x64_pxor tmp dst)))
3421
-
3422
- ;; The algorithm for converting floats to unsigned ints is a little tricky. The
3423
- ;; complication arises because we are converting from a signed 64-bit int with a positive
3424
- ;; integer range from 1..INT_MAX (0x1..0x7FFFFFFF) to an unsigned integer with an extended
3425
- ;; range from (INT_MAX+1)..UINT_MAX. It's this range from (INT_MAX+1)..UINT_MAX
3426
- ;; (0x80000000..0xFFFFFFFF) that needs to be accounted for as a special case since our
3427
- ;; conversion instruction (cvttps2dq) only converts as high as INT_MAX (0x7FFFFFFF), but
3428
- ;; which conveniently setting underflows and overflows (smaller than MIN_INT or larger than
3429
- ;; MAX_INT) to be INT_MAX+1 (0x80000000). Nothing that the range (INT_MAX+1)..UINT_MAX includes
3430
- ;; precisely INT_MAX values we can correctly account for and convert every value in this range
3431
- ;; if we simply subtract INT_MAX+1 before doing the cvttps2dq conversion. After the subtraction
3432
- ;; every value originally (INT_MAX+1)..UINT_MAX is now the range (0..INT_MAX).
3433
- ;; After the conversion we add INT_MAX+1 back to this converted value, noting again that
3434
- ;; values we are trying to account for were already set to INT_MAX+1 during the original conversion.
3435
- ;; We simply have to create a mask and make sure we are adding together only the lanes that need
3436
- ;; to be accounted for. Digesting it all the steps then are:
3437
- ;;
3438
- ;; Step 1 - Account for NaN and negative floats by setting these src values to zero.
3439
- ;; Step 2 - Make a copy (tmp1) of the src value since we need to convert twice for
3440
- ;; reasons described above.
3441
- ;; Step 3 - Convert the original src values. This will convert properly all floats up to INT_MAX
3442
- ;; Step 4 - Subtract INT_MAX from the copy set (tmp1). Note, all zero and negative values are those
3443
- ;; values that were originally in the range (0..INT_MAX). This will come in handy during
3444
- ;; step 7 when we zero negative lanes.
3445
- ;; Step 5 - Create a bit mask for tmp1 that will correspond to all lanes originally less than
3446
- ;; UINT_MAX that are now less than INT_MAX thanks to the subtraction.
3447
- ;; Step 6 - Convert the second set of values (tmp1)
3448
- ;; Step 7 - Prep the converted second set by zeroing out negative lanes (these have already been
3449
- ;; converted correctly with the first set) and by setting overflow lanes to 0x7FFFFFFF
3450
- ;; as this will allow us to properly saturate overflow lanes when adding to 0x80000000
3451
- ;; Step 8 - Add the orginal converted src and the converted tmp1 where float values originally less
3452
- ;; than and equal to INT_MAX will be unchanged, float values originally between INT_MAX+1 and
3453
- ;; UINT_MAX will add together (INT_MAX) + (SRC - INT_MAX), and float values originally
3454
- ;; greater than UINT_MAX will be saturated to UINT_MAX (0xFFFFFFFF) after adding (0x8000000 + 0x7FFFFFFF).
3455
- ;;
3456
- ;;
3457
- ;; The table below illustrates the result after each step where it matters for the converted set.
3458
- ;; Note the original value range (original src set) is the final dst in Step 8:
3459
- ;;
3460
- ;; Original src set:
3461
- ;; | Original Value Range | Step 1 | Step 3 | Step 8 |
3462
- ;; | -FLT_MIN..FLT_MAX | 0.0..FLT_MAX | 0..INT_MAX(w/overflow) | 0..UINT_MAX(w/saturation) |
3463
- ;;
3464
- ;; Copied src set (tmp1):
3465
- ;; | Step 2 | Step 4 |
3466
- ;; | 0.0..FLT_MAX | (0.0-(INT_MAX+1))..(FLT_MAX-(INT_MAX+1)) |
3467
- ;;
3468
- ;; | Step 6 | Step 7 |
3469
- ;; | (0-(INT_MAX+1))..(UINT_MAX-(INT_MAX+1))(w/overflow) | ((INT_MAX+1)-(INT_MAX+1))..(INT_MAX+1) |
3470
- (rule 1 (lower (has_type $I32X4 (fcvt_to_uint_sat val @ (value_type $F32X4))))
3471
- (let ((src Xmm val)
3472
-
3473
- ;; Converting to unsigned int so if float src is negative or NaN
3474
- ;; will first set to zero.
3475
- (tmp2 Xmm (xmm_zero $F32X4))
3476
- (dst Xmm (x64_maxps src tmp2))
3477
-
3478
- ;; Set tmp2 to INT_MAX+1. It is important to note here that after it looks
3479
- ;; like we are only converting INT_MAX (0x7FFFFFFF) but in fact because
3480
- ;; single precision IEEE-754 floats can only accurately represent contingous
3481
- ;; integers up to 2^23 and outside of this range it rounds to the closest
3482
- ;; integer that it can represent. In the case of INT_MAX, this value gets
3483
- ;; represented as 0x4f000000 which is the integer value (INT_MAX+1).
3484
- (tmp2 Xmm (x64_pcmpeqd tmp2 tmp2))
3485
- (tmp2 Xmm (x64_psrld tmp2 (xmi_imm 1)))
3486
- (tmp2 Xmm (x64_cvtdq2ps tmp2))
3487
-
3488
- ;; Make a copy of these lanes and then do the first conversion.
3489
- ;; Overflow lanes greater than the maximum allowed signed value will
3490
- ;; set to 0x80000000. Negative and NaN lanes will be 0x0
3491
- (tmp1 Xmm dst)
3492
- (dst Xmm (x64_cvttps2dq dst))
3493
-
3494
- ;; Set lanes to src - max_signed_int
3495
- (tmp1 Xmm (x64_subps tmp1 tmp2))
3496
-
3497
- ;; Create mask for all positive lanes to saturate (i.e. greater than
3498
- ;; or equal to the maxmimum allowable unsigned int).
3499
- (tmp2 Xmm (x64_cmpps tmp2 tmp1 (FcmpImm.LessThanOrEqual)))
3500
-
3501
- ;; Convert those set of lanes that have the max_signed_int factored out.
3502
- (tmp1 Xmm (x64_cvttps2dq tmp1))
3503
-
3504
- ;; Prepare converted lanes by zeroing negative lanes and prepping lanes
3505
- ;; that have positive overflow (based on the mask) by setting these lanes
3506
- ;; to 0x7FFFFFFF
3507
- (tmp1 Xmm (x64_pxor tmp1 tmp2))
3508
- (tmp2 Xmm (xmm_zero $I32X4))
3509
- (tmp1 Xmm (lower_vec_smax $I32X4 tmp1 tmp2)))
3510
-
3511
- ;; Add this second set of converted lanes to the original to properly handle
3512
- ;; values greater than max signed int.
3513
- (x64_paddd tmp1 dst)))
3514
-
3515
- ;; Rules for `x86_cvtt2dq` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3516
-
3517
- (rule (lower (has_type $I32X4 (x86_cvtt2dq val @ (value_type $F32X4))))
3518
- (x64_cvttps2dq val))
3519
-
3520
- ;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3521
-
3522
- (rule (lower (has_type $I8X16 (iadd_pairwise x y)))
3523
- (let (
3524
- ;; Shuffle all the even lanes of `x` and `y` into one register
3525
- (even_lane_mask Xmm (x64_movdqu_load (emit_u128_le_const 0x00ff_00ff_00ff_00ff_00ff_00ff_00ff_00ff)))
3526
- (x_evens Xmm (x64_pand x even_lane_mask))
3527
- (y_evens Xmm (x64_pand y even_lane_mask))
3528
- (evens Xmm (x64_packuswb x_evens y_evens))
3529
-
3530
- ;; Shuffle all the odd lanes of `x` and `y` into one register
3531
- (x_odds Xmm (x64_psrlw x (xmi_imm 8)))
3532
- (y_odds Xmm (x64_psrlw y (xmi_imm 8)))
3533
- (odds Xmm (x64_packuswb x_odds y_odds))
3534
- )
3535
- (x64_paddb evens odds)))
3536
-
3537
-
3538
- (rule 1 (lower (has_type $I16X8 (iadd_pairwise x y)))
3539
- (if-let $true (use_ssse3))
3540
- (x64_phaddw x y))
3541
-
3542
- (rule (lower (has_type $I16X8 (iadd_pairwise x y)))
3543
- (let (
3544
- (x Xmm x)
3545
- (y Xmm y)
3546
-
3547
- ;; Shuffle the even-numbered 16-bit lanes into low four lanes of each
3548
- ;; vector by shuffling 16-bit lanes then shuffling 32-bit lanes.
3549
- ;; With these in place generate a new vector from the two low 64-bits
3550
- ;; of each vector (the low four 16-bit lanes).
3551
- ;;
3552
- ;; 0xe8 == 0b11_10_10_00
3553
- (x_evens Xmm (x64_pshufd (x64_pshufhw (x64_pshuflw x 0xe8) 0xe8) 0xe8))
3554
- (y_evens Xmm (x64_pshufd (x64_pshufhw (x64_pshuflw y 0xe8) 0xe8) 0xe8))
3555
- (evens Xmm (x64_punpcklqdq x_evens y_evens))
3556
-
3557
- ;; Shuffle the odd-numbered 16-bit lanes into the low 8 lanes by
3558
- ;; performing `sshr` operation on 32-bit lanes, effectively moving the
3559
- ;; odd lanes into even lanes while leaving their sign bits in the
3560
- ;; odd lanes. The `packssdw` instruction then conveniently will
3561
- ;; put everything into one vector for us.
3562
- (x_shifted Xmm (x64_psrad x (xmi_imm 16)))
3563
- (y_shifted Xmm (x64_psrad y (xmi_imm 16)))
3564
- (odds Xmm (x64_packssdw x_shifted y_shifted))
3565
- )
3566
- (x64_paddw evens odds)))
3567
-
3568
- (rule 1 (lower (has_type $I32X4 (iadd_pairwise x y)))
3569
- (if-let $true (use_ssse3))
3570
- (x64_phaddd x y))
3571
-
3572
- (rule (lower (has_type $I32X4 (iadd_pairwise x y)))
3573
- (let (
3574
- (x Xmm x)
3575
- (y Xmm y)
3576
- ;; evens = [ x[0] x[2] y[0] y[2] ]
3577
- (evens Xmm (x64_shufps x y 0b10_00_10_00))
3578
- ;; odds = [ x[1] x[3] y[1] y[3] ]
3579
- (odds Xmm (x64_shufps x y 0b11_01_11_01))
3580
- )
3581
- (x64_paddd evens odds)))
3582
-
3583
- ;; special case for the `i16x8.extadd_pairwise_i8x16_s` wasm instruction
3584
- (rule 2 (lower
3585
- (has_type $I16X8 (iadd_pairwise
3586
- (swiden_low val @ (value_type $I8X16))
3587
- (swiden_high val))))
3588
- (if-let $true (use_ssse3))
3589
- (let ((mul_const Xmm (x64_xmm_load_const $I8X16
3590
- (emit_u128_le_const 0x01010101010101010101010101010101))))
3591
- (x64_pmaddubsw mul_const val)))
3592
-
3593
- ;; special case for the `i32x4.extadd_pairwise_i16x8_s` wasm instruction
3594
- (rule 2 (lower
3595
- (has_type $I32X4 (iadd_pairwise
3596
- (swiden_low val @ (value_type $I16X8))
3597
- (swiden_high val))))
3598
- (let ((mul_const XmmMem (emit_u128_le_const 0x0001_0001_0001_0001_0001_0001_0001_0001)))
3599
- (x64_pmaddwd val mul_const)))
3600
-
3601
- ;; special case for the `i16x8.extadd_pairwise_i8x16_u` wasm instruction
3602
- (rule 2 (lower
3603
- (has_type $I16X8 (iadd_pairwise
3604
- (uwiden_low val @ (value_type $I8X16))
3605
- (uwiden_high val))))
3606
- (if-let $true (use_ssse3))
3607
- (let ((mul_const XmmMem (emit_u128_le_const 0x01010101010101010101010101010101)))
3608
- (x64_pmaddubsw val mul_const)))
3609
-
3610
- ;; special case for the `i32x4.extadd_pairwise_i16x8_u` wasm instruction
3611
- (rule 2 (lower
3612
- (has_type $I32X4 (iadd_pairwise
3613
- (uwiden_low val @ (value_type $I16X8))
3614
- (uwiden_high val))))
3615
- (let ((xor_const XmmMem (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000))
3616
- (dst Xmm (x64_pxor val xor_const))
3617
-
3618
- (madd_const XmmMem (emit_u128_le_const 0x0001_0001_0001_0001_0001_0001_0001_0001))
3619
- (dst Xmm (x64_pmaddwd dst madd_const))
3620
-
3621
- (addd_const XmmMem (emit_u128_le_const 0x00010000_00010000_00010000_00010000)))
3622
- (x64_paddd dst addd_const)))
3623
-
3624
- ;; special case for the `i32x4.dot_i16x8_s` wasm instruction
3625
- (rule 2 (lower
3626
- (has_type $I32X4 (iadd_pairwise
3627
- (imul (swiden_low x) (swiden_low y))
3628
- (imul (swiden_high x) (swiden_high y)))))
3629
- (x64_pmaddwd x y))
3630
-
3631
- ;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3632
-
3633
- ;; With SSE4.1 use the `pmovsx*` instructions for this
3634
- (rule 1 (lower (has_type $I16X8 (swiden_low val @ (value_type $I8X16))))
3635
- (if-let $true (use_sse41))
3636
- (x64_pmovsxbw val))
3637
- (rule 1 (lower (has_type $I32X4 (swiden_low val @ (value_type $I16X8))))
3638
- (if-let $true (use_sse41))
3639
- (x64_pmovsxwd val))
3640
- (rule 1 (lower (has_type $I64X2 (swiden_low val @ (value_type $I32X4))))
3641
- (if-let $true (use_sse41))
3642
- (x64_pmovsxdq val))
3643
-
3644
- (rule (lower (has_type ty (swiden_low val))) (lower_swiden_low ty val))
3645
-
3646
- (decl lower_swiden_low (Type Xmm) Xmm)
3647
-
3648
- ;; Duplicate the low lanes next to each other, then perform a wider shift-right
3649
- ;; by the low lane width to move the upper of each pair back into the lower lane
3650
- ;; of each pair, achieving the widening of the lower lanes.
3651
- (rule (lower_swiden_low $I16X8 val)
3652
- (x64_psraw (x64_punpcklbw val val) (xmi_imm 8)))
3653
- (rule (lower_swiden_low $I32X4 val)
3654
- (x64_psrad (x64_punpcklwd val val) (xmi_imm 16)))
3655
-
3656
- ;; Generate the sign-extended halves with a `val < 0` comparison (expressed
3657
- ;; reversed here), then interleave the low 32-bit halves to create the full
3658
- ;; 64-bit results.
3659
- (rule (lower_swiden_low $I64X2 val)
3660
- (let ((tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3661
- (x64_punpckldq val tmp)))
3662
-
3663
- ;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3664
-
3665
- ;; Similar to `swiden_low` with SSE4.1 except that the upper lanes are moved
3666
- ;; to the lower lanes first.
3667
- (rule 1 (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3668
- (if-let $true (use_sse41))
3669
- (if-let $true (use_ssse3))
3670
- (let ((x Xmm val))
3671
- (x64_pmovsxbw (x64_palignr x x 8))))
3672
- (rule 1 (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3673
- (if-let $true (use_sse41))
3674
- (if-let $true (use_ssse3))
3675
- (let ((x Xmm val))
3676
- (x64_pmovsxwd (x64_palignr x x 8))))
3677
- (rule 1 (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3678
- (if-let $true (use_sse41))
3679
- (x64_pmovsxdq (x64_pshufd val 0b11_10_11_10)))
3680
-
3681
- ;; Similar to `swiden_low` versions but using `punpckh*` instructions to
3682
- ;; pair the high lanes next to each other.
3683
- (rule (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3684
- (let ((val Xmm val))
3685
- (x64_psraw (x64_punpckhbw val val) (xmi_imm 8))))
3686
- (rule (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3687
- (let ((val Xmm val))
3688
- (x64_psrad (x64_punpckhwd val val) (xmi_imm 16))))
3689
-
3690
- ;; Same as `swiden_low`, but `val` has its high lanes moved down.
3691
- (rule (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3692
- (let ((val Xmm (x64_pshufd val 0b00_00_11_10))
3693
- (tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3694
- (x64_punpckldq val tmp)))
3695
-
3696
- ;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3697
-
3698
- ;; With SSE4.1 use the `pmovzx*` instructions for this
3699
- (rule 1 (lower (has_type $I16X8 (uwiden_low val @ (value_type $I8X16))))
3700
- (if-let $true (use_sse41))
3701
- (x64_pmovzxbw val))
3702
- (rule 1 (lower (has_type $I32X4 (uwiden_low val @ (value_type $I16X8))))
3703
- (if-let $true (use_sse41))
3704
- (x64_pmovzxwd val))
3705
- (rule 1 (lower (has_type $I64X2 (uwiden_low val @ (value_type $I32X4))))
3706
- (if-let $true (use_sse41))
3707
- (x64_pmovzxdq val))
3708
-
3709
- (rule (lower (has_type ty (uwiden_low val))) (lower_uwiden_low ty val))
3710
-
3711
- ;; Interleave an all-zero register with the low lanes to produce zero-extended
3712
- ;; results.
3713
- (decl lower_uwiden_low (Type Xmm) Xmm)
3714
- (rule (lower_uwiden_low $I16X8 val) (x64_punpcklbw val (xmm_zero $I8X16)))
3715
- (rule (lower_uwiden_low $I32X4 val) (x64_punpcklwd val (xmm_zero $I8X16)))
3716
- (rule (lower_uwiden_low $I64X2 val) (x64_unpcklps val (xmm_zero $F32X4)))
3717
-
3718
- ;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3719
-
3720
- ;; Same as `uwiden_high`, but interleaving high lanes instead.
3721
- ;;
3722
- ;; Note that according to `llvm-mca` at least these instructions are faster
3723
- ;; than using `pmovzx*` in terms of cycles, even if SSE4.1 is available.
3724
- (rule (lower (has_type $I16X8 (uwiden_high val @ (value_type $I8X16))))
3725
- (x64_punpckhbw val (xmm_zero $I8X16)))
3726
- (rule (lower (has_type $I32X4 (uwiden_high val @ (value_type $I16X8))))
3727
- (x64_punpckhwd val (xmm_zero $I8X16)))
3728
- (rule (lower (has_type $I64X2 (uwiden_high val @ (value_type $I32X4))))
3729
- (x64_unpckhps val (xmm_zero $F32X4)))
3730
-
3731
- ;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3732
-
3733
- (rule (lower (has_type $I8X16 (snarrow a @ (value_type $I16X8) b)))
3734
- (x64_packsswb a b))
3735
-
3736
- (rule (lower (has_type $I16X8 (snarrow a @ (value_type $I32X4) b)))
3737
- (x64_packssdw a b))
3738
-
3739
- ;; We're missing a `snarrow` case for $I64X2
3740
- ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3741
-
3742
- ;; This rule is a special case for handling the translation of the wasm op
3743
- ;; `i32x4.trunc_sat_f64x2_s_zero`. It can be removed once we have an
3744
- ;; implementation of `snarrow` for `I64X2`.
3745
- (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (fcvt_to_sint_sat val))
3746
- (vconst (u128_from_constant 0)))))
3747
- (let ((a Xmm val)
3748
-
3749
- ;; y = i32x4.trunc_sat_f64x2_s_zero(x) is lowered to:
3750
- ;; MOVE xmm_tmp, xmm_x
3751
- ;; CMPEQPD xmm_tmp, xmm_x
3752
- ;; MOVE xmm_y, xmm_x
3753
- ;; ANDPS xmm_tmp, [wasm_f64x2_splat(2147483647.0)]
3754
- ;; MINPD xmm_y, xmm_tmp
3755
- ;; CVTTPD2DQ xmm_y, xmm_y
3756
-
3757
- (tmp1 Xmm (x64_cmppd a a (FcmpImm.Equal)))
3758
-
3759
- ;; 2147483647.0 is equivalent to 0x41DFFFFFFFC00000
3760
- (umax_mask XmmMem (emit_u128_le_const 0x41DFFFFFFFC00000_41DFFFFFFFC00000))
3761
-
3762
- ;; ANDPD xmm_y, [wasm_f64x2_splat(2147483647.0)]
3763
- (tmp1 Xmm (x64_andps tmp1 umax_mask))
3764
- (dst Xmm (x64_minpd a tmp1)))
3765
- (x64_cvttpd2dq dst)))
3766
-
3767
- ;; This rule is a special case for handling the translation of the wasm op
3768
- ;; `i32x4.relaxed_trunc_f64x2_s_zero`.
3769
- (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (x86_cvtt2dq val))
3770
- (vconst (u128_from_constant 0)))))
3771
- (x64_cvttpd2dq val))
3772
-
3773
- ;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3774
-
3775
- (rule (lower (has_type $I8X16 (unarrow a @ (value_type $I16X8) b)))
3776
- (x64_packuswb a b))
3777
-
3778
- (rule 1 (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
3779
- (if-let $true (use_sse41))
3780
- (x64_packusdw a b))
3781
-
3782
- ;; For each input `a` and `b` take the four 32-bit lanes and compress them to
3783
- ;; the low 64-bits of the vector as four 16-bit lanes. Then these are woven
3784
- ;; into one final vector with a `punpcklqdq`.
3785
- ;;
3786
- ;; If this is performance sensitive then it's probably best to upgrade the CPU
3787
- ;; to get the above single-instruction lowering.
3788
- (rule (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
3789
- (let (
3790
- (a Xmm (unarrow_i32x4_lanes_to_low_u16_lanes a))
3791
- (b Xmm (unarrow_i32x4_lanes_to_low_u16_lanes b))
3792
- )
3793
- (x64_punpcklqdq a b)))
3794
-
3795
- (decl unarrow_i32x4_lanes_to_low_u16_lanes (Xmm) Xmm)
3796
- (rule (unarrow_i32x4_lanes_to_low_u16_lanes val)
3797
- (let (
3798
- ;; First convert all negative values in `val` to zero lanes.
3799
- (val_gt_zero Xmm (x64_pcmpgtd val (xmm_zero $I32X4)))
3800
- (val Xmm (x64_pand val val_gt_zero))
3801
-
3802
- ;; Next clamp all larger-than-u16-max lanes to u16::MAX.
3803
- (max Xmm (x64_movdqu_load (emit_u128_le_const 0x0000ffff_0000ffff_0000ffff_0000ffff)))
3804
- (cmp Xmm (x64_pcmpgtd max val))
3805
- (valid_lanes Xmm (x64_pand val cmp))
3806
- (clamped_lanes Xmm (x64_pandn cmp max))
3807
- (val Xmm (x64_por valid_lanes clamped_lanes))
3808
-
3809
- ;; Within each 64-bit half of the 32x4 vector move the first 16 bits
3810
- ;; and the third 16 bits to the bottom of the half. Afterwards
3811
- ;; for the 32x4 vector move the first and third lanes to the bottom
3812
- ;; lanes, which finishes up the conversion here as all the lanes
3813
- ;; are now converted to 16-bit values in the low 4 lanes.
3814
- (val Xmm (x64_pshuflw val 0b00_00_10_00))
3815
- (val Xmm (x64_pshufhw val 0b00_00_10_00))
3816
- )
3817
- (x64_pshufd val 0b00_00_10_00)))
3818
-
3819
-
3820
- ;; We're missing a `unarrow` case for $I64X2
3821
- ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3822
-
3823
- ;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3824
-
3825
- (rule (lower (has_type $I32 (bitcast _ src @ (value_type $F32))))
3826
- (bitcast_xmm_to_gpr $F32 src))
3827
-
3828
- (rule (lower (has_type $F32 (bitcast _ src @ (value_type $I32))))
3829
- (bitcast_gpr_to_xmm $I32 src))
3830
-
3831
- (rule (lower (has_type $I64 (bitcast _ src @ (value_type $F64))))
3832
- (bitcast_xmm_to_gpr $F64 src))
3833
-
3834
- (rule (lower (has_type $F64 (bitcast _ src @ (value_type $I64))))
3835
- (bitcast_gpr_to_xmm $I64 src))
3836
-
3837
- ;; Bitcast between types residing in GPR registers is a no-op.
3838
- (rule 1 (lower (has_type (is_gpr_type _)
3839
- (bitcast _ x @ (value_type (is_gpr_type _))))) x)
3840
-
3841
- ;; Bitcast between types residing in XMM registers is a no-op.
3842
- (rule 2 (lower (has_type (is_xmm_type _)
3843
- (bitcast _ x @ (value_type (is_xmm_type _))))) x)
3844
-
3845
- ;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3846
-
3847
- (rule (lower (has_type $F32 (fcopysign a @ (value_type $F32) b)))
3848
- (let ((sign_bit Xmm (imm $F32 0x80000000)))
3849
- (x64_orps
3850
- (x64_andnps sign_bit a)
3851
- (x64_andps sign_bit b))))
3852
-
3853
- (rule (lower (has_type $F64 (fcopysign a @ (value_type $F64) b)))
3854
- (let ((sign_bit Xmm (imm $F64 0x8000000000000000)))
3855
- (x64_orpd
3856
- (x64_andnpd sign_bit a)
3857
- (x64_andpd sign_bit b))))
3858
-
3859
- ;; Helper for the `ceil`/`floor`/`nearest`/`trunc` instructions ;;;;;;;;;;;;;;;;
3860
-
3861
- ;; Emits either a `round{ss,sd,ps,pd}` instruction, as appropriate, or generates
3862
- ;; the appropriate libcall and sequence to call that.
3863
- (decl x64_round (Type RegMem RoundImm) Xmm)
3864
- (rule 1 (x64_round $F32 a imm)
3865
- (if-let $true (use_sse41))
3866
- (x64_roundss a imm))
3867
- (rule 1 (x64_round $F64 a imm)
3868
- (if-let $true (use_sse41))
3869
- (x64_roundsd a imm))
3870
- (rule 1 (x64_round $F32X4 a imm)
3871
- (if-let $true (use_sse41))
3872
- (x64_roundps a imm))
3873
- (rule 1 (x64_round $F64X2 a imm)
3874
- (if-let $true (use_sse41))
3875
- (x64_roundpd a imm))
3876
-
3877
- (rule (x64_round $F32 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F32 imm) a))
3878
- (rule (x64_round $F64 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F64 imm) a))
3879
- (rule (x64_round $F32X4 (RegMem.Reg a) imm)
3880
- (let (
3881
- (libcall LibCall (round_libcall $F32 imm))
3882
- (result Xmm (libcall_1 libcall a))
3883
- (a1 Xmm (libcall_1 libcall (x64_pshufd a 1)))
3884
- (result Xmm (vec_insert_lane $F32X4 result a1 1))
3885
- (a2 Xmm (libcall_1 libcall (x64_pshufd a 2)))
3886
- (result Xmm (vec_insert_lane $F32X4 result a2 2))
3887
- (a3 Xmm (libcall_1 libcall (x64_pshufd a 3)))
3888
- (result Xmm (vec_insert_lane $F32X4 result a3 3))
3889
- )
3890
- result))
3891
- (rule (x64_round $F64X2 (RegMem.Reg a) imm)
3892
- (let (
3893
- (libcall LibCall (round_libcall $F64 imm))
3894
- (result Xmm (libcall_1 libcall a))
3895
- (a1 Xmm (libcall_1 libcall (x64_pshufd a 0b00_00_11_10)))
3896
- (result Xmm (vec_insert_lane $F64X2 result a1 1))
3897
- )
3898
- result))
3899
- (rule (x64_round ty (RegMem.Mem addr) imm)
3900
- (x64_round ty (RegMem.Reg (x64_load ty addr (ExtKind.ZeroExtend))) imm))
3901
-
3902
- (decl round_libcall (Type RoundImm) LibCall)
3903
- (rule (round_libcall $F32 (RoundImm.RoundUp)) (LibCall.CeilF32))
3904
- (rule (round_libcall $F64 (RoundImm.RoundUp)) (LibCall.CeilF64))
3905
- (rule (round_libcall $F32 (RoundImm.RoundDown)) (LibCall.FloorF32))
3906
- (rule (round_libcall $F64 (RoundImm.RoundDown)) (LibCall.FloorF64))
3907
- (rule (round_libcall $F32 (RoundImm.RoundNearest)) (LibCall.NearestF32))
3908
- (rule (round_libcall $F64 (RoundImm.RoundNearest)) (LibCall.NearestF64))
3909
- (rule (round_libcall $F32 (RoundImm.RoundZero)) (LibCall.TruncF32))
3910
- (rule (round_libcall $F64 (RoundImm.RoundZero)) (LibCall.TruncF64))
3911
-
3912
- ;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3913
-
3914
- (rule (lower (ceil a @ (value_type ty)))
3915
- (x64_round ty a (RoundImm.RoundUp)))
3916
-
3917
- ;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3918
-
3919
- (rule (lower (floor a @ (value_type ty)))
3920
- (x64_round ty a (RoundImm.RoundDown)))
3921
-
3922
- ;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3923
-
3924
- (rule (lower (nearest a @ (value_type ty)))
3925
- (x64_round ty a (RoundImm.RoundNearest)))
3926
-
3927
- ;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3928
-
3929
- (rule (lower (trunc a @ (value_type ty)))
3930
- (x64_round ty a (RoundImm.RoundZero)))
3931
-
3932
- ;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3933
-
3934
- (rule (lower (stack_addr stack_slot offset))
3935
- (stack_addr_impl stack_slot offset))
3936
-
3937
- ;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3938
-
3939
- ;; NB: a `RegMem` divisor, while allowed in the instruction encoding, isn't
3940
- ;; used right now to prevent a possibly-trapping load getting folded into the
3941
- ;; `div` instruction. Ideally non-trapping loads would get folded, however, or
3942
- ;; alternatively Wasmtime/Cranelift would grow support for multiple traps on
3943
- ;; a single opcode and the signal kind would differentiate at runtime.
3944
-
3945
- ;; The inputs to the `div` instruction are different for 8-bit division so
3946
- ;; it needs a special case here since the instruction being crafted has a
3947
- ;; different shape.
3948
- (rule 2 (lower (udiv a @ (value_type $I8) b))
3949
- (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
3950
- (put_in_gpr b)
3951
- (DivSignedness.Unsigned)
3952
- (TrapCode.IntegerDivisionByZero)))
3953
-
3954
- ;; 16-to-64-bit division is all done with a similar instruction and the only
3955
- ;; tricky requirement here is that when div traps are disallowed the divisor
3956
- ;; must not be zero.
3957
- (rule 1 (lower (udiv a @ (value_type (fits_in_64 ty)) b))
3958
- (x64_div_quotient a
3959
- (imm $I64 0)
3960
- (put_in_gpr b)
3961
- (raw_operand_size_of_type ty)
3962
- (DivSignedness.Unsigned)
3963
- (TrapCode.IntegerDivisionByZero)))
3964
-
3965
- ;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3966
-
3967
- (rule 2 (lower (sdiv a @ (value_type $I8) b))
3968
- (x64_div8 (x64_sign_extend_data a (OperandSize.Size8))
3969
- (nonzero_sdiv_divisor $I8 b)
3970
- (DivSignedness.Signed)
3971
- (TrapCode.IntegerOverflow)))
3972
-
3973
- (rule 1 (lower (sdiv a @ (value_type (fits_in_64 ty)) b))
3974
- (let (
3975
- (a Gpr a)
3976
- (size OperandSize (raw_operand_size_of_type ty))
3977
- )
3978
- (x64_div_quotient a
3979
- (x64_sign_extend_data a size)
3980
- (nonzero_sdiv_divisor ty b)
3981
- size
3982
- (DivSignedness.Signed)
3983
- (TrapCode.IntegerOverflow))))
3984
-
3985
- ;; Checks to make sure that the input `Value` is a non-zero value for `sdiv`.
3986
- ;;
3987
- ;; This is required to differentiate the divide-by-zero trap from the
3988
- ;; integer-overflow trap, the two trapping conditions of signed division.
3989
- (decl nonzero_sdiv_divisor (Type Value) Reg)
3990
- (rule 1 (nonzero_sdiv_divisor ty (iconst imm))
3991
- (if-let n (safe_divisor_from_imm64 ty imm))
3992
- (imm ty n))
3993
- (rule 0 (nonzero_sdiv_divisor ty val)
3994
- (let (
3995
- (val Reg val)
3996
- (_ InstOutput (side_effect (with_flags_side_effect
3997
- (x64_test (raw_operand_size_of_type ty) val val)
3998
- (trap_if (CC.Z) (TrapCode.IntegerDivisionByZero)))))
3999
- )
4000
- val))
4001
-
4002
- ;; Rules for `urem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4003
-
4004
- ;; The remainder is in AH, so take the result of the division and right-shift
4005
- ;; by 8.
4006
- (rule 2 (lower (urem a @ (value_type $I8) b))
4007
- (let (
4008
- (result Gpr (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
4009
- (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
4010
- (DivSignedness.Unsigned)
4011
- (TrapCode.IntegerDivisionByZero)))
4012
- )
4013
- (x64_shr $I64 result (Imm8Reg.Imm8 8))))
4014
-
4015
- (rule 1 (lower (urem a @ (value_type (fits_in_64 ty)) b))
4016
- (x64_div_remainder a
4017
- (imm $I64 0)
4018
- (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
4019
- (raw_operand_size_of_type ty)
4020
- (DivSignedness.Unsigned)
4021
- (TrapCode.IntegerDivisionByZero)))
4022
-
4023
- ;; Rules for `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4024
-
4025
- ;; Special-cases first for constant `srem` where the checks for 0 and -1 aren't
4026
- ;; applicable.
4027
- ;;
4028
- ;; Note that like `urem` for i8 types the result is in AH so to get the result
4029
- ;; it's right-shifted down.
4030
- (rule 3 (lower (srem a @ (value_type $I8) (iconst imm)))
4031
- (if-let n (safe_divisor_from_imm64 $I8 imm))
4032
- (let (
4033
- (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
4034
- (result Gpr (x64_div8 a (imm $I8 n) (DivSignedness.Signed) (TrapCode.IntegerDivisionByZero)))
4035
- )
4036
- (x64_shr $I64 result (Imm8Reg.Imm8 8))))
4037
-
4038
- ;; Same as the above rule but for 16-to-64 bit types.
4039
- (rule 2 (lower (srem a @ (value_type ty) (iconst imm)))
4040
- (if-let n (safe_divisor_from_imm64 ty imm))
4041
- (let (
4042
- (a Gpr a)
4043
- (size OperandSize (raw_operand_size_of_type ty))
4044
- )
4045
- (x64_div_remainder a
4046
- (x64_sign_extend_data a size)
4047
- (imm ty n)
4048
- size
4049
- (DivSignedness.Signed)
4050
- (TrapCode.IntegerDivisionByZero))))
4051
-
4052
- (rule 1 (lower (srem a @ (value_type $I8) b))
4053
- (let (
4054
- (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
4055
- )
4056
- (x64_shr $I64 (x64_checked_srem_seq8 a b) (Imm8Reg.Imm8 8))))
4057
-
4058
- (rule (lower (srem a @ (value_type ty) b))
4059
- (let (
4060
- (a Gpr a)
4061
- (size OperandSize (raw_operand_size_of_type ty))
4062
- (hi Gpr (x64_sign_extend_data a size))
4063
- (tmp ValueRegs (x64_checked_srem_seq size a hi b))
4064
- )
4065
- (value_regs_get tmp 1)))
4066
-
4067
- ;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4068
-
4069
- (rule (lower (umulhi a @ (value_type $I16) b))
4070
- (let ((res ValueRegs (mul_hi $I16 $false a b))
4071
- (hi Gpr (value_regs_get_gpr res 1)))
4072
- hi))
4073
-
4074
- (rule (lower (umulhi a @ (value_type $I32) b))
4075
- (let ((res ValueRegs (mul_hi $I32 $false a b))
4076
- (hi Gpr (value_regs_get_gpr res 1)))
4077
- hi))
4078
-
4079
- (rule (lower (umulhi a @ (value_type $I64) b))
4080
- (let ((res ValueRegs (mul_hi $I64 $false a b))
4081
- (hi Gpr (value_regs_get_gpr res 1)))
4082
- hi))
4083
-
4084
- ;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4085
-
4086
- (rule (lower (smulhi a @ (value_type $I16) b))
4087
- (let ((res ValueRegs (mul_hi $I16 $true a b))
4088
- (hi Gpr (value_regs_get_gpr res 1)))
4089
- hi))
4090
-
4091
- (rule (lower (smulhi a @ (value_type $I32) b))
4092
- (let ((res ValueRegs (mul_hi $I32 $true a b))
4093
- (hi Gpr (value_regs_get_gpr res 1)))
4094
- hi))
4095
-
4096
- (rule (lower (smulhi a @ (value_type $I64) b))
4097
- (let ((res ValueRegs (mul_hi $I64 $true a b))
4098
- (hi Gpr (value_regs_get_gpr res 1)))
4099
- hi))
4100
-
4101
- ;; Rules for `get_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4102
-
4103
- (rule (lower (get_pinned_reg))
4104
- (read_pinned_gpr))
4105
-
4106
- ;; Rules for `set_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4107
-
4108
- (rule (lower (set_pinned_reg a @ (value_type ty)))
4109
- (side_effect (write_pinned_gpr a)))
4110
-
4111
- ;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4112
-
4113
- (rule (lower (has_type ty (vconst const)))
4114
- ;; TODO use Inst::gen_constant() instead.
4115
- (x64_xmm_load_const ty (const_to_vconst const)))
4116
-
4117
- ;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4118
-
4119
- ;; Special case for `pblendw` which takes an 8-bit immediate where each bit
4120
- ;; indicates which lane of the two operands is chosen for the output. A bit of
4121
- ;; 0 chooses the corresponding 16-it lane from `a` and a bit of 1 chooses the
4122
- ;; corresponding 16-bit lane from `b`.
4123
- (rule 14 (lower (shuffle a b (pblendw_imm n)))
4124
- (if-let $true (use_sse41))
4125
- (x64_pblendw a b n))
4126
- (decl pblendw_imm (u8) Immediate)
4127
- (extern extractor pblendw_imm pblendw_imm)
4128
-
4129
- ;; When the shuffle looks like "concatenate `a` and `b` and shift right by n*8
4130
- ;; bytes", that's a `palignr` instruction. Note that the order of operands are
4131
- ;; swapped in the instruction here. The `palignr` instruction uses the second
4132
- ;; operand as the low-order bytes and the first operand as high-order bytes,
4133
- ;; so put `a` second.
4134
- (rule 13 (lower (shuffle a b (palignr_imm_from_immediate n)))
4135
- (if-let $true (use_ssse3))
4136
- (x64_palignr b a n))
4137
- (decl palignr_imm_from_immediate (u8) Immediate)
4138
- (extern extractor palignr_imm_from_immediate palignr_imm_from_immediate)
4139
-
4140
- ;; Special case the `pshuf{l,h}w` instruction which shuffles four 16-bit
4141
- ;; integers within one value, preserving the other four 16-bit integers in that
4142
- ;; value (either the high or low half). The complicated logic is in the
4143
- ;; extractors here implemented in Rust and note that there's two cases for each
4144
- ;; instruction here to match when either the first or second shuffle operand is
4145
- ;; used.
4146
- (rule 12 (lower (shuffle x y (pshuflw_lhs_imm imm)))
4147
- (x64_pshuflw x imm))
4148
- (rule 11 (lower (shuffle x y (pshuflw_rhs_imm imm)))
4149
- (x64_pshuflw y imm))
4150
- (rule 10 (lower (shuffle x y (pshufhw_lhs_imm imm)))
4151
- (x64_pshufhw x imm))
4152
- (rule 9 (lower (shuffle x y (pshufhw_rhs_imm imm)))
4153
- (x64_pshufhw y imm))
4154
-
4155
- (decl pshuflw_lhs_imm (u8) Immediate)
4156
- (extern extractor pshuflw_lhs_imm pshuflw_lhs_imm)
4157
- (decl pshuflw_rhs_imm (u8) Immediate)
4158
- (extern extractor pshuflw_rhs_imm pshuflw_rhs_imm)
4159
- (decl pshufhw_lhs_imm (u8) Immediate)
4160
- (extern extractor pshufhw_lhs_imm pshufhw_lhs_imm)
4161
- (decl pshufhw_rhs_imm (u8) Immediate)
4162
- (extern extractor pshufhw_rhs_imm pshufhw_rhs_imm)
4163
-
4164
- ;; Special case for the `pshufd` instruction which will permute 32-bit values
4165
- ;; within a single register. This is only applicable if the `imm` specified
4166
- ;; selects 32-bit values from either `x` or `y`, but not both. This means
4167
- ;; there's one rule for selecting from `x` and another rule for selecting from
4168
- ;; `y`.
4169
- (rule 8 (lower (shuffle x y (pshufd_lhs_imm imm)))
4170
- (x64_pshufd x imm))
4171
- (rule 7 (lower (shuffle x y (pshufd_rhs_imm imm)))
4172
- (x64_pshufd y imm))
4173
-
4174
- (decl pshufd_lhs_imm (u8) Immediate)
4175
- (extern extractor pshufd_lhs_imm pshufd_lhs_imm)
4176
- (decl pshufd_rhs_imm (u8) Immediate)
4177
- (extern extractor pshufd_rhs_imm pshufd_rhs_imm)
4178
-
4179
- ;; Special case for i8-level interleaving of upper/low bytes.
4180
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f0f_1e0e_1d0d_1c0c_1b0b_1a0a_1909_1808)))
4181
- (x64_punpckhbw a b))
4182
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1707_1606_1505_1404_1303_1202_1101_1000)))
4183
- (x64_punpcklbw a b))
4184
-
4185
- ;; Special case for i16-level interleaving of upper/low bytes.
4186
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1d1c_0d0c_1b1a_0b0a_1918_0908)))
4187
- (x64_punpckhwd a b))
4188
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716_0706_1514_0504_1312_0302_1110_0100)))
4189
- (x64_punpcklwd a b))
4190
-
4191
- ;; Special case for i32-level interleaving of upper/low bytes.
4192
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_1b1a1918_0b0a0908)))
4193
- (x64_punpckhdq a b))
4194
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x17161514_07060504_13121110_03020100)))
4195
- (x64_punpckldq a b))
4196
-
4197
- ;; Special case for i64-level interleaving of upper/low bytes.
4198
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c1b1a1918_0f0e0d0c0b0a0908)))
4199
- (x64_punpckhqdq a b))
4200
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716151413121110_0706050403020100)))
4201
- (x64_punpcklqdq a b))
4202
-
4203
- ;; If the vector shift mask is all 0s then that means the first byte of the
4204
- ;; first operand is broadcast to all bytes. Falling through would load an
4205
- ;; all-zeros constant from a rip-relative location but it should be slightly
4206
- ;; more efficient to execute the `pshufb` here-and-now with an xor'd-to-be-zero
4207
- ;; register.
4208
- (rule 6 (lower (shuffle a _ (u128_from_immediate 0)))
4209
- (if-let $true (use_ssse3))
4210
- (x64_pshufb a (xmm_zero $I8X16)))
4211
-
4212
- ;; Special case for the `shufps` instruction which will select two 32-bit values
4213
- ;; from the first operand and two 32-bit values from the second operand. Note
4214
- ;; that there is a second case here as well for when the operands can be
4215
- ;; swapped.
4216
- ;;
4217
- ;; Note that the priority of this instruction is currently lower than the above
4218
- ;; special cases since `shufps` handles many of them and for now it's
4219
- ;; hypothesized that the dedicated instructions are better than `shufps`.
4220
- ;; Someone with more knowledge about x86 timings should perhaps reorder the
4221
- ;; rules here eventually though.
4222
- (rule 5 (lower (shuffle x y (shufps_imm imm)))
4223
- (x64_shufps x y imm))
4224
- (rule 4 (lower (shuffle x y (shufps_rev_imm imm)))
4225
- (x64_shufps y x imm))
4226
-
4227
- (decl shufps_imm(u8) Immediate)
4228
- (extern extractor shufps_imm shufps_imm)
4229
- (decl shufps_rev_imm(u8) Immediate)
4230
- (extern extractor shufps_rev_imm shufps_rev_imm)
4231
-
4232
-
4233
- ;; If `lhs` and `rhs` are the same we can use a single PSHUFB to shuffle the XMM
4234
- ;; register. We statically build `constructed_mask` to zero out any unknown lane
4235
- ;; indices (may not be completely necessary: verification could fail incorrect
4236
- ;; mask values) and fix the indexes to all point to the `dst` vector.
4237
- (rule 3 (lower (shuffle a a (vec_mask_from_immediate mask)))
4238
- (if-let $true (use_ssse3))
4239
- (x64_pshufb a (shuffle_0_31_mask mask)))
4240
-
4241
- ;; For the case where the shuffle mask contains out-of-bounds values (values
4242
- ;; greater than 31) we must mask off those resulting values in the result of
4243
- ;; `vpermi2b`.
4244
- (rule 2 (lower (shuffle a b (vec_mask_from_immediate (perm_from_mask_with_zeros mask zeros))))
4245
- (if-let $true (use_avx512vl))
4246
- (if-let $true (use_avx512vbmi))
4247
- (x64_andps (x64_vpermi2b (x64_xmm_load_const $I8X16 mask) a b) zeros))
4248
-
4249
- ;; However, if the shuffle mask contains no out-of-bounds values, we can use
4250
- ;; `vpermi2b` without any masking.
4251
- (rule 1 (lower (shuffle a b (vec_mask_from_immediate mask)))
4252
- (if-let $true (use_avx512vl))
4253
- (if-let $true (use_avx512vbmi))
4254
- (x64_vpermi2b (x64_xmm_load_const $I8X16 (perm_from_mask mask)) a b))
4255
-
4256
- ;; If `lhs` and `rhs` are different, we must shuffle each separately and then OR
4257
- ;; them together. This is necessary due to PSHUFB semantics. As in the case
4258
- ;; above, we build the `constructed_mask` for each case statically.
4259
- (rule (lower (shuffle a b (vec_mask_from_immediate mask)))
4260
- (x64_por
4261
- (lower_pshufb a (shuffle_0_15_mask mask))
4262
- (lower_pshufb b (shuffle_16_31_mask mask))))
4263
-
4264
- ;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4265
-
4266
- ;; SIMD swizzle; the following inefficient implementation is due to the Wasm
4267
- ;; SIMD spec requiring mask indexes greater than 15 to have the same semantics
4268
- ;; as a 0 index. For the spec discussion, see
4269
- ;; https://github.com/WebAssembly/simd/issues/93. The CLIF semantics match the
4270
- ;; Wasm SIMD semantics for this instruction. The instruction format maps to
4271
- ;; variables like: %dst = swizzle %src, %mask
4272
- (rule (lower (swizzle src mask))
4273
- (let ((mask Xmm (x64_paddusb mask (emit_u128_le_const 0x70707070707070707070707070707070))))
4274
- (lower_pshufb src mask)))
4275
-
4276
- ;; Rules for `x86_pshufb` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4277
-
4278
- (rule (lower (x86_pshufb src mask))
4279
- (if-let $true (use_ssse3))
4280
- (x64_pshufb src mask))
4281
-
4282
- ;; A helper function to generate either the `pshufb` instruction or a libcall to
4283
- ;; the `X86Pshufb` libcall. Note that the libcall is not exactly the most
4284
- ;; performant thing in the world so this is primarily here for completeness
4285
- ;; of lowerings on all x86 cpus but if rules are ideally gated on the presence
4286
- ;; of SSSE3 to use the `pshufb` instruction itself.
4287
- (decl lower_pshufb (Xmm RegMem) Xmm)
4288
- (rule 1 (lower_pshufb src mask)
4289
- (if-let $true (use_ssse3))
4290
- (x64_pshufb src mask))
4291
- (rule (lower_pshufb src (RegMem.Reg mask))
4292
- (libcall_2 (LibCall.X86Pshufb) src mask))
4293
- (rule (lower_pshufb src (RegMem.Mem addr))
4294
- (lower_pshufb src (x64_movdqu_load addr)))
4295
-
4296
- ;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4297
-
4298
- ;; Remove the extractlane instruction, leaving the float where it is. The upper
4299
- ;; bits will remain unchanged; for correctness, this relies on Cranelift type
4300
- ;; checking to avoid using those bits.
4301
- (rule 3 (lower (has_type (ty_scalar_float _) (extractlane val 0)))
4302
- val)
4303
-
4304
- ;; `f32x4.extract_lane N` where `N != 0`
4305
- (rule 1 (lower (extractlane val @ (value_type $F32X4) (u8_from_uimm8 lane)))
4306
- (x64_pshufd val lane))
4307
-
4308
- ;; `f64x2.extract_lane N` where `N != 0` (aka N == 1)
4309
- (rule (lower (extractlane val @ (value_type $F64X2) 1))
4310
- (x64_pshufd val 0b11_10_11_10))
4311
-
4312
- ;; `i8x16.extract_lane N`
4313
- ;;
4314
- ;; Note that without SSE4.1 a 16-bit lane extraction is performed and then
4315
- ;; the result is updated if the desired index is either odd or even.
4316
- (rule 2 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4317
- (if-let $true (use_sse41))
4318
- (x64_pextrb val lane))
4319
- ;; extracting an odd lane has an extra shift-right
4320
- (rule 1 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4321
- (if-let 1 (u8_and lane 1))
4322
- (x64_shr $I16 (x64_pextrw val (u8_shr lane 1)) (Imm8Reg.Imm8 8)))
4323
- ;; Extracting an even lane already has the desired lane in the lower bits. Note
4324
- ;; that having arbitrary upper bits in the returned register should be ok since
4325
- ;; all operators on the resulting `i8` type should work correctly regardless of
4326
- ;; the bits in the rest of the register.
4327
- (rule (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4328
- (if-let 0 (u8_and lane 1))
4329
- (x64_pextrw val (u8_shr lane 1)))
4330
-
4331
- ;; `i16x8.extract_lane N`
4332
- (rule (lower (extractlane val @ (value_type ty @ $I16X8) (u8_from_uimm8 lane)))
4333
- (x64_pextrw val lane))
4334
-
4335
- ;; `i32x4.extract_lane N`
4336
- (rule 2 (lower (extractlane val @ (value_type ty @ $I32X4) (u8_from_uimm8 lane)))
4337
- (if-let $true (use_sse41))
4338
- (x64_pextrd val lane))
4339
- (rule 1 (lower (extractlane val @ (value_type $I32X4) 0))
4340
- (x64_movd_to_gpr val))
4341
- (rule (lower (extractlane val @ (value_type $I32X4) (u8_from_uimm8 n)))
4342
- (x64_movd_to_gpr (x64_pshufd val n)))
4343
-
4344
- ;; `i64x2.extract_lane N`
4345
- (rule 1 (lower (extractlane val @ (value_type $I64X2) (u8_from_uimm8 lane)))
4346
- (if-let $true (use_sse41))
4347
- (x64_pextrq val lane))
4348
- (rule (lower (extractlane val @ (value_type $I64X2) 0))
4349
- (x64_movq_to_gpr val))
4350
- (rule (lower (extractlane val @ (value_type $I64X2) 1))
4351
- (x64_movq_to_gpr (x64_pshufd val 0b00_00_11_10)))
4352
-
4353
- ;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4354
-
4355
- ;; Case 1: when moving a scalar float, we simply move from one XMM register
4356
- ;; to another, expecting the register allocator to elide this. Here we
4357
- ;; assume that the upper bits of a scalar float have not been munged with
4358
- ;; (the same assumption the old backend makes).
4359
- (rule 1 (lower (scalar_to_vector src @ (value_type (ty_scalar_float _))))
4360
- src)
4361
-
4362
- ;; Case 2: when moving a scalar value of any other type, use MOVD to zero
4363
- ;; the upper lanes.
4364
- (rule (lower (scalar_to_vector src @ (value_type ty)))
4365
- (bitcast_gpr_to_xmm ty src))
4366
-
4367
- ;; Case 3: when presented with `load + scalar_to_vector`, coalesce into a single
4368
- ;; MOVSS/MOVSD instruction.
4369
- (rule 2 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_32 _)))))
4370
- (x64_movss_load src))
4371
- (rule 3 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_64 _)))))
4372
- (x64_movsd_load src))
4373
-
4374
- ;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4375
-
4376
- ;; For all the splat rules below one of the goals is that splatting a value
4377
- ;; doesn't end up accidentally depending on the previous value in a register.
4378
- ;; This means that instructions are chosen to avoid false dependencies where
4379
- ;; new values are created fresh or otherwise overwrite previous register
4380
- ;; contents where possible.
4381
- ;;
4382
- ;; Additionally splats are specialized to special-case load-and-splat which
4383
- ;; has a number of micro-optimizations available.
4384
-
4385
- ;; i8x16 splats: use `vpbroadcastb` on AVX2 and otherwise `pshufb` broadcasts
4386
- ;; with a mask of zero which is calculated with an xor-against-itself register.
4387
- (rule 0 (lower (has_type $I8X16 (splat src)))
4388
- (let ((src Xmm (x64_movd_to_xmm src)))
4389
- (x64_pshufd (x64_pshuflw (x64_punpcklbw src src) 0) 0)))
4390
- (rule 1 (lower (has_type $I8X16 (splat src)))
4391
- (if-let $true (use_ssse3))
4392
- (x64_pshufb (bitcast_gpr_to_xmm $I32 src) (xmm_zero $I8X16)))
4393
- (rule 2 (lower (has_type $I8X16 (splat src)))
4394
- (if-let $true (use_avx2))
4395
- (x64_vpbroadcastb (bitcast_gpr_to_xmm $I32 src)))
4396
- (rule 3 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4397
- (if-let $true (use_sse41))
4398
- (if-let $true (use_ssse3))
4399
- (x64_pshufb (x64_pinsrb (xmm_uninit_value) addr 0) (xmm_zero $I8X16)))
4400
- (rule 4 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4401
- (if-let $true (use_avx2))
4402
- (x64_vpbroadcastb addr))
4403
-
4404
- ;; i16x8 splats: use `vpbroadcastw` on AVX2 and otherwise a 16-bit value is
4405
- ;; loaded into an xmm register, `pshuflw` broadcasts the low 16-bit lane
4406
- ;; to the low four lanes, and `pshufd` broadcasts the low 32-bit lane (which
4407
- ;; at that point is two of the 16-bit values we want to broadcast) to all the
4408
- ;; lanes.
4409
- (rule 0 (lower (has_type $I16X8 (splat src)))
4410
- (x64_pshufd (x64_pshuflw (bitcast_gpr_to_xmm $I32 src) 0) 0))
4411
- (rule 1 (lower (has_type $I16X8 (splat src)))
4412
- (if-let $true (use_avx2))
4413
- (x64_vpbroadcastw (bitcast_gpr_to_xmm $I32 src)))
4414
- (rule 2 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4415
- (x64_pshufd (x64_pshuflw (x64_pinsrw (xmm_uninit_value) addr 0) 0) 0))
4416
- (rule 3 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4417
- (if-let $true (use_avx2))
4418
- (x64_vpbroadcastw addr))
4419
-
4420
- ;; i32x4.splat - use `vpbroadcastd` on AVX2 and otherwise `pshufd` can be
4421
- ;; used to broadcast the low lane to all other lanes.
4422
- ;;
4423
- ;; Note that sinkable-load cases come later
4424
- (rule 0 (lower (has_type $I32X4 (splat src)))
4425
- (x64_pshufd (bitcast_gpr_to_xmm $I32 src) 0))
4426
- (rule 1 (lower (has_type $I32X4 (splat src)))
4427
- (if-let $true (use_avx2))
4428
- (x64_vpbroadcastd (bitcast_gpr_to_xmm $I32 src)))
4429
-
4430
- ;; f32x4.splat - the source is already in an xmm register so `shufps` is all
4431
- ;; that's necessary to complete the splat. This is specialized to `vbroadcastss`
4432
- ;; on AVX2 to leverage that specific instruction for this operation.
4433
- (rule 0 (lower (has_type $F32X4 (splat src)))
4434
- (let ((tmp Xmm src))
4435
- (x64_shufps src src 0)))
4436
- (rule 1 (lower (has_type $F32X4 (splat src)))
4437
- (if-let $true (use_avx2))
4438
- (x64_vbroadcastss src))
4439
-
4440
- ;; t32x4.splat of a load - use a `movss` to load into an xmm register and then
4441
- ;; `shufps` broadcasts to the other lanes. Note that this is used for both i32
4442
- ;; and f32 splats.
4443
- ;;
4444
- ;; With AVX the `vbroadcastss` instruction suits this purpose precisely. Note
4445
- ;; that the memory-operand encoding of `vbroadcastss` is usable with AVX, but
4446
- ;; the register-based encoding is only available with AVX2. With the
4447
- ;; `sinkable_load` extractor this should be guaranteed to use the memory-based
4448
- ;; encoding hence the `use_avx` test.
4449
- (rule 5 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4450
- (let ((tmp Xmm (x64_movss_load addr)))
4451
- (x64_shufps tmp tmp 0)))
4452
- (rule 6 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4453
- (if-let $true (use_avx))
4454
- (x64_vbroadcastss addr))
4455
-
4456
- ;; t64x2.splat - use `pshufd` to broadcast the lower 64-bit lane to the upper
4457
- ;; lane. A minor specialization for sinkable loads to avoid going through a gpr
4458
- ;; for i64 splats is used as well when `movddup` is available.
4459
- (rule 0 (lower (has_type $I64X2 (splat src)))
4460
- (x64_pshufd (bitcast_gpr_to_xmm $I64 src) 0b01_00_01_00))
4461
- (rule 0 (lower (has_type $F64X2 (splat src)))
4462
- (x64_pshufd src 0b01_00_01_00))
4463
- (rule 6 (lower (has_type (multi_lane 64 2) (splat (sinkable_load addr))))
4464
- (if-let $true (use_ssse3))
4465
- (x64_movddup addr))
4466
-
4467
- ;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4468
-
4469
- (rule 1 (lower (vany_true val))
4470
- (if-let $true (use_sse41))
4471
- (let ((val Xmm val))
4472
- (with_flags (x64_ptest val val) (x64_setcc (CC.NZ)))))
4473
-
4474
- ;; Any nonzero byte in `val` means that any lane is true. Compare `val` with a
4475
- ;; zeroed register and extract the high bits to a gpr mask. If the mask is
4476
- ;; 0xffff then every byte was equal to zero, so test if the comparison is
4477
- ;; not-equal or NZ.
4478
- (rule (lower (vany_true val))
4479
- (let (
4480
- (any_byte_zero Xmm (x64_pcmpeqb val (xmm_zero $I8X16)))
4481
- (mask Gpr (x64_pmovmskb (OperandSize.Size32) any_byte_zero))
4482
- )
4483
- (with_flags (x64_cmp (OperandSize.Size32) (RegMemImm.Imm 0xffff) mask)
4484
- (x64_setcc (CC.NZ)))))
4485
-
4486
- ;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4487
-
4488
- (rule 1 (lower (vall_true val @ (value_type ty)))
4489
- (if-let $true (use_sse41))
4490
- (let ((src Xmm val)
4491
- (zeros Xmm (xmm_zero ty))
4492
- (cmp Xmm (x64_pcmpeq (vec_int_type ty) src zeros)))
4493
- (with_flags (x64_ptest cmp cmp) (x64_setcc (CC.Z)))))
4494
-
4495
- ;; Perform an appropriately-sized lane-wise comparison with zero. If the
4496
- ;; result is all 0s then all of them are true because nothing was equal to
4497
- ;; zero.
4498
- (rule (lower (vall_true val @ (value_type ty)))
4499
- (let ((lanes_with_zero Xmm (x64_pcmpeq (vec_int_type ty) val (xmm_zero ty)))
4500
- (mask Gpr (x64_pmovmskb (OperandSize.Size32) lanes_with_zero)))
4501
- (with_flags (x64_test (OperandSize.Size32) mask mask)
4502
- (x64_setcc (CC.Z)))))
4503
-
4504
- ;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4505
-
4506
- ;; The Intel specification allows using both 32-bit and 64-bit GPRs as
4507
- ;; destination for the "move mask" instructions. This is controlled by the REX.R
4508
- ;; bit: "In 64-bit mode, the instruction can access additional registers when
4509
- ;; used with a REX.R prefix. The default operand size is 64-bit in 64-bit mode"
4510
- ;; (PMOVMSKB in IA Software Development Manual, vol. 2). This being the case, we
4511
- ;; will always clear REX.W since its use is unnecessary (`OperandSize` is used
4512
- ;; for setting/clearing REX.W) as we need at most 16 bits of output for
4513
- ;; `vhigh_bits`.
4514
-
4515
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 8 16))))
4516
- (x64_pmovmskb (OperandSize.Size32) val))
4517
-
4518
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 32 4))))
4519
- (x64_movmskps (OperandSize.Size32) val))
4520
-
4521
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 64 2))))
4522
- (x64_movmskpd (OperandSize.Size32) val))
4523
-
4524
- ;; There is no x86 instruction for extracting the high bit of 16-bit lanes so
4525
- ;; here we:
4526
- ;; - duplicate the 16-bit lanes of `src` into 8-bit lanes:
4527
- ;; PACKSSWB([x1, x2, ...], [x1, x2, ...]) = [x1', x2', ..., x1', x2', ...]
4528
- ;; - use PMOVMSKB to gather the high bits; now we have duplicates, though
4529
- ;; - shift away the bottom 8 high bits to remove the duplicates.
4530
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 16 8))))
4531
- (let ((src Xmm val)
4532
- (tmp Xmm (x64_packsswb src src))
4533
- (tmp Gpr (x64_pmovmskb (OperandSize.Size32) tmp)))
4534
- (x64_shr $I64 tmp (Imm8Reg.Imm8 8))))
4535
-
4536
- ;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4537
-
4538
- (rule (lower (iconcat lo @ (value_type $I64) hi))
4539
- (value_regs lo hi))
4540
-
4541
- ;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4542
-
4543
- (rule (lower (isplit val @ (value_type $I128)))
4544
- (let ((regs ValueRegs val)
4545
- (lo Reg (value_regs_get regs 0))
4546
- (hi Reg (value_regs_get regs 1)))
4547
- (output_pair lo hi)))
4548
-
4549
- ;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4550
-
4551
- (rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
4552
- (elf_tls_get_addr name))
4553
-
4554
- (rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
4555
- (macho_tls_get_addr name))
4556
-
4557
- (rule (lower (has_type (tls_model (TlsModel.Coff)) (tls_value (symbol_value_data name _ _))))
4558
- (coff_tls_get_addr name))
4559
-
4560
- ;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4561
-
4562
- (rule 1 (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
4563
- (if-let $true (use_ssse3))
4564
- (let ((src1 Xmm qx)
4565
- (src2 Xmm qy)
4566
-
4567
- (mask XmmMem (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000))
4568
- (dst Xmm (x64_pmulhrsw src1 src2))
4569
- (cmp Xmm (x64_pcmpeqw dst mask)))
4570
- (x64_pxor dst cmp)))
4571
-
4572
- ;; This operation is defined in wasm as:
4573
- ;;
4574
- ;; S.SignedSaturate((x * y + 0x4000) >> 15)
4575
- ;;
4576
- ;; so perform all those operations here manually with a lack of the native
4577
- ;; instruction.
4578
- (rule (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
4579
- (let (
4580
- (qx Xmm qx)
4581
- (qy Xmm qy)
4582
- ;; Multiply `qx` and `qy` generating 32-bit intermediate results. The
4583
- ;; 32-bit results have their low-halves stored in `mul_lsb` and the
4584
- ;; high halves are stored in `mul_msb`. These are then shuffled into
4585
- ;; `mul_lo` and `mul_hi` which represent the low 4 multiplications
4586
- ;; and the upper 4 multiplications.
4587
- (mul_lsb Xmm (x64_pmullw qx qy))
4588
- (mul_msb Xmm (x64_pmulhw qx qy))
4589
- (mul_lo Xmm (x64_punpcklwd mul_lsb mul_msb))
4590
- (mul_hi Xmm (x64_punpckhwd mul_lsb mul_msb))
4591
- ;; Add the 0x4000 constant to all multiplications
4592
- (val Xmm (x64_movdqu_load (emit_u128_le_const 0x00004000_00004000_00004000_00004000)))
4593
- (mul_lo Xmm (x64_paddd mul_lo val))
4594
- (mul_hi Xmm (x64_paddd mul_hi val))
4595
- ;; Perform the right-shift by 15 to all multiplications
4596
- (lo Xmm (x64_psrad mul_lo (xmi_imm 15)))
4597
- (hi Xmm (x64_psrad mul_hi (xmi_imm 15)))
4598
- )
4599
- ;; And finally perform a saturating 32-to-16-bit conversion.
4600
- (x64_packssdw lo hi)))
4601
-
4602
- ;; Rules for `x86_pmulhrsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4603
-
4604
- (rule (lower (x86_pmulhrsw qx @ (value_type $I16X8) qy))
4605
- (if-let $true (use_ssse3))
4606
- (x64_pmulhrsw qx qy))
4607
-
4608
- ;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4609
-
4610
- ;; TODO: currently we only lower a special case of `uunarrow` needed to support
4611
- ;; the translation of wasm's i32x4.trunc_sat_f64x2_u_zero operation.
4612
- ;; https://github.com/bytecodealliance/wasmtime/issues/4791
4613
- ;;
4614
- ;; y = i32x4.trunc_sat_f64x2_u_zero(x) is lowered to:
4615
- ;; MOVAPD xmm_y, xmm_x
4616
- ;; XORPD xmm_tmp, xmm_tmp
4617
- ;; MAXPD xmm_y, xmm_tmp
4618
- ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4619
- ;; ROUNDPD xmm_y, xmm_y, 0x0B
4620
- ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4621
- ;; SHUFPS xmm_y, xmm_xmp, 0x88
4622
- (rule (lower (uunarrow (fcvt_to_uint_sat src @ (value_type $F64X2))
4623
- (vconst (u128_from_constant 0))))
4624
- (let ((src Xmm src)
4625
-
4626
- ;; MOVAPD xmm_y, xmm_x
4627
- ;; XORPD xmm_tmp, xmm_tmp
4628
- (zeros Xmm (xmm_zero $F64X2))
4629
- (dst Xmm (x64_maxpd src zeros))
4630
-
4631
- ;; 4294967295.0 is equivalent to 0x41EFFFFFFFE00000
4632
- (umax_mask XmmMem (emit_u128_le_const 0x41EFFFFFFFE00000_41EFFFFFFFE00000))
4633
-
4634
- ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4635
- (dst Xmm (x64_minpd dst umax_mask))
4636
-
4637
- ;; ROUNDPD xmm_y, xmm_y, 0x0B
4638
- (dst Xmm (x64_round $F64X2 dst (RoundImm.RoundZero)))
4639
-
4640
- ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4641
- (uint_mask XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000))
4642
-
4643
- (dst Xmm (x64_addpd dst uint_mask)))
4644
-
4645
- ;; SHUFPS xmm_y, xmm_xmp, 0x88
4646
- (x64_shufps dst zeros 0x88)))
4647
-
4648
- ;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4649
-
4650
- (rule (lower (nop))
4651
- (invalid_reg))