wasmtime 19.0.2 → 20.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2232) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +116 -120
  3. data/ext/Cargo.toml +6 -6
  4. data/ext/cargo-vendor/anyhow-1.0.83/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/anyhow-1.0.83/Cargo.toml +130 -0
  6. data/ext/cargo-vendor/anyhow-1.0.83/README.md +181 -0
  7. data/ext/cargo-vendor/anyhow-1.0.83/build.rs +179 -0
  8. data/ext/cargo-vendor/anyhow-1.0.83/src/backtrace.rs +406 -0
  9. data/ext/cargo-vendor/anyhow-1.0.83/src/chain.rs +102 -0
  10. data/ext/cargo-vendor/anyhow-1.0.83/src/fmt.rs +158 -0
  11. data/ext/cargo-vendor/anyhow-1.0.83/src/kind.rs +121 -0
  12. data/ext/cargo-vendor/anyhow-1.0.83/src/lib.rs +702 -0
  13. data/ext/cargo-vendor/anyhow-1.0.83/src/macros.rs +241 -0
  14. data/ext/cargo-vendor/anyhow-1.0.83/src/wrapper.rs +84 -0
  15. data/ext/cargo-vendor/anyhow-1.0.83/tests/test_ensure.rs +724 -0
  16. data/ext/cargo-vendor/anyhow-1.0.83/tests/test_macros.rs +81 -0
  17. data/ext/cargo-vendor/anyhow-1.0.83/tests/test_repr.rs +30 -0
  18. data/ext/cargo-vendor/anyhow-1.0.83/tests/ui/no-impl.stderr +32 -0
  19. data/ext/cargo-vendor/cranelift-bforest-0.107.2/.cargo-checksum.json +1 -0
  20. data/ext/cargo-vendor/cranelift-bforest-0.107.2/Cargo.toml +40 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.107.2/.cargo-checksum.json +1 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.107.2/Cargo.toml +178 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.107.2/build.rs +396 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/alias_analysis.rs +403 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/binemit/mod.rs +171 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/bitset.rs +187 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/context.rs +386 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph/elaborate.rs +835 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/egraph.rs +838 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/inst_predicates.rs +236 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/constant.rs +462 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/dfg.rs +1777 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/entities.rs +562 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/function.rs +490 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/instructions.rs +1019 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/memflags.rs +452 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/mod.rs +108 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/trapcode.rs +149 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/ir/types.rs +629 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/abi.rs +1707 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/emit.rs +3932 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst/mod.rs +3083 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/inst.isle +4218 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower/isle.rs +884 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/lower.isle +2933 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/mod.rs +242 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/aarch64/pcc.rs +565 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/call_conv.rs +127 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/abi.rs +1109 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/args.rs +1968 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/emit.rs +3466 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst/encode.rs +654 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/inst.isle +2944 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower/isle.rs +625 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/riscv64/lower.isle +2872 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/abi.rs +1047 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/args.rs +347 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst/emit.rs +3646 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/inst.isle +5033 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/s390x/lower.isle +3995 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/abi.rs +1369 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/evex.rs +748 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/rex.rs +596 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/encoding/vex.rs +491 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/args.rs +2289 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit.rs +4383 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/emit_state.rs +74 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst/mod.rs +2798 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/inst.isle +5304 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower/isle.rs +1066 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.isle +4809 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/lower.rs +339 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/mod.rs +234 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/isa/x64/pcc.rs +1003 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/legalizer/mod.rs +348 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/abi.rs +2594 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/buffer.rs +2512 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/inst_common.rs +75 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/isle.rs +914 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/lower.rs +1452 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/mod.rs +555 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/pcc.rs +169 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/machinst/vcode.rs +1807 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/nan_canonicalization.rs +110 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/cprop.isle +281 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts/spectre.isle +14 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/opts.rs +295 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/prelude.isle +646 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/result.rs +111 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/settings.rs +591 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/verifier/mod.rs +1957 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.107.2/src/write.rs +631 -0
  93. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/.cargo-checksum.json +1 -0
  94. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/Cargo.toml +35 -0
  95. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/entities.rs +101 -0
  96. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/formats.rs +205 -0
  97. data/ext/cargo-vendor/cranelift-codegen-meta-0.107.2/src/shared/instructions.rs +3791 -0
  98. data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/.cargo-checksum.json +1 -0
  99. data/ext/cargo-vendor/cranelift-codegen-shared-0.107.2/Cargo.toml +22 -0
  100. data/ext/cargo-vendor/cranelift-control-0.107.2/.cargo-checksum.json +1 -0
  101. data/ext/cargo-vendor/cranelift-control-0.107.2/Cargo.toml +30 -0
  102. data/ext/cargo-vendor/cranelift-entity-0.107.2/.cargo-checksum.json +1 -0
  103. data/ext/cargo-vendor/cranelift-entity-0.107.2/Cargo.toml +50 -0
  104. data/ext/cargo-vendor/cranelift-frontend-0.107.2/.cargo-checksum.json +1 -0
  105. data/ext/cargo-vendor/cranelift-frontend-0.107.2/Cargo.toml +69 -0
  106. data/ext/cargo-vendor/cranelift-isle-0.107.2/.cargo-checksum.json +1 -0
  107. data/ext/cargo-vendor/cranelift-isle-0.107.2/Cargo.toml +46 -0
  108. data/ext/cargo-vendor/cranelift-native-0.107.2/.cargo-checksum.json +1 -0
  109. data/ext/cargo-vendor/cranelift-native-0.107.2/Cargo.toml +45 -0
  110. data/ext/cargo-vendor/cranelift-wasm-0.107.2/.cargo-checksum.json +1 -0
  111. data/ext/cargo-vendor/cranelift-wasm-0.107.2/Cargo.toml +107 -0
  112. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/code_translator.rs +3683 -0
  113. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/dummy.rs +912 -0
  114. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/mod.rs +8 -0
  115. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/environ/spec.rs +945 -0
  116. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/func_translator.rs +296 -0
  117. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/lib.rs +58 -0
  118. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/state.rs +522 -0
  119. data/ext/cargo-vendor/cranelift-wasm-0.107.2/src/table.rs +104 -0
  120. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/.cargo-checksum.json +1 -0
  121. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.21/Cargo.toml +48 -0
  122. data/ext/cargo-vendor/mach2-0.4.2/.cargo-checksum.json +1 -0
  123. data/ext/cargo-vendor/mach2-0.4.2/Cargo.toml +49 -0
  124. data/ext/cargo-vendor/mach2-0.4.2/LICENSE-APACHE +176 -0
  125. data/ext/cargo-vendor/mach2-0.4.2/LICENSE-BSD +23 -0
  126. data/ext/cargo-vendor/mach2-0.4.2/LICENSE-MIT +25 -0
  127. data/ext/cargo-vendor/mach2-0.4.2/README.md +116 -0
  128. data/ext/cargo-vendor/mach2-0.4.2/src/exc.rs +73 -0
  129. data/ext/cargo-vendor/mach2-0.4.2/src/kern_return.rs +59 -0
  130. data/ext/cargo-vendor/mach2-0.4.2/src/lib.rs +59 -0
  131. data/ext/cargo-vendor/mach2-0.4.2/src/mach_port.rs +50 -0
  132. data/ext/cargo-vendor/mach2-0.4.2/src/message.rs +345 -0
  133. data/ext/cargo-vendor/mach2-0.4.2/src/ndr.rs +19 -0
  134. data/ext/cargo-vendor/mach2-0.4.2/src/port.rs +67 -0
  135. data/ext/cargo-vendor/mach2-0.4.2/src/semaphore.rs +22 -0
  136. data/ext/cargo-vendor/mach2-0.4.2/src/structs.rs +66 -0
  137. data/ext/cargo-vendor/mach2-0.4.2/src/sync_policy.rs +9 -0
  138. data/ext/cargo-vendor/mach2-0.4.2/src/task.rs +46 -0
  139. data/ext/cargo-vendor/mach2-0.4.2/src/task_info.rs +49 -0
  140. data/ext/cargo-vendor/mach2-0.4.2/src/thread_act.rs +36 -0
  141. data/ext/cargo-vendor/mach2-0.4.2/src/thread_policy.rs +121 -0
  142. data/ext/cargo-vendor/mach2-0.4.2/src/thread_status.rs +53 -0
  143. data/ext/cargo-vendor/mach2-0.4.2/src/traps.rs +37 -0
  144. data/ext/cargo-vendor/mach2-0.4.2/src/vm.rs +248 -0
  145. data/ext/cargo-vendor/mach2-0.4.2/src/vm_attributes.rs +18 -0
  146. data/ext/cargo-vendor/mach2-0.4.2/src/vm_page_size.rs +40 -0
  147. data/ext/cargo-vendor/mach2-0.4.2/src/vm_prot.rs +13 -0
  148. data/ext/cargo-vendor/mach2-0.4.2/src/vm_purgable.rs +42 -0
  149. data/ext/cargo-vendor/mach2-0.4.2/src/vm_region.rs +238 -0
  150. data/ext/cargo-vendor/mach2-0.4.2/src/vm_statistics.rs +58 -0
  151. data/ext/cargo-vendor/mach2-0.4.2/src/vm_sync.rs +11 -0
  152. data/ext/cargo-vendor/mach2-0.4.2/src/vm_types.rs +19 -0
  153. data/ext/cargo-vendor/object-0.33.0/.cargo-checksum.json +1 -0
  154. data/ext/cargo-vendor/object-0.33.0/CHANGELOG.md +797 -0
  155. data/ext/cargo-vendor/object-0.33.0/Cargo.toml +179 -0
  156. data/ext/cargo-vendor/object-0.33.0/LICENSE-APACHE +201 -0
  157. data/ext/cargo-vendor/object-0.33.0/LICENSE-MIT +25 -0
  158. data/ext/cargo-vendor/object-0.33.0/README.md +56 -0
  159. data/ext/cargo-vendor/object-0.33.0/src/archive.rs +91 -0
  160. data/ext/cargo-vendor/object-0.33.0/src/build/bytes.rs +141 -0
  161. data/ext/cargo-vendor/object-0.33.0/src/build/elf.rs +3033 -0
  162. data/ext/cargo-vendor/object-0.33.0/src/build/error.rs +41 -0
  163. data/ext/cargo-vendor/object-0.33.0/src/build/mod.rs +18 -0
  164. data/ext/cargo-vendor/object-0.33.0/src/build/table.rs +128 -0
  165. data/ext/cargo-vendor/object-0.33.0/src/common.rs +568 -0
  166. data/ext/cargo-vendor/object-0.33.0/src/elf.rs +6291 -0
  167. data/ext/cargo-vendor/object-0.33.0/src/endian.rs +831 -0
  168. data/ext/cargo-vendor/object-0.33.0/src/lib.rs +107 -0
  169. data/ext/cargo-vendor/object-0.33.0/src/macho.rs +3309 -0
  170. data/ext/cargo-vendor/object-0.33.0/src/pe.rs +3056 -0
  171. data/ext/cargo-vendor/object-0.33.0/src/pod.rs +239 -0
  172. data/ext/cargo-vendor/object-0.33.0/src/read/any.rs +1328 -0
  173. data/ext/cargo-vendor/object-0.33.0/src/read/archive.rs +759 -0
  174. data/ext/cargo-vendor/object-0.33.0/src/read/coff/comdat.rs +211 -0
  175. data/ext/cargo-vendor/object-0.33.0/src/read/coff/file.rs +383 -0
  176. data/ext/cargo-vendor/object-0.33.0/src/read/coff/import.rs +223 -0
  177. data/ext/cargo-vendor/object-0.33.0/src/read/coff/mod.rs +66 -0
  178. data/ext/cargo-vendor/object-0.33.0/src/read/coff/relocation.rs +108 -0
  179. data/ext/cargo-vendor/object-0.33.0/src/read/coff/section.rs +585 -0
  180. data/ext/cargo-vendor/object-0.33.0/src/read/coff/symbol.rs +635 -0
  181. data/ext/cargo-vendor/object-0.33.0/src/read/elf/attributes.rs +306 -0
  182. data/ext/cargo-vendor/object-0.33.0/src/read/elf/comdat.rs +162 -0
  183. data/ext/cargo-vendor/object-0.33.0/src/read/elf/compression.rs +56 -0
  184. data/ext/cargo-vendor/object-0.33.0/src/read/elf/dynamic.rs +117 -0
  185. data/ext/cargo-vendor/object-0.33.0/src/read/elf/file.rs +918 -0
  186. data/ext/cargo-vendor/object-0.33.0/src/read/elf/hash.rs +224 -0
  187. data/ext/cargo-vendor/object-0.33.0/src/read/elf/mod.rs +78 -0
  188. data/ext/cargo-vendor/object-0.33.0/src/read/elf/note.rs +271 -0
  189. data/ext/cargo-vendor/object-0.33.0/src/read/elf/relocation.rs +629 -0
  190. data/ext/cargo-vendor/object-0.33.0/src/read/elf/section.rs +1150 -0
  191. data/ext/cargo-vendor/object-0.33.0/src/read/elf/segment.rs +356 -0
  192. data/ext/cargo-vendor/object-0.33.0/src/read/elf/symbol.rs +595 -0
  193. data/ext/cargo-vendor/object-0.33.0/src/read/elf/version.rs +424 -0
  194. data/ext/cargo-vendor/object-0.33.0/src/read/macho/dyld_cache.rs +345 -0
  195. data/ext/cargo-vendor/object-0.33.0/src/read/macho/fat.rs +140 -0
  196. data/ext/cargo-vendor/object-0.33.0/src/read/macho/file.rs +783 -0
  197. data/ext/cargo-vendor/object-0.33.0/src/read/macho/load_command.rs +386 -0
  198. data/ext/cargo-vendor/object-0.33.0/src/read/macho/mod.rs +72 -0
  199. data/ext/cargo-vendor/object-0.33.0/src/read/macho/relocation.rs +149 -0
  200. data/ext/cargo-vendor/object-0.33.0/src/read/macho/section.rs +389 -0
  201. data/ext/cargo-vendor/object-0.33.0/src/read/macho/segment.rs +303 -0
  202. data/ext/cargo-vendor/object-0.33.0/src/read/macho/symbol.rs +492 -0
  203. data/ext/cargo-vendor/object-0.33.0/src/read/mod.rs +880 -0
  204. data/ext/cargo-vendor/object-0.33.0/src/read/pe/data_directory.rs +214 -0
  205. data/ext/cargo-vendor/object-0.33.0/src/read/pe/export.rs +334 -0
  206. data/ext/cargo-vendor/object-0.33.0/src/read/pe/file.rs +1053 -0
  207. data/ext/cargo-vendor/object-0.33.0/src/read/pe/import.rs +339 -0
  208. data/ext/cargo-vendor/object-0.33.0/src/read/pe/mod.rs +68 -0
  209. data/ext/cargo-vendor/object-0.33.0/src/read/pe/relocation.rs +92 -0
  210. data/ext/cargo-vendor/object-0.33.0/src/read/pe/resource.rs +210 -0
  211. data/ext/cargo-vendor/object-0.33.0/src/read/pe/rich.rs +92 -0
  212. data/ext/cargo-vendor/object-0.33.0/src/read/pe/section.rs +440 -0
  213. data/ext/cargo-vendor/object-0.33.0/src/read/read_cache.rs +213 -0
  214. data/ext/cargo-vendor/object-0.33.0/src/read/read_ref.rs +149 -0
  215. data/ext/cargo-vendor/object-0.33.0/src/read/traits.rs +551 -0
  216. data/ext/cargo-vendor/object-0.33.0/src/read/util.rs +425 -0
  217. data/ext/cargo-vendor/object-0.33.0/src/read/wasm.rs +966 -0
  218. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/comdat.rs +134 -0
  219. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/file.rs +697 -0
  220. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/mod.rs +63 -0
  221. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/relocation.rs +134 -0
  222. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/section.rs +433 -0
  223. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/segment.rs +117 -0
  224. data/ext/cargo-vendor/object-0.33.0/src/read/xcoff/symbol.rs +784 -0
  225. data/ext/cargo-vendor/object-0.33.0/src/write/coff/mod.rs +10 -0
  226. data/ext/cargo-vendor/object-0.33.0/src/write/coff/object.rs +678 -0
  227. data/ext/cargo-vendor/object-0.33.0/src/write/coff/writer.rs +518 -0
  228. data/ext/cargo-vendor/object-0.33.0/src/write/elf/mod.rs +9 -0
  229. data/ext/cargo-vendor/object-0.33.0/src/write/elf/object.rs +885 -0
  230. data/ext/cargo-vendor/object-0.33.0/src/write/elf/writer.rs +2309 -0
  231. data/ext/cargo-vendor/object-0.33.0/src/write/macho.rs +1107 -0
  232. data/ext/cargo-vendor/object-0.33.0/src/write/mod.rs +990 -0
  233. data/ext/cargo-vendor/object-0.33.0/src/write/pe.rs +847 -0
  234. data/ext/cargo-vendor/object-0.33.0/src/write/string.rs +186 -0
  235. data/ext/cargo-vendor/object-0.33.0/src/write/util.rs +261 -0
  236. data/ext/cargo-vendor/object-0.33.0/src/write/xcoff.rs +589 -0
  237. data/ext/cargo-vendor/object-0.33.0/src/xcoff.rs +905 -0
  238. data/ext/cargo-vendor/object-0.33.0/tests/integration.rs +2 -0
  239. data/ext/cargo-vendor/object-0.33.0/tests/parse_self.rs +25 -0
  240. data/ext/cargo-vendor/object-0.33.0/tests/read/coff.rs +23 -0
  241. data/ext/cargo-vendor/object-0.33.0/tests/read/elf.rs +47 -0
  242. data/ext/cargo-vendor/object-0.33.0/tests/read/mod.rs +4 -0
  243. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/bss.rs +255 -0
  244. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/coff.rs +58 -0
  245. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/comdat.rs +225 -0
  246. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/common.rs +245 -0
  247. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/elf.rs +289 -0
  248. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/macho.rs +64 -0
  249. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/mod.rs +704 -0
  250. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/section_flags.rs +90 -0
  251. data/ext/cargo-vendor/object-0.33.0/tests/round_trip/tls.rs +316 -0
  252. data/ext/cargo-vendor/wasi-common-20.0.0/.cargo-checksum.json +1 -0
  253. data/ext/cargo-vendor/wasi-common-20.0.0/Cargo.toml +220 -0
  254. data/ext/cargo-vendor/wasi-common-20.0.0/src/ctx.rs +128 -0
  255. data/ext/cargo-vendor/wasi-common-20.0.0/src/lib.rs +193 -0
  256. data/ext/cargo-vendor/wasi-common-20.0.0/src/snapshots/preview_1.rs +1497 -0
  257. data/ext/cargo-vendor/wasi-common-20.0.0/tests/all/async_.rs +293 -0
  258. data/ext/cargo-vendor/wasi-common-20.0.0/tests/all/sync.rs +279 -0
  259. data/ext/cargo-vendor/wasm-encoder-0.202.0/.cargo-checksum.json +1 -0
  260. data/ext/cargo-vendor/wasm-encoder-0.202.0/Cargo.toml +43 -0
  261. data/ext/cargo-vendor/wasm-encoder-0.202.0/src/component/types.rs +792 -0
  262. data/ext/cargo-vendor/wasm-encoder-0.208.1/.cargo-checksum.json +1 -0
  263. data/ext/cargo-vendor/wasm-encoder-0.208.1/Cargo.toml +46 -0
  264. data/ext/cargo-vendor/wasm-encoder-0.208.1/README.md +80 -0
  265. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/aliases.rs +160 -0
  266. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/builder.rs +455 -0
  267. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/canonicals.rs +159 -0
  268. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/components.rs +29 -0
  269. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/exports.rs +124 -0
  270. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/imports.rs +175 -0
  271. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/instances.rs +200 -0
  272. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/modules.rs +29 -0
  273. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/names.rs +149 -0
  274. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/start.rs +52 -0
  275. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component/types.rs +792 -0
  276. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/component.rs +168 -0
  277. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/code.rs +3595 -0
  278. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/custom.rs +73 -0
  279. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/data.rs +186 -0
  280. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/dump.rs +627 -0
  281. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/elements.rs +221 -0
  282. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/exports.rs +98 -0
  283. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/functions.rs +63 -0
  284. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/globals.rs +112 -0
  285. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/imports.rs +157 -0
  286. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/linking.rs +263 -0
  287. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/memories.rs +128 -0
  288. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/names.rs +298 -0
  289. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/producers.rs +181 -0
  290. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/start.rs +39 -0
  291. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/tables.rs +134 -0
  292. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/tags.rs +104 -0
  293. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core/types.rs +678 -0
  294. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/core.rs +168 -0
  295. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/lib.rs +215 -0
  296. data/ext/cargo-vendor/wasm-encoder-0.208.1/src/raw.rs +30 -0
  297. data/ext/cargo-vendor/wasmparser-0.202.0/.cargo-checksum.json +1 -0
  298. data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.lock +744 -0
  299. data/ext/cargo-vendor/wasmparser-0.202.0/Cargo.toml +66 -0
  300. data/ext/cargo-vendor/wasmparser-0.202.0/src/readers/component/types.rs +549 -0
  301. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/operators.rs +4076 -0
  302. data/ext/cargo-vendor/wasmparser-0.202.0/src/validator/types.rs +4449 -0
  303. data/ext/cargo-vendor/wasmprinter-0.202.0/.cargo-checksum.json +1 -0
  304. data/ext/cargo-vendor/wasmprinter-0.202.0/Cargo.toml +45 -0
  305. data/ext/cargo-vendor/wasmprinter-0.202.0/src/lib.rs +3202 -0
  306. data/ext/cargo-vendor/wasmprinter-0.202.0/src/operator.rs +1131 -0
  307. data/ext/cargo-vendor/wasmprinter-0.202.0/tests/all.rs +279 -0
  308. data/ext/cargo-vendor/wasmtime-20.0.0/.cargo-checksum.json +1 -0
  309. data/ext/cargo-vendor/wasmtime-20.0.0/Cargo.toml +268 -0
  310. data/ext/cargo-vendor/wasmtime-20.0.0/src/compile/code_builder.rs +201 -0
  311. data/ext/cargo-vendor/wasmtime-20.0.0/src/compile/runtime.rs +175 -0
  312. data/ext/cargo-vendor/wasmtime-20.0.0/src/compile.rs +897 -0
  313. data/ext/cargo-vendor/wasmtime-20.0.0/src/config.rs +2695 -0
  314. data/ext/cargo-vendor/wasmtime-20.0.0/src/engine/serialization.rs +849 -0
  315. data/ext/cargo-vendor/wasmtime-20.0.0/src/engine.rs +741 -0
  316. data/ext/cargo-vendor/wasmtime-20.0.0/src/lib.rs +303 -0
  317. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/code_memory.rs +335 -0
  318. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/component.rs +661 -0
  319. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/func/host.rs +439 -0
  320. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/func/options.rs +554 -0
  321. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/func/typed.rs +2484 -0
  322. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/func.rs +747 -0
  323. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/instance.rs +804 -0
  324. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/linker.rs +786 -0
  325. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/matching.rs +217 -0
  326. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/mod.rs +756 -0
  327. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/resources.rs +1133 -0
  328. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/types.rs +892 -0
  329. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/component/values.rs +978 -0
  330. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/coredump.rs +336 -0
  331. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/externals/global.rs +300 -0
  332. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/externals/table.rs +480 -0
  333. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/func/typed.rs +898 -0
  334. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/func.rs +2633 -0
  335. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/disabled/anyref.rs +46 -0
  336. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/disabled/externref.rs +50 -0
  337. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/disabled/i31.rs +14 -0
  338. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/disabled/rooting.rs +222 -0
  339. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/disabled.rs +17 -0
  340. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/enabled/anyref.rs +472 -0
  341. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/enabled/externref.rs +644 -0
  342. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/enabled/i31.rs +345 -0
  343. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/enabled/rooting.rs +1543 -0
  344. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc/enabled.rs +12 -0
  345. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/gc.rs +87 -0
  346. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/instance.rs +992 -0
  347. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/instantiate.rs +345 -0
  348. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/linker.rs +1521 -0
  349. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/memory.rs +999 -0
  350. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/module/registry.rs +354 -0
  351. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/module.rs +1295 -0
  352. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/profiling.rs +224 -0
  353. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/store/data.rs +289 -0
  354. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/store.rs +2796 -0
  355. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/trampoline/func.rs +138 -0
  356. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/trampoline/global.rs +68 -0
  357. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/trampoline/memory.rs +286 -0
  358. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/trampoline/table.rs +34 -0
  359. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/trap.rs +641 -0
  360. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/type_registry.rs +632 -0
  361. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/types/matching.rs +367 -0
  362. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/types.rs +1378 -0
  363. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/v128.rs +131 -0
  364. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime/values.rs +945 -0
  365. data/ext/cargo-vendor/wasmtime-20.0.0/src/runtime.rs +112 -0
  366. data/ext/cargo-vendor/wasmtime-asm-macros-20.0.0/.cargo-checksum.json +1 -0
  367. data/ext/cargo-vendor/wasmtime-asm-macros-20.0.0/Cargo.toml +22 -0
  368. data/ext/cargo-vendor/wasmtime-cache-20.0.0/.cargo-checksum.json +1 -0
  369. data/ext/cargo-vendor/wasmtime-cache-20.0.0/Cargo.toml +81 -0
  370. data/ext/cargo-vendor/wasmtime-component-macro-20.0.0/.cargo-checksum.json +1 -0
  371. data/ext/cargo-vendor/wasmtime-component-macro-20.0.0/Cargo.toml +67 -0
  372. data/ext/cargo-vendor/wasmtime-component-macro-20.0.0/src/component.rs +1295 -0
  373. data/ext/cargo-vendor/wasmtime-component-macro-20.0.0/tests/codegen/dead-code.wit +27 -0
  374. data/ext/cargo-vendor/wasmtime-component-macro-20.0.0/tests/codegen.rs +342 -0
  375. data/ext/cargo-vendor/wasmtime-component-util-20.0.0/.cargo-checksum.json +1 -0
  376. data/ext/cargo-vendor/wasmtime-component-util-20.0.0/Cargo.toml +25 -0
  377. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/.cargo-checksum.json +1 -0
  378. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/Cargo.toml +114 -0
  379. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/builder.rs +127 -0
  380. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/compiled_function.rs +225 -0
  381. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/compiler/component.rs +962 -0
  382. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/compiler.rs +1369 -0
  383. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/debug/transform/address_transform.rs +783 -0
  384. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/debug/transform/expression.rs +1252 -0
  385. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/func_environ.rs +2672 -0
  386. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/gc/disabled.rs +116 -0
  387. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/gc/enabled.rs +649 -0
  388. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/gc.rs +198 -0
  389. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/lib.rs +505 -0
  390. data/ext/cargo-vendor/wasmtime-cranelift-20.0.0/src/obj.rs +545 -0
  391. data/ext/cargo-vendor/wasmtime-environ-20.0.0/.cargo-checksum.json +1 -0
  392. data/ext/cargo-vendor/wasmtime-environ-20.0.0/Cargo.lock +782 -0
  393. data/ext/cargo-vendor/wasmtime-environ-20.0.0/Cargo.toml +144 -0
  394. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/address_map.rs +125 -0
  395. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/builtin.rs +184 -0
  396. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/compile/address_map.rs +72 -0
  397. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/compile/mod.rs +389 -0
  398. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/compile/module_artifacts.rs +300 -0
  399. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/compile/trap_encoding.rs +69 -0
  400. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/component/artifacts.rs +72 -0
  401. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/component/compiler.rs +19 -0
  402. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/component/info.rs +672 -0
  403. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/component/translate/adapt.rs +459 -0
  404. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/component/translate/inline.rs +1332 -0
  405. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/component/types.rs +1972 -0
  406. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/component.rs +103 -0
  407. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/fact/trampoline.rs +3233 -0
  408. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/fact/transcode.rs +89 -0
  409. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/fact.rs +711 -0
  410. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/gc.rs +60 -0
  411. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/lib.rs +70 -0
  412. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/module.rs +780 -0
  413. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/module_artifacts.rs +145 -0
  414. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/module_environ.rs +1288 -0
  415. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/obj.rs +173 -0
  416. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/trap_encoding.rs +188 -0
  417. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/tunables.rs +158 -0
  418. data/ext/cargo-vendor/wasmtime-environ-20.0.0/src/vmoffsets.rs +952 -0
  419. data/ext/cargo-vendor/wasmtime-fiber-20.0.0/.cargo-checksum.json +1 -0
  420. data/ext/cargo-vendor/wasmtime-fiber-20.0.0/Cargo.toml +63 -0
  421. data/ext/cargo-vendor/wasmtime-fiber-20.0.0/src/unix.rs +265 -0
  422. data/ext/cargo-vendor/wasmtime-jit-debug-20.0.0/.cargo-checksum.json +1 -0
  423. data/ext/cargo-vendor/wasmtime-jit-debug-20.0.0/Cargo.toml +67 -0
  424. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.0/.cargo-checksum.json +1 -0
  425. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-20.0.0/Cargo.toml +47 -0
  426. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/.cargo-checksum.json +1 -0
  427. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/Cargo.toml +147 -0
  428. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/build.rs +24 -0
  429. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/arch/aarch64.rs +76 -0
  430. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/arch/riscv64.rs +41 -0
  431. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/arch/s390x.S +70 -0
  432. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/arch/s390x.rs +34 -0
  433. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/arch/x86_64.rs +41 -0
  434. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/async_yield.rs +35 -0
  435. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/component/libcalls.rs +571 -0
  436. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/component.rs +860 -0
  437. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/export.rs +108 -0
  438. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/disabled.rs +23 -0
  439. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/enabled/drc.rs +963 -0
  440. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/enabled/externref.rs +115 -0
  441. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/enabled/free_list.rs +767 -0
  442. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/enabled.rs +18 -0
  443. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/gc_ref.rs +486 -0
  444. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/gc_runtime.rs +503 -0
  445. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/host_data.rs +81 -0
  446. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc/i31.rs +86 -0
  447. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/gc.rs +244 -0
  448. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/instance/allocator/on_demand.rs +217 -0
  449. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/instance/allocator/pooling/gc_heap_pool.rs +92 -0
  450. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/instance/allocator/pooling/table_pool.rs +231 -0
  451. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/instance/allocator/pooling.rs +699 -0
  452. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/instance/allocator.rs +780 -0
  453. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/instance.rs +1566 -0
  454. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/lib.rs +289 -0
  455. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/libcalls.rs +777 -0
  456. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/memory.rs +751 -0
  457. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/send_sync_ptr.rs +106 -0
  458. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/sys/custom/mmap.rs +111 -0
  459. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/sys/custom/traphandlers.rs +55 -0
  460. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/sys/miri/mmap.rs +94 -0
  461. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/sys/unix/machports.rs +416 -0
  462. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/sys/unix/mmap.rs +151 -0
  463. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/sys/unix/signals.rs +401 -0
  464. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/sys/windows/traphandlers.rs +104 -0
  465. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/table.rs +851 -0
  466. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/threads/mod.rs +12 -0
  467. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/threads/shared_memory.rs +230 -0
  468. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/threads/shared_memory_disabled.rs +100 -0
  469. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/traphandlers/coredump_disabled.rs +16 -0
  470. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/traphandlers/coredump_enabled.rs +40 -0
  471. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/traphandlers.rs +785 -0
  472. data/ext/cargo-vendor/wasmtime-runtime-20.0.0/src/vmcontext.rs +1293 -0
  473. data/ext/cargo-vendor/wasmtime-slab-20.0.0/.cargo-checksum.json +1 -0
  474. data/ext/cargo-vendor/wasmtime-slab-20.0.0/Cargo.toml +21 -0
  475. data/ext/cargo-vendor/wasmtime-slab-20.0.0/src/lib.rs +493 -0
  476. data/ext/cargo-vendor/wasmtime-types-20.0.2/.cargo-checksum.json +1 -0
  477. data/ext/cargo-vendor/wasmtime-types-20.0.2/Cargo.toml +36 -0
  478. data/ext/cargo-vendor/wasmtime-types-20.0.2/src/lib.rs +832 -0
  479. data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.0/.cargo-checksum.json +1 -0
  480. data/ext/cargo-vendor/wasmtime-versioned-export-macros-20.0.0/Cargo.toml +32 -0
  481. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/.cargo-checksum.json +1 -0
  482. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/Cargo.toml +194 -0
  483. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/bindings.rs +283 -0
  484. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/ctx.rs +659 -0
  485. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/filesystem.rs +433 -0
  486. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/host/filesystem/sync.rs +518 -0
  487. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/host/filesystem.rs +1079 -0
  488. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/host/io.rs +367 -0
  489. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/host/network.rs +539 -0
  490. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/host/tcp.rs +306 -0
  491. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/ip_name_lookup.rs +126 -0
  492. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/lib.rs +404 -0
  493. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/network.rs +107 -0
  494. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/pipe.rs +826 -0
  495. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/poll.rs +233 -0
  496. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/preview0.rs +879 -0
  497. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/preview1.rs +2601 -0
  498. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/runtime.rs +175 -0
  499. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/stdio/worker_thread_stdin.rs +177 -0
  500. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/stdio.rs +507 -0
  501. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/tcp.rs +847 -0
  502. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/udp.rs +125 -0
  503. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/src/write_stream.rs +203 -0
  504. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/tests/all/api.rs +194 -0
  505. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/tests/all/async_.rs +397 -0
  506. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/tests/all/main.rs +91 -0
  507. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/tests/all/preview1.rs +251 -0
  508. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/tests/all/sync.rs +333 -0
  509. data/ext/cargo-vendor/wasmtime-wasi-20.0.0/wit/deps/io/poll.wit +41 -0
  510. data/ext/cargo-vendor/wasmtime-winch-20.0.0/.cargo-checksum.json +1 -0
  511. data/ext/cargo-vendor/wasmtime-winch-20.0.0/Cargo.toml +81 -0
  512. data/ext/cargo-vendor/wasmtime-winch-20.0.0/src/builder.rs +85 -0
  513. data/ext/cargo-vendor/wasmtime-winch-20.0.0/src/compiler.rs +257 -0
  514. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.0/.cargo-checksum.json +1 -0
  515. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.0/Cargo.toml +41 -0
  516. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.0/src/lib.rs +2213 -0
  517. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.0/src/rust.rs +421 -0
  518. data/ext/cargo-vendor/wasmtime-wit-bindgen-20.0.0/src/types.rs +202 -0
  519. data/ext/cargo-vendor/wast-208.0.1/.cargo-checksum.json +1 -0
  520. data/ext/cargo-vendor/wast-208.0.1/Cargo.toml +60 -0
  521. data/ext/cargo-vendor/wast-208.0.1/src/component/binary.rs +1000 -0
  522. data/ext/cargo-vendor/wast-208.0.1/src/component/resolve.rs +1007 -0
  523. data/ext/cargo-vendor/wast-208.0.1/src/component/types.rs +999 -0
  524. data/ext/cargo-vendor/wast-208.0.1/src/component/wast.rs +160 -0
  525. data/ext/cargo-vendor/wast-208.0.1/src/core/binary.rs +1396 -0
  526. data/ext/cargo-vendor/wast-208.0.1/src/core/expr.rs +2016 -0
  527. data/ext/cargo-vendor/wast-208.0.1/src/core/func.rs +136 -0
  528. data/ext/cargo-vendor/wast-208.0.1/src/core/memory.rs +284 -0
  529. data/ext/cargo-vendor/wast-208.0.1/src/core/resolve/deinline_import_export.rs +235 -0
  530. data/ext/cargo-vendor/wast-208.0.1/src/core/resolve/names.rs +751 -0
  531. data/ext/cargo-vendor/wast-208.0.1/src/core/resolve/types.rs +267 -0
  532. data/ext/cargo-vendor/wast-208.0.1/src/core/table.rs +302 -0
  533. data/ext/cargo-vendor/wast-208.0.1/src/core/types.rs +901 -0
  534. data/ext/cargo-vendor/wast-208.0.1/src/core/wast.rs +256 -0
  535. data/ext/cargo-vendor/wast-208.0.1/src/lib.rs +551 -0
  536. data/ext/cargo-vendor/wast-208.0.1/src/names.rs +67 -0
  537. data/ext/cargo-vendor/wast-208.0.1/src/parser.rs +1377 -0
  538. data/ext/cargo-vendor/wast-208.0.1/src/token.rs +737 -0
  539. data/ext/cargo-vendor/wast-208.0.1/src/wast.rs +459 -0
  540. data/ext/cargo-vendor/wast-208.0.1/src/wat.rs +71 -0
  541. data/ext/cargo-vendor/wast-208.0.1/tests/annotations.rs +200 -0
  542. data/ext/cargo-vendor/wast-208.0.1/tests/parse-fail.rs +80 -0
  543. data/ext/cargo-vendor/wat-1.208.1/.cargo-checksum.json +1 -0
  544. data/ext/cargo-vendor/wat-1.208.1/Cargo.toml +34 -0
  545. data/ext/cargo-vendor/wiggle-20.0.0/.cargo-checksum.json +1 -0
  546. data/ext/cargo-vendor/wiggle-20.0.0/Cargo.toml +122 -0
  547. data/ext/cargo-vendor/wiggle-20.0.0/src/borrow.rs +113 -0
  548. data/ext/cargo-vendor/wiggle-20.0.0/src/guest_type.rs +237 -0
  549. data/ext/cargo-vendor/wiggle-20.0.0/src/lib.rs +1184 -0
  550. data/ext/cargo-vendor/wiggle-20.0.0/src/wasmtime.rs +97 -0
  551. data/ext/cargo-vendor/wiggle-generate-20.0.0/.cargo-checksum.json +1 -0
  552. data/ext/cargo-vendor/wiggle-generate-20.0.0/Cargo.toml +65 -0
  553. data/ext/cargo-vendor/wiggle-macro-20.0.0/.cargo-checksum.json +1 -0
  554. data/ext/cargo-vendor/wiggle-macro-20.0.0/Cargo.toml +55 -0
  555. data/ext/cargo-vendor/wiggle-macro-20.0.0/LICENSE +220 -0
  556. data/ext/cargo-vendor/winch-codegen-0.18.0/.cargo-checksum.json +1 -0
  557. data/ext/cargo-vendor/winch-codegen-0.18.0/Cargo.toml +81 -0
  558. data/ext/cargo-vendor/winch-codegen-0.18.0/src/abi/mod.rs +671 -0
  559. data/ext/cargo-vendor/winch-codegen-0.18.0/src/codegen/bounds.rs +220 -0
  560. data/ext/cargo-vendor/winch-codegen-0.18.0/src/codegen/builtin.rs +263 -0
  561. data/ext/cargo-vendor/winch-codegen-0.18.0/src/codegen/call.rs +413 -0
  562. data/ext/cargo-vendor/winch-codegen-0.18.0/src/codegen/env.rs +435 -0
  563. data/ext/cargo-vendor/winch-codegen-0.18.0/src/codegen/mod.rs +756 -0
  564. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/aarch64/abi.rs +291 -0
  565. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/aarch64/asm.rs +252 -0
  566. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/aarch64/masm.rs +573 -0
  567. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/aarch64/mod.rs +154 -0
  568. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/aarch64/regs.rs +149 -0
  569. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/mod.rs +223 -0
  570. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/x64/abi.rs +517 -0
  571. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/x64/asm.rs +1423 -0
  572. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/x64/masm.rs +1256 -0
  573. data/ext/cargo-vendor/winch-codegen-0.18.0/src/isa/x64/mod.rs +169 -0
  574. data/ext/cargo-vendor/winch-codegen-0.18.0/src/lib.rs +19 -0
  575. data/ext/cargo-vendor/winch-codegen-0.18.0/src/masm.rs +947 -0
  576. data/ext/cargo-vendor/winch-codegen-0.18.0/src/visitor.rs +2149 -0
  577. data/ext/cargo-vendor/wit-parser-0.202.0/.cargo-checksum.json +1 -0
  578. data/ext/cargo-vendor/wit-parser-0.202.0/Cargo.toml +101 -0
  579. data/ext/cargo-vendor/wit-parser-0.202.0/src/abi.rs +309 -0
  580. data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/lex.rs +747 -0
  581. data/ext/cargo-vendor/wit-parser-0.202.0/src/ast/resolve.rs +1443 -0
  582. data/ext/cargo-vendor/wit-parser-0.202.0/src/ast.rs +1348 -0
  583. data/ext/cargo-vendor/wit-parser-0.202.0/src/decoding.rs +1764 -0
  584. data/ext/cargo-vendor/wit-parser-0.202.0/src/lib.rs +765 -0
  585. data/ext/cargo-vendor/wit-parser-0.202.0/src/resolve.rs +2240 -0
  586. data/ext/cargo-vendor/wit-parser-0.202.0/src/serde_.rs +108 -0
  587. data/ext/cargo-vendor/wit-parser-0.202.0/src/sizealign.rs +179 -0
  588. data/ext/cargo-vendor/wit-parser-0.202.0/tests/all.rs +153 -0
  589. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/functions.wit +14 -0
  590. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/functions.wit.json +166 -0
  591. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple.wit +20 -0
  592. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/resources-multiple.wit.json +281 -0
  593. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/types.wit +60 -0
  594. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/types.wit.json +774 -0
  595. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/union-fuzz-2.wit +12 -0
  596. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/union-fuzz-2.wit.json +72 -0
  597. data/ext/cargo-vendor/wit-parser-0.202.0/tests/ui/wasi.wit +178 -0
  598. data/ext/src/ruby_api/convert.rs +15 -7
  599. data/ext/src/ruby_api/func.rs +2 -2
  600. data/ext/src/ruby_api/global.rs +2 -2
  601. data/ext/src/ruby_api/params.rs +5 -5
  602. data/ext/src/ruby_api/table.rs +3 -3
  603. data/lib/wasmtime/version.rb +1 -1
  604. metadata +1737 -1630
  605. data/ext/cargo-vendor/anyhow-1.0.79/.cargo-checksum.json +0 -1
  606. data/ext/cargo-vendor/anyhow-1.0.79/Cargo.toml +0 -67
  607. data/ext/cargo-vendor/anyhow-1.0.79/README.md +0 -179
  608. data/ext/cargo-vendor/anyhow-1.0.79/build.rs +0 -167
  609. data/ext/cargo-vendor/anyhow-1.0.79/src/backtrace.rs +0 -405
  610. data/ext/cargo-vendor/anyhow-1.0.79/src/chain.rs +0 -102
  611. data/ext/cargo-vendor/anyhow-1.0.79/src/fmt.rs +0 -156
  612. data/ext/cargo-vendor/anyhow-1.0.79/src/kind.rs +0 -119
  613. data/ext/cargo-vendor/anyhow-1.0.79/src/lib.rs +0 -698
  614. data/ext/cargo-vendor/anyhow-1.0.79/src/macros.rs +0 -231
  615. data/ext/cargo-vendor/anyhow-1.0.79/src/wrapper.rs +0 -81
  616. data/ext/cargo-vendor/anyhow-1.0.79/tests/test_ensure.rs +0 -722
  617. data/ext/cargo-vendor/anyhow-1.0.79/tests/test_macros.rs +0 -80
  618. data/ext/cargo-vendor/anyhow-1.0.79/tests/test_repr.rs +0 -31
  619. data/ext/cargo-vendor/anyhow-1.0.79/tests/ui/no-impl.stderr +0 -31
  620. data/ext/cargo-vendor/cranelift-bforest-0.106.2/.cargo-checksum.json +0 -1
  621. data/ext/cargo-vendor/cranelift-bforest-0.106.2/Cargo.toml +0 -40
  622. data/ext/cargo-vendor/cranelift-codegen-0.106.2/.cargo-checksum.json +0 -1
  623. data/ext/cargo-vendor/cranelift-codegen-0.106.2/Cargo.toml +0 -175
  624. data/ext/cargo-vendor/cranelift-codegen-0.106.2/build.rs +0 -395
  625. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/alias_analysis.rs +0 -409
  626. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/binemit/mod.rs +0 -171
  627. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/bitset.rs +0 -165
  628. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/context.rs +0 -384
  629. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/egraph/elaborate.rs +0 -836
  630. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/egraph.rs +0 -702
  631. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/inst_predicates.rs +0 -217
  632. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/constant.rs +0 -462
  633. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/dfg.rs +0 -1734
  634. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/entities.rs +0 -598
  635. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/function.rs +0 -500
  636. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/instructions.rs +0 -1000
  637. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/memflags.rs +0 -310
  638. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/mod.rs +0 -110
  639. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/table.rs +0 -40
  640. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/trapcode.rs +0 -144
  641. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/ir/types.rs +0 -629
  642. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/abi.rs +0 -1707
  643. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst/emit.rs +0 -3958
  644. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst/mod.rs +0 -3082
  645. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/inst.isle +0 -4197
  646. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/lower/isle.rs +0 -879
  647. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/lower.isle +0 -2917
  648. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/mod.rs +0 -241
  649. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/aarch64/pcc.rs +0 -565
  650. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/call_conv.rs +0 -119
  651. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/abi.rs +0 -1097
  652. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/args.rs +0 -1974
  653. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/emit.rs +0 -3485
  654. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst/encode.rs +0 -654
  655. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/inst.isle +0 -2928
  656. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/lower/isle.rs +0 -620
  657. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/riscv64/lower.isle +0 -2864
  658. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/abi.rs +0 -1041
  659. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst/args.rs +0 -355
  660. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst/emit.rs +0 -3663
  661. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/inst.isle +0 -5031
  662. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/s390x/lower.isle +0 -3979
  663. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/abi.rs +0 -1303
  664. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/evex.rs +0 -749
  665. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/rex.rs +0 -598
  666. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/encoding/vex.rs +0 -492
  667. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/args.rs +0 -2269
  668. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/emit.rs +0 -4390
  669. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/emit_state.rs +0 -72
  670. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst/mod.rs +0 -2852
  671. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/inst.isle +0 -5232
  672. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower/isle.rs +0 -1065
  673. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower.isle +0 -4770
  674. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/lower.rs +0 -353
  675. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/mod.rs +0 -233
  676. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/isa/x64/pcc.rs +0 -939
  677. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/legalizer/mod.rs +0 -356
  678. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/legalizer/table.rs +0 -114
  679. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/abi.rs +0 -2657
  680. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/buffer.rs +0 -2509
  681. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/inst_common.rs +0 -74
  682. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/isle.rs +0 -914
  683. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/lower.rs +0 -1443
  684. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/mod.rs +0 -558
  685. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/pcc.rs +0 -159
  686. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/machinst/vcode.rs +0 -1809
  687. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/nan_canonicalization.rs +0 -106
  688. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/opts/cprop.isle +0 -266
  689. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/opts.rs +0 -284
  690. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/prelude.isle +0 -641
  691. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/result.rs +0 -108
  692. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/settings.rs +0 -602
  693. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/verifier/mod.rs +0 -2033
  694. data/ext/cargo-vendor/cranelift-codegen-0.106.2/src/write.rs +0 -647
  695. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/.cargo-checksum.json +0 -1
  696. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/Cargo.toml +0 -35
  697. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/entities.rs +0 -106
  698. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/formats.rs +0 -213
  699. data/ext/cargo-vendor/cranelift-codegen-meta-0.106.2/src/shared/instructions.rs +0 -3810
  700. data/ext/cargo-vendor/cranelift-codegen-shared-0.106.2/.cargo-checksum.json +0 -1
  701. data/ext/cargo-vendor/cranelift-codegen-shared-0.106.2/Cargo.toml +0 -22
  702. data/ext/cargo-vendor/cranelift-control-0.106.2/.cargo-checksum.json +0 -1
  703. data/ext/cargo-vendor/cranelift-control-0.106.2/Cargo.toml +0 -30
  704. data/ext/cargo-vendor/cranelift-entity-0.106.2/.cargo-checksum.json +0 -1
  705. data/ext/cargo-vendor/cranelift-entity-0.106.2/Cargo.toml +0 -50
  706. data/ext/cargo-vendor/cranelift-frontend-0.106.2/.cargo-checksum.json +0 -1
  707. data/ext/cargo-vendor/cranelift-frontend-0.106.2/Cargo.toml +0 -68
  708. data/ext/cargo-vendor/cranelift-isle-0.106.2/.cargo-checksum.json +0 -1
  709. data/ext/cargo-vendor/cranelift-isle-0.106.2/Cargo.toml +0 -46
  710. data/ext/cargo-vendor/cranelift-native-0.106.2/.cargo-checksum.json +0 -1
  711. data/ext/cargo-vendor/cranelift-native-0.106.2/Cargo.toml +0 -43
  712. data/ext/cargo-vendor/cranelift-wasm-0.106.2/.cargo-checksum.json +0 -1
  713. data/ext/cargo-vendor/cranelift-wasm-0.106.2/Cargo.toml +0 -106
  714. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/code_translator.rs +0 -3680
  715. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/dummy.rs +0 -952
  716. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/mod.rs +0 -12
  717. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/environ/spec.rs +0 -952
  718. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/func_translator.rs +0 -432
  719. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/lib.rs +0 -62
  720. data/ext/cargo-vendor/cranelift-wasm-0.106.2/src/state.rs +0 -542
  721. data/ext/cargo-vendor/cranelift-wasm-0.106.2/tests/wasm_testsuite.rs +0 -153
  722. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/arith.wat +0 -13
  723. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/br_table.wat +0 -30
  724. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/call-simd.wat +0 -14
  725. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/call.wat +0 -10
  726. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_fannkuch.wat +0 -12180
  727. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_fasta.wat +0 -12056
  728. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_ifs.wat +0 -11505
  729. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/embenchen_primes.wat +0 -11185
  730. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/fac-multi-value.wat +0 -19
  731. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/fibonacci.wat +0 -22
  732. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/globals.wat +0 -8
  733. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/icall-simd.wat +0 -7
  734. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/icall.wat +0 -7
  735. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-0.wat +0 -12
  736. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-1.wat +0 -12
  737. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-2.wat +0 -12
  738. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-3.wat +0 -12
  739. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-4.wat +0 -12
  740. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-5.wat +0 -14
  741. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-reachability-translation-6.wat +0 -14
  742. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-unreachable-else-params-2.wat +0 -18
  743. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/if-unreachable-else-params.wat +0 -41
  744. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  745. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/memory.wat +0 -11
  746. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-0.wat +0 -3
  747. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-1.wat +0 -6
  748. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-10.wat +0 -10
  749. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-11.wat +0 -7
  750. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-12.wat +0 -9
  751. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-13.wat +0 -10
  752. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-14.wat +0 -10
  753. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-15.wat +0 -22
  754. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-16.wat +0 -9
  755. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-17.wat +0 -26
  756. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-2.wat +0 -6
  757. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-3.wat +0 -13
  758. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-4.wat +0 -13
  759. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-5.wat +0 -11
  760. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-6.wat +0 -11
  761. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-7.wat +0 -9
  762. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-8.wat +0 -12
  763. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/multi-9.wat +0 -15
  764. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/nullref.wat +0 -11
  765. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/passive-data.wat +0 -12
  766. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/pr2303.wat +0 -15
  767. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/pr2559.wat +0 -51
  768. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/ref-func-0.wat +0 -12
  769. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/rust_fannkuch.wat +0 -1723
  770. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/select.wat +0 -19
  771. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/simd-store.wat +0 -83
  772. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/simd.wat +0 -29
  773. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/table-copy.wat +0 -22
  774. data/ext/cargo-vendor/cranelift-wasm-0.106.2/wasmtests/unreachable_code.wat +0 -77
  775. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.20/.cargo-checksum.json +0 -1
  776. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.20/Cargo.toml +0 -49
  777. data/ext/cargo-vendor/mach-0.3.2/.cargo-checksum.json +0 -1
  778. data/ext/cargo-vendor/mach-0.3.2/Cargo.toml +0 -46
  779. data/ext/cargo-vendor/mach-0.3.2/LICENSE.md +0 -23
  780. data/ext/cargo-vendor/mach-0.3.2/README.md +0 -55
  781. data/ext/cargo-vendor/mach-0.3.2/ci/build_fail.sh +0 -7
  782. data/ext/cargo-vendor/mach-0.3.2/ci/deploy_and_run_on_ios_simulator.rs +0 -175
  783. data/ext/cargo-vendor/mach-0.3.2/ci/run.sh +0 -57
  784. data/ext/cargo-vendor/mach-0.3.2/examples/dump_process_registers.rs +0 -136
  785. data/ext/cargo-vendor/mach-0.3.2/src/exc.rs +0 -44
  786. data/ext/cargo-vendor/mach-0.3.2/src/kern_return.rs +0 -58
  787. data/ext/cargo-vendor/mach-0.3.2/src/lib.rs +0 -60
  788. data/ext/cargo-vendor/mach-0.3.2/src/mach_port.rs +0 -29
  789. data/ext/cargo-vendor/mach-0.3.2/src/message.rs +0 -248
  790. data/ext/cargo-vendor/mach-0.3.2/src/port.rs +0 -26
  791. data/ext/cargo-vendor/mach-0.3.2/src/structs.rs +0 -62
  792. data/ext/cargo-vendor/mach-0.3.2/src/task.rs +0 -41
  793. data/ext/cargo-vendor/mach-0.3.2/src/task_info.rs +0 -44
  794. data/ext/cargo-vendor/mach-0.3.2/src/thread_act.rs +0 -23
  795. data/ext/cargo-vendor/mach-0.3.2/src/thread_status.rs +0 -23
  796. data/ext/cargo-vendor/mach-0.3.2/src/traps.rs +0 -35
  797. data/ext/cargo-vendor/mach-0.3.2/src/vm.rs +0 -247
  798. data/ext/cargo-vendor/mach-0.3.2/src/vm_attributes.rs +0 -18
  799. data/ext/cargo-vendor/mach-0.3.2/src/vm_page_size.rs +0 -33
  800. data/ext/cargo-vendor/mach-0.3.2/src/vm_prot.rs +0 -14
  801. data/ext/cargo-vendor/mach-0.3.2/src/vm_purgable.rs +0 -42
  802. data/ext/cargo-vendor/mach-0.3.2/src/vm_region.rs +0 -238
  803. data/ext/cargo-vendor/mach-0.3.2/src/vm_statistics.rs +0 -78
  804. data/ext/cargo-vendor/mach-0.3.2/src/vm_sync.rs +0 -11
  805. data/ext/cargo-vendor/mach-0.3.2/src/vm_types.rs +0 -19
  806. data/ext/cargo-vendor/wasi-common-19.0.2/.cargo-checksum.json +0 -1
  807. data/ext/cargo-vendor/wasi-common-19.0.2/Cargo.toml +0 -221
  808. data/ext/cargo-vendor/wasi-common-19.0.2/src/ctx.rs +0 -128
  809. data/ext/cargo-vendor/wasi-common-19.0.2/src/lib.rs +0 -189
  810. data/ext/cargo-vendor/wasi-common-19.0.2/src/snapshots/preview_1.rs +0 -1491
  811. data/ext/cargo-vendor/wasi-common-19.0.2/tests/all/async_.rs +0 -289
  812. data/ext/cargo-vendor/wasi-common-19.0.2/tests/all/sync.rs +0 -275
  813. data/ext/cargo-vendor/wasm-encoder-0.201.0/.cargo-checksum.json +0 -1
  814. data/ext/cargo-vendor/wasm-encoder-0.201.0/Cargo.toml +0 -43
  815. data/ext/cargo-vendor/wasm-encoder-0.201.0/src/component/types.rs +0 -792
  816. data/ext/cargo-vendor/wasmparser-0.201.0/.cargo-checksum.json +0 -1
  817. data/ext/cargo-vendor/wasmparser-0.201.0/Cargo.lock +0 -744
  818. data/ext/cargo-vendor/wasmparser-0.201.0/Cargo.toml +0 -66
  819. data/ext/cargo-vendor/wasmparser-0.201.0/src/readers/component/types.rs +0 -549
  820. data/ext/cargo-vendor/wasmparser-0.201.0/src/validator/operators.rs +0 -4074
  821. data/ext/cargo-vendor/wasmparser-0.201.0/src/validator/types.rs +0 -4449
  822. data/ext/cargo-vendor/wasmprinter-0.201.0/.cargo-checksum.json +0 -1
  823. data/ext/cargo-vendor/wasmprinter-0.201.0/Cargo.toml +0 -45
  824. data/ext/cargo-vendor/wasmprinter-0.201.0/src/lib.rs +0 -3143
  825. data/ext/cargo-vendor/wasmprinter-0.201.0/src/operator.rs +0 -1110
  826. data/ext/cargo-vendor/wasmprinter-0.201.0/tests/all.rs +0 -279
  827. data/ext/cargo-vendor/wasmtime-19.0.2/.cargo-checksum.json +0 -1
  828. data/ext/cargo-vendor/wasmtime-19.0.2/Cargo.toml +0 -261
  829. data/ext/cargo-vendor/wasmtime-19.0.2/src/compile.rs +0 -835
  830. data/ext/cargo-vendor/wasmtime-19.0.2/src/config.rs +0 -2649
  831. data/ext/cargo-vendor/wasmtime-19.0.2/src/engine/serialization.rs +0 -809
  832. data/ext/cargo-vendor/wasmtime-19.0.2/src/engine.rs +0 -735
  833. data/ext/cargo-vendor/wasmtime-19.0.2/src/lib.rs +0 -293
  834. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/code_memory.rs +0 -335
  835. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/component.rs +0 -586
  836. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/host.rs +0 -456
  837. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/options.rs +0 -541
  838. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func/typed.rs +0 -2484
  839. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/func.rs +0 -752
  840. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/instance.rs +0 -818
  841. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/linker.rs +0 -788
  842. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/matching.rs +0 -212
  843. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/mod.rs +0 -678
  844. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/resources.rs +0 -1169
  845. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/types.rs +0 -961
  846. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/component/values.rs +0 -1388
  847. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/coredump.rs +0 -321
  848. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/externals/global.rs +0 -249
  849. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/externals/table.rs +0 -416
  850. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/func/typed.rs +0 -985
  851. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/func.rs +0 -2585
  852. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/instance.rs +0 -981
  853. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/instantiate.rs +0 -423
  854. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/linker.rs +0 -1518
  855. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/memory.rs +0 -997
  856. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/module/registry.rs +0 -360
  857. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/module.rs +0 -1367
  858. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/profiling.rs +0 -222
  859. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref/gc_ref.rs +0 -110
  860. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref/no_gc_ref.rs +0 -60
  861. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/ref.rs +0 -9
  862. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/store/data.rs +0 -289
  863. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/store.rs +0 -2445
  864. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/func.rs +0 -144
  865. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/global.rs +0 -70
  866. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/memory.rs +0 -268
  867. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trampoline/table.rs +0 -20
  868. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/trap.rs +0 -641
  869. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/type_registry.rs +0 -640
  870. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/types/matching.rs +0 -334
  871. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/types.rs +0 -1236
  872. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/v128.rs +0 -131
  873. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime/values.rs +0 -771
  874. data/ext/cargo-vendor/wasmtime-19.0.2/src/runtime.rs +0 -112
  875. data/ext/cargo-vendor/wasmtime-asm-macros-19.0.2/.cargo-checksum.json +0 -1
  876. data/ext/cargo-vendor/wasmtime-asm-macros-19.0.2/Cargo.toml +0 -22
  877. data/ext/cargo-vendor/wasmtime-cache-19.0.2/.cargo-checksum.json +0 -1
  878. data/ext/cargo-vendor/wasmtime-cache-19.0.2/Cargo.toml +0 -81
  879. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/.cargo-checksum.json +0 -1
  880. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/Cargo.toml +0 -67
  881. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/src/component.rs +0 -1295
  882. data/ext/cargo-vendor/wasmtime-component-macro-19.0.2/tests/codegen.rs +0 -191
  883. data/ext/cargo-vendor/wasmtime-component-util-19.0.2/.cargo-checksum.json +0 -1
  884. data/ext/cargo-vendor/wasmtime-component-util-19.0.2/Cargo.toml +0 -25
  885. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/.cargo-checksum.json +0 -1
  886. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/Cargo.toml +0 -114
  887. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/builder.rs +0 -127
  888. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/compiler/component.rs +0 -960
  889. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/compiler.rs +0 -1316
  890. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/debug/transform/address_transform.rs +0 -784
  891. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/debug/transform/expression.rs +0 -1252
  892. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/func_environ.rs +0 -2846
  893. data/ext/cargo-vendor/wasmtime-cranelift-19.0.2/src/lib.rs +0 -186
  894. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/.cargo-checksum.json +0 -1
  895. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/Cargo.toml +0 -71
  896. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/compiled_function.rs +0 -231
  897. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/lib.rs +0 -130
  898. data/ext/cargo-vendor/wasmtime-cranelift-shared-19.0.2/src/obj.rs +0 -564
  899. data/ext/cargo-vendor/wasmtime-environ-19.0.2/.cargo-checksum.json +0 -1
  900. data/ext/cargo-vendor/wasmtime-environ-19.0.2/Cargo.lock +0 -782
  901. data/ext/cargo-vendor/wasmtime-environ-19.0.2/Cargo.toml +0 -141
  902. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/address_map.rs +0 -191
  903. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/builtin.rs +0 -155
  904. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/compilation.rs +0 -402
  905. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/artifacts.rs +0 -45
  906. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/compiler.rs +0 -47
  907. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/info.rs +0 -594
  908. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/translate/adapt.rs +0 -457
  909. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/translate/inline.rs +0 -1332
  910. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component/types.rs +0 -1933
  911. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/component.rs +0 -97
  912. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact/trampoline.rs +0 -3229
  913. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact/transcode.rs +0 -168
  914. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/fact.rs +0 -713
  915. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/lib.rs +0 -66
  916. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module.rs +0 -1117
  917. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module_artifacts.rs +0 -377
  918. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/module_environ.rs +0 -903
  919. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/obj.rs +0 -172
  920. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/trap_encoding.rs +0 -245
  921. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/tunables.rs +0 -154
  922. data/ext/cargo-vendor/wasmtime-environ-19.0.2/src/vmoffsets.rs +0 -918
  923. data/ext/cargo-vendor/wasmtime-fiber-19.0.2/.cargo-checksum.json +0 -1
  924. data/ext/cargo-vendor/wasmtime-fiber-19.0.2/Cargo.toml +0 -63
  925. data/ext/cargo-vendor/wasmtime-fiber-19.0.2/src/unix.rs +0 -265
  926. data/ext/cargo-vendor/wasmtime-jit-debug-19.0.2/.cargo-checksum.json +0 -1
  927. data/ext/cargo-vendor/wasmtime-jit-debug-19.0.2/Cargo.toml +0 -67
  928. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-19.0.2/.cargo-checksum.json +0 -1
  929. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-19.0.2/Cargo.toml +0 -46
  930. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/.cargo-checksum.json +0 -1
  931. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/Cargo.toml +0 -140
  932. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/build.rs +0 -28
  933. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/aarch64.rs +0 -120
  934. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/riscv64.rs +0 -88
  935. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/s390x.S +0 -70
  936. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/s390x.rs +0 -61
  937. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/arch/x86_64.rs +0 -104
  938. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/component/libcalls.rs +0 -572
  939. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/component.rs +0 -864
  940. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/export.rs +0 -105
  941. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref/gc.rs +0 -1058
  942. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref/no_gc.rs +0 -125
  943. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/externref.rs +0 -24
  944. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/on_demand.rs +0 -196
  945. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/pooling/table_pool.rs +0 -227
  946. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator/pooling.rs +0 -658
  947. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance/allocator.rs +0 -730
  948. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/instance.rs +0 -1527
  949. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/lib.rs +0 -264
  950. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/libcalls.rs +0 -776
  951. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/memory.rs +0 -972
  952. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/send_sync_ptr.rs +0 -93
  953. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/custom/mmap.rs +0 -111
  954. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/custom/traphandlers.rs +0 -51
  955. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/miri/mmap.rs +0 -94
  956. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/machports.rs +0 -488
  957. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/mmap.rs +0 -151
  958. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/unix/signals.rs +0 -402
  959. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/sys/windows/traphandlers.rs +0 -105
  960. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/table.rs +0 -643
  961. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/traphandlers/coredump.rs +0 -38
  962. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/traphandlers.rs +0 -736
  963. data/ext/cargo-vendor/wasmtime-runtime-19.0.2/src/vmcontext.rs +0 -1215
  964. data/ext/cargo-vendor/wasmtime-slab-19.0.2/.cargo-checksum.json +0 -1
  965. data/ext/cargo-vendor/wasmtime-slab-19.0.2/Cargo.toml +0 -21
  966. data/ext/cargo-vendor/wasmtime-slab-19.0.2/src/lib.rs +0 -450
  967. data/ext/cargo-vendor/wasmtime-types-19.0.2/.cargo-checksum.json +0 -1
  968. data/ext/cargo-vendor/wasmtime-types-19.0.2/Cargo.toml +0 -36
  969. data/ext/cargo-vendor/wasmtime-types-19.0.2/src/lib.rs +0 -640
  970. data/ext/cargo-vendor/wasmtime-versioned-export-macros-19.0.2/.cargo-checksum.json +0 -1
  971. data/ext/cargo-vendor/wasmtime-versioned-export-macros-19.0.2/Cargo.toml +0 -32
  972. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/.cargo-checksum.json +0 -1
  973. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/Cargo.toml +0 -194
  974. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/command.rs +0 -122
  975. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/ctx.rs +0 -353
  976. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/filesystem.rs +0 -373
  977. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/filesystem/sync.rs +0 -517
  978. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/filesystem.rs +0 -1081
  979. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/io.rs +0 -366
  980. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/network.rs +0 -519
  981. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/host/tcp.rs +0 -677
  982. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/ip_name_lookup.rs +0 -123
  983. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/lib.rs +0 -323
  984. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/network.rs +0 -108
  985. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/p1ctx.rs +0 -37
  986. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/pipe.rs +0 -826
  987. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/poll.rs +0 -179
  988. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/preview0.rs +0 -872
  989. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/preview1.rs +0 -2361
  990. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/stdio/worker_thread_stdin.rs +0 -173
  991. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/stdio.rs +0 -443
  992. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/tcp.rs +0 -350
  993. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/udp.rs +0 -125
  994. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/src/write_stream.rs +0 -203
  995. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/api.rs +0 -210
  996. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/async_.rs +0 -380
  997. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/main.rs +0 -106
  998. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/preview1.rs +0 -243
  999. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/tests/all/sync.rs +0 -315
  1000. data/ext/cargo-vendor/wasmtime-wasi-19.0.2/wit/deps/io/poll.wit +0 -42
  1001. data/ext/cargo-vendor/wasmtime-winch-19.0.2/.cargo-checksum.json +0 -1
  1002. data/ext/cargo-vendor/wasmtime-winch-19.0.2/Cargo.toml +0 -77
  1003. data/ext/cargo-vendor/wasmtime-winch-19.0.2/src/builder.rs +0 -65
  1004. data/ext/cargo-vendor/wasmtime-winch-19.0.2/src/compiler.rs +0 -283
  1005. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/.cargo-checksum.json +0 -1
  1006. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/Cargo.toml +0 -41
  1007. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/lib.rs +0 -2104
  1008. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/rust.rs +0 -421
  1009. data/ext/cargo-vendor/wasmtime-wit-bindgen-19.0.2/src/types.rs +0 -194
  1010. data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/.cargo-checksum.json +0 -1
  1011. data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/Cargo.toml +0 -29
  1012. data/ext/cargo-vendor/wasmtime-wmemcheck-19.0.2/src/lib.rs +0 -404
  1013. data/ext/cargo-vendor/wast-201.0.0/.cargo-checksum.json +0 -1
  1014. data/ext/cargo-vendor/wast-201.0.0/Cargo.toml +0 -59
  1015. data/ext/cargo-vendor/wast-201.0.0/src/component/binary.rs +0 -1004
  1016. data/ext/cargo-vendor/wast-201.0.0/src/component/resolve.rs +0 -1006
  1017. data/ext/cargo-vendor/wast-201.0.0/src/component/types.rs +0 -991
  1018. data/ext/cargo-vendor/wast-201.0.0/src/component/wast.rs +0 -160
  1019. data/ext/cargo-vendor/wast-201.0.0/src/core/binary.rs +0 -1365
  1020. data/ext/cargo-vendor/wast-201.0.0/src/core/expr.rs +0 -1993
  1021. data/ext/cargo-vendor/wast-201.0.0/src/core/func.rs +0 -136
  1022. data/ext/cargo-vendor/wast-201.0.0/src/core/memory.rs +0 -281
  1023. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/deinline_import_export.rs +0 -233
  1024. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/names.rs +0 -763
  1025. data/ext/cargo-vendor/wast-201.0.0/src/core/resolve/types.rs +0 -271
  1026. data/ext/cargo-vendor/wast-201.0.0/src/core/table.rs +0 -289
  1027. data/ext/cargo-vendor/wast-201.0.0/src/core/types.rs +0 -861
  1028. data/ext/cargo-vendor/wast-201.0.0/src/core/wast.rs +0 -256
  1029. data/ext/cargo-vendor/wast-201.0.0/src/lib.rs +0 -542
  1030. data/ext/cargo-vendor/wast-201.0.0/src/names.rs +0 -89
  1031. data/ext/cargo-vendor/wast-201.0.0/src/parser.rs +0 -1374
  1032. data/ext/cargo-vendor/wast-201.0.0/src/token.rs +0 -718
  1033. data/ext/cargo-vendor/wast-201.0.0/src/wast.rs +0 -420
  1034. data/ext/cargo-vendor/wast-201.0.0/src/wat.rs +0 -63
  1035. data/ext/cargo-vendor/wast-201.0.0/tests/annotations.rs +0 -200
  1036. data/ext/cargo-vendor/wast-201.0.0/tests/parse-fail.rs +0 -98
  1037. data/ext/cargo-vendor/wat-1.201.0/.cargo-checksum.json +0 -1
  1038. data/ext/cargo-vendor/wat-1.201.0/Cargo.toml +0 -33
  1039. data/ext/cargo-vendor/wiggle-19.0.2/.cargo-checksum.json +0 -1
  1040. data/ext/cargo-vendor/wiggle-19.0.2/Cargo.toml +0 -122
  1041. data/ext/cargo-vendor/wiggle-19.0.2/src/borrow.rs +0 -259
  1042. data/ext/cargo-vendor/wiggle-19.0.2/src/guest_type.rs +0 -237
  1043. data/ext/cargo-vendor/wiggle-19.0.2/src/lib.rs +0 -1199
  1044. data/ext/cargo-vendor/wiggle-19.0.2/src/wasmtime.rs +0 -101
  1045. data/ext/cargo-vendor/wiggle-generate-19.0.2/.cargo-checksum.json +0 -1
  1046. data/ext/cargo-vendor/wiggle-generate-19.0.2/Cargo.toml +0 -65
  1047. data/ext/cargo-vendor/wiggle-macro-19.0.2/.cargo-checksum.json +0 -1
  1048. data/ext/cargo-vendor/wiggle-macro-19.0.2/Cargo.toml +0 -55
  1049. data/ext/cargo-vendor/winch-codegen-0.17.2/.cargo-checksum.json +0 -1
  1050. data/ext/cargo-vendor/winch-codegen-0.17.2/Cargo.toml +0 -77
  1051. data/ext/cargo-vendor/winch-codegen-0.17.2/src/abi/mod.rs +0 -737
  1052. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/bounds.rs +0 -220
  1053. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/builtin.rs +0 -272
  1054. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/call.rs +0 -413
  1055. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/env.rs +0 -399
  1056. data/ext/cargo-vendor/winch-codegen-0.17.2/src/codegen/mod.rs +0 -672
  1057. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/abi.rs +0 -309
  1058. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/asm.rs +0 -247
  1059. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/masm.rs +0 -557
  1060. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/mod.rs +0 -152
  1061. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/aarch64/regs.rs +0 -183
  1062. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/mod.rs +0 -232
  1063. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/abi.rs +0 -543
  1064. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/asm.rs +0 -1418
  1065. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/masm.rs +0 -1300
  1066. data/ext/cargo-vendor/winch-codegen-0.17.2/src/isa/x64/mod.rs +0 -192
  1067. data/ext/cargo-vendor/winch-codegen-0.17.2/src/lib.rs +0 -21
  1068. data/ext/cargo-vendor/winch-codegen-0.17.2/src/masm.rs +0 -955
  1069. data/ext/cargo-vendor/winch-codegen-0.17.2/src/trampoline.rs +0 -626
  1070. data/ext/cargo-vendor/winch-codegen-0.17.2/src/visitor.rs +0 -2101
  1071. data/ext/cargo-vendor/wit-parser-0.201.0/.cargo-checksum.json +0 -1
  1072. data/ext/cargo-vendor/wit-parser-0.201.0/Cargo.toml +0 -101
  1073. data/ext/cargo-vendor/wit-parser-0.201.0/src/abi.rs +0 -295
  1074. data/ext/cargo-vendor/wit-parser-0.201.0/src/ast/lex.rs +0 -747
  1075. data/ext/cargo-vendor/wit-parser-0.201.0/src/ast/resolve.rs +0 -1427
  1076. data/ext/cargo-vendor/wit-parser-0.201.0/src/ast.rs +0 -1348
  1077. data/ext/cargo-vendor/wit-parser-0.201.0/src/decoding.rs +0 -1764
  1078. data/ext/cargo-vendor/wit-parser-0.201.0/src/lib.rs +0 -747
  1079. data/ext/cargo-vendor/wit-parser-0.201.0/src/resolve.rs +0 -2239
  1080. data/ext/cargo-vendor/wit-parser-0.201.0/src/serde_.rs +0 -108
  1081. data/ext/cargo-vendor/wit-parser-0.201.0/src/sizealign.rs +0 -144
  1082. data/ext/cargo-vendor/wit-parser-0.201.0/tests/all.rs +0 -185
  1083. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/functions.wit +0 -14
  1084. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/functions.wit.json +0 -166
  1085. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/resources-multiple.wit +0 -20
  1086. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/resources-multiple.wit.json +0 -281
  1087. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/types.wit +0 -60
  1088. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/types.wit.json +0 -774
  1089. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/union-fuzz-2.wit +0 -12
  1090. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/union-fuzz-2.wit.json +0 -72
  1091. data/ext/cargo-vendor/wit-parser-0.201.0/tests/ui/wasi.wit +0 -178
  1092. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/LICENSE-APACHE +0 -0
  1093. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/LICENSE-MIT +0 -0
  1094. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/build/probe.rs +0 -0
  1095. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/rust-toolchain.toml +0 -0
  1096. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/context.rs +0 -0
  1097. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/ensure.rs +0 -0
  1098. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/error.rs +0 -0
  1099. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/src/ptr.rs +0 -0
  1100. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/common/mod.rs +0 -0
  1101. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/compiletest.rs +0 -0
  1102. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/drop/mod.rs +0 -0
  1103. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_autotrait.rs +0 -0
  1104. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_backtrace.rs +0 -0
  1105. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_boxed.rs +0 -0
  1106. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_chain.rs +0 -0
  1107. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_context.rs +0 -0
  1108. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_convert.rs +0 -0
  1109. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_downcast.rs +0 -0
  1110. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_ffi.rs +0 -0
  1111. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_fmt.rs +0 -0
  1112. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/test_source.rs +0 -0
  1113. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/chained-comparison.rs +0 -0
  1114. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/chained-comparison.stderr +0 -0
  1115. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/empty-ensure.rs +0 -0
  1116. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/empty-ensure.stderr +0 -0
  1117. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/must-use.rs +0 -0
  1118. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/must-use.stderr +0 -0
  1119. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/no-impl.rs +0 -0
  1120. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/temporary-value.rs +0 -0
  1121. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/temporary-value.stderr +0 -0
  1122. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/wrong-interpolation.rs +0 -0
  1123. /data/ext/cargo-vendor/{anyhow-1.0.79 → anyhow-1.0.83}/tests/ui/wrong-interpolation.stderr +0 -0
  1124. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/LICENSE +0 -0
  1125. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/README.md +0 -0
  1126. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/lib.rs +0 -0
  1127. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/map.rs +0 -0
  1128. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/node.rs +0 -0
  1129. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/path.rs +0 -0
  1130. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/pool.rs +0 -0
  1131. /data/ext/cargo-vendor/{cranelift-bforest-0.106.2 → cranelift-bforest-0.107.2}/src/set.rs +0 -0
  1132. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/LICENSE +0 -0
  1133. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/README.md +0 -0
  1134. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/benches/x64-evex-encoding.rs +0 -0
  1135. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/binemit/stack_map.rs +0 -0
  1136. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/cfg_printer.rs +0 -0
  1137. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/constant_hash.rs +0 -0
  1138. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ctxhash.rs +0 -0
  1139. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/cursor.rs +0 -0
  1140. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/data_value.rs +0 -0
  1141. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dbg.rs +0 -0
  1142. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dce.rs +0 -0
  1143. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/dominator_tree.rs +0 -0
  1144. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/egraph/cost.rs +0 -0
  1145. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/flowgraph.rs +0 -0
  1146. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/fx.rs +0 -0
  1147. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/incremental_cache.rs +0 -0
  1148. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/atomic_rmw_op.rs +0 -0
  1149. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/builder.rs +0 -0
  1150. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/condcodes.rs +0 -0
  1151. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/dynamic_type.rs +0 -0
  1152. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/extfunc.rs +0 -0
  1153. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/extname.rs +0 -0
  1154. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/globalvalue.rs +0 -0
  1155. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/immediates.rs +0 -0
  1156. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/jumptable.rs +0 -0
  1157. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/known_symbol.rs +0 -0
  1158. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/layout.rs +0 -0
  1159. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/libcall.rs +0 -0
  1160. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/memtype.rs +0 -0
  1161. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/pcc.rs +0 -0
  1162. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/progpoint.rs +0 -0
  1163. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/sourceloc.rs +0 -0
  1164. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/ir/stackslot.rs +0 -0
  1165. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/args.rs +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/imms.rs +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/regs.rs +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/inst_neon.isle +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower.rs +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/aarch64/settings.rs +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/mod.rs +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/imms.rs +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/mod.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/regs.rs +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst/vector.rs +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/inst_vector.isle +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/lower.rs +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/mod.rs +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/riscv64/settings.rs +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/imms.rs +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/mod.rs +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/regs.rs +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/inst/unwind.rs +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower/isle.rs +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/lower.rs +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/mod.rs +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/s390x/settings.rs +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind/systemv.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind/winx64.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/unwind.rs +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/encoding/mod.rs +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/regs.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/inst/unwind.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isa/x64/settings.rs +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/isle_prelude.rs +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/iterators.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/legalizer/globalvalue.rs +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/lib.rs +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/loop_analysis.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/blockorder.rs +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/compile.rs +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/helpers.rs +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/reg.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/machinst/valueregs.rs +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/README.md +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/arithmetic.isle +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/bitops.isle +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/extends.isle +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/generated_code.rs +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/icmp.isle +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/remat.isle +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/selects.isle +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/shifts.isle +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/spaceship.isle +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/opts/vector.isle +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/prelude_lower.isle +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/prelude_opt.isle +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/print_errors.rs +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/remove_constant_phis.rs +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/scoped_hash_map.rs +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/souper_harvest.rs +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/timing.rs +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/unionfind.rs +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/unreachable_code.rs +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-codegen-0.106.2 → cranelift-codegen-0.107.2}/src/value_label.rs +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/LICENSE +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/README.md +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/formats.rs +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/instructions.rs +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/isa.rs +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/mod.rs +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/operands.rs +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/settings.rs +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/types.rs +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/cdsl/typevar.rs +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/constant_hash.rs +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/error.rs +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_inst.rs +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_settings.rs +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/gen_types.rs +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/arm64.rs +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/mod.rs +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/riscv64.rs +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/s390x.rs +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/isa/x86.rs +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/lib.rs +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/immediates.rs +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/mod.rs +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/settings.rs +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/shared/types.rs +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/srcgen.rs +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.106.2 → cranelift-codegen-meta-0.107.2}/src/unique_table.rs +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/LICENSE +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/README.md +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/constant_hash.rs +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/constants.rs +0 -0
  1273. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.106.2 → cranelift-codegen-shared-0.107.2}/src/lib.rs +0 -0
  1274. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/LICENSE +0 -0
  1275. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/README.md +0 -0
  1276. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/chaos.rs +0 -0
  1277. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/lib.rs +0 -0
  1278. /data/ext/cargo-vendor/{cranelift-control-0.106.2 → cranelift-control-0.107.2}/src/zero_sized.rs +0 -0
  1279. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/LICENSE +0 -0
  1280. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/README.md +0 -0
  1281. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/boxed_slice.rs +0 -0
  1282. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/iter.rs +0 -0
  1283. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/keys.rs +0 -0
  1284. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/lib.rs +0 -0
  1285. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/list.rs +0 -0
  1286. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/map.rs +0 -0
  1287. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/packed_option.rs +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/primary.rs +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/set.rs +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/sparse.rs +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-entity-0.106.2 → cranelift-entity-0.107.2}/src/unsigned.rs +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/LICENSE +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/README.md +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/frontend.rs +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/lib.rs +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/ssa.rs +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/switch.rs +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-frontend-0.106.2 → cranelift-frontend-0.107.2}/src/variable.rs +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/README.md +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/build.rs +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/bad_converters.isle +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/error1.isle +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/extra_parens.isle +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/impure_expression.isle +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/impure_rhs.isle +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/fail/multi_prio.isle +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/borrows.isle +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/borrows_main.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/iflets.isle +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/iflets_main.rs +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_constructor.isle +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_extractor.isle +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/test.isle +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/link/test_main.rs +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/bound_var.isle +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/conversions.isle +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/conversions_extern.isle +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/let.isle +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/nodebug.isle +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test2.isle +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test3.isle +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/test4.isle +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/pass/tutorial.isle +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/iconst.isle +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/iconst_main.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/let_shadowing.isle +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/ast.rs +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/codegen.rs +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/compile.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/error.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/lexer.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/lib.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/log.rs +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/overlap.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/parser.rs +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/sema.rs +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/serialize.rs +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/src/trie_again.rs +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-isle-0.106.2 → cranelift-isle-0.107.2}/tests/run_tests.rs +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/LICENSE +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/README.md +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/src/lib.rs +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-native-0.106.2 → cranelift-native-0.107.2}/src/riscv.rs +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/LICENSE +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/README.md +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/code_translator/bounds_checks.rs +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/heap.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/module_translator.rs +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/sections_translator.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-wasm-0.106.2 → cranelift-wasm-0.107.2}/src/translation_utils.rs +0 -0
  1359. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/README.md +0 -0
  1360. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/clocks.rs +0 -0
  1361. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/lib.rs +0 -0
  1362. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/src/noop_scheduler.rs +0 -0
  1363. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/clocks.rs +0 -0
  1364. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/common/mod.rs +0 -0
  1365. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/random.rs +0 -0
  1366. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.20 → deterministic-wasi-ctx-0.1.21}/tests/scheduler.rs +0 -0
  1367. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/boolean.rs +0 -0
  1368. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/bootstrap.rs +0 -0
  1369. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock.rs +0 -0
  1370. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_priv.rs +0 -0
  1371. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_reply.rs +0 -0
  1372. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/clock_types.rs +0 -0
  1373. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/dyld_kernel.rs +0 -0
  1374. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/exception_types.rs +0 -0
  1375. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_init.rs +0 -0
  1376. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_time.rs +0 -0
  1377. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/mach_types.rs +0 -0
  1378. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/memory_object_types.rs +0 -0
  1379. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/vm_behavior.rs +0 -0
  1380. /data/ext/cargo-vendor/{mach-0.3.2 → mach2-0.4.2}/src/vm_inherit.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/LICENSE +0 -0
  1382. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/README.md +0 -0
  1383. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/clocks.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/dir.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/error.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/file.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/pipe.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/random.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sched/subscription.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sched.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/snapshots/mod.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/snapshots/preview_0.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/snapshots/preview_1/error.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/string_array.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/clocks.rs +0 -0
  1396. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/dir.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/file.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/mod.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/net.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/sched/unix.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/sched/windows.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/sched.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/sync/stdio.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/table.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/dir.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/file.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/mod.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/net.rs +0 -0
  1409. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/sched/unix.rs +0 -0
  1410. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/sched/windows.rs +0 -0
  1411. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/sched.rs +0 -0
  1412. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/src/tokio/stdio.rs +0 -0
  1413. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/tests/all/main.rs +0 -0
  1414. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/witx/preview0/typenames.witx +0 -0
  1415. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/witx/preview0/wasi_unstable.witx +0 -0
  1416. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/witx/preview1/typenames.witx +0 -0
  1417. /data/ext/cargo-vendor/{wasi-common-19.0.2 → wasi-common-20.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1418. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/LICENSE +0 -0
  1419. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/README.md +0 -0
  1420. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/aliases.rs +0 -0
  1421. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/builder.rs +0 -0
  1422. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/canonicals.rs +0 -0
  1423. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/components.rs +0 -0
  1424. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/exports.rs +0 -0
  1425. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/imports.rs +0 -0
  1426. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/instances.rs +0 -0
  1427. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/modules.rs +0 -0
  1428. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/names.rs +0 -0
  1429. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component/start.rs +0 -0
  1430. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/component.rs +0 -0
  1431. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/code.rs +0 -0
  1432. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/custom.rs +0 -0
  1433. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/data.rs +0 -0
  1434. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/dump.rs +0 -0
  1435. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/elements.rs +0 -0
  1436. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/exports.rs +0 -0
  1437. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/functions.rs +0 -0
  1438. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/globals.rs +0 -0
  1439. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/imports.rs +0 -0
  1440. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/linking.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/memories.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/names.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/producers.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/start.rs +0 -0
  1445. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/tables.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/tags.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core/types.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/core.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/lib.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasm-encoder-0.201.0 → wasm-encoder-0.202.0}/src/raw.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasm-encoder-0.208.1}/LICENSE +0 -0
  1452. /data/ext/cargo-vendor/{wasmprinter-0.201.0 → wasmparser-0.202.0}/LICENSE +0 -0
  1453. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/README.md +0 -0
  1454. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/benches/benchmark.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/examples/simple.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/binary_reader.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/lib.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/limits.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/parser.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/aliases.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/canonicals.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/exports.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/imports.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/instances.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/names.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component/start.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/component.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/branch_hinting.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/code.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/coredumps.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/custom.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/data.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/dylink0.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/elements.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/exports.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/functions.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/globals.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/imports.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/init.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/linking.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/memories.rs +0 -0
  1482. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/names.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/operators.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/producers.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/tables.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/tags.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/types/matches.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core/types.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers/core.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/readers.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/resources.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/component.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/core/canonical.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/core.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/func.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator/names.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/src/validator.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmparser-0.201.0 → wasmparser-0.202.0}/tests/big-module.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmprinter-0.202.0}/LICENSE +0 -0
  1500. /data/ext/cargo-vendor/{wasmprinter-0.201.0 → wasmprinter-0.202.0}/README.md +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-20.0.0}/LICENSE +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/README.md +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/profiling_agent/jitdump.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/profiling_agent/perfmap.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/profiling_agent/vtune.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/profiling_agent.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/code.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/component/resource_table.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/component/storage.rs +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/component/store.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/debug.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/externals.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/limits.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/resources.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/signatures.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/stack.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/store/context.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/store/func_refs.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/trampoline.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/uninhabited.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/unix.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-19.0.2 → wasmtime-20.0.0}/src/runtime/windows.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-asm-macros-19.0.2 → wasmtime-asm-macros-20.0.0}/src/lib.rs +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cache-20.0.0}/LICENSE +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/build.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/src/config/tests.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/src/config.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/src/lib.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/src/tests.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/src/worker/tests.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/src/worker.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-cache-19.0.2 → wasmtime-cache-20.0.0}/tests/cache_write_default_config.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/build.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/src/bindgen.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/src/lib.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/char.wit +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/conventions.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/direct-import.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/empty.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/flags.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/floats.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/function-new.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/integers.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/lists.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/many-arguments.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/multi-return.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/multiversion/root.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/records.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/rename.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/resources-export.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/resources-import.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/share-types.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/simple-functions.wit +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/simple-lists.wit +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/simple-wasi.wit +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/small-anonymous.wit +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/smoke-default.wit +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/smoke-export.wit +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/smoke.wit +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/strings.wit +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/unversioned-foo.wit +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/use-paths.wit +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/variants.wit +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/wat.wit +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-component-macro-19.0.2 → wasmtime-component-macro-20.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-component-util-19.0.2 → wasmtime-component-util-20.0.0}/src/lib.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-cranelift-20.0.0}/LICENSE +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/SECURITY.md +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/gc.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/attr.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/line_program.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/mod.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/refs.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/simulate.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/unit.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/transform/utils.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug/write_debuginfo.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-cranelift-19.0.2 → wasmtime-cranelift-20.0.0}/src/debug.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-19.0.2 → wasmtime-cranelift-20.0.0}/src/isa_builder.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-environ-20.0.0}/LICENSE +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/examples/factc.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/component/dfg.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/component/translate.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/component/types/resources.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/demangling.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/fact/core_types.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/fact/signature.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/fact/traps.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/module_types.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/ref_bits.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/scopevec.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-environ-19.0.2 → wasmtime-environ-20.0.0}/src/stack_map.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-fiber-20.0.0}/LICENSE +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/build.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/lib.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/unix/aarch64.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/unix/arm.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/unix/riscv64.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/unix/s390x.S +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/unix/x86.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/unix/x86_64.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/windows.c +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-fiber-19.0.2 → wasmtime-fiber-20.0.0}/src/windows.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.0}/README.md +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.0}/src/gdb_jit_int.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.0}/src/lib.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-jit-debug-19.0.2 → wasmtime-jit-debug-20.0.0}/src/perf_jitdump.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.0}/src/lib.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.0}/src/libc.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.0}/src/miri.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-19.0.2 → wasmtime-jit-icache-coherence-20.0.0}/src/win.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-types-19.0.2 → wasmtime-runtime-20.0.0}/LICENSE +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/proptest-regressions/instance/allocator/pooling/memory_pool.txt +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/arch/mod.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/component/resources.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/cow.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/debug_builtins.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/helpers.c +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/imports.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/instance/allocator/pooling/memory_pool.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/instance/allocator/pooling/stack_pool.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/mmap.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/mmap_vec.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/module_id.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/mpk/disabled.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/mpk/enabled.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/mpk/mod.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/mpk/pkru.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/mpk/sys.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/store_box.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/custom/capi.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/custom/mod.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/custom/unwind.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/custom/vm.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/miri/mod.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/miri/traphandlers.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/miri/unwind.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/miri/vm.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/mod.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/unix/macos_traphandlers.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/unix/mod.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/unix/unwind.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/unix/vm.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/windows/mmap.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/windows/mod.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/windows/unwind.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/sys/windows/vm.rs +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2/src → wasmtime-runtime-20.0.0/src/threads}/parking_spot.rs +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/traphandlers/backtrace.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-runtime-19.0.2 → wasmtime-runtime-20.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-types-20.0.2}/LICENSE +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-types-19.0.2 → wasmtime-types-20.0.2}/src/error.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-19.0.2 → wasmtime-versioned-export-macros-20.0.0}/src/lib.rs +0 -0
  1660. /data/ext/cargo-vendor/{wast-201.0.0 → wasmtime-wasi-20.0.0}/LICENSE +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/README.md +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/clocks/host.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/clocks.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/error.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/clocks.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/env.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/exit.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/instance_network.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/mod.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/random.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/tcp_create_socket.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/udp.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/host/udp_create_socket.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/random.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/src/stream.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/tests/process_stdin.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/command-extended.wit +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/cli/command.wit +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/cli/environment.wit +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/cli/exit.wit +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/cli/imports.wit +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/cli/run.wit +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/cli/stdio.wit +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/cli/terminal.wit +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/clocks/world.wit +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/filesystem/preopens.wit +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/filesystem/types.wit +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/filesystem/world.wit +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/http/handler.wit +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/http/proxy.wit +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/http/types.wit +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/io/error.wit +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/io/streams.wit +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/io/world.wit +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/random/insecure-seed.wit +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/random/insecure.wit +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/random/random.wit +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/random/world.wit +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/network.wit +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/tcp.wit +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/udp.wit +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/deps/sockets/world.wit +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/wit/test.wit +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/witx/preview0/typenames.witx +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/witx/preview0/wasi_unstable.witx +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/witx/preview1/typenames.witx +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-wasi-19.0.2 → wasmtime-wasi-20.0.0}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-winch-19.0.2 → wasmtime-winch-20.0.0}/LICENSE +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-winch-19.0.2 → wasmtime-winch-20.0.0}/src/lib.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-19.0.2 → wasmtime-wit-bindgen-20.0.0}/src/source.rs +0 -0
  1717. /data/ext/cargo-vendor/{wat-1.201.0 → wast-208.0.1}/LICENSE +0 -0
  1718. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/README.md +0 -0
  1719. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/alias.rs +0 -0
  1720. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/component.rs +0 -0
  1721. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/custom.rs +0 -0
  1722. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/expand.rs +0 -0
  1723. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/export.rs +0 -0
  1724. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/func.rs +0 -0
  1725. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/import.rs +0 -0
  1726. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/instance.rs +0 -0
  1727. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/item_ref.rs +0 -0
  1728. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component/module.rs +0 -0
  1729. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/component.rs +0 -0
  1730. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core/custom.rs +0 -0
  1731. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core/export.rs +0 -0
  1732. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core/global.rs +0 -0
  1733. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core/import.rs +0 -0
  1734. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core/module.rs +0 -0
  1735. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core/resolve/mod.rs +0 -0
  1736. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core/tag.rs +0 -0
  1737. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/core.rs +0 -0
  1738. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/encode.rs +0 -0
  1739. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/error.rs +0 -0
  1740. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/gensym.rs +0 -0
  1741. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/src/lexer.rs +0 -0
  1742. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/comments.rs +0 -0
  1743. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1744. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1745. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
  1746. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1747. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-index.wat +0 -0
  1748. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
  1749. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-name.wat +0 -0
  1750. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
  1751. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-name2.wat +0 -0
  1752. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
  1753. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-name3.wat +0 -0
  1754. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
  1755. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/block1.wat +0 -0
  1756. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/block1.wat.err +0 -0
  1757. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/block2.wat +0 -0
  1758. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/block2.wat.err +0 -0
  1759. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/block3.wat +0 -0
  1760. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/block3.wat.err +0 -0
  1761. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1762. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1763. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1764. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1765. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1766. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1767. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1768. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1769. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1770. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1771. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1772. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1773. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1774. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1775. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1776. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1777. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1778. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1779. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1780. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1781. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1782. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1783. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1784. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1785. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1786. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1787. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1788. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1789. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1790. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1791. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1792. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1793. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1794. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1795. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1796. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1797. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
  1798. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1799. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
  1800. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1801. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
  1802. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1803. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
  1804. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1805. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
  1806. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1807. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
  1808. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1809. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
  1810. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1811. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
  1812. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1813. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
  1814. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1815. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/inline1.wat +0 -0
  1816. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/inline1.wat.err +0 -0
  1817. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
  1818. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1819. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string1.wat +0 -0
  1820. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string1.wat.err +0 -0
  1821. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string10.wat +0 -0
  1822. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string10.wat.err +0 -0
  1823. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string11.wat +0 -0
  1824. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string11.wat.err +0 -0
  1825. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string12.wat +0 -0
  1826. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string12.wat.err +0 -0
  1827. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string13.wat +0 -0
  1828. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string13.wat.err +0 -0
  1829. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string14.wat +0 -0
  1830. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string14.wat.err +0 -0
  1831. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string15.wat +0 -0
  1832. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string15.wat.err +0 -0
  1833. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string16.wat +0 -0
  1834. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string16.wat.err +0 -0
  1835. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string2.wat +0 -0
  1836. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string2.wat.err +0 -0
  1837. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string3.wat +0 -0
  1838. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string3.wat.err +0 -0
  1839. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string4.wat +0 -0
  1840. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string4.wat.err +0 -0
  1841. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string5.wat +0 -0
  1842. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string5.wat.err +0 -0
  1843. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string6.wat +0 -0
  1844. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string6.wat.err +0 -0
  1845. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string7.wat +0 -0
  1846. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string7.wat.err +0 -0
  1847. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string8.wat +0 -0
  1848. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string8.wat.err +0 -0
  1849. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string9.wat +0 -0
  1850. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/string9.wat.err +0 -0
  1851. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/unbalanced.wat +0 -0
  1852. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
  1853. /data/ext/cargo-vendor/{wast-201.0.0 → wast-208.0.1}/tests/recursive.rs +0 -0
  1854. /data/ext/cargo-vendor/{wiggle-19.0.2 → wat-1.208.1}/LICENSE +0 -0
  1855. /data/ext/cargo-vendor/{wat-1.201.0 → wat-1.208.1}/README.md +0 -0
  1856. /data/ext/cargo-vendor/{wat-1.201.0 → wat-1.208.1}/src/lib.rs +0 -0
  1857. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-20.0.0}/LICENSE +0 -0
  1858. /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.0}/README.md +0 -0
  1859. /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.0}/src/error.rs +0 -0
  1860. /data/ext/cargo-vendor/{wiggle-19.0.2 → wiggle-20.0.0}/src/region.rs +0 -0
  1861. /data/ext/cargo-vendor/{wiggle-macro-19.0.2 → wiggle-generate-20.0.0}/LICENSE +0 -0
  1862. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/README.md +0 -0
  1863. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/codegen_settings.rs +0 -0
  1864. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/config.rs +0 -0
  1865. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/funcs.rs +0 -0
  1866. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/lib.rs +0 -0
  1867. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/lifetimes.rs +0 -0
  1868. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/module_trait.rs +0 -0
  1869. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/names.rs +0 -0
  1870. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/types/error.rs +0 -0
  1871. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/types/flags.rs +0 -0
  1872. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/types/handle.rs +0 -0
  1873. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/types/mod.rs +0 -0
  1874. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/types/record.rs +0 -0
  1875. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/types/variant.rs +0 -0
  1876. /data/ext/cargo-vendor/{wiggle-generate-19.0.2 → wiggle-generate-20.0.0}/src/wasmtime.rs +0 -0
  1877. /data/ext/cargo-vendor/{wiggle-macro-19.0.2 → wiggle-macro-20.0.0}/src/lib.rs +0 -0
  1878. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/LICENSE +0 -0
  1879. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/build.rs +0 -0
  1880. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/abi/local.rs +0 -0
  1881. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/codegen/context.rs +0 -0
  1882. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/codegen/control.rs +0 -0
  1883. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/frame/mod.rs +0 -0
  1884. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/isa/aarch64/address.rs +0 -0
  1885. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/isa/reg.rs +0 -0
  1886. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/isa/x64/address.rs +0 -0
  1887. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/isa/x64/regs.rs +0 -0
  1888. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/regalloc.rs +0 -0
  1889. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/regset.rs +0 -0
  1890. /data/ext/cargo-vendor/{winch-codegen-0.17.2 → winch-codegen-0.18.0}/src/stack.rs +0 -0
  1891. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/README.md +0 -0
  1892. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/ast/toposort.rs +0 -0
  1893. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/docs.rs +0 -0
  1894. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/src/live.rs +0 -0
  1895. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/comments.wit +0 -0
  1896. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/comments.wit.json +0 -0
  1897. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  1898. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  1899. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include/root.wit +0 -0
  1900. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/complex-include.wit.json +0 -0
  1901. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  1902. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource/foo.wit +0 -0
  1903. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/cross-package-resource.wit.json +0 -0
  1904. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  1905. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  1906. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1/join.wit +0 -0
  1907. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/diamond1.wit.json +0 -0
  1908. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  1909. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  1910. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
  1911. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
  1912. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/empty.wit +0 -0
  1913. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/empty.wit.json +0 -0
  1914. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  1915. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  1916. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  1917. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  1918. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  1919. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  1920. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  1921. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps/root.wit +0 -0
  1922. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  1923. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  1924. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  1925. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  1926. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  1927. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  1928. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  1929. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  1930. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union/root.wit +0 -0
  1931. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps-union.wit.json +0 -0
  1932. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/foreign-deps.wit.json +0 -0
  1933. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  1934. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  1935. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps/world.wit +0 -0
  1936. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/ignore-files-deps.wit.json +0 -0
  1937. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap1.wit +0 -0
  1938. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap1.wit.json +0 -0
  1939. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap2.wit +0 -0
  1940. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/import-export-overlap2.wit.json +0 -0
  1941. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/include-reps.wit +0 -0
  1942. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/include-reps.wit.json +0 -0
  1943. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kebab-name-include-with.wit +0 -0
  1944. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
  1945. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/a.wit +0 -0
  1946. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
  1947. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
  1948. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
  1949. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
  1950. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/kinds-of-deps.wit.json +0 -0
  1951. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names/a.wit +0 -0
  1952. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names/b.wit +0 -0
  1953. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/many-names.wit.json +0 -0
  1954. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/bar.wit +0 -0
  1955. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/cycle-a.wit +0 -0
  1956. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/cycle-b.wit +0 -0
  1957. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file/foo.wit +0 -0
  1958. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/multi-file.wit.json +0 -0
  1959. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  1960. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  1961. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  1962. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax1.wit +0 -0
  1963. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax1.wit.json +0 -0
  1964. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax3.wit +0 -0
  1965. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax3.wit.json +0 -0
  1966. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax4.wit +0 -0
  1967. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/package-syntax4.wit.json +0 -0
  1968. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  1969. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  1970. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/async.wit.result +0 -0
  1971. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  1972. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function.wit +0 -0
  1973. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  1974. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
  1975. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  1976. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
  1977. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  1978. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
  1979. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  1980. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
  1981. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  1982. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  1983. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  1984. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  1985. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  1986. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  1987. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  1988. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  1989. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  1990. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  1991. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  1992. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  1993. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  1994. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  1995. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  1996. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  1997. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  1998. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  1999. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2000. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2001. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2002. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2003. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2004. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2005. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2006. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2007. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2008. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2009. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2010. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2011. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2012. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2013. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2014. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2015. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2016. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2017. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2018. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2019. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2020. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2021. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2022. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2023. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2024. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2025. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2026. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2027. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2028. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2029. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2030. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2031. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2032. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2033. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2034. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2035. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2036. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  2037. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle.wit +0 -0
  2038. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2039. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle2.wit +0 -0
  2040. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle3.wit +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle4.wit +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle5.wit +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/export-twice.wit +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-twice.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2090. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2091. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2092. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2093. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2094. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2095. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2096. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2097. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/keyword.wit +0 -0
  2098. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2099. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/missing-package.wit +0 -0
  2100. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2101. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2102. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2103. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
  2104. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2105. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2106. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2107. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2108. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2109. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2110. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2111. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2112. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2113. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2114. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2115. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2116. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2117. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2118. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2119. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2120. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2121. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2122. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2123. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2124. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2125. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2126. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2127. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2128. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2129. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2130. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2131. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2132. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2133. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2134. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2135. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2136. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2137. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2138. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2139. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2140. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2165. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2166. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2167. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2168. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2169. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2170. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2171. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2172. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2173. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2174. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2175. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2176. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/random.wit +0 -0
  2177. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/random.wit.json +0 -0
  2178. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-empty.wit +0 -0
  2179. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-empty.wit.json +0 -0
  2180. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
  2181. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-borrow.wit.json +0 -0
  2182. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2183. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2184. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-borrow.wit +0 -0
  2185. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-borrow.wit.json +0 -0
  2186. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-own.wit +0 -0
  2187. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources-return-own.wit.json +0 -0
  2188. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources.wit +0 -0
  2189. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources.wit.json +0 -0
  2190. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources1.wit +0 -0
  2191. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/resources1.wit.json +0 -0
  2192. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/same-name-import-export.wit +0 -0
  2193. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/same-name-import-export.wit.json +0 -0
  2194. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/shared-types.wit +0 -0
  2195. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/shared-types.wit.json +0 -0
  2196. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/simple-wasm-text.wat +0 -0
  2197. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/simple-wasm-text.wit.json +0 -0
  2198. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/stress-export-elaborate.wit +0 -0
  2199. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2200. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/type-then-eof.wit +0 -0
  2201. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/type-then-eof.wit.json +0 -0
  2202. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/union-fuzz-1.wit +0 -0
  2203. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/union-fuzz-1.wit.json +0 -0
  2204. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use-chain.wit +0 -0
  2205. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use-chain.wit.json +0 -0
  2206. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use.wit +0 -0
  2207. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/use.wit.json +0 -0
  2208. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2209. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2210. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions/foo.wit +0 -0
  2211. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/versions.wit.json +0 -0
  2212. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/wasi.wit.json +0 -0
  2213. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-diamond.wit +0 -0
  2214. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-diamond.wit.json +0 -0
  2215. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-iface-no-collide.wit +0 -0
  2216. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2217. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import1.wit +0 -0
  2218. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import1.wit.json +0 -0
  2219. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import2.wit +0 -0
  2220. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import2.wit.json +0 -0
  2221. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import3.wit +0 -0
  2222. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-implicit-import3.wit.json +0 -0
  2223. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-same-fields4.wit +0 -0
  2224. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-same-fields4.wit.json +0 -0
  2225. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-funcs.wit +0 -0
  2226. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2227. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-resources.wit +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/world-top-level-resources.wit.json +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-union-dedup.wit +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-with-types.wit +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.201.0 → wit-parser-0.202.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -1,4770 +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 $I8)))
171
- (construct_overflow_op (CC.O) (x64_mul8_with_flags_paired $false x y)))
172
-
173
- (rule 3 (lower (umul_overflow x y @ (value_type (ty_int_ref_16_to_64 ty))))
174
- (construct_overflow_op (CC.O) (x64_mul_lo_with_flags_paired ty $false x y)))
175
-
176
- ;;;; Rules for `smul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
177
-
178
- (rule 2 (lower (smul_overflow x y @ (value_type $I8)))
179
- (construct_overflow_op (CC.O) (x64_mul8_with_flags_paired $true x y)))
180
-
181
- (rule 3 (lower (smul_overflow x y @ (value_type (ty_int_ref_16_to_64 ty))))
182
- (construct_overflow_op (CC.O) (x64_mul_lo_with_flags_paired ty $true x y)))
183
-
184
- ;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
185
-
186
- (rule (lower (has_type (multi_lane 8 16)
187
- (sadd_sat x y)))
188
- (x64_paddsb x y))
189
-
190
- (rule (lower (has_type (multi_lane 16 8)
191
- (sadd_sat x y)))
192
- (x64_paddsw x y))
193
-
194
- ;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
195
-
196
- (rule (lower (has_type (multi_lane 8 16)
197
- (uadd_sat x y)))
198
- (x64_paddusb x y))
199
-
200
- (rule (lower (has_type (multi_lane 16 8)
201
- (uadd_sat x y)))
202
- (x64_paddusw x y))
203
-
204
- ;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
205
-
206
- ;; `i64` and smaller.
207
-
208
- ;; Sub two registers.
209
- (rule -3 (lower (has_type (fits_in_64 ty)
210
- (isub x y)))
211
- (x64_sub ty x y))
212
-
213
- ;; SSE.
214
-
215
- (rule (lower (has_type (multi_lane 8 16)
216
- (isub x y)))
217
- (x64_psubb x y))
218
-
219
- (rule (lower (has_type (multi_lane 16 8)
220
- (isub x y)))
221
- (x64_psubw x y))
222
-
223
- (rule (lower (has_type (multi_lane 32 4)
224
- (isub x y)))
225
- (x64_psubd x y))
226
-
227
- (rule (lower (has_type (multi_lane 64 2)
228
- (isub x y)))
229
- (x64_psubq x y))
230
-
231
- ;; `i128`
232
- (rule 1 (lower (has_type $I128 (isub x y)))
233
- ;; Get the high/low registers for `x`.
234
- (let ((x_regs ValueRegs x)
235
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
236
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
237
- ;; Get the high/low registers for `y`.
238
- (let ((y_regs ValueRegs y)
239
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
240
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
241
- ;; Do a sub followed by an sub-with-borrow.
242
- (with_flags (x64_sub_with_flags_paired $I64 x_lo y_lo)
243
- (x64_sbb_paired $I64 x_hi y_hi)))))
244
-
245
- ;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
246
-
247
- (rule (lower (has_type (multi_lane 8 16)
248
- (ssub_sat x y)))
249
- (x64_psubsb x y))
250
-
251
- (rule (lower (has_type (multi_lane 16 8)
252
- (ssub_sat x y)))
253
- (x64_psubsw x y))
254
-
255
- ;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
256
-
257
- (rule (lower (has_type (multi_lane 8 16)
258
- (usub_sat x y)))
259
- (x64_psubusb x y))
260
-
261
- (rule (lower (has_type (multi_lane 16 8)
262
- (usub_sat x y)))
263
- (x64_psubusw x y))
264
-
265
- ;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
266
-
267
- ;; `{i,b}64` and smaller.
268
-
269
- ;; And two registers.
270
- (rule 0 (lower (has_type ty (band x y)))
271
- (if (ty_int_ref_scalar_64 ty))
272
- (x64_and ty x y))
273
-
274
- ;; The above case automatically handles when the rhs is an immediate or a
275
- ;; sinkable load, but additionally handle the lhs here.
276
-
277
- (rule 1 (lower (has_type ty (band (sinkable_load x) y)))
278
- (if (ty_int_ref_scalar_64 ty))
279
- (x64_and ty y x))
280
-
281
- (rule 2 (lower (has_type ty (band (simm32_from_value x) y)))
282
- (if (ty_int_ref_scalar_64 ty))
283
- (x64_and ty y x))
284
-
285
- ;; f32 and f64
286
-
287
- (rule 5 (lower (has_type (ty_scalar_float ty) (band x y)))
288
- (sse_and ty x y))
289
-
290
- ;; SSE.
291
-
292
- (decl sse_and (Type Xmm XmmMem) Xmm)
293
- (rule (sse_and $F32X4 x y) (x64_andps x y))
294
- (rule (sse_and $F64X2 x y) (x64_andpd x y))
295
- (rule (sse_and $F32 x y) (x64_andps x y))
296
- (rule (sse_and $F64 x y) (x64_andpd x y))
297
- (rule -1 (sse_and (multi_lane _bits _lanes) x y) (x64_pand x y))
298
-
299
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
300
- (band x y)))
301
- (sse_and ty x y))
302
-
303
- ;; `i128`.
304
-
305
- (decl and_i128 (ValueRegs ValueRegs) ValueRegs)
306
- (rule (and_i128 x y)
307
- (let ((x_regs ValueRegs x)
308
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
309
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
310
- (y_regs ValueRegs y)
311
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
312
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
313
- (value_gprs (x64_and $I64 x_lo y_lo)
314
- (x64_and $I64 x_hi y_hi))))
315
-
316
- (rule 7 (lower (has_type $I128 (band x y)))
317
- (and_i128 x y))
318
-
319
- ;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
320
- ;; by Cranelift's `band_not` instruction that is legalized into the simpler
321
- ;; forms early on.
322
-
323
- (decl sse_and_not (Type Xmm XmmMem) Xmm)
324
- (rule (sse_and_not $F32X4 x y) (x64_andnps x y))
325
- (rule (sse_and_not $F64X2 x y) (x64_andnpd x y))
326
- (rule -1 (sse_and_not (multi_lane _bits _lanes) x y) (x64_pandn x y))
327
-
328
- ;; Note the flipping of operands below as we're match
329
- ;;
330
- ;; (band x (bnot y))
331
- ;;
332
- ;; while x86 does
333
- ;;
334
- ;; pandn(x, y) = and(not(x), y)
335
- (rule 8 (lower (has_type ty @ (multi_lane _bits _lane) (band x (bnot y))))
336
- (sse_and_not ty y x))
337
- (rule 9 (lower (has_type ty @ (multi_lane _bits _lane) (band (bnot y) x)))
338
- (sse_and_not ty y x))
339
-
340
- (rule 10 (lower (has_type ty (band x (bnot y))))
341
- (if (ty_int_ref_scalar_64 ty))
342
- (if-let $true (use_bmi1))
343
- ;; the first argument is the one that gets inverted with andn
344
- (x64_andn ty y x))
345
- (rule 11 (lower (has_type ty (band (bnot y) x)))
346
- (if (ty_int_ref_scalar_64 ty))
347
- (if-let $true (use_bmi1))
348
- (x64_andn ty y x))
349
-
350
- ;; Specialization of `blsr` for BMI1
351
-
352
- (decl pure partial val_minus_one (Value) Value)
353
- (rule 0 (val_minus_one (isub x (u64_from_iconst 1))) x)
354
- (rule 0 (val_minus_one (iadd x (i64_from_iconst -1))) x)
355
- (rule 1 (val_minus_one (iadd (i64_from_iconst -1) x)) x)
356
-
357
- (rule 12 (lower (has_type (ty_32_or_64 ty) (band x y)))
358
- (if-let $true (use_bmi1))
359
- (if-let x (val_minus_one y))
360
- (x64_blsr ty x))
361
- (rule 13 (lower (has_type (ty_32_or_64 ty) (band y x)))
362
- (if-let $true (use_bmi1))
363
- (if-let x (val_minus_one y))
364
- (x64_blsr ty x))
365
-
366
- ;; Specialization of `blsi` for BMI1
367
-
368
- (rule 14 (lower (has_type (ty_32_or_64 ty) (band (ineg x) x)))
369
- (if-let $true (use_bmi1))
370
- (x64_blsi ty x))
371
- (rule 15 (lower (has_type (ty_32_or_64 ty) (band x (ineg x))))
372
- (if-let $true (use_bmi1))
373
- (x64_blsi ty x))
374
-
375
- ;; Specialization of `bzhi` for BMI2
376
- ;;
377
- ;; The `bzhi` instruction clears all bits indexed by the second operand of the
378
- ;; first operand. This is pattern-matched here with a `band` against a mask
379
- ;; which is generated to be N bits large. Note that if the index is larger than
380
- ;; the bit-width of the type then `bzhi` doesn't have the same semantics as
381
- ;; `ishl`, so an `and` instruction is required to mask the index to match the
382
- ;; semantics of Cranelift's `ishl`.
383
-
384
- (rule 16 (lower (has_type (ty_32_or_64 ty) (band x y)))
385
- (if-let $true (use_bmi2))
386
- (if-let (ishl (u64_from_iconst 1) index) (val_minus_one y))
387
- (x64_bzhi ty x (x64_and ty index (RegMemImm.Imm (u32_sub (ty_bits ty) 1)))))
388
-
389
- ;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
390
-
391
- ;; `{i,b}64` and smaller.
392
-
393
- ;; Or two registers.
394
- (rule 0 (lower (has_type ty (bor x y)))
395
- (if (ty_int_ref_scalar_64 ty))
396
- (x64_or ty x y))
397
-
398
- ;; Handle immediates/sinkable loads on the lhs in addition to the automatic
399
- ;; handling of the rhs above
400
-
401
- (rule 1 (lower (has_type ty (bor (sinkable_load x) y)))
402
- (if (ty_int_ref_scalar_64 ty))
403
- (x64_or ty y x))
404
-
405
- (rule 2 (lower (has_type ty (bor (simm32_from_value x) y)))
406
- (if (ty_int_ref_scalar_64 ty))
407
- (x64_or ty y x))
408
-
409
- ;; f32 and f64
410
-
411
- (rule 5 (lower (has_type (ty_scalar_float ty) (bor x y)))
412
- (sse_or ty x y))
413
-
414
- ;; SSE.
415
-
416
- (decl sse_or (Type Xmm XmmMem) Xmm)
417
- (rule (sse_or $F32X4 x y) (x64_orps x y))
418
- (rule (sse_or $F64X2 x y) (x64_orpd x y))
419
- (rule (sse_or $F32 x y) (x64_orps x y))
420
- (rule (sse_or $F64 x y) (x64_orpd x y))
421
- (rule -1 (sse_or (multi_lane _bits _lanes) x y) (x64_por x y))
422
-
423
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
424
- (bor x y)))
425
- (sse_or ty x y))
426
-
427
- ;; `{i,b}128`.
428
-
429
- (decl or_i128 (ValueRegs ValueRegs) ValueRegs)
430
- (rule (or_i128 x y)
431
- (let ((x_lo Gpr (value_regs_get_gpr x 0))
432
- (x_hi Gpr (value_regs_get_gpr x 1))
433
- (y_lo Gpr (value_regs_get_gpr y 0))
434
- (y_hi Gpr (value_regs_get_gpr y 1)))
435
- (value_gprs (x64_or $I64 x_lo y_lo)
436
- (x64_or $I64 x_hi y_hi))))
437
-
438
- (rule 7 (lower (has_type $I128 (bor x y)))
439
- (or_i128 x y))
440
-
441
- ;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
442
-
443
- ;; `{i,b}64` and smaller.
444
-
445
- ;; Xor two registers.
446
- (rule 0 (lower (has_type ty (bxor x y)))
447
- (if (ty_int_ref_scalar_64 ty))
448
- (x64_xor ty x y))
449
-
450
- ;; Handle xor with lhs immediates/sinkable loads in addition to the automatic
451
- ;; handling of the rhs above.
452
-
453
- (rule 1 (lower (has_type ty (bxor (sinkable_load x) y)))
454
- (if (ty_int_ref_scalar_64 ty))
455
- (x64_xor ty y x))
456
-
457
- (rule 4 (lower (has_type ty (bxor (simm32_from_value x) y)))
458
- (if (ty_int_ref_scalar_64 ty))
459
- (x64_xor ty y x))
460
-
461
- ;; f32 and f64
462
-
463
- (rule 5 (lower (has_type (ty_scalar_float ty) (bxor x y)))
464
- (x64_xor_vector ty x y))
465
-
466
- ;; SSE.
467
-
468
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes) (bxor x y)))
469
- (x64_xor_vector ty x y))
470
-
471
- ;; `{i,b}128`.
472
-
473
- (rule 7 (lower (has_type $I128 (bxor x y)))
474
- (let ((x_regs ValueRegs x)
475
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
476
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
477
- (y_regs ValueRegs y)
478
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
479
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
480
- (value_gprs (x64_xor $I64 x_lo y_lo)
481
- (x64_xor $I64 x_hi y_hi))))
482
-
483
- ;; Specialization of `blsmsk` for BMI1
484
-
485
- (rule 8 (lower (has_type (ty_32_or_64 ty) (bxor x y)))
486
- (if-let $true (use_bmi1))
487
- (if-let x (val_minus_one y))
488
- (x64_blsmsk ty x))
489
- (rule 9 (lower (has_type (ty_32_or_64 ty) (bxor y x)))
490
- (if-let $true (use_bmi1))
491
- (if-let x (val_minus_one y))
492
- (x64_blsmsk ty x))
493
-
494
- ;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
495
-
496
- ;; `i64` and smaller.
497
-
498
- (rule -1 (lower (has_type (fits_in_64 ty) (ishl src amt)))
499
- (x64_shl ty src (put_masked_in_imm8_gpr amt ty)))
500
-
501
- ;; `i128`.
502
-
503
- (decl shl_i128 (ValueRegs Gpr) ValueRegs)
504
- (rule (shl_i128 src amt)
505
- ;; Unpack the registers that make up the 128-bit value being shifted.
506
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
507
- (src_hi Gpr (value_regs_get_gpr src 1))
508
- ;; Do two 64-bit shifts.
509
- (lo_shifted Gpr (x64_shl $I64 src_lo amt))
510
- (hi_shifted Gpr (x64_shl $I64 src_hi amt))
511
- ;; `src_lo >> (64 - amt)` are the bits to carry over from the lo
512
- ;; into the hi.
513
- (carry Gpr (x64_shr $I64
514
- src_lo
515
- (x64_sub $I64
516
- (imm $I64 64)
517
- amt)))
518
- (zero Gpr (imm $I64 0))
519
- ;; Nullify the carry if we are shifting in by a multiple of 128.
520
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64)
521
- (RegMemImm.Imm 127)
522
- amt)
523
- (cmove $I64
524
- (CC.Z)
525
- zero
526
- carry)))
527
- ;; Add the carry into the high half.
528
- (hi_shifted_ Gpr (x64_or $I64 carry_ hi_shifted)))
529
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
530
- ;; (modulo 128), then the low bits are zero and the high bits are our
531
- ;; low bits.
532
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
533
- (consumes_flags_concat
534
- (cmove $I64 (CC.Z) lo_shifted zero)
535
- (cmove $I64 (CC.Z) hi_shifted_ lo_shifted)))))
536
-
537
- (rule (lower (has_type $I128 (ishl src amt)))
538
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
539
- ;; amount to the value's bit width.
540
- (let ((amt_ Gpr (lo_gpr amt)))
541
- (shl_i128 src amt_)))
542
-
543
- ;; SSE.
544
-
545
- ;; Since the x86 instruction set does not have any 8x16 shift instructions (even
546
- ;; in higher feature sets like AVX), we lower the `ishl.i8x16` to a sequence of
547
- ;; instructions. The basic idea, whether the amount to shift by is an immediate
548
- ;; or not, is to use a 16x8 shift and then mask off the incorrect bits to 0s.
549
- (rule (lower (has_type ty @ $I8X16 (ishl src amt)))
550
- (let (
551
- ;; Mask the amount to ensure wrapping behaviour
552
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
553
- ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
554
- ;; correct for half of the lanes; the others must be fixed up with
555
- ;; the mask below.
556
- (unmasked Xmm (x64_psllw src (mov_rmi_to_xmm masked_amt)))
557
- (mask_addr SyntheticAmode (ishl_i8x16_mask masked_amt))
558
- (mask Reg (x64_load $I8X16 mask_addr (ExtKind.None))))
559
- (sse_and $I8X16 unmasked (RegMem.Reg mask))))
560
-
561
- ;; Get the address of the mask to use when fixing up the lanes that weren't
562
- ;; correctly generated by the 16x8 shift.
563
- (decl ishl_i8x16_mask (RegMemImm) SyntheticAmode)
564
-
565
- ;; When the shift amount is known, we can statically (i.e. at compile time)
566
- ;; determine the mask to use and only emit that.
567
- (decl ishl_i8x16_mask_for_const (u32) SyntheticAmode)
568
- (extern constructor ishl_i8x16_mask_for_const ishl_i8x16_mask_for_const)
569
- (rule (ishl_i8x16_mask (RegMemImm.Imm amt))
570
- (ishl_i8x16_mask_for_const amt))
571
-
572
- ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
573
- ;; time) find the correct mask offset in the table. We use `lea` to find the
574
- ;; base address of the mask table and then complex addressing to offset to the
575
- ;; right mask: `base_address + amt << 4`
576
- (decl ishl_i8x16_mask_table () SyntheticAmode)
577
- (extern constructor ishl_i8x16_mask_table ishl_i8x16_mask_table)
578
- (rule (ishl_i8x16_mask (RegMemImm.Reg amt))
579
- (let ((mask_table SyntheticAmode (ishl_i8x16_mask_table))
580
- (base_mask_addr Gpr (x64_lea $I64 mask_table))
581
- (mask_offset Gpr (x64_shl $I64 amt
582
- (imm8_to_imm8_gpr 4))))
583
- (Amode.ImmRegRegShift 0
584
- base_mask_addr
585
- mask_offset
586
- 0
587
- (mem_flags_trusted))))
588
-
589
- (rule (ishl_i8x16_mask (RegMemImm.Mem amt))
590
- (ishl_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
591
-
592
- ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
593
-
594
- (rule (lower (has_type ty @ $I16X8 (ishl src amt)))
595
- (x64_psllw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
596
-
597
- (rule (lower (has_type ty @ $I32X4 (ishl src amt)))
598
- (x64_pslld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
599
-
600
- (rule (lower (has_type ty @ $I64X2 (ishl src amt)))
601
- (x64_psllq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
602
-
603
- ;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
604
-
605
- ;; `i64` and smaller.
606
-
607
- (rule -1 (lower (has_type (fits_in_64 ty) (ushr src amt)))
608
- (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Zero))))
609
- (x64_shr ty src_ (put_masked_in_imm8_gpr amt ty))))
610
-
611
- ;; `i128`.
612
-
613
- (decl shr_i128 (ValueRegs Gpr) ValueRegs)
614
- (rule (shr_i128 src amt)
615
- ;; Unpack the lo/hi halves of `src`.
616
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
617
- (src_hi Gpr (value_regs_get_gpr src 1))
618
- ;; Do a shift on each half.
619
- (lo_shifted Gpr (x64_shr $I64 src_lo amt))
620
- (hi_shifted Gpr (x64_shr $I64 src_hi amt))
621
- ;; `src_hi << (64 - amt)` are the bits to carry over from the hi
622
- ;; into the lo.
623
- (carry Gpr (x64_shl $I64
624
- src_hi
625
- (x64_sub $I64
626
- (imm $I64 64)
627
- amt)))
628
- ;; Share the zero value to reduce register pressure
629
- (zero Gpr (imm $I64 0))
630
-
631
- ;; Nullify the carry if we are shifting by a multiple of 128.
632
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
633
- (cmove $I64 (CC.Z) zero carry)))
634
- ;; Add the carry bits into the lo.
635
- (lo_shifted_ Gpr (x64_or $I64 carry_ lo_shifted)))
636
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
637
- ;; (modulo 128), then the hi bits are zero and the lo bits are what
638
- ;; would otherwise be our hi bits.
639
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
640
- (consumes_flags_concat
641
- (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
642
- (cmove $I64 (CC.Z) hi_shifted zero)))))
643
-
644
- (rule (lower (has_type $I128 (ushr src amt)))
645
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
646
- ;; amount to the value's bit width.
647
- (let ((amt_ Gpr (lo_gpr amt)))
648
- (shr_i128 src amt_)))
649
-
650
- ;; SSE.
651
-
652
- ;; There are no 8x16 shifts in x64. Do the same 16x8-shift-and-mask thing we do
653
- ;; with 8x16 `ishl`.
654
- (rule (lower (has_type ty @ $I8X16 (ushr src amt)))
655
- (let (
656
- ;; Mask the amount to ensure wrapping behaviour
657
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
658
- ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
659
- ;; correct for half of the lanes; the others must be fixed up with
660
- ;; the mask below.
661
- (unmasked Xmm (x64_psrlw src (mov_rmi_to_xmm masked_amt))))
662
- (sse_and $I8X16
663
- unmasked
664
- (ushr_i8x16_mask masked_amt))))
665
-
666
- ;; Get the address of the mask to use when fixing up the lanes that weren't
667
- ;; correctly generated by the 16x8 shift.
668
- (decl ushr_i8x16_mask (RegMemImm) SyntheticAmode)
669
-
670
- ;; When the shift amount is known, we can statically (i.e. at compile time)
671
- ;; determine the mask to use and only emit that.
672
- (decl ushr_i8x16_mask_for_const (u32) SyntheticAmode)
673
- (extern constructor ushr_i8x16_mask_for_const ushr_i8x16_mask_for_const)
674
- (rule (ushr_i8x16_mask (RegMemImm.Imm amt))
675
- (ushr_i8x16_mask_for_const amt))
676
-
677
- ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
678
- ;; time) find the correct mask offset in the table. We use `lea` to find the
679
- ;; base address of the mask table and then complex addressing to offset to the
680
- ;; right mask: `base_address + amt << 4`
681
- (decl ushr_i8x16_mask_table () SyntheticAmode)
682
- (extern constructor ushr_i8x16_mask_table ushr_i8x16_mask_table)
683
- (rule (ushr_i8x16_mask (RegMemImm.Reg amt))
684
- (let ((mask_table SyntheticAmode (ushr_i8x16_mask_table))
685
- (base_mask_addr Gpr (x64_lea $I64 mask_table))
686
- (mask_offset Gpr (x64_shl $I64
687
- amt
688
- (imm8_to_imm8_gpr 4))))
689
- (Amode.ImmRegRegShift 0
690
- base_mask_addr
691
- mask_offset
692
- 0
693
- (mem_flags_trusted))))
694
-
695
- (rule (ushr_i8x16_mask (RegMemImm.Mem amt))
696
- (ushr_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
697
-
698
- ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
699
-
700
- (rule (lower (has_type ty @ $I16X8 (ushr src amt)))
701
- (x64_psrlw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
702
-
703
- (rule (lower (has_type ty @ $I32X4 (ushr src amt)))
704
- (x64_psrld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
705
-
706
- (rule (lower (has_type ty @ $I64X2 (ushr src amt)))
707
- (x64_psrlq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
708
-
709
- (decl mask_xmm_shift (Type Value) RegMemImm)
710
- (rule (mask_xmm_shift ty amt)
711
- (gpr_to_reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
712
- (rule 1 (mask_xmm_shift ty (iconst n))
713
- (RegMemImm.Imm (shift_amount_masked ty n)))
714
-
715
- ;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
716
-
717
- ;; `i64` and smaller.
718
-
719
- (rule -1 (lower (has_type (fits_in_64 ty) (sshr src amt)))
720
- (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Sign))))
721
- (x64_sar ty src_ (put_masked_in_imm8_gpr amt ty))))
722
-
723
- ;; `i128`.
724
-
725
- (decl sar_i128 (ValueRegs Gpr) ValueRegs)
726
- (rule (sar_i128 src amt)
727
- ;; Unpack the low/high halves of `src`.
728
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
729
- (src_hi Gpr (value_regs_get_gpr src 1))
730
- ;; Do a shift of each half. NB: the low half uses an unsigned shift
731
- ;; because its MSB is not a sign bit.
732
- (lo_shifted Gpr (x64_shr $I64 src_lo amt))
733
- (hi_shifted Gpr (x64_sar $I64 src_hi amt))
734
- ;; `src_hi << (64 - amt)` are the bits to carry over from the low
735
- ;; half to the high half.
736
- (carry Gpr (x64_shl $I64
737
- src_hi
738
- (x64_sub $I64
739
- (imm $I64 64)
740
- amt)))
741
- ;; Nullify the carry if we are shifting by a multiple of 128.
742
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
743
- (cmove $I64 (CC.Z) (imm $I64 0) carry)))
744
- ;; Add the carry into the low half.
745
- (lo_shifted_ Gpr (x64_or $I64 lo_shifted carry_))
746
- ;; Get all sign bits.
747
- (sign_bits Gpr (x64_sar $I64 src_hi (imm8_to_imm8_gpr 63))))
748
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
749
- ;; (modulo 128), then the hi bits are all sign bits and the lo bits are
750
- ;; what would otherwise be our hi bits.
751
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
752
- (consumes_flags_concat
753
- (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
754
- (cmove $I64 (CC.Z) hi_shifted sign_bits)))))
755
-
756
- (rule (lower (has_type $I128 (sshr src amt)))
757
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
758
- ;; amount to the value's bit width.
759
- (let ((amt_ Gpr (lo_gpr amt)))
760
- (sar_i128 src amt_)))
761
-
762
- ;; SSE.
763
-
764
- ;; Since the x86 instruction set does not have an 8x16 shift instruction and the
765
- ;; approach used for `ishl` and `ushr` cannot be easily used (the masks do not
766
- ;; preserve the sign), we use a different approach here: separate the low and
767
- ;; high lanes, shift them separately, and merge them into the final result.
768
- ;;
769
- ;; Visually, this looks like the following, where `src.i8x16 = [s0, s1, ...,
770
- ;; s15]:
771
- ;;
772
- ;; lo.i16x8 = [(s0, s0), (s1, s1), ..., (s7, s7)]
773
- ;; shifted_lo.i16x8 = shift each lane of `low`
774
- ;; hi.i16x8 = [(s8, s8), (s9, s9), ..., (s15, s15)]
775
- ;; shifted_hi.i16x8 = shift each lane of `high`
776
- ;; result = [s0'', s1'', ..., s15'']
777
- (rule (lower (has_type ty @ $I8X16 (sshr src amt @ (value_type amt_ty))))
778
- (let ((src_ Xmm (put_in_xmm src))
779
- ;; Mask the amount to ensure wrapping behaviour
780
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
781
- ;; In order for `packsswb` later to only use the high byte of each
782
- ;; 16x8 lane, we shift right an extra 8 bits, relying on `psraw` to
783
- ;; fill in the upper bits appropriately.
784
- (lo Xmm (x64_punpcklbw src_ src_))
785
- (hi Xmm (x64_punpckhbw src_ src_))
786
- (amt_ XmmMemImm (sshr_i8x16_bigger_shift amt_ty masked_amt))
787
- (shifted_lo Xmm (x64_psraw lo amt_))
788
- (shifted_hi Xmm (x64_psraw hi amt_)))
789
- (x64_packsswb shifted_lo shifted_hi)))
790
-
791
- (decl sshr_i8x16_bigger_shift (Type RegMemImm) XmmMemImm)
792
- (rule (sshr_i8x16_bigger_shift _ty (RegMemImm.Imm i))
793
- (xmm_mem_imm_new (RegMemImm.Imm (u32_add i 8))))
794
- (rule (sshr_i8x16_bigger_shift ty (RegMemImm.Reg r))
795
- (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
796
- r
797
- (RegMemImm.Imm 8)))))
798
- (rule (sshr_i8x16_bigger_shift ty rmi @ (RegMemImm.Mem _m))
799
- (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
800
- (imm ty 8)
801
- rmi))))
802
-
803
- ;; `sshr.{i16x8,i32x4}` can be a simple `psra{w,d}`, we just have to make sure
804
- ;; that if the shift amount is in a register, it is in an XMM register.
805
-
806
- (rule (lower (has_type ty @ $I16X8 (sshr src amt)))
807
- (x64_psraw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
808
-
809
- (rule (lower (has_type ty @ $I32X4 (sshr src amt)))
810
- (x64_psrad src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
811
-
812
- ;; The `sshr.i64x2` CLIF instruction has no single x86 instruction in the older
813
- ;; feature sets. To remedy this, a small dance is done with an unsigned right
814
- ;; shift plus some extra ops.
815
- (rule 3 (lower (has_type ty @ $I64X2 (sshr src (iconst n))))
816
- (if-let $true (use_avx512vl))
817
- (if-let $true (use_avx512f))
818
- (x64_vpsraq_imm src (shift_amount_masked ty n)))
819
-
820
- (rule 2 (lower (has_type ty @ $I64X2 (sshr src amt)))
821
- (if-let $true (use_avx512vl))
822
- (if-let $true (use_avx512f))
823
- (let ((masked Gpr (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
824
- (x64_vpsraq src (x64_movd_to_xmm masked))))
825
-
826
- (rule 1 (lower (has_type $I64X2 (sshr src (iconst (u64_from_imm64 (u64_as_u32 amt))))))
827
- (lower_i64x2_sshr_imm src (u32_and amt 63)))
828
-
829
- (rule (lower (has_type $I64X2 (sshr src amt)))
830
- (lower_i64x2_sshr_gpr src (x64_and $I64 amt (RegMemImm.Imm 63))))
831
-
832
- (decl lower_i64x2_sshr_imm (Xmm u32) Xmm)
833
-
834
- ;; If the shift amount is less than 32 then do an sshr with 32-bit lanes to
835
- ;; produce the upper halves of each result, followed by a ushr of 64-bit lanes
836
- ;; to produce the lower halves of each result. Interleave results at the end.
837
- (rule 2 (lower_i64x2_sshr_imm vec imm)
838
- (if-let $true (u64_lt imm 32))
839
- (let (
840
- (high32 Xmm (x64_psrad vec (xmi_imm imm)))
841
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
842
- (low32 Xmm (x64_psrlq vec (xmi_imm imm)))
843
- (low32 Xmm (x64_pshufd low32 0b11_10_10_00))
844
- )
845
- (x64_punpckldq low32 high32)))
846
-
847
- ;; If the shift amount is 32 then the `psrlq` from the above rule can be avoided
848
- (rule 1 (lower_i64x2_sshr_imm vec 32)
849
- (let (
850
- (low32 Xmm (x64_pshufd vec 0b11_10_11_01))
851
- (high32 Xmm (x64_psrad vec (xmi_imm 31)))
852
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
853
- )
854
- (x64_punpckldq low32 high32)))
855
-
856
- ;; Shifts >= 32 use one `psrad` to generate the upper bits and second `psrad` to
857
- ;; generate the lower bits. Everything is then woven back together with
858
- ;; shuffles.
859
- (rule (lower_i64x2_sshr_imm vec imm)
860
- (if-let $true (u64_lt 32 imm))
861
- (let (
862
- (high32 Xmm (x64_psrad vec (xmi_imm 31)))
863
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
864
- (low32 Xmm (x64_psrad vec (xmi_imm (u32_sub imm 32))))
865
- (low32 Xmm (x64_pshufd low32 0b11_10_11_01))
866
- )
867
- (x64_punpckldq low32 high32)))
868
-
869
- ;; A variable shift amount is slightly more complicated than the immediate
870
- ;; shift amounts from above. The `Gpr` argument is guaranteed to be <= 63 by
871
- ;; earlier masking. A `ushr` operation is used with some xor/sub math to
872
- ;; generate the sign bits.
873
- (decl lower_i64x2_sshr_gpr (Xmm Gpr) Xmm)
874
- (rule (lower_i64x2_sshr_gpr vec val)
875
- (let (
876
- (val Xmm (x64_movq_to_xmm val))
877
- (mask Xmm (flip_high_bit_mask $I64X2))
878
- (sign_bit_loc Xmm (x64_psrlq mask val))
879
- (ushr Xmm (x64_psrlq vec val))
880
- (ushr_sign_bit_flip Xmm (x64_pxor sign_bit_loc ushr))
881
- )
882
- (x64_psubq ushr_sign_bit_flip sign_bit_loc)))
883
-
884
- ;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
885
-
886
- ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
887
- ;; we operate on the whole register. For const's we mask the constant.
888
-
889
- (rule -1 (lower (has_type (fits_in_64 ty) (rotl src amt)))
890
- (x64_rotl ty src (put_masked_in_imm8_gpr amt ty)))
891
-
892
-
893
- ;; `i128`.
894
-
895
- (rule (lower (has_type $I128 (rotl src amt)))
896
- (let ((src_ ValueRegs src)
897
- ;; NB: Only the low bits of `amt` matter since we logically mask the
898
- ;; rotation amount to the value's bit width.
899
- (amt_ Gpr (lo_gpr amt)))
900
- (or_i128 (shl_i128 src_ amt_)
901
- (shr_i128 src_ (x64_sub $I64
902
- (imm $I64 128)
903
- amt_)))))
904
-
905
- ;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
906
-
907
- ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
908
- ;; we operate on the whole register. For const's we mask the constant.
909
-
910
- (rule -1 (lower (has_type (fits_in_64 ty) (rotr src amt)))
911
- (x64_rotr ty src (put_masked_in_imm8_gpr amt ty)))
912
-
913
-
914
- ;; `i128`.
915
-
916
- (rule (lower (has_type $I128 (rotr src amt)))
917
- (let ((src_ ValueRegs src)
918
- ;; NB: Only the low bits of `amt` matter since we logically mask the
919
- ;; rotation amount to the value's bit width.
920
- (amt_ Gpr (lo_gpr amt)))
921
- (or_i128 (shr_i128 src_ amt_)
922
- (shl_i128 src_ (x64_sub $I64
923
- (imm $I64 128)
924
- amt_)))))
925
-
926
- ;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
927
-
928
- ;; `i64` and smaller.
929
-
930
- (rule -1 (lower (has_type (fits_in_64 ty) (ineg x)))
931
- (x64_neg ty x))
932
-
933
- (rule -2 (lower (has_type $I128 (ineg x)))
934
- ;; Get the high/low registers for `x`.
935
- (let ((regs ValueRegs x)
936
- (lo Gpr (value_regs_get_gpr regs 0))
937
- (hi Gpr (value_regs_get_gpr regs 1)))
938
- ;; Do a neg followed by an sub-with-borrow.
939
- (with_flags (x64_neg_paired $I64 lo)
940
- (x64_sbb_paired $I64 (imm $I64 0) hi))))
941
-
942
- ;; SSE.
943
-
944
- (rule (lower (has_type $I8X16 (ineg x)))
945
- (x64_psubb (imm $I8X16 0) x))
946
-
947
- (rule (lower (has_type $I16X8 (ineg x)))
948
- (x64_psubw (imm $I16X8 0) x))
949
-
950
- (rule (lower (has_type $I32X4 (ineg x)))
951
- (x64_psubd (imm $I32X4 0) x))
952
-
953
- (rule (lower (has_type $I64X2 (ineg x)))
954
- (x64_psubq (imm $I64X2 0) x))
955
-
956
- ;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
957
-
958
- (rule (lower (has_type (multi_lane 8 16)
959
- (avg_round x y)))
960
- (x64_pavgb x y))
961
-
962
- (rule (lower (has_type (multi_lane 16 8)
963
- (avg_round x y)))
964
- (x64_pavgw x y))
965
-
966
- ;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
967
-
968
- ;; `i64` and smaller.
969
-
970
- ;; 8-bit base case, needs a special instruction encoding and additionally
971
- ;; move sinkable loads to the right.
972
- (rule -7 (lower (has_type $I8 (imul x y))) (x64_mul8 $false x y))
973
- (rule -6 (lower (has_type $I8 (imul (sinkable_load x) y))) (x64_mul8 $false y x))
974
-
975
- ;; 16-to-64-bit base cases, same as above by moving sinkable loads to the right.
976
- (rule -5 (lower (has_type (ty_int_ref_16_to_64 ty) (imul x y)))
977
- (x64_imul ty x y))
978
- (rule -4 (lower (has_type (ty_int_ref_16_to_64 ty) (imul (sinkable_load x) y)))
979
- (x64_imul ty y x))
980
-
981
- ;; lift out constants to use 3-operand form
982
- (rule -3 (lower (has_type (ty_int_ref_16_to_64 ty) (imul x (iconst (simm32 y)))))
983
- (x64_imul_imm ty x y))
984
- (rule -2 (lower (has_type (ty_int_ref_16_to_64 ty) (imul (iconst (simm32 x)) y)))
985
- (x64_imul_imm ty y x))
986
-
987
- ;; `i128`.
988
-
989
- ;; mul:
990
- ;; dst_lo = lhs_lo * rhs_lo
991
- ;; dst_hi = umulhi(lhs_lo, rhs_lo) +
992
- ;; lhs_lo * rhs_hi +
993
- ;; lhs_hi * rhs_lo
994
- ;;
995
- ;; so we emit:
996
- ;; lo_hi = mul x_lo, y_hi
997
- ;; hi_lo = mul x_hi, y_lo
998
- ;; hilo_hilo = add lo_hi, hi_lo
999
- ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
1000
- ;; dst_hi = add hilo_hilo, hi_lolo
1001
- ;; return (dst_lo, dst_hi)
1002
- (rule 2 (lower (has_type $I128 (imul x y)))
1003
- ;; Put `x` into registers and unpack its hi/lo halves.
1004
- (let ((x_regs ValueRegs x)
1005
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
1006
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
1007
- ;; Put `y` into registers and unpack its hi/lo halves.
1008
- (y_regs ValueRegs y)
1009
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
1010
- (y_hi Gpr (value_regs_get_gpr y_regs 1))
1011
- ;; lo_hi = mul x_lo, y_hi
1012
- (lo_hi Gpr (x64_imul $I64 x_lo y_hi))
1013
- ;; hi_lo = mul x_hi, y_lo
1014
- (hi_lo Gpr (x64_imul $I64 x_hi y_lo))
1015
- ;; hilo_hilo = add lo_hi, hi_lo
1016
- (hilo_hilo Gpr (x64_add $I64 lo_hi hi_lo))
1017
- ;; dst_lo:hi_lolo = x64_mul x_lo, y_lo
1018
- (mul_regs ValueRegs (x64_mul $I64 $false x_lo y_lo))
1019
- (dst_lo Gpr (value_regs_get_gpr mul_regs 0))
1020
- (hi_lolo Gpr (value_regs_get_gpr mul_regs 1))
1021
- ;; dst_hi = add hilo_hilo, hi_lolo
1022
- (dst_hi Gpr (x64_add $I64 hilo_hilo hi_lolo)))
1023
- (value_gprs dst_lo dst_hi)))
1024
-
1025
- ;; SSE.
1026
-
1027
- ;; (No i8x16 multiply.)
1028
-
1029
- (rule (lower (has_type (multi_lane 16 8) (imul x y)))
1030
- (x64_pmullw x y))
1031
-
1032
- (rule (lower (has_type (multi_lane 32 4) (imul x y)))
1033
- (if-let $true (use_sse41))
1034
- (x64_pmulld x y))
1035
-
1036
- ;; Without `pmulld` the `pmuludq` instruction is used instead which performs
1037
- ;; 32-bit multiplication storing the 64-bit result. The 64-bit result is
1038
- ;; truncated to 32-bits and everything else is woven into place.
1039
- (rule -1 (lower (has_type (multi_lane 32 4) (imul x y)))
1040
- (let (
1041
- (x Xmm x)
1042
- (y Xmm y)
1043
- (x_hi Xmm (x64_pshufd x 0b00_11_00_01))
1044
- (y_hi Xmm (x64_pshufd y 0b00_11_00_01))
1045
- (mul_lo Xmm (x64_pshufd (x64_pmuludq x y) 0b00_00_10_00))
1046
- (mul_hi Xmm (x64_pshufd (x64_pmuludq x_hi y_hi) 0b00_00_10_00))
1047
- )
1048
- (x64_punpckldq mul_lo mul_hi)))
1049
-
1050
- ;; With AVX-512 we can implement `i64x2` multiplication with a single
1051
- ;; instruction.
1052
- (rule 3 (lower (has_type (multi_lane 64 2) (imul x y)))
1053
- (if-let $true (use_avx512vl))
1054
- (if-let $true (use_avx512dq))
1055
- (x64_vpmullq x y))
1056
-
1057
- ;; Otherwise, for i64x2 multiplication we describe a lane A as being composed of
1058
- ;; a 32-bit upper half "Ah" and a 32-bit lower half "Al". The 32-bit long hand
1059
- ;; multiplication can then be written as:
1060
- ;;
1061
- ;; Ah Al
1062
- ;; * Bh Bl
1063
- ;; -----
1064
- ;; Al * Bl
1065
- ;; + (Ah * Bl) << 32
1066
- ;; + (Al * Bh) << 32
1067
- ;;
1068
- ;; So for each lane we will compute:
1069
- ;;
1070
- ;; A * B = (Al * Bl) + ((Ah * Bl) + (Al * Bh)) << 32
1071
- ;;
1072
- ;; Note, the algorithm will use `pmuludq` which operates directly on the lower
1073
- ;; 32-bit (`Al` or `Bl`) of a lane and writes the result to the full 64-bits of
1074
- ;; the lane of the destination. For this reason we don't need shifts to isolate
1075
- ;; the lower 32-bits, however, we will need to use shifts to isolate the high
1076
- ;; 32-bits when doing calculations, i.e., `Ah == A >> 32`.
1077
- (rule (lower (has_type (multi_lane 64 2)
1078
- (imul a b)))
1079
- (let ((a0 Xmm a)
1080
- (b0 Xmm b)
1081
- ;; a_hi = A >> 32
1082
- (a_hi Xmm (x64_psrlq a0 (xmi_imm 32)))
1083
- ;; ah_bl = Ah * Bl
1084
- (ah_bl Xmm (x64_pmuludq a_hi b0))
1085
- ;; b_hi = B >> 32
1086
- (b_hi Xmm (x64_psrlq b0 (xmi_imm 32)))
1087
- ;; al_bh = Al * Bh
1088
- (al_bh Xmm (x64_pmuludq a0 b_hi))
1089
- ;; aa_bb = ah_bl + al_bh
1090
- (aa_bb Xmm (x64_paddq ah_bl al_bh))
1091
- ;; aa_bb_shifted = aa_bb << 32
1092
- (aa_bb_shifted Xmm (x64_psllq aa_bb (xmi_imm 32)))
1093
- ;; al_bl = Al * Bl
1094
- (al_bl Xmm (x64_pmuludq a0 b0)))
1095
- ;; al_bl + aa_bb_shifted
1096
- (x64_paddq al_bl aa_bb_shifted)))
1097
-
1098
- ;; Special case for `i32x4.extmul_high_i16x8_s`.
1099
- (rule 1 (lower (has_type (multi_lane 32 4)
1100
- (imul (swiden_high (and (value_type (multi_lane 16 8))
1101
- x))
1102
- (swiden_high (and (value_type (multi_lane 16 8))
1103
- y)))))
1104
- (let ((x2 Xmm x)
1105
- (y2 Xmm y)
1106
- (lo Xmm (x64_pmullw x2 y2))
1107
- (hi Xmm (x64_pmulhw x2 y2)))
1108
- (x64_punpckhwd lo hi)))
1109
-
1110
- ;; Special case for `i64x2.extmul_high_i32x4_s`.
1111
- (rule 1 (lower (has_type (multi_lane 64 2)
1112
- (imul (swiden_high (and (value_type (multi_lane 32 4))
1113
- x))
1114
- (swiden_high (and (value_type (multi_lane 32 4))
1115
- y)))))
1116
- (if-let $true (use_sse41))
1117
- (let ((x2 Xmm (x64_pshufd x 0xFA))
1118
- (y2 Xmm (x64_pshufd y 0xFA)))
1119
- (x64_pmuldq x2 y2)))
1120
-
1121
- ;; Special case for `i32x4.extmul_low_i16x8_s`.
1122
- (rule 1 (lower (has_type (multi_lane 32 4)
1123
- (imul (swiden_low (and (value_type (multi_lane 16 8))
1124
- x))
1125
- (swiden_low (and (value_type (multi_lane 16 8))
1126
- y)))))
1127
- (let ((x2 Xmm x)
1128
- (y2 Xmm y)
1129
- (lo Xmm (x64_pmullw x2 y2))
1130
- (hi Xmm (x64_pmulhw x2 y2)))
1131
- (x64_punpcklwd lo hi)))
1132
-
1133
- ;; Special case for `i64x2.extmul_low_i32x4_s`.
1134
- (rule 1 (lower (has_type (multi_lane 64 2)
1135
- (imul (swiden_low (and (value_type (multi_lane 32 4))
1136
- x))
1137
- (swiden_low (and (value_type (multi_lane 32 4))
1138
- y)))))
1139
- (if-let $true (use_sse41))
1140
- (let ((x2 Xmm (x64_pshufd x 0x50))
1141
- (y2 Xmm (x64_pshufd y 0x50)))
1142
- (x64_pmuldq x2 y2)))
1143
-
1144
- ;; Special case for `i32x4.extmul_high_i16x8_u`.
1145
- (rule 1 (lower (has_type (multi_lane 32 4)
1146
- (imul (uwiden_high (and (value_type (multi_lane 16 8))
1147
- x))
1148
- (uwiden_high (and (value_type (multi_lane 16 8))
1149
- y)))))
1150
- (let ((x2 Xmm x)
1151
- (y2 Xmm y)
1152
- (lo Xmm (x64_pmullw x2 y2))
1153
- (hi Xmm (x64_pmulhuw x2 y2)))
1154
- (x64_punpckhwd lo hi)))
1155
-
1156
- ;; Special case for `i64x2.extmul_high_i32x4_u`.
1157
- (rule 1 (lower (has_type (multi_lane 64 2)
1158
- (imul (uwiden_high (and (value_type (multi_lane 32 4))
1159
- x))
1160
- (uwiden_high (and (value_type (multi_lane 32 4))
1161
- y)))))
1162
- (let ((x2 Xmm (x64_pshufd x 0xFA))
1163
- (y2 Xmm (x64_pshufd y 0xFA)))
1164
- (x64_pmuludq x2 y2)))
1165
-
1166
- ;; Special case for `i32x4.extmul_low_i16x8_u`.
1167
- (rule 1 (lower (has_type (multi_lane 32 4)
1168
- (imul (uwiden_low (and (value_type (multi_lane 16 8))
1169
- x))
1170
- (uwiden_low (and (value_type (multi_lane 16 8))
1171
- y)))))
1172
- (let ((x2 Xmm x)
1173
- (y2 Xmm y)
1174
- (lo Xmm (x64_pmullw x2 y2))
1175
- (hi Xmm (x64_pmulhuw x2 y2)))
1176
- (x64_punpcklwd lo hi)))
1177
-
1178
- ;; Special case for `i64x2.extmul_low_i32x4_u`.
1179
- (rule 1 (lower (has_type (multi_lane 64 2)
1180
- (imul (uwiden_low (and (value_type (multi_lane 32 4))
1181
- x))
1182
- (uwiden_low (and (value_type (multi_lane 32 4))
1183
- y)))))
1184
- (let ((x2 Xmm (x64_pshufd x 0x50))
1185
- (y2 Xmm (x64_pshufd y 0x50)))
1186
- (x64_pmuludq x2 y2)))
1187
-
1188
- ;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1189
-
1190
- (rule 1 (lower (has_type $I8X16 (iabs x)))
1191
- (if-let $true (use_ssse3))
1192
- (x64_pabsb x))
1193
-
1194
- ;; Note the use of `pminub` with signed inputs will produce the positive signed
1195
- ;; result which is what is desired here. The `pmaxub` isn't available until
1196
- ;; SSE4.1 in which case the single-instruction above lowering would apply.
1197
- (rule (lower (has_type $I8X16 (iabs x)))
1198
- (let (
1199
- (x Xmm x)
1200
- (negated Xmm (x64_psubb (xmm_zero $I8X16) x))
1201
- )
1202
- (x64_pminub x negated)))
1203
-
1204
- (rule 1 (lower (has_type $I16X8 (iabs x)))
1205
- (if-let $true (use_ssse3))
1206
- (x64_pabsw x))
1207
-
1208
- (rule (lower (has_type $I16X8 (iabs x)))
1209
- (let (
1210
- (x Xmm x)
1211
- (negated Xmm (x64_psubw (xmm_zero $I16X8) x))
1212
- )
1213
- (x64_pmaxsw x negated)))
1214
-
1215
- (rule 1 (lower (has_type $I32X4 (iabs x)))
1216
- (if-let $true (use_ssse3))
1217
- (x64_pabsd x))
1218
-
1219
- ;; Generate a `negative_mask` which is either numerically -1 or 0 depending on
1220
- ;; if the lane is negative. If the lane is positive then the xor operation
1221
- ;; won't change the lane but otherwise it'll bit-flip everything. By then
1222
- ;; subtracting the mask this subtracts 0 for positive lanes (does nothing) or
1223
- ;; ends up adding one for negative lanes. This means that for a negative lane
1224
- ;; `x` the result is `!x + 1` which is the result of negating it.
1225
- (rule (lower (has_type $I32X4 (iabs x)))
1226
- (let (
1227
- (x Xmm x)
1228
- (negative_mask Xmm (x64_psrad x (xmi_imm 31)))
1229
- (flipped_if_negative Xmm (x64_pxor x negative_mask))
1230
- )
1231
- (x64_psubd flipped_if_negative negative_mask)))
1232
-
1233
- ;; When AVX512 is available, we can use a single `vpabsq` instruction.
1234
- (rule 2 (lower (has_type $I64X2 (iabs x)))
1235
- (if-let $true (use_avx512vl))
1236
- (if-let $true (use_avx512f))
1237
- (x64_vpabsq x))
1238
-
1239
- ;; Otherwise, we use a separate register, `neg`, to contain the results of `0 -
1240
- ;; x` and then blend in those results with `blendvpd` if the MSB of `neg` was
1241
- ;; set to 1 (i.e. if `neg` was negative or, conversely, if `x` was originally
1242
- ;; positive).
1243
- (rule 1 (lower (has_type $I64X2 (iabs x)))
1244
- (if-let $true (use_sse41))
1245
- (let ((rx Xmm x)
1246
- (neg Xmm (x64_psubq (imm $I64X2 0) rx)))
1247
- (x64_blendvpd neg rx neg)))
1248
-
1249
- ;; and if `blendvpd` isn't available then perform a shift/shuffle to generate a
1250
- ;; mask of which lanes are negative, followed by flipping bits/sub to make both
1251
- ;; positive.
1252
- (rule (lower (has_type $I64X2 (iabs x)))
1253
- (let ((x Xmm x)
1254
- (signs Xmm (x64_psrad x (RegMemImm.Imm 31)))
1255
- (signs Xmm (x64_pshufd signs 0b11_11_01_01))
1256
- (xor_if_negative Xmm (x64_pxor x signs)))
1257
- (x64_psubq xor_if_negative signs)))
1258
-
1259
- ;; `i64` and smaller.
1260
-
1261
- (rule -1 (lower (has_type (fits_in_64 ty) (iabs x)))
1262
- (let ((src Gpr x)
1263
- (neg ProducesFlags (x64_neg_paired ty src))
1264
- ;; Manually extract the result from the neg, then ignore
1265
- ;; it below, since we need to pass it into the cmove
1266
- ;; before we pass the cmove to with_flags_reg.
1267
- (neg_result Gpr (produces_flags_get_reg neg))
1268
- ;; When the neg instruction sets the sign flag,
1269
- ;; takes the original (non-negative) value.
1270
- (cmove ConsumesFlags (cmove ty (CC.S) src neg_result)))
1271
- (with_flags_reg (produces_flags_ignore neg) cmove)))
1272
-
1273
- ;; `i128`. Negate the low bits, `adc` to the higher bits, then negate high bits.
1274
- (rule (lower (has_type $I128 (iabs x)))
1275
- ;; Get the high/low registers for `x`.
1276
- (let ((x_regs ValueRegs x)
1277
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
1278
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
1279
- ; negate low bits, then add 0 with carry to high bits.
1280
- (neg_lo ProducesFlags (x64_neg_paired $I64 x_lo))
1281
- (adc_hi ConsumesFlags (x64_adc_paired $I64 x_hi (imm $I64 0)))
1282
- (neg_adc_vals ValueRegs (with_flags neg_lo adc_hi))
1283
- ; negate high bits.
1284
- (neg_hi ProducesFlags (x64_neg_paired $I64 (value_regs_get neg_adc_vals 1)))
1285
- (neg_hi_flag_only ProducesFlags (produces_flags_ignore neg_hi))
1286
- ; cmove based on sign flag from hi negation.
1287
- (cmove_lo ConsumesFlags (cmove $I64 (CC.S) x_lo
1288
- (value_regs_get neg_adc_vals 0)))
1289
- (cmove_hi ConsumesFlags (cmove $I64 (CC.S) x_hi
1290
- (produces_flags_get_reg neg_hi)))
1291
- (cmoves ConsumesFlags (consumes_flags_concat cmove_lo cmove_hi)))
1292
- (with_flags neg_hi_flag_only cmoves)))
1293
-
1294
- ;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1295
-
1296
- (rule (lower (has_type $F32 (fabs x)))
1297
- (x64_andps x (imm $F32 0x7fffffff)))
1298
-
1299
- (rule (lower (has_type $F64 (fabs x)))
1300
- (x64_andpd x (imm $F64 0x7fffffffffffffff)))
1301
-
1302
- ;; Special case for `f32x4.abs`.
1303
- (rule (lower (has_type $F32X4 (fabs x)))
1304
- (x64_andps x
1305
- (x64_psrld (vector_all_ones) (xmi_imm 1))))
1306
-
1307
- ;; Special case for `f64x2.abs`.
1308
- (rule (lower (has_type $F64X2 (fabs x)))
1309
- (x64_andpd x
1310
- (x64_psrlq (vector_all_ones) (xmi_imm 1))))
1311
-
1312
- ;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1313
-
1314
- (rule (lower (has_type $F32 (fneg x)))
1315
- (x64_xorps x (imm $F32 0x80000000)))
1316
-
1317
- (rule (lower (has_type $F64 (fneg x)))
1318
- (x64_xorpd x (imm $F64 0x8000000000000000)))
1319
-
1320
- (rule (lower (has_type $F32X4 (fneg x)))
1321
- (x64_xorps x
1322
- (x64_pslld (vector_all_ones) (xmi_imm 31))))
1323
-
1324
- (rule (lower (has_type $F64X2 (fneg x)))
1325
- (x64_xorpd x
1326
- (x64_psllq (vector_all_ones) (xmi_imm 63))))
1327
-
1328
- ;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1329
-
1330
- (decl lower_bmask (Type Type ValueRegs) ValueRegs)
1331
-
1332
- ;; Values that fit in a register
1333
- ;;
1334
- ;; Use the neg instruction on the input which sets the CF (carry) flag
1335
- ;; to 0 if the input is 0 or 1 otherwise.
1336
- ;; We then subtract the output register with itself, which always gives a 0,
1337
- ;; however use the carry flag from the previous negate to generate a -1 if it
1338
- ;; was nonzero.
1339
- ;;
1340
- ;; neg in_reg
1341
- ;; sbb out_reg, out_reg
1342
- (rule 0
1343
- (lower_bmask (fits_in_64 out_ty) (fits_in_64 in_ty) val)
1344
- (let ((reg Gpr (value_regs_get_gpr val 0))
1345
- (out ValueRegs (with_flags
1346
- (x64_neg_paired in_ty reg)
1347
- (x64_sbb_paired out_ty reg reg))))
1348
- ;; Extract only the output of the sbb instruction
1349
- (value_reg (value_regs_get out 1))))
1350
-
1351
-
1352
- ;; If the input type is I128 we can `or` the registers, and recurse to the general case.
1353
- (rule 1
1354
- (lower_bmask (fits_in_64 out_ty) $I128 val)
1355
- (let ((lo Gpr (value_regs_get_gpr val 0))
1356
- (hi Gpr (value_regs_get_gpr val 1))
1357
- (mixed Gpr (x64_or $I64 lo hi)))
1358
- (lower_bmask out_ty $I64 (value_reg mixed))))
1359
-
1360
- ;; If the output type is I128 we just duplicate the result of the I64 lowering
1361
- (rule 2
1362
- (lower_bmask $I128 in_ty val)
1363
- (let ((res ValueRegs (lower_bmask $I64 in_ty val))
1364
- (res Gpr (value_regs_get_gpr res 0)))
1365
- (value_regs res res)))
1366
-
1367
-
1368
- ;; Call the lower_bmask rule that does all the procssing
1369
- (rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
1370
- (lower_bmask out_ty in_ty x))
1371
-
1372
- ;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1373
-
1374
- ;; `i64` and smaller.
1375
-
1376
- (rule -2 (lower (has_type ty (bnot x)))
1377
- (if (ty_int_ref_scalar_64 ty))
1378
- (x64_not ty x))
1379
-
1380
-
1381
- ;; `i128`.
1382
-
1383
- (decl i128_not (Value) ValueRegs)
1384
- (rule (i128_not x)
1385
- (let ((x_regs ValueRegs x)
1386
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
1387
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
1388
- (value_gprs (x64_not $I64 x_lo)
1389
- (x64_not $I64 x_hi))))
1390
-
1391
- (rule (lower (has_type $I128 (bnot x)))
1392
- (i128_not x))
1393
-
1394
- ;; f32 and f64
1395
-
1396
- (rule -3 (lower (has_type (ty_scalar_float ty) (bnot x)))
1397
- (x64_xor_vector ty x (vector_all_ones)))
1398
-
1399
- ;; Special case for vector-types where bit-negation is an xor against an
1400
- ;; all-one value
1401
- (rule -1 (lower (has_type ty @ (multi_lane _bits _lanes) (bnot x)))
1402
- (x64_xor_vector ty x (vector_all_ones)))
1403
-
1404
- ;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1405
-
1406
- (rule (lower (has_type ty @ (multi_lane _bits _lanes)
1407
- (bitselect condition
1408
- if_true
1409
- if_false)))
1410
- ;; a = and if_true, condition
1411
- ;; b = and_not condition, if_false
1412
- ;; or b, a
1413
- (let ((cond_xmm Xmm condition)
1414
- (a Xmm (sse_and ty if_true cond_xmm))
1415
- (b Xmm (sse_and_not ty cond_xmm if_false)))
1416
- (sse_or ty b a)))
1417
-
1418
- ;; If every byte of the condition is guaranteed to be all ones or all zeroes,
1419
- ;; we can use x64_blend.
1420
- (rule 1 (lower (has_type ty @ (multi_lane _bits _lanes)
1421
- (bitselect condition
1422
- if_true
1423
- if_false)))
1424
- (if-let $true (use_sse41))
1425
- (if (all_ones_or_all_zeros condition))
1426
- (x64_pblendvb if_false if_true condition))
1427
-
1428
- (decl pure partial all_ones_or_all_zeros (Value) bool)
1429
- (rule (all_ones_or_all_zeros (and (icmp _ _ _) (value_type (multi_lane _ _)))) $true)
1430
- (rule (all_ones_or_all_zeros (and (fcmp _ _ _) (value_type (multi_lane _ _)))) $true)
1431
- (rule (all_ones_or_all_zeros (vconst (vconst_all_ones_or_all_zeros))) $true)
1432
-
1433
- (decl pure vconst_all_ones_or_all_zeros () Constant)
1434
- (extern extractor vconst_all_ones_or_all_zeros vconst_all_ones_or_all_zeros)
1435
-
1436
- ;; Specializations for floating-pointer compares to generate a `minp*` or a
1437
- ;; `maxp*` instruction. These are equivalent to the wasm `f32x4.{pmin,pmax}`
1438
- ;; instructions and how they're lowered into CLIF. Note the careful ordering
1439
- ;; of all the operands here to ensure that the input CLIF matched is implemented
1440
- ;; by the corresponding x64 instruction.
1441
- (rule 2 (lower (has_type $F32X4 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) x y)) x y)))
1442
- (x64_minps x y))
1443
- (rule 2 (lower (has_type $F64X2 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) x y)) x y)))
1444
- (x64_minpd x y))
1445
-
1446
- (rule 3 (lower (has_type $F32X4 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) y x)) x y)))
1447
- (x64_maxps x y))
1448
- (rule 3 (lower (has_type $F64X2 (bitselect (bitcast _ (fcmp (FloatCC.LessThan) y x)) x y)))
1449
- (x64_maxpd x y))
1450
-
1451
- ;; Scalar rules
1452
-
1453
- (rule 3 (lower (has_type $I128 (bitselect c t f)))
1454
- (let ((a ValueRegs (and_i128 c t))
1455
- (b ValueRegs (and_i128 (i128_not c) f)))
1456
- (or_i128 a b)))
1457
-
1458
- (rule 4 (lower (has_type (ty_int_ref_scalar_64 ty) (bitselect c t f)))
1459
- (let ((a Gpr (x64_and ty c t))
1460
- (b Gpr (x64_and ty (x64_not ty c) f)))
1461
- (x64_or ty a b)))
1462
-
1463
- (rule 5 (lower (has_type (ty_scalar_float ty) (bitselect c t f)))
1464
- (let ((a Xmm (sse_and ty c t))
1465
- (c_neg Xmm (x64_xor_vector ty c (vector_all_ones)))
1466
- (b Xmm (sse_and ty c_neg f)))
1467
- (sse_or ty a b)))
1468
-
1469
- ;;;; Rules for `x86_blendv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1470
-
1471
- (rule (lower (has_type $I8X16
1472
- (x86_blendv condition if_true if_false)))
1473
- (if-let $true (use_sse41))
1474
- (x64_pblendvb if_false if_true condition))
1475
-
1476
- (rule (lower (has_type $I32X4
1477
- (x86_blendv condition if_true if_false)))
1478
- (if-let $true (use_sse41))
1479
- (x64_blendvps if_false if_true condition))
1480
-
1481
- (rule (lower (has_type $I64X2
1482
- (x86_blendv condition if_true if_false)))
1483
- (if-let $true (use_sse41))
1484
- (x64_blendvpd if_false if_true condition))
1485
-
1486
- ;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1487
-
1488
- (rule (lower (insertlane vec @ (value_type ty) val (u8_from_uimm8 idx)))
1489
- (vec_insert_lane ty vec val idx))
1490
-
1491
- ;; Helper function used below for `insertlane` but also here for other
1492
- ;; lowerings.
1493
- ;;
1494
- ;; Note that the `Type` used here is the type of vector the insertion is
1495
- ;; happening into, or the type of the first `Reg` argument.
1496
- (decl vec_insert_lane (Type Xmm RegMem u8) Xmm)
1497
-
1498
- ;; i8x16.replace_lane
1499
- (rule 1 (vec_insert_lane $I8X16 vec val idx)
1500
- (if-let $true (use_sse41))
1501
- (x64_pinsrb vec val idx))
1502
-
1503
- ;; This lowering is particularly unoptimized and is mostly just here to work
1504
- ;; rather than here to be fast. Requiring SSE 4.1 for the above lowering isn't
1505
- ;; the end of the world hopefully as that's a pretty old instruction set, so
1506
- ;; this is the "simplest" version that works on SSE2 for now.
1507
- ;;
1508
- ;; This lowering masks the original vector with a constant with all 1s except
1509
- ;; for the "hole" where this value will get placed into, meaning the desired
1510
- ;; lane is guaranteed as all 0s. Next the `val` is shuffled into this hole with
1511
- ;; a few operations:
1512
- ;;
1513
- ;; 1. The `val` is zero-extended to 32-bits to guarantee the lower 32-bits
1514
- ;; are all defined.
1515
- ;; 2. An arithmetic shift-left is used with the low two bits of `n`, the
1516
- ;; desired lane, to move the value into the right position within the 32-bit
1517
- ;; register value.
1518
- ;; 3. The 32-bit register is moved with `movd` into an XMM register
1519
- ;; 4. The XMM register, where all lanes are 0 except for the first lane which
1520
- ;; has the shifted value, is then shuffled with `pshufd` to move the
1521
- ;; shifted value to the correct and final lane. This uses the upper two
1522
- ;; bits of `n` to index the i32x4 lane that we're targeting.
1523
- ;;
1524
- ;; This all, laboriously, gets the `val` into the desired lane so it's then
1525
- ;; `por`'d with the original vec-with-a-hole to produce the final result of the
1526
- ;; insertion.
1527
- (rule (vec_insert_lane $I8X16 vec val n)
1528
- (let ((vec_with_hole Xmm (x64_pand vec (insert_i8x16_lane_hole n)))
1529
- (val Gpr (x64_movzx (ExtMode.BL) val))
1530
- (val Gpr (x64_shl $I32 val (Imm8Reg.Imm8 (u8_shl (u8_and n 3) 3))))
1531
- (val Xmm (x64_movd_to_xmm val))
1532
- (val_at_hole Xmm (x64_pshufd val (insert_i8x16_lane_pshufd_imm (u8_shr n 2)))))
1533
- (x64_por vec_with_hole val_at_hole)))
1534
-
1535
- (decl insert_i8x16_lane_hole (u8) VCodeConstant)
1536
- (extern constructor insert_i8x16_lane_hole insert_i8x16_lane_hole)
1537
- (decl insert_i8x16_lane_pshufd_imm (u8) u8)
1538
- (rule (insert_i8x16_lane_pshufd_imm 0) 0b01_01_01_00)
1539
- (rule (insert_i8x16_lane_pshufd_imm 1) 0b01_01_00_01)
1540
- (rule (insert_i8x16_lane_pshufd_imm 2) 0b01_00_01_01)
1541
- (rule (insert_i8x16_lane_pshufd_imm 3) 0b00_01_01_01)
1542
-
1543
- ;; i16x8.replace_lane
1544
- (rule (vec_insert_lane $I16X8 vec val idx)
1545
- (x64_pinsrw vec val idx))
1546
-
1547
- ;; i32x4.replace_lane
1548
- (rule 1 (vec_insert_lane $I32X4 vec val idx)
1549
- (if-let $true (use_sse41))
1550
- (x64_pinsrd vec val idx))
1551
-
1552
- (rule (vec_insert_lane $I32X4 vec val 0)
1553
- (x64_movss_regmove vec (x64_movd_to_xmm val)))
1554
-
1555
- ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1556
- ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1557
- (rule (vec_insert_lane $I32X4 vec val 1)
1558
- (let ((val Xmm (x64_movd_to_xmm val))
1559
- (vec Xmm vec))
1560
- (x64_shufps (x64_punpcklqdq val vec) vec 0b11_10_00_10)))
1561
-
1562
- ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1563
- ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1564
- (rule (vec_insert_lane $I32X4 vec val 2)
1565
- (let ((val Xmm (x64_movd_to_xmm val))
1566
- (vec Xmm vec))
1567
- (x64_shufps vec (x64_shufps val vec 0b00_11_00_00) 0b10_00_01_00)))
1568
-
1569
- ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1570
- ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1571
- (rule (vec_insert_lane $I32X4 vec val 3)
1572
- (let ((val Xmm (x64_movd_to_xmm val))
1573
- (vec Xmm vec))
1574
- (x64_shufps vec (x64_shufps val vec 0b11_10_01_00) 0b00_10_01_00)))
1575
-
1576
- ;; i64x2.replace_lane
1577
- (rule 1 (vec_insert_lane $I64X2 vec val idx)
1578
- (if-let $true (use_sse41))
1579
- (x64_pinsrq vec val idx))
1580
- (rule (vec_insert_lane $I64X2 vec val 0)
1581
- (x64_movsd_regmove vec (x64_movq_to_xmm val)))
1582
- (rule (vec_insert_lane $I64X2 vec val 1)
1583
- (x64_punpcklqdq vec (x64_movq_to_xmm val)))
1584
-
1585
- ;; f32x4.replace_lane
1586
- (rule 1 (vec_insert_lane $F32X4 vec val idx)
1587
- (if-let $true (use_sse41))
1588
- (x64_insertps vec val (sse_insertps_lane_imm idx)))
1589
-
1590
- ;; f32x4.replace_lane 0 - without insertps
1591
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 0)
1592
- (x64_movss_regmove vec val))
1593
-
1594
- ;; f32x4.replace_lane 1 - without insertps
1595
- ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1596
- ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1597
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 1)
1598
- (let ((tmp Xmm (x64_movlhps val vec)))
1599
- (x64_shufps tmp vec 0b11_10_00_10)))
1600
-
1601
- ;; f32x4.replace_lane 2 - without insertps
1602
- ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1603
- ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1604
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 2)
1605
- (let ((tmp Xmm (x64_shufps val vec 0b00_11_00_00)))
1606
- (x64_shufps vec tmp 0b10_00_01_00)))
1607
-
1608
- ;; f32x4.replace_lane 3 - without insertps
1609
- ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1610
- ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1611
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 3)
1612
- (let ((tmp Xmm (x64_shufps val vec 0b11_10_01_00)))
1613
- (x64_shufps vec tmp 0b00_10_01_00)))
1614
-
1615
- ;; Recursively delegate to the above rules by loading from memory first.
1616
- (rule (vec_insert_lane $F32X4 vec (RegMem.Mem addr) idx)
1617
- (vec_insert_lane $F32X4 vec (x64_movss_load addr) idx))
1618
-
1619
- ;; External rust code used to calculate the immediate value to `insertps`.
1620
- (decl sse_insertps_lane_imm (u8) u8)
1621
- (extern constructor sse_insertps_lane_imm sse_insertps_lane_imm)
1622
-
1623
- ;; f64x2.replace_lane 0
1624
- ;;
1625
- ;; Here the `movsd` instruction is used specifically to specialize moving
1626
- ;; into the fist lane where unlike above cases we're not using the lane
1627
- ;; immediate as an immediate to the instruction itself.
1628
- (rule (vec_insert_lane $F64X2 vec (RegMem.Reg val) 0)
1629
- (x64_movsd_regmove vec val))
1630
- (rule (vec_insert_lane $F64X2 vec (RegMem.Mem val) 0)
1631
- (x64_movsd_regmove vec (x64_movsd_load val)))
1632
-
1633
- ;; f64x2.replace_lane 1
1634
- ;;
1635
- ;; Here the `movlhps` instruction is used specifically to specialize moving
1636
- ;; into the second lane where unlike above cases we're not using the lane
1637
- ;; immediate as an immediate to the instruction itself.
1638
- (rule (vec_insert_lane $F64X2 vec val 1)
1639
- (x64_movlhps vec val))
1640
-
1641
- ;;;; Rules for `smin`, `smax`, `umin`, `umax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1642
-
1643
- ;; `i64` and smaller.
1644
-
1645
- (decl cmp_and_choose (Type CC Value Value) ValueRegs)
1646
- (rule (cmp_and_choose (fits_in_64 ty) cc x y)
1647
- (let ((size OperandSize (raw_operand_size_of_type ty))
1648
- ;; We need to put x and y in registers explicitly because
1649
- ;; we use the values more than once. Hence, even if these
1650
- ;; are "unique uses" at the CLIF level and would otherwise
1651
- ;; allow for load-op merging, here we cannot do that.
1652
- (x_reg Reg x)
1653
- (y_reg Reg y))
1654
- (with_flags_reg (x64_cmp size x_reg y_reg)
1655
- (cmove ty cc y_reg x_reg))))
1656
-
1657
- (rule -1 (lower (has_type (fits_in_64 ty) (umin x y)))
1658
- (cmp_and_choose ty (CC.B) x y))
1659
-
1660
- (rule -1 (lower (has_type (fits_in_64 ty) (umax x y)))
1661
- (cmp_and_choose ty (CC.NB) x y))
1662
-
1663
- (rule -1 (lower (has_type (fits_in_64 ty) (smin x y)))
1664
- (cmp_and_choose ty (CC.L) x y))
1665
-
1666
- (rule -1 (lower (has_type (fits_in_64 ty) (smax x y)))
1667
- (cmp_and_choose ty (CC.NL) x y))
1668
-
1669
- ;; SSE helpers for determining if single-instruction lowerings are available.
1670
-
1671
- (decl pure has_pmins (Type) bool)
1672
- (rule 1 (has_pmins $I16X8) $true)
1673
- (rule 1 (has_pmins $I64X2) $false)
1674
- (rule (has_pmins _) (use_sse41))
1675
-
1676
- (decl pure has_pmaxs (Type) bool)
1677
- (rule 1 (has_pmaxs $I16X8) $true)
1678
- (rule 1 (has_pmaxs $I64X2) $false)
1679
- (rule (has_pmaxs _) (use_sse41))
1680
-
1681
- (decl pure has_pmaxu (Type) bool)
1682
- (rule 1 (has_pmaxu $I8X16) $true)
1683
- (rule 1 (has_pmaxu $I64X2) $false)
1684
- (rule (has_pmaxu _) (use_sse41))
1685
-
1686
- (decl pure has_pminu (Type) bool)
1687
- (rule 1 (has_pminu $I8X16) $true)
1688
- (rule 1 (has_pminu $I64X2) $false)
1689
- (rule (has_pminu _) (use_sse41))
1690
-
1691
- ;; SSE `smax`.
1692
-
1693
- (rule (lower (has_type (ty_vec128 ty) (smax x y)))
1694
- (lower_vec_smax ty x y))
1695
-
1696
- (decl lower_vec_smax (Type Xmm Xmm) Xmm)
1697
- (rule 1 (lower_vec_smax ty x y)
1698
- (if-let $true (has_pmaxs ty))
1699
- (x64_pmaxs ty x y))
1700
-
1701
- (rule (lower_vec_smax ty x y)
1702
- (let (
1703
- (x Xmm x)
1704
- (y Xmm y)
1705
- (cmp Xmm (x64_pcmpgt ty x y))
1706
- (x_is_max Xmm (x64_pand cmp x))
1707
- (y_is_max Xmm (x64_pandn cmp y))
1708
- )
1709
- (x64_por x_is_max y_is_max)))
1710
-
1711
- ;; SSE `smin`.
1712
-
1713
- (rule 1 (lower (has_type (ty_vec128 ty) (smin x y)))
1714
- (if-let $true (has_pmins ty))
1715
- (x64_pmins ty x y))
1716
-
1717
- (rule (lower (has_type (ty_vec128 ty) (smin x y)))
1718
- (let (
1719
- (x Xmm x)
1720
- (y Xmm y)
1721
- (cmp Xmm (x64_pcmpgt ty y x))
1722
- (x_is_min Xmm (x64_pand cmp x))
1723
- (y_is_min Xmm (x64_pandn cmp y))
1724
- )
1725
- (x64_por x_is_min y_is_min)))
1726
-
1727
- ;; SSE `umax`.
1728
-
1729
- (rule 2 (lower (has_type (ty_vec128 ty) (umax x y)))
1730
- (if-let $true (has_pmaxu ty))
1731
- (x64_pmaxu ty x y))
1732
-
1733
- ;; If y < x then the saturating subtraction will be zero, otherwise when added
1734
- ;; back to x it'll return y.
1735
- (rule 1 (lower (has_type $I16X8 (umax x y)))
1736
- (let ((x Xmm x))
1737
- (x64_paddw x (x64_psubusw y x))))
1738
-
1739
- ;; Flip the upper bits of each lane so the signed comparison has the same
1740
- ;; result as a signed comparison, and then select the results with the output
1741
- ;; mask. See `pcmpgt` lowering for info on flipping the upper bit.
1742
- (rule (lower (has_type (ty_vec128 ty) (umax x y)))
1743
- (let (
1744
- (x Xmm x)
1745
- (y Xmm y)
1746
- (mask Xmm (flip_high_bit_mask ty))
1747
- (x_masked Xmm (x64_pxor x mask))
1748
- (y_masked Xmm (x64_pxor y mask))
1749
- (cmp Xmm (x64_pcmpgt ty x_masked y_masked))
1750
- (x_is_max Xmm (x64_pand cmp x))
1751
- (y_is_max Xmm (x64_pandn cmp y))
1752
- )
1753
- (x64_por x_is_max y_is_max)))
1754
-
1755
- (decl flip_high_bit_mask (Type) Xmm)
1756
- (rule (flip_high_bit_mask $I16X8)
1757
- (x64_movdqu_load (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000)))
1758
- (rule (flip_high_bit_mask $I32X4)
1759
- (x64_movdqu_load (emit_u128_le_const 0x80000000_80000000_80000000_80000000)))
1760
- (rule (flip_high_bit_mask $I64X2)
1761
- (x64_movdqu_load (emit_u128_le_const 0x8000000000000000_8000000000000000)))
1762
-
1763
- ;; SSE `umin`.
1764
-
1765
- (rule 2 (lower (has_type (ty_vec128 ty) (umin x y)))
1766
- (if-let $true (has_pminu ty))
1767
- (x64_pminu ty x y))
1768
-
1769
- ;; If x < y then the saturating subtraction will be 0. Otherwise if x > y then
1770
- ;; the saturated result, when subtracted again, will go back to `y`.
1771
- (rule 1 (lower (has_type $I16X8 (umin x y)))
1772
- (let ((x Xmm x))
1773
- (x64_psubw x (x64_psubusw x y))))
1774
-
1775
- ;; Same as `umax`, and see `pcmpgt` for docs on flipping the upper bit.
1776
- (rule (lower (has_type (ty_vec128 ty) (umin x y)))
1777
- (let (
1778
- (x Xmm x)
1779
- (y Xmm y)
1780
- (mask Xmm (flip_high_bit_mask ty))
1781
- (x_masked Xmm (x64_pxor x mask))
1782
- (y_masked Xmm (x64_pxor y mask))
1783
- (cmp Xmm (x64_pcmpgt ty y_masked x_masked))
1784
- (x_is_max Xmm (x64_pand cmp x))
1785
- (y_is_max Xmm (x64_pandn cmp y))
1786
- )
1787
- (x64_por x_is_max y_is_max)))
1788
-
1789
- ;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1790
-
1791
- (rule (lower (trap code))
1792
- (side_effect (x64_ud2 code)))
1793
-
1794
- ;;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1795
-
1796
- (rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
1797
- (with_flags
1798
- (x64_add_with_flags_paired ty a b)
1799
- (trap_if (CC.B) tc)))
1800
-
1801
- ;; Handle lhs immediates/sinkable loads in addition to the automatic rhs
1802
- ;; handling of above.
1803
-
1804
- (rule 1 (lower (has_type (fits_in_64 ty)
1805
- (uadd_overflow_trap (simm32_from_value a) b tc)))
1806
- (with_flags
1807
- (x64_add_with_flags_paired ty b a)
1808
- (trap_if (CC.B) tc)))
1809
-
1810
- (rule 2 (lower (has_type (fits_in_64 ty)
1811
- (uadd_overflow_trap (sinkable_load a) b tc)))
1812
- (with_flags
1813
- (x64_add_with_flags_paired ty b a)
1814
- (trap_if (CC.B) tc)))
1815
-
1816
- ;;;; Rules for `resumable_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1817
-
1818
- (rule (lower (resumable_trap code))
1819
- (side_effect (x64_ud2 code)))
1820
-
1821
- ;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1822
-
1823
- ;; N.B.: the Ret itself is generated by the ABI.
1824
- (rule (lower (return args))
1825
- (lower_return args))
1826
-
1827
- ;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1828
-
1829
- (rule -2 (lower (icmp cc a @ (value_type (fits_in_64 ty)) b))
1830
- (lower_icmp_bool (emit_cmp cc a b)))
1831
-
1832
- (rule -1 (lower (icmp cc a @ (value_type $I128) b))
1833
- (lower_icmp_bool (emit_cmp cc a b)))
1834
-
1835
- ;; Peephole optimization for `x < 0`, when x is a signed 64 bit value
1836
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I64) (u64_from_iconst 0))))
1837
- (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1838
-
1839
- ;; Peephole optimization for `0 > x`, when x is a signed 64 bit value
1840
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I64))))
1841
- (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1842
-
1843
- ;; Peephole optimization for `0 <= x`, when x is a signed 64 bit value
1844
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I64))))
1845
- (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1846
-
1847
- ;; Peephole optimization for `x >= 0`, when x is a signed 64 bit value
1848
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I64) (u64_from_iconst 0))))
1849
- (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1850
-
1851
- ;; Peephole optimization for `x < 0`, when x is a signed 32 bit value
1852
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I32) (u64_from_iconst 0))))
1853
- (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1854
-
1855
- ;; Peephole optimization for `0 > x`, when x is a signed 32 bit value
1856
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I32))))
1857
- (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1858
-
1859
- ;; Peephole optimization for `0 <= x`, when x is a signed 32 bit value
1860
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I32))))
1861
- (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1862
-
1863
- ;; Peephole optimization for `x >= 0`, when x is a signed 32 bit value
1864
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I32) (u64_from_iconst 0))))
1865
- (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1866
-
1867
- ;; For XMM-held values, we lower to `PCMP*` instructions, sometimes more than
1868
- ;; one. To note: what is different here about the output values is that each
1869
- ;; lane will be filled with all 1s or all 0s according to the comparison,
1870
- ;; whereas for GPR-held values, the result will be simply 0 or 1 (upper bits
1871
- ;; unset).
1872
- (rule (lower (icmp (IntCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1873
- (x64_pcmpeq ty a b))
1874
-
1875
- ;; To lower a not-equals comparison, we perform an equality comparison
1876
- ;; (PCMPEQ*) and then invert the bits (PXOR with all 1s).
1877
- (rule (lower (icmp (IntCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1878
- (let ((checked Xmm (x64_pcmpeq ty a b))
1879
- (all_ones Xmm (vector_all_ones)))
1880
- (x64_pxor checked all_ones)))
1881
-
1882
- ;; SSE `sgt`
1883
-
1884
- (rule (lower (icmp (IntCC.SignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1885
- (x64_pcmpgt ty a b))
1886
-
1887
- ;; SSE `slt`
1888
-
1889
- (rule (lower (icmp (IntCC.SignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1890
- (x64_pcmpgt ty b a))
1891
-
1892
- ;; SSE `ugt`
1893
-
1894
- ;; N.B.: we must manually prevent load coalescing operands; the
1895
- ;; register allocator gets confused otherwise.
1896
- (rule 1 (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1897
- (if-let $true (has_pmaxu ty))
1898
- (let ((a Xmm a)
1899
- (b Xmm b)
1900
- (max Xmm (x64_pmaxu ty a b))
1901
- (eq Xmm (x64_pcmpeq ty max b)))
1902
- (x64_pxor eq (vector_all_ones))))
1903
-
1904
- ;; Flip the upper bit of each lane so the result of a signed comparison is the
1905
- ;; same as the result of an unsigned comparison (see docs on `pcmpgt` for more)
1906
- (rule (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1907
- (let ((mask Xmm (flip_high_bit_mask ty))
1908
- (a_masked Xmm (x64_pxor a mask))
1909
- (b_masked Xmm (x64_pxor b mask)))
1910
- (x64_pcmpgt ty a_masked b_masked)))
1911
-
1912
- ;; SSE `ult`
1913
-
1914
- (rule 1 (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1915
- (if-let $true (has_pminu ty))
1916
- ;; N.B.: see note above.
1917
- (let ((a Xmm a)
1918
- (b Xmm b)
1919
- (min Xmm (x64_pminu ty a b))
1920
- (eq Xmm (x64_pcmpeq ty min b)))
1921
- (x64_pxor eq (vector_all_ones))))
1922
-
1923
- ;; Flip the upper bit of `a` and `b` so the signed comparison result will
1924
- ;; be the same as the unsigned comparison result (see docs on `pcmpgt` for more).
1925
- (rule (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1926
- (let ((mask Xmm (flip_high_bit_mask ty))
1927
- (a_masked Xmm (x64_pxor a mask))
1928
- (b_masked Xmm (x64_pxor b mask)))
1929
- (x64_pcmpgt ty b_masked a_masked)))
1930
-
1931
- ;; SSE `sge`
1932
-
1933
- ;; Use `pmaxs*` and compare the result to `a` to see if it's `>= b`.
1934
- (rule 1 (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1935
- (if-let $true (has_pmaxs ty))
1936
- (x64_pcmpeq ty a (x64_pmaxs ty a b)))
1937
-
1938
- ;; Without `pmaxs*` use a `pcmpgt*` with reversed operands and invert the
1939
- ;; result.
1940
- (rule (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1941
- (x64_pxor (x64_pcmpgt ty b a) (vector_all_ones)))
1942
-
1943
- ;; SSE `sle`
1944
-
1945
- ;; With `pmins*` use that and compare the result to `a`.
1946
- (rule 1 (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1947
- (if-let $true (has_pmins ty))
1948
- (x64_pcmpeq ty a (x64_pmins ty a b)))
1949
-
1950
- ;; Without `pmins*` perform a greater-than test and invert the result.
1951
- (rule (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1952
- (x64_pxor (x64_pcmpgt ty a b) (vector_all_ones)))
1953
-
1954
- ;; SSE `uge`
1955
-
1956
- (rule 2 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1957
- (if-let $true (has_pmaxu ty))
1958
- (x64_pcmpeq ty a (x64_pmaxu ty a b)))
1959
-
1960
- ;; Perform a saturating subtract of `a` from `b` and if the result is zero then
1961
- ;; `a` is greater or equal.
1962
- (rule 1 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type $I16X8) b))
1963
- (x64_pcmpeqw (x64_psubusw b a) (xmm_zero $I16X8)))
1964
-
1965
- ;; Flip the upper bit of each lane so the signed comparison is the same as
1966
- ;; an unsigned one and then invert the result. See docs on `pcmpgt` for why
1967
- ;; flipping the upper bit works.
1968
- (rule (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1969
- (let (
1970
- (mask Xmm (flip_high_bit_mask ty))
1971
- (a_masked Xmm (x64_pxor a mask))
1972
- (b_masked Xmm (x64_pxor b mask))
1973
- (cmp Xmm (x64_pcmpgt ty b_masked a_masked))
1974
- )
1975
- (x64_pxor cmp (vector_all_ones))))
1976
-
1977
- ;; SSE `ule`
1978
-
1979
- (rule 2 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1980
- (if-let $true (has_pminu ty))
1981
- (x64_pcmpeq ty a (x64_pminu ty a b)))
1982
-
1983
- ;; A saturating subtraction will produce zeros if `a` is less than `b`, so
1984
- ;; compare that result to an all-zeros result to figure out lanes of `a` that
1985
- ;; are <= to the lanes in `b`
1986
- (rule 1 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type $I16X8) b))
1987
- (let ((zeros_if_a_is_min Xmm (x64_psubusw a b)))
1988
- (x64_pcmpeqw zeros_if_a_is_min (xmm_zero $I8X16))))
1989
-
1990
- ;; Flip the upper bit of each lane in `a` and `b` so a signed comparison
1991
- ;; produces the same result as an unsigned comparison. Then test test for `gt`
1992
- ;; and invert the result to get the `le` that is desired here. See docs on
1993
- ;; `pcmpgt` for why flipping the upper bit works.
1994
- (rule (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1995
- (let (
1996
- (mask Xmm (flip_high_bit_mask ty))
1997
- (a_masked Xmm (x64_pxor a mask))
1998
- (b_masked Xmm (x64_pxor b mask))
1999
- (cmp Xmm (x64_pcmpgt ty a_masked b_masked))
2000
- )
2001
- (x64_pxor cmp (vector_all_ones))))
2002
-
2003
- ;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2004
-
2005
- ;; CLIF's `fcmp` instruction always operates on XMM registers--both scalar and
2006
- ;; vector. For the scalar versions, we use the flag-setting behavior of the
2007
- ;; `UCOMIS*` instruction to `SETcc` a 0 or 1 in a GPR register. Note that CLIF's
2008
- ;; `select` uses the same kind of flag-setting behavior but chooses values other
2009
- ;; than 0 or 1.
2010
- ;;
2011
- ;; Checking the result of `UCOMIS*` is unfortunately difficult in some cases
2012
- ;; because we do not have `SETcc` instructions that explicitly check
2013
- ;; simultaneously for the condition (i.e., `eq`, `le`, `gt`, etc.) *and*
2014
- ;; orderedness. Instead, we must check the flags multiple times. The UCOMIS*
2015
- ;; documentation (see Intel's Software Developer's Manual, volume 2, chapter 4)
2016
- ;; is helpful:
2017
- ;; - unordered assigns Z = 1, P = 1, C = 1
2018
- ;; - greater than assigns Z = 0, P = 0, C = 0
2019
- ;; - less than assigns Z = 0, P = 0, C = 1
2020
- ;; - equal assigns Z = 1, P = 0, C = 0
2021
-
2022
- (rule -1 (lower (fcmp cc a @ (value_type (ty_scalar_float ty)) b))
2023
- (lower_fcmp_bool (emit_fcmp cc a b)))
2024
-
2025
- ;; For vector lowerings, we use `CMPP*` instructions with a 3-bit operand that
2026
- ;; determines the comparison to make. Note that comparisons that succeed will
2027
- ;; fill the lane with 1s; comparisons that do not will fill the lane with 0s.
2028
-
2029
- (rule (lower (fcmp (FloatCC.Equal) a @ (value_type (ty_vec128 ty)) b))
2030
- (x64_cmpp ty a b (FcmpImm.Equal)))
2031
- (rule (lower (fcmp (FloatCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
2032
- (x64_cmpp ty a b (FcmpImm.NotEqual)))
2033
- (rule (lower (fcmp (FloatCC.LessThan) a @ (value_type (ty_vec128 ty)) b))
2034
- (x64_cmpp ty a b (FcmpImm.LessThan)))
2035
- (rule (lower (fcmp (FloatCC.LessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2036
- (x64_cmpp ty a b (FcmpImm.LessThanOrEqual)))
2037
- (rule (lower (fcmp (FloatCC.Ordered) a @ (value_type (ty_vec128 ty)) b))
2038
- (x64_cmpp ty a b (FcmpImm.Ordered)))
2039
- (rule (lower (fcmp (FloatCC.Unordered) a @ (value_type (ty_vec128 ty)) b))
2040
- (x64_cmpp ty a b (FcmpImm.Unordered)))
2041
- (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThan) a @ (value_type (ty_vec128 ty)) b))
2042
- (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThan)))
2043
- (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2044
- (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThanOrEqual)))
2045
-
2046
- ;; Some vector lowerings rely on flipping the operands and using a reversed
2047
- ;; comparison code.
2048
-
2049
- (rule (lower (fcmp (FloatCC.GreaterThan) a @ (value_type (ty_vec128 ty)) b))
2050
- (x64_cmpp ty b a (FcmpImm.LessThan)))
2051
- (rule (lower (fcmp (FloatCC.GreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2052
- (x64_cmpp ty b a (FcmpImm.LessThanOrEqual)))
2053
- (rule (lower (fcmp (FloatCC.UnorderedOrLessThan) a @ (value_type (ty_vec128 ty)) b))
2054
- (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThan)))
2055
- (rule (lower (fcmp (FloatCC.UnorderedOrLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
2056
- (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThanOrEqual)))
2057
-
2058
- ;; Some vector lowerings are simply not supported for certain codes:
2059
- ;; - FloatCC::OrderedNotEqual
2060
- ;; - FloatCC::UnorderedOrEqual
2061
-
2062
- ;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2063
-
2064
- ;; When a `select` has an `fcmp` as a condition then rely on `emit_fcmp` to
2065
- ;; figure out how to perform the comparison.
2066
- ;;
2067
- ;; Note, though, that the `FloatCC.Equal` requires an "and" to happen for two
2068
- ;; condition codes which isn't the easiest thing to lower to a `cmove`
2069
- ;; instruction. For this reason a `select (fcmp eq ..) ..` is instead
2070
- ;; flipped around to be `select (fcmp ne ..) ..` with all operands reversed.
2071
- ;; This will produce a `FcmpCondResult.OrCondition` which is easier to codegen
2072
- ;; for.
2073
- (rule (lower (has_type ty (select (maybe_uextend (fcmp cc a b)) x y)))
2074
- (lower_select_fcmp ty (emit_fcmp cc a b) x y))
2075
- (rule 1 (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.Equal) a b)) x y)))
2076
- (lower_select_fcmp ty (emit_fcmp (FloatCC.NotEqual) a b) y x))
2077
-
2078
- (decl lower_select_fcmp (Type FcmpCondResult Value Value) InstOutput)
2079
- (rule (lower_select_fcmp ty (FcmpCondResult.Condition flags cc) x y)
2080
- (with_flags flags (cmove_from_values ty cc x y)))
2081
- (rule (lower_select_fcmp ty (FcmpCondResult.OrCondition flags cc1 cc2) x y)
2082
- (with_flags flags (cmove_or_from_values ty cc1 cc2 x y)))
2083
-
2084
- ;; We also can lower `select`s that depend on an `icmp` test, but more simply
2085
- ;; than the `fcmp` variants above. In these cases, we lower to a `CMP`
2086
- ;; instruction plus a `CMOV`; recall that `cmove_from_values` here may emit more
2087
- ;; than one instruction for certain types (e.g., XMM-held, I128).
2088
-
2089
- (rule (lower (has_type ty (select (maybe_uextend (icmp cc a @ (value_type (fits_in_64 a_ty)) b)) x y)))
2090
- (lower_select_icmp ty (emit_cmp cc a b) x y))
2091
-
2092
- ;; Finally, we lower `select` from a condition value `c`. These rules are meant
2093
- ;; to be the final, default lowerings if no other patterns matched above.
2094
-
2095
- (rule -1 (lower (has_type ty (select c @ (value_type (fits_in_64 a_ty)) x y)))
2096
- (let ((size OperandSize (raw_operand_size_of_type a_ty))
2097
- ;; N.B.: disallow load-op fusion, see above. TODO:
2098
- ;; https://github.com/bytecodealliance/wasmtime/issues/3953.
2099
- (gpr_c Gpr (put_in_gpr c)))
2100
- (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
2101
-
2102
- (rule -2 (lower (has_type ty (select c @ (value_type $I128) x y)))
2103
- (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
2104
- (select_icmp cond_result x y)))
2105
-
2106
- (decl lower_select_icmp (Type IcmpCondResult Value Value) InstOutput)
2107
- (rule (lower_select_icmp ty (IcmpCondResult.Condition flags cc) x y)
2108
- (with_flags flags (cmove_from_values ty cc x y)))
2109
-
2110
- ;; Specializations for floating-point compares to generate a `mins*` or a
2111
- ;; `maxs*` instruction. These are equivalent to the "pseudo-m{in,ax}"
2112
- ;; specializations for vectors.
2113
- (rule 2 (lower (has_type $F32 (select (maybe_uextend (fcmp (FloatCC.LessThan) x y)) x y)))
2114
- (x64_minss x y))
2115
- (rule 2 (lower (has_type $F64 (select (maybe_uextend (fcmp (FloatCC.LessThan) x y)) x y)))
2116
- (x64_minsd x y))
2117
- (rule 3 (lower (has_type $F32 (select (maybe_uextend (fcmp (FloatCC.LessThan) y x)) x y)))
2118
- (x64_maxss x y))
2119
- (rule 3 (lower (has_type $F64 (select (maybe_uextend (fcmp (FloatCC.LessThan) y x)) x y)))
2120
- (x64_maxsd x y))
2121
-
2122
- ;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2123
-
2124
- ;; If available, we can use a plain lzcnt instruction here. Note no
2125
- ;; special handling is required for zero inputs, because the machine
2126
- ;; instruction does what the CLIF expects for zero, i.e. it returns
2127
- ;; zero.
2128
- (rule 3 (lower (has_type (ty_32_or_64 ty) (clz src)))
2129
- (if-let $true (use_lzcnt))
2130
- (x64_lzcnt ty src))
2131
-
2132
- (rule 2 (lower (has_type (ty_32_or_64 ty) (clz src)))
2133
- (do_clz ty ty src))
2134
-
2135
- (rule 1 (lower
2136
- (has_type (ty_8_or_16 ty)
2137
- (clz src)))
2138
- (do_clz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
2139
-
2140
- (rule 0 (lower
2141
- (has_type $I128
2142
- (clz src)))
2143
- (let ((upper Gpr (do_clz $I64 $I64 (value_regs_get_gpr src 1)))
2144
- (lower Gpr (x64_add $I64
2145
- (do_clz $I64 $I64 (value_regs_get_gpr src 0))
2146
- (RegMemImm.Imm 64)))
2147
- (result_lo Gpr
2148
- (with_flags_reg
2149
- (x64_cmp_imm (OperandSize.Size64) 64 upper)
2150
- (cmove $I64 (CC.NZ) upper lower))))
2151
- (value_regs result_lo (imm $I64 0))))
2152
-
2153
- ;; Implementation helper for clz; operates on 32 or 64-bit units.
2154
- (decl do_clz (Type Type Gpr) Gpr)
2155
- (rule (do_clz ty orig_ty src)
2156
- (let ((highest_bit_index Reg (bsr_or_else ty src (imm_i64 $I64 -1)))
2157
- (bits_minus_1 Reg (imm ty (u64_sub (ty_bits_u64 orig_ty) 1))))
2158
- (x64_sub ty bits_minus_1 highest_bit_index)))
2159
-
2160
- ;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2161
-
2162
- ;; Analogous to `clz` cases above, but using mirror instructions
2163
- ;; (tzcnt vs lzcnt, bsf vs bsr).
2164
-
2165
- (rule 3 (lower (has_type (ty_32_or_64 ty) (ctz src)))
2166
- (if-let $true (use_bmi1))
2167
- (x64_tzcnt ty src))
2168
-
2169
- (rule 2 (lower (has_type (ty_32_or_64 ty) (ctz src)))
2170
- (do_ctz ty ty src))
2171
-
2172
- (rule 1 (lower
2173
- (has_type (ty_8_or_16 ty)
2174
- (ctz src)))
2175
- (do_ctz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
2176
-
2177
- (rule 0 (lower
2178
- (has_type $I128
2179
- (ctz src)))
2180
- (let ((lower Gpr (do_ctz $I64 $I64 (value_regs_get_gpr src 0)))
2181
- (upper Gpr (x64_add $I64
2182
- (do_ctz $I64 $I64 (value_regs_get_gpr src 1))
2183
- (RegMemImm.Imm 64)))
2184
- (result_lo Gpr
2185
- (with_flags_reg
2186
- (x64_cmp_imm (OperandSize.Size64) 64 lower)
2187
- (cmove $I64 (CC.Z) upper lower))))
2188
- (value_regs result_lo (imm $I64 0))))
2189
-
2190
- (decl do_ctz (Type Type Gpr) Gpr)
2191
- (rule (do_ctz ty orig_ty src)
2192
- (bsf_or_else ty src (imm $I64 (ty_bits_u64 orig_ty))))
2193
-
2194
- ;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2195
-
2196
- (rule 4 (lower (has_type (ty_32_or_64 ty) (popcnt src)))
2197
- (if-let $true (use_popcnt))
2198
- (x64_popcnt ty src))
2199
-
2200
- (rule 3 (lower (has_type (ty_8_or_16 ty) (popcnt src)))
2201
- (if-let $true (use_popcnt))
2202
- (x64_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2203
-
2204
- (rule 1 (lower (has_type $I128 (popcnt src)))
2205
- (if-let $true (use_popcnt))
2206
- (let ((lo_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 0)))
2207
- (hi_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 1))))
2208
- (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2209
-
2210
- (rule -1 (lower
2211
- (has_type (ty_32_or_64 ty)
2212
- (popcnt src)))
2213
- (do_popcnt ty src))
2214
-
2215
- (rule -2 (lower
2216
- (has_type (ty_8_or_16 ty)
2217
- (popcnt src)))
2218
- (do_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2219
-
2220
- (rule (lower
2221
- (has_type $I128
2222
- (popcnt src)))
2223
- (let ((lo_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 0)))
2224
- (hi_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 1))))
2225
- (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2226
-
2227
- ;; Implementation of popcount when we don't nave a native popcount
2228
- ;; instruction.
2229
- (decl do_popcnt (Type Gpr) Gpr)
2230
- (rule (do_popcnt $I64 src)
2231
- (let ((shifted1 Gpr (x64_shr $I64 src (Imm8Reg.Imm8 1)))
2232
- (sevens Gpr (imm $I64 0x7777777777777777))
2233
- (masked1 Gpr (x64_and $I64 shifted1 sevens))
2234
- ;; diff1 := src - ((src >> 1) & 0b0111_0111_0111...)
2235
- (diff1 Gpr (x64_sub $I64 src masked1))
2236
- (shifted2 Gpr (x64_shr $I64 masked1 (Imm8Reg.Imm8 1)))
2237
- (masked2 Gpr (x64_and $I64 shifted2 sevens))
2238
- ;; diff2 := diff1 - ((diff1 >> 1) & 0b0111_0111_0111...)
2239
- (diff2 Gpr (x64_sub $I64 diff1 masked2))
2240
- (shifted3 Gpr (x64_shr $I64 masked2 (Imm8Reg.Imm8 1)))
2241
- (masked3 Gpr (x64_and $I64 shifted3 sevens))
2242
- ;; diff3 := diff2 - ((diff2 >> 1) & 0b0111_0111_0111...)
2243
- ;;
2244
- ;; At this point, each nibble of diff3 is the popcount of
2245
- ;; that nibble. This works because at each step above, we
2246
- ;; are basically subtracting floor(value / 2) from the
2247
- ;; running value; the leftover remainder is 1 if the LSB
2248
- ;; was 1. After three steps, we have (nibble / 8) -- 0 or
2249
- ;; 1 for the MSB of the nibble -- plus three possible
2250
- ;; additions for the three other bits.
2251
- (diff3 Gpr (x64_sub $I64 diff2 masked3))
2252
- ;; Add the two nibbles of each byte together.
2253
- (sum1 Gpr (x64_add $I64
2254
- (x64_shr $I64 diff3 (Imm8Reg.Imm8 4))
2255
- diff3))
2256
- ;; Mask the above sum to have the popcount for each byte
2257
- ;; in the lower nibble of that byte.
2258
- (ofof Gpr (imm $I64 0x0f0f0f0f0f0f0f0f))
2259
- (masked4 Gpr (x64_and $I64 sum1 ofof))
2260
- (ones Gpr (imm $I64 0x0101010101010101))
2261
- ;; Use a multiply to sum all of the bytes' popcounts into
2262
- ;; the top byte. Consider the binomial expansion for the
2263
- ;; top byte: it is the sum of the bytes (masked4 >> 56) *
2264
- ;; 0x01 + (masked4 >> 48) * 0x01 + (masked4 >> 40) * 0x01
2265
- ;; + ... + (masked4 >> 0).
2266
- (mul Gpr (x64_imul $I64 masked4 ones))
2267
- ;; Now take that top byte and return it as the popcount.
2268
- (final Gpr (x64_shr $I64 mul (Imm8Reg.Imm8 56))))
2269
- final))
2270
-
2271
- ;; This is the 32-bit version of the above; the steps for each nibble
2272
- ;; are the same, we just use constants half as wide.
2273
- (rule (do_popcnt $I32 src)
2274
- (let ((shifted1 Gpr (x64_shr $I32 src (Imm8Reg.Imm8 1)))
2275
- (sevens Gpr (imm $I32 0x77777777))
2276
- (masked1 Gpr (x64_and $I32 shifted1 sevens))
2277
- (diff1 Gpr (x64_sub $I32 src masked1))
2278
- (shifted2 Gpr (x64_shr $I32 masked1 (Imm8Reg.Imm8 1)))
2279
- (masked2 Gpr (x64_and $I32 shifted2 sevens))
2280
- (diff2 Gpr (x64_sub $I32 diff1 masked2))
2281
- (shifted3 Gpr (x64_shr $I32 masked2 (Imm8Reg.Imm8 1)))
2282
- (masked3 Gpr (x64_and $I32 shifted3 sevens))
2283
- (diff3 Gpr (x64_sub $I32 diff2 masked3))
2284
- (sum1 Gpr (x64_add $I32
2285
- (x64_shr $I32 diff3 (Imm8Reg.Imm8 4))
2286
- diff3))
2287
- (masked4 Gpr (x64_and $I32 sum1 (RegMemImm.Imm 0x0f0f0f0f)))
2288
- (mul Gpr (x64_imul_imm $I32 masked4 0x01010101))
2289
- (final Gpr (x64_shr $I32 mul (Imm8Reg.Imm8 24))))
2290
- final))
2291
-
2292
-
2293
- (rule 2 (lower (has_type $I8X16 (popcnt src)))
2294
- (if-let $true (use_avx512vl))
2295
- (if-let $true (use_avx512bitalg))
2296
- (x64_vpopcntb src))
2297
-
2298
-
2299
- ;; For SSE 4.2 we use Mula's algorithm (https://arxiv.org/pdf/1611.07612.pdf):
2300
- ;;
2301
- ;; __m128i count_bytes ( __m128i v) {
2302
- ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2303
- ;; __m128i low_mask = _mm_set1_epi8 (0x0f);
2304
- ;; __m128i lo = _mm_and_si128 (v, low_mask);
2305
- ;; __m128i hi = _mm_and_si128 (_mm_srli_epi16 (v, 4), low_mask);
2306
- ;; __m128i cnt1 = _mm_shuffle_epi8 (lookup, lo);
2307
- ;; __m128i cnt2 = _mm_shuffle_epi8 (lookup, hi);
2308
- ;; return _mm_add_epi8 (cnt1, cnt2);
2309
- ;; }
2310
- ;;
2311
- ;; Details of the above algorithm can be found in the reference noted above, but the basics
2312
- ;; are to create a lookup table that pre populates the popcnt values for each number [0,15].
2313
- ;; The algorithm uses shifts to isolate 4 bit sections of the vector, pshufb as part of the
2314
- ;; lookup process, and adds together the results.
2315
- ;;
2316
- ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2317
-
2318
-
2319
- (rule 1 (lower (has_type $I8X16 (popcnt src)))
2320
- (if-let $true (use_ssse3))
2321
- (let ((low_mask XmmMem (emit_u128_le_const 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f))
2322
- (low_nibbles Xmm (sse_and $I8X16 src low_mask))
2323
- ;; Note that this is a 16x8 shift, but that's OK; we mask
2324
- ;; off anything that traverses from one byte to the next
2325
- ;; with the low_mask below.
2326
- (shifted_src Xmm (x64_psrlw src (xmi_imm 4)))
2327
- (high_nibbles Xmm (sse_and $I8X16 shifted_src low_mask))
2328
- (lookup Xmm (x64_xmm_load_const $I8X16
2329
- (emit_u128_le_const 0x04030302_03020201_03020201_02010100)))
2330
- (bit_counts_low Xmm (x64_pshufb lookup low_nibbles))
2331
- (bit_counts_high Xmm (x64_pshufb lookup high_nibbles)))
2332
- (x64_paddb bit_counts_low bit_counts_high)))
2333
-
2334
- ;; A modified version of the popcnt method from Hacker's Delight.
2335
- (rule (lower (has_type $I8X16 (popcnt src)))
2336
- (let ((mask1 XmmMem (emit_u128_le_const 0x77777777777777777777777777777777))
2337
- (src Xmm src)
2338
- (shifted Xmm (x64_pand (x64_psrlq src (xmi_imm 1)) mask1))
2339
- (src Xmm (x64_psubb src shifted))
2340
- (shifted Xmm (x64_pand (x64_psrlq shifted (xmi_imm 1)) mask1))
2341
- (src Xmm (x64_psubb src shifted))
2342
- (shifted Xmm (x64_pand (x64_psrlq shifted (xmi_imm 1)) mask1))
2343
- (src Xmm (x64_psubb src shifted))
2344
- (src Xmm (x64_paddb src (x64_psrlw src (xmi_imm 4)))))
2345
- (x64_pand src (emit_u128_le_const 0x0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f0f))))
2346
-
2347
- ;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2348
-
2349
- (rule (lower (has_type $I8 (bitrev src)))
2350
- (do_bitrev8 $I32 src))
2351
-
2352
- (rule (lower (has_type $I16 (bitrev src)))
2353
- (do_bitrev16 $I32 src))
2354
-
2355
- (rule (lower (has_type $I32 (bitrev src)))
2356
- (do_bitrev32 $I32 src))
2357
-
2358
- (rule (lower (has_type $I64 (bitrev src)))
2359
- (do_bitrev64 $I64 src))
2360
-
2361
- (rule (lower (has_type $I128 (bitrev src)))
2362
- (value_regs
2363
- (do_bitrev64 $I64 (value_regs_get_gpr src 1))
2364
- (do_bitrev64 $I64 (value_regs_get_gpr src 0))))
2365
-
2366
- (decl do_bitrev8 (Type Gpr) Gpr)
2367
- (rule (do_bitrev8 ty src)
2368
- (let ((tymask u64 (ty_mask ty))
2369
- (mask1 Gpr (imm ty (u64_and tymask 0x5555555555555555)))
2370
- (lo1 Gpr (x64_and ty src mask1))
2371
- (hi1 Gpr (x64_and ty (x64_shr ty src (Imm8Reg.Imm8 1)) mask1))
2372
- (swap1 Gpr (x64_or ty
2373
- (x64_shl ty lo1 (Imm8Reg.Imm8 1))
2374
- hi1))
2375
- (mask2 Gpr (imm ty (u64_and tymask 0x3333333333333333)))
2376
- (lo2 Gpr (x64_and ty swap1 mask2))
2377
- (hi2 Gpr (x64_and ty (x64_shr ty swap1 (Imm8Reg.Imm8 2)) mask2))
2378
- (swap2 Gpr (x64_or ty
2379
- (x64_shl ty lo2 (Imm8Reg.Imm8 2))
2380
- hi2))
2381
- (mask4 Gpr (imm ty (u64_and tymask 0x0f0f0f0f0f0f0f0f)))
2382
- (lo4 Gpr (x64_and ty swap2 mask4))
2383
- (hi4 Gpr (x64_and ty (x64_shr ty swap2 (Imm8Reg.Imm8 4)) mask4))
2384
- (swap4 Gpr (x64_or ty
2385
- (x64_shl ty lo4 (Imm8Reg.Imm8 4))
2386
- hi4)))
2387
- swap4))
2388
-
2389
- (decl do_bitrev16 (Type Gpr) Gpr)
2390
- (rule (do_bitrev16 ty src)
2391
- (let ((src_ Gpr (do_bitrev8 ty src))
2392
- (tymask u64 (ty_mask ty))
2393
- (mask8 Gpr (imm ty (u64_and tymask 0x00ff00ff00ff00ff)))
2394
- (lo8 Gpr (x64_and ty src_ mask8))
2395
- (hi8 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 8)) mask8))
2396
- (swap8 Gpr (x64_or ty
2397
- (x64_shl ty lo8 (Imm8Reg.Imm8 8))
2398
- hi8)))
2399
- swap8))
2400
-
2401
- (decl do_bitrev32 (Type Gpr) Gpr)
2402
- (rule (do_bitrev32 ty src)
2403
- (let ((src_ Gpr (do_bitrev16 ty src))
2404
- (tymask u64 (ty_mask ty))
2405
- (mask16 Gpr (imm ty (u64_and tymask 0x0000ffff0000ffff)))
2406
- (lo16 Gpr (x64_and ty src_ mask16))
2407
- (hi16 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 16)) mask16))
2408
- (swap16 Gpr (x64_or ty
2409
- (x64_shl ty lo16 (Imm8Reg.Imm8 16))
2410
- hi16)))
2411
- swap16))
2412
-
2413
- (decl do_bitrev64 (Type Gpr) Gpr)
2414
- (rule (do_bitrev64 ty @ $I64 src)
2415
- (let ((src_ Gpr (do_bitrev32 ty src))
2416
- (mask32 Gpr (imm ty 0xffffffff))
2417
- (lo32 Gpr (x64_and ty src_ mask32))
2418
- (hi32 Gpr (x64_shr ty src_ (Imm8Reg.Imm8 32)))
2419
- (swap32 Gpr (x64_or ty
2420
- (x64_shl ty lo32 (Imm8Reg.Imm8 32))
2421
- hi32)))
2422
- swap32))
2423
-
2424
- ;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2425
-
2426
- ;; x64 bswap instruction is only for 32- or 64-bit swaps
2427
- ;; implement the 16-bit swap as a rotl by 8
2428
- (rule (lower (has_type $I16 (bswap src)))
2429
- (x64_rotl $I16 src (Imm8Reg.Imm8 8)))
2430
-
2431
- (rule (lower (has_type $I32 (bswap src)))
2432
- (x64_bswap $I32 src))
2433
-
2434
- (rule (lower (has_type $I64 (bswap src)))
2435
- (x64_bswap $I64 src))
2436
-
2437
- (rule (lower (has_type $I128 (bswap src)))
2438
- (value_regs
2439
- (x64_bswap $I64 (value_regs_get_gpr src 1))
2440
- (x64_bswap $I64 (value_regs_get_gpr src 0))))
2441
-
2442
- ;; Rules for `is_null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2443
-
2444
- ;; Null references are represented by the constant value `0`.
2445
- (rule (lower (is_null src @ (value_type $R64)))
2446
- (with_flags
2447
- (x64_cmp_imm (OperandSize.Size64) 0 src)
2448
- (x64_setcc (CC.Z))))
2449
-
2450
- ;; Rules for `is_invalid` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2451
-
2452
- ;; Invalid references are represented by the constant value `-1`.
2453
- (rule (lower (is_invalid src @ (value_type $R64)))
2454
- (with_flags
2455
- (x64_cmp_imm (OperandSize.Size64) 0xffffffff src) ;; simm32 0xffff_ffff is sign-extended to -1.
2456
- (x64_setcc (CC.Z))))
2457
-
2458
-
2459
- ;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2460
-
2461
- ;; I{8,16,32,64} -> I128.
2462
- (rule (lower (has_type $I128 (uextend src)))
2463
- (value_regs (extend_to_gpr src $I64 (ExtendKind.Zero)) (imm $I64 0)))
2464
-
2465
- ;; I{8,16,32} -> I64.
2466
- (rule (lower (has_type $I64 (uextend src)))
2467
- (extend_to_gpr src $I64 (ExtendKind.Zero)))
2468
-
2469
- ;; I{8,16} -> I32
2470
- ;; I8 -> I16
2471
- (rule -1 (lower (has_type (fits_in_32 _) (uextend src)))
2472
- (extend_to_gpr src $I32 (ExtendKind.Zero)))
2473
-
2474
- ;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2475
-
2476
- ;; I{8,16,32} -> I128.
2477
- ;;
2478
- ;; Produce upper 64 bits sign-extended from lower 64: shift right by
2479
- ;; 63 bits to spread the sign bit across the result.
2480
- (rule (lower (has_type $I128 (sextend src)))
2481
- (let ((lo Gpr (extend_to_gpr src $I64 (ExtendKind.Sign)))
2482
- (hi Gpr (x64_sar $I64 lo (Imm8Reg.Imm8 63))))
2483
- (value_regs lo hi)))
2484
-
2485
- ;; I{8,16,32} -> I64.
2486
- (rule (lower (has_type $I64 (sextend src)))
2487
- (extend_to_gpr src $I64 (ExtendKind.Sign)))
2488
-
2489
- ;; I{8,16} -> I32
2490
- ;; I8 -> I16
2491
- (rule -1 (lower (has_type (fits_in_32 _) (sextend src)))
2492
- (extend_to_gpr src $I32 (ExtendKind.Sign)))
2493
-
2494
- ;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2495
-
2496
- ;; T -> T is always a no-op, even I128 -> I128.
2497
- (rule (lower (has_type ty (ireduce src @ (value_type ty))))
2498
- src)
2499
-
2500
- ;; T -> I{64,32,16,8}: We can simply pass through the value: values
2501
- ;; are always stored with high bits undefined, so we can just leave
2502
- ;; them be.
2503
- (rule 1 (lower (has_type (fits_in_64 ty) (ireduce src)))
2504
- (value_regs_get_gpr src 0))
2505
-
2506
- ;; Rules for `debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2507
-
2508
- (rule (lower (debugtrap))
2509
- (side_effect (x64_hlt)))
2510
-
2511
- ;; Rules for `x86_pmaddubsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2512
-
2513
- (rule (lower (has_type $I16X8 (x86_pmaddubsw x y)))
2514
- (if-let $true (use_ssse3))
2515
- (x64_pmaddubsw y x))
2516
-
2517
- ;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2518
-
2519
- (rule (lower (has_type $F32 (fadd x y)))
2520
- (x64_addss x y))
2521
- (rule (lower (has_type $F64 (fadd x y)))
2522
- (x64_addsd x y))
2523
- (rule (lower (has_type $F32X4 (fadd x y)))
2524
- (x64_addps x y))
2525
- (rule (lower (has_type $F64X2 (fadd x y)))
2526
- (x64_addpd x y))
2527
-
2528
- ;; The above rules automatically sink loads for rhs operands, so additionally
2529
- ;; add rules for sinking loads with lhs operands.
2530
- (rule 1 (lower (has_type $F32 (fadd (sinkable_load x) y)))
2531
- (x64_addss y x))
2532
- (rule 1 (lower (has_type $F64 (fadd (sinkable_load x) y)))
2533
- (x64_addsd y x))
2534
- (rule 1 (lower (has_type $F32X4 (fadd (sinkable_load x) y)))
2535
- (x64_addps y x))
2536
- (rule 1 (lower (has_type $F64X2 (fadd (sinkable_load x) y)))
2537
- (x64_addpd y x))
2538
-
2539
- ;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2540
-
2541
- (rule (lower (has_type $F32 (fsub x y)))
2542
- (x64_subss x y))
2543
- (rule (lower (has_type $F64 (fsub x y)))
2544
- (x64_subsd x y))
2545
- (rule (lower (has_type $F32X4 (fsub x y)))
2546
- (x64_subps x y))
2547
- (rule (lower (has_type $F64X2 (fsub x y)))
2548
- (x64_subpd x y))
2549
-
2550
- ;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2551
-
2552
- (rule (lower (has_type $F32 (fmul x y)))
2553
- (x64_mulss x y))
2554
- (rule (lower (has_type $F64 (fmul x y)))
2555
- (x64_mulsd x y))
2556
- (rule (lower (has_type $F32X4 (fmul x y)))
2557
- (x64_mulps x y))
2558
- (rule (lower (has_type $F64X2 (fmul x y)))
2559
- (x64_mulpd x y))
2560
-
2561
- ;; The above rules automatically sink loads for rhs operands, so additionally
2562
- ;; add rules for sinking loads with lhs operands.
2563
- (rule 1 (lower (has_type $F32 (fmul (sinkable_load x) y)))
2564
- (x64_mulss y x))
2565
- (rule 1 (lower (has_type $F64 (fmul (sinkable_load x) y)))
2566
- (x64_mulsd y x))
2567
- (rule 1 (lower (has_type $F32X4 (fmul (sinkable_load x) y)))
2568
- (x64_mulps y x))
2569
- (rule 1 (lower (has_type $F64X2 (fmul (sinkable_load x) y)))
2570
- (x64_mulpd y x))
2571
-
2572
- ;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2573
-
2574
- (rule (lower (has_type $F32 (fdiv x y)))
2575
- (x64_divss x y))
2576
- (rule (lower (has_type $F64 (fdiv x y)))
2577
- (x64_divsd x y))
2578
- (rule (lower (has_type $F32X4 (fdiv x y)))
2579
- (x64_divps x y))
2580
- (rule (lower (has_type $F64X2 (fdiv x y)))
2581
- (x64_divpd x y))
2582
-
2583
- ;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2584
- (rule (lower (has_type $F32 (sqrt x)))
2585
- (x64_sqrtss (xmm_zero $F32X4) x))
2586
- (rule (lower (has_type $F64 (sqrt x)))
2587
- (x64_sqrtsd (xmm_zero $F64X2) x))
2588
- (rule (lower (has_type $F32X4 (sqrt x)))
2589
- (x64_sqrtps x))
2590
- (rule (lower (has_type $F64X2 (sqrt x)))
2591
- (x64_sqrtpd x))
2592
-
2593
- ;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2594
- (rule (lower (has_type $F64 (fpromote x)))
2595
- (x64_cvtss2sd (xmm_zero $F64X2) x))
2596
-
2597
- ;; Rules for `fvpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2598
- (rule (lower (has_type $F64X2 (fvpromote_low x)))
2599
- (x64_cvtps2pd (put_in_xmm x)))
2600
-
2601
- ;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2602
- (rule (lower (has_type $F32 (fdemote x)))
2603
- (x64_cvtsd2ss (xmm_zero $F32X4) x))
2604
-
2605
- ;; Rules for `fvdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2606
- (rule (lower (has_type $F32X4 (fvdemote x)))
2607
- (x64_cvtpd2ps x))
2608
-
2609
- ;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2610
-
2611
- (rule (lower (has_type $F32 (fmin x y)))
2612
- (xmm_min_max_seq $F32 $true x y))
2613
- (rule (lower (has_type $F64 (fmin x y)))
2614
- (xmm_min_max_seq $F64 $true x y))
2615
-
2616
- ;; Vector-typed version. We don't use single pseudoinstructions as
2617
- ;; above, because we don't need to generate a mini-CFG. Instead, we
2618
- ;; perform a branchless series of operations.
2619
- ;;
2620
- ;; We cannot simply use native min instructions (minps, minpd) because
2621
- ;; NaN handling is different per CLIF semantics than on
2622
- ;; x86. Specifically, if an argument is NaN, or the arguments are both
2623
- ;; zero but of opposite signs, then the x86 instruction always
2624
- ;; produces the second argument. However, per CLIF semantics, we
2625
- ;; require that fmin(NaN, _) = fmin(_, NaN) = NaN, and fmin(+0, -0) =
2626
- ;; fmin(-0, +0) = -0.
2627
-
2628
- (rule (lower (has_type $F32X4 (fmin x y)))
2629
- ;; Compute min(x, y) and min(y, x) with native
2630
- ;; instructions. These will differ in one of the edge cases
2631
- ;; above that we have to handle properly. (Conversely, if they
2632
- ;; don't differ, then the native instruction's answer is the
2633
- ;; right one per CLIF semantics.)
2634
- (let ((min1 Xmm (x64_minps x y))
2635
- (min2 Xmm (x64_minps y x))
2636
- ;; Compute the OR of the two. Note that NaNs have an
2637
- ;; exponent field of all-ones (0xFF for F32), so if either
2638
- ;; result is a NaN, this OR will be. And if either is a
2639
- ;; zero (which has an exponent of 0 and mantissa of 0),
2640
- ;; this captures a sign-bit of 1 (negative) if either
2641
- ;; input is negative.
2642
- ;;
2643
- ;; In the case where we don't have a +/-0 mismatch or
2644
- ;; NaNs, then `min1` and `min2` are equal and `min_or` is
2645
- ;; the correct minimum.
2646
- (min_or Xmm (x64_orps min1 min2))
2647
- ;; "compare unordered" produces a true mask (all ones) in
2648
- ;; a given lane if the min is a NaN. We use this to
2649
- ;; generate a mask to ensure quiet NaNs.
2650
- (is_nan_mask Xmm (x64_cmpps min_or min2 (FcmpImm.Unordered)))
2651
- ;; OR in the NaN mask.
2652
- (min_or_2 Xmm (x64_orps min_or is_nan_mask))
2653
- ;; Shift the NaN mask down so that it covers just the
2654
- ;; fraction below the NaN signalling bit; we'll use this
2655
- ;; to mask off non-canonical NaN payloads.
2656
- ;;
2657
- ;; All-ones for NaN, shifted down to leave 10 top bits (1
2658
- ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2659
- ;; cleared.
2660
- (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2661
- ;; Do a NAND, so that we retain every bit not set in
2662
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2663
- ;; we retain every bit) in non-NaN cases, and will have
2664
- ;; ones (so we clear those bits) in NaN-payload bits
2665
- ;; otherwise.
2666
- (final Xmm (x64_andnps nan_fraction_mask min_or_2)))
2667
- final))
2668
-
2669
- ;; Likewise for F64 lanes, except that the right-shift is by 13 bits
2670
- ;; (1 sign, 11 exponent, 1 QNaN bit).
2671
- (rule (lower (has_type $F64X2 (fmin x y)))
2672
- (let ((min1 Xmm (x64_minpd x y))
2673
- (min2 Xmm (x64_minpd y x))
2674
- (min_or Xmm (x64_orpd min1 min2))
2675
- (is_nan_mask Xmm (x64_cmppd min1 min2 (FcmpImm.Unordered)))
2676
- (min_or_2 Xmm (x64_orpd min_or is_nan_mask))
2677
- (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2678
- (final Xmm (x64_andnpd nan_fraction_mask min_or_2)))
2679
- final))
2680
-
2681
- ;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2682
-
2683
- (rule (lower (has_type $F32 (fmax x y)))
2684
- (xmm_min_max_seq $F32 $false x y))
2685
- (rule (lower (has_type $F64 (fmax x y)))
2686
- (xmm_min_max_seq $F64 $false x y))
2687
-
2688
- ;; The vector version of fmax here is a dual to the fmin sequence
2689
- ;; above, almost, with a few differences.
2690
-
2691
- (rule (lower (has_type $F32X4 (fmax x y)))
2692
- ;; Compute max(x, y) and max(y, x) with native
2693
- ;; instructions. These will differ in one of the edge cases
2694
- ;; above that we have to handle properly. (Conversely, if they
2695
- ;; don't differ, then the native instruction's answer is the
2696
- ;; right one per CLIF semantics.)
2697
- (let ((max1 Xmm (x64_maxps x y))
2698
- (max2 Xmm (x64_maxps y x))
2699
- ;; Compute the XOR of the two maxima. In the case
2700
- ;; where we don't have a +/-0 mismatch or NaNs, then
2701
- ;; `min1` and `min2` are equal and this XOR is zero.
2702
- (max_xor Xmm (x64_xorps max1 max2))
2703
- ;; OR the XOR into one of the original maxima. If they are
2704
- ;; equal, this does nothing. If max2 was NaN, its exponent
2705
- ;; bits were all-ones, so the xor's exponent bits were the
2706
- ;; complement of max1, and the OR of max1 and max_xor has
2707
- ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2708
- ;; its exponent bits were already all-ones, so the OR will
2709
- ;; be a NaN as well.
2710
- (max_blended_nan Xmm (x64_orps max1 max_xor))
2711
- ;; Subtract the XOR. This ensures that if we had +0 and
2712
- ;; -0, we end up with +0.
2713
- (max_blended_nan_positive Xmm (x64_subps max_blended_nan max_xor))
2714
- ;; "compare unordered" produces a true mask (all ones) in
2715
- ;; a given lane if the min is a NaN. We use this to
2716
- ;; generate a mask to ensure quiet NaNs.
2717
- (is_nan_mask Xmm (x64_cmpps max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2718
- ;; Shift the NaN mask down so that it covers just the
2719
- ;; fraction below the NaN signalling bit; we'll use this
2720
- ;; to mask off non-canonical NaN payloads.
2721
- ;;
2722
- ;; All-ones for NaN, shifted down to leave 10 top bits (1
2723
- ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2724
- ;; cleared.
2725
- (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2726
- ;; Do a NAND, so that we retain every bit not set in
2727
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2728
- ;; we retain every bit) in non-NaN cases, and will have
2729
- ;; ones (so we clear those bits) in NaN-payload bits
2730
- ;; otherwise.
2731
- (final Xmm (x64_andnps nan_fraction_mask max_blended_nan_positive)))
2732
- final))
2733
-
2734
- (rule (lower (has_type $F64X2 (fmax x y)))
2735
- ;; Compute max(x, y) and max(y, x) with native
2736
- ;; instructions. These will differ in one of the edge cases
2737
- ;; above that we have to handle properly. (Conversely, if they
2738
- ;; don't differ, then the native instruction's answer is the
2739
- ;; right one per CLIF semantics.)
2740
- (let ((max1 Xmm (x64_maxpd x y))
2741
- (max2 Xmm (x64_maxpd y x))
2742
- ;; Compute the XOR of the two maxima. In the case
2743
- ;; where we don't have a +/-0 mismatch or NaNs, then
2744
- ;; `min1` and `min2` are equal and this XOR is zero.
2745
- (max_xor Xmm (x64_xorpd max1 max2))
2746
- ;; OR the XOR into one of the original maxima. If they are
2747
- ;; equal, this does nothing. If max2 was NaN, its exponent
2748
- ;; bits were all-ones, so the xor's exponent bits were the
2749
- ;; complement of max1, and the OR of max1 and max_xor has
2750
- ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2751
- ;; its exponent bits were already all-ones, so the OR will
2752
- ;; be a NaN as well.
2753
- (max_blended_nan Xmm (x64_orpd max1 max_xor))
2754
- ;; Subtract the XOR. This ensures that if we had +0 and
2755
- ;; -0, we end up with +0.
2756
- (max_blended_nan_positive Xmm (x64_subpd max_blended_nan max_xor))
2757
- ;; `cmpps` with predicate index `3` is `cmpunordps`, or
2758
- ;; "compare unordered": it produces a true mask (all ones)
2759
- ;; in a given lane if the min is a NaN. We use this to
2760
- ;; generate a mask to ensure quiet NaNs.
2761
- (is_nan_mask Xmm (x64_cmppd max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2762
- ;; Shift the NaN mask down so that it covers just the
2763
- ;; fraction below the NaN signalling bit; we'll use this
2764
- ;; to mask off non-canonical NaN payloads.
2765
- ;;
2766
- ;; All-ones for NaN, shifted down to leave 13 top bits (1
2767
- ;; sign, 11 exponent, 1 QNaN bit that must remain set)
2768
- ;; cleared.
2769
- (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2770
- ;; Do a NAND, so that we retain every bit not set in
2771
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2772
- ;; we retain every bit) in non-NaN cases, and will have
2773
- ;; ones (so we clear those bits) in NaN-payload bits
2774
- ;; otherwise.
2775
- (final Xmm (x64_andnpd nan_fraction_mask max_blended_nan_positive)))
2776
- final))
2777
-
2778
- ;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2779
-
2780
- ;; Base case for fma is to call out to one of two libcalls. For vectors they
2781
- ;; need to be decomposed, handle each element individually, and then recomposed.
2782
-
2783
- (rule (lower (has_type $F32 (fma x y z)))
2784
- (libcall_3 (LibCall.FmaF32) x y z))
2785
- (rule (lower (has_type $F64 (fma x y z)))
2786
- (libcall_3 (LibCall.FmaF64) x y z))
2787
-
2788
- (rule (lower (has_type $F32X4 (fma x y z)))
2789
- (let (
2790
- (x Xmm (put_in_xmm x))
2791
- (y Xmm (put_in_xmm y))
2792
- (z Xmm (put_in_xmm z))
2793
- (x0 Xmm (libcall_3 (LibCall.FmaF32) x y z))
2794
- (x1 Xmm (libcall_3 (LibCall.FmaF32)
2795
- (x64_pshufd x 1)
2796
- (x64_pshufd y 1)
2797
- (x64_pshufd z 1)))
2798
- (x2 Xmm (libcall_3 (LibCall.FmaF32)
2799
- (x64_pshufd x 2)
2800
- (x64_pshufd y 2)
2801
- (x64_pshufd z 2)))
2802
- (x3 Xmm (libcall_3 (LibCall.FmaF32)
2803
- (x64_pshufd x 3)
2804
- (x64_pshufd y 3)
2805
- (x64_pshufd z 3)))
2806
-
2807
- (tmp Xmm (vec_insert_lane $F32X4 x0 x1 1))
2808
- (tmp Xmm (vec_insert_lane $F32X4 tmp x2 2))
2809
- (tmp Xmm (vec_insert_lane $F32X4 tmp x3 3))
2810
- )
2811
- tmp))
2812
- (rule (lower (has_type $F64X2 (fma x y z)))
2813
- (let (
2814
- (x Xmm (put_in_xmm x))
2815
- (y Xmm (put_in_xmm y))
2816
- (z Xmm (put_in_xmm z))
2817
- (x0 Xmm (libcall_3 (LibCall.FmaF64) x y z))
2818
- (x1 Xmm (libcall_3 (LibCall.FmaF64)
2819
- (x64_pshufd x 0xee)
2820
- (x64_pshufd y 0xee)
2821
- (x64_pshufd z 0xee)))
2822
- )
2823
- (vec_insert_lane $F64X2 x0 x1 1)))
2824
-
2825
-
2826
- ;; Special case for when the `fma` feature is active and a native instruction
2827
- ;; can be used.
2828
- (rule 1 (lower (has_type ty (fma x y z)))
2829
- (if-let $true (use_fma))
2830
- (fmadd ty x y z))
2831
-
2832
- (decl fmadd (Type Value Value Value) Xmm)
2833
- (decl fnmadd (Type Value Value Value) Xmm)
2834
-
2835
- ;; Base case. Note that this will automatically sink a load with `z`, the value
2836
- ;; to add.
2837
- (rule (fmadd ty x y z) (x64_vfmadd213 ty x y z))
2838
-
2839
- ;; Allow sinking loads with one of the two values being multiplied in addition
2840
- ;; to the value being added. Note that both x and y can be sunk here due to
2841
- ;; multiplication being commutative.
2842
- (rule 1 (fmadd ty (sinkable_load x) y z) (x64_vfmadd132 ty y z x))
2843
- (rule 2 (fmadd ty x (sinkable_load y) z) (x64_vfmadd132 ty x z y))
2844
-
2845
- ;; If one of the values being multiplied is negated then use a `vfnmadd*`
2846
- ;; instruction instead
2847
- (rule 3 (fmadd ty (fneg x) y z) (fnmadd ty x y z))
2848
- (rule 4 (fmadd ty x (fneg y) z) (fnmadd ty x y z))
2849
-
2850
- (rule (fnmadd ty x y z) (x64_vfnmadd213 ty x y z))
2851
- (rule 1 (fnmadd ty (sinkable_load x) y z) (x64_vfnmadd132 ty y z x))
2852
- (rule 2 (fnmadd ty x (sinkable_load y) z) (x64_vfnmadd132 ty x z y))
2853
-
2854
- ;; Like `fmadd` if one argument is negated switch which one is being codegen'd
2855
- (rule 3 (fnmadd ty (fneg x) y z) (fmadd ty x y z))
2856
- (rule 4 (fnmadd ty x (fneg y) z) (fmadd ty x y z))
2857
-
2858
- ;; Rules for `load*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2859
-
2860
- ;; In order to load a value from memory to a GPR register, we may need to extend
2861
- ;; the loaded value from 8-, 16-, or 32-bits to this backend's expected GPR
2862
- ;; width: 64 bits. Note that `ext_mode` will load 1-bit types (booleans) as
2863
- ;; 8-bit loads.
2864
- ;;
2865
- ;; By default, we zero-extend all sub-64-bit loads to a GPR.
2866
- (rule -4 (lower (has_type (and (fits_in_32 ty) (is_gpr_type _)) (load flags address offset)))
2867
- (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address offset)))
2868
- ;; But if we know that both the `from` and `to` are 64 bits, we simply load with
2869
- ;; no extension.
2870
- (rule -1 (lower (has_type (ty_int_ref_64 ty) (load flags address offset)))
2871
- (x64_mov (to_amode flags address offset)))
2872
- ;; Also, certain scalar loads have a specific `from` width and extension kind
2873
- ;; (signed -> `sx`, zeroed -> `zx`). We overwrite the high bits of the 64-bit
2874
- ;; GPR even if the `to` type is smaller (e.g., 16-bits).
2875
- (rule (lower (has_type (is_gpr_type ty) (uload8 flags address offset)))
2876
- (x64_movzx (ExtMode.BQ) (to_amode flags address offset)))
2877
- (rule (lower (has_type (is_gpr_type ty) (sload8 flags address offset)))
2878
- (x64_movsx (ExtMode.BQ) (to_amode flags address offset)))
2879
- (rule (lower (has_type (is_gpr_type ty) (uload16 flags address offset)))
2880
- (x64_movzx (ExtMode.WQ) (to_amode flags address offset)))
2881
- (rule (lower (has_type (is_gpr_type ty) (sload16 flags address offset)))
2882
- (x64_movsx (ExtMode.WQ) (to_amode flags address offset)))
2883
- (rule (lower (has_type (is_gpr_type ty) (uload32 flags address offset)))
2884
- (x64_movzx (ExtMode.LQ) (to_amode flags address offset)))
2885
- (rule (lower (has_type (is_gpr_type ty) (sload32 flags address offset)))
2886
- (x64_movsx (ExtMode.LQ) (to_amode flags address offset)))
2887
-
2888
- ;; To load to XMM registers, we use the x64-specific instructions for each type.
2889
- ;; For `$F32` and `$F64` this is important--we only want to load 32 or 64 bits.
2890
- ;; But for the 128-bit types, this is not strictly necessary for performance but
2891
- ;; might help with clarity during disassembly.
2892
- (rule (lower (has_type $F32 (load flags address offset)))
2893
- (x64_movss_load (to_amode flags address offset)))
2894
- (rule (lower (has_type $F64 (load flags address offset)))
2895
- (x64_movsd_load (to_amode flags address offset)))
2896
- (rule (lower (has_type $F32X4 (load flags address offset)))
2897
- (x64_movups_load (to_amode flags address offset)))
2898
- (rule (lower (has_type $F64X2 (load flags address offset)))
2899
- (x64_movupd_load (to_amode flags address offset)))
2900
- (rule -2 (lower (has_type (ty_vec128 ty) (load flags address offset)))
2901
- (x64_movdqu_load (to_amode flags address offset)))
2902
-
2903
- ;; We can load an I128 by doing two 64-bit loads.
2904
- (rule -3 (lower (has_type $I128
2905
- (load flags address offset)))
2906
- (let ((addr_lo Amode (to_amode flags address offset))
2907
- (addr_hi Amode (amode_offset addr_lo 8))
2908
- (value_lo Reg (x64_mov addr_lo))
2909
- (value_hi Reg (x64_mov addr_hi)))
2910
- (value_regs value_lo value_hi)))
2911
-
2912
- ;; We also include widening vector loads; these sign- or zero-extend each lane
2913
- ;; to the next wider width (e.g., 16x4 -> 32x4).
2914
- (rule 1 (lower (has_type $I16X8 (sload8x8 flags address offset)))
2915
- (if-let $true (use_sse41))
2916
- (x64_pmovsxbw (to_amode flags address offset)))
2917
- (rule 1 (lower (has_type $I16X8 (uload8x8 flags address offset)))
2918
- (if-let $true (use_sse41))
2919
- (x64_pmovzxbw (to_amode flags address offset)))
2920
- (rule 1 (lower (has_type $I32X4 (sload16x4 flags address offset)))
2921
- (if-let $true (use_sse41))
2922
- (x64_pmovsxwd (to_amode flags address offset)))
2923
- (rule 1 (lower (has_type $I32X4 (uload16x4 flags address offset)))
2924
- (if-let $true (use_sse41))
2925
- (x64_pmovzxwd (to_amode flags address offset)))
2926
- (rule 1 (lower (has_type $I64X2 (sload32x2 flags address offset)))
2927
- (if-let $true (use_sse41))
2928
- (x64_pmovsxdq (to_amode flags address offset)))
2929
- (rule 1 (lower (has_type $I64X2 (uload32x2 flags address offset)))
2930
- (if-let $true (use_sse41))
2931
- (x64_pmovzxdq (to_amode flags address offset)))
2932
-
2933
- (rule (lower (has_type $I16X8 (sload8x8 flags address offset)))
2934
- (lower_swiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
2935
- (rule (lower (has_type $I16X8 (uload8x8 flags address offset)))
2936
- (lower_uwiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
2937
- (rule (lower (has_type $I32X4 (sload16x4 flags address offset)))
2938
- (lower_swiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
2939
- (rule (lower (has_type $I32X4 (uload16x4 flags address offset)))
2940
- (lower_uwiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
2941
- (rule (lower (has_type $I64X2 (sload32x2 flags address offset)))
2942
- (lower_swiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
2943
- (rule (lower (has_type $I64X2 (uload32x2 flags address offset)))
2944
- (lower_uwiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
2945
-
2946
- ;; Rules for `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2947
-
2948
- ;; 8-, 16-, 32- and 64-bit GPR stores.
2949
- (rule -2 (lower (store flags
2950
- value @ (value_type (is_gpr_type ty))
2951
- address
2952
- offset))
2953
- (side_effect
2954
- (x64_movrm ty (to_amode flags address offset) value)))
2955
-
2956
- ;; Explicit 8/16/32-bit opcodes.
2957
- (rule (lower (istore8 flags value address offset))
2958
- (side_effect
2959
- (x64_movrm $I8 (to_amode flags address offset) value)))
2960
- (rule (lower (istore16 flags value address offset))
2961
- (side_effect
2962
- (x64_movrm $I16 (to_amode flags address offset) value)))
2963
- (rule (lower (istore32 flags value address offset))
2964
- (side_effect
2965
- (x64_movrm $I32 (to_amode flags address offset) value)))
2966
-
2967
- ;; IMM stores
2968
- (rule 2 (lower (store flags (has_type (fits_in_64 ty) (iconst (simm32 value))) address offset))
2969
- (side_effect
2970
- (x64_movimm_m ty (to_amode flags address offset) value)))
2971
-
2972
- ;; F32 stores of values in XMM registers.
2973
- (rule 1 (lower (store flags
2974
- value @ (value_type $F32)
2975
- address
2976
- offset))
2977
- (side_effect
2978
- (x64_movss_store (to_amode flags address offset) value)))
2979
-
2980
- ;; F64 stores of values in XMM registers.
2981
- (rule 1 (lower (store flags
2982
- value @ (value_type $F64)
2983
- address
2984
- offset))
2985
- (side_effect
2986
- (x64_movsd_store (to_amode flags address offset) value)))
2987
-
2988
- ;; Stores of F32X4 vectors.
2989
- (rule 1 (lower (store flags
2990
- value @ (value_type $F32X4)
2991
- address
2992
- offset))
2993
- (side_effect
2994
- (x64_movups_store (to_amode flags address offset) value)))
2995
-
2996
- ;; Stores of F64X2 vectors.
2997
- (rule 1 (lower (store flags
2998
- value @ (value_type $F64X2)
2999
- address
3000
- offset))
3001
- (side_effect
3002
- (x64_movupd_store (to_amode flags address offset) value)))
3003
-
3004
- ;; Stores of all other 128-bit vector types with integer lanes.
3005
- (rule -1 (lower (store flags
3006
- value @ (value_type (ty_vec128_int _))
3007
- address
3008
- offset))
3009
- (side_effect
3010
- (x64_movdqu_store (to_amode flags address offset) value)))
3011
-
3012
- ;; Stores of I128 values: store the two 64-bit halves separately.
3013
- (rule 0 (lower (store flags
3014
- value @ (value_type $I128)
3015
- address
3016
- offset))
3017
- (let ((value_reg ValueRegs value)
3018
- (value_lo Gpr (value_regs_get_gpr value_reg 0))
3019
- (value_hi Gpr (value_regs_get_gpr value_reg 1))
3020
- (addr_lo Amode (to_amode flags address offset))
3021
- (addr_hi Amode (amode_offset addr_lo 8)))
3022
- (side_effect
3023
- (side_effect_concat
3024
- (x64_movrm $I64 addr_lo value_lo)
3025
- (x64_movrm $I64 addr_hi value_hi)))))
3026
-
3027
- ;; Slightly optimize the extraction of the first lane from a vector which is
3028
- ;; stored in memory. In the case the first lane specifically is selected the
3029
- ;; standard `movss` and `movsd` instructions can be used as-if we're storing a
3030
- ;; f32 or f64 despite the source perhaps being an integer vector since the
3031
- ;; result of the instruction is the same.
3032
- (rule 2 (lower (store flags
3033
- (has_type $F32 (extractlane value (u8_from_uimm8 0)))
3034
- address
3035
- offset))
3036
- (side_effect
3037
- (x64_movss_store (to_amode flags address offset) value)))
3038
- (rule 2 (lower (store flags
3039
- (has_type $F64 (extractlane value (u8_from_uimm8 0)))
3040
- address
3041
- offset))
3042
- (side_effect
3043
- (x64_movsd_store (to_amode flags address offset) value)))
3044
- (rule 2 (lower (store flags
3045
- (has_type $I8 (extractlane value (u8_from_uimm8 n)))
3046
- address
3047
- offset))
3048
- (if-let $true (use_sse41))
3049
- (side_effect
3050
- (x64_pextrb_store (to_amode flags address offset) value n)))
3051
- (rule 2 (lower (store flags
3052
- (has_type $I16 (extractlane value (u8_from_uimm8 n)))
3053
- address
3054
- offset))
3055
- (if-let $true (use_sse41))
3056
- (side_effect
3057
- (x64_pextrw_store (to_amode flags address offset) value n)))
3058
- (rule 2 (lower (store flags
3059
- (has_type $I32 (extractlane value (u8_from_uimm8 n)))
3060
- address
3061
- offset))
3062
- (if-let $true (use_sse41))
3063
- (side_effect
3064
- (x64_pextrd_store (to_amode flags address offset) value n)))
3065
- (rule 2 (lower (store flags
3066
- (has_type $I64 (extractlane value (u8_from_uimm8 n)))
3067
- address
3068
- offset))
3069
- (if-let $true (use_sse41))
3070
- (side_effect
3071
- (x64_pextrq_store (to_amode flags address offset) value n)))
3072
-
3073
- ;; Rules for `load*` + ALU op + `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3074
-
3075
- ;; Add mem, reg
3076
- (rule 3 (lower
3077
- (store flags
3078
- (has_type (ty_32_or_64 ty)
3079
- (iadd (and
3080
- (sinkable_load sink)
3081
- (load flags addr offset))
3082
- src2))
3083
- addr
3084
- offset))
3085
- (let ((_ RegMemImm sink))
3086
- (side_effect
3087
- (x64_add_mem ty (to_amode flags addr offset) src2))))
3088
-
3089
- ;; Add mem, reg with args swapped
3090
- (rule 2 (lower
3091
- (store flags
3092
- (has_type (ty_32_or_64 ty)
3093
- (iadd src2
3094
- (and
3095
- (sinkable_load sink)
3096
- (load flags addr offset))))
3097
- addr
3098
- offset))
3099
- (let ((_ RegMemImm sink))
3100
- (side_effect
3101
- (x64_add_mem ty (to_amode flags addr offset) src2))))
3102
-
3103
- ;; Sub mem, reg
3104
- (rule 2 (lower
3105
- (store flags
3106
- (has_type (ty_32_or_64 ty)
3107
- (isub (and
3108
- (sinkable_load sink)
3109
- (load flags addr offset))
3110
- src2))
3111
- addr
3112
- offset))
3113
- (let ((_ RegMemImm sink))
3114
- (side_effect
3115
- (x64_sub_mem ty (to_amode flags addr offset) src2))))
3116
-
3117
- ;; And mem, reg
3118
- (rule 3 (lower
3119
- (store flags
3120
- (has_type (ty_32_or_64 ty)
3121
- (band (and
3122
- (sinkable_load sink)
3123
- (load flags addr offset))
3124
- src2))
3125
- addr
3126
- offset))
3127
- (let ((_ RegMemImm sink))
3128
- (side_effect
3129
- (x64_and_mem ty (to_amode flags addr offset) src2))))
3130
-
3131
- ;; And mem, reg with args swapped
3132
- (rule 2 (lower
3133
- (store flags
3134
- (has_type (ty_32_or_64 ty)
3135
- (band src2
3136
- (and
3137
- (sinkable_load sink)
3138
- (load flags addr offset))))
3139
- addr
3140
- offset))
3141
- (let ((_ RegMemImm sink))
3142
- (side_effect
3143
- (x64_and_mem ty (to_amode flags addr offset) src2))))
3144
-
3145
- ;; Or mem, reg
3146
- (rule 3 (lower
3147
- (store flags
3148
- (has_type (ty_32_or_64 ty)
3149
- (bor (and
3150
- (sinkable_load sink)
3151
- (load flags addr offset))
3152
- src2))
3153
- addr
3154
- offset))
3155
- (let ((_ RegMemImm sink))
3156
- (side_effect
3157
- (x64_or_mem ty (to_amode flags addr offset) src2))))
3158
-
3159
- ;; Or mem, reg with args swapped
3160
- (rule 2 (lower
3161
- (store flags
3162
- (has_type (ty_32_or_64 ty)
3163
- (bor src2
3164
- (and
3165
- (sinkable_load sink)
3166
- (load flags addr offset))))
3167
- addr
3168
- offset))
3169
- (let ((_ RegMemImm sink))
3170
- (side_effect
3171
- (x64_or_mem ty (to_amode flags addr offset) src2))))
3172
-
3173
- ;; Xor mem, reg
3174
- (rule 3 (lower
3175
- (store flags
3176
- (has_type (ty_32_or_64 ty)
3177
- (bxor (and
3178
- (sinkable_load sink)
3179
- (load flags addr offset))
3180
- src2))
3181
- addr
3182
- offset))
3183
- (let ((_ RegMemImm sink))
3184
- (side_effect
3185
- (x64_xor_mem ty (to_amode flags addr offset) src2))))
3186
-
3187
- ;; Xor mem, reg with args swapped
3188
- (rule 2 (lower
3189
- (store flags
3190
- (has_type (ty_32_or_64 ty)
3191
- (bxor src2
3192
- (and
3193
- (sinkable_load sink)
3194
- (load flags addr offset))))
3195
- addr
3196
- offset))
3197
- (let ((_ RegMemImm sink))
3198
- (side_effect
3199
- (x64_xor_mem ty (to_amode flags addr offset) src2))))
3200
-
3201
- ;; Rules for `fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3202
-
3203
- (rule (lower (fence))
3204
- (side_effect (x64_mfence)))
3205
-
3206
- ;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3207
-
3208
- (rule (lower (func_addr (func_ref_data _ extname dist)))
3209
- (load_ext_name extname 0 dist))
3210
-
3211
- ;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3212
-
3213
- (rule (lower (symbol_value (symbol_value_data extname dist offset)))
3214
- (load_ext_name extname offset dist))
3215
-
3216
- ;; Rules for `atomic_load` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3217
-
3218
- ;; This is a normal load. The x86-TSO memory model provides sufficient
3219
- ;; sequencing to satisfy the CLIF synchronisation requirements for `AtomicLoad`
3220
- ;; without the need for any fence instructions.
3221
- ;;
3222
- ;; As described in the `atomic_load` documentation, this lowering is only valid
3223
- ;; for I8, I16, I32, and I64. The sub-64-bit types are zero extended, as with a
3224
- ;; normal load.
3225
- (rule 1 (lower (has_type $I64 (atomic_load flags address)))
3226
- (x64_mov (to_amode flags address (zero_offset))))
3227
- (rule (lower (has_type (and (fits_in_32 ty) (ty_int _)) (atomic_load flags address)))
3228
- (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address (zero_offset))))
3229
-
3230
- ;; Rules for `atomic_store` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3231
-
3232
- ;; This is a normal store followed by an `mfence` instruction. As described in
3233
- ;; the `atomic_load` documentation, this lowering is only valid for I8, I16,
3234
- ;; I32, and I64.
3235
- (rule (lower (atomic_store flags
3236
- value @ (value_type (and (fits_in_64 ty) (ty_int _)))
3237
- address))
3238
- (side_effect (side_effect_concat
3239
- (x64_movrm ty (to_amode flags address (zero_offset)) value)
3240
- (x64_mfence))))
3241
-
3242
- ;; Rules for `atomic_cas` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3243
-
3244
- (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3245
- (atomic_cas flags address expected replacement)))
3246
- (x64_cmpxchg ty expected replacement (to_amode flags address (zero_offset))))
3247
-
3248
- ;; Rules for `atomic_rmw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3249
-
3250
- ;; This is a simple, general-case atomic update, based on a loop involving
3251
- ;; `cmpxchg`. Note that we could do much better than this in the case where the
3252
- ;; old value at the location (that is to say, the SSA `Value` computed by this
3253
- ;; CLIF instruction) is not required. In that case, we could instead implement
3254
- ;; this using a single `lock`-prefixed x64 read-modify-write instruction. Also,
3255
- ;; even in the case where the old value is required, for the `add` and `sub`
3256
- ;; cases, we can use the single instruction `lock xadd`. However, those
3257
- ;; improvements have been left for another day. TODO: filed as
3258
- ;; https://github.com/bytecodealliance/wasmtime/issues/2153.
3259
-
3260
- (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3261
- (atomic_rmw flags op address input)))
3262
- (x64_atomic_rmw_seq ty op (to_amode flags address (zero_offset)) input))
3263
-
3264
- ;; Rules for `call` and `call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3265
-
3266
- (rule (lower (call (func_ref_data sig_ref extname dist) inputs))
3267
- (gen_call sig_ref extname dist inputs))
3268
-
3269
- (rule (lower (call_indirect sig_ref val inputs))
3270
- (gen_call_indirect sig_ref val inputs))
3271
-
3272
- ;;;; Rules for `return_call` and `return_call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;
3273
-
3274
- (rule (lower (return_call (func_ref_data sig_ref extname dist) args))
3275
- (gen_return_call sig_ref extname dist args))
3276
-
3277
- (rule (lower (return_call_indirect sig_ref callee args))
3278
- (gen_return_call_indirect sig_ref callee args))
3279
-
3280
- ;;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;
3281
-
3282
- (rule (lower (get_frame_pointer))
3283
- (x64_rbp))
3284
-
3285
- (rule (lower (get_stack_pointer))
3286
- (x64_rsp))
3287
-
3288
- (rule (lower (get_return_address))
3289
- (x64_load $I64
3290
- (Amode.ImmReg 8 (x64_rbp) (mem_flags_trusted))
3291
- (ExtKind.None)))
3292
-
3293
- ;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3294
-
3295
- (rule (lower_branch (jump _) (single_target target))
3296
- (emit_side_effect (jmp_known target)))
3297
-
3298
- ;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3299
-
3300
- (rule 2 (lower_branch (brif (maybe_uextend (icmp cc a b)) _ _) (two_targets then else))
3301
- (emit_side_effect (jmp_cond_icmp (emit_cmp cc a b) then else)))
3302
-
3303
- (rule 2 (lower_branch (brif (maybe_uextend (fcmp cc a b)) _ _) (two_targets then else))
3304
- (emit_side_effect (jmp_cond_fcmp (emit_fcmp cc a b) then else)))
3305
-
3306
- (rule 1 (lower_branch (brif val @ (value_type $I128) _ _)
3307
- (two_targets then else))
3308
- (emit_side_effect (jmp_cond_icmp (cmp_zero_i128 (CC.Z) val) then else)))
3309
-
3310
- (rule (lower_branch (brif val @ (value_type (ty_int_bool_or_ref)) _ _)
3311
- (two_targets then else))
3312
- (emit_side_effect (with_flags_side_effect
3313
- (cmp_zero_int_bool_ref val)
3314
- (jmp_cond (CC.NZ) then else))))
3315
-
3316
-
3317
- ;; Compare an I128 value to zero, returning a flags result suitable for making a
3318
- ;; jump decision. The comparison is implemented as `(hi == 0) && (low == 0)`,
3319
- ;; and the result can be interpreted as follows
3320
- ;; * CC.Z indicates that the value was non-zero, as one or both of the halves of
3321
- ;; the value were non-zero
3322
- ;; * CC.NZ indicates that both halves of the value were 0
3323
- (decl cmp_zero_i128 (CC ValueRegs) IcmpCondResult)
3324
- (rule (cmp_zero_i128 (cc_nz_or_z cc) val)
3325
- (let ((lo Gpr (value_regs_get_gpr val 0))
3326
- (hi Gpr (value_regs_get_gpr val 1))
3327
- (lo_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) lo)
3328
- (x64_setcc (CC.Z))))
3329
- (hi_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) hi)
3330
- (x64_setcc (CC.Z)))))
3331
- (icmp_cond_result (x64_test (OperandSize.Size8) lo_z hi_z) cc)))
3332
-
3333
-
3334
- (decl cmp_zero_int_bool_ref (Value) ProducesFlags)
3335
- (rule (cmp_zero_int_bool_ref val @ (value_type ty))
3336
- (let ((size OperandSize (raw_operand_size_of_type ty))
3337
- (src Gpr val))
3338
- (x64_test size src src)))
3339
-
3340
- ;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3341
-
3342
- (rule (lower_branch (br_table idx @ (value_type ty) _) (jump_table_targets default_target jt_targets))
3343
- (let ((size OperandSize (raw_operand_size_of_type ty))
3344
- (jt_size u32 (jump_table_size jt_targets))
3345
- (size_reg Reg (imm ty (u32_as_u64 jt_size)))
3346
- (idx_reg Gpr (extend_to_gpr idx $I64 (ExtendKind.Zero)))
3347
- (clamped_idx Reg (with_flags_reg
3348
- (x64_cmp size size_reg idx_reg)
3349
- (cmove ty (CC.B) idx_reg size_reg))))
3350
- (emit_side_effect (jmp_table_seq ty clamped_idx default_target jt_targets))))
3351
-
3352
- ;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3353
-
3354
- (rule (lower (select_spectre_guard (icmp cc a b) x y))
3355
- (select_icmp (emit_cmp cc a b) x y))
3356
-
3357
- (rule -1 (lower (has_type ty (select_spectre_guard c @ (value_type (fits_in_64 a_ty)) x y)))
3358
- (let ((size OperandSize (raw_operand_size_of_type a_ty))
3359
- (gpr_c Gpr (put_in_gpr c)))
3360
- (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
3361
-
3362
- (rule -2 (lower (has_type ty (select_spectre_guard c @ (value_type $I128) x y)))
3363
- (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
3364
- (select_icmp cond_result x y)))
3365
-
3366
- ;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3367
-
3368
- ;; Note that the `cvtsi2s{s,d}` instruction is not just an int-to-float
3369
- ;; conversion instruction in isolation, it also takes the upper 64-bits of an
3370
- ;; xmm register and places it into the destination. We don't actually want that
3371
- ;; to happen as it could accidentally create a false dependency with a
3372
- ;; previous instruction defining the register's upper 64-bits. See #7085 for
3373
- ;; an instance of this.
3374
- ;;
3375
- ;; This means that the first operand to all of the int-to-float conversions here
3376
- ;; are `(xmm_zero)` operands which is a guaranteed zero register that has no
3377
- ;; dependencies on other instructions.
3378
- ;;
3379
- ;; Ideally this would be lifted out to a higher level to get deduplicated
3380
- ;; between consecutive int-to-float operations but that's not easy
3381
- ;; to do at this time. One possibility would be a mid-end rule which rewrites
3382
- ;; `fcvt_from_sint` to an x86-specific opcode using a zero constant which would
3383
- ;; be subject to normal LICM, but that's not feasible today.
3384
-
3385
- (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I8))))
3386
- (x64_cvtsi2ss $I32 (xmm_zero $F32X4) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3387
-
3388
- (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I16))))
3389
- (x64_cvtsi2ss $I32 (xmm_zero $F32X4) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3390
-
3391
- (rule 1 (lower (has_type $F32 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3392
- (x64_cvtsi2ss ty (xmm_zero $F32X4) a))
3393
-
3394
- (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I8))))
3395
- (x64_cvtsi2sd $I32 (xmm_zero $F64X2) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3396
-
3397
- (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I16))))
3398
- (x64_cvtsi2sd $I32 (xmm_zero $F64X2) (extend_to_gpr a $I32 (ExtendKind.Sign))))
3399
-
3400
- (rule 1 (lower (has_type $F64 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3401
- (x64_cvtsi2sd ty (xmm_zero $F64X2) a))
3402
-
3403
- (rule 0 (lower (fcvt_from_sint a @ (value_type $I32X4)))
3404
- (x64_cvtdq2ps a))
3405
-
3406
- (rule 1 (lower (has_type $F64X2 (fcvt_from_sint (swiden_low a @ (value_type $I32X4)))))
3407
- (x64_cvtdq2pd a))
3408
-
3409
- ;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3410
-
3411
- (rule 1 (lower (has_type $F32 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3412
- (x64_cvtsi2ss $I64 (xmm_zero $F32X4) (extend_to_gpr val $I64 (ExtendKind.Zero))))
3413
-
3414
- (rule 1 (lower (has_type $F64 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3415
- (x64_cvtsi2sd $I64 (xmm_zero $F64X2) (extend_to_gpr val $I64 (ExtendKind.Zero))))
3416
-
3417
- (rule (lower (has_type ty (fcvt_from_uint val @ (value_type $I64))))
3418
- (cvt_u64_to_float_seq ty val))
3419
-
3420
- ;; Base case of u64x2 being converted to f64x2. No native instruction for this
3421
- ;; is available so it's emulated through a series of instructions that exploit
3422
- ;; the binary representation of 64-bit floats. This sequence of instructions is
3423
- ;; copied from LLVM and my understanding of the general idea is to roughly:
3424
- ;;
3425
- ;; * For each bullet below operate in parallel on the left and right lanes.
3426
- ;; * Move the low 32 bits of the input into one register and the upper
3427
- ;; 32-bits into a different register, where both have all 0s for the upper
3428
- ;; 32-bits. (e.g. split the 64-bit input into two locations)
3429
- ;; * For the low bits, create `1.<twenty-zeros><low32>p52` via bit tricks.
3430
- ;; * For the high bits, create `1.<twenty-zeros><high32>p84` via bit tricks.
3431
- ;; * Create the constant `1.0p84 + 1.0p52`
3432
- ;; * Add the two high halves and subtract the constant.
3433
- ;;
3434
- ;; Apply some math and this should produce the same result as the native
3435
- ;; conversion.
3436
- ;;
3437
- ;; As for the bit tricks a float is represented where the low 53 bits are the
3438
- ;; decimal of the float, basically:
3439
- ;;
3440
- ;; f = 1.<fraction> ^ (<exponent> - 1023)
3441
- ;;
3442
- ;; where `<fraction>` is the low 53 bits. By placing the 32-bit halves from
3443
- ;; the original integer into the low 53 bits and setting the exponent right it
3444
- ;; means that each 32-bit half can become part of a 64-bit floating point
3445
- ;; number. The final step in combining via float arithmetic will chop off the
3446
- ;; leading `1.` at the start of the float that we constructed, one for the low
3447
- ;; half and one for the upper half.
3448
- (rule -1 (lower (has_type $F64X2 (fcvt_from_uint val @ (value_type $I64X2))))
3449
- (let ((low32_mask XmmMem (emit_u128_le_const 0x00000000ffffffff_00000000ffffffff))
3450
- (float_1p52 XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000))
3451
- (float_1p84 XmmMem (emit_u128_le_const 0x4530000000000000_4530000000000000))
3452
- (float_1p84_plus_1p52 XmmMem (emit_u128_le_const 0x4530000000100000_4530000000100000))
3453
- (low32 Xmm (x64_pand val low32_mask))
3454
- (low32_as_float Xmm (x64_por low32 float_1p52))
3455
- (high32 Xmm (x64_psrlq val (xmi_imm 32)))
3456
- (high32_as_float Xmm (x64_por high32 float_1p84)))
3457
- (x64_addpd low32_as_float (x64_subpd high32_as_float float_1p84_plus_1p52))))
3458
-
3459
- ;; Algorithm uses unpcklps to help create a float that is equivalent
3460
- ;; 0x1.0p52 + double(src). 0x1.0p52 is unique because at this exponent
3461
- ;; every value of the mantissa represents a corresponding uint32 number.
3462
- ;; When we subtract 0x1.0p52 we are left with double(src).
3463
- (rule 1 (lower (has_type $F64X2 (fcvt_from_uint (uwiden_low val @ (value_type $I32X4)))))
3464
- (let ((uint_mask XmmMem (emit_u128_le_const 0x43300000_43300000))
3465
- (res Xmm (x64_unpcklps val uint_mask))
3466
- (uint_mask_high XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000)))
3467
- (x64_subpd res uint_mask_high)))
3468
-
3469
- ;; When AVX512VL and AVX512F are available,
3470
- ;; `fcvt_from_uint` can be lowered to a single instruction.
3471
- (rule 2 (lower (has_type $F32X4 (fcvt_from_uint src)))
3472
- (if-let $true (use_avx512vl))
3473
- (if-let $true (use_avx512f))
3474
- (x64_vcvtudq2ps src))
3475
-
3476
- ;; Converting packed unsigned integers to packed floats
3477
- ;; requires a few steps. There is no single instruction
3478
- ;; lowering for converting unsigned floats but there is for
3479
- ;; converting packed signed integers to float (cvtdq2ps). In
3480
- ;; the steps below we isolate the upper half (16 bits) and
3481
- ;; lower half (16 bits) of each lane and then we convert
3482
- ;; each half separately using cvtdq2ps meant for signed
3483
- ;; integers. In order for this to work for the upper half
3484
- ;; bits we must shift right by 1 (divide by 2) these bits in
3485
- ;; order to ensure the most significant bit is 0 not signed,
3486
- ;; and then after the conversion we double the value.
3487
- ;; Finally we add the converted values where addition will
3488
- ;; correctly round.
3489
- ;;
3490
- ;; Sequence:
3491
- ;; -> A = 0xffffffff
3492
- ;; -> Ah = 0xffff0000
3493
- ;; -> Al = 0x0000ffff
3494
- ;; -> Convert(Al) // Convert int to float
3495
- ;; -> Ah = Ah >> 1 // Shift right 1 to assure Ah conversion isn't treated as signed
3496
- ;; -> Convert(Ah) // Convert .. with no loss of significant digits from previous shift
3497
- ;; -> Ah = Ah + Ah // Double Ah to account for shift right before the conversion.
3498
- ;; -> dst = Ah + Al // Add the two floats together
3499
- (rule 1 (lower (has_type $F32X4 (fcvt_from_uint val)))
3500
- (let ((a Xmm val)
3501
-
3502
- ;; get the low 16 bits
3503
- (a_lo Xmm (x64_pslld a (xmi_imm 16)))
3504
- (a_lo Xmm (x64_psrld a_lo (xmi_imm 16)))
3505
-
3506
- ;; get the high 16 bits
3507
- (a_hi Xmm (x64_psubd a a_lo))
3508
-
3509
- ;; convert the low 16 bits
3510
- (a_lo Xmm (x64_cvtdq2ps a_lo))
3511
-
3512
- ;; shift the high bits by 1, convert, and double to get the correct
3513
- ;; value
3514
- (a_hi Xmm (x64_psrld a_hi (xmi_imm 1)))
3515
- (a_hi Xmm (x64_cvtdq2ps a_hi))
3516
- (a_hi Xmm (x64_addps a_hi a_hi)))
3517
-
3518
- ;; add together the two converted values
3519
- (x64_addps a_hi a_lo)))
3520
-
3521
- ;; Rules for `fcvt_to_uint` and `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3522
-
3523
- (rule (lower (has_type out_ty (fcvt_to_uint val @ (value_type (ty_scalar_float _)))))
3524
- (cvt_float_to_uint_seq out_ty val $false))
3525
-
3526
- (rule (lower (has_type out_ty (fcvt_to_uint_sat val @ (value_type (ty_scalar_float _)))))
3527
- (cvt_float_to_uint_seq out_ty val $true))
3528
-
3529
- (rule (lower (has_type out_ty (fcvt_to_sint val @ (value_type (ty_scalar_float _)))))
3530
- (cvt_float_to_sint_seq out_ty val $false))
3531
-
3532
- (rule (lower (has_type out_ty (fcvt_to_sint_sat val @ (value_type (ty_scalar_float _)))))
3533
- (cvt_float_to_sint_seq out_ty val $true))
3534
-
3535
- ;; The x64 backend currently only supports these two type combinations.
3536
- (rule 1 (lower (has_type $I32X4 (fcvt_to_sint_sat val @ (value_type $F32X4))))
3537
- (let ((src Xmm val)
3538
-
3539
- ;; Sets tmp to zero if float is NaN
3540
- (tmp Xmm (x64_cmpps src src (FcmpImm.Equal)))
3541
- (dst Xmm (x64_andps src tmp))
3542
-
3543
- ;; Sets top bit of tmp if float is positive
3544
- ;; Setting up to set top bit on negative float values
3545
- (tmp Xmm (x64_pxor tmp dst))
3546
-
3547
- ;; Convert the packed float to packed doubleword.
3548
- (dst Xmm (x64_cvttps2dq dst))
3549
-
3550
- ;; Set top bit only if < 0
3551
- (tmp Xmm (x64_pand dst tmp))
3552
- (tmp Xmm (x64_psrad tmp (xmi_imm 31))))
3553
-
3554
- ;; On overflow 0x80000000 is returned to a lane.
3555
- ;; Below sets positive overflow lanes to 0x7FFFFFFF
3556
- ;; Keeps negative overflow lanes as is.
3557
- (x64_pxor tmp dst)))
3558
-
3559
- ;; The algorithm for converting floats to unsigned ints is a little tricky. The
3560
- ;; complication arises because we are converting from a signed 64-bit int with a positive
3561
- ;; integer range from 1..INT_MAX (0x1..0x7FFFFFFF) to an unsigned integer with an extended
3562
- ;; range from (INT_MAX+1)..UINT_MAX. It's this range from (INT_MAX+1)..UINT_MAX
3563
- ;; (0x80000000..0xFFFFFFFF) that needs to be accounted for as a special case since our
3564
- ;; conversion instruction (cvttps2dq) only converts as high as INT_MAX (0x7FFFFFFF), but
3565
- ;; which conveniently setting underflows and overflows (smaller than MIN_INT or larger than
3566
- ;; MAX_INT) to be INT_MAX+1 (0x80000000). Nothing that the range (INT_MAX+1)..UINT_MAX includes
3567
- ;; precisely INT_MAX values we can correctly account for and convert every value in this range
3568
- ;; if we simply subtract INT_MAX+1 before doing the cvttps2dq conversion. After the subtraction
3569
- ;; every value originally (INT_MAX+1)..UINT_MAX is now the range (0..INT_MAX).
3570
- ;; After the conversion we add INT_MAX+1 back to this converted value, noting again that
3571
- ;; values we are trying to account for were already set to INT_MAX+1 during the original conversion.
3572
- ;; We simply have to create a mask and make sure we are adding together only the lanes that need
3573
- ;; to be accounted for. Digesting it all the steps then are:
3574
- ;;
3575
- ;; Step 1 - Account for NaN and negative floats by setting these src values to zero.
3576
- ;; Step 2 - Make a copy (tmp1) of the src value since we need to convert twice for
3577
- ;; reasons described above.
3578
- ;; Step 3 - Convert the original src values. This will convert properly all floats up to INT_MAX
3579
- ;; Step 4 - Subtract INT_MAX from the copy set (tmp1). Note, all zero and negative values are those
3580
- ;; values that were originally in the range (0..INT_MAX). This will come in handy during
3581
- ;; step 7 when we zero negative lanes.
3582
- ;; Step 5 - Create a bit mask for tmp1 that will correspond to all lanes originally less than
3583
- ;; UINT_MAX that are now less than INT_MAX thanks to the subtraction.
3584
- ;; Step 6 - Convert the second set of values (tmp1)
3585
- ;; Step 7 - Prep the converted second set by zeroing out negative lanes (these have already been
3586
- ;; converted correctly with the first set) and by setting overflow lanes to 0x7FFFFFFF
3587
- ;; as this will allow us to properly saturate overflow lanes when adding to 0x80000000
3588
- ;; Step 8 - Add the orginal converted src and the converted tmp1 where float values originally less
3589
- ;; than and equal to INT_MAX will be unchanged, float values originally between INT_MAX+1 and
3590
- ;; UINT_MAX will add together (INT_MAX) + (SRC - INT_MAX), and float values originally
3591
- ;; greater than UINT_MAX will be saturated to UINT_MAX (0xFFFFFFFF) after adding (0x8000000 + 0x7FFFFFFF).
3592
- ;;
3593
- ;;
3594
- ;; The table below illustrates the result after each step where it matters for the converted set.
3595
- ;; Note the original value range (original src set) is the final dst in Step 8:
3596
- ;;
3597
- ;; Original src set:
3598
- ;; | Original Value Range | Step 1 | Step 3 | Step 8 |
3599
- ;; | -FLT_MIN..FLT_MAX | 0.0..FLT_MAX | 0..INT_MAX(w/overflow) | 0..UINT_MAX(w/saturation) |
3600
- ;;
3601
- ;; Copied src set (tmp1):
3602
- ;; | Step 2 | Step 4 |
3603
- ;; | 0.0..FLT_MAX | (0.0-(INT_MAX+1))..(FLT_MAX-(INT_MAX+1)) |
3604
- ;;
3605
- ;; | Step 6 | Step 7 |
3606
- ;; | (0-(INT_MAX+1))..(UINT_MAX-(INT_MAX+1))(w/overflow) | ((INT_MAX+1)-(INT_MAX+1))..(INT_MAX+1) |
3607
- (rule 1 (lower (has_type $I32X4 (fcvt_to_uint_sat val @ (value_type $F32X4))))
3608
- (let ((src Xmm val)
3609
-
3610
- ;; Converting to unsigned int so if float src is negative or NaN
3611
- ;; will first set to zero.
3612
- (tmp2 Xmm (xmm_zero $F32X4))
3613
- (dst Xmm (x64_maxps src tmp2))
3614
-
3615
- ;; Set tmp2 to INT_MAX+1. It is important to note here that after it looks
3616
- ;; like we are only converting INT_MAX (0x7FFFFFFF) but in fact because
3617
- ;; single precision IEEE-754 floats can only accurately represent contingous
3618
- ;; integers up to 2^23 and outside of this range it rounds to the closest
3619
- ;; integer that it can represent. In the case of INT_MAX, this value gets
3620
- ;; represented as 0x4f000000 which is the integer value (INT_MAX+1).
3621
- (tmp2 Xmm (x64_pcmpeqd tmp2 tmp2))
3622
- (tmp2 Xmm (x64_psrld tmp2 (xmi_imm 1)))
3623
- (tmp2 Xmm (x64_cvtdq2ps tmp2))
3624
-
3625
- ;; Make a copy of these lanes and then do the first conversion.
3626
- ;; Overflow lanes greater than the maximum allowed signed value will
3627
- ;; set to 0x80000000. Negative and NaN lanes will be 0x0
3628
- (tmp1 Xmm dst)
3629
- (dst Xmm (x64_cvttps2dq dst))
3630
-
3631
- ;; Set lanes to src - max_signed_int
3632
- (tmp1 Xmm (x64_subps tmp1 tmp2))
3633
-
3634
- ;; Create mask for all positive lanes to saturate (i.e. greater than
3635
- ;; or equal to the maxmimum allowable unsigned int).
3636
- (tmp2 Xmm (x64_cmpps tmp2 tmp1 (FcmpImm.LessThanOrEqual)))
3637
-
3638
- ;; Convert those set of lanes that have the max_signed_int factored out.
3639
- (tmp1 Xmm (x64_cvttps2dq tmp1))
3640
-
3641
- ;; Prepare converted lanes by zeroing negative lanes and prepping lanes
3642
- ;; that have positive overflow (based on the mask) by setting these lanes
3643
- ;; to 0x7FFFFFFF
3644
- (tmp1 Xmm (x64_pxor tmp1 tmp2))
3645
- (tmp2 Xmm (xmm_zero $I32X4))
3646
- (tmp1 Xmm (lower_vec_smax $I32X4 tmp1 tmp2)))
3647
-
3648
- ;; Add this second set of converted lanes to the original to properly handle
3649
- ;; values greater than max signed int.
3650
- (x64_paddd tmp1 dst)))
3651
-
3652
- ;; Rules for `x86_cvtt2dq` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3653
-
3654
- (rule (lower (has_type $I32X4 (x86_cvtt2dq val @ (value_type $F32X4))))
3655
- (x64_cvttps2dq val))
3656
-
3657
- ;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3658
-
3659
- (rule (lower (has_type $I8X16 (iadd_pairwise x y)))
3660
- (let (
3661
- ;; Shuffle all the even lanes of `x` and `y` into one register
3662
- (even_lane_mask Xmm (x64_movdqu_load (emit_u128_le_const 0x00ff_00ff_00ff_00ff_00ff_00ff_00ff_00ff)))
3663
- (x_evens Xmm (x64_pand x even_lane_mask))
3664
- (y_evens Xmm (x64_pand y even_lane_mask))
3665
- (evens Xmm (x64_packuswb x_evens y_evens))
3666
-
3667
- ;; Shuffle all the odd lanes of `x` and `y` into one register
3668
- (x_odds Xmm (x64_psrlw x (xmi_imm 8)))
3669
- (y_odds Xmm (x64_psrlw y (xmi_imm 8)))
3670
- (odds Xmm (x64_packuswb x_odds y_odds))
3671
- )
3672
- (x64_paddb evens odds)))
3673
-
3674
-
3675
- (rule 1 (lower (has_type $I16X8 (iadd_pairwise x y)))
3676
- (if-let $true (use_ssse3))
3677
- (x64_phaddw x y))
3678
-
3679
- (rule (lower (has_type $I16X8 (iadd_pairwise x y)))
3680
- (let (
3681
- (x Xmm x)
3682
- (y Xmm y)
3683
-
3684
- ;; Shuffle the even-numbered 16-bit lanes into low four lanes of each
3685
- ;; vector by shuffling 16-bit lanes then shuffling 32-bit lanes.
3686
- ;; With these in place generate a new vector from the two low 64-bits
3687
- ;; of each vector (the low four 16-bit lanes).
3688
- ;;
3689
- ;; 0xe8 == 0b11_10_10_00
3690
- (x_evens Xmm (x64_pshufd (x64_pshufhw (x64_pshuflw x 0xe8) 0xe8) 0xe8))
3691
- (y_evens Xmm (x64_pshufd (x64_pshufhw (x64_pshuflw y 0xe8) 0xe8) 0xe8))
3692
- (evens Xmm (x64_punpcklqdq x_evens y_evens))
3693
-
3694
- ;; Shuffle the odd-numbered 16-bit lanes into the low 8 lanes by
3695
- ;; performing `sshr` operation on 32-bit lanes, effectively moving the
3696
- ;; odd lanes into even lanes while leaving their sign bits in the
3697
- ;; odd lanes. The `packssdw` instruction then conveniently will
3698
- ;; put everything into one vector for us.
3699
- (x_shifted Xmm (x64_psrad x (xmi_imm 16)))
3700
- (y_shifted Xmm (x64_psrad y (xmi_imm 16)))
3701
- (odds Xmm (x64_packssdw x_shifted y_shifted))
3702
- )
3703
- (x64_paddw evens odds)))
3704
-
3705
- (rule 1 (lower (has_type $I32X4 (iadd_pairwise x y)))
3706
- (if-let $true (use_ssse3))
3707
- (x64_phaddd x y))
3708
-
3709
- (rule (lower (has_type $I32X4 (iadd_pairwise x y)))
3710
- (let (
3711
- (x Xmm x)
3712
- (y Xmm y)
3713
- ;; evens = [ x[0] x[2] y[0] y[2] ]
3714
- (evens Xmm (x64_shufps x y 0b10_00_10_00))
3715
- ;; odds = [ x[1] x[3] y[1] y[3] ]
3716
- (odds Xmm (x64_shufps x y 0b11_01_11_01))
3717
- )
3718
- (x64_paddd evens odds)))
3719
-
3720
- ;; special case for the `i16x8.extadd_pairwise_i8x16_s` wasm instruction
3721
- (rule 2 (lower
3722
- (has_type $I16X8 (iadd_pairwise
3723
- (swiden_low val @ (value_type $I8X16))
3724
- (swiden_high val))))
3725
- (if-let $true (use_ssse3))
3726
- (let ((mul_const Xmm (x64_xmm_load_const $I8X16
3727
- (emit_u128_le_const 0x01010101010101010101010101010101))))
3728
- (x64_pmaddubsw mul_const val)))
3729
-
3730
- ;; special case for the `i32x4.extadd_pairwise_i16x8_s` wasm instruction
3731
- (rule 2 (lower
3732
- (has_type $I32X4 (iadd_pairwise
3733
- (swiden_low val @ (value_type $I16X8))
3734
- (swiden_high val))))
3735
- (let ((mul_const XmmMem (emit_u128_le_const 0x0001_0001_0001_0001_0001_0001_0001_0001)))
3736
- (x64_pmaddwd val mul_const)))
3737
-
3738
- ;; special case for the `i16x8.extadd_pairwise_i8x16_u` wasm instruction
3739
- (rule 2 (lower
3740
- (has_type $I16X8 (iadd_pairwise
3741
- (uwiden_low val @ (value_type $I8X16))
3742
- (uwiden_high val))))
3743
- (if-let $true (use_ssse3))
3744
- (let ((mul_const XmmMem (emit_u128_le_const 0x01010101010101010101010101010101)))
3745
- (x64_pmaddubsw val mul_const)))
3746
-
3747
- ;; special case for the `i32x4.extadd_pairwise_i16x8_u` wasm instruction
3748
- (rule 2 (lower
3749
- (has_type $I32X4 (iadd_pairwise
3750
- (uwiden_low val @ (value_type $I16X8))
3751
- (uwiden_high val))))
3752
- (let ((xor_const XmmMem (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000))
3753
- (dst Xmm (x64_pxor val xor_const))
3754
-
3755
- (madd_const XmmMem (emit_u128_le_const 0x0001_0001_0001_0001_0001_0001_0001_0001))
3756
- (dst Xmm (x64_pmaddwd dst madd_const))
3757
-
3758
- (addd_const XmmMem (emit_u128_le_const 0x00010000_00010000_00010000_00010000)))
3759
- (x64_paddd dst addd_const)))
3760
-
3761
- ;; special case for the `i32x4.dot_i16x8_s` wasm instruction
3762
- (rule 2 (lower
3763
- (has_type $I32X4 (iadd_pairwise
3764
- (imul (swiden_low x) (swiden_low y))
3765
- (imul (swiden_high x) (swiden_high y)))))
3766
- (x64_pmaddwd x y))
3767
-
3768
- ;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3769
-
3770
- ;; With SSE4.1 use the `pmovsx*` instructions for this
3771
- (rule 1 (lower (has_type $I16X8 (swiden_low val @ (value_type $I8X16))))
3772
- (if-let $true (use_sse41))
3773
- (x64_pmovsxbw val))
3774
- (rule 1 (lower (has_type $I32X4 (swiden_low val @ (value_type $I16X8))))
3775
- (if-let $true (use_sse41))
3776
- (x64_pmovsxwd val))
3777
- (rule 1 (lower (has_type $I64X2 (swiden_low val @ (value_type $I32X4))))
3778
- (if-let $true (use_sse41))
3779
- (x64_pmovsxdq val))
3780
-
3781
- (rule (lower (has_type ty (swiden_low val))) (lower_swiden_low ty val))
3782
-
3783
- (decl lower_swiden_low (Type Xmm) Xmm)
3784
-
3785
- ;; Duplicate the low lanes next to each other, then perform a wider shift-right
3786
- ;; by the low lane width to move the upper of each pair back into the lower lane
3787
- ;; of each pair, achieving the widening of the lower lanes.
3788
- (rule (lower_swiden_low $I16X8 val)
3789
- (x64_psraw (x64_punpcklbw val val) (xmi_imm 8)))
3790
- (rule (lower_swiden_low $I32X4 val)
3791
- (x64_psrad (x64_punpcklwd val val) (xmi_imm 16)))
3792
-
3793
- ;; Generate the sign-extended halves with a `val < 0` comparison (expressed
3794
- ;; reversed here), then interleave the low 32-bit halves to create the full
3795
- ;; 64-bit results.
3796
- (rule (lower_swiden_low $I64X2 val)
3797
- (let ((tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3798
- (x64_punpckldq val tmp)))
3799
-
3800
- ;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3801
-
3802
- ;; Similar to `swiden_low` with SSE4.1 except that the upper lanes are moved
3803
- ;; to the lower lanes first.
3804
- (rule 1 (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3805
- (if-let $true (use_sse41))
3806
- (if-let $true (use_ssse3))
3807
- (let ((x Xmm val))
3808
- (x64_pmovsxbw (x64_palignr x x 8))))
3809
- (rule 1 (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3810
- (if-let $true (use_sse41))
3811
- (if-let $true (use_ssse3))
3812
- (let ((x Xmm val))
3813
- (x64_pmovsxwd (x64_palignr x x 8))))
3814
- (rule 1 (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3815
- (if-let $true (use_sse41))
3816
- (x64_pmovsxdq (x64_pshufd val 0b11_10_11_10)))
3817
-
3818
- ;; Similar to `swiden_low` versions but using `punpckh*` instructions to
3819
- ;; pair the high lanes next to each other.
3820
- (rule (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3821
- (let ((val Xmm val))
3822
- (x64_psraw (x64_punpckhbw val val) (xmi_imm 8))))
3823
- (rule (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3824
- (let ((val Xmm val))
3825
- (x64_psrad (x64_punpckhwd val val) (xmi_imm 16))))
3826
-
3827
- ;; Same as `swiden_low`, but `val` has its high lanes moved down.
3828
- (rule (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3829
- (let ((val Xmm (x64_pshufd val 0b00_00_11_10))
3830
- (tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3831
- (x64_punpckldq val tmp)))
3832
-
3833
- ;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3834
-
3835
- ;; With SSE4.1 use the `pmovzx*` instructions for this
3836
- (rule 1 (lower (has_type $I16X8 (uwiden_low val @ (value_type $I8X16))))
3837
- (if-let $true (use_sse41))
3838
- (x64_pmovzxbw val))
3839
- (rule 1 (lower (has_type $I32X4 (uwiden_low val @ (value_type $I16X8))))
3840
- (if-let $true (use_sse41))
3841
- (x64_pmovzxwd val))
3842
- (rule 1 (lower (has_type $I64X2 (uwiden_low val @ (value_type $I32X4))))
3843
- (if-let $true (use_sse41))
3844
- (x64_pmovzxdq val))
3845
-
3846
- (rule (lower (has_type ty (uwiden_low val))) (lower_uwiden_low ty val))
3847
-
3848
- ;; Interleave an all-zero register with the low lanes to produce zero-extended
3849
- ;; results.
3850
- (decl lower_uwiden_low (Type Xmm) Xmm)
3851
- (rule (lower_uwiden_low $I16X8 val) (x64_punpcklbw val (xmm_zero $I8X16)))
3852
- (rule (lower_uwiden_low $I32X4 val) (x64_punpcklwd val (xmm_zero $I8X16)))
3853
- (rule (lower_uwiden_low $I64X2 val) (x64_unpcklps val (xmm_zero $F32X4)))
3854
-
3855
- ;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3856
-
3857
- ;; Same as `uwiden_high`, but interleaving high lanes instead.
3858
- ;;
3859
- ;; Note that according to `llvm-mca` at least these instructions are faster
3860
- ;; than using `pmovzx*` in terms of cycles, even if SSE4.1 is available.
3861
- (rule (lower (has_type $I16X8 (uwiden_high val @ (value_type $I8X16))))
3862
- (x64_punpckhbw val (xmm_zero $I8X16)))
3863
- (rule (lower (has_type $I32X4 (uwiden_high val @ (value_type $I16X8))))
3864
- (x64_punpckhwd val (xmm_zero $I8X16)))
3865
- (rule (lower (has_type $I64X2 (uwiden_high val @ (value_type $I32X4))))
3866
- (x64_unpckhps val (xmm_zero $F32X4)))
3867
-
3868
- ;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3869
-
3870
- (rule (lower (has_type $I8X16 (snarrow a @ (value_type $I16X8) b)))
3871
- (x64_packsswb a b))
3872
-
3873
- (rule (lower (has_type $I16X8 (snarrow a @ (value_type $I32X4) b)))
3874
- (x64_packssdw a b))
3875
-
3876
- ;; We're missing a `snarrow` case for $I64X2
3877
- ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3878
-
3879
- ;; This rule is a special case for handling the translation of the wasm op
3880
- ;; `i32x4.trunc_sat_f64x2_s_zero`. It can be removed once we have an
3881
- ;; implementation of `snarrow` for `I64X2`.
3882
- (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (fcvt_to_sint_sat val))
3883
- (vconst (u128_from_constant 0)))))
3884
- (let ((a Xmm val)
3885
-
3886
- ;; y = i32x4.trunc_sat_f64x2_s_zero(x) is lowered to:
3887
- ;; MOVE xmm_tmp, xmm_x
3888
- ;; CMPEQPD xmm_tmp, xmm_x
3889
- ;; MOVE xmm_y, xmm_x
3890
- ;; ANDPS xmm_tmp, [wasm_f64x2_splat(2147483647.0)]
3891
- ;; MINPD xmm_y, xmm_tmp
3892
- ;; CVTTPD2DQ xmm_y, xmm_y
3893
-
3894
- (tmp1 Xmm (x64_cmppd a a (FcmpImm.Equal)))
3895
-
3896
- ;; 2147483647.0 is equivalent to 0x41DFFFFFFFC00000
3897
- (umax_mask XmmMem (emit_u128_le_const 0x41DFFFFFFFC00000_41DFFFFFFFC00000))
3898
-
3899
- ;; ANDPD xmm_y, [wasm_f64x2_splat(2147483647.0)]
3900
- (tmp1 Xmm (x64_andps tmp1 umax_mask))
3901
- (dst Xmm (x64_minpd a tmp1)))
3902
- (x64_cvttpd2dq dst)))
3903
-
3904
- ;; This rule is a special case for handling the translation of the wasm op
3905
- ;; `i32x4.relaxed_trunc_f64x2_s_zero`.
3906
- (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (x86_cvtt2dq val))
3907
- (vconst (u128_from_constant 0)))))
3908
- (x64_cvttpd2dq val))
3909
-
3910
- ;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3911
-
3912
- (rule (lower (has_type $I8X16 (unarrow a @ (value_type $I16X8) b)))
3913
- (x64_packuswb a b))
3914
-
3915
- (rule 1 (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
3916
- (if-let $true (use_sse41))
3917
- (x64_packusdw a b))
3918
-
3919
- ;; For each input `a` and `b` take the four 32-bit lanes and compress them to
3920
- ;; the low 64-bits of the vector as four 16-bit lanes. Then these are woven
3921
- ;; into one final vector with a `punpcklqdq`.
3922
- ;;
3923
- ;; If this is performance sensitive then it's probably best to upgrade the CPU
3924
- ;; to get the above single-instruction lowering.
3925
- (rule (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
3926
- (let (
3927
- (a Xmm (unarrow_i32x4_lanes_to_low_u16_lanes a))
3928
- (b Xmm (unarrow_i32x4_lanes_to_low_u16_lanes b))
3929
- )
3930
- (x64_punpcklqdq a b)))
3931
-
3932
- (decl unarrow_i32x4_lanes_to_low_u16_lanes (Xmm) Xmm)
3933
- (rule (unarrow_i32x4_lanes_to_low_u16_lanes val)
3934
- (let (
3935
- ;; First convert all negative values in `val` to zero lanes.
3936
- (val_gt_zero Xmm (x64_pcmpgtd val (xmm_zero $I32X4)))
3937
- (val Xmm (x64_pand val val_gt_zero))
3938
-
3939
- ;; Next clamp all larger-than-u16-max lanes to u16::MAX.
3940
- (max Xmm (x64_movdqu_load (emit_u128_le_const 0x0000ffff_0000ffff_0000ffff_0000ffff)))
3941
- (cmp Xmm (x64_pcmpgtd max val))
3942
- (valid_lanes Xmm (x64_pand val cmp))
3943
- (clamped_lanes Xmm (x64_pandn cmp max))
3944
- (val Xmm (x64_por valid_lanes clamped_lanes))
3945
-
3946
- ;; Within each 64-bit half of the 32x4 vector move the first 16 bits
3947
- ;; and the third 16 bits to the bottom of the half. Afterwards
3948
- ;; for the 32x4 vector move the first and third lanes to the bottom
3949
- ;; lanes, which finishes up the conversion here as all the lanes
3950
- ;; are now converted to 16-bit values in the low 4 lanes.
3951
- (val Xmm (x64_pshuflw val 0b00_00_10_00))
3952
- (val Xmm (x64_pshufhw val 0b00_00_10_00))
3953
- )
3954
- (x64_pshufd val 0b00_00_10_00)))
3955
-
3956
-
3957
- ;; We're missing a `unarrow` case for $I64X2
3958
- ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3959
-
3960
- ;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3961
-
3962
- (rule (lower (has_type $I32 (bitcast _ src @ (value_type $F32))))
3963
- (bitcast_xmm_to_gpr $F32 src))
3964
-
3965
- (rule (lower (has_type $F32 (bitcast _ src @ (value_type $I32))))
3966
- (bitcast_gpr_to_xmm $I32 src))
3967
-
3968
- (rule (lower (has_type $I64 (bitcast _ src @ (value_type $F64))))
3969
- (bitcast_xmm_to_gpr $F64 src))
3970
-
3971
- (rule (lower (has_type $F64 (bitcast _ src @ (value_type $I64))))
3972
- (bitcast_gpr_to_xmm $I64 src))
3973
-
3974
- ;; Bitcast between types residing in GPR registers is a no-op.
3975
- (rule 1 (lower (has_type (is_gpr_type _)
3976
- (bitcast _ x @ (value_type (is_gpr_type _))))) x)
3977
-
3978
- ;; Bitcast between types residing in XMM registers is a no-op.
3979
- (rule 2 (lower (has_type (is_xmm_type _)
3980
- (bitcast _ x @ (value_type (is_xmm_type _))))) x)
3981
-
3982
- ;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3983
-
3984
- (rule (lower (has_type $F32 (fcopysign a @ (value_type $F32) b)))
3985
- (let ((sign_bit Xmm (imm $F32 0x80000000)))
3986
- (x64_orps
3987
- (x64_andnps sign_bit a)
3988
- (x64_andps sign_bit b))))
3989
-
3990
- (rule (lower (has_type $F64 (fcopysign a @ (value_type $F64) b)))
3991
- (let ((sign_bit Xmm (imm $F64 0x8000000000000000)))
3992
- (x64_orpd
3993
- (x64_andnpd sign_bit a)
3994
- (x64_andpd sign_bit b))))
3995
-
3996
- ;; Helper for the `ceil`/`floor`/`nearest`/`trunc` instructions ;;;;;;;;;;;;;;;;
3997
-
3998
- ;; Emits either a `round{ss,sd,ps,pd}` instruction, as appropriate, or generates
3999
- ;; the appropriate libcall and sequence to call that.
4000
- (decl x64_round (Type RegMem RoundImm) Xmm)
4001
- (rule 1 (x64_round $F32 a imm)
4002
- (if-let $true (use_sse41))
4003
- (x64_roundss a imm))
4004
- (rule 1 (x64_round $F64 a imm)
4005
- (if-let $true (use_sse41))
4006
- (x64_roundsd a imm))
4007
- (rule 1 (x64_round $F32X4 a imm)
4008
- (if-let $true (use_sse41))
4009
- (x64_roundps a imm))
4010
- (rule 1 (x64_round $F64X2 a imm)
4011
- (if-let $true (use_sse41))
4012
- (x64_roundpd a imm))
4013
-
4014
- (rule (x64_round $F32 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F32 imm) a))
4015
- (rule (x64_round $F64 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F64 imm) a))
4016
- (rule (x64_round $F32X4 (RegMem.Reg a) imm)
4017
- (let (
4018
- (libcall LibCall (round_libcall $F32 imm))
4019
- (result Xmm (libcall_1 libcall a))
4020
- (a1 Xmm (libcall_1 libcall (x64_pshufd a 1)))
4021
- (result Xmm (vec_insert_lane $F32X4 result a1 1))
4022
- (a2 Xmm (libcall_1 libcall (x64_pshufd a 2)))
4023
- (result Xmm (vec_insert_lane $F32X4 result a2 2))
4024
- (a3 Xmm (libcall_1 libcall (x64_pshufd a 3)))
4025
- (result Xmm (vec_insert_lane $F32X4 result a3 3))
4026
- )
4027
- result))
4028
- (rule (x64_round $F64X2 (RegMem.Reg a) imm)
4029
- (let (
4030
- (libcall LibCall (round_libcall $F64 imm))
4031
- (result Xmm (libcall_1 libcall a))
4032
- (a1 Xmm (libcall_1 libcall (x64_pshufd a 0b00_00_11_10)))
4033
- (result Xmm (vec_insert_lane $F64X2 result a1 1))
4034
- )
4035
- result))
4036
- (rule (x64_round ty (RegMem.Mem addr) imm)
4037
- (x64_round ty (RegMem.Reg (x64_load ty addr (ExtKind.ZeroExtend))) imm))
4038
-
4039
- (decl round_libcall (Type RoundImm) LibCall)
4040
- (rule (round_libcall $F32 (RoundImm.RoundUp)) (LibCall.CeilF32))
4041
- (rule (round_libcall $F64 (RoundImm.RoundUp)) (LibCall.CeilF64))
4042
- (rule (round_libcall $F32 (RoundImm.RoundDown)) (LibCall.FloorF32))
4043
- (rule (round_libcall $F64 (RoundImm.RoundDown)) (LibCall.FloorF64))
4044
- (rule (round_libcall $F32 (RoundImm.RoundNearest)) (LibCall.NearestF32))
4045
- (rule (round_libcall $F64 (RoundImm.RoundNearest)) (LibCall.NearestF64))
4046
- (rule (round_libcall $F32 (RoundImm.RoundZero)) (LibCall.TruncF32))
4047
- (rule (round_libcall $F64 (RoundImm.RoundZero)) (LibCall.TruncF64))
4048
-
4049
- ;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4050
-
4051
- (rule (lower (ceil a @ (value_type ty)))
4052
- (x64_round ty a (RoundImm.RoundUp)))
4053
-
4054
- ;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4055
-
4056
- (rule (lower (floor a @ (value_type ty)))
4057
- (x64_round ty a (RoundImm.RoundDown)))
4058
-
4059
- ;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4060
-
4061
- (rule (lower (nearest a @ (value_type ty)))
4062
- (x64_round ty a (RoundImm.RoundNearest)))
4063
-
4064
- ;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4065
-
4066
- (rule (lower (trunc a @ (value_type ty)))
4067
- (x64_round ty a (RoundImm.RoundZero)))
4068
-
4069
- ;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4070
-
4071
- (rule (lower (stack_addr stack_slot offset))
4072
- (stack_addr_impl stack_slot offset))
4073
-
4074
- ;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4075
-
4076
- ;; NB: a `RegMem` divisor, while allowed in the instruction encoding, isn't
4077
- ;; used right now to prevent a possibly-trapping load getting folded into the
4078
- ;; `div` instruction. Ideally non-trapping loads would get folded, however, or
4079
- ;; alternatively Wasmtime/Cranelift would grow support for multiple traps on
4080
- ;; a single opcode and the signal kind would differentiate at runtime.
4081
-
4082
- ;; The inputs to the `div` instruction are different for 8-bit division so
4083
- ;; it needs a special case here since the instruction being crafted has a
4084
- ;; different shape.
4085
- (rule 2 (lower (udiv a @ (value_type $I8) b))
4086
- (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
4087
- (put_in_gpr b)
4088
- (DivSignedness.Unsigned)
4089
- (TrapCode.IntegerDivisionByZero)))
4090
-
4091
- ;; 16-to-64-bit division is all done with a similar instruction and the only
4092
- ;; tricky requirement here is that when div traps are disallowed the divisor
4093
- ;; must not be zero.
4094
- (rule 1 (lower (udiv a @ (value_type (fits_in_64 ty)) b))
4095
- (x64_div_quotient a
4096
- (imm $I64 0)
4097
- (put_in_gpr b)
4098
- (raw_operand_size_of_type ty)
4099
- (DivSignedness.Unsigned)
4100
- (TrapCode.IntegerDivisionByZero)))
4101
-
4102
- ;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4103
-
4104
- (rule 2 (lower (sdiv a @ (value_type $I8) b))
4105
- (x64_div8 (x64_sign_extend_data a (OperandSize.Size8))
4106
- (nonzero_sdiv_divisor $I8 b)
4107
- (DivSignedness.Signed)
4108
- (TrapCode.IntegerOverflow)))
4109
-
4110
- (rule 1 (lower (sdiv a @ (value_type (fits_in_64 ty)) b))
4111
- (let (
4112
- (a Gpr a)
4113
- (size OperandSize (raw_operand_size_of_type ty))
4114
- )
4115
- (x64_div_quotient a
4116
- (x64_sign_extend_data a size)
4117
- (nonzero_sdiv_divisor ty b)
4118
- size
4119
- (DivSignedness.Signed)
4120
- (TrapCode.IntegerOverflow))))
4121
-
4122
- ;; Checks to make sure that the input `Value` is a non-zero value for `sdiv`.
4123
- ;;
4124
- ;; This is required to differentiate the divide-by-zero trap from the
4125
- ;; integer-overflow trap, the two trapping conditions of signed division.
4126
- (decl nonzero_sdiv_divisor (Type Value) Reg)
4127
- (rule 1 (nonzero_sdiv_divisor ty (iconst imm))
4128
- (if-let n (safe_divisor_from_imm64 ty imm))
4129
- (imm ty n))
4130
- (rule 0 (nonzero_sdiv_divisor ty val)
4131
- (let (
4132
- (val Reg val)
4133
- (_ InstOutput (side_effect (with_flags_side_effect
4134
- (x64_test (raw_operand_size_of_type ty) val val)
4135
- (trap_if (CC.Z) (TrapCode.IntegerDivisionByZero)))))
4136
- )
4137
- val))
4138
-
4139
- ;; Rules for `urem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4140
-
4141
- ;; The remainder is in AH, so take the result of the division and right-shift
4142
- ;; by 8.
4143
- (rule 2 (lower (urem a @ (value_type $I8) b))
4144
- (let (
4145
- (result Gpr (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
4146
- (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
4147
- (DivSignedness.Unsigned)
4148
- (TrapCode.IntegerDivisionByZero)))
4149
- )
4150
- (x64_shr $I64 result (Imm8Reg.Imm8 8))))
4151
-
4152
- (rule 1 (lower (urem a @ (value_type (fits_in_64 ty)) b))
4153
- (x64_div_remainder a
4154
- (imm $I64 0)
4155
- (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
4156
- (raw_operand_size_of_type ty)
4157
- (DivSignedness.Unsigned)
4158
- (TrapCode.IntegerDivisionByZero)))
4159
-
4160
- ;; Rules for `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4161
-
4162
- ;; Special-cases first for constant `srem` where the checks for 0 and -1 aren't
4163
- ;; applicable.
4164
- ;;
4165
- ;; Note that like `urem` for i8 types the result is in AH so to get the result
4166
- ;; it's right-shifted down.
4167
- (rule 3 (lower (srem a @ (value_type $I8) (iconst imm)))
4168
- (if-let n (safe_divisor_from_imm64 $I8 imm))
4169
- (let (
4170
- (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
4171
- (result Gpr (x64_div8 a (imm $I8 n) (DivSignedness.Signed) (TrapCode.IntegerDivisionByZero)))
4172
- )
4173
- (x64_shr $I64 result (Imm8Reg.Imm8 8))))
4174
-
4175
- ;; Same as the above rule but for 16-to-64 bit types.
4176
- (rule 2 (lower (srem a @ (value_type ty) (iconst imm)))
4177
- (if-let n (safe_divisor_from_imm64 ty imm))
4178
- (let (
4179
- (a Gpr a)
4180
- (size OperandSize (raw_operand_size_of_type ty))
4181
- )
4182
- (x64_div_remainder a
4183
- (x64_sign_extend_data a size)
4184
- (imm ty n)
4185
- size
4186
- (DivSignedness.Signed)
4187
- (TrapCode.IntegerDivisionByZero))))
4188
-
4189
- (rule 1 (lower (srem a @ (value_type $I8) b))
4190
- (let (
4191
- (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
4192
- )
4193
- (x64_shr $I64 (x64_checked_srem_seq8 a b) (Imm8Reg.Imm8 8))))
4194
-
4195
- (rule (lower (srem a @ (value_type ty) b))
4196
- (let (
4197
- (a Gpr a)
4198
- (size OperandSize (raw_operand_size_of_type ty))
4199
- (hi Gpr (x64_sign_extend_data a size))
4200
- (tmp ValueRegs (x64_checked_srem_seq size a hi b))
4201
- )
4202
- (value_regs_get tmp 1)))
4203
-
4204
- ;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4205
-
4206
- (rule 0 (lower (umulhi a @ (value_type $I8) b))
4207
- (x64_shr $I16 (x64_mul8 $false a b) (imm8_to_imm8_gpr 8)))
4208
-
4209
- (rule 1 (lower (umulhi a @ (value_type (ty_int_ref_16_to_64 ty)) b))
4210
- (value_regs_get_gpr (x64_mul ty $false a b) 1))
4211
-
4212
- ;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4213
-
4214
- (rule 0 (lower (smulhi a @ (value_type $I8) b))
4215
- (x64_sar $I16 (x64_mul8 $true a b) (imm8_to_imm8_gpr 8)))
4216
-
4217
- (rule 1 (lower (smulhi a @ (value_type (ty_int_ref_16_to_64 ty)) b))
4218
- (value_regs_get_gpr (x64_mul ty $true a b) 1))
4219
-
4220
- ;; Rules for `get_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4221
-
4222
- (rule (lower (get_pinned_reg))
4223
- (read_pinned_gpr))
4224
-
4225
- ;; Rules for `set_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4226
-
4227
- (rule (lower (set_pinned_reg a @ (value_type ty)))
4228
- (side_effect (write_pinned_gpr a)))
4229
-
4230
- ;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4231
-
4232
- (rule (lower (has_type ty (vconst const)))
4233
- ;; TODO use Inst::gen_constant() instead.
4234
- (x64_xmm_load_const ty (const_to_vconst const)))
4235
-
4236
- ;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4237
-
4238
- ;; Special case for `pblendw` which takes an 8-bit immediate where each bit
4239
- ;; indicates which lane of the two operands is chosen for the output. A bit of
4240
- ;; 0 chooses the corresponding 16-it lane from `a` and a bit of 1 chooses the
4241
- ;; corresponding 16-bit lane from `b`.
4242
- (rule 14 (lower (shuffle a b (pblendw_imm n)))
4243
- (if-let $true (use_sse41))
4244
- (x64_pblendw a b n))
4245
- (decl pblendw_imm (u8) Immediate)
4246
- (extern extractor pblendw_imm pblendw_imm)
4247
-
4248
- ;; When the shuffle looks like "concatenate `a` and `b` and shift right by n*8
4249
- ;; bytes", that's a `palignr` instruction. Note that the order of operands are
4250
- ;; swapped in the instruction here. The `palignr` instruction uses the second
4251
- ;; operand as the low-order bytes and the first operand as high-order bytes,
4252
- ;; so put `a` second.
4253
- (rule 13 (lower (shuffle a b (palignr_imm_from_immediate n)))
4254
- (if-let $true (use_ssse3))
4255
- (x64_palignr b a n))
4256
- (decl palignr_imm_from_immediate (u8) Immediate)
4257
- (extern extractor palignr_imm_from_immediate palignr_imm_from_immediate)
4258
-
4259
- ;; Special case the `pshuf{l,h}w` instruction which shuffles four 16-bit
4260
- ;; integers within one value, preserving the other four 16-bit integers in that
4261
- ;; value (either the high or low half). The complicated logic is in the
4262
- ;; extractors here implemented in Rust and note that there's two cases for each
4263
- ;; instruction here to match when either the first or second shuffle operand is
4264
- ;; used.
4265
- (rule 12 (lower (shuffle x y (pshuflw_lhs_imm imm)))
4266
- (x64_pshuflw x imm))
4267
- (rule 11 (lower (shuffle x y (pshuflw_rhs_imm imm)))
4268
- (x64_pshuflw y imm))
4269
- (rule 10 (lower (shuffle x y (pshufhw_lhs_imm imm)))
4270
- (x64_pshufhw x imm))
4271
- (rule 9 (lower (shuffle x y (pshufhw_rhs_imm imm)))
4272
- (x64_pshufhw y imm))
4273
-
4274
- (decl pshuflw_lhs_imm (u8) Immediate)
4275
- (extern extractor pshuflw_lhs_imm pshuflw_lhs_imm)
4276
- (decl pshuflw_rhs_imm (u8) Immediate)
4277
- (extern extractor pshuflw_rhs_imm pshuflw_rhs_imm)
4278
- (decl pshufhw_lhs_imm (u8) Immediate)
4279
- (extern extractor pshufhw_lhs_imm pshufhw_lhs_imm)
4280
- (decl pshufhw_rhs_imm (u8) Immediate)
4281
- (extern extractor pshufhw_rhs_imm pshufhw_rhs_imm)
4282
-
4283
- ;; Special case for the `pshufd` instruction which will permute 32-bit values
4284
- ;; within a single register. This is only applicable if the `imm` specified
4285
- ;; selects 32-bit values from either `x` or `y`, but not both. This means
4286
- ;; there's one rule for selecting from `x` and another rule for selecting from
4287
- ;; `y`.
4288
- (rule 8 (lower (shuffle x y (pshufd_lhs_imm imm)))
4289
- (x64_pshufd x imm))
4290
- (rule 7 (lower (shuffle x y (pshufd_rhs_imm imm)))
4291
- (x64_pshufd y imm))
4292
-
4293
- (decl pshufd_lhs_imm (u8) Immediate)
4294
- (extern extractor pshufd_lhs_imm pshufd_lhs_imm)
4295
- (decl pshufd_rhs_imm (u8) Immediate)
4296
- (extern extractor pshufd_rhs_imm pshufd_rhs_imm)
4297
-
4298
- ;; Special case for i8-level interleaving of upper/low bytes.
4299
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f0f_1e0e_1d0d_1c0c_1b0b_1a0a_1909_1808)))
4300
- (x64_punpckhbw a b))
4301
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1707_1606_1505_1404_1303_1202_1101_1000)))
4302
- (x64_punpcklbw a b))
4303
-
4304
- ;; Special case for i16-level interleaving of upper/low bytes.
4305
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1d1c_0d0c_1b1a_0b0a_1918_0908)))
4306
- (x64_punpckhwd a b))
4307
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716_0706_1514_0504_1312_0302_1110_0100)))
4308
- (x64_punpcklwd a b))
4309
-
4310
- ;; Special case for i32-level interleaving of upper/low bytes.
4311
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_1b1a1918_0b0a0908)))
4312
- (x64_punpckhdq a b))
4313
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x17161514_07060504_13121110_03020100)))
4314
- (x64_punpckldq a b))
4315
-
4316
- ;; Special case for i64-level interleaving of upper/low bytes.
4317
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c1b1a1918_0f0e0d0c0b0a0908)))
4318
- (x64_punpckhqdq a b))
4319
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716151413121110_0706050403020100)))
4320
- (x64_punpcklqdq a b))
4321
-
4322
- ;; If the vector shift mask is all 0s then that means the first byte of the
4323
- ;; first operand is broadcast to all bytes. Falling through would load an
4324
- ;; all-zeros constant from a rip-relative location but it should be slightly
4325
- ;; more efficient to execute the `pshufb` here-and-now with an xor'd-to-be-zero
4326
- ;; register.
4327
- (rule 6 (lower (shuffle a _ (u128_from_immediate 0)))
4328
- (if-let $true (use_ssse3))
4329
- (x64_pshufb a (xmm_zero $I8X16)))
4330
-
4331
- ;; Special case for the `shufps` instruction which will select two 32-bit values
4332
- ;; from the first operand and two 32-bit values from the second operand. Note
4333
- ;; that there is a second case here as well for when the operands can be
4334
- ;; swapped.
4335
- ;;
4336
- ;; Note that the priority of this instruction is currently lower than the above
4337
- ;; special cases since `shufps` handles many of them and for now it's
4338
- ;; hypothesized that the dedicated instructions are better than `shufps`.
4339
- ;; Someone with more knowledge about x86 timings should perhaps reorder the
4340
- ;; rules here eventually though.
4341
- (rule 5 (lower (shuffle x y (shufps_imm imm)))
4342
- (x64_shufps x y imm))
4343
- (rule 4 (lower (shuffle x y (shufps_rev_imm imm)))
4344
- (x64_shufps y x imm))
4345
-
4346
- (decl shufps_imm(u8) Immediate)
4347
- (extern extractor shufps_imm shufps_imm)
4348
- (decl shufps_rev_imm(u8) Immediate)
4349
- (extern extractor shufps_rev_imm shufps_rev_imm)
4350
-
4351
-
4352
- ;; If `lhs` and `rhs` are the same we can use a single PSHUFB to shuffle the XMM
4353
- ;; register. We statically build `constructed_mask` to zero out any unknown lane
4354
- ;; indices (may not be completely necessary: verification could fail incorrect
4355
- ;; mask values) and fix the indexes to all point to the `dst` vector.
4356
- (rule 3 (lower (shuffle a a (vec_mask_from_immediate mask)))
4357
- (if-let $true (use_ssse3))
4358
- (x64_pshufb a (shuffle_0_31_mask mask)))
4359
-
4360
- ;; For the case where the shuffle mask contains out-of-bounds values (values
4361
- ;; greater than 31) we must mask off those resulting values in the result of
4362
- ;; `vpermi2b`.
4363
- (rule 2 (lower (shuffle a b (vec_mask_from_immediate (perm_from_mask_with_zeros mask zeros))))
4364
- (if-let $true (use_avx512vl))
4365
- (if-let $true (use_avx512vbmi))
4366
- (x64_andps (x64_vpermi2b (x64_xmm_load_const $I8X16 mask) a b) zeros))
4367
-
4368
- ;; However, if the shuffle mask contains no out-of-bounds values, we can use
4369
- ;; `vpermi2b` without any masking.
4370
- (rule 1 (lower (shuffle a b (vec_mask_from_immediate mask)))
4371
- (if-let $true (use_avx512vl))
4372
- (if-let $true (use_avx512vbmi))
4373
- (x64_vpermi2b (x64_xmm_load_const $I8X16 (perm_from_mask mask)) a b))
4374
-
4375
- ;; If `lhs` and `rhs` are different, we must shuffle each separately and then OR
4376
- ;; them together. This is necessary due to PSHUFB semantics. As in the case
4377
- ;; above, we build the `constructed_mask` for each case statically.
4378
- (rule (lower (shuffle a b (vec_mask_from_immediate mask)))
4379
- (x64_por
4380
- (lower_pshufb a (shuffle_0_15_mask mask))
4381
- (lower_pshufb b (shuffle_16_31_mask mask))))
4382
-
4383
- ;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4384
-
4385
- ;; SIMD swizzle; the following inefficient implementation is due to the Wasm
4386
- ;; SIMD spec requiring mask indexes greater than 15 to have the same semantics
4387
- ;; as a 0 index. For the spec discussion, see
4388
- ;; https://github.com/WebAssembly/simd/issues/93. The CLIF semantics match the
4389
- ;; Wasm SIMD semantics for this instruction. The instruction format maps to
4390
- ;; variables like: %dst = swizzle %src, %mask
4391
- (rule (lower (swizzle src mask))
4392
- (let ((mask Xmm (x64_paddusb mask (emit_u128_le_const 0x70707070707070707070707070707070))))
4393
- (lower_pshufb src mask)))
4394
-
4395
- ;; Rules for `x86_pshufb` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4396
-
4397
- (rule (lower (x86_pshufb src mask))
4398
- (if-let $true (use_ssse3))
4399
- (x64_pshufb src mask))
4400
-
4401
- ;; A helper function to generate either the `pshufb` instruction or a libcall to
4402
- ;; the `X86Pshufb` libcall. Note that the libcall is not exactly the most
4403
- ;; performant thing in the world so this is primarily here for completeness
4404
- ;; of lowerings on all x86 cpus but if rules are ideally gated on the presence
4405
- ;; of SSSE3 to use the `pshufb` instruction itself.
4406
- (decl lower_pshufb (Xmm RegMem) Xmm)
4407
- (rule 1 (lower_pshufb src mask)
4408
- (if-let $true (use_ssse3))
4409
- (x64_pshufb src mask))
4410
- (rule (lower_pshufb src (RegMem.Reg mask))
4411
- (libcall_2 (LibCall.X86Pshufb) src mask))
4412
- (rule (lower_pshufb src (RegMem.Mem addr))
4413
- (lower_pshufb src (x64_movdqu_load addr)))
4414
-
4415
- ;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4416
-
4417
- ;; Remove the extractlane instruction, leaving the float where it is. The upper
4418
- ;; bits will remain unchanged; for correctness, this relies on Cranelift type
4419
- ;; checking to avoid using those bits.
4420
- (rule 3 (lower (has_type (ty_scalar_float _) (extractlane val 0)))
4421
- val)
4422
-
4423
- ;; `f32x4.extract_lane N` where `N != 0`
4424
- (rule 1 (lower (extractlane val @ (value_type $F32X4) (u8_from_uimm8 lane)))
4425
- (x64_pshufd val lane))
4426
-
4427
- ;; `f64x2.extract_lane N` where `N != 0` (aka N == 1)
4428
- (rule (lower (extractlane val @ (value_type $F64X2) 1))
4429
- (x64_pshufd val 0b11_10_11_10))
4430
-
4431
- ;; `i8x16.extract_lane N`
4432
- ;;
4433
- ;; Note that without SSE4.1 a 16-bit lane extraction is performed and then
4434
- ;; the result is updated if the desired index is either odd or even.
4435
- (rule 2 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4436
- (if-let $true (use_sse41))
4437
- (x64_pextrb val lane))
4438
- ;; extracting an odd lane has an extra shift-right
4439
- (rule 1 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4440
- (if-let 1 (u8_and lane 1))
4441
- (x64_shr $I16 (x64_pextrw val (u8_shr lane 1)) (Imm8Reg.Imm8 8)))
4442
- ;; Extracting an even lane already has the desired lane in the lower bits. Note
4443
- ;; that having arbitrary upper bits in the returned register should be ok since
4444
- ;; all operators on the resulting `i8` type should work correctly regardless of
4445
- ;; the bits in the rest of the register.
4446
- (rule (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4447
- (if-let 0 (u8_and lane 1))
4448
- (x64_pextrw val (u8_shr lane 1)))
4449
-
4450
- ;; `i16x8.extract_lane N`
4451
- (rule (lower (extractlane val @ (value_type ty @ $I16X8) (u8_from_uimm8 lane)))
4452
- (x64_pextrw val lane))
4453
-
4454
- ;; `i32x4.extract_lane N`
4455
- (rule 2 (lower (extractlane val @ (value_type ty @ $I32X4) (u8_from_uimm8 lane)))
4456
- (if-let $true (use_sse41))
4457
- (x64_pextrd val lane))
4458
- (rule 1 (lower (extractlane val @ (value_type $I32X4) 0))
4459
- (x64_movd_to_gpr val))
4460
- (rule (lower (extractlane val @ (value_type $I32X4) (u8_from_uimm8 n)))
4461
- (x64_movd_to_gpr (x64_pshufd val n)))
4462
-
4463
- ;; `i64x2.extract_lane N`
4464
- (rule 1 (lower (extractlane val @ (value_type $I64X2) (u8_from_uimm8 lane)))
4465
- (if-let $true (use_sse41))
4466
- (x64_pextrq val lane))
4467
- (rule (lower (extractlane val @ (value_type $I64X2) 0))
4468
- (x64_movq_to_gpr val))
4469
- (rule (lower (extractlane val @ (value_type $I64X2) 1))
4470
- (x64_movq_to_gpr (x64_pshufd val 0b00_00_11_10)))
4471
-
4472
- ;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4473
-
4474
- ;; Case 1: when moving a scalar float, we simply move from one XMM register
4475
- ;; to another, expecting the register allocator to elide this. Here we
4476
- ;; assume that the upper bits of a scalar float have not been munged with
4477
- ;; (the same assumption the old backend makes).
4478
- (rule 1 (lower (scalar_to_vector src @ (value_type (ty_scalar_float _))))
4479
- src)
4480
-
4481
- ;; Case 2: when moving a scalar value of any other type, use MOVD to zero
4482
- ;; the upper lanes.
4483
- (rule (lower (scalar_to_vector src @ (value_type ty)))
4484
- (bitcast_gpr_to_xmm ty src))
4485
-
4486
- ;; Case 3: when presented with `load + scalar_to_vector`, coalesce into a single
4487
- ;; MOVSS/MOVSD instruction.
4488
- (rule 2 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_32 _)))))
4489
- (x64_movss_load src))
4490
- (rule 3 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_64 _)))))
4491
- (x64_movsd_load src))
4492
-
4493
- ;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4494
-
4495
- ;; For all the splat rules below one of the goals is that splatting a value
4496
- ;; doesn't end up accidentally depending on the previous value in a register.
4497
- ;; This means that instructions are chosen to avoid false dependencies where
4498
- ;; new values are created fresh or otherwise overwrite previous register
4499
- ;; contents where possible.
4500
- ;;
4501
- ;; Additionally splats are specialized to special-case load-and-splat which
4502
- ;; has a number of micro-optimizations available.
4503
-
4504
- ;; i8x16 splats: use `vpbroadcastb` on AVX2 and otherwise `pshufb` broadcasts
4505
- ;; with a mask of zero which is calculated with an xor-against-itself register.
4506
- (rule 0 (lower (has_type $I8X16 (splat src)))
4507
- (let ((src Xmm (x64_movd_to_xmm src)))
4508
- (x64_pshufd (x64_pshuflw (x64_punpcklbw src src) 0) 0)))
4509
- (rule 1 (lower (has_type $I8X16 (splat src)))
4510
- (if-let $true (use_ssse3))
4511
- (x64_pshufb (bitcast_gpr_to_xmm $I32 src) (xmm_zero $I8X16)))
4512
- (rule 2 (lower (has_type $I8X16 (splat src)))
4513
- (if-let $true (use_avx2))
4514
- (x64_vpbroadcastb (bitcast_gpr_to_xmm $I32 src)))
4515
- (rule 3 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4516
- (if-let $true (use_sse41))
4517
- (if-let $true (use_ssse3))
4518
- (x64_pshufb (x64_pinsrb (xmm_uninit_value) addr 0) (xmm_zero $I8X16)))
4519
- (rule 4 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4520
- (if-let $true (use_avx2))
4521
- (x64_vpbroadcastb addr))
4522
-
4523
- ;; i16x8 splats: use `vpbroadcastw` on AVX2 and otherwise a 16-bit value is
4524
- ;; loaded into an xmm register, `pshuflw` broadcasts the low 16-bit lane
4525
- ;; to the low four lanes, and `pshufd` broadcasts the low 32-bit lane (which
4526
- ;; at that point is two of the 16-bit values we want to broadcast) to all the
4527
- ;; lanes.
4528
- (rule 0 (lower (has_type $I16X8 (splat src)))
4529
- (x64_pshufd (x64_pshuflw (bitcast_gpr_to_xmm $I32 src) 0) 0))
4530
- (rule 1 (lower (has_type $I16X8 (splat src)))
4531
- (if-let $true (use_avx2))
4532
- (x64_vpbroadcastw (bitcast_gpr_to_xmm $I32 src)))
4533
- (rule 2 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4534
- (x64_pshufd (x64_pshuflw (x64_pinsrw (xmm_uninit_value) addr 0) 0) 0))
4535
- (rule 3 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4536
- (if-let $true (use_avx2))
4537
- (x64_vpbroadcastw addr))
4538
-
4539
- ;; i32x4.splat - use `vpbroadcastd` on AVX2 and otherwise `pshufd` can be
4540
- ;; used to broadcast the low lane to all other lanes.
4541
- ;;
4542
- ;; Note that sinkable-load cases come later
4543
- (rule 0 (lower (has_type $I32X4 (splat src)))
4544
- (x64_pshufd (bitcast_gpr_to_xmm $I32 src) 0))
4545
- (rule 1 (lower (has_type $I32X4 (splat src)))
4546
- (if-let $true (use_avx2))
4547
- (x64_vpbroadcastd (bitcast_gpr_to_xmm $I32 src)))
4548
-
4549
- ;; f32x4.splat - the source is already in an xmm register so `shufps` is all
4550
- ;; that's necessary to complete the splat. This is specialized to `vbroadcastss`
4551
- ;; on AVX2 to leverage that specific instruction for this operation.
4552
- (rule 0 (lower (has_type $F32X4 (splat src)))
4553
- (let ((tmp Xmm src))
4554
- (x64_shufps src src 0)))
4555
- (rule 1 (lower (has_type $F32X4 (splat src)))
4556
- (if-let $true (use_avx2))
4557
- (x64_vbroadcastss src))
4558
-
4559
- ;; t32x4.splat of a load - use a `movss` to load into an xmm register and then
4560
- ;; `shufps` broadcasts to the other lanes. Note that this is used for both i32
4561
- ;; and f32 splats.
4562
- ;;
4563
- ;; With AVX the `vbroadcastss` instruction suits this purpose precisely. Note
4564
- ;; that the memory-operand encoding of `vbroadcastss` is usable with AVX, but
4565
- ;; the register-based encoding is only available with AVX2. With the
4566
- ;; `sinkable_load` extractor this should be guaranteed to use the memory-based
4567
- ;; encoding hence the `use_avx` test.
4568
- (rule 5 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4569
- (let ((tmp Xmm (x64_movss_load addr)))
4570
- (x64_shufps tmp tmp 0)))
4571
- (rule 6 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4572
- (if-let $true (use_avx))
4573
- (x64_vbroadcastss addr))
4574
-
4575
- ;; t64x2.splat - use `pshufd` to broadcast the lower 64-bit lane to the upper
4576
- ;; lane. A minor specialization for sinkable loads to avoid going through a gpr
4577
- ;; for i64 splats is used as well when `movddup` is available.
4578
- (rule 0 (lower (has_type $I64X2 (splat src)))
4579
- (x64_pshufd (bitcast_gpr_to_xmm $I64 src) 0b01_00_01_00))
4580
- (rule 0 (lower (has_type $F64X2 (splat src)))
4581
- (x64_pshufd src 0b01_00_01_00))
4582
- (rule 6 (lower (has_type (multi_lane 64 2) (splat (sinkable_load addr))))
4583
- (if-let $true (use_ssse3))
4584
- (x64_movddup addr))
4585
-
4586
- ;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4587
-
4588
- (rule 1 (lower (vany_true val))
4589
- (if-let $true (use_sse41))
4590
- (let ((val Xmm val))
4591
- (with_flags (x64_ptest val val) (x64_setcc (CC.NZ)))))
4592
-
4593
- ;; Any nonzero byte in `val` means that any lane is true. Compare `val` with a
4594
- ;; zeroed register and extract the high bits to a gpr mask. If the mask is
4595
- ;; 0xffff then every byte was equal to zero, so test if the comparison is
4596
- ;; not-equal or NZ.
4597
- (rule (lower (vany_true val))
4598
- (let (
4599
- (any_byte_zero Xmm (x64_pcmpeqb val (xmm_zero $I8X16)))
4600
- (mask Gpr (x64_pmovmskb (OperandSize.Size32) any_byte_zero))
4601
- )
4602
- (with_flags (x64_cmp (OperandSize.Size32) (RegMemImm.Imm 0xffff) mask)
4603
- (x64_setcc (CC.NZ)))))
4604
-
4605
- ;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4606
-
4607
- (rule 1 (lower (vall_true val @ (value_type ty)))
4608
- (if-let $true (use_sse41))
4609
- (let ((src Xmm val)
4610
- (zeros Xmm (xmm_zero ty))
4611
- (cmp Xmm (x64_pcmpeq (vec_int_type ty) src zeros)))
4612
- (with_flags (x64_ptest cmp cmp) (x64_setcc (CC.Z)))))
4613
-
4614
- ;; Perform an appropriately-sized lane-wise comparison with zero. If the
4615
- ;; result is all 0s then all of them are true because nothing was equal to
4616
- ;; zero.
4617
- (rule (lower (vall_true val @ (value_type ty)))
4618
- (let ((lanes_with_zero Xmm (x64_pcmpeq (vec_int_type ty) val (xmm_zero ty)))
4619
- (mask Gpr (x64_pmovmskb (OperandSize.Size32) lanes_with_zero)))
4620
- (with_flags (x64_test (OperandSize.Size32) mask mask)
4621
- (x64_setcc (CC.Z)))))
4622
-
4623
- ;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4624
-
4625
- ;; The Intel specification allows using both 32-bit and 64-bit GPRs as
4626
- ;; destination for the "move mask" instructions. This is controlled by the REX.R
4627
- ;; bit: "In 64-bit mode, the instruction can access additional registers when
4628
- ;; used with a REX.R prefix. The default operand size is 64-bit in 64-bit mode"
4629
- ;; (PMOVMSKB in IA Software Development Manual, vol. 2). This being the case, we
4630
- ;; will always clear REX.W since its use is unnecessary (`OperandSize` is used
4631
- ;; for setting/clearing REX.W) as we need at most 16 bits of output for
4632
- ;; `vhigh_bits`.
4633
-
4634
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 8 16))))
4635
- (x64_pmovmskb (OperandSize.Size32) val))
4636
-
4637
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 32 4))))
4638
- (x64_movmskps (OperandSize.Size32) val))
4639
-
4640
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 64 2))))
4641
- (x64_movmskpd (OperandSize.Size32) val))
4642
-
4643
- ;; There is no x86 instruction for extracting the high bit of 16-bit lanes so
4644
- ;; here we:
4645
- ;; - duplicate the 16-bit lanes of `src` into 8-bit lanes:
4646
- ;; PACKSSWB([x1, x2, ...], [x1, x2, ...]) = [x1', x2', ..., x1', x2', ...]
4647
- ;; - use PMOVMSKB to gather the high bits; now we have duplicates, though
4648
- ;; - shift away the bottom 8 high bits to remove the duplicates.
4649
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 16 8))))
4650
- (let ((src Xmm val)
4651
- (tmp Xmm (x64_packsswb src src))
4652
- (tmp Gpr (x64_pmovmskb (OperandSize.Size32) tmp)))
4653
- (x64_shr $I64 tmp (Imm8Reg.Imm8 8))))
4654
-
4655
- ;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4656
-
4657
- (rule (lower (iconcat lo @ (value_type $I64) hi))
4658
- (value_regs lo hi))
4659
-
4660
- ;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4661
-
4662
- (rule (lower (isplit val @ (value_type $I128)))
4663
- (let ((regs ValueRegs val)
4664
- (lo Reg (value_regs_get regs 0))
4665
- (hi Reg (value_regs_get regs 1)))
4666
- (output_pair lo hi)))
4667
-
4668
- ;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4669
-
4670
- (rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
4671
- (elf_tls_get_addr name))
4672
-
4673
- (rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
4674
- (macho_tls_get_addr name))
4675
-
4676
- (rule (lower (has_type (tls_model (TlsModel.Coff)) (tls_value (symbol_value_data name _ _))))
4677
- (coff_tls_get_addr name))
4678
-
4679
- ;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4680
-
4681
- (rule 1 (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
4682
- (if-let $true (use_ssse3))
4683
- (let ((src1 Xmm qx)
4684
- (src2 Xmm qy)
4685
-
4686
- (mask XmmMem (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000))
4687
- (dst Xmm (x64_pmulhrsw src1 src2))
4688
- (cmp Xmm (x64_pcmpeqw dst mask)))
4689
- (x64_pxor dst cmp)))
4690
-
4691
- ;; This operation is defined in wasm as:
4692
- ;;
4693
- ;; S.SignedSaturate((x * y + 0x4000) >> 15)
4694
- ;;
4695
- ;; so perform all those operations here manually with a lack of the native
4696
- ;; instruction.
4697
- (rule (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
4698
- (let (
4699
- (qx Xmm qx)
4700
- (qy Xmm qy)
4701
- ;; Multiply `qx` and `qy` generating 32-bit intermediate results. The
4702
- ;; 32-bit results have their low-halves stored in `mul_lsb` and the
4703
- ;; high halves are stored in `mul_msb`. These are then shuffled into
4704
- ;; `mul_lo` and `mul_hi` which represent the low 4 multiplications
4705
- ;; and the upper 4 multiplications.
4706
- (mul_lsb Xmm (x64_pmullw qx qy))
4707
- (mul_msb Xmm (x64_pmulhw qx qy))
4708
- (mul_lo Xmm (x64_punpcklwd mul_lsb mul_msb))
4709
- (mul_hi Xmm (x64_punpckhwd mul_lsb mul_msb))
4710
- ;; Add the 0x4000 constant to all multiplications
4711
- (val Xmm (x64_movdqu_load (emit_u128_le_const 0x00004000_00004000_00004000_00004000)))
4712
- (mul_lo Xmm (x64_paddd mul_lo val))
4713
- (mul_hi Xmm (x64_paddd mul_hi val))
4714
- ;; Perform the right-shift by 15 to all multiplications
4715
- (lo Xmm (x64_psrad mul_lo (xmi_imm 15)))
4716
- (hi Xmm (x64_psrad mul_hi (xmi_imm 15)))
4717
- )
4718
- ;; And finally perform a saturating 32-to-16-bit conversion.
4719
- (x64_packssdw lo hi)))
4720
-
4721
- ;; Rules for `x86_pmulhrsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4722
-
4723
- (rule (lower (x86_pmulhrsw qx @ (value_type $I16X8) qy))
4724
- (if-let $true (use_ssse3))
4725
- (x64_pmulhrsw qx qy))
4726
-
4727
- ;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4728
-
4729
- ;; TODO: currently we only lower a special case of `uunarrow` needed to support
4730
- ;; the translation of wasm's i32x4.trunc_sat_f64x2_u_zero operation.
4731
- ;; https://github.com/bytecodealliance/wasmtime/issues/4791
4732
- ;;
4733
- ;; y = i32x4.trunc_sat_f64x2_u_zero(x) is lowered to:
4734
- ;; MOVAPD xmm_y, xmm_x
4735
- ;; XORPD xmm_tmp, xmm_tmp
4736
- ;; MAXPD xmm_y, xmm_tmp
4737
- ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4738
- ;; ROUNDPD xmm_y, xmm_y, 0x0B
4739
- ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4740
- ;; SHUFPS xmm_y, xmm_xmp, 0x88
4741
- (rule (lower (uunarrow (fcvt_to_uint_sat src @ (value_type $F64X2))
4742
- (vconst (u128_from_constant 0))))
4743
- (let ((src Xmm src)
4744
-
4745
- ;; MOVAPD xmm_y, xmm_x
4746
- ;; XORPD xmm_tmp, xmm_tmp
4747
- (zeros Xmm (xmm_zero $F64X2))
4748
- (dst Xmm (x64_maxpd src zeros))
4749
-
4750
- ;; 4294967295.0 is equivalent to 0x41EFFFFFFFE00000
4751
- (umax_mask XmmMem (emit_u128_le_const 0x41EFFFFFFFE00000_41EFFFFFFFE00000))
4752
-
4753
- ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4754
- (dst Xmm (x64_minpd dst umax_mask))
4755
-
4756
- ;; ROUNDPD xmm_y, xmm_y, 0x0B
4757
- (dst Xmm (x64_round $F64X2 dst (RoundImm.RoundZero)))
4758
-
4759
- ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4760
- (uint_mask XmmMem (emit_u128_le_const 0x4330000000000000_4330000000000000))
4761
-
4762
- (dst Xmm (x64_addpd dst uint_mask)))
4763
-
4764
- ;; SHUFPS xmm_y, xmm_xmp, 0x88
4765
- (x64_shufps dst zeros 0x88)))
4766
-
4767
- ;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4768
-
4769
- (rule (lower (nop))
4770
- (invalid_reg))