wasmtime 10.0.1 → 12.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4051) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +314 -247
  3. data/ext/Cargo.toml +7 -7
  4. data/ext/cargo-vendor/addr2line-0.21.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/addr2line-0.21.0/CHANGELOG.md +336 -0
  6. data/ext/cargo-vendor/addr2line-0.21.0/Cargo.lock +704 -0
  7. data/ext/cargo-vendor/addr2line-0.21.0/Cargo.toml +147 -0
  8. data/ext/cargo-vendor/addr2line-0.21.0/examples/addr2line.rs +317 -0
  9. data/ext/cargo-vendor/addr2line-0.21.0/src/builtin_split_dwarf_loader.rs +164 -0
  10. data/ext/cargo-vendor/addr2line-0.21.0/src/function.rs +555 -0
  11. data/ext/cargo-vendor/addr2line-0.21.0/src/lazy.rs +31 -0
  12. data/ext/cargo-vendor/addr2line-0.21.0/src/lib.rs +1729 -0
  13. data/ext/cargo-vendor/addr2line-0.21.0/tests/correctness.rs +126 -0
  14. data/ext/cargo-vendor/addr2line-0.21.0/tests/output_equivalence.rs +135 -0
  15. data/ext/cargo-vendor/addr2line-0.21.0/tests/parse.rs +114 -0
  16. data/ext/cargo-vendor/aho-corasick-1.0.4/.cargo-checksum.json +1 -0
  17. data/ext/cargo-vendor/aho-corasick-1.0.4/Cargo.toml +70 -0
  18. data/ext/cargo-vendor/aho-corasick-1.0.4/src/ahocorasick.rs +2789 -0
  19. data/ext/cargo-vendor/aho-corasick-1.0.4/src/dfa.rs +816 -0
  20. data/ext/cargo-vendor/aho-corasick-1.0.4/src/lib.rs +327 -0
  21. data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/contiguous.rs +1141 -0
  22. data/ext/cargo-vendor/aho-corasick-1.0.4/src/nfa/noncontiguous.rs +1710 -0
  23. data/ext/cargo-vendor/anyhow-1.0.75/.cargo-checksum.json +1 -0
  24. data/ext/cargo-vendor/anyhow-1.0.75/Cargo.toml +67 -0
  25. data/ext/cargo-vendor/anyhow-1.0.75/build.rs +131 -0
  26. data/ext/cargo-vendor/anyhow-1.0.75/src/backtrace.rs +401 -0
  27. data/ext/cargo-vendor/anyhow-1.0.75/src/context.rs +193 -0
  28. data/ext/cargo-vendor/anyhow-1.0.75/src/error.rs +996 -0
  29. data/ext/cargo-vendor/anyhow-1.0.75/src/kind.rs +119 -0
  30. data/ext/cargo-vendor/anyhow-1.0.75/src/lib.rs +689 -0
  31. data/ext/cargo-vendor/anyhow-1.0.75/src/wrapper.rs +81 -0
  32. data/ext/cargo-vendor/anyhow-1.0.75/tests/test_ensure.rs +722 -0
  33. data/ext/cargo-vendor/async-trait-0.1.73/.cargo-checksum.json +1 -0
  34. data/ext/cargo-vendor/async-trait-0.1.73/Cargo.toml +63 -0
  35. data/ext/cargo-vendor/async-trait-0.1.73/src/expand.rs +484 -0
  36. data/ext/cargo-vendor/async-trait-0.1.73/src/lib.rs +343 -0
  37. data/ext/cargo-vendor/async-trait-0.1.73/tests/test.rs +1606 -0
  38. data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/consider-restricting.stderr +35 -0
  39. data/ext/cargo-vendor/async-trait-0.1.73/tests/ui/send-not-implemented.stderr +49 -0
  40. data/ext/cargo-vendor/backtrace-0.3.69/.cargo-checksum.json +1 -0
  41. data/ext/cargo-vendor/backtrace-0.3.69/Cargo.lock +192 -0
  42. data/ext/cargo-vendor/backtrace-0.3.69/Cargo.toml +145 -0
  43. data/ext/cargo-vendor/backtrace-0.3.69/build.rs +49 -0
  44. data/ext/cargo-vendor/backtrace-0.3.69/src/print/fuchsia.rs +441 -0
  45. data/ext/cargo-vendor/backtrace-0.3.69/src/print.rs +320 -0
  46. data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/gimli/parse_running_mmaps_unix.rs +295 -0
  47. data/ext/cargo-vendor/backtrace-0.3.69/src/symbolize/mod.rs +485 -0
  48. data/ext/cargo-vendor/backtrace-0.3.69/src/windows.rs +693 -0
  49. data/ext/cargo-vendor/bytes-1.4.0/.cargo-checksum.json +1 -0
  50. data/ext/cargo-vendor/bytes-1.4.0/CHANGELOG.md +283 -0
  51. data/ext/cargo-vendor/bytes-1.4.0/Cargo.toml +54 -0
  52. data/ext/cargo-vendor/bytes-1.4.0/LICENSE +25 -0
  53. data/ext/cargo-vendor/bytes-1.4.0/README.md +56 -0
  54. data/ext/cargo-vendor/bytes-1.4.0/benches/buf.rs +186 -0
  55. data/ext/cargo-vendor/bytes-1.4.0/benches/bytes.rs +120 -0
  56. data/ext/cargo-vendor/bytes-1.4.0/benches/bytes_mut.rs +266 -0
  57. data/ext/cargo-vendor/bytes-1.4.0/ci/miri.sh +11 -0
  58. data/ext/cargo-vendor/bytes-1.4.0/ci/test-stable.sh +28 -0
  59. data/ext/cargo-vendor/bytes-1.4.0/ci/tsan.sh +13 -0
  60. data/ext/cargo-vendor/bytes-1.4.0/clippy.toml +1 -0
  61. data/ext/cargo-vendor/bytes-1.4.0/src/buf/buf_impl.rs +1394 -0
  62. data/ext/cargo-vendor/bytes-1.4.0/src/buf/buf_mut.rs +1493 -0
  63. data/ext/cargo-vendor/bytes-1.4.0/src/buf/chain.rs +242 -0
  64. data/ext/cargo-vendor/bytes-1.4.0/src/buf/iter.rs +130 -0
  65. data/ext/cargo-vendor/bytes-1.4.0/src/buf/limit.rs +75 -0
  66. data/ext/cargo-vendor/bytes-1.4.0/src/buf/mod.rs +41 -0
  67. data/ext/cargo-vendor/bytes-1.4.0/src/buf/reader.rs +81 -0
  68. data/ext/cargo-vendor/bytes-1.4.0/src/buf/take.rs +155 -0
  69. data/ext/cargo-vendor/bytes-1.4.0/src/buf/uninit_slice.rs +213 -0
  70. data/ext/cargo-vendor/bytes-1.4.0/src/buf/vec_deque.rs +22 -0
  71. data/ext/cargo-vendor/bytes-1.4.0/src/buf/writer.rs +88 -0
  72. data/ext/cargo-vendor/bytes-1.4.0/src/bytes.rs +1304 -0
  73. data/ext/cargo-vendor/bytes-1.4.0/src/bytes_mut.rs +1812 -0
  74. data/ext/cargo-vendor/bytes-1.4.0/src/fmt/debug.rs +49 -0
  75. data/ext/cargo-vendor/bytes-1.4.0/src/fmt/hex.rs +37 -0
  76. data/ext/cargo-vendor/bytes-1.4.0/src/fmt/mod.rs +5 -0
  77. data/ext/cargo-vendor/bytes-1.4.0/src/lib.rs +117 -0
  78. data/ext/cargo-vendor/bytes-1.4.0/src/loom.rs +30 -0
  79. data/ext/cargo-vendor/bytes-1.4.0/src/serde.rs +89 -0
  80. data/ext/cargo-vendor/bytes-1.4.0/tests/test_buf.rs +120 -0
  81. data/ext/cargo-vendor/bytes-1.4.0/tests/test_buf_mut.rs +178 -0
  82. data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes.rs +1210 -0
  83. data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes_odd_alloc.rs +97 -0
  84. data/ext/cargo-vendor/bytes-1.4.0/tests/test_bytes_vec_alloc.rs +143 -0
  85. data/ext/cargo-vendor/bytes-1.4.0/tests/test_chain.rs +177 -0
  86. data/ext/cargo-vendor/bytes-1.4.0/tests/test_debug.rs +35 -0
  87. data/ext/cargo-vendor/bytes-1.4.0/tests/test_iter.rs +21 -0
  88. data/ext/cargo-vendor/bytes-1.4.0/tests/test_reader.rs +29 -0
  89. data/ext/cargo-vendor/bytes-1.4.0/tests/test_serde.rs +20 -0
  90. data/ext/cargo-vendor/bytes-1.4.0/tests/test_take.rs +32 -0
  91. data/ext/cargo-vendor/cap-fs-ext-2.0.0/.cargo-checksum.json +1 -0
  92. data/ext/cargo-vendor/cap-fs-ext-2.0.0/Cargo.toml +63 -0
  93. data/ext/cargo-vendor/cap-fs-ext-2.0.0/src/is_file_read_write.rs +61 -0
  94. data/ext/cargo-vendor/cap-primitives-2.0.0/.cargo-checksum.json +1 -0
  95. data/ext/cargo-vendor/cap-primitives-2.0.0/Cargo.toml +81 -0
  96. data/ext/cargo-vendor/cap-primitives-2.0.0/src/fs/mod.rs +125 -0
  97. data/ext/cargo-vendor/cap-primitives-2.0.0/src/net/pool.rs +284 -0
  98. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/copy_impl.rs +233 -0
  99. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/metadata_ext.rs +384 -0
  100. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/oflags.rs +98 -0
  101. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/open_unchecked.rs +71 -0
  102. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/reopen_impl.rs +18 -0
  103. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/set_permissions_impl.rs +49 -0
  104. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/stat_unchecked.rs +79 -0
  105. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/fs/times.rs +61 -0
  106. data/ext/cargo-vendor/cap-primitives-2.0.0/src/rustix/linux/fs/procfs.rs +81 -0
  107. data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/create_file_at_w.rs +273 -0
  108. data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/metadata_ext.rs +214 -0
  109. data/ext/cargo-vendor/cap-primitives-2.0.0/src/windows/fs/open_unchecked.rs +228 -0
  110. data/ext/cargo-vendor/cap-rand-2.0.0/.cargo-checksum.json +1 -0
  111. data/ext/cargo-vendor/cap-rand-2.0.0/Cargo.toml +38 -0
  112. data/ext/cargo-vendor/cap-std-2.0.0/.cargo-checksum.json +1 -0
  113. data/ext/cargo-vendor/cap-std-2.0.0/Cargo.toml +67 -0
  114. data/ext/cargo-vendor/cap-std-2.0.0/build.rs +41 -0
  115. data/ext/cargo-vendor/cap-std-2.0.0/src/fs/file.rs +614 -0
  116. data/ext/cargo-vendor/cap-std-2.0.0/src/fs_utf8/file.rs +608 -0
  117. data/ext/cargo-vendor/cap-std-2.0.0/src/lib.rs +51 -0
  118. data/ext/cargo-vendor/cap-std-2.0.0/src/net/udp_socket.rs +418 -0
  119. data/ext/cargo-vendor/cap-time-ext-2.0.0/.cargo-checksum.json +1 -0
  120. data/ext/cargo-vendor/cap-time-ext-2.0.0/Cargo.toml +42 -0
  121. data/ext/cargo-vendor/cap-time-ext-2.0.0/src/monotonic_clock.rs +62 -0
  122. data/ext/cargo-vendor/cap-time-ext-2.0.0/src/system_clock.rs +59 -0
  123. data/ext/cargo-vendor/cc-1.0.83/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/cc-1.0.83/Cargo.lock +111 -0
  125. data/ext/cargo-vendor/cc-1.0.83/Cargo.toml +43 -0
  126. data/ext/cargo-vendor/cc-1.0.83/src/lib.rs +4024 -0
  127. data/ext/cargo-vendor/cc-1.0.83/tests/test.rs +477 -0
  128. data/ext/cargo-vendor/cranelift-bforest-0.99.1/.cargo-checksum.json +1 -0
  129. data/ext/cargo-vendor/cranelift-bforest-0.99.1/Cargo.toml +31 -0
  130. data/ext/cargo-vendor/cranelift-codegen-0.99.1/.cargo-checksum.json +1 -0
  131. data/ext/cargo-vendor/cranelift-codegen-0.99.1/Cargo.toml +159 -0
  132. data/ext/cargo-vendor/cranelift-codegen-0.99.1/build.rs +391 -0
  133. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/cursor.rs +644 -0
  134. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extfunc.rs +411 -0
  135. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/function.rs +469 -0
  136. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/globalvalue.rs +155 -0
  137. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/libcall.rs +232 -0
  138. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/mod.rs +106 -0
  139. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/abi.rs +1543 -0
  140. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit.rs +3919 -0
  141. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit_tests.rs +7897 -0
  142. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/mod.rs +3039 -0
  143. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst.isle +4048 -0
  144. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower/isle.rs +873 -0
  145. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.isle +2907 -0
  146. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/mod.rs +250 -0
  147. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/call_conv.rs +119 -0
  148. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/mod.rs +436 -0
  149. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/abi.rs +985 -0
  150. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/emit.rs +3254 -0
  151. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/encode.rs +281 -0
  152. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/mod.rs +2125 -0
  153. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/vector.rs +939 -0
  154. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst.isle +2972 -0
  155. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst_vector.isle +1650 -0
  156. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower/isle.rs +620 -0
  157. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower.isle +2002 -0
  158. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/mod.rs +228 -0
  159. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/abi.rs +948 -0
  160. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst.isle +5043 -0
  161. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/lower/isle.rs +1039 -0
  162. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/lower.isle +3983 -0
  163. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/mod.rs +225 -0
  164. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/abi.rs +1204 -0
  165. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/rex.rs +588 -0
  166. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/args.rs +2193 -0
  167. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit.rs +4298 -0
  168. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit_state.rs +72 -0
  169. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit_tests.rs +5678 -0
  170. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/mod.rs +2759 -0
  171. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst.isle +5079 -0
  172. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower/isle.rs +1096 -0
  173. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.isle +4651 -0
  174. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.rs +340 -0
  175. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/mod.rs +230 -0
  176. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isle_prelude.rs +894 -0
  177. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/lib.rs +140 -0
  178. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/abi.rs +2641 -0
  179. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/buffer.rs +2365 -0
  180. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/isle.rs +837 -0
  181. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/lower.rs +1393 -0
  182. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/mod.rs +551 -0
  183. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/reg.rs +556 -0
  184. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/vcode.rs +1591 -0
  185. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/cprop.isle +200 -0
  186. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/extends.isle +41 -0
  187. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/icmp.isle +177 -0
  188. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/vector.isle +8 -0
  189. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude.isle +594 -0
  190. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude_lower.isle +1024 -0
  191. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/settings.rs +601 -0
  192. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/timing.rs +271 -0
  193. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/unionfind.rs +74 -0
  194. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/value_label.rs +32 -0
  195. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/.cargo-checksum.json +1 -0
  196. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/Cargo.toml +26 -0
  197. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/cdsl/settings.rs +429 -0
  198. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/gen_inst.rs +1785 -0
  199. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/arm64.rs +53 -0
  200. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/mod.rs +66 -0
  201. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/riscv64.rs +101 -0
  202. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/s390x.rs +39 -0
  203. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/isa/x86.rs +401 -0
  204. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/lib.rs +59 -0
  205. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/instructions.rs +3847 -0
  206. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/mod.rs +88 -0
  207. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/settings.rs +341 -0
  208. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/.cargo-checksum.json +1 -0
  209. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/Cargo.toml +22 -0
  210. data/ext/cargo-vendor/cranelift-control-0.99.1/.cargo-checksum.json +1 -0
  211. data/ext/cargo-vendor/cranelift-control-0.99.1/Cargo.toml +30 -0
  212. data/ext/cargo-vendor/cranelift-entity-0.99.1/.cargo-checksum.json +1 -0
  213. data/ext/cargo-vendor/cranelift-entity-0.99.1/Cargo.toml +35 -0
  214. data/ext/cargo-vendor/cranelift-frontend-0.99.1/.cargo-checksum.json +1 -0
  215. data/ext/cargo-vendor/cranelift-frontend-0.99.1/Cargo.toml +53 -0
  216. data/ext/cargo-vendor/cranelift-frontend-0.99.1/src/lib.rs +204 -0
  217. data/ext/cargo-vendor/cranelift-isle-0.99.1/.cargo-checksum.json +1 -0
  218. data/ext/cargo-vendor/cranelift-isle-0.99.1/Cargo.toml +37 -0
  219. data/ext/cargo-vendor/cranelift-native-0.99.1/.cargo-checksum.json +1 -0
  220. data/ext/cargo-vendor/cranelift-native-0.99.1/Cargo.toml +38 -0
  221. data/ext/cargo-vendor/cranelift-native-0.99.1/src/lib.rs +204 -0
  222. data/ext/cargo-vendor/cranelift-wasm-0.99.1/.cargo-checksum.json +1 -0
  223. data/ext/cargo-vendor/cranelift-wasm-0.99.1/Cargo.toml +85 -0
  224. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/code_translator.rs +3608 -0
  225. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/dummy.rs +942 -0
  226. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/spec.rs +913 -0
  227. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/func_translator.rs +431 -0
  228. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/sections_translator.rs +420 -0
  229. data/ext/cargo-vendor/cranelift-wasm-0.99.1/tests/wasm_testsuite.rs +153 -0
  230. data/ext/cargo-vendor/fs-set-times-0.20.0/.cargo-checksum.json +1 -0
  231. data/ext/cargo-vendor/fs-set-times-0.20.0/Cargo.toml +45 -0
  232. data/ext/cargo-vendor/futures-0.3.28/.cargo-checksum.json +1 -0
  233. data/ext/cargo-vendor/futures-0.3.28/Cargo.toml +147 -0
  234. data/ext/cargo-vendor/futures-0.3.28/LICENSE-APACHE +202 -0
  235. data/ext/cargo-vendor/futures-0.3.28/LICENSE-MIT +26 -0
  236. data/ext/cargo-vendor/futures-0.3.28/README.md +61 -0
  237. data/ext/cargo-vendor/futures-0.3.28/src/lib.rs +260 -0
  238. data/ext/cargo-vendor/futures-0.3.28/tests/_require_features.rs +13 -0
  239. data/ext/cargo-vendor/futures-0.3.28/tests/async_await_macros.rs +393 -0
  240. data/ext/cargo-vendor/futures-0.3.28/tests/auto_traits.rs +1891 -0
  241. data/ext/cargo-vendor/futures-0.3.28/tests/bilock.rs +104 -0
  242. data/ext/cargo-vendor/futures-0.3.28/tests/compat.rs +16 -0
  243. data/ext/cargo-vendor/futures-0.3.28/tests/eager_drop.rs +121 -0
  244. data/ext/cargo-vendor/futures-0.3.28/tests/eventual.rs +179 -0
  245. data/ext/cargo-vendor/futures-0.3.28/tests/future_abortable.rs +44 -0
  246. data/ext/cargo-vendor/futures-0.3.28/tests/future_basic_combinators.rs +104 -0
  247. data/ext/cargo-vendor/futures-0.3.28/tests/future_fuse.rs +12 -0
  248. data/ext/cargo-vendor/futures-0.3.28/tests/future_inspect.rs +16 -0
  249. data/ext/cargo-vendor/futures-0.3.28/tests/future_join.rs +32 -0
  250. data/ext/cargo-vendor/futures-0.3.28/tests/future_join_all.rs +41 -0
  251. data/ext/cargo-vendor/futures-0.3.28/tests/future_obj.rs +33 -0
  252. data/ext/cargo-vendor/futures-0.3.28/tests/future_select_all.rs +25 -0
  253. data/ext/cargo-vendor/futures-0.3.28/tests/future_select_ok.rs +30 -0
  254. data/ext/cargo-vendor/futures-0.3.28/tests/future_shared.rs +273 -0
  255. data/ext/cargo-vendor/futures-0.3.28/tests/future_try_flatten_stream.rs +83 -0
  256. data/ext/cargo-vendor/futures-0.3.28/tests/future_try_join_all.rs +46 -0
  257. data/ext/cargo-vendor/futures-0.3.28/tests/io_buf_reader.rs +432 -0
  258. data/ext/cargo-vendor/futures-0.3.28/tests/io_buf_writer.rs +239 -0
  259. data/ext/cargo-vendor/futures-0.3.28/tests/io_cursor.rs +30 -0
  260. data/ext/cargo-vendor/futures-0.3.28/tests/io_line_writer.rs +73 -0
  261. data/ext/cargo-vendor/futures-0.3.28/tests/io_lines.rs +60 -0
  262. data/ext/cargo-vendor/futures-0.3.28/tests/io_read.rs +64 -0
  263. data/ext/cargo-vendor/futures-0.3.28/tests/io_read_exact.rs +17 -0
  264. data/ext/cargo-vendor/futures-0.3.28/tests/io_read_line.rs +58 -0
  265. data/ext/cargo-vendor/futures-0.3.28/tests/io_read_to_end.rs +65 -0
  266. data/ext/cargo-vendor/futures-0.3.28/tests/io_read_to_string.rs +44 -0
  267. data/ext/cargo-vendor/futures-0.3.28/tests/io_read_until.rs +60 -0
  268. data/ext/cargo-vendor/futures-0.3.28/tests/io_window.rs +30 -0
  269. data/ext/cargo-vendor/futures-0.3.28/tests/io_write.rs +65 -0
  270. data/ext/cargo-vendor/futures-0.3.28/tests/lock_mutex.rs +69 -0
  271. data/ext/cargo-vendor/futures-0.3.28/tests/macro_comma_support.rs +43 -0
  272. data/ext/cargo-vendor/futures-0.3.28/tests/object_safety.rs +49 -0
  273. data/ext/cargo-vendor/futures-0.3.28/tests/oneshot.rs +78 -0
  274. data/ext/cargo-vendor/futures-0.3.28/tests/ready_queue.rs +148 -0
  275. data/ext/cargo-vendor/futures-0.3.28/tests/recurse.rs +25 -0
  276. data/ext/cargo-vendor/futures-0.3.28/tests/sink.rs +554 -0
  277. data/ext/cargo-vendor/futures-0.3.28/tests/sink_fanout.rs +24 -0
  278. data/ext/cargo-vendor/futures-0.3.28/tests/stream.rs +537 -0
  279. data/ext/cargo-vendor/futures-0.3.28/tests/stream_abortable.rs +46 -0
  280. data/ext/cargo-vendor/futures-0.3.28/tests/stream_buffer_unordered.rs +73 -0
  281. data/ext/cargo-vendor/futures-0.3.28/tests/stream_catch_unwind.rs +27 -0
  282. data/ext/cargo-vendor/futures-0.3.28/tests/stream_futures_ordered.rs +172 -0
  283. data/ext/cargo-vendor/futures-0.3.28/tests/stream_futures_unordered.rs +383 -0
  284. data/ext/cargo-vendor/futures-0.3.28/tests/stream_into_async_read.rs +94 -0
  285. data/ext/cargo-vendor/futures-0.3.28/tests/stream_peekable.rs +58 -0
  286. data/ext/cargo-vendor/futures-0.3.28/tests/stream_select_all.rs +197 -0
  287. data/ext/cargo-vendor/futures-0.3.28/tests/stream_select_next_some.rs +86 -0
  288. data/ext/cargo-vendor/futures-0.3.28/tests/stream_split.rs +57 -0
  289. data/ext/cargo-vendor/futures-0.3.28/tests/stream_try_stream.rs +134 -0
  290. data/ext/cargo-vendor/futures-0.3.28/tests/stream_unfold.rs +32 -0
  291. data/ext/cargo-vendor/futures-0.3.28/tests/task_arc_wake.rs +79 -0
  292. data/ext/cargo-vendor/futures-0.3.28/tests/task_atomic_waker.rs +48 -0
  293. data/ext/cargo-vendor/futures-0.3.28/tests/test_macro.rs +20 -0
  294. data/ext/cargo-vendor/futures-0.3.28/tests/try_join.rs +35 -0
  295. data/ext/cargo-vendor/futures-0.3.28/tests_disabled/all.rs +400 -0
  296. data/ext/cargo-vendor/futures-0.3.28/tests_disabled/stream.rs +368 -0
  297. data/ext/cargo-vendor/futures-channel-0.3.28/.cargo-checksum.json +1 -0
  298. data/ext/cargo-vendor/futures-channel-0.3.28/Cargo.toml +52 -0
  299. data/ext/cargo-vendor/futures-channel-0.3.28/LICENSE-APACHE +202 -0
  300. data/ext/cargo-vendor/futures-channel-0.3.28/LICENSE-MIT +26 -0
  301. data/ext/cargo-vendor/futures-channel-0.3.28/README.md +23 -0
  302. data/ext/cargo-vendor/futures-channel-0.3.28/benches/sync_mpsc.rs +135 -0
  303. data/ext/cargo-vendor/futures-channel-0.3.28/build.rs +41 -0
  304. data/ext/cargo-vendor/futures-channel-0.3.28/no_atomic_cas.rs +17 -0
  305. data/ext/cargo-vendor/futures-channel-0.3.28/src/lib.rs +42 -0
  306. data/ext/cargo-vendor/futures-channel-0.3.28/src/lock.rs +102 -0
  307. data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/mod.rs +1359 -0
  308. data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/queue.rs +174 -0
  309. data/ext/cargo-vendor/futures-channel-0.3.28/src/mpsc/sink_impl.rs +73 -0
  310. data/ext/cargo-vendor/futures-channel-0.3.28/src/oneshot.rs +488 -0
  311. data/ext/cargo-vendor/futures-channel-0.3.28/tests/channel.rs +66 -0
  312. data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc-close.rs +299 -0
  313. data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc-size_hint.rs +40 -0
  314. data/ext/cargo-vendor/futures-channel-0.3.28/tests/mpsc.rs +634 -0
  315. data/ext/cargo-vendor/futures-channel-0.3.28/tests/oneshot.rs +256 -0
  316. data/ext/cargo-vendor/futures-core-0.3.28/.cargo-checksum.json +1 -0
  317. data/ext/cargo-vendor/futures-core-0.3.28/Cargo.toml +44 -0
  318. data/ext/cargo-vendor/futures-core-0.3.28/LICENSE-APACHE +202 -0
  319. data/ext/cargo-vendor/futures-core-0.3.28/LICENSE-MIT +26 -0
  320. data/ext/cargo-vendor/futures-core-0.3.28/README.md +23 -0
  321. data/ext/cargo-vendor/futures-core-0.3.28/build.rs +41 -0
  322. data/ext/cargo-vendor/futures-core-0.3.28/no_atomic_cas.rs +17 -0
  323. data/ext/cargo-vendor/futures-core-0.3.28/src/future.rs +103 -0
  324. data/ext/cargo-vendor/futures-core-0.3.28/src/lib.rs +27 -0
  325. data/ext/cargo-vendor/futures-core-0.3.28/src/stream.rs +235 -0
  326. data/ext/cargo-vendor/futures-core-0.3.28/src/task/__internal/atomic_waker.rs +421 -0
  327. data/ext/cargo-vendor/futures-core-0.3.28/src/task/__internal/mod.rs +4 -0
  328. data/ext/cargo-vendor/futures-core-0.3.28/src/task/mod.rs +10 -0
  329. data/ext/cargo-vendor/futures-core-0.3.28/src/task/poll.rs +12 -0
  330. data/ext/cargo-vendor/futures-io-0.3.28/.cargo-checksum.json +1 -0
  331. data/ext/cargo-vendor/futures-io-0.3.28/Cargo.toml +37 -0
  332. data/ext/cargo-vendor/futures-io-0.3.28/LICENSE-APACHE +202 -0
  333. data/ext/cargo-vendor/futures-io-0.3.28/LICENSE-MIT +26 -0
  334. data/ext/cargo-vendor/futures-io-0.3.28/README.md +23 -0
  335. data/ext/cargo-vendor/futures-io-0.3.28/src/lib.rs +558 -0
  336. data/ext/cargo-vendor/futures-sink-0.3.28/.cargo-checksum.json +1 -0
  337. data/ext/cargo-vendor/futures-sink-0.3.28/Cargo.toml +33 -0
  338. data/ext/cargo-vendor/futures-sink-0.3.28/LICENSE-APACHE +202 -0
  339. data/ext/cargo-vendor/futures-sink-0.3.28/LICENSE-MIT +26 -0
  340. data/ext/cargo-vendor/futures-sink-0.3.28/README.md +23 -0
  341. data/ext/cargo-vendor/futures-sink-0.3.28/src/lib.rs +240 -0
  342. data/ext/cargo-vendor/futures-task-0.3.28/.cargo-checksum.json +1 -0
  343. data/ext/cargo-vendor/futures-task-0.3.28/Cargo.toml +37 -0
  344. data/ext/cargo-vendor/futures-task-0.3.28/LICENSE-APACHE +202 -0
  345. data/ext/cargo-vendor/futures-task-0.3.28/LICENSE-MIT +26 -0
  346. data/ext/cargo-vendor/futures-task-0.3.28/README.md +23 -0
  347. data/ext/cargo-vendor/futures-task-0.3.28/build.rs +41 -0
  348. data/ext/cargo-vendor/futures-task-0.3.28/no_atomic_cas.rs +17 -0
  349. data/ext/cargo-vendor/futures-task-0.3.28/src/arc_wake.rs +49 -0
  350. data/ext/cargo-vendor/futures-task-0.3.28/src/future_obj.rs +335 -0
  351. data/ext/cargo-vendor/futures-task-0.3.28/src/lib.rs +50 -0
  352. data/ext/cargo-vendor/futures-task-0.3.28/src/noop_waker.rs +63 -0
  353. data/ext/cargo-vendor/futures-task-0.3.28/src/spawn.rs +192 -0
  354. data/ext/cargo-vendor/futures-task-0.3.28/src/waker.rs +59 -0
  355. data/ext/cargo-vendor/futures-task-0.3.28/src/waker_ref.rs +66 -0
  356. data/ext/cargo-vendor/futures-util-0.3.28/.cargo-checksum.json +1 -0
  357. data/ext/cargo-vendor/futures-util-0.3.28/Cargo.toml +135 -0
  358. data/ext/cargo-vendor/futures-util-0.3.28/LICENSE-APACHE +202 -0
  359. data/ext/cargo-vendor/futures-util-0.3.28/LICENSE-MIT +26 -0
  360. data/ext/cargo-vendor/futures-util-0.3.28/README.md +23 -0
  361. data/ext/cargo-vendor/futures-util-0.3.28/benches/bilock.rs +68 -0
  362. data/ext/cargo-vendor/futures-util-0.3.28/benches/flatten_unordered.rs +58 -0
  363. data/ext/cargo-vendor/futures-util-0.3.28/benches/futures_unordered.rs +43 -0
  364. data/ext/cargo-vendor/futures-util-0.3.28/benches/select.rs +35 -0
  365. data/ext/cargo-vendor/futures-util-0.3.28/build.rs +41 -0
  366. data/ext/cargo-vendor/futures-util-0.3.28/no_atomic_cas.rs +17 -0
  367. data/ext/cargo-vendor/futures-util-0.3.28/src/abortable.rs +209 -0
  368. data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/join_mod.rs +110 -0
  369. data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/mod.rs +58 -0
  370. data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/pending.rs +43 -0
  371. data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/poll.rs +39 -0
  372. data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/random.rs +54 -0
  373. data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/select_mod.rs +336 -0
  374. data/ext/cargo-vendor/futures-util-0.3.28/src/async_await/stream_select_mod.rs +40 -0
  375. data/ext/cargo-vendor/futures-util-0.3.28/src/compat/compat01as03.rs +454 -0
  376. data/ext/cargo-vendor/futures-util-0.3.28/src/compat/compat03as01.rs +265 -0
  377. data/ext/cargo-vendor/futures-util-0.3.28/src/compat/executor.rs +86 -0
  378. data/ext/cargo-vendor/futures-util-0.3.28/src/compat/mod.rs +22 -0
  379. data/ext/cargo-vendor/futures-util-0.3.28/src/fns.rs +372 -0
  380. data/ext/cargo-vendor/futures-util-0.3.28/src/future/abortable.rs +19 -0
  381. data/ext/cargo-vendor/futures-util-0.3.28/src/future/either.rs +317 -0
  382. data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/catch_unwind.rs +38 -0
  383. data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/flatten.rs +153 -0
  384. data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/fuse.rs +91 -0
  385. data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/map.rs +66 -0
  386. data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/mod.rs +610 -0
  387. data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/remote_handle.rs +126 -0
  388. data/ext/cargo-vendor/futures-util-0.3.28/src/future/future/shared.rs +413 -0
  389. data/ext/cargo-vendor/futures-util-0.3.28/src/future/join.rs +217 -0
  390. data/ext/cargo-vendor/futures-util-0.3.28/src/future/join_all.rs +166 -0
  391. data/ext/cargo-vendor/futures-util-0.3.28/src/future/lazy.rs +60 -0
  392. data/ext/cargo-vendor/futures-util-0.3.28/src/future/maybe_done.rs +104 -0
  393. data/ext/cargo-vendor/futures-util-0.3.28/src/future/mod.rs +131 -0
  394. data/ext/cargo-vendor/futures-util-0.3.28/src/future/option.rs +64 -0
  395. data/ext/cargo-vendor/futures-util-0.3.28/src/future/pending.rs +55 -0
  396. data/ext/cargo-vendor/futures-util-0.3.28/src/future/poll_fn.rs +58 -0
  397. data/ext/cargo-vendor/futures-util-0.3.28/src/future/poll_immediate.rs +126 -0
  398. data/ext/cargo-vendor/futures-util-0.3.28/src/future/ready.rs +82 -0
  399. data/ext/cargo-vendor/futures-util-0.3.28/src/future/select.rs +134 -0
  400. data/ext/cargo-vendor/futures-util-0.3.28/src/future/select_all.rs +75 -0
  401. data/ext/cargo-vendor/futures-util-0.3.28/src/future/select_ok.rs +85 -0
  402. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/into_future.rs +36 -0
  403. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/mod.rs +625 -0
  404. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/try_flatten.rs +162 -0
  405. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_future/try_flatten_err.rs +62 -0
  406. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_join.rs +256 -0
  407. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_join_all.rs +200 -0
  408. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_maybe_done.rs +92 -0
  409. data/ext/cargo-vendor/futures-util-0.3.28/src/future/try_select.rs +85 -0
  410. data/ext/cargo-vendor/futures-util-0.3.28/src/io/allow_std.rs +200 -0
  411. data/ext/cargo-vendor/futures-util-0.3.28/src/io/buf_reader.rs +263 -0
  412. data/ext/cargo-vendor/futures-util-0.3.28/src/io/buf_writer.rs +224 -0
  413. data/ext/cargo-vendor/futures-util-0.3.28/src/io/chain.rs +142 -0
  414. data/ext/cargo-vendor/futures-util-0.3.28/src/io/close.rs +28 -0
  415. data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy.rs +58 -0
  416. data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy_buf.rs +78 -0
  417. data/ext/cargo-vendor/futures-util-0.3.28/src/io/copy_buf_abortable.rs +124 -0
  418. data/ext/cargo-vendor/futures-util-0.3.28/src/io/cursor.rs +232 -0
  419. data/ext/cargo-vendor/futures-util-0.3.28/src/io/empty.rs +59 -0
  420. data/ext/cargo-vendor/futures-util-0.3.28/src/io/fill_buf.rs +51 -0
  421. data/ext/cargo-vendor/futures-util-0.3.28/src/io/flush.rs +31 -0
  422. data/ext/cargo-vendor/futures-util-0.3.28/src/io/into_sink.rs +82 -0
  423. data/ext/cargo-vendor/futures-util-0.3.28/src/io/line_writer.rs +155 -0
  424. data/ext/cargo-vendor/futures-util-0.3.28/src/io/lines.rs +47 -0
  425. data/ext/cargo-vendor/futures-util-0.3.28/src/io/mod.rs +841 -0
  426. data/ext/cargo-vendor/futures-util-0.3.28/src/io/read.rs +30 -0
  427. data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_exact.rs +42 -0
  428. data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_line.rs +57 -0
  429. data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_to_end.rs +91 -0
  430. data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_to_string.rs +59 -0
  431. data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_until.rs +60 -0
  432. data/ext/cargo-vendor/futures-util-0.3.28/src/io/read_vectored.rs +30 -0
  433. data/ext/cargo-vendor/futures-util-0.3.28/src/io/repeat.rs +66 -0
  434. data/ext/cargo-vendor/futures-util-0.3.28/src/io/seek.rs +30 -0
  435. data/ext/cargo-vendor/futures-util-0.3.28/src/io/sink.rs +67 -0
  436. data/ext/cargo-vendor/futures-util-0.3.28/src/io/split.rs +115 -0
  437. data/ext/cargo-vendor/futures-util-0.3.28/src/io/take.rs +125 -0
  438. data/ext/cargo-vendor/futures-util-0.3.28/src/io/window.rs +104 -0
  439. data/ext/cargo-vendor/futures-util-0.3.28/src/io/write.rs +30 -0
  440. data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_all.rs +43 -0
  441. data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_all_vectored.rs +193 -0
  442. data/ext/cargo-vendor/futures-util-0.3.28/src/io/write_vectored.rs +30 -0
  443. data/ext/cargo-vendor/futures-util-0.3.28/src/lib.rs +337 -0
  444. data/ext/cargo-vendor/futures-util-0.3.28/src/lock/bilock.rs +293 -0
  445. data/ext/cargo-vendor/futures-util-0.3.28/src/lock/mod.rs +27 -0
  446. data/ext/cargo-vendor/futures-util-0.3.28/src/lock/mutex.rs +551 -0
  447. data/ext/cargo-vendor/futures-util-0.3.28/src/never.rs +18 -0
  448. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/buffer.rs +105 -0
  449. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/close.rs +32 -0
  450. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/drain.rs +59 -0
  451. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/err_into.rs +57 -0
  452. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/fanout.rs +111 -0
  453. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/feed.rs +43 -0
  454. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/flush.rs +36 -0
  455. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/map_err.rs +65 -0
  456. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/mod.rs +344 -0
  457. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/send.rs +41 -0
  458. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/send_all.rs +100 -0
  459. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/unfold.rs +89 -0
  460. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/with.rs +134 -0
  461. data/ext/cargo-vendor/futures-util-0.3.28/src/sink/with_flat_map.rs +127 -0
  462. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/abortable.rs +19 -0
  463. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/empty.rs +45 -0
  464. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_ordered.rs +244 -0
  465. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/abort.rs +12 -0
  466. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/iter.rs +172 -0
  467. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/mod.rs +661 -0
  468. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/ready_to_run_queue.rs +122 -0
  469. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/futures_unordered/task.rs +125 -0
  470. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/iter.rs +49 -0
  471. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/mod.rs +148 -0
  472. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/once.rs +67 -0
  473. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/pending.rs +45 -0
  474. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/poll_fn.rs +57 -0
  475. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/poll_immediate.rs +80 -0
  476. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/repeat.rs +58 -0
  477. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/repeat_with.rs +93 -0
  478. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select.rs +117 -0
  479. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select_all.rs +249 -0
  480. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/select_with_strategy.rs +304 -0
  481. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/all.rs +92 -0
  482. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/any.rs +92 -0
  483. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/buffer_unordered.rs +120 -0
  484. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/buffered.rs +118 -0
  485. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/catch_unwind.rs +61 -0
  486. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/chain.rs +76 -0
  487. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/chunks.rs +103 -0
  488. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/collect.rs +56 -0
  489. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/concat.rs +62 -0
  490. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/count.rs +53 -0
  491. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/cycle.rs +68 -0
  492. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/enumerate.rs +64 -0
  493. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/filter.rs +117 -0
  494. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/filter_map.rs +111 -0
  495. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/flatten.rs +73 -0
  496. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/flatten_unordered.rs +536 -0
  497. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/fold.rs +88 -0
  498. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/for_each.rs +78 -0
  499. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/for_each_concurrent.rs +119 -0
  500. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/forward.rs +75 -0
  501. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/fuse.rs +75 -0
  502. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/into_future.rs +90 -0
  503. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/map.rs +77 -0
  504. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/mod.rs +1691 -0
  505. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/next.rs +34 -0
  506. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/peek.rs +433 -0
  507. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/ready_chunks.rs +93 -0
  508. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/scan.rs +128 -0
  509. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/select_next_some.rs +42 -0
  510. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/skip.rs +70 -0
  511. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/skip_while.rs +124 -0
  512. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/split.rs +144 -0
  513. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take.rs +86 -0
  514. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take_until.rs +170 -0
  515. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/take_while.rs +124 -0
  516. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/then.rs +101 -0
  517. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/unzip.rs +63 -0
  518. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/stream/zip.rs +128 -0
  519. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/and_then.rs +105 -0
  520. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/into_async_read.rs +166 -0
  521. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/into_stream.rs +52 -0
  522. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/mod.rs +1130 -0
  523. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/or_else.rs +109 -0
  524. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_buffer_unordered.rs +86 -0
  525. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_buffered.rs +87 -0
  526. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_chunks.rs +132 -0
  527. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_collect.rs +52 -0
  528. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_concat.rs +51 -0
  529. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_filter.rs +112 -0
  530. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_filter_map.rs +106 -0
  531. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_flatten.rs +84 -0
  532. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_flatten_unordered.rs +176 -0
  533. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_fold.rs +93 -0
  534. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_for_each.rs +68 -0
  535. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_for_each_concurrent.rs +133 -0
  536. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_next.rs +34 -0
  537. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_skip_while.rs +120 -0
  538. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_take_while.rs +129 -0
  539. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/try_stream/try_unfold.rs +122 -0
  540. data/ext/cargo-vendor/futures-util-0.3.28/src/stream/unfold.rs +119 -0
  541. data/ext/cargo-vendor/futures-util-0.3.28/src/task/mod.rs +37 -0
  542. data/ext/cargo-vendor/futures-util-0.3.28/src/task/spawn.rs +169 -0
  543. data/ext/cargo-vendor/futures-util-0.3.28/src/unfold_state.rs +39 -0
  544. data/ext/cargo-vendor/gimli-0.28.0/.cargo-checksum.json +1 -0
  545. data/ext/cargo-vendor/gimli-0.28.0/CHANGELOG.md +987 -0
  546. data/ext/cargo-vendor/gimli-0.28.0/Cargo.toml +109 -0
  547. data/ext/cargo-vendor/gimli-0.28.0/LICENSE-MIT +25 -0
  548. data/ext/cargo-vendor/gimli-0.28.0/README.md +81 -0
  549. data/ext/cargo-vendor/gimli-0.28.0/src/arch.rs +768 -0
  550. data/ext/cargo-vendor/gimli-0.28.0/src/common.rs +391 -0
  551. data/ext/cargo-vendor/gimli-0.28.0/src/constants.rs +1435 -0
  552. data/ext/cargo-vendor/gimli-0.28.0/src/endianity.rs +256 -0
  553. data/ext/cargo-vendor/gimli-0.28.0/src/leb128.rs +612 -0
  554. data/ext/cargo-vendor/gimli-0.28.0/src/lib.rs +79 -0
  555. data/ext/cargo-vendor/gimli-0.28.0/src/read/abbrev.rs +1089 -0
  556. data/ext/cargo-vendor/gimli-0.28.0/src/read/addr.rs +128 -0
  557. data/ext/cargo-vendor/gimli-0.28.0/src/read/aranges.rs +660 -0
  558. data/ext/cargo-vendor/gimli-0.28.0/src/read/cfi.rs +7712 -0
  559. data/ext/cargo-vendor/gimli-0.28.0/src/read/dwarf.rs +1184 -0
  560. data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_reader.rs +639 -0
  561. data/ext/cargo-vendor/gimli-0.28.0/src/read/endian_slice.rs +321 -0
  562. data/ext/cargo-vendor/gimli-0.28.0/src/read/index.rs +535 -0
  563. data/ext/cargo-vendor/gimli-0.28.0/src/read/lazy.rs +116 -0
  564. data/ext/cargo-vendor/gimli-0.28.0/src/read/line.rs +3130 -0
  565. data/ext/cargo-vendor/gimli-0.28.0/src/read/lists.rs +68 -0
  566. data/ext/cargo-vendor/gimli-0.28.0/src/read/loclists.rs +1627 -0
  567. data/ext/cargo-vendor/gimli-0.28.0/src/read/lookup.rs +202 -0
  568. data/ext/cargo-vendor/gimli-0.28.0/src/read/mod.rs +830 -0
  569. data/ext/cargo-vendor/gimli-0.28.0/src/read/op.rs +4119 -0
  570. data/ext/cargo-vendor/gimli-0.28.0/src/read/pubnames.rs +141 -0
  571. data/ext/cargo-vendor/gimli-0.28.0/src/read/pubtypes.rs +141 -0
  572. data/ext/cargo-vendor/gimli-0.28.0/src/read/reader.rs +502 -0
  573. data/ext/cargo-vendor/gimli-0.28.0/src/read/rnglists.rs +1458 -0
  574. data/ext/cargo-vendor/gimli-0.28.0/src/read/str.rs +321 -0
  575. data/ext/cargo-vendor/gimli-0.28.0/src/read/unit.rs +6139 -0
  576. data/ext/cargo-vendor/gimli-0.28.0/src/read/util.rs +251 -0
  577. data/ext/cargo-vendor/gimli-0.28.0/src/read/value.rs +1621 -0
  578. data/ext/cargo-vendor/gimli-0.28.0/src/test_util.rs +53 -0
  579. data/ext/cargo-vendor/gimli-0.28.0/src/write/abbrev.rs +188 -0
  580. data/ext/cargo-vendor/gimli-0.28.0/src/write/cfi.rs +1050 -0
  581. data/ext/cargo-vendor/gimli-0.28.0/src/write/dwarf.rs +138 -0
  582. data/ext/cargo-vendor/gimli-0.28.0/src/write/endian_vec.rs +117 -0
  583. data/ext/cargo-vendor/gimli-0.28.0/src/write/line.rs +1957 -0
  584. data/ext/cargo-vendor/gimli-0.28.0/src/write/loc.rs +550 -0
  585. data/ext/cargo-vendor/gimli-0.28.0/src/write/mod.rs +425 -0
  586. data/ext/cargo-vendor/gimli-0.28.0/src/write/op.rs +1618 -0
  587. data/ext/cargo-vendor/gimli-0.28.0/src/write/range.rs +416 -0
  588. data/ext/cargo-vendor/gimli-0.28.0/src/write/section.rs +172 -0
  589. data/ext/cargo-vendor/gimli-0.28.0/src/write/str.rs +172 -0
  590. data/ext/cargo-vendor/gimli-0.28.0/src/write/unit.rs +3152 -0
  591. data/ext/cargo-vendor/gimli-0.28.0/src/write/writer.rs +494 -0
  592. data/ext/cargo-vendor/io-extras-0.18.0/.cargo-checksum.json +1 -0
  593. data/ext/cargo-vendor/io-extras-0.18.0/Cargo.toml +94 -0
  594. data/ext/cargo-vendor/io-extras-0.18.0/README.md +33 -0
  595. data/ext/cargo-vendor/io-extras-0.18.0/build.rs +43 -0
  596. data/ext/cargo-vendor/io-extras-0.18.0/src/os/windows/stdio.rs +328 -0
  597. data/ext/cargo-vendor/log-0.4.20/.cargo-checksum.json +1 -0
  598. data/ext/cargo-vendor/log-0.4.20/CHANGELOG.md +273 -0
  599. data/ext/cargo-vendor/log-0.4.20/Cargo.toml +118 -0
  600. data/ext/cargo-vendor/log-0.4.20/README.md +121 -0
  601. data/ext/cargo-vendor/log-0.4.20/src/__private_api.rs +57 -0
  602. data/ext/cargo-vendor/log-0.4.20/src/lib.rs +1827 -0
  603. data/ext/cargo-vendor/log-0.4.20/src/macros.rs +240 -0
  604. data/ext/cargo-vendor/object-0.32.0/.cargo-checksum.json +1 -0
  605. data/ext/cargo-vendor/object-0.32.0/CHANGELOG.md +679 -0
  606. data/ext/cargo-vendor/object-0.32.0/Cargo.toml +163 -0
  607. data/ext/cargo-vendor/object-0.32.0/README.md +58 -0
  608. data/ext/cargo-vendor/object-0.32.0/clippy.toml +1 -0
  609. data/ext/cargo-vendor/object-0.32.0/src/common.rs +501 -0
  610. data/ext/cargo-vendor/object-0.32.0/src/elf.rs +6156 -0
  611. data/ext/cargo-vendor/object-0.32.0/src/endian.rs +831 -0
  612. data/ext/cargo-vendor/object-0.32.0/src/lib.rs +116 -0
  613. data/ext/cargo-vendor/object-0.32.0/src/macho.rs +3307 -0
  614. data/ext/cargo-vendor/object-0.32.0/src/pe.rs +3054 -0
  615. data/ext/cargo-vendor/object-0.32.0/src/read/any.rs +1314 -0
  616. data/ext/cargo-vendor/object-0.32.0/src/read/coff/comdat.rs +207 -0
  617. data/ext/cargo-vendor/object-0.32.0/src/read/coff/file.rs +364 -0
  618. data/ext/cargo-vendor/object-0.32.0/src/read/coff/import.rs +209 -0
  619. data/ext/cargo-vendor/object-0.32.0/src/read/coff/mod.rs +21 -0
  620. data/ext/cargo-vendor/object-0.32.0/src/read/coff/relocation.rs +104 -0
  621. data/ext/cargo-vendor/object-0.32.0/src/read/coff/section.rs +574 -0
  622. data/ext/cargo-vendor/object-0.32.0/src/read/coff/symbol.rs +626 -0
  623. data/ext/cargo-vendor/object-0.32.0/src/read/elf/attributes.rs +303 -0
  624. data/ext/cargo-vendor/object-0.32.0/src/read/elf/comdat.rs +160 -0
  625. data/ext/cargo-vendor/object-0.32.0/src/read/elf/file.rs +911 -0
  626. data/ext/cargo-vendor/object-0.32.0/src/read/elf/hash.rs +220 -0
  627. data/ext/cargo-vendor/object-0.32.0/src/read/elf/mod.rs +42 -0
  628. data/ext/cargo-vendor/object-0.32.0/src/read/elf/note.rs +266 -0
  629. data/ext/cargo-vendor/object-0.32.0/src/read/elf/relocation.rs +576 -0
  630. data/ext/cargo-vendor/object-0.32.0/src/read/elf/section.rs +1146 -0
  631. data/ext/cargo-vendor/object-0.32.0/src/read/elf/segment.rs +332 -0
  632. data/ext/cargo-vendor/object-0.32.0/src/read/elf/symbol.rs +585 -0
  633. data/ext/cargo-vendor/object-0.32.0/src/read/elf/version.rs +421 -0
  634. data/ext/cargo-vendor/object-0.32.0/src/read/macho/dyld_cache.rs +343 -0
  635. data/ext/cargo-vendor/object-0.32.0/src/read/macho/file.rs +731 -0
  636. data/ext/cargo-vendor/object-0.32.0/src/read/macho/load_command.rs +373 -0
  637. data/ext/cargo-vendor/object-0.32.0/src/read/macho/relocation.rs +127 -0
  638. data/ext/cargo-vendor/object-0.32.0/src/read/macho/section.rs +387 -0
  639. data/ext/cargo-vendor/object-0.32.0/src/read/macho/segment.rs +301 -0
  640. data/ext/cargo-vendor/object-0.32.0/src/read/macho/symbol.rs +488 -0
  641. data/ext/cargo-vendor/object-0.32.0/src/read/mod.rs +767 -0
  642. data/ext/cargo-vendor/object-0.32.0/src/read/pe/data_directory.rs +211 -0
  643. data/ext/cargo-vendor/object-0.32.0/src/read/pe/file.rs +1029 -0
  644. data/ext/cargo-vendor/object-0.32.0/src/read/pe/resource.rs +207 -0
  645. data/ext/cargo-vendor/object-0.32.0/src/read/pe/rich.rs +91 -0
  646. data/ext/cargo-vendor/object-0.32.0/src/read/pe/section.rs +434 -0
  647. data/ext/cargo-vendor/object-0.32.0/src/read/read_cache.rs +182 -0
  648. data/ext/cargo-vendor/object-0.32.0/src/read/read_ref.rs +137 -0
  649. data/ext/cargo-vendor/object-0.32.0/src/read/traits.rs +469 -0
  650. data/ext/cargo-vendor/object-0.32.0/src/read/util.rs +425 -0
  651. data/ext/cargo-vendor/object-0.32.0/src/read/wasm.rs +951 -0
  652. data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/comdat.rs +129 -0
  653. data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/relocation.rs +127 -0
  654. data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/section.rs +427 -0
  655. data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/segment.rs +113 -0
  656. data/ext/cargo-vendor/object-0.32.0/src/read/xcoff/symbol.rs +695 -0
  657. data/ext/cargo-vendor/object-0.32.0/src/write/coff.rs +725 -0
  658. data/ext/cargo-vendor/object-0.32.0/src/write/elf/object.rs +903 -0
  659. data/ext/cargo-vendor/object-0.32.0/src/write/elf/writer.rs +2143 -0
  660. data/ext/cargo-vendor/object-0.32.0/src/write/macho.rs +966 -0
  661. data/ext/cargo-vendor/object-0.32.0/src/write/mod.rs +943 -0
  662. data/ext/cargo-vendor/object-0.32.0/src/write/string.rs +159 -0
  663. data/ext/cargo-vendor/object-0.32.0/src/write/util.rs +260 -0
  664. data/ext/cargo-vendor/object-0.32.0/src/write/xcoff.rs +556 -0
  665. data/ext/cargo-vendor/object-0.32.0/src/xcoff.rs +893 -0
  666. data/ext/cargo-vendor/object-0.32.0/tests/read/coff.rs +23 -0
  667. data/ext/cargo-vendor/object-0.32.0/tests/round_trip/elf.rs +289 -0
  668. data/ext/cargo-vendor/object-0.32.0/tests/round_trip/mod.rs +637 -0
  669. data/ext/cargo-vendor/pulldown-cmark-0.9.3/.cargo-checksum.json +1 -0
  670. data/ext/cargo-vendor/pulldown-cmark-0.9.3/CONTRIBUTING.md +21 -0
  671. data/ext/cargo-vendor/pulldown-cmark-0.9.3/Cargo.lock +1000 -0
  672. data/ext/cargo-vendor/pulldown-cmark-0.9.3/Cargo.toml +100 -0
  673. data/ext/cargo-vendor/pulldown-cmark-0.9.3/README.md +167 -0
  674. data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/html_rendering.rs +97 -0
  675. data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/lib.rs +51 -0
  676. data/ext/cargo-vendor/pulldown-cmark-0.9.3/benches/markdown-it.rs +29 -0
  677. data/ext/cargo-vendor/pulldown-cmark-0.9.3/build.rs +189 -0
  678. data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/broken-link-callbacks.rs +35 -0
  679. data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/event-filter.rs +27 -0
  680. data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/parser-map-event-print.rs +31 -0
  681. data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/parser-map-tag-print.rs +73 -0
  682. data/ext/cargo-vendor/pulldown-cmark-0.9.3/examples/string-to-string.rs +24 -0
  683. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/escape.rs +369 -0
  684. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/firstpass.rs +1927 -0
  685. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/html.rs +478 -0
  686. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/lib.rs +290 -0
  687. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/linklabel.rs +135 -0
  688. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/main.rs +123 -0
  689. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/parse.rs +1927 -0
  690. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/puncttable.rs +351 -0
  691. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/scanners.rs +1327 -0
  692. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/strings.rs +373 -0
  693. data/ext/cargo-vendor/pulldown-cmark-0.9.3/src/tree.rs +276 -0
  694. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/errors.rs +131 -0
  695. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/html.rs +250 -0
  696. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/lib.rs +421 -0
  697. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/serde.rs +78 -0
  698. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/gfm_strikethrough.rs +37 -0
  699. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/gfm_table.rs +205 -0
  700. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/heading_attrs.rs +571 -0
  701. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/mod.rs +14 -0
  702. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/regression.rs +1033 -0
  703. data/ext/cargo-vendor/pulldown-cmark-0.9.3/tests/suite/spec.rs +8490 -0
  704. data/ext/cargo-vendor/quote-1.0.33/.cargo-checksum.json +1 -0
  705. data/ext/cargo-vendor/quote-1.0.33/Cargo.toml +50 -0
  706. data/ext/cargo-vendor/quote-1.0.33/src/lib.rs +1444 -0
  707. data/ext/cargo-vendor/quote-1.0.33/src/runtime.rs +530 -0
  708. data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +1 -0
  709. data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +66 -0
  710. data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +327 -0
  711. data/ext/cargo-vendor/serde-1.0.185/src/private/ser.rs +1385 -0
  712. data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +1 -0
  713. data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +59 -0
  714. data/ext/cargo-vendor/serde_derive-1.0.185/README.md +114 -0
  715. data/ext/cargo-vendor/serde_derive-1.0.185/crates-io.md +65 -0
  716. data/ext/cargo-vendor/serde_derive-1.0.185/src/de.rs +3136 -0
  717. data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/attr.rs +1878 -0
  718. data/ext/cargo-vendor/serde_derive-1.0.185/src/internals/symbol.rs +71 -0
  719. data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +102 -0
  720. data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +1359 -0
  721. data/ext/cargo-vendor/serde_json-1.0.105/.cargo-checksum.json +1 -0
  722. data/ext/cargo-vendor/serde_json-1.0.105/Cargo.toml +109 -0
  723. data/ext/cargo-vendor/serde_json-1.0.105/src/de.rs +2678 -0
  724. data/ext/cargo-vendor/serde_json-1.0.105/src/lib.rs +418 -0
  725. data/ext/cargo-vendor/serde_json-1.0.105/src/ser.rs +2247 -0
  726. data/ext/cargo-vendor/serde_json-1.0.105/src/value/de.rs +1419 -0
  727. data/ext/cargo-vendor/serde_json-1.0.105/src/value/ser.rs +1053 -0
  728. data/ext/cargo-vendor/serde_json-1.0.105/tests/test.rs +2499 -0
  729. data/ext/cargo-vendor/syn-2.0.29/.cargo-checksum.json +1 -0
  730. data/ext/cargo-vendor/syn-2.0.29/Cargo.toml +150 -0
  731. data/ext/cargo-vendor/syn-2.0.29/src/custom_keyword.rs +259 -0
  732. data/ext/cargo-vendor/syn-2.0.29/src/custom_punctuation.rs +302 -0
  733. data/ext/cargo-vendor/syn-2.0.29/src/export.rs +69 -0
  734. data/ext/cargo-vendor/syn-2.0.29/src/group.rs +291 -0
  735. data/ext/cargo-vendor/syn-2.0.29/src/lib.rs +970 -0
  736. data/ext/cargo-vendor/syn-2.0.29/src/parse_quote.rs +179 -0
  737. data/ext/cargo-vendor/syn-2.0.29/src/span.rs +63 -0
  738. data/ext/cargo-vendor/syn-2.0.29/src/token.rs +1071 -0
  739. data/ext/cargo-vendor/syn-2.0.29/tests/common/eq.rs +864 -0
  740. data/ext/cargo-vendor/system-interface-0.26.0/.cargo-checksum.json +1 -0
  741. data/ext/cargo-vendor/system-interface-0.26.0/Cargo.toml +105 -0
  742. data/ext/cargo-vendor/system-interface-0.26.0/build.rs +53 -0
  743. data/ext/cargo-vendor/system-interface-0.26.0/src/fs/file_io_ext.rs +1185 -0
  744. data/ext/cargo-vendor/thiserror-1.0.47/.cargo-checksum.json +1 -0
  745. data/ext/cargo-vendor/thiserror-1.0.47/Cargo.toml +48 -0
  746. data/ext/cargo-vendor/thiserror-1.0.47/build.rs +95 -0
  747. data/ext/cargo-vendor/thiserror-1.0.47/src/aserror.rs +50 -0
  748. data/ext/cargo-vendor/thiserror-1.0.47/src/display.rs +30 -0
  749. data/ext/cargo-vendor/thiserror-1.0.47/src/lib.rs +258 -0
  750. data/ext/cargo-vendor/thiserror-1.0.47/src/provide.rs +20 -0
  751. data/ext/cargo-vendor/thiserror-1.0.47/tests/test_backtrace.rs +274 -0
  752. data/ext/cargo-vendor/thiserror-1.0.47/tests/test_option.rs +105 -0
  753. data/ext/cargo-vendor/thiserror-impl-1.0.47/.cargo-checksum.json +1 -0
  754. data/ext/cargo-vendor/thiserror-impl-1.0.47/Cargo.toml +36 -0
  755. data/ext/cargo-vendor/thiserror-impl-1.0.47/src/expand.rs +545 -0
  756. data/ext/cargo-vendor/tokio-1.32.0/.cargo-checksum.json +1 -0
  757. data/ext/cargo-vendor/tokio-1.32.0/CHANGELOG.md +2987 -0
  758. data/ext/cargo-vendor/tokio-1.32.0/Cargo.toml +227 -0
  759. data/ext/cargo-vendor/tokio-1.32.0/README.md +249 -0
  760. data/ext/cargo-vendor/tokio-1.32.0/src/io/async_fd.rs +1243 -0
  761. data/ext/cargo-vendor/tokio-1.32.0/src/io/interest.rs +310 -0
  762. data/ext/cargo-vendor/tokio-1.32.0/src/io/ready.rs +322 -0
  763. data/ext/cargo-vendor/tokio-1.32.0/src/io/split.rs +201 -0
  764. data/ext/cargo-vendor/tokio-1.32.0/src/io/util/async_read_ext.rs +1298 -0
  765. data/ext/cargo-vendor/tokio-1.32.0/src/process/mod.rs +1674 -0
  766. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/builder.rs +1336 -0
  767. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/io/scheduled_io.rs +600 -0
  768. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/batch.rs +163 -0
  769. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/mock.rs +55 -0
  770. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/runtime.rs +924 -0
  771. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/metrics/worker.rs +84 -0
  772. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/current_thread/mod.rs +764 -0
  773. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread/stats.rs +140 -0
  774. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/handle.rs +75 -0
  775. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/idle.rs +423 -0
  776. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/stats.rs +171 -0
  777. data/ext/cargo-vendor/tokio-1.32.0/src/runtime/scheduler/multi_thread_alt/worker.rs +1595 -0
  778. data/ext/cargo-vendor/tokio-1.32.0/src/sync/broadcast.rs +1514 -0
  779. data/ext/cargo-vendor/tokio-1.32.0/tests/io_async_fd.rs +812 -0
  780. data/ext/cargo-vendor/tokio-1.32.0/tests/io_split.rs +116 -0
  781. data/ext/cargo-vendor/tokio-1.32.0/tests/rt_metrics.rs +731 -0
  782. data/ext/cargo-vendor/unicase-2.7.0/.cargo-checksum.json +1 -0
  783. data/ext/cargo-vendor/unicase-2.7.0/Cargo.toml +40 -0
  784. data/ext/cargo-vendor/unicase-2.7.0/LICENSE-APACHE +201 -0
  785. data/ext/cargo-vendor/unicase-2.7.0/README.md +32 -0
  786. data/ext/cargo-vendor/unicase-2.7.0/src/ascii.rs +186 -0
  787. data/ext/cargo-vendor/unicase-2.7.0/src/lib.rs +457 -0
  788. data/ext/cargo-vendor/unicase-2.7.0/src/unicode/map.rs +1965 -0
  789. data/ext/cargo-vendor/unicase-2.7.0/src/unicode/mod.rs +200 -0
  790. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.0/.cargo-checksum.json +1 -0
  791. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.0/Cargo.toml +96 -0
  792. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.0/src/sched/unix.rs +82 -0
  793. data/ext/cargo-vendor/wasi-common-12.0.0/.cargo-checksum.json +1 -0
  794. data/ext/cargo-vendor/wasi-common-12.0.0/Cargo.toml +87 -0
  795. data/ext/cargo-vendor/wasi-common-12.0.0/src/file.rs +269 -0
  796. data/ext/cargo-vendor/wasi-common-12.0.0/src/sched/subscription.rs +77 -0
  797. data/ext/cargo-vendor/wasi-common-12.0.0/src/snapshots/preview_1/error.rs +265 -0
  798. data/ext/cargo-vendor/wasmparser-0.110.0/.cargo-checksum.json +1 -0
  799. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.lock +644 -0
  800. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.toml +54 -0
  801. data/ext/cargo-vendor/wasmparser-0.110.0/benches/benchmark.rs +349 -0
  802. data/ext/cargo-vendor/wasmparser-0.110.0/src/lib.rs +726 -0
  803. data/ext/cargo-vendor/wasmparser-0.110.0/src/limits.rs +59 -0
  804. data/ext/cargo-vendor/wasmparser-0.110.0/src/parser.rs +1612 -0
  805. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/canonicals.rs +120 -0
  806. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/types.rs +548 -0
  807. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/elements.rs +152 -0
  808. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/types.rs +1141 -0
  809. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/component.rs +3144 -0
  810. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/core.rs +1314 -0
  811. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/operators.rs +3466 -0
  812. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/types.rs +3197 -0
  813. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator.rs +1568 -0
  814. data/ext/cargo-vendor/wasmparser-0.110.0/tests/big-module.rs +33 -0
  815. data/ext/cargo-vendor/wasmtime-12.0.0/.cargo-checksum.json +1 -0
  816. data/ext/cargo-vendor/wasmtime-12.0.0/Cargo.toml +186 -0
  817. data/ext/cargo-vendor/wasmtime-12.0.0/README.md +119 -0
  818. data/ext/cargo-vendor/wasmtime-12.0.0/src/compiler.rs +666 -0
  819. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/component.rs +466 -0
  820. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func/host.rs +456 -0
  821. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func/options.rs +510 -0
  822. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func/typed.rs +2326 -0
  823. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/func.rs +718 -0
  824. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/instance.rs +781 -0
  825. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/linker.rs +479 -0
  826. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/matching.rs +215 -0
  827. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/mod.rs +316 -0
  828. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/resources.rs +716 -0
  829. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/storage.rs +43 -0
  830. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/types.rs +562 -0
  831. data/ext/cargo-vendor/wasmtime-12.0.0/src/component/values.rs +1376 -0
  832. data/ext/cargo-vendor/wasmtime-12.0.0/src/config.rs +2096 -0
  833. data/ext/cargo-vendor/wasmtime-12.0.0/src/coredump.rs +115 -0
  834. data/ext/cargo-vendor/wasmtime-12.0.0/src/engine/serialization.rs +629 -0
  835. data/ext/cargo-vendor/wasmtime-12.0.0/src/engine.rs +756 -0
  836. data/ext/cargo-vendor/wasmtime-12.0.0/src/externals.rs +768 -0
  837. data/ext/cargo-vendor/wasmtime-12.0.0/src/func.rs +2356 -0
  838. data/ext/cargo-vendor/wasmtime-12.0.0/src/instance.rs +883 -0
  839. data/ext/cargo-vendor/wasmtime-12.0.0/src/lib.rs +490 -0
  840. data/ext/cargo-vendor/wasmtime-12.0.0/src/memory.rs +954 -0
  841. data/ext/cargo-vendor/wasmtime-12.0.0/src/module/registry.rs +329 -0
  842. data/ext/cargo-vendor/wasmtime-12.0.0/src/module.rs +1346 -0
  843. data/ext/cargo-vendor/wasmtime-12.0.0/src/resources.rs +33 -0
  844. data/ext/cargo-vendor/wasmtime-12.0.0/src/store/data.rs +283 -0
  845. data/ext/cargo-vendor/wasmtime-12.0.0/src/store/func_refs.rs +85 -0
  846. data/ext/cargo-vendor/wasmtime-12.0.0/src/store.rs +2212 -0
  847. data/ext/cargo-vendor/wasmtime-12.0.0/src/trap.rs +639 -0
  848. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.0/.cargo-checksum.json +1 -0
  849. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.0/Cargo.toml +22 -0
  850. data/ext/cargo-vendor/wasmtime-cache-12.0.0/.cargo-checksum.json +1 -0
  851. data/ext/cargo-vendor/wasmtime-cache-12.0.0/Cargo.toml +73 -0
  852. data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/.cargo-checksum.json +1 -0
  853. data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/Cargo.toml +58 -0
  854. data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/src/bindgen.rs +343 -0
  855. data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/src/component.rs +1319 -0
  856. data/ext/cargo-vendor/wasmtime-component-macro-12.0.0/tests/codegen.rs +26 -0
  857. data/ext/cargo-vendor/wasmtime-component-util-12.0.0/.cargo-checksum.json +1 -0
  858. data/ext/cargo-vendor/wasmtime-component-util-12.0.0/Cargo.toml +25 -0
  859. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/.cargo-checksum.json +1 -0
  860. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/Cargo.toml +93 -0
  861. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/builder.rs +116 -0
  862. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/compiler/component.rs +959 -0
  863. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/compiler.rs +1297 -0
  864. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/debug/transform/expression.rs +1250 -0
  865. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/debug/transform/unit.rs +522 -0
  866. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/debug/transform/utils.rs +187 -0
  867. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/func_environ.rs +2377 -0
  868. data/ext/cargo-vendor/wasmtime-cranelift-12.0.0/src/lib.rs +186 -0
  869. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/.cargo-checksum.json +1 -0
  870. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/Cargo.toml +57 -0
  871. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/src/lib.rs +129 -0
  872. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.0/src/obj.rs +565 -0
  873. data/ext/cargo-vendor/wasmtime-environ-12.0.0/.cargo-checksum.json +1 -0
  874. data/ext/cargo-vendor/wasmtime-environ-12.0.0/Cargo.lock +736 -0
  875. data/ext/cargo-vendor/wasmtime-environ-12.0.0/Cargo.toml +116 -0
  876. data/ext/cargo-vendor/wasmtime-environ-12.0.0/examples/factc.rs +207 -0
  877. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/compilation.rs +400 -0
  878. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/compiler.rs +47 -0
  879. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/dfg.rs +678 -0
  880. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/info.rs +583 -0
  881. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/translate/adapt.rs +457 -0
  882. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/translate/inline.rs +1327 -0
  883. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/translate.rs +943 -0
  884. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/types/resources.rs +240 -0
  885. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/types.rs +1920 -0
  886. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component/vmcomponent_offsets.rs +316 -0
  887. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/component.rs +95 -0
  888. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact/signature.rs +135 -0
  889. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact/trampoline.rs +3269 -0
  890. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact/transcode.rs +168 -0
  891. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/fact.rs +713 -0
  892. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/module_environ.rs +887 -0
  893. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/obj.rs +172 -0
  894. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/trap_encoding.rs +246 -0
  895. data/ext/cargo-vendor/wasmtime-environ-12.0.0/src/tunables.rs +115 -0
  896. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/.cargo-checksum.json +1 -0
  897. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/Cargo.toml +51 -0
  898. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/build.rs +26 -0
  899. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/aarch64.rs +184 -0
  900. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/arm.rs +85 -0
  901. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/riscv64.rs +158 -0
  902. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/s390x.S +123 -0
  903. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix/x86_64.rs +160 -0
  904. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/unix.rs +215 -0
  905. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/windows.c +9 -0
  906. data/ext/cargo-vendor/wasmtime-fiber-12.0.0/src/windows.rs +162 -0
  907. data/ext/cargo-vendor/wasmtime-jit-12.0.0/.cargo-checksum.json +1 -0
  908. data/ext/cargo-vendor/wasmtime-jit-12.0.0/Cargo.toml +104 -0
  909. data/ext/cargo-vendor/wasmtime-jit-12.0.0/src/code_memory.rs +313 -0
  910. data/ext/cargo-vendor/wasmtime-jit-12.0.0/src/profiling.rs +108 -0
  911. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.0/.cargo-checksum.json +1 -0
  912. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.0/Cargo.toml +58 -0
  913. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.0/src/gdb_jit_int.rs +130 -0
  914. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.0/.cargo-checksum.json +1 -0
  915. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.0/Cargo.toml +37 -0
  916. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/.cargo-checksum.json +1 -0
  917. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/Cargo.toml +119 -0
  918. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/build.rs +19 -0
  919. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/component/libcalls.rs +574 -0
  920. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/component/resources.rs +327 -0
  921. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/component.rs +853 -0
  922. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/debug_builtins.rs +59 -0
  923. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/helpers.c +108 -0
  924. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/instance/allocator/on_demand.rs +127 -0
  925. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/instance/allocator.rs +414 -0
  926. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/lib.rs +289 -0
  927. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/libcalls.rs +627 -0
  928. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/mmap/unix.rs +148 -0
  929. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/send_sync_ptr.rs +77 -0
  930. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/aarch64.rs +42 -0
  931. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/riscv64.rs +43 -0
  932. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/s390x.S +62 -0
  933. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/trampolines/x86_64.rs +64 -0
  934. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/traphandlers/coredump.rs +38 -0
  935. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/traphandlers/unix.rs +402 -0
  936. data/ext/cargo-vendor/wasmtime-runtime-12.0.0/src/traphandlers.rs +782 -0
  937. data/ext/cargo-vendor/wasmtime-types-12.0.1/.cargo-checksum.json +1 -0
  938. data/ext/cargo-vendor/wasmtime-types-12.0.1/Cargo.toml +34 -0
  939. data/ext/cargo-vendor/wasmtime-types-12.0.1/src/lib.rs +504 -0
  940. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.0/.cargo-checksum.json +1 -0
  941. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.0/Cargo.toml +32 -0
  942. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.0/src/lib.rs +66 -0
  943. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/.cargo-checksum.json +1 -0
  944. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/Cargo.toml +191 -0
  945. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/clocks/host.rs +73 -0
  946. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/clocks.rs +12 -0
  947. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/command.rs +91 -0
  948. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/ctx.rs +237 -0
  949. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/filesystem.rs +216 -0
  950. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/mod.rs +185 -0
  951. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/pipe.rs +846 -0
  952. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/poll.rs +148 -0
  953. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview1/mod.rs +1870 -0
  954. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/clocks.rs +107 -0
  955. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/env.rs +37 -0
  956. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/exit.rs +11 -0
  957. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/filesystem/sync.rs +613 -0
  958. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/filesystem.rs +1096 -0
  959. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/io.rs +494 -0
  960. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/mod.rs +6 -0
  961. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/preview2/random.rs +36 -0
  962. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stdio/unix.rs +133 -0
  963. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stdio/worker_thread_stdin.rs +133 -0
  964. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stdio.rs +218 -0
  965. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/stream.rs +302 -0
  966. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/src/preview2/table.rs +287 -0
  967. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/wit/deps/io/streams.wit +254 -0
  968. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/wit/deps/poll/poll.wit +39 -0
  969. data/ext/cargo-vendor/wasmtime-wasi-12.0.0/wit/test.wit +28 -0
  970. data/ext/cargo-vendor/wasmtime-winch-12.0.0/.cargo-checksum.json +1 -0
  971. data/ext/cargo-vendor/wasmtime-winch-12.0.0/Cargo.toml +63 -0
  972. data/ext/cargo-vendor/wasmtime-winch-12.0.0/src/builder.rs +64 -0
  973. data/ext/cargo-vendor/wasmtime-winch-12.0.0/src/compiler.rs +217 -0
  974. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/.cargo-checksum.json +1 -0
  975. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/Cargo.toml +32 -0
  976. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/src/lib.rs +1705 -0
  977. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/src/rust.rs +498 -0
  978. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.0/src/types.rs +185 -0
  979. data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +1 -0
  980. data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +50 -0
  981. data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +1246 -0
  982. data/ext/cargo-vendor/wast-63.0.0/src/core/custom.rs +390 -0
  983. data/ext/cargo-vendor/wast-63.0.0/src/core/func.rs +136 -0
  984. data/ext/cargo-vendor/wast-63.0.0/src/core/module.rs +217 -0
  985. data/ext/cargo-vendor/wast-63.0.0/src/encode.rs +89 -0
  986. data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +537 -0
  987. data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +1 -0
  988. data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +27 -0
  989. data/ext/cargo-vendor/wiggle-12.0.0/.cargo-checksum.json +1 -0
  990. data/ext/cargo-vendor/wiggle-12.0.0/Cargo.toml +106 -0
  991. data/ext/cargo-vendor/wiggle-generate-12.0.0/.cargo-checksum.json +1 -0
  992. data/ext/cargo-vendor/wiggle-generate-12.0.0/Cargo.toml +58 -0
  993. data/ext/cargo-vendor/wiggle-generate-12.0.0/src/config.rs +697 -0
  994. data/ext/cargo-vendor/wiggle-generate-12.0.0/src/types/flags.rs +92 -0
  995. data/ext/cargo-vendor/wiggle-macro-12.0.0/.cargo-checksum.json +1 -0
  996. data/ext/cargo-vendor/wiggle-macro-12.0.0/Cargo.toml +55 -0
  997. data/ext/cargo-vendor/winch-codegen-0.10.0/.cargo-checksum.json +1 -0
  998. data/ext/cargo-vendor/winch-codegen-0.10.0/Cargo.toml +62 -0
  999. data/ext/cargo-vendor/winch-codegen-0.10.0/src/abi/mod.rs +251 -0
  1000. data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/call.rs +199 -0
  1001. data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/context.rs +368 -0
  1002. data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/control.rs +437 -0
  1003. data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/env.rs +74 -0
  1004. data/ext/cargo-vendor/winch-codegen-0.10.0/src/codegen/mod.rs +330 -0
  1005. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/aarch64/abi.rs +250 -0
  1006. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/aarch64/asm.rs +312 -0
  1007. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/aarch64/masm.rs +293 -0
  1008. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/mod.rs +215 -0
  1009. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/abi.rs +375 -0
  1010. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/asm.rs +855 -0
  1011. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/masm.rs +516 -0
  1012. data/ext/cargo-vendor/winch-codegen-0.10.0/src/isa/x64/regs.rs +192 -0
  1013. data/ext/cargo-vendor/winch-codegen-0.10.0/src/masm.rs +352 -0
  1014. data/ext/cargo-vendor/winch-codegen-0.10.0/src/stack.rs +235 -0
  1015. data/ext/cargo-vendor/winch-codegen-0.10.0/src/trampoline.rs +494 -0
  1016. data/ext/cargo-vendor/winch-codegen-0.10.0/src/visitor.rs +656 -0
  1017. data/ext/cargo-vendor/windows-targets-0.48.5/.cargo-checksum.json +1 -0
  1018. data/ext/cargo-vendor/windows-targets-0.48.5/Cargo.toml +41 -0
  1019. data/ext/cargo-vendor/windows-targets-0.48.5/readme.md +88 -0
  1020. data/ext/cargo-vendor/windows-targets-0.48.5/src/lib.rs +55 -0
  1021. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
  1022. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/Cargo.toml +23 -0
  1023. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
  1024. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/.cargo-checksum.json +1 -0
  1025. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/Cargo.toml +23 -0
  1026. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
  1027. data/ext/cargo-vendor/windows_i686_gnu-0.48.5/.cargo-checksum.json +1 -0
  1028. data/ext/cargo-vendor/windows_i686_gnu-0.48.5/Cargo.toml +23 -0
  1029. data/ext/cargo-vendor/windows_i686_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
  1030. data/ext/cargo-vendor/windows_i686_msvc-0.48.5/.cargo-checksum.json +1 -0
  1031. data/ext/cargo-vendor/windows_i686_msvc-0.48.5/Cargo.toml +23 -0
  1032. data/ext/cargo-vendor/windows_i686_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
  1033. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/.cargo-checksum.json +1 -0
  1034. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/Cargo.toml +23 -0
  1035. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.5/lib/libwindows.0.48.5.a +0 -0
  1036. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/.cargo-checksum.json +1 -0
  1037. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/Cargo.toml +23 -0
  1038. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.5/lib/libwindows.0.48.5.a +0 -0
  1039. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/.cargo-checksum.json +1 -0
  1040. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/Cargo.toml +23 -0
  1041. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.5/lib/windows.0.48.5.lib +0 -0
  1042. data/ext/cargo-vendor/wit-parser-0.9.2/.cargo-checksum.json +1 -0
  1043. data/ext/cargo-vendor/wit-parser-0.9.2/Cargo.toml +62 -0
  1044. data/ext/cargo-vendor/wit-parser-0.9.2/src/abi.rs +2199 -0
  1045. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/lex.rs +717 -0
  1046. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/resolve.rs +1437 -0
  1047. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/toposort.rs +225 -0
  1048. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast.rs +1362 -0
  1049. data/ext/cargo-vendor/wit-parser-0.9.2/src/lib.rs +666 -0
  1050. data/ext/cargo-vendor/wit-parser-0.9.2/src/live.rs +116 -0
  1051. data/ext/cargo-vendor/wit-parser-0.9.2/src/resolve.rs +1749 -0
  1052. data/ext/cargo-vendor/wit-parser-0.9.2/src/sizealign.rs +145 -0
  1053. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/deps/bar/root.wit +9 -0
  1054. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/deps/baz/root.wit +9 -0
  1055. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/complex-include/root.wit +26 -0
  1056. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/cross-package-resource/deps/foo/foo.wit +5 -0
  1057. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/cross-package-resource/foo.wit +7 -0
  1058. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +3 -0
  1059. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/corp/saas.wit +4 -0
  1060. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +2 -0
  1061. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +5 -0
  1062. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +13 -0
  1063. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/wasi/clocks.wit +5 -0
  1064. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps/deps/wasi/filesystem.wit +7 -0
  1065. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +6 -0
  1066. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/foreign-deps-union/root.wit +50 -0
  1067. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/deps/bar/types.wit +2 -0
  1068. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/deps/ignore-me.txt +1 -0
  1069. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/ignore-files-deps/world.wit +5 -0
  1070. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/include-reps.wit +15 -0
  1071. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/kebab-name-include-with.wit +8 -0
  1072. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +5 -0
  1073. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/name-both-resource-and-type/foo.wit +9 -0
  1074. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include1.wit +5 -0
  1075. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include1.wit.result +5 -0
  1076. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include2.wit +9 -0
  1077. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include2.wit.result +5 -0
  1078. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include3.wit +5 -0
  1079. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-include3.wit.result +5 -0
  1080. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-pkg1.wit.result +8 -0
  1081. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource1.wit +5 -0
  1082. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource1.wit.result +5 -0
  1083. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource10.wit +5 -0
  1084. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource10.wit.result +5 -0
  1085. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource11.wit +5 -0
  1086. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource11.wit.result +5 -0
  1087. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource12.wit +6 -0
  1088. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource12.wit.result +5 -0
  1089. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource13.wit +6 -0
  1090. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource13.wit.result +5 -0
  1091. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource14.wit +7 -0
  1092. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource14.wit.result +5 -0
  1093. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +5 -0
  1094. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15/foo.wit +7 -0
  1095. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource15.wit.result +5 -0
  1096. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource2.wit +5 -0
  1097. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource2.wit.result +5 -0
  1098. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource3.wit +6 -0
  1099. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource3.wit.result +5 -0
  1100. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource4.wit +6 -0
  1101. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource4.wit.result +5 -0
  1102. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource5.wit +7 -0
  1103. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource5.wit.result +5 -0
  1104. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource6.wit +7 -0
  1105. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource6.wit.result +5 -0
  1106. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource7.wit +8 -0
  1107. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource7.wit.result +5 -0
  1108. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource8.wit +8 -0
  1109. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource8.wit.result +5 -0
  1110. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource9.wit +7 -0
  1111. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/bad-resource9.wit.result +5 -0
  1112. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export1.wit.result +5 -0
  1113. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export2.wit +18 -0
  1114. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export2.wit.result +5 -0
  1115. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export3.wit.result +5 -0
  1116. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export4.wit +44 -0
  1117. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export4.wit.result +5 -0
  1118. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export5.wit +18 -0
  1119. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/import-and-export5.wit.result +5 -0
  1120. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-cycle.wit +9 -0
  1121. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-cycle.wit.result +5 -0
  1122. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +3 -0
  1123. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign/root.wit +5 -0
  1124. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-foreign.wit.result +5 -0
  1125. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-id.wit +11 -0
  1126. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-id.wit.result +5 -0
  1127. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-on-id.wit +11 -0
  1128. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/include-with-on-id.wit.result +5 -0
  1129. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include-not-found.wit +8 -0
  1130. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +5 -0
  1131. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include.wit +8 -0
  1132. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/kebab-name-include.wit.result +5 -0
  1133. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +8 -0
  1134. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +4 -0
  1135. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include/root.wit +5 -0
  1136. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/non-existance-world-include.wit.result +5 -0
  1137. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +5 -0
  1138. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +8 -0
  1139. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/type-and-resource-same-name.wit.result +5 -0
  1140. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/union-fuzz-2.wit +12 -0
  1141. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/union-fuzz-2.wit.result +5 -0
  1142. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unknown-interface.wit.result +5 -0
  1143. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-interface2.wit.result +5 -0
  1144. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-interface3.wit.result +5 -0
  1145. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-use1.wit.result +5 -0
  1146. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/unresolved-use9.wit.result +5 -0
  1147. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +4 -0
  1148. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world/root.wit +7 -0
  1149. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-and-include-world.wit.result +8 -0
  1150. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-cycle1.wit.result +5 -0
  1151. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-cycle4.wit.result +5 -0
  1152. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world/deps/bar/baz.wit +4 -0
  1153. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world/root.wit +7 -0
  1154. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/use-world.wit.result +5 -0
  1155. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/world-interface-clash.wit.result +5 -0
  1156. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-empty.wit +10 -0
  1157. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple-returns-borrow.wit +10 -0
  1158. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple-returns-own.wit +10 -0
  1159. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-multiple.wit +20 -0
  1160. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-return-borrow.wit +10 -0
  1161. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources-return-own.wit +10 -0
  1162. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources.wit +47 -0
  1163. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/resources1.wit +12 -0
  1164. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/shared-types.wit +10 -0
  1165. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/stress-export-elaborate.wit +54 -0
  1166. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/union-fuzz-1.wit +9 -0
  1167. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-diamond.wit +22 -0
  1168. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-same-fields4.wit +13 -0
  1169. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-top-level-resources.wit +24 -0
  1170. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/worlds-union-dedup.wit +23 -0
  1171. data/lib/wasmtime/version.rb +1 -1
  1172. metadata +3331 -2881
  1173. data/ext/cargo-vendor/addr2line-0.19.0/.cargo-checksum.json +0 -1
  1174. data/ext/cargo-vendor/addr2line-0.19.0/CHANGELOG.md +0 -287
  1175. data/ext/cargo-vendor/addr2line-0.19.0/Cargo.lock +0 -466
  1176. data/ext/cargo-vendor/addr2line-0.19.0/Cargo.toml +0 -142
  1177. data/ext/cargo-vendor/addr2line-0.19.0/examples/addr2line.rs +0 -289
  1178. data/ext/cargo-vendor/addr2line-0.19.0/src/function.rs +0 -534
  1179. data/ext/cargo-vendor/addr2line-0.19.0/src/lazy.rs +0 -27
  1180. data/ext/cargo-vendor/addr2line-0.19.0/src/lib.rs +0 -1234
  1181. data/ext/cargo-vendor/addr2line-0.19.0/tests/correctness.rs +0 -92
  1182. data/ext/cargo-vendor/addr2line-0.19.0/tests/output_equivalence.rs +0 -146
  1183. data/ext/cargo-vendor/addr2line-0.19.0/tests/parse.rs +0 -118
  1184. data/ext/cargo-vendor/aho-corasick-1.0.3/.cargo-checksum.json +0 -1
  1185. data/ext/cargo-vendor/aho-corasick-1.0.3/Cargo.toml +0 -70
  1186. data/ext/cargo-vendor/aho-corasick-1.0.3/src/ahocorasick.rs +0 -2788
  1187. data/ext/cargo-vendor/aho-corasick-1.0.3/src/dfa.rs +0 -804
  1188. data/ext/cargo-vendor/aho-corasick-1.0.3/src/lib.rs +0 -326
  1189. data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/contiguous.rs +0 -1133
  1190. data/ext/cargo-vendor/aho-corasick-1.0.3/src/nfa/noncontiguous.rs +0 -1328
  1191. data/ext/cargo-vendor/anyhow-1.0.72/.cargo-checksum.json +0 -1
  1192. data/ext/cargo-vendor/anyhow-1.0.72/Cargo.toml +0 -67
  1193. data/ext/cargo-vendor/anyhow-1.0.72/build.rs +0 -131
  1194. data/ext/cargo-vendor/anyhow-1.0.72/src/backtrace.rs +0 -401
  1195. data/ext/cargo-vendor/anyhow-1.0.72/src/context.rs +0 -193
  1196. data/ext/cargo-vendor/anyhow-1.0.72/src/error.rs +0 -992
  1197. data/ext/cargo-vendor/anyhow-1.0.72/src/kind.rs +0 -116
  1198. data/ext/cargo-vendor/anyhow-1.0.72/src/lib.rs +0 -683
  1199. data/ext/cargo-vendor/anyhow-1.0.72/src/wrapper.rs +0 -81
  1200. data/ext/cargo-vendor/anyhow-1.0.72/tests/test_ensure.rs +0 -721
  1201. data/ext/cargo-vendor/async-trait-0.1.72/.cargo-checksum.json +0 -1
  1202. data/ext/cargo-vendor/async-trait-0.1.72/Cargo.toml +0 -63
  1203. data/ext/cargo-vendor/async-trait-0.1.72/src/expand.rs +0 -484
  1204. data/ext/cargo-vendor/async-trait-0.1.72/src/lib.rs +0 -343
  1205. data/ext/cargo-vendor/async-trait-0.1.72/tests/test.rs +0 -1606
  1206. data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/consider-restricting.stderr +0 -33
  1207. data/ext/cargo-vendor/async-trait-0.1.72/tests/ui/send-not-implemented.stderr +0 -47
  1208. data/ext/cargo-vendor/backtrace-0.3.68/.cargo-checksum.json +0 -1
  1209. data/ext/cargo-vendor/backtrace-0.3.68/Cargo.lock +0 -192
  1210. data/ext/cargo-vendor/backtrace-0.3.68/Cargo.toml +0 -144
  1211. data/ext/cargo-vendor/backtrace-0.3.68/build.rs +0 -41
  1212. data/ext/cargo-vendor/backtrace-0.3.68/ci/android-ndk.sh +0 -14
  1213. data/ext/cargo-vendor/backtrace-0.3.68/ci/android-sdk.sh +0 -65
  1214. data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink-docker.sh +0 -29
  1215. data/ext/cargo-vendor/backtrace-0.3.68/ci/debuglink.sh +0 -75
  1216. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-linux-android/Dockerfile +0 -18
  1217. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/aarch64-unknown-linux-gnu/Dockerfile +0 -11
  1218. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-linux-androideabi/Dockerfile +0 -18
  1219. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/arm-unknown-linux-gnueabihf/Dockerfile +0 -10
  1220. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-linux-androideabi/Dockerfile +0 -18
  1221. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/armv7-unknown-linux-gnueabihf/Dockerfile +0 -10
  1222. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i586-unknown-linux-gnu/Dockerfile +0 -5
  1223. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-linux-android/Dockerfile +0 -18
  1224. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/i686-unknown-linux-gnu/Dockerfile +0 -5
  1225. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/powerpc64-unknown-linux-gnu/Dockerfile +0 -16
  1226. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/s390x-unknown-linux-gnu/Dockerfile +0 -17
  1227. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-linux-android/Dockerfile +0 -18
  1228. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-pc-windows-gnu/Dockerfile +0 -10
  1229. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-gnu/Dockerfile +0 -6
  1230. data/ext/cargo-vendor/backtrace-0.3.68/ci/docker/x86_64-unknown-linux-musl/Dockerfile +0 -6
  1231. data/ext/cargo-vendor/backtrace-0.3.68/ci/run-docker.sh +0 -33
  1232. data/ext/cargo-vendor/backtrace-0.3.68/ci/run.sh +0 -6
  1233. data/ext/cargo-vendor/backtrace-0.3.68/ci/runtest-android.rs +0 -50
  1234. data/ext/cargo-vendor/backtrace-0.3.68/src/print/fuchsia.rs +0 -436
  1235. data/ext/cargo-vendor/backtrace-0.3.68/src/print.rs +0 -319
  1236. data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/gimli/parse_running_mmaps_unix.rs +0 -232
  1237. data/ext/cargo-vendor/backtrace-0.3.68/src/symbolize/mod.rs +0 -485
  1238. data/ext/cargo-vendor/backtrace-0.3.68/src/windows.rs +0 -693
  1239. data/ext/cargo-vendor/cap-fs-ext-1.0.15/.cargo-checksum.json +0 -1
  1240. data/ext/cargo-vendor/cap-fs-ext-1.0.15/Cargo.toml +0 -63
  1241. data/ext/cargo-vendor/cap-fs-ext-1.0.15/src/is_file_read_write.rs +0 -61
  1242. data/ext/cargo-vendor/cap-primitives-1.0.15/.cargo-checksum.json +0 -1
  1243. data/ext/cargo-vendor/cap-primitives-1.0.15/Cargo.toml +0 -81
  1244. data/ext/cargo-vendor/cap-primitives-1.0.15/src/fs/mod.rs +0 -125
  1245. data/ext/cargo-vendor/cap-primitives-1.0.15/src/net/pool.rs +0 -284
  1246. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/copy_impl.rs +0 -235
  1247. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/metadata_ext.rs +0 -385
  1248. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/oflags.rs +0 -98
  1249. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/open_unchecked.rs +0 -71
  1250. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/reopen_impl.rs +0 -18
  1251. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/set_permissions_impl.rs +0 -50
  1252. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/stat_unchecked.rs +0 -79
  1253. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/fs/times.rs +0 -62
  1254. data/ext/cargo-vendor/cap-primitives-1.0.15/src/rustix/linux/fs/procfs.rs +0 -76
  1255. data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/create_file_at_w.rs +0 -274
  1256. data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/metadata_ext.rs +0 -216
  1257. data/ext/cargo-vendor/cap-primitives-1.0.15/src/windows/fs/open_unchecked.rs +0 -229
  1258. data/ext/cargo-vendor/cap-rand-1.0.15/.cargo-checksum.json +0 -1
  1259. data/ext/cargo-vendor/cap-rand-1.0.15/Cargo.toml +0 -38
  1260. data/ext/cargo-vendor/cap-std-1.0.15/.cargo-checksum.json +0 -1
  1261. data/ext/cargo-vendor/cap-std-1.0.15/Cargo.toml +0 -67
  1262. data/ext/cargo-vendor/cap-std-1.0.15/build.rs +0 -43
  1263. data/ext/cargo-vendor/cap-std-1.0.15/src/fs/file.rs +0 -616
  1264. data/ext/cargo-vendor/cap-std-1.0.15/src/fs_utf8/file.rs +0 -610
  1265. data/ext/cargo-vendor/cap-std-1.0.15/src/lib.rs +0 -53
  1266. data/ext/cargo-vendor/cap-std-1.0.15/src/net/udp_socket.rs +0 -418
  1267. data/ext/cargo-vendor/cap-time-ext-1.0.15/.cargo-checksum.json +0 -1
  1268. data/ext/cargo-vendor/cap-time-ext-1.0.15/Cargo.toml +0 -42
  1269. data/ext/cargo-vendor/cap-time-ext-1.0.15/src/monotonic_clock.rs +0 -63
  1270. data/ext/cargo-vendor/cap-time-ext-1.0.15/src/system_clock.rs +0 -62
  1271. data/ext/cargo-vendor/cc-1.0.82/.cargo-checksum.json +0 -1
  1272. data/ext/cargo-vendor/cc-1.0.82/Cargo.lock +0 -111
  1273. data/ext/cargo-vendor/cc-1.0.82/Cargo.toml +0 -42
  1274. data/ext/cargo-vendor/cc-1.0.82/src/lib.rs +0 -3983
  1275. data/ext/cargo-vendor/cc-1.0.82/tests/test.rs +0 -461
  1276. data/ext/cargo-vendor/cranelift-bforest-0.97.1/.cargo-checksum.json +0 -1
  1277. data/ext/cargo-vendor/cranelift-bforest-0.97.1/Cargo.toml +0 -31
  1278. data/ext/cargo-vendor/cranelift-codegen-0.97.1/.cargo-checksum.json +0 -1
  1279. data/ext/cargo-vendor/cranelift-codegen-0.97.1/Cargo.toml +0 -158
  1280. data/ext/cargo-vendor/cranelift-codegen-0.97.1/build.rs +0 -390
  1281. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/cursor.rs +0 -644
  1282. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/extfunc.rs +0 -421
  1283. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/function.rs +0 -485
  1284. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/globalvalue.rs +0 -170
  1285. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/libcall.rs +0 -221
  1286. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/ir/mod.rs +0 -107
  1287. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/abi.rs +0 -1294
  1288. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit.rs +0 -3684
  1289. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/emit_tests.rs +0 -7895
  1290. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst/mod.rs +0 -2966
  1291. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/inst.isle +0 -4037
  1292. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower/isle.rs +0 -816
  1293. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/lower.isle +0 -2906
  1294. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/aarch64/mod.rs +0 -238
  1295. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/call_conv.rs +0 -136
  1296. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/mod.rs +0 -424
  1297. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/abi.rs +0 -825
  1298. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/emit.rs +0 -3008
  1299. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/encode.rs +0 -262
  1300. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/mod.rs +0 -1963
  1301. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst/vector.rs +0 -669
  1302. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst.isle +0 -2915
  1303. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/inst_vector.isle +0 -760
  1304. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower/isle.rs +0 -553
  1305. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/lower.isle +0 -1409
  1306. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/riscv64/mod.rs +0 -216
  1307. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/abi.rs +0 -957
  1308. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/inst.isle +0 -5046
  1309. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower/isle.rs +0 -1018
  1310. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/lower.isle +0 -3991
  1311. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/s390x/mod.rs +0 -213
  1312. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/abi.rs +0 -985
  1313. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/encoding/rex.rs +0 -588
  1314. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/args.rs +0 -2193
  1315. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit.rs +0 -4090
  1316. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/emit_tests.rs +0 -5674
  1317. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst/mod.rs +0 -2667
  1318. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/inst.isle +0 -5104
  1319. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower/isle.rs +0 -1148
  1320. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.isle +0 -4481
  1321. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/lower.rs +0 -328
  1322. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isa/x64/mod.rs +0 -251
  1323. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/isle_prelude.rs +0 -862
  1324. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/lib.rs +0 -140
  1325. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/abi.rs +0 -2455
  1326. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/buffer.rs +0 -2277
  1327. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/isle.rs +0 -827
  1328. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/lower.rs +0 -1388
  1329. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/mod.rs +0 -549
  1330. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/reg.rs +0 -537
  1331. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/machinst/vcode.rs +0 -1580
  1332. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/opts/cprop.isle +0 -197
  1333. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/opts/extends.isle +0 -34
  1334. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/opts/icmp.isle +0 -177
  1335. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude.isle +0 -578
  1336. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/prelude_lower.isle +0 -1012
  1337. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/settings.rs +0 -600
  1338. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/timing.rs +0 -271
  1339. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/unionfind.rs +0 -74
  1340. data/ext/cargo-vendor/cranelift-codegen-0.97.1/src/value_label.rs +0 -69
  1341. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/.cargo-checksum.json +0 -1
  1342. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/Cargo.toml +0 -23
  1343. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/cdsl/settings.rs +0 -440
  1344. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/gen_inst.rs +0 -1784
  1345. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/arm64.rs +0 -61
  1346. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/mod.rs +0 -67
  1347. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/riscv64.rs +0 -108
  1348. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/s390x.rs +0 -47
  1349. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/isa/x86.rs +0 -444
  1350. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/lib.rs +0 -66
  1351. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/instructions.rs +0 -3867
  1352. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/mod.rs +0 -87
  1353. data/ext/cargo-vendor/cranelift-codegen-meta-0.97.1/src/shared/settings.rs +0 -348
  1354. data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/.cargo-checksum.json +0 -1
  1355. data/ext/cargo-vendor/cranelift-codegen-shared-0.97.1/Cargo.toml +0 -22
  1356. data/ext/cargo-vendor/cranelift-control-0.97.1/.cargo-checksum.json +0 -1
  1357. data/ext/cargo-vendor/cranelift-control-0.97.1/Cargo.toml +0 -30
  1358. data/ext/cargo-vendor/cranelift-entity-0.97.1/.cargo-checksum.json +0 -1
  1359. data/ext/cargo-vendor/cranelift-entity-0.97.1/Cargo.toml +0 -35
  1360. data/ext/cargo-vendor/cranelift-frontend-0.97.1/.cargo-checksum.json +0 -1
  1361. data/ext/cargo-vendor/cranelift-frontend-0.97.1/Cargo.toml +0 -53
  1362. data/ext/cargo-vendor/cranelift-frontend-0.97.1/src/lib.rs +0 -204
  1363. data/ext/cargo-vendor/cranelift-isle-0.97.1/.cargo-checksum.json +0 -1
  1364. data/ext/cargo-vendor/cranelift-isle-0.97.1/Cargo.toml +0 -37
  1365. data/ext/cargo-vendor/cranelift-native-0.97.1/.cargo-checksum.json +0 -1
  1366. data/ext/cargo-vendor/cranelift-native-0.97.1/Cargo.toml +0 -38
  1367. data/ext/cargo-vendor/cranelift-native-0.97.1/src/lib.rs +0 -215
  1368. data/ext/cargo-vendor/cranelift-wasm-0.97.1/.cargo-checksum.json +0 -1
  1369. data/ext/cargo-vendor/cranelift-wasm-0.97.1/Cargo.toml +0 -85
  1370. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/code_translator.rs +0 -3538
  1371. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/dummy.rs +0 -924
  1372. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/environ/spec.rs +0 -834
  1373. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/func_translator.rs +0 -440
  1374. data/ext/cargo-vendor/cranelift-wasm-0.97.1/src/sections_translator.rs +0 -417
  1375. data/ext/cargo-vendor/cranelift-wasm-0.97.1/tests/wasm_testsuite.rs +0 -162
  1376. data/ext/cargo-vendor/fs-set-times-0.19.2/.cargo-checksum.json +0 -1
  1377. data/ext/cargo-vendor/fs-set-times-0.19.2/Cargo.toml +0 -45
  1378. data/ext/cargo-vendor/io-extras-0.17.4/.cargo-checksum.json +0 -1
  1379. data/ext/cargo-vendor/io-extras-0.17.4/Cargo.toml +0 -106
  1380. data/ext/cargo-vendor/io-extras-0.17.4/README.md +0 -33
  1381. data/ext/cargo-vendor/io-extras-0.17.4/build.rs +0 -79
  1382. data/ext/cargo-vendor/io-extras-0.17.4/src/os/windows/stdio.rs +0 -329
  1383. data/ext/cargo-vendor/log-0.4.19/.cargo-checksum.json +0 -1
  1384. data/ext/cargo-vendor/log-0.4.19/CHANGELOG.md +0 -267
  1385. data/ext/cargo-vendor/log-0.4.19/Cargo.toml +0 -117
  1386. data/ext/cargo-vendor/log-0.4.19/README.md +0 -120
  1387. data/ext/cargo-vendor/log-0.4.19/src/lib.rs +0 -1882
  1388. data/ext/cargo-vendor/log-0.4.19/src/macros.rs +0 -280
  1389. data/ext/cargo-vendor/memoffset-0.8.0/.cargo-checksum.json +0 -1
  1390. data/ext/cargo-vendor/memoffset-0.8.0/Cargo.toml +0 -36
  1391. data/ext/cargo-vendor/memoffset-0.8.0/LICENSE +0 -19
  1392. data/ext/cargo-vendor/memoffset-0.8.0/README.md +0 -85
  1393. data/ext/cargo-vendor/memoffset-0.8.0/build.rs +0 -25
  1394. data/ext/cargo-vendor/memoffset-0.8.0/src/lib.rs +0 -93
  1395. data/ext/cargo-vendor/memoffset-0.8.0/src/offset_of.rs +0 -356
  1396. data/ext/cargo-vendor/memoffset-0.8.0/src/raw_field.rs +0 -226
  1397. data/ext/cargo-vendor/memoffset-0.8.0/src/span_of.rs +0 -263
  1398. data/ext/cargo-vendor/object-0.30.4/.cargo-checksum.json +0 -1
  1399. data/ext/cargo-vendor/object-0.30.4/CHANGELOG.md +0 -524
  1400. data/ext/cargo-vendor/object-0.30.4/Cargo.toml +0 -154
  1401. data/ext/cargo-vendor/object-0.30.4/README.md +0 -58
  1402. data/ext/cargo-vendor/object-0.30.4/clippy.toml +0 -1
  1403. data/ext/cargo-vendor/object-0.30.4/src/common.rs +0 -480
  1404. data/ext/cargo-vendor/object-0.30.4/src/elf.rs +0 -6751
  1405. data/ext/cargo-vendor/object-0.30.4/src/endian.rs +0 -771
  1406. data/ext/cargo-vendor/object-0.30.4/src/lib.rs +0 -117
  1407. data/ext/cargo-vendor/object-0.30.4/src/macho.rs +0 -3307
  1408. data/ext/cargo-vendor/object-0.30.4/src/pe.rs +0 -3050
  1409. data/ext/cargo-vendor/object-0.30.4/src/read/any.rs +0 -1341
  1410. data/ext/cargo-vendor/object-0.30.4/src/read/coff/comdat.rs +0 -167
  1411. data/ext/cargo-vendor/object-0.30.4/src/read/coff/file.rs +0 -247
  1412. data/ext/cargo-vendor/object-0.30.4/src/read/coff/mod.rs +0 -18
  1413. data/ext/cargo-vendor/object-0.30.4/src/read/coff/relocation.rs +0 -91
  1414. data/ext/cargo-vendor/object-0.30.4/src/read/coff/section.rs +0 -524
  1415. data/ext/cargo-vendor/object-0.30.4/src/read/coff/symbol.rs +0 -526
  1416. data/ext/cargo-vendor/object-0.30.4/src/read/elf/comdat.rs +0 -162
  1417. data/ext/cargo-vendor/object-0.30.4/src/read/elf/file.rs +0 -885
  1418. data/ext/cargo-vendor/object-0.30.4/src/read/elf/hash.rs +0 -220
  1419. data/ext/cargo-vendor/object-0.30.4/src/read/elf/mod.rs +0 -39
  1420. data/ext/cargo-vendor/object-0.30.4/src/read/elf/note.rs +0 -185
  1421. data/ext/cargo-vendor/object-0.30.4/src/read/elf/relocation.rs +0 -571
  1422. data/ext/cargo-vendor/object-0.30.4/src/read/elf/section.rs +0 -1090
  1423. data/ext/cargo-vendor/object-0.30.4/src/read/elf/segment.rs +0 -333
  1424. data/ext/cargo-vendor/object-0.30.4/src/read/elf/symbol.rs +0 -580
  1425. data/ext/cargo-vendor/object-0.30.4/src/read/elf/version.rs +0 -421
  1426. data/ext/cargo-vendor/object-0.30.4/src/read/macho/dyld_cache.rs +0 -343
  1427. data/ext/cargo-vendor/object-0.30.4/src/read/macho/file.rs +0 -731
  1428. data/ext/cargo-vendor/object-0.30.4/src/read/macho/load_command.rs +0 -353
  1429. data/ext/cargo-vendor/object-0.30.4/src/read/macho/relocation.rs +0 -126
  1430. data/ext/cargo-vendor/object-0.30.4/src/read/macho/section.rs +0 -384
  1431. data/ext/cargo-vendor/object-0.30.4/src/read/macho/segment.rs +0 -303
  1432. data/ext/cargo-vendor/object-0.30.4/src/read/macho/symbol.rs +0 -488
  1433. data/ext/cargo-vendor/object-0.30.4/src/read/mod.rs +0 -725
  1434. data/ext/cargo-vendor/object-0.30.4/src/read/pe/data_directory.rs +0 -211
  1435. data/ext/cargo-vendor/object-0.30.4/src/read/pe/file.rs +0 -1029
  1436. data/ext/cargo-vendor/object-0.30.4/src/read/pe/resource.rs +0 -207
  1437. data/ext/cargo-vendor/object-0.30.4/src/read/pe/rich.rs +0 -91
  1438. data/ext/cargo-vendor/object-0.30.4/src/read/pe/section.rs +0 -436
  1439. data/ext/cargo-vendor/object-0.30.4/src/read/read_cache.rs +0 -185
  1440. data/ext/cargo-vendor/object-0.30.4/src/read/read_ref.rs +0 -137
  1441. data/ext/cargo-vendor/object-0.30.4/src/read/traits.rs +0 -469
  1442. data/ext/cargo-vendor/object-0.30.4/src/read/util.rs +0 -383
  1443. data/ext/cargo-vendor/object-0.30.4/src/read/wasm.rs +0 -908
  1444. data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/comdat.rs +0 -130
  1445. data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/relocation.rs +0 -128
  1446. data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/section.rs +0 -426
  1447. data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/segment.rs +0 -115
  1448. data/ext/cargo-vendor/object-0.30.4/src/read/xcoff/symbol.rs +0 -634
  1449. data/ext/cargo-vendor/object-0.30.4/src/write/coff.rs +0 -713
  1450. data/ext/cargo-vendor/object-0.30.4/src/write/elf/object.rs +0 -838
  1451. data/ext/cargo-vendor/object-0.30.4/src/write/elf/writer.rs +0 -1955
  1452. data/ext/cargo-vendor/object-0.30.4/src/write/macho.rs +0 -876
  1453. data/ext/cargo-vendor/object-0.30.4/src/write/mod.rs +0 -917
  1454. data/ext/cargo-vendor/object-0.30.4/src/write/string.rs +0 -159
  1455. data/ext/cargo-vendor/object-0.30.4/src/write/util.rs +0 -210
  1456. data/ext/cargo-vendor/object-0.30.4/src/xcoff.rs +0 -893
  1457. data/ext/cargo-vendor/object-0.30.4/tests/read/coff.rs +0 -23
  1458. data/ext/cargo-vendor/object-0.30.4/tests/round_trip/elf.rs +0 -218
  1459. data/ext/cargo-vendor/object-0.30.4/tests/round_trip/mod.rs +0 -451
  1460. data/ext/cargo-vendor/pulldown-cmark-0.8.0/.cargo-checksum.json +0 -1
  1461. data/ext/cargo-vendor/pulldown-cmark-0.8.0/CONTRIBUTING.md +0 -21
  1462. data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.lock +0 -924
  1463. data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.toml +0 -68
  1464. data/ext/cargo-vendor/pulldown-cmark-0.8.0/README.md +0 -152
  1465. data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/html_rendering.rs +0 -101
  1466. data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/lib.rs +0 -49
  1467. data/ext/cargo-vendor/pulldown-cmark-0.8.0/build.rs +0 -186
  1468. data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/broken-link-callbacks.rs +0 -37
  1469. data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/event-filter.rs +0 -29
  1470. data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/string-to-string.rs +0 -26
  1471. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/escape.rs +0 -356
  1472. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/html.rs +0 -461
  1473. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/lib.rs +0 -76
  1474. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/linklabel.rs +0 -135
  1475. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/main.rs +0 -109
  1476. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/parse.rs +0 -3374
  1477. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/puncttable.rs +0 -351
  1478. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/scanners.rs +0 -1308
  1479. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/simd.rs +0 -248
  1480. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/strings.rs +0 -243
  1481. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/tree.rs +0 -216
  1482. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/errors.rs +0 -44
  1483. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/html.rs +0 -252
  1484. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/lib.rs +0 -425
  1485. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_strikethrough.rs +0 -27
  1486. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_table.rs +0 -205
  1487. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/mod.rs +0 -13
  1488. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/regression.rs +0 -953
  1489. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/spec.rs +0 -8447
  1490. data/ext/cargo-vendor/quote-1.0.32/.cargo-checksum.json +0 -1
  1491. data/ext/cargo-vendor/quote-1.0.32/Cargo.toml +0 -50
  1492. data/ext/cargo-vendor/quote-1.0.32/src/lib.rs +0 -1444
  1493. data/ext/cargo-vendor/quote-1.0.32/src/runtime.rs +0 -496
  1494. data/ext/cargo-vendor/serde-1.0.183/.cargo-checksum.json +0 -1
  1495. data/ext/cargo-vendor/serde-1.0.183/Cargo.toml +0 -66
  1496. data/ext/cargo-vendor/serde-1.0.183/src/lib.rs +0 -327
  1497. data/ext/cargo-vendor/serde-1.0.183/src/private/ser.rs +0 -1372
  1498. data/ext/cargo-vendor/serde_derive-1.0.183/.cargo-checksum.json +0 -1
  1499. data/ext/cargo-vendor/serde_derive-1.0.183/Cargo.toml +0 -62
  1500. data/ext/cargo-vendor/serde_derive-1.0.183/serde_derive-x86_64-unknown-linux-gnu +0 -0
  1501. data/ext/cargo-vendor/serde_derive-1.0.183/src/buffer.rs +0 -69
  1502. data/ext/cargo-vendor/serde_derive-1.0.183/src/bytecode.rs +0 -17
  1503. data/ext/cargo-vendor/serde_derive-1.0.183/src/de.rs +0 -3143
  1504. data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/attr.rs +0 -1869
  1505. data/ext/cargo-vendor/serde_derive-1.0.183/src/internals/symbol.rs +0 -70
  1506. data/ext/cargo-vendor/serde_derive-1.0.183/src/lib.rs +0 -22
  1507. data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_from_source.rs +0 -35
  1508. data/ext/cargo-vendor/serde_derive-1.0.183/src/lib_precompiled.rs +0 -234
  1509. data/ext/cargo-vendor/serde_derive-1.0.183/src/ser.rs +0 -1353
  1510. data/ext/cargo-vendor/serde_json-1.0.104/.cargo-checksum.json +0 -1
  1511. data/ext/cargo-vendor/serde_json-1.0.104/Cargo.toml +0 -109
  1512. data/ext/cargo-vendor/serde_json-1.0.104/src/de.rs +0 -2643
  1513. data/ext/cargo-vendor/serde_json-1.0.104/src/lib.rs +0 -418
  1514. data/ext/cargo-vendor/serde_json-1.0.104/src/ser.rs +0 -2234
  1515. data/ext/cargo-vendor/serde_json-1.0.104/src/value/de.rs +0 -1403
  1516. data/ext/cargo-vendor/serde_json-1.0.104/src/value/ser.rs +0 -1053
  1517. data/ext/cargo-vendor/serde_json-1.0.104/tests/test.rs +0 -2502
  1518. data/ext/cargo-vendor/syn-2.0.28/.cargo-checksum.json +0 -1
  1519. data/ext/cargo-vendor/syn-2.0.28/Cargo.toml +0 -150
  1520. data/ext/cargo-vendor/syn-2.0.28/src/custom_keyword.rs +0 -259
  1521. data/ext/cargo-vendor/syn-2.0.28/src/custom_punctuation.rs +0 -302
  1522. data/ext/cargo-vendor/syn-2.0.28/src/export.rs +0 -47
  1523. data/ext/cargo-vendor/syn-2.0.28/src/group.rs +0 -283
  1524. data/ext/cargo-vendor/syn-2.0.28/src/lib.rs +0 -970
  1525. data/ext/cargo-vendor/syn-2.0.28/src/parse_quote.rs +0 -178
  1526. data/ext/cargo-vendor/syn-2.0.28/src/span.rs +0 -62
  1527. data/ext/cargo-vendor/syn-2.0.28/src/token.rs +0 -1068
  1528. data/ext/cargo-vendor/syn-2.0.28/tests/common/eq.rs +0 -866
  1529. data/ext/cargo-vendor/system-interface-0.25.9/.cargo-checksum.json +0 -1
  1530. data/ext/cargo-vendor/system-interface-0.25.9/Cargo.toml +0 -105
  1531. data/ext/cargo-vendor/system-interface-0.25.9/build.rs +0 -55
  1532. data/ext/cargo-vendor/system-interface-0.25.9/src/fs/file_io_ext.rs +0 -1186
  1533. data/ext/cargo-vendor/thiserror-1.0.44/.cargo-checksum.json +0 -1
  1534. data/ext/cargo-vendor/thiserror-1.0.44/Cargo.toml +0 -48
  1535. data/ext/cargo-vendor/thiserror-1.0.44/build.rs +0 -66
  1536. data/ext/cargo-vendor/thiserror-1.0.44/src/aserror.rs +0 -48
  1537. data/ext/cargo-vendor/thiserror-1.0.44/src/display.rs +0 -28
  1538. data/ext/cargo-vendor/thiserror-1.0.44/src/lib.rs +0 -255
  1539. data/ext/cargo-vendor/thiserror-1.0.44/src/provide.rs +0 -15
  1540. data/ext/cargo-vendor/thiserror-1.0.44/tests/test_backtrace.rs +0 -297
  1541. data/ext/cargo-vendor/thiserror-1.0.44/tests/test_option.rs +0 -108
  1542. data/ext/cargo-vendor/thiserror-impl-1.0.44/.cargo-checksum.json +0 -1
  1543. data/ext/cargo-vendor/thiserror-impl-1.0.44/Cargo.toml +0 -36
  1544. data/ext/cargo-vendor/thiserror-impl-1.0.44/src/expand.rs +0 -545
  1545. data/ext/cargo-vendor/tokio-1.30.0/.cargo-checksum.json +0 -1
  1546. data/ext/cargo-vendor/tokio-1.30.0/CHANGELOG.md +0 -2952
  1547. data/ext/cargo-vendor/tokio-1.30.0/Cargo.toml +0 -227
  1548. data/ext/cargo-vendor/tokio-1.30.0/README.md +0 -244
  1549. data/ext/cargo-vendor/tokio-1.30.0/src/io/async_fd.rs +0 -1252
  1550. data/ext/cargo-vendor/tokio-1.30.0/src/io/interest.rs +0 -158
  1551. data/ext/cargo-vendor/tokio-1.30.0/src/io/ready.rs +0 -293
  1552. data/ext/cargo-vendor/tokio-1.30.0/src/io/split.rs +0 -184
  1553. data/ext/cargo-vendor/tokio-1.30.0/src/io/util/async_read_ext.rs +0 -1295
  1554. data/ext/cargo-vendor/tokio-1.30.0/src/process/mod.rs +0 -1680
  1555. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/builder.rs +0 -1323
  1556. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/io/scheduled_io.rs +0 -513
  1557. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/batch.rs +0 -162
  1558. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/mock.rs +0 -55
  1559. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/runtime.rs +0 -883
  1560. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/metrics/worker.rs +0 -80
  1561. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/current_thread/mod.rs +0 -764
  1562. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread/stats.rs +0 -140
  1563. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/handle.rs +0 -75
  1564. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/idle.rs +0 -425
  1565. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/stats.rs +0 -171
  1566. data/ext/cargo-vendor/tokio-1.30.0/src/runtime/scheduler/multi_thread_alt/worker.rs +0 -1567
  1567. data/ext/cargo-vendor/tokio-1.30.0/src/sync/broadcast.rs +0 -1440
  1568. data/ext/cargo-vendor/tokio-1.30.0/tests/io_async_fd.rs +0 -687
  1569. data/ext/cargo-vendor/tokio-1.30.0/tests/io_split.rs +0 -79
  1570. data/ext/cargo-vendor/tokio-1.30.0/tests/rt_metrics.rs +0 -718
  1571. data/ext/cargo-vendor/unicase-2.6.0/.cargo-checksum.json +0 -1
  1572. data/ext/cargo-vendor/unicase-2.6.0/Cargo.toml +0 -30
  1573. data/ext/cargo-vendor/unicase-2.6.0/README.md +0 -31
  1574. data/ext/cargo-vendor/unicase-2.6.0/src/ascii.rs +0 -187
  1575. data/ext/cargo-vendor/unicase-2.6.0/src/lib.rs +0 -465
  1576. data/ext/cargo-vendor/unicase-2.6.0/src/unicode/map.rs +0 -1995
  1577. data/ext/cargo-vendor/unicase-2.6.0/src/unicode/mod.rs +0 -201
  1578. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/.cargo-checksum.json +0 -1
  1579. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/Cargo.toml +0 -90
  1580. data/ext/cargo-vendor/wasi-cap-std-sync-10.0.1/src/sched/unix.rs +0 -82
  1581. data/ext/cargo-vendor/wasi-common-10.0.1/.cargo-checksum.json +0 -1
  1582. data/ext/cargo-vendor/wasi-common-10.0.1/Cargo.toml +0 -87
  1583. data/ext/cargo-vendor/wasi-common-10.0.1/src/file.rs +0 -262
  1584. data/ext/cargo-vendor/wasi-common-10.0.1/src/sched/subscription.rs +0 -76
  1585. data/ext/cargo-vendor/wasi-common-10.0.1/src/snapshots/preview_1/error.rs +0 -255
  1586. data/ext/cargo-vendor/wasm-encoder-0.29.0/.cargo-checksum.json +0 -1
  1587. data/ext/cargo-vendor/wasm-encoder-0.29.0/Cargo.toml +0 -33
  1588. data/ext/cargo-vendor/wasm-encoder-0.29.0/README.md +0 -80
  1589. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/aliases.rs +0 -160
  1590. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/canonicals.rs +0 -159
  1591. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/components.rs +0 -29
  1592. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/exports.rs +0 -127
  1593. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/imports.rs +0 -200
  1594. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/instances.rs +0 -200
  1595. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/modules.rs +0 -29
  1596. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/names.rs +0 -149
  1597. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/start.rs +0 -52
  1598. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component/types.rs +0 -759
  1599. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/component.rs +0 -160
  1600. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/code.rs +0 -2913
  1601. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/custom.rs +0 -55
  1602. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/data.rs +0 -185
  1603. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/dump.rs +0 -627
  1604. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/elements.rs +0 -224
  1605. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/exports.rs +0 -85
  1606. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/functions.rs +0 -63
  1607. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/globals.rs +0 -90
  1608. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/imports.rs +0 -142
  1609. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/linking.rs +0 -263
  1610. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/memories.rs +0 -99
  1611. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/names.rs +0 -265
  1612. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/producers.rs +0 -180
  1613. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/start.rs +0 -39
  1614. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tables.rs +0 -104
  1615. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/tags.rs +0 -85
  1616. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core/types.rs +0 -246
  1617. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/core.rs +0 -168
  1618. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/lib.rs +0 -215
  1619. data/ext/cargo-vendor/wasm-encoder-0.29.0/src/raw.rs +0 -30
  1620. data/ext/cargo-vendor/wasmparser-0.107.0/.cargo-checksum.json +0 -1
  1621. data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.lock +0 -621
  1622. data/ext/cargo-vendor/wasmparser-0.107.0/Cargo.toml +0 -54
  1623. data/ext/cargo-vendor/wasmparser-0.107.0/benches/benchmark.rs +0 -351
  1624. data/ext/cargo-vendor/wasmparser-0.107.0/src/lib.rs +0 -723
  1625. data/ext/cargo-vendor/wasmparser-0.107.0/src/limits.rs +0 -57
  1626. data/ext/cargo-vendor/wasmparser-0.107.0/src/parser.rs +0 -1535
  1627. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/canonicals.rs +0 -119
  1628. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/component/types.rs +0 -548
  1629. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/elements.rs +0 -158
  1630. data/ext/cargo-vendor/wasmparser-0.107.0/src/readers/core/types.rs +0 -874
  1631. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/component.rs +0 -3082
  1632. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/core.rs +0 -1334
  1633. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/operators.rs +0 -3463
  1634. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator/types.rs +0 -3070
  1635. data/ext/cargo-vendor/wasmparser-0.107.0/src/validator.rs +0 -1589
  1636. data/ext/cargo-vendor/wasmparser-0.107.0/tests/big-module.rs +0 -32
  1637. data/ext/cargo-vendor/wasmtime-10.0.1/.cargo-checksum.json +0 -1
  1638. data/ext/cargo-vendor/wasmtime-10.0.1/Cargo.toml +0 -183
  1639. data/ext/cargo-vendor/wasmtime-10.0.1/README.md +0 -119
  1640. data/ext/cargo-vendor/wasmtime-10.0.1/src/compiler.rs +0 -710
  1641. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/component.rs +0 -382
  1642. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/host.rs +0 -423
  1643. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/options.rs +0 -237
  1644. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func/typed.rs +0 -2059
  1645. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/func.rs +0 -684
  1646. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/instance.rs +0 -727
  1647. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/linker.rs +0 -404
  1648. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/matching.rs +0 -112
  1649. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/mod.rs +0 -313
  1650. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/storage.rs +0 -43
  1651. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/types.rs +0 -545
  1652. data/ext/cargo-vendor/wasmtime-10.0.1/src/component/values.rs +0 -1219
  1653. data/ext/cargo-vendor/wasmtime-10.0.1/src/config.rs +0 -2066
  1654. data/ext/cargo-vendor/wasmtime-10.0.1/src/engine/serialization.rs +0 -622
  1655. data/ext/cargo-vendor/wasmtime-10.0.1/src/engine.rs +0 -757
  1656. data/ext/cargo-vendor/wasmtime-10.0.1/src/externals.rs +0 -763
  1657. data/ext/cargo-vendor/wasmtime-10.0.1/src/func.rs +0 -2355
  1658. data/ext/cargo-vendor/wasmtime-10.0.1/src/instance.rs +0 -905
  1659. data/ext/cargo-vendor/wasmtime-10.0.1/src/lib.rs +0 -486
  1660. data/ext/cargo-vendor/wasmtime-10.0.1/src/memory.rs +0 -950
  1661. data/ext/cargo-vendor/wasmtime-10.0.1/src/module/registry.rs +0 -321
  1662. data/ext/cargo-vendor/wasmtime-10.0.1/src/module.rs +0 -1274
  1663. data/ext/cargo-vendor/wasmtime-10.0.1/src/store/data.rs +0 -275
  1664. data/ext/cargo-vendor/wasmtime-10.0.1/src/store/func_refs.rs +0 -85
  1665. data/ext/cargo-vendor/wasmtime-10.0.1/src/store.rs +0 -2166
  1666. data/ext/cargo-vendor/wasmtime-10.0.1/src/trap.rs +0 -631
  1667. data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/.cargo-checksum.json +0 -1
  1668. data/ext/cargo-vendor/wasmtime-asm-macros-10.0.1/Cargo.toml +0 -22
  1669. data/ext/cargo-vendor/wasmtime-cache-10.0.1/.cargo-checksum.json +0 -1
  1670. data/ext/cargo-vendor/wasmtime-cache-10.0.1/Cargo.toml +0 -73
  1671. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/.cargo-checksum.json +0 -1
  1672. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/Cargo.toml +0 -58
  1673. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/bindgen.rs +0 -316
  1674. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/src/component.rs +0 -1199
  1675. data/ext/cargo-vendor/wasmtime-component-macro-10.0.1/tests/codegen.rs +0 -24
  1676. data/ext/cargo-vendor/wasmtime-component-util-10.0.1/.cargo-checksum.json +0 -1
  1677. data/ext/cargo-vendor/wasmtime-component-util-10.0.1/Cargo.toml +0 -25
  1678. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/.cargo-checksum.json +0 -1
  1679. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/Cargo.toml +0 -90
  1680. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/builder.rs +0 -108
  1681. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler/component.rs +0 -578
  1682. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/compiler.rs +0 -1200
  1683. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/debug/transform/expression.rs +0 -1250
  1684. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/debug/transform/unit.rs +0 -521
  1685. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/debug/transform/utils.rs +0 -187
  1686. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/func_environ.rs +0 -2206
  1687. data/ext/cargo-vendor/wasmtime-cranelift-10.0.1/src/lib.rs +0 -178
  1688. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/.cargo-checksum.json +0 -1
  1689. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/Cargo.toml +0 -57
  1690. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/src/lib.rs +0 -120
  1691. data/ext/cargo-vendor/wasmtime-cranelift-shared-10.0.1/src/obj.rs +0 -564
  1692. data/ext/cargo-vendor/wasmtime-environ-10.0.1/.cargo-checksum.json +0 -1
  1693. data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.lock +0 -681
  1694. data/ext/cargo-vendor/wasmtime-environ-10.0.1/Cargo.toml +0 -116
  1695. data/ext/cargo-vendor/wasmtime-environ-10.0.1/examples/factc.rs +0 -212
  1696. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/compilation.rs +0 -400
  1697. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/compiler.rs +0 -84
  1698. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/dfg.rs +0 -629
  1699. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/info.rs +0 -514
  1700. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate/adapt.rs +0 -449
  1701. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate/inline.rs +0 -1067
  1702. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/translate.rs +0 -1070
  1703. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/types.rs +0 -1916
  1704. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component/vmcomponent_offsets.rs +0 -336
  1705. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/component.rs +0 -72
  1706. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/signature.rs +0 -118
  1707. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/trampoline.rs +0 -3157
  1708. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact/transcode.rs +0 -168
  1709. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/fact.rs +0 -623
  1710. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/module_environ.rs +0 -884
  1711. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/obj.rs +0 -171
  1712. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/trap_encoding.rs +0 -238
  1713. data/ext/cargo-vendor/wasmtime-environ-10.0.1/src/tunables.rs +0 -111
  1714. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/.cargo-checksum.json +0 -1
  1715. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/Cargo.toml +0 -46
  1716. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/build.rs +0 -23
  1717. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/aarch64.rs +0 -184
  1718. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/arm.rs +0 -85
  1719. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/riscv64.rs +0 -158
  1720. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/s390x.S +0 -120
  1721. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix/x86_64.rs +0 -160
  1722. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/unix.rs +0 -212
  1723. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/windows.c +0 -5
  1724. data/ext/cargo-vendor/wasmtime-fiber-10.0.1/src/windows.rs +0 -161
  1725. data/ext/cargo-vendor/wasmtime-jit-10.0.1/.cargo-checksum.json +0 -1
  1726. data/ext/cargo-vendor/wasmtime-jit-10.0.1/Cargo.toml +0 -104
  1727. data/ext/cargo-vendor/wasmtime-jit-10.0.1/src/code_memory.rs +0 -309
  1728. data/ext/cargo-vendor/wasmtime-jit-10.0.1/src/profiling.rs +0 -108
  1729. data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/.cargo-checksum.json +0 -1
  1730. data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/Cargo.toml +0 -55
  1731. data/ext/cargo-vendor/wasmtime-jit-debug-10.0.1/src/gdb_jit_int.rs +0 -128
  1732. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/.cargo-checksum.json +0 -1
  1733. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-10.0.1/Cargo.toml +0 -37
  1734. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/.cargo-checksum.json +0 -1
  1735. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/Cargo.toml +0 -110
  1736. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/build.rs +0 -17
  1737. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component/transcode.rs +0 -451
  1738. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/component.rs +0 -701
  1739. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/debug_builtins.rs +0 -58
  1740. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/helpers.c +0 -104
  1741. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/instance/allocator.rs +0 -531
  1742. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/lib.rs +0 -285
  1743. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/libcalls.rs +0 -578
  1744. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/mmap/unix.rs +0 -148
  1745. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/send_sync_ptr.rs +0 -69
  1746. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/aarch64.rs +0 -42
  1747. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/riscv64.rs +0 -43
  1748. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/s390x.S +0 -58
  1749. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/trampolines/x86_64.rs +0 -64
  1750. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/traphandlers/unix.rs +0 -387
  1751. data/ext/cargo-vendor/wasmtime-runtime-10.0.1/src/traphandlers.rs +0 -749
  1752. data/ext/cargo-vendor/wasmtime-types-10.0.1/.cargo-checksum.json +0 -1
  1753. data/ext/cargo-vendor/wasmtime-types-10.0.1/Cargo.toml +0 -34
  1754. data/ext/cargo-vendor/wasmtime-types-10.0.1/src/lib.rs +0 -462
  1755. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/.cargo-checksum.json +0 -1
  1756. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/Cargo.toml +0 -153
  1757. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks/host.rs +0 -73
  1758. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/clocks.rs +0 -17
  1759. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/ctx.rs +0 -206
  1760. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/filesystem.rs +0 -269
  1761. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/mod.rs +0 -44
  1762. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/pipe.rs +0 -233
  1763. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview1/mod.rs +0 -1860
  1764. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/clocks.rs +0 -80
  1765. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/env.rs +0 -48
  1766. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/exit.rs +0 -12
  1767. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/filesystem.rs +0 -1020
  1768. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/io.rs +0 -215
  1769. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/mod.rs +0 -7
  1770. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/poll.rs +0 -84
  1771. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/preview2/random.rs +0 -41
  1772. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/subscription.rs +0 -104
  1773. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched/sync.rs +0 -156
  1774. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/sched.rs +0 -105
  1775. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/stdio.rs +0 -176
  1776. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/stream.rs +0 -210
  1777. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/table.rs +0 -107
  1778. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/wasi/command.rs +0 -43
  1779. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/src/preview2/wasi/mod.rs +0 -30
  1780. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/io/streams.wit +0 -215
  1781. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/deps/poll/poll.wit +0 -41
  1782. data/ext/cargo-vendor/wasmtime-wasi-10.0.1/wit/test.wit +0 -19
  1783. data/ext/cargo-vendor/wasmtime-winch-10.0.1/.cargo-checksum.json +0 -1
  1784. data/ext/cargo-vendor/wasmtime-winch-10.0.1/Cargo.toml +0 -63
  1785. data/ext/cargo-vendor/wasmtime-winch-10.0.1/src/builder.rs +0 -59
  1786. data/ext/cargo-vendor/wasmtime-winch-10.0.1/src/compiler.rs +0 -220
  1787. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/.cargo-checksum.json +0 -1
  1788. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/Cargo.toml +0 -29
  1789. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/lib.rs +0 -1631
  1790. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/rust.rs +0 -473
  1791. data/ext/cargo-vendor/wasmtime-wit-bindgen-10.0.1/src/types.rs +0 -179
  1792. data/ext/cargo-vendor/wast-62.0.1/.cargo-checksum.json +0 -1
  1793. data/ext/cargo-vendor/wast-62.0.1/Cargo.toml +0 -50
  1794. data/ext/cargo-vendor/wast-62.0.1/src/core/binary.rs +0 -1213
  1795. data/ext/cargo-vendor/wast-62.0.1/src/core/custom.rs +0 -236
  1796. data/ext/cargo-vendor/wast-62.0.1/src/core/func.rs +0 -121
  1797. data/ext/cargo-vendor/wast-62.0.1/src/core/module.rs +0 -213
  1798. data/ext/cargo-vendor/wast-62.0.1/src/encode.rs +0 -81
  1799. data/ext/cargo-vendor/wast-62.0.1/src/lib.rs +0 -532
  1800. data/ext/cargo-vendor/wat-1.0.69/.cargo-checksum.json +0 -1
  1801. data/ext/cargo-vendor/wat-1.0.69/Cargo.toml +0 -27
  1802. data/ext/cargo-vendor/wiggle-10.0.1/.cargo-checksum.json +0 -1
  1803. data/ext/cargo-vendor/wiggle-10.0.1/Cargo.toml +0 -106
  1804. data/ext/cargo-vendor/wiggle-generate-10.0.1/.cargo-checksum.json +0 -1
  1805. data/ext/cargo-vendor/wiggle-generate-10.0.1/Cargo.toml +0 -58
  1806. data/ext/cargo-vendor/wiggle-generate-10.0.1/src/config.rs +0 -696
  1807. data/ext/cargo-vendor/wiggle-generate-10.0.1/src/types/flags.rs +0 -94
  1808. data/ext/cargo-vendor/wiggle-macro-10.0.1/.cargo-checksum.json +0 -1
  1809. data/ext/cargo-vendor/wiggle-macro-10.0.1/Cargo.toml +0 -55
  1810. data/ext/cargo-vendor/wiggle-macro-10.0.1/LICENSE +0 -220
  1811. data/ext/cargo-vendor/winch-codegen-0.8.1/.cargo-checksum.json +0 -1
  1812. data/ext/cargo-vendor/winch-codegen-0.8.1/Cargo.toml +0 -62
  1813. data/ext/cargo-vendor/winch-codegen-0.8.1/src/abi/mod.rs +0 -237
  1814. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/call.rs +0 -225
  1815. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/context.rs +0 -270
  1816. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/env.rs +0 -52
  1817. data/ext/cargo-vendor/winch-codegen-0.8.1/src/codegen/mod.rs +0 -214
  1818. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/abi.rs +0 -243
  1819. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/asm.rs +0 -300
  1820. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/aarch64/masm.rs +0 -230
  1821. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/mod.rs +0 -215
  1822. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/abi.rs +0 -369
  1823. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/asm.rs +0 -576
  1824. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/masm.rs +0 -288
  1825. data/ext/cargo-vendor/winch-codegen-0.8.1/src/isa/x64/regs.rs +0 -192
  1826. data/ext/cargo-vendor/winch-codegen-0.8.1/src/masm.rs +0 -255
  1827. data/ext/cargo-vendor/winch-codegen-0.8.1/src/stack.rs +0 -235
  1828. data/ext/cargo-vendor/winch-codegen-0.8.1/src/trampoline.rs +0 -494
  1829. data/ext/cargo-vendor/winch-codegen-0.8.1/src/visitor.rs +0 -353
  1830. data/ext/cargo-vendor/windows-targets-0.48.1/.cargo-checksum.json +0 -1
  1831. data/ext/cargo-vendor/windows-targets-0.48.1/Cargo.toml +0 -41
  1832. data/ext/cargo-vendor/windows-targets-0.48.1/readme.md +0 -88
  1833. data/ext/cargo-vendor/windows-targets-0.48.1/src/lib.rs +0 -55
  1834. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
  1835. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/Cargo.toml +0 -23
  1836. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
  1837. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/.cargo-checksum.json +0 -1
  1838. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/Cargo.toml +0 -23
  1839. data/ext/cargo-vendor/windows_aarch64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
  1840. data/ext/cargo-vendor/windows_i686_gnu-0.48.0/.cargo-checksum.json +0 -1
  1841. data/ext/cargo-vendor/windows_i686_gnu-0.48.0/Cargo.toml +0 -23
  1842. data/ext/cargo-vendor/windows_i686_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
  1843. data/ext/cargo-vendor/windows_i686_msvc-0.48.0/.cargo-checksum.json +0 -1
  1844. data/ext/cargo-vendor/windows_i686_msvc-0.48.0/Cargo.toml +0 -23
  1845. data/ext/cargo-vendor/windows_i686_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
  1846. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/.cargo-checksum.json +0 -1
  1847. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/Cargo.toml +0 -23
  1848. data/ext/cargo-vendor/windows_x86_64_gnu-0.48.0/lib/libwindows.0.48.0.a +0 -0
  1849. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/.cargo-checksum.json +0 -1
  1850. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/Cargo.toml +0 -23
  1851. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.48.0/lib/libwindows.0.48.0.a +0 -0
  1852. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/.cargo-checksum.json +0 -1
  1853. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/Cargo.toml +0 -23
  1854. data/ext/cargo-vendor/windows_x86_64_msvc-0.48.0/lib/windows.0.48.0.lib +0 -0
  1855. data/ext/cargo-vendor/winx-0.35.1/.cargo-checksum.json +0 -1
  1856. data/ext/cargo-vendor/winx-0.35.1/Cargo.toml +0 -50
  1857. data/ext/cargo-vendor/winx-0.35.1/LICENSE +0 -220
  1858. data/ext/cargo-vendor/winx-0.35.1/README.md +0 -5
  1859. data/ext/cargo-vendor/winx-0.35.1/src/cvt.rs +0 -24
  1860. data/ext/cargo-vendor/winx-0.35.1/src/file.rs +0 -420
  1861. data/ext/cargo-vendor/winx-0.35.1/src/lib.rs +0 -31
  1862. data/ext/cargo-vendor/winx-0.35.1/src/ntdll.rs +0 -69
  1863. data/ext/cargo-vendor/winx-0.35.1/src/time.rs +0 -11
  1864. data/ext/cargo-vendor/winx-0.35.1/src/winapi_util/file.rs +0 -171
  1865. data/ext/cargo-vendor/winx-0.35.1/src/winapi_util/mod.rs +0 -9
  1866. data/ext/cargo-vendor/wit-parser-0.8.0/.cargo-checksum.json +0 -1
  1867. data/ext/cargo-vendor/wit-parser-0.8.0/Cargo.toml +0 -62
  1868. data/ext/cargo-vendor/wit-parser-0.8.0/src/abi.rs +0 -2134
  1869. data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/lex.rs +0 -679
  1870. data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/resolve.rs +0 -1122
  1871. data/ext/cargo-vendor/wit-parser-0.8.0/src/ast/toposort.rs +0 -204
  1872. data/ext/cargo-vendor/wit-parser-0.8.0/src/ast.rs +0 -1207
  1873. data/ext/cargo-vendor/wit-parser-0.8.0/src/lib.rs +0 -622
  1874. data/ext/cargo-vendor/wit-parser-0.8.0/src/live.rs +0 -111
  1875. data/ext/cargo-vendor/wit-parser-0.8.0/src/resolve.rs +0 -1307
  1876. data/ext/cargo-vendor/wit-parser-0.8.0/src/sizealign.rs +0 -140
  1877. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/bad-pkg1.wit.result +0 -8
  1878. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -8
  1879. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unknown-interface.wit.result +0 -5
  1880. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -5
  1881. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -5
  1882. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use1.wit.result +0 -5
  1883. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/unresolved-use9.wit.result +0 -5
  1884. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle1.wit.result +0 -5
  1885. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/use-cycle4.wit.result +0 -5
  1886. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/parse-fail/world-interface-clash.wit.result +0 -5
  1887. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/shared-types.wit +0 -10
  1888. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-diamond.wit +0 -22
  1889. data/ext/cargo-vendor/wit-parser-0.8.0/tests/ui/world-same-fields4.wit +0 -13
  1890. /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/LICENSE-APACHE +0 -0
  1891. /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/LICENSE-MIT +0 -0
  1892. /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/README.md +0 -0
  1893. /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/bench.plot.r +0 -0
  1894. /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/benchmark.sh +0 -0
  1895. /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/coverage.sh +0 -0
  1896. /data/ext/cargo-vendor/{addr2line-0.19.0 → addr2line-0.21.0}/rustfmt.toml +0 -0
  1897. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/COPYING +0 -0
  1898. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/DESIGN.md +0 -0
  1899. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/LICENSE-MIT +0 -0
  1900. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/README.md +0 -0
  1901. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/UNLICENSE +0 -0
  1902. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/rustfmt.toml +0 -0
  1903. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/automaton.rs +0 -0
  1904. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/macros.rs +0 -0
  1905. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/nfa/mod.rs +0 -0
  1906. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/api.rs +0 -0
  1907. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/mod.rs +0 -0
  1908. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/pattern.rs +0 -0
  1909. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/rabinkarp.rs +0 -0
  1910. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/README.md +0 -0
  1911. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/compile.rs +0 -0
  1912. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/mod.rs +0 -0
  1913. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/teddy/runtime.rs +0 -0
  1914. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/tests.rs +0 -0
  1915. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/packed/vector.rs +0 -0
  1916. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/tests.rs +0 -0
  1917. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/transducer.rs +0 -0
  1918. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/alphabet.rs +0 -0
  1919. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/buffer.rs +0 -0
  1920. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/byte_frequencies.rs +0 -0
  1921. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/debug.rs +0 -0
  1922. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/error.rs +0 -0
  1923. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/int.rs +0 -0
  1924. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/mod.rs +0 -0
  1925. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/prefilter.rs +0 -0
  1926. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/primitives.rs +0 -0
  1927. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/remapper.rs +0 -0
  1928. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/search.rs +0 -0
  1929. /data/ext/cargo-vendor/{aho-corasick-1.0.3 → aho-corasick-1.0.4}/src/util/special.rs +0 -0
  1930. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-APACHE +0 -0
  1931. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/LICENSE-MIT +0 -0
  1932. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/README.md +0 -0
  1933. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/rust-toolchain.toml +0 -0
  1934. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/chain.rs +0 -0
  1935. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ensure.rs +0 -0
  1936. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/fmt.rs +0 -0
  1937. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/macros.rs +0 -0
  1938. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/src/ptr.rs +0 -0
  1939. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/common/mod.rs +0 -0
  1940. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/compiletest.rs +0 -0
  1941. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/drop/mod.rs +0 -0
  1942. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_autotrait.rs +0 -0
  1943. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_backtrace.rs +0 -0
  1944. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_boxed.rs +0 -0
  1945. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_chain.rs +0 -0
  1946. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_context.rs +0 -0
  1947. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_convert.rs +0 -0
  1948. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_downcast.rs +0 -0
  1949. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_ffi.rs +0 -0
  1950. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_fmt.rs +0 -0
  1951. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_macros.rs +0 -0
  1952. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_repr.rs +0 -0
  1953. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/test_source.rs +0 -0
  1954. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.rs +0 -0
  1955. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/chained-comparison.stderr +0 -0
  1956. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.rs +0 -0
  1957. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/empty-ensure.stderr +0 -0
  1958. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.rs +0 -0
  1959. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/must-use.stderr +0 -0
  1960. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.rs +0 -0
  1961. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/no-impl.stderr +0 -0
  1962. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.rs +0 -0
  1963. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/temporary-value.stderr +0 -0
  1964. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.rs +0 -0
  1965. /data/ext/cargo-vendor/{anyhow-1.0.72 → anyhow-1.0.75}/tests/ui/wrong-interpolation.stderr +0 -0
  1966. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-APACHE +0 -0
  1967. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/LICENSE-MIT +0 -0
  1968. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/README.md +0 -0
  1969. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/build.rs +0 -0
  1970. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/args.rs +0 -0
  1971. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/bound.rs +0 -0
  1972. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/lifetime.rs +0 -0
  1973. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/parse.rs +0 -0
  1974. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/receiver.rs +0 -0
  1975. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/src/verbatim.rs +0 -0
  1976. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/compiletest.rs +0 -0
  1977. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/executor/mod.rs +0 -0
  1978. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.rs +0 -0
  1979. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/arg-implementation-detail.stderr +0 -0
  1980. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.rs +0 -0
  1981. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/bare-trait-object.stderr +0 -0
  1982. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/consider-restricting.rs +0 -0
  1983. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.rs +0 -0
  1984. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/delimiter-span.stderr +0 -0
  1985. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.rs +0 -0
  1986. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-defined-here.stderr +0 -0
  1987. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.rs +0 -0
  1988. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/lifetime-span.stderr +0 -0
  1989. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.rs +0 -0
  1990. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-impl.stderr +0 -0
  1991. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.rs +0 -0
  1992. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-async-in-trait.stderr +0 -0
  1993. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.rs +0 -0
  1994. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/missing-body.stderr +0 -0
  1995. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.rs +0 -0
  1996. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/must-use.stderr +0 -0
  1997. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.rs +0 -0
  1998. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/self-span.stderr +0 -0
  1999. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/send-not-implemented.rs +0 -0
  2000. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.rs +0 -0
  2001. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unreachable.stderr +0 -0
  2002. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.rs +0 -0
  2003. /data/ext/cargo-vendor/{async-trait-0.1.72 → async-trait-0.1.73}/tests/ui/unsupported-self.stderr +0 -0
  2004. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-APACHE +0 -0
  2005. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/LICENSE-MIT +0 -0
  2006. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/README.md +0 -0
  2007. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/benches/benchmarks.rs +0 -0
  2008. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/backtrace.rs +0 -0
  2009. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/examples/raw.rs +0 -0
  2010. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/android-api.c +0 -0
  2011. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/dbghelp.rs +0 -0
  2012. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/libunwind.rs +0 -0
  2013. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/miri.rs +0 -0
  2014. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/mod.rs +0 -0
  2015. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/backtrace/noop.rs +0 -0
  2016. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/capture.rs +0 -0
  2017. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/dbghelp.rs +0 -0
  2018. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/lib.rs +0 -0
  2019. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/dbghelp.rs +0 -0
  2020. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/coff.rs +0 -0
  2021. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/elf.rs +0 -0
  2022. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_dl_iterate_phdr.rs +0 -0
  2023. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_haiku.rs +0 -0
  2024. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_illumos.rs +0 -0
  2025. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_libnx.rs +0 -0
  2026. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_macos.rs +0 -0
  2027. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/libs_windows.rs +0 -0
  2028. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/macho.rs +0 -0
  2029. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_fake.rs +0 -0
  2030. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_unix.rs +0 -0
  2031. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/mmap_windows.rs +0 -0
  2032. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli/stash.rs +0 -0
  2033. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/gimli.rs +0 -0
  2034. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/miri.rs +0 -0
  2035. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/symbolize/noop.rs +0 -0
  2036. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/src/types.rs +0 -0
  2037. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/auxiliary.rs +0 -0
  2038. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/accuracy/main.rs +0 -0
  2039. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/common/mod.rs +0 -0
  2040. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/concurrent-panics.rs +0 -0
  2041. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/current-exe-mismatch.rs +0 -0
  2042. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/long_fn_name.rs +0 -0
  2043. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/skip_inner_frames.rs +0 -0
  2044. /data/ext/cargo-vendor/{backtrace-0.3.68 → backtrace-0.3.69}/tests/smoke.rs +0 -0
  2045. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/COPYRIGHT +0 -0
  2046. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-APACHE +0 -0
  2047. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2048. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/LICENSE-MIT +0 -0
  2049. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/README.md +0 -0
  2050. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/build.rs +0 -0
  2051. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/dir_entry_ext.rs +0 -0
  2052. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/dir_ext.rs +0 -0
  2053. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/file_type_ext.rs +0 -0
  2054. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/lib.rs +0 -0
  2055. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/metadata_ext.rs +0 -0
  2056. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_follow_ext.rs +0 -0
  2057. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_maybe_dir_ext.rs +0 -0
  2058. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/open_options_sync_ext.rs +0 -0
  2059. /data/ext/cargo-vendor/{cap-fs-ext-1.0.15 → cap-fs-ext-2.0.0}/src/reopen.rs +0 -0
  2060. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/COPYRIGHT +0 -0
  2061. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-APACHE +0 -0
  2062. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2063. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/LICENSE-MIT +0 -0
  2064. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/README.md +0 -0
  2065. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/build.rs +0 -0
  2066. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/assert_same_file.rs +0 -0
  2067. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/canonicalize.rs +0 -0
  2068. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/copy.rs +0 -0
  2069. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/create_dir.rs +0 -0
  2070. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_builder.rs +0 -0
  2071. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_entry.rs +0 -0
  2072. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/dir_options.rs +0 -0
  2073. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/errors.rs +0 -0
  2074. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/file_path_by_searching.rs +0 -0
  2075. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/file_type.rs +0 -0
  2076. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/follow_symlinks.rs +0 -0
  2077. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/hard_link.rs +0 -0
  2078. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/is_file_read_write.rs +0 -0
  2079. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/canonical_path.rs +0 -0
  2080. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/canonicalize.rs +0 -0
  2081. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/cow_component.rs +0 -0
  2082. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/mod.rs +0 -0
  2083. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/open.rs +0 -0
  2084. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/open_entry.rs +0 -0
  2085. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/manually/read_link_one.rs +0 -0
  2086. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/maybe_owned_file.rs +0 -0
  2087. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/metadata.rs +0 -0
  2088. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open.rs +0 -0
  2089. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_ambient.rs +0 -0
  2090. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_dir.rs +0 -0
  2091. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_options.rs +0 -0
  2092. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/open_unchecked_error.rs +0 -0
  2093. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/permissions.rs +0 -0
  2094. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/read_dir.rs +0 -0
  2095. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/read_link.rs +0 -0
  2096. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_dir.rs +0 -0
  2097. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_dir_all.rs +0 -0
  2098. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_file.rs +0 -0
  2099. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/remove_open_dir.rs +0 -0
  2100. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/rename.rs +0 -0
  2101. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/reopen.rs +0 -0
  2102. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/set_permissions.rs +0 -0
  2103. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/set_times.rs +0 -0
  2104. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/stat.rs +0 -0
  2105. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/symlink.rs +0 -0
  2106. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/system_time_spec.rs +0 -0
  2107. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/create_dir.rs +0 -0
  2108. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/hard_link.rs +0 -0
  2109. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/mod.rs +0 -0
  2110. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/open_parent.rs +0 -0
  2111. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/read_link.rs +0 -0
  2112. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/remove_dir.rs +0 -0
  2113. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/remove_file.rs +0 -0
  2114. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/rename.rs +0 -0
  2115. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/set_permissions.rs +0 -0
  2116. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/set_times_nofollow.rs +0 -0
  2117. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/fs/via_parent/symlink.rs +0 -0
  2118. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/lib.rs +0 -0
  2119. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/net/mod.rs +0 -0
  2120. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/fs/file_path.rs +0 -0
  2121. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/fs/mod.rs +0 -0
  2122. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/darwin/mod.rs +0 -0
  2123. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/create_dir_unchecked.rs +0 -0
  2124. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/cvt.rs +0 -0
  2125. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_entry_inner.rs +0 -0
  2126. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_options_ext.rs +0 -0
  2127. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/dir_utils.rs +0 -0
  2128. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/errors.rs +0 -0
  2129. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/file_path.rs +0 -0
  2130. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/file_type_ext.rs +0 -0
  2131. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/hard_link_unchecked.rs +0 -0
  2132. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
  2133. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_root_dir.rs +0 -0
  2134. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/is_same_file.rs +0 -0
  2135. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/mod.rs +0 -0
  2136. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/open_options_ext.rs +0 -0
  2137. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/permissions_ext.rs +0 -0
  2138. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/read_dir_inner.rs +0 -0
  2139. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/read_link_unchecked.rs +0 -0
  2140. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
  2141. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
  2142. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_file_unchecked.rs +0 -0
  2143. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
  2144. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/rename_unchecked.rs +0 -0
  2145. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/set_times_impl.rs +0 -0
  2146. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/fs/symlink_unchecked.rs +0 -0
  2147. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
  2148. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/file_metadata.rs +0 -0
  2149. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/file_path.rs +0 -0
  2150. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/mod.rs +0 -0
  2151. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
  2152. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/open_impl.rs +0 -0
  2153. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
  2154. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/set_times_impl.rs +0 -0
  2155. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/fs/stat_impl.rs +0 -0
  2156. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/linux/mod.rs +0 -0
  2157. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/rustix/mod.rs +0 -0
  2158. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/instant.rs +0 -0
  2159. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/mod.rs +0 -0
  2160. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/monotonic_clock.rs +0 -0
  2161. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/system_clock.rs +0 -0
  2162. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/time/system_time.rs +0 -0
  2163. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/copy.rs +0 -0
  2164. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/create_dir_unchecked.rs +0 -0
  2165. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_entry_inner.rs +0 -0
  2166. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_options_ext.rs +0 -0
  2167. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/dir_utils.rs +0 -0
  2168. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/errors.rs +0 -0
  2169. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/file_type_ext.rs +0 -0
  2170. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/get_path.rs +0 -0
  2171. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/hard_link_unchecked.rs +0 -0
  2172. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/is_file_read_write_impl.rs +0 -0
  2173. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/is_same_file.rs +0 -0
  2174. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/mod.rs +0 -0
  2175. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/oflags.rs +0 -0
  2176. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/open_impl.rs +0 -0
  2177. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/open_options_ext.rs +0 -0
  2178. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_dir_inner.rs +0 -0
  2179. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_link_impl.rs +0 -0
  2180. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/read_link_unchecked.rs +0 -0
  2181. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_dir_all_impl.rs +0 -0
  2182. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_dir_unchecked.rs +0 -0
  2183. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_file_unchecked.rs +0 -0
  2184. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/remove_open_dir_impl.rs +0 -0
  2185. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/rename_unchecked.rs +0 -0
  2186. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/reopen_impl.rs +0 -0
  2187. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/set_permissions_unchecked.rs +0 -0
  2188. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/set_times_impl.rs +0 -0
  2189. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/stat_unchecked.rs +0 -0
  2190. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/fs/symlink_unchecked.rs +0 -0
  2191. /data/ext/cargo-vendor/{cap-primitives-1.0.15 → cap-primitives-2.0.0}/src/windows/mod.rs +0 -0
  2192. /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/COPYRIGHT +0 -0
  2193. /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-APACHE +0 -0
  2194. /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2195. /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/LICENSE-MIT +0 -0
  2196. /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/README.md +0 -0
  2197. /data/ext/cargo-vendor/{cap-rand-1.0.15 → cap-rand-2.0.0}/src/lib.rs +0 -0
  2198. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/COPYRIGHT +0 -0
  2199. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-APACHE +0 -0
  2200. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2201. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/LICENSE-MIT +0 -0
  2202. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/README.md +0 -0
  2203. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/dir.rs +0 -0
  2204. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/dir_entry.rs +0 -0
  2205. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/mod.rs +0 -0
  2206. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs/read_dir.rs +0 -0
  2207. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/dir.rs +0 -0
  2208. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/dir_entry.rs +0 -0
  2209. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/mod.rs +0 -0
  2210. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/fs_utf8/read_dir.rs +0 -0
  2211. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/incoming.rs +0 -0
  2212. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/mod.rs +0 -0
  2213. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/pool.rs +0 -0
  2214. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/tcp_listener.rs +0 -0
  2215. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/net/tcp_stream.rs +0 -0
  2216. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/mod.rs +0 -0
  2217. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/mod.rs +0 -0
  2218. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/incoming.rs +0 -0
  2219. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/mod.rs +0 -0
  2220. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_datagram.rs +0 -0
  2221. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_listener.rs +0 -0
  2222. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/os/unix/net/unix_stream.rs +0 -0
  2223. /data/ext/cargo-vendor/{cap-std-1.0.15 → cap-std-2.0.0}/src/time/mod.rs +0 -0
  2224. /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/COPYRIGHT +0 -0
  2225. /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-APACHE +0 -0
  2226. /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2227. /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/LICENSE-MIT +0 -0
  2228. /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/README.md +0 -0
  2229. /data/ext/cargo-vendor/{cap-time-ext-1.0.15 → cap-time-ext-2.0.0}/src/lib.rs +0 -0
  2230. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-APACHE +0 -0
  2231. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/LICENSE-MIT +0 -0
  2232. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/README.md +0 -0
  2233. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/bin/gcc-shim.rs +0 -0
  2234. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/com.rs +0 -0
  2235. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/unix.rs +0 -0
  2236. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe/windows.rs +0 -0
  2237. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/os_pipe.rs +0 -0
  2238. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/registry.rs +0 -0
  2239. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/setup_config.rs +0 -0
  2240. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/vs_instances.rs +0 -0
  2241. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/winapi.rs +0 -0
  2242. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_registry.rs +0 -0
  2243. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/src/windows_sys.rs +0 -0
  2244. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cc_env.rs +0 -0
  2245. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cflags.rs +0 -0
  2246. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/cxxflags.rs +0 -0
  2247. /data/ext/cargo-vendor/{cc-1.0.82 → cc-1.0.83}/tests/support/mod.rs +0 -0
  2248. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/LICENSE +0 -0
  2249. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/README.md +0 -0
  2250. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/lib.rs +0 -0
  2251. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/map.rs +0 -0
  2252. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/node.rs +0 -0
  2253. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/path.rs +0 -0
  2254. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/pool.rs +0 -0
  2255. /data/ext/cargo-vendor/{cranelift-bforest-0.97.1 → cranelift-bforest-0.99.1}/src/set.rs +0 -0
  2256. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/LICENSE +0 -0
  2257. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/README.md +0 -0
  2258. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/benches/x64-evex-encoding.rs +0 -0
  2259. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/alias_analysis.rs +0 -0
  2260. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/binemit/mod.rs +0 -0
  2261. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/binemit/stack_map.rs +0 -0
  2262. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/bitset.rs +0 -0
  2263. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/cfg_printer.rs +0 -0
  2264. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/constant_hash.rs +0 -0
  2265. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/context.rs +0 -0
  2266. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ctxhash.rs +0 -0
  2267. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/data_value.rs +0 -0
  2268. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/dbg.rs +0 -0
  2269. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/dce.rs +0 -0
  2270. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/dominator_tree.rs +0 -0
  2271. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph/cost.rs +0 -0
  2272. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph/domtree.rs +0 -0
  2273. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph/elaborate.rs +0 -0
  2274. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/egraph.rs +0 -0
  2275. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/flowgraph.rs +0 -0
  2276. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/fx.rs +0 -0
  2277. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/incremental_cache.rs +0 -0
  2278. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/inst_predicates.rs +0 -0
  2279. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/atomic_rmw_op.rs +0 -0
  2280. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/builder.rs +0 -0
  2281. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/condcodes.rs +0 -0
  2282. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/constant.rs +0 -0
  2283. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/dfg.rs +0 -0
  2284. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/dynamic_type.rs +0 -0
  2285. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/entities.rs +0 -0
  2286. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/extname.rs +0 -0
  2287. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/immediates.rs +0 -0
  2288. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/instructions.rs +0 -0
  2289. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/jumptable.rs +0 -0
  2290. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/known_symbol.rs +0 -0
  2291. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/layout.rs +0 -0
  2292. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/memflags.rs +0 -0
  2293. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/progpoint.rs +0 -0
  2294. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/sourceloc.rs +0 -0
  2295. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/stackslot.rs +0 -0
  2296. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/table.rs +0 -0
  2297. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/trapcode.rs +0 -0
  2298. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/ir/types.rs +0 -0
  2299. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/args.rs +0 -0
  2300. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/imms.rs +0 -0
  2301. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/regs.rs +0 -0
  2302. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  2303. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst/unwind.rs +0 -0
  2304. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/inst_neon.isle +0 -0
  2305. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  2306. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower.rs +0 -0
  2307. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  2308. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/aarch64/settings.rs +0 -0
  2309. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/args.rs +0 -0
  2310. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  2311. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/imms.rs +0 -0
  2312. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/regs.rs +0 -0
  2313. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  2314. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/inst/unwind.rs +0 -0
  2315. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  2316. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/lower.rs +0 -0
  2317. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/riscv64/settings.rs +0 -0
  2318. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/args.rs +0 -0
  2319. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit.rs +0 -0
  2320. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/emit_tests.rs +0 -0
  2321. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/imms.rs +0 -0
  2322. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/mod.rs +0 -0
  2323. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/regs.rs +0 -0
  2324. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  2325. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/inst/unwind.rs +0 -0
  2326. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  2327. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/lower.rs +0 -0
  2328. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/s390x/settings.rs +0 -0
  2329. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/unwind/systemv.rs +0 -0
  2330. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/unwind/winx64.rs +0 -0
  2331. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/unwind.rs +0 -0
  2332. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/evex.rs +0 -0
  2333. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/mod.rs +0 -0
  2334. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/encoding/vex.rs +0 -0
  2335. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/regs.rs +0 -0
  2336. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  2337. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  2338. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/inst/unwind.rs +0 -0
  2339. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  2340. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/isa/x64/settings.rs +0 -0
  2341. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/iterators.rs +0 -0
  2342. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/legalizer/globalvalue.rs +0 -0
  2343. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/legalizer/mod.rs +0 -0
  2344. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/legalizer/table.rs +0 -0
  2345. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/loop_analysis.rs +0 -0
  2346. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/blockorder.rs +0 -0
  2347. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/compile.rs +0 -0
  2348. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/helpers.rs +0 -0
  2349. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/inst_common.rs +0 -0
  2350. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/machinst/valueregs.rs +0 -0
  2351. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/nan_canonicalization.rs +0 -0
  2352. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/README.md +0 -0
  2353. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/arithmetic.isle +0 -0
  2354. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/bitops.isle +0 -0
  2355. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/generated_code.rs +0 -0
  2356. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/remat.isle +0 -0
  2357. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/selects.isle +0 -0
  2358. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts/shifts.isle +0 -0
  2359. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/opts.rs +0 -0
  2360. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/prelude_opt.isle +0 -0
  2361. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/print_errors.rs +0 -0
  2362. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/remove_constant_phis.rs +0 -0
  2363. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/result.rs +0 -0
  2364. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/scoped_hash_map.rs +0 -0
  2365. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/souper_harvest.rs +0 -0
  2366. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/unreachable_code.rs +0 -0
  2367. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/verifier/mod.rs +0 -0
  2368. /data/ext/cargo-vendor/{cranelift-codegen-0.97.1 → cranelift-codegen-0.99.1}/src/write.rs +0 -0
  2369. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/LICENSE +0 -0
  2370. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/README.md +0 -0
  2371. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/formats.rs +0 -0
  2372. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/instructions.rs +0 -0
  2373. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/isa.rs +0 -0
  2374. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/mod.rs +0 -0
  2375. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/operands.rs +0 -0
  2376. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/types.rs +0 -0
  2377. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/cdsl/typevar.rs +0 -0
  2378. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/constant_hash.rs +0 -0
  2379. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/error.rs +0 -0
  2380. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/gen_settings.rs +0 -0
  2381. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/gen_types.rs +0 -0
  2382. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/entities.rs +0 -0
  2383. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/formats.rs +0 -0
  2384. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/immediates.rs +0 -0
  2385. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/shared/types.rs +0 -0
  2386. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/srcgen.rs +0 -0
  2387. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.97.1 → cranelift-codegen-meta-0.99.1}/src/unique_table.rs +0 -0
  2388. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/LICENSE +0 -0
  2389. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/README.md +0 -0
  2390. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/src/constant_hash.rs +0 -0
  2391. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/src/constants.rs +0 -0
  2392. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.97.1 → cranelift-codegen-shared-0.99.1}/src/lib.rs +0 -0
  2393. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/LICENSE +0 -0
  2394. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/README.md +0 -0
  2395. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/src/chaos.rs +0 -0
  2396. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/src/lib.rs +0 -0
  2397. /data/ext/cargo-vendor/{cranelift-control-0.97.1 → cranelift-control-0.99.1}/src/zero_sized.rs +0 -0
  2398. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/LICENSE +0 -0
  2399. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/README.md +0 -0
  2400. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/boxed_slice.rs +0 -0
  2401. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/iter.rs +0 -0
  2402. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/keys.rs +0 -0
  2403. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/lib.rs +0 -0
  2404. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/list.rs +0 -0
  2405. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/map.rs +0 -0
  2406. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/packed_option.rs +0 -0
  2407. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/primary.rs +0 -0
  2408. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/set.rs +0 -0
  2409. /data/ext/cargo-vendor/{cranelift-entity-0.97.1 → cranelift-entity-0.99.1}/src/sparse.rs +0 -0
  2410. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/LICENSE +0 -0
  2411. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/README.md +0 -0
  2412. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/frontend.rs +0 -0
  2413. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/ssa.rs +0 -0
  2414. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/switch.rs +0 -0
  2415. /data/ext/cargo-vendor/{cranelift-frontend-0.97.1 → cranelift-frontend-0.99.1}/src/variable.rs +0 -0
  2416. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/README.md +0 -0
  2417. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/build.rs +0 -0
  2418. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/bad_converters.isle +0 -0
  2419. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  2420. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  2421. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/error1.isle +0 -0
  2422. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/extra_parens.isle +0 -0
  2423. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_expression.isle +0 -0
  2424. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/impure_rhs.isle +0 -0
  2425. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_internal_etor.isle +0 -0
  2426. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/fail/multi_prio.isle +0 -0
  2427. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows.isle +0 -0
  2428. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/borrows_main.rs +0 -0
  2429. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets.isle +0 -0
  2430. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/iflets_main.rs +0 -0
  2431. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor.isle +0 -0
  2432. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_constructor_main.rs +0 -0
  2433. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor.isle +0 -0
  2434. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/multi_extractor_main.rs +0 -0
  2435. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/test.isle +0 -0
  2436. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/link/test_main.rs +0 -0
  2437. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/bound_var.isle +0 -0
  2438. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/construct_and_extract.isle +0 -0
  2439. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions.isle +0 -0
  2440. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/conversions_extern.isle +0 -0
  2441. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/let.isle +0 -0
  2442. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/nodebug.isle +0 -0
  2443. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/prio_trie_bug.isle +0 -0
  2444. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/test2.isle +0 -0
  2445. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/test3.isle +0 -0
  2446. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/test4.isle +0 -0
  2447. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/pass/tutorial.isle +0 -0
  2448. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst.isle +0 -0
  2449. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/iconst_main.rs +0 -0
  2450. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing.isle +0 -0
  2451. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/isle_examples/run/let_shadowing_main.rs +0 -0
  2452. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/ast.rs +0 -0
  2453. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/codegen.rs +0 -0
  2454. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/compile.rs +0 -0
  2455. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/error.rs +0 -0
  2456. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/lexer.rs +0 -0
  2457. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/lib.rs +0 -0
  2458. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/log.rs +0 -0
  2459. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/overlap.rs +0 -0
  2460. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/parser.rs +0 -0
  2461. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/sema.rs +0 -0
  2462. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/serialize.rs +0 -0
  2463. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/src/trie_again.rs +0 -0
  2464. /data/ext/cargo-vendor/{cranelift-isle-0.97.1 → cranelift-isle-0.99.1}/tests/run_tests.rs +0 -0
  2465. /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.99.1}/LICENSE +0 -0
  2466. /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.99.1}/README.md +0 -0
  2467. /data/ext/cargo-vendor/{cranelift-native-0.97.1 → cranelift-native-0.99.1}/src/riscv.rs +0 -0
  2468. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/LICENSE +0 -0
  2469. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/README.md +0 -0
  2470. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/code_translator/bounds_checks.rs +0 -0
  2471. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/environ/mod.rs +0 -0
  2472. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/heap.rs +0 -0
  2473. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/lib.rs +0 -0
  2474. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/module_translator.rs +0 -0
  2475. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/state.rs +0 -0
  2476. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/src/translation_utils.rs +0 -0
  2477. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/arith.wat +0 -0
  2478. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/br_table.wat +0 -0
  2479. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/call-simd.wat +0 -0
  2480. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/call.wat +0 -0
  2481. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fannkuch.wat +0 -0
  2482. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_fasta.wat +0 -0
  2483. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_ifs.wat +0 -0
  2484. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/embenchen_primes.wat +0 -0
  2485. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/fac-multi-value.wat +0 -0
  2486. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/fibonacci.wat +0 -0
  2487. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/globals.wat +0 -0
  2488. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/icall-simd.wat +0 -0
  2489. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/icall.wat +0 -0
  2490. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-0.wat +0 -0
  2491. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-1.wat +0 -0
  2492. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-2.wat +0 -0
  2493. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-3.wat +0 -0
  2494. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-4.wat +0 -0
  2495. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-5.wat +0 -0
  2496. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-reachability-translation-6.wat +0 -0
  2497. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  2498. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/if-unreachable-else-params.wat +0 -0
  2499. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  2500. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/memory.wat +0 -0
  2501. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-0.wat +0 -0
  2502. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-1.wat +0 -0
  2503. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-10.wat +0 -0
  2504. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-11.wat +0 -0
  2505. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-12.wat +0 -0
  2506. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-13.wat +0 -0
  2507. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-14.wat +0 -0
  2508. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-15.wat +0 -0
  2509. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-16.wat +0 -0
  2510. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-17.wat +0 -0
  2511. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-2.wat +0 -0
  2512. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-3.wat +0 -0
  2513. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-4.wat +0 -0
  2514. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-5.wat +0 -0
  2515. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-6.wat +0 -0
  2516. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-7.wat +0 -0
  2517. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-8.wat +0 -0
  2518. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/multi-9.wat +0 -0
  2519. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/nullref.wat +0 -0
  2520. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/passive-data.wat +0 -0
  2521. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/pr2303.wat +0 -0
  2522. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/pr2559.wat +0 -0
  2523. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/ref-func-0.wat +0 -0
  2524. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/rust_fannkuch.wat +0 -0
  2525. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/select.wat +0 -0
  2526. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/simd-store.wat +0 -0
  2527. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/simd.wat +0 -0
  2528. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/table-copy.wat +0 -0
  2529. /data/ext/cargo-vendor/{cranelift-wasm-0.97.1 → cranelift-wasm-0.99.1}/wasmtests/unreachable_code.wat +0 -0
  2530. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/CODE_OF_CONDUCT.md +0 -0
  2531. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/COPYRIGHT +0 -0
  2532. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-APACHE +0 -0
  2533. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2534. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/LICENSE-MIT +0 -0
  2535. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/ORG_CODE_OF_CONDUCT.md +0 -0
  2536. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/README.md +0 -0
  2537. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/SECURITY.md +0 -0
  2538. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/lib.rs +0 -0
  2539. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/set_times.rs +0 -0
  2540. /data/ext/cargo-vendor/{fs-set-times-0.19.2 → fs-set-times-0.20.0}/src/system_time_spec.rs +0 -0
  2541. /data/ext/cargo-vendor/{io-extras-0.17.4 → gimli-0.28.0}/LICENSE-APACHE +0 -0
  2542. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/CODE_OF_CONDUCT.md +0 -0
  2543. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/COPYRIGHT +0 -0
  2544. /data/ext/cargo-vendor/{log-0.4.19 → io-extras-0.18.0}/LICENSE-APACHE +0 -0
  2545. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2546. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/LICENSE-MIT +0 -0
  2547. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/ORG_CODE_OF_CONDUCT.md +0 -0
  2548. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/SECURITY.md +0 -0
  2549. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/borrowed.rs +0 -0
  2550. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/grip.rs +0 -0
  2551. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/lib.rs +0 -0
  2552. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/mod.rs +0 -0
  2553. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/rustix.rs +0 -0
  2554. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/mod.rs +0 -0
  2555. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/traits.rs +0 -0
  2556. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/os/windows/types.rs +0 -0
  2557. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/owned.rs +0 -0
  2558. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/raw.rs +0 -0
  2559. /data/ext/cargo-vendor/{io-extras-0.17.4 → io-extras-0.18.0}/src/read_write.rs +0 -0
  2560. /data/ext/cargo-vendor/{object-0.30.4 → log-0.4.20}/LICENSE-APACHE +0 -0
  2561. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/LICENSE-MIT +0 -0
  2562. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/benches/value.rs +0 -0
  2563. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/error.rs +0 -0
  2564. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/key.rs +0 -0
  2565. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/mod.rs +0 -0
  2566. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/source.rs +0 -0
  2567. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/kv/value.rs +0 -0
  2568. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/src/serde.rs +0 -0
  2569. /data/ext/cargo-vendor/{log-0.4.19 → log-0.4.20}/triagebot.toml +0 -0
  2570. /data/ext/cargo-vendor/{system-interface-0.25.9 → object-0.32.0}/LICENSE-APACHE +0 -0
  2571. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/LICENSE-MIT +0 -0
  2572. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/archive.rs +0 -0
  2573. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/pod.rs +0 -0
  2574. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/archive.rs +0 -0
  2575. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/elf/compression.rs +0 -0
  2576. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/elf/dynamic.rs +0 -0
  2577. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/macho/fat.rs +0 -0
  2578. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/macho/mod.rs +0 -0
  2579. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/export.rs +0 -0
  2580. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/import.rs +0 -0
  2581. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/mod.rs +0 -0
  2582. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/pe/relocation.rs +0 -0
  2583. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/xcoff/file.rs +0 -0
  2584. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/read/xcoff/mod.rs +0 -0
  2585. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/write/elf/mod.rs +0 -0
  2586. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/src/write/pe.rs +0 -0
  2587. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/integration.rs +0 -0
  2588. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/parse_self.rs +0 -0
  2589. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/read/mod.rs +0 -0
  2590. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/bss.rs +0 -0
  2591. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/coff.rs +0 -0
  2592. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/comdat.rs +0 -0
  2593. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/common.rs +0 -0
  2594. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/macho.rs +0 -0
  2595. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/section_flags.rs +0 -0
  2596. /data/ext/cargo-vendor/{object-0.30.4 → object-0.32.0}/tests/round_trip/tls.rs +0 -0
  2597. /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/LICENSE +0 -0
  2598. /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/src/entities.rs +0 -0
  2599. /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/footnotes.rs +0 -0
  2600. /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/gfm_tasklist.rs +0 -0
  2601. /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/smart_punct.rs +0 -0
  2602. /data/ext/cargo-vendor/{pulldown-cmark-0.8.0 → pulldown-cmark-0.9.3}/tests/suite/table.rs +0 -0
  2603. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-APACHE +0 -0
  2604. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/LICENSE-MIT +0 -0
  2605. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/README.md +0 -0
  2606. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/rust-toolchain.toml +0 -0
  2607. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ext.rs +0 -0
  2608. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/format.rs +0 -0
  2609. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/ident_fragment.rs +0 -0
  2610. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/spanned.rs +0 -0
  2611. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/src/to_tokens.rs +0 -0
  2612. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/compiletest.rs +0 -0
  2613. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/test.rs +0 -0
  2614. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.rs +0 -0
  2615. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated-dup.stderr +0 -0
  2616. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.rs +0 -0
  2617. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-interpolated.stderr +0 -0
  2618. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.rs +0 -0
  2619. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter-separated.stderr +0 -0
  2620. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.rs +0 -0
  2621. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/does-not-have-iter.stderr +0 -0
  2622. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.rs +0 -0
  2623. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-quotable.stderr +0 -0
  2624. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.rs +0 -0
  2625. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/not-repeatable.stderr +0 -0
  2626. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.rs +0 -0
  2627. /data/ext/cargo-vendor/{quote-1.0.32 → quote-1.0.33}/tests/ui/wrong-type-span.stderr +0 -0
  2628. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-APACHE +0 -0
  2629. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/LICENSE-MIT +0 -0
  2630. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/README.md +0 -0
  2631. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/build.rs +0 -0
  2632. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/crates-io.md +0 -0
  2633. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/format.rs +0 -0
  2634. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/ignored_any.rs +0 -0
  2635. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/impls.rs +0 -0
  2636. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/mod.rs +0 -0
  2637. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/seed.rs +0 -0
  2638. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/size_hint.rs +0 -0
  2639. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/utf8.rs +0 -0
  2640. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/de/value.rs +0 -0
  2641. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/integer128.rs +0 -0
  2642. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/macros.rs +0 -0
  2643. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/de.rs +0 -0
  2644. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/doc.rs +0 -0
  2645. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/private/mod.rs +0 -0
  2646. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/fmt.rs +0 -0
  2647. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impls.rs +0 -0
  2648. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/impossible.rs +0 -0
  2649. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/ser/mod.rs +0 -0
  2650. /data/ext/cargo-vendor/{serde-1.0.183 → serde-1.0.185}/src/std_error.rs +0 -0
  2651. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-APACHE +0 -0
  2652. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/LICENSE-MIT +0 -0
  2653. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/bound.rs +0 -0
  2654. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/dummy.rs +0 -0
  2655. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/fragment.rs +0 -0
  2656. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ast.rs +0 -0
  2657. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/case.rs +0 -0
  2658. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/check.rs +0 -0
  2659. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/ctxt.rs +0 -0
  2660. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/mod.rs +0 -0
  2661. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/receiver.rs +0 -0
  2662. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/internals/respan.rs +0 -0
  2663. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/pretend.rs +0 -0
  2664. /data/ext/cargo-vendor/{serde_derive-1.0.183 → serde_derive-1.0.185}/src/this.rs +0 -0
  2665. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/CONTRIBUTING.md +0 -0
  2666. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-APACHE +0 -0
  2667. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/LICENSE-MIT +0 -0
  2668. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/README.md +0 -0
  2669. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/build.rs +0 -0
  2670. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/error.rs +0 -0
  2671. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/error.rs +0 -0
  2672. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/features_check/mod.rs +0 -0
  2673. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/core.rs +0 -0
  2674. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/io/mod.rs +0 -0
  2675. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/iter.rs +0 -0
  2676. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/algorithm.rs +0 -0
  2677. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bhcomp.rs +0 -0
  2678. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/bignum.rs +0 -0
  2679. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached.rs +0 -0
  2680. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/cached_float80.rs +0 -0
  2681. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/digit.rs +0 -0
  2682. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/errors.rs +0 -0
  2683. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/exponent.rs +0 -0
  2684. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/float.rs +0 -0
  2685. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers.rs +0 -0
  2686. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers32.rs +0 -0
  2687. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/large_powers64.rs +0 -0
  2688. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/math.rs +0 -0
  2689. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/mod.rs +0 -0
  2690. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/num.rs +0 -0
  2691. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/parse.rs +0 -0
  2692. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/rounding.rs +0 -0
  2693. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/shift.rs +0 -0
  2694. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/lexical/small_powers.rs +0 -0
  2695. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/macros.rs +0 -0
  2696. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/map.rs +0 -0
  2697. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/number.rs +0 -0
  2698. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/raw.rs +0 -0
  2699. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/read.rs +0 -0
  2700. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/from.rs +0 -0
  2701. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/index.rs +0 -0
  2702. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/mod.rs +0 -0
  2703. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/src/value/partial_eq.rs +0 -0
  2704. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/compiletest.rs +0 -0
  2705. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/debug.rs +0 -0
  2706. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/algorithm.rs +0 -0
  2707. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/exponent.rs +0 -0
  2708. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/float.rs +0 -0
  2709. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/math.rs +0 -0
  2710. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/num.rs +0 -0
  2711. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/parse.rs +0 -0
  2712. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical/rounding.rs +0 -0
  2713. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/lexical.rs +0 -0
  2714. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/macros/mod.rs +0 -0
  2715. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/map.rs +0 -0
  2716. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue1004.rs +0 -0
  2717. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue520.rs +0 -0
  2718. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue795.rs +0 -0
  2719. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue845.rs +0 -0
  2720. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression/issue953.rs +0 -0
  2721. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/regression.rs +0 -0
  2722. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/stream.rs +0 -0
  2723. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.rs +0 -0
  2724. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_colon.stderr +0 -0
  2725. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.rs +0 -0
  2726. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_comma.stderr +0 -0
  2727. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.rs +0 -0
  2728. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/missing_value.stderr +0 -0
  2729. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.rs +0 -0
  2730. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/not_found.stderr +0 -0
  2731. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.rs +0 -0
  2732. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_expr.stderr +0 -0
  2733. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.rs +0 -0
  2734. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/parse_key.stderr +0 -0
  2735. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.rs +0 -0
  2736. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_array_element.stderr +0 -0
  2737. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.rs +0 -0
  2738. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_after_map_entry.stderr +0 -0
  2739. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.rs +0 -0
  2740. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_colon.stderr +0 -0
  2741. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.rs +0 -0
  2742. /data/ext/cargo-vendor/{serde_json-1.0.104 → serde_json-1.0.105}/tests/ui/unexpected_comma.stderr +0 -0
  2743. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-APACHE +0 -0
  2744. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/LICENSE-MIT +0 -0
  2745. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/README.md +0 -0
  2746. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/file.rs +0 -0
  2747. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/benches/rust.rs +0 -0
  2748. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/attr.rs +0 -0
  2749. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/bigint.rs +0 -0
  2750. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/buffer.rs +0 -0
  2751. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/data.rs +0 -0
  2752. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/derive.rs +0 -0
  2753. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/discouraged.rs +0 -0
  2754. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/drops.rs +0 -0
  2755. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/error.rs +0 -0
  2756. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/expr.rs +0 -0
  2757. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ext.rs +0 -0
  2758. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/file.rs +0 -0
  2759. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/clone.rs +0 -0
  2760. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/debug.rs +0 -0
  2761. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/eq.rs +0 -0
  2762. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/fold.rs +0 -0
  2763. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/hash.rs +0 -0
  2764. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit.rs +0 -0
  2765. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen/visit_mut.rs +0 -0
  2766. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/gen_helper.rs +0 -0
  2767. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/generics.rs +0 -0
  2768. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ident.rs +0 -0
  2769. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/item.rs +0 -0
  2770. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lifetime.rs +0 -0
  2771. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lit.rs +0 -0
  2772. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/lookahead.rs +0 -0
  2773. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/mac.rs +0 -0
  2774. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/macros.rs +0 -0
  2775. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/meta.rs +0 -0
  2776. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/op.rs +0 -0
  2777. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse.rs +0 -0
  2778. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/parse_macro_input.rs +0 -0
  2779. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/pat.rs +0 -0
  2780. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/path.rs +0 -0
  2781. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/print.rs +0 -0
  2782. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/punctuated.rs +0 -0
  2783. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/restriction.rs +0 -0
  2784. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/sealed.rs +0 -0
  2785. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/spanned.rs +0 -0
  2786. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/stmt.rs +0 -0
  2787. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/thread.rs +0 -0
  2788. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/tt.rs +0 -0
  2789. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/ty.rs +0 -0
  2790. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/verbatim.rs +0 -0
  2791. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/src/whitespace.rs +0 -0
  2792. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/mod.rs +0 -0
  2793. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/common/parse.rs +0 -0
  2794. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/gen.rs +0 -0
  2795. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/debug/mod.rs +0 -0
  2796. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/macros/mod.rs +0 -0
  2797. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1108.rs +0 -0
  2798. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression/issue1235.rs +0 -0
  2799. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/regression.rs +0 -0
  2800. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/mod.rs +0 -0
  2801. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/repo/progress.rs +0 -0
  2802. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_asyncness.rs +0 -0
  2803. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_attribute.rs +0 -0
  2804. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_derive_input.rs +0 -0
  2805. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_expr.rs +0 -0
  2806. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_generics.rs +0 -0
  2807. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_grouping.rs +0 -0
  2808. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ident.rs +0 -0
  2809. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_item.rs +0 -0
  2810. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_iterators.rs +0 -0
  2811. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_lit.rs +0 -0
  2812. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_meta.rs +0 -0
  2813. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_buffer.rs +0 -0
  2814. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_parse_stream.rs +0 -0
  2815. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_pat.rs +0 -0
  2816. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_path.rs +0 -0
  2817. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_precedence.rs +0 -0
  2818. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_receiver.rs +0 -0
  2819. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_round_trip.rs +0 -0
  2820. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_shebang.rs +0 -0
  2821. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_should_parse.rs +0 -0
  2822. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_size.rs +0 -0
  2823. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_stmt.rs +0 -0
  2824. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_token_trees.rs +0 -0
  2825. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_ty.rs +0 -0
  2826. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/test_visibility.rs +0 -0
  2827. /data/ext/cargo-vendor/{syn-2.0.28 → syn-2.0.29}/tests/zzz_stable.rs +0 -0
  2828. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/CODE_OF_CONDUCT.md +0 -0
  2829. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/COPYRIGHT +0 -0
  2830. /data/ext/cargo-vendor/{unicase-2.6.0 → system-interface-0.26.0}/LICENSE-APACHE +0 -0
  2831. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2832. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/LICENSE-MIT +0 -0
  2833. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/ORG_CODE_OF_CONDUCT.md +0 -0
  2834. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/README.md +0 -0
  2835. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/SECURITY.md +0 -0
  2836. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/fs/fd_flags.rs +0 -0
  2837. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/fs/mod.rs +0 -0
  2838. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/io_ext.rs +0 -0
  2839. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/is_read_write.rs +0 -0
  2840. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/mod.rs +0 -0
  2841. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/peek.rs +0 -0
  2842. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/io/read_ready.rs +0 -0
  2843. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/src/lib.rs +0 -0
  2844. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/allocate.rs +0 -0
  2845. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/append.rs +0 -0
  2846. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/fd_flags.rs +0 -0
  2847. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/is_read_write.rs +0 -0
  2848. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/live_rename.rs +0 -0
  2849. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/peek.rs +0 -0
  2850. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/read_ready.rs +0 -0
  2851. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/read_to_end.rs +0 -0
  2852. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/sys_common/io.rs +0 -0
  2853. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/sys_common/mod.rs +0 -0
  2854. /data/ext/cargo-vendor/{system-interface-0.25.9 → system-interface-0.26.0}/tests/vectored_at.rs +0 -0
  2855. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-APACHE +0 -0
  2856. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/LICENSE-MIT +0 -0
  2857. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/README.md +0 -0
  2858. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/rust-toolchain.toml +0 -0
  2859. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/compiletest.rs +0 -0
  2860. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_deprecated.rs +0 -0
  2861. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_display.rs +0 -0
  2862. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_error.rs +0 -0
  2863. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_expr.rs +0 -0
  2864. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_from.rs +0 -0
  2865. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_generics.rs +0 -0
  2866. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_lints.rs +0 -0
  2867. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_path.rs +0 -0
  2868. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_source.rs +0 -0
  2869. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/test_transparent.rs +0 -0
  2870. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.rs +0 -0
  2871. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/bad-field-attr.stderr +0 -0
  2872. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.rs +0 -0
  2873. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/concat-display.stderr +0 -0
  2874. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.rs +0 -0
  2875. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-enum-source.stderr +0 -0
  2876. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.rs +0 -0
  2877. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-fmt.stderr +0 -0
  2878. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.rs +0 -0
  2879. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-struct-source.stderr +0 -0
  2880. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.rs +0 -0
  2881. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/duplicate-transparent.stderr +0 -0
  2882. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.rs +0 -0
  2883. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-backtrace-backtrace.stderr +0 -0
  2884. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.rs +0 -0
  2885. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/from-not-source.stderr +0 -0
  2886. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.rs +0 -0
  2887. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/lifetime.stderr +0 -0
  2888. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.rs +0 -0
  2889. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/missing-fmt.stderr +0 -0
  2890. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.rs +0 -0
  2891. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/no-display.stderr +0 -0
  2892. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.rs +0 -0
  2893. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-enum-not-error.stderr +0 -0
  2894. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.rs +0 -0
  2895. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/source-struct-not-error.stderr +0 -0
  2896. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.rs +0 -0
  2897. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-display.stderr +0 -0
  2898. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.rs +0 -0
  2899. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-many.stderr +0 -0
  2900. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.rs +0 -0
  2901. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-enum-source.stderr +0 -0
  2902. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.rs +0 -0
  2903. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-many.stderr +0 -0
  2904. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.rs +0 -0
  2905. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/transparent-struct-source.stderr +0 -0
  2906. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.rs +0 -0
  2907. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-field-fmt.stderr +0 -0
  2908. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.rs +0 -0
  2909. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/unexpected-struct-source.stderr +0 -0
  2910. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.rs +0 -0
  2911. /data/ext/cargo-vendor/{thiserror-1.0.44 → thiserror-1.0.47}/tests/ui/union.stderr +0 -0
  2912. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-APACHE +0 -0
  2913. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/LICENSE-MIT +0 -0
  2914. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/ast.rs +0 -0
  2915. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/attr.rs +0 -0
  2916. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/fmt.rs +0 -0
  2917. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/generics.rs +0 -0
  2918. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/lib.rs +0 -0
  2919. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/prop.rs +0 -0
  2920. /data/ext/cargo-vendor/{thiserror-impl-1.0.44 → thiserror-impl-1.0.47}/src/valid.rs +0 -0
  2921. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/LICENSE +0 -0
  2922. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/docs/reactor-refactor.md +0 -0
  2923. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/external-types.toml +0 -0
  2924. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/blocking.rs +0 -0
  2925. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/mod.rs +0 -0
  2926. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/doc/os.rs +0 -0
  2927. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/canonicalize.rs +0 -0
  2928. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/copy.rs +0 -0
  2929. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir.rs +0 -0
  2930. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/create_dir_all.rs +0 -0
  2931. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/dir_builder.rs +0 -0
  2932. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file/tests.rs +0 -0
  2933. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/file.rs +0 -0
  2934. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/hard_link.rs +0 -0
  2935. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/metadata.rs +0 -0
  2936. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mocks.rs +0 -0
  2937. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/mod.rs +0 -0
  2938. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options/mock_open_options.rs +0 -0
  2939. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/open_options.rs +0 -0
  2940. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read.rs +0 -0
  2941. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_dir.rs +0 -0
  2942. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_link.rs +0 -0
  2943. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/read_to_string.rs +0 -0
  2944. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir.rs +0 -0
  2945. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_dir_all.rs +0 -0
  2946. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/remove_file.rs +0 -0
  2947. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/rename.rs +0 -0
  2948. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/set_permissions.rs +0 -0
  2949. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink.rs +0 -0
  2950. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_dir.rs +0 -0
  2951. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_file.rs +0 -0
  2952. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/symlink_metadata.rs +0 -0
  2953. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/try_exists.rs +0 -0
  2954. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fs/write.rs +0 -0
  2955. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/block_on.rs +0 -0
  2956. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/maybe_done.rs +0 -0
  2957. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/mod.rs +0 -0
  2958. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/poll_fn.rs +0 -0
  2959. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/trace.rs +0 -0
  2960. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/future/try_join.rs +0 -0
  2961. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/fuzz.rs +0 -0
  2962. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_buf_read.rs +0 -0
  2963. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_read.rs +0 -0
  2964. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_seek.rs +0 -0
  2965. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/async_write.rs +0 -0
  2966. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/blocking.rs +0 -0
  2967. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/bsd/poll_aio.rs +0 -0
  2968. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/mod.rs +0 -0
  2969. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/poll_evented.rs +0 -0
  2970. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/read_buf.rs +0 -0
  2971. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/seek.rs +0 -0
  2972. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stderr.rs +0 -0
  2973. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdin.rs +0 -0
  2974. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdio_common.rs +0 -0
  2975. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/stdout.rs +0 -0
  2976. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_buf_read_ext.rs +0 -0
  2977. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_seek_ext.rs +0 -0
  2978. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/async_write_ext.rs +0 -0
  2979. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_reader.rs +0 -0
  2980. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_stream.rs +0 -0
  2981. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/buf_writer.rs +0 -0
  2982. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/chain.rs +0 -0
  2983. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy.rs +0 -0
  2984. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_bidirectional.rs +0 -0
  2985. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/copy_buf.rs +0 -0
  2986. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/empty.rs +0 -0
  2987. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/fill_buf.rs +0 -0
  2988. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/flush.rs +0 -0
  2989. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/lines.rs +0 -0
  2990. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mem.rs +0 -0
  2991. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/mod.rs +0 -0
  2992. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read.rs +0 -0
  2993. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_buf.rs +0 -0
  2994. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_exact.rs +0 -0
  2995. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_int.rs +0 -0
  2996. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_line.rs +0 -0
  2997. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_end.rs +0 -0
  2998. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_to_string.rs +0 -0
  2999. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/read_until.rs +0 -0
  3000. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/repeat.rs +0 -0
  3001. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/shutdown.rs +0 -0
  3002. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/sink.rs +0 -0
  3003. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/split.rs +0 -0
  3004. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/take.rs +0 -0
  3005. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/vec_with_initialized.rs +0 -0
  3006. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write.rs +0 -0
  3007. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all.rs +0 -0
  3008. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_all_buf.rs +0 -0
  3009. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_buf.rs +0 -0
  3010. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_int.rs +0 -0
  3011. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/io/util/write_vectored.rs +0 -0
  3012. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/lib.rs +0 -0
  3013. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mocked.rs +0 -0
  3014. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/mod.rs +0 -0
  3015. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u16.rs +0 -0
  3016. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u32.rs +0 -0
  3017. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64.rs +0 -0
  3018. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_as_mutex.rs +0 -0
  3019. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_native.rs +0 -0
  3020. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_const_new.rs +0 -0
  3021. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_u64_static_once_cell.rs +0 -0
  3022. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/atomic_usize.rs +0 -0
  3023. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/barrier.rs +0 -0
  3024. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mod.rs +0 -0
  3025. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/mutex.rs +0 -0
  3026. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/parking_lot.rs +0 -0
  3027. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/loom/std/unsafe_cell.rs +0 -0
  3028. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/addr_of.rs +0 -0
  3029. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/cfg.rs +0 -0
  3030. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/join.rs +0 -0
  3031. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/loom.rs +0 -0
  3032. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/mod.rs +0 -0
  3033. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/pin.rs +0 -0
  3034. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/ready.rs +0 -0
  3035. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/select.rs +0 -0
  3036. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/support.rs +0 -0
  3037. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/thread_local.rs +0 -0
  3038. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/trace.rs +0 -0
  3039. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/macros/try_join.rs +0 -0
  3040. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/addr.rs +0 -0
  3041. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/lookup_host.rs +0 -0
  3042. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/mod.rs +0 -0
  3043. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/listener.rs +0 -0
  3044. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/mod.rs +0 -0
  3045. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/socket.rs +0 -0
  3046. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split.rs +0 -0
  3047. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/split_owned.rs +0 -0
  3048. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/tcp/stream.rs +0 -0
  3049. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/udp.rs +0 -0
  3050. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/mod.rs +0 -0
  3051. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/datagram/socket.rs +0 -0
  3052. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/listener.rs +0 -0
  3053. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/mod.rs +0 -0
  3054. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/pipe.rs +0 -0
  3055. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/socketaddr.rs +0 -0
  3056. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split.rs +0 -0
  3057. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/split_owned.rs +0 -0
  3058. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/stream.rs +0 -0
  3059. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/unix/ucred.rs +0 -0
  3060. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/mod.rs +0 -0
  3061. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/net/windows/named_pipe.rs +0 -0
  3062. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/kill.rs +0 -0
  3063. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/mod.rs +0 -0
  3064. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/orphan.rs +0 -0
  3065. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/unix/reap.rs +0 -0
  3066. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/process/windows.rs +0 -0
  3067. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/mod.rs +0 -0
  3068. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/pool.rs +0 -0
  3069. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/schedule.rs +0 -0
  3070. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/shutdown.rs +0 -0
  3071. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/blocking/task.rs +0 -0
  3072. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/config.rs +0 -0
  3073. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/blocking.rs +0 -0
  3074. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/current.rs +0 -0
  3075. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime.rs +0 -0
  3076. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/runtime_mt.rs +0 -0
  3077. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context/scoped.rs +0 -0
  3078. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/context.rs +0 -0
  3079. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/coop.rs +0 -0
  3080. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/driver.rs +0 -0
  3081. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/dump.rs +0 -0
  3082. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/handle.rs +0 -0
  3083. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/id.rs +0 -0
  3084. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver/signal.rs +0 -0
  3085. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/driver.rs +0 -0
  3086. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/metrics.rs +0 -0
  3087. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/mod.rs +0 -0
  3088. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration.rs +0 -0
  3089. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/io/registration_set.rs +0 -0
  3090. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/histogram.rs +0 -0
  3091. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/io.rs +0 -0
  3092. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/mod.rs +0 -0
  3093. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/metrics/scheduler.rs +0 -0
  3094. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/mod.rs +0 -0
  3095. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/park.rs +0 -0
  3096. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/process.rs +0 -0
  3097. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/runtime.rs +0 -0
  3098. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/block_in_place.rs +0 -0
  3099. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/defer.rs +0 -0
  3100. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/metrics.rs +0 -0
  3101. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/pop.rs +0 -0
  3102. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/rt_multi_thread.rs +0 -0
  3103. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/shared.rs +0 -0
  3104. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject/synced.rs +0 -0
  3105. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/inject.rs +0 -0
  3106. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/lock.rs +0 -0
  3107. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/mod.rs +0 -0
  3108. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/counters.rs +0 -0
  3109. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/metrics.rs +0 -0
  3110. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle/taskdump.rs +0 -0
  3111. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
  3112. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  3113. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  3114. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/overflow.rs +0 -0
  3115. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  3116. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/queue.rs +0 -0
  3117. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace.rs +0 -0
  3118. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/trace_mock.rs +0 -0
  3119. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/metrics.rs +0 -0
  3120. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump.rs +0 -0
  3121. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker/taskdump_mock.rs +0 -0
  3122. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread/worker.rs +0 -0
  3123. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/counters.rs +0 -0
  3124. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/metrics.rs +0 -0
  3125. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/handle/taskdump.rs +0 -0
  3126. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/mod.rs +0 -0
  3127. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/overflow.rs +0 -0
  3128. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/park.rs +0 -0
  3129. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/queue.rs +0 -0
  3130. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace.rs +0 -0
  3131. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/trace_mock.rs +0 -0
  3132. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/metrics.rs +0 -0
  3133. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump.rs +0 -0
  3134. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/scheduler/multi_thread_alt/worker/taskdump_mock.rs +0 -0
  3135. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/signal/mod.rs +0 -0
  3136. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/abort.rs +0 -0
  3137. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/core.rs +0 -0
  3138. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/error.rs +0 -0
  3139. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/harness.rs +0 -0
  3140. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/id.rs +0 -0
  3141. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/join.rs +0 -0
  3142. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/list.rs +0 -0
  3143. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/mod.rs +0 -0
  3144. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/raw.rs +0 -0
  3145. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/state.rs +0 -0
  3146. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/mod.rs +0 -0
  3147. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/symbol.rs +0 -0
  3148. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/trace/tree.rs +0 -0
  3149. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/task/waker.rs +0 -0
  3150. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/inject.rs +0 -0
  3151. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_blocking.rs +0 -0
  3152. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread/yield_now.rs +0 -0
  3153. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_current_thread.rs +0 -0
  3154. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_join_set.rs +0 -0
  3155. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_local.rs +0 -0
  3156. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/queue.rs +0 -0
  3157. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/shutdown.rs +0 -0
  3158. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread/yield_now.rs +0 -0
  3159. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread.rs +0 -0
  3160. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/queue.rs +0 -0
  3161. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/shutdown.rs +0 -0
  3162. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt/yield_now.rs +0 -0
  3163. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_multi_thread_alt.rs +0 -0
  3164. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/loom_oneshot.rs +0 -0
  3165. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/mod.rs +0 -0
  3166. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/queue.rs +0 -0
  3167. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task.rs +0 -0
  3168. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/tests/task_combinations.rs +0 -0
  3169. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/thread_id.rs +0 -0
  3170. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/entry.rs +0 -0
  3171. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/handle.rs +0 -0
  3172. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/mod.rs +0 -0
  3173. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/source.rs +0 -0
  3174. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/tests/mod.rs +0 -0
  3175. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/level.rs +0 -0
  3176. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/runtime/time/wheel/mod.rs +0 -0
  3177. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/ctrl_c.rs +0 -0
  3178. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/mod.rs +0 -0
  3179. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/registry.rs +0 -0
  3180. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/reusable_box.rs +0 -0
  3181. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/unix.rs +0 -0
  3182. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/stub.rs +0 -0
  3183. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows/sys.rs +0 -0
  3184. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/signal/windows.rs +0 -0
  3185. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/barrier.rs +0 -0
  3186. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/batch_semaphore.rs +0 -0
  3187. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mod.rs +0 -0
  3188. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/block.rs +0 -0
  3189. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/bounded.rs +0 -0
  3190. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/chan.rs +0 -0
  3191. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/error.rs +0 -0
  3192. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/list.rs +0 -0
  3193. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/mod.rs +0 -0
  3194. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mpsc/unbounded.rs +0 -0
  3195. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/mutex.rs +0 -0
  3196. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/notify.rs +0 -0
  3197. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/once_cell.rs +0 -0
  3198. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/oneshot.rs +0 -0
  3199. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_read_guard.rs +0 -0
  3200. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard.rs +0 -0
  3201. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  3202. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/read_guard.rs +0 -0
  3203. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard.rs +0 -0
  3204. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  3205. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/rwlock.rs +0 -0
  3206. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/semaphore.rs +0 -0
  3207. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/atomic_waker.rs +0 -0
  3208. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/task/mod.rs +0 -0
  3209. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/atomic_waker.rs +0 -0
  3210. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_atomic_waker.rs +0 -0
  3211. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_broadcast.rs +0 -0
  3212. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_list.rs +0 -0
  3213. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_mpsc.rs +0 -0
  3214. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_notify.rs +0 -0
  3215. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_oneshot.rs +0 -0
  3216. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_rwlock.rs +0 -0
  3217. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  3218. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/loom_watch.rs +0 -0
  3219. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/mod.rs +0 -0
  3220. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/notify.rs +0 -0
  3221. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/tests/semaphore_batch.rs +0 -0
  3222. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/sync/watch.rs +0 -0
  3223. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/blocking.rs +0 -0
  3224. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/builder.rs +0 -0
  3225. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/consume_budget.rs +0 -0
  3226. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/join_set.rs +0 -0
  3227. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/local.rs +0 -0
  3228. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/mod.rs +0 -0
  3229. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/spawn.rs +0 -0
  3230. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/task_local.rs +0 -0
  3231. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/unconstrained.rs +0 -0
  3232. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/task/yield_now.rs +0 -0
  3233. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/clock.rs +0 -0
  3234. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/error.rs +0 -0
  3235. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/instant.rs +0 -0
  3236. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/interval.rs +0 -0
  3237. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/mod.rs +0 -0
  3238. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/sleep.rs +0 -0
  3239. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/time/timeout.rs +0 -0
  3240. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/atomic_cell.rs +0 -0
  3241. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/bit.rs +0 -0
  3242. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/cacheline.rs +0 -0
  3243. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/error.rs +0 -0
  3244. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/idle_notified_set.rs +0 -0
  3245. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/linked_list.rs +0 -0
  3246. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/markers.rs +0 -0
  3247. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/memchr.rs +0 -0
  3248. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/mod.rs +0 -0
  3249. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/once_cell.rs +0 -0
  3250. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt.rs +0 -0
  3251. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand/rt_unstable.rs +0 -0
  3252. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rand.rs +0 -0
  3253. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/rc_cell.rs +0 -0
  3254. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/sync_wrapper.rs +0 -0
  3255. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/trace.rs +0 -0
  3256. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/try_lock.rs +0 -0
  3257. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake.rs +0 -0
  3258. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/src/util/wake_list.rs +0 -0
  3259. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/_require_full.rs +0 -0
  3260. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/async_send_sync.rs +0 -0
  3261. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/buffered.rs +0 -0
  3262. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/dump.rs +0 -0
  3263. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs.rs +0 -0
  3264. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_canonicalize_dir.rs +0 -0
  3265. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_copy.rs +0 -0
  3266. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_dir.rs +0 -0
  3267. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_file.rs +0 -0
  3268. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_link.rs +0 -0
  3269. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options.rs +0 -0
  3270. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_open_options_windows.rs +0 -0
  3271. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_dir_all.rs +0 -0
  3272. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_remove_file.rs +0 -0
  3273. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_rename.rs +0 -0
  3274. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_dir_windows.rs +0 -0
  3275. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_symlink_file_windows.rs +0 -0
  3276. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/fs_try_exists.rs +0 -0
  3277. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_async_read.rs +0 -0
  3278. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_reader.rs +0 -0
  3279. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_buf_writer.rs +0 -0
  3280. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_chain.rs +0 -0
  3281. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy.rs +0 -0
  3282. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_copy_bidirectional.rs +0 -0
  3283. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver.rs +0 -0
  3284. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_driver_drop.rs +0 -0
  3285. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_fill_buf.rs +0 -0
  3286. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_lines.rs +0 -0
  3287. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_mem_stream.rs +0 -0
  3288. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_panic.rs +0 -0
  3289. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_poll_aio.rs +0 -0
  3290. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read.rs +0 -0
  3291. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_buf.rs +0 -0
  3292. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_exact.rs +0 -0
  3293. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_line.rs +0 -0
  3294. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_end.rs +0 -0
  3295. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_to_string.rs +0 -0
  3296. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_read_until.rs +0 -0
  3297. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_take.rs +0 -0
  3298. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_util_empty.rs +0 -0
  3299. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write.rs +0 -0
  3300. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all.rs +0 -0
  3301. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_all_buf.rs +0 -0
  3302. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_buf.rs +0 -0
  3303. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/io_write_int.rs +0 -0
  3304. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/join_handle_panic.rs +0 -0
  3305. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_join.rs +0 -0
  3306. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_pin.rs +0 -0
  3307. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_rename_test.rs +0 -0
  3308. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_select.rs +0 -0
  3309. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_test.rs +0 -0
  3310. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/macros_try_join.rs +0 -0
  3311. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_bind_resource.rs +0 -0
  3312. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_lookup_host.rs +0 -0
  3313. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_named_pipe.rs +0 -0
  3314. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_panic.rs +0 -0
  3315. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/net_unix_pipe.rs +0 -0
  3316. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/no_rt.rs +0 -0
  3317. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_arg0.rs +0 -0
  3318. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_2174.rs +0 -0
  3319. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_issue_42.rs +0 -0
  3320. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_kill_on_drop.rs +0 -0
  3321. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_raw_handle.rs +0 -0
  3322. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/process_smoke.rs +0 -0
  3323. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_basic.rs +0 -0
  3324. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_common.rs +0 -0
  3325. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle.rs +0 -0
  3326. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_handle_block_on.rs +0 -0
  3327. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_panic.rs +0 -0
  3328. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded.rs +0 -0
  3329. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_threaded_alt.rs +0 -0
  3330. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/rt_time_start_paused.rs +0 -0
  3331. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_ctrl_c.rs +0 -0
  3332. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_recv.rs +0 -0
  3333. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_rt.rs +0 -0
  3334. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_drop_signal.rs +0 -0
  3335. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_multi_rt.rs +0 -0
  3336. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_no_rt.rs +0 -0
  3337. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_notify_both.rs +0 -0
  3338. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_panic.rs +0 -0
  3339. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_twice.rs +0 -0
  3340. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/signal_usr1.rs +0 -0
  3341. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/io_vec.rs +0 -0
  3342. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/leaked_buffers.rs +0 -0
  3343. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/mpsc_stream.rs +0 -0
  3344. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/panic.rs +0 -0
  3345. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/support/signal.rs +0 -0
  3346. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_barrier.rs +0 -0
  3347. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_broadcast.rs +0 -0
  3348. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_errors.rs +0 -0
  3349. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc.rs +0 -0
  3350. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mpsc_weak.rs +0 -0
  3351. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex.rs +0 -0
  3352. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_mutex_owned.rs +0 -0
  3353. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_notify.rs +0 -0
  3354. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_once_cell.rs +0 -0
  3355. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_oneshot.rs +0 -0
  3356. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_panic.rs +0 -0
  3357. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_rwlock.rs +0 -0
  3358. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore.rs +0 -0
  3359. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_semaphore_owned.rs +0 -0
  3360. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/sync_watch.rs +0 -0
  3361. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_abort.rs +0 -0
  3362. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_blocking.rs +0 -0
  3363. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_builder.rs +0 -0
  3364. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_id.rs +0 -0
  3365. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_join_set.rs +0 -0
  3366. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local.rs +0 -0
  3367. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_local_set.rs +0 -0
  3368. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_panic.rs +0 -0
  3369. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/task_yield_now.rs +0 -0
  3370. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_accept.rs +0 -0
  3371. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_connect.rs +0 -0
  3372. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_echo.rs +0 -0
  3373. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_split.rs +0 -0
  3374. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_into_std.rs +0 -0
  3375. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_peek.rs +0 -0
  3376. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_shutdown.rs +0 -0
  3377. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_socket.rs +0 -0
  3378. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_split.rs +0 -0
  3379. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/tcp_stream.rs +0 -0
  3380. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/test_clock.rs +0 -0
  3381. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_interval.rs +0 -0
  3382. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_panic.rs +0 -0
  3383. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_pause.rs +0 -0
  3384. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_rt.rs +0 -0
  3385. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_sleep.rs +0 -0
  3386. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/time_timeout.rs +0 -0
  3387. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/udp.rs +0 -0
  3388. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_cred.rs +0 -0
  3389. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_datagram.rs +0 -0
  3390. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_split.rs +0 -0
  3391. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/uds_stream.rs +0 -0
  3392. /data/ext/cargo-vendor/{tokio-1.30.0 → tokio-1.32.0}/tests/unwindsafe.rs +0 -0
  3393. /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/LICENSE-MIT +0 -0
  3394. /data/ext/cargo-vendor/{unicase-2.6.0 → unicase-2.7.0}/build.rs +0 -0
  3395. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/LICENSE +0 -0
  3396. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/README.md +0 -0
  3397. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/clocks.rs +0 -0
  3398. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/dir.rs +0 -0
  3399. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/file.rs +0 -0
  3400. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/lib.rs +0 -0
  3401. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/net.rs +0 -0
  3402. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/sched/windows.rs +0 -0
  3403. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/sched.rs +0 -0
  3404. /data/ext/cargo-vendor/{wasi-cap-std-sync-10.0.1 → wasi-cap-std-sync-12.0.0}/src/stdio.rs +0 -0
  3405. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/LICENSE +0 -0
  3406. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/README.md +0 -0
  3407. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/README.md +0 -0
  3408. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/docs/README.md +0 -0
  3409. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/README.md +0 -0
  3410. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/docs.md +0 -0
  3411. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  3412. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  3413. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  3414. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  3415. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  3416. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  3417. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  3418. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  3419. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  3420. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  3421. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  3422. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
  3423. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  3424. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  3425. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/docs.html +0 -0
  3426. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/docs.md +0 -0
  3427. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  3428. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  3429. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/proposal-template/README.md +0 -0
  3430. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/proposals/README.md +0 -0
  3431. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/snapshots/README.md +0 -0
  3432. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/WASI/standard/README.md +0 -0
  3433. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/build.rs +0 -0
  3434. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/clocks.rs +0 -0
  3435. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/ctx.rs +0 -0
  3436. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/dir.rs +0 -0
  3437. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/error.rs +0 -0
  3438. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/lib.rs +0 -0
  3439. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/pipe.rs +0 -0
  3440. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/random.rs +0 -0
  3441. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/sched.rs +0 -0
  3442. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/snapshots/mod.rs +0 -0
  3443. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/snapshots/preview_0.rs +0 -0
  3444. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/snapshots/preview_1.rs +0 -0
  3445. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/string_array.rs +0 -0
  3446. /data/ext/cargo-vendor/{wasi-common-10.0.1 → wasi-common-12.0.0}/src/table.rs +0 -0
  3447. /data/ext/cargo-vendor/{wasm-encoder-0.29.0 → wasmparser-0.110.0}/LICENSE +0 -0
  3448. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/README.md +0 -0
  3449. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/examples/simple.rs +0 -0
  3450. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/binary_reader.rs +0 -0
  3451. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/aliases.rs +0 -0
  3452. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/exports.rs +0 -0
  3453. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/imports.rs +0 -0
  3454. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/instances.rs +0 -0
  3455. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/names.rs +0 -0
  3456. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component/start.rs +0 -0
  3457. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/component.rs +0 -0
  3458. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/code.rs +0 -0
  3459. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/coredumps.rs +0 -0
  3460. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/custom.rs +0 -0
  3461. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/data.rs +0 -0
  3462. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/exports.rs +0 -0
  3463. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/functions.rs +0 -0
  3464. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/globals.rs +0 -0
  3465. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/imports.rs +0 -0
  3466. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/init.rs +0 -0
  3467. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/memories.rs +0 -0
  3468. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/names.rs +0 -0
  3469. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/operators.rs +0 -0
  3470. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/producers.rs +0 -0
  3471. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/tables.rs +0 -0
  3472. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core/tags.rs +0 -0
  3473. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers/core.rs +0 -0
  3474. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/readers.rs +0 -0
  3475. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/resources.rs +0 -0
  3476. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/validator/func.rs +0 -0
  3477. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmparser-0.110.0}/src/validator/names.rs +0 -0
  3478. /data/ext/cargo-vendor/{wasmparser-0.107.0 → wasmtime-12.0.0}/LICENSE +0 -0
  3479. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/code.rs +0 -0
  3480. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/component/store.rs +0 -0
  3481. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/func/typed.rs +0 -0
  3482. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/limits.rs +0 -0
  3483. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/linker.rs +0 -0
  3484. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/profiling.rs +0 -0
  3485. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/ref.rs +0 -0
  3486. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/signatures.rs +0 -0
  3487. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/store/context.rs +0 -0
  3488. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/func.rs +0 -0
  3489. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/global.rs +0 -0
  3490. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/memory.rs +0 -0
  3491. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline/table.rs +0 -0
  3492. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/trampoline.rs +0 -0
  3493. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/types/matching.rs +0 -0
  3494. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/types.rs +0 -0
  3495. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/unix.rs +0 -0
  3496. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/values.rs +0 -0
  3497. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-12.0.0}/src/windows.rs +0 -0
  3498. /data/ext/cargo-vendor/{wasmtime-asm-macros-10.0.1 → wasmtime-asm-macros-12.0.0}/src/lib.rs +0 -0
  3499. /data/ext/cargo-vendor/{wasmtime-10.0.1 → wasmtime-cache-12.0.0}/LICENSE +0 -0
  3500. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/build.rs +0 -0
  3501. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/config/tests.rs +0 -0
  3502. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/config.rs +0 -0
  3503. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/lib.rs +0 -0
  3504. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/tests.rs +0 -0
  3505. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  3506. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/worker/tests.rs +0 -0
  3507. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/src/worker.rs +0 -0
  3508. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cache-12.0.0}/tests/cache_write_default_config.rs +0 -0
  3509. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/src/lib.rs +0 -0
  3510. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/char.wit +0 -0
  3511. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/conventions.wit +0 -0
  3512. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/direct-import.wit +0 -0
  3513. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/empty.wit +0 -0
  3514. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/flags.wit +0 -0
  3515. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/floats.wit +0 -0
  3516. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/function-new.wit +0 -0
  3517. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/integers.wit +0 -0
  3518. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/lists.wit +0 -0
  3519. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/many-arguments.wit +0 -0
  3520. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/multi-return.wit +0 -0
  3521. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/records.wit +0 -0
  3522. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/rename.wit +0 -0
  3523. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/share-types.wit +0 -0
  3524. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/simple-functions.wit +0 -0
  3525. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/simple-lists.wit +0 -0
  3526. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/simple-wasi.wit +0 -0
  3527. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/small-anonymous.wit +0 -0
  3528. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/smoke-default.wit +0 -0
  3529. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/smoke-export.wit +0 -0
  3530. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/smoke.wit +0 -0
  3531. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/strings.wit +0 -0
  3532. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/unions.wit +0 -0
  3533. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/use-paths.wit +0 -0
  3534. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/variants.wit +0 -0
  3535. /data/ext/cargo-vendor/{wasmtime-component-macro-10.0.1 → wasmtime-component-macro-12.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  3536. /data/ext/cargo-vendor/{wasmtime-component-util-10.0.1 → wasmtime-component-util-12.0.0}/src/lib.rs +0 -0
  3537. /data/ext/cargo-vendor/{wasmtime-cache-10.0.1 → wasmtime-cranelift-12.0.0}/LICENSE +0 -0
  3538. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/SECURITY.md +0 -0
  3539. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/gc.rs +0 -0
  3540. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/address_transform.rs +0 -0
  3541. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/attr.rs +0 -0
  3542. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/line_program.rs +0 -0
  3543. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/mod.rs +0 -0
  3544. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  3545. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/refs.rs +0 -0
  3546. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/transform/simulate.rs +0 -0
  3547. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug/write_debuginfo.rs +0 -0
  3548. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-cranelift-12.0.0}/src/debug.rs +0 -0
  3549. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-12.0.0}/src/compiled_function.rs +0 -0
  3550. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-10.0.1 → wasmtime-cranelift-shared-12.0.0}/src/isa_builder.rs +0 -0
  3551. /data/ext/cargo-vendor/{wasmtime-cranelift-10.0.1 → wasmtime-environ-12.0.0}/LICENSE +0 -0
  3552. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/address_map.rs +0 -0
  3553. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/builtin.rs +0 -0
  3554. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/fact/core_types.rs +0 -0
  3555. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/fact/traps.rs +0 -0
  3556. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/lib.rs +0 -0
  3557. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/module.rs +0 -0
  3558. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/module_types.rs +0 -0
  3559. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/ref_bits.rs +0 -0
  3560. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/scopevec.rs +0 -0
  3561. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/stack_map.rs +0 -0
  3562. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-environ-12.0.0}/src/vmoffsets.rs +0 -0
  3563. /data/ext/cargo-vendor/{wasmtime-environ-10.0.1 → wasmtime-fiber-12.0.0}/LICENSE +0 -0
  3564. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-12.0.0}/src/lib.rs +0 -0
  3565. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-fiber-12.0.0}/src/unix/x86.rs +0 -0
  3566. /data/ext/cargo-vendor/{wasmtime-fiber-10.0.1 → wasmtime-jit-12.0.0}/LICENSE +0 -0
  3567. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/debug.rs +0 -0
  3568. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/demangling.rs +0 -0
  3569. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/instantiate.rs +0 -0
  3570. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/lib.rs +0 -0
  3571. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/profiling/jitdump.rs +0 -0
  3572. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/profiling/perfmap.rs +0 -0
  3573. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/profiling/vtune.rs +0 -0
  3574. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind/miri.rs +0 -0
  3575. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind/systemv.rs +0 -0
  3576. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind/winx64.rs +0 -0
  3577. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-jit-12.0.0}/src/unwind.rs +0 -0
  3578. /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-12.0.0}/README.md +0 -0
  3579. /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-12.0.0}/src/lib.rs +0 -0
  3580. /data/ext/cargo-vendor/{wasmtime-jit-debug-10.0.1 → wasmtime-jit-debug-12.0.0}/src/perf_jitdump.rs +0 -0
  3581. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/lib.rs +0 -0
  3582. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/libc.rs +0 -0
  3583. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/miri.rs +0 -0
  3584. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-10.0.1 → wasmtime-jit-icache-coherence-12.0.0}/src/win.rs +0 -0
  3585. /data/ext/cargo-vendor/{wasmtime-jit-10.0.1 → wasmtime-runtime-12.0.0}/LICENSE +0 -0
  3586. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/cow.rs +0 -0
  3587. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/export.rs +0 -0
  3588. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/externref.rs +0 -0
  3589. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/imports.rs +0 -0
  3590. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  3591. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
  3592. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
  3593. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance/allocator/pooling.rs +0 -0
  3594. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/instance.rs +0 -0
  3595. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/memory.rs +0 -0
  3596. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap/miri.rs +0 -0
  3597. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap/windows.rs +0 -0
  3598. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap.rs +0 -0
  3599. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/mmap_vec.rs +0 -0
  3600. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/module_id.rs +0 -0
  3601. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/parking_spot.rs +0 -0
  3602. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/store_box.rs +0 -0
  3603. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/table.rs +0 -0
  3604. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/trampolines/s390x.rs +0 -0
  3605. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/trampolines.rs +0 -0
  3606. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
  3607. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
  3608. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
  3609. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
  3610. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/backtrace.rs +0 -0
  3611. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/macos.rs +0 -0
  3612. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/traphandlers/windows.rs +0 -0
  3613. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
  3614. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-runtime-12.0.0}/src/vmcontext.rs +0 -0
  3615. /data/ext/cargo-vendor/{wasmtime-runtime-10.0.1 → wasmtime-types-12.0.1}/LICENSE +0 -0
  3616. /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-types-12.0.1}/src/error.rs +0 -0
  3617. /data/ext/cargo-vendor/{wasmtime-types-10.0.1 → wasmtime-wasi-12.0.0}/LICENSE +0 -0
  3618. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/README.md +0 -0
  3619. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/build.rs +0 -0
  3620. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/src/lib.rs +0 -0
  3621. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/src/preview2/error.rs +0 -0
  3622. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/src/preview2/random.rs +0 -0
  3623. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
  3624. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/clocks/timezone.wit +0 -0
  3625. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
  3626. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/filesystem/filesystem.wit +0 -0
  3627. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/http/incoming-handler.wit +0 -0
  3628. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
  3629. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/http/types.wit +0 -0
  3630. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/logging/handler.wit +0 -0
  3631. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/command-extended.wit +0 -0
  3632. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/command.wit +0 -0
  3633. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/proxy.wit +0 -0
  3634. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/preview/reactor.wit +0 -0
  3635. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/random/insecure-seed.wit +0 -0
  3636. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/random/insecure.wit +0 -0
  3637. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/random/random.wit +0 -0
  3638. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  3639. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  3640. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/network.wit +0 -0
  3641. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  3642. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/tcp.wit +0 -0
  3643. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/udp-create-socket.wit +0 -0
  3644. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/sockets/udp.wit +0 -0
  3645. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/environment.wit +0 -0
  3646. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/exit.wit +0 -0
  3647. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/preopens.wit +0 -0
  3648. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/deps/wasi-cli-base/stdio.wit +0 -0
  3649. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/wit/main.wit +0 -0
  3650. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/witx/typenames.witx +0 -0
  3651. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wasmtime-wasi-12.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
  3652. /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-12.0.0}/LICENSE +0 -0
  3653. /data/ext/cargo-vendor/{wasmtime-winch-10.0.1 → wasmtime-winch-12.0.0}/src/lib.rs +0 -0
  3654. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-10.0.1 → wasmtime-wit-bindgen-12.0.0}/src/source.rs +0 -0
  3655. /data/ext/cargo-vendor/{wasmtime-wasi-10.0.1 → wast-63.0.0}/LICENSE +0 -0
  3656. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/README.md +0 -0
  3657. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/alias.rs +0 -0
  3658. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/binary.rs +0 -0
  3659. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/component.rs +0 -0
  3660. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/custom.rs +0 -0
  3661. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/expand.rs +0 -0
  3662. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/export.rs +0 -0
  3663. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/func.rs +0 -0
  3664. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/import.rs +0 -0
  3665. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/instance.rs +0 -0
  3666. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/item_ref.rs +0 -0
  3667. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/module.rs +0 -0
  3668. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/resolve.rs +0 -0
  3669. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/types.rs +0 -0
  3670. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component/wast.rs +0 -0
  3671. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/component.rs +0 -0
  3672. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/export.rs +0 -0
  3673. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/expr.rs +0 -0
  3674. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/global.rs +0 -0
  3675. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/import.rs +0 -0
  3676. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/memory.rs +0 -0
  3677. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/deinline_import_export.rs +0 -0
  3678. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/mod.rs +0 -0
  3679. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/names.rs +0 -0
  3680. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/resolve/types.rs +0 -0
  3681. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/table.rs +0 -0
  3682. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/tag.rs +0 -0
  3683. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/types.rs +0 -0
  3684. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core/wast.rs +0 -0
  3685. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/core.rs +0 -0
  3686. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/error.rs +0 -0
  3687. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/gensym.rs +0 -0
  3688. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/lexer.rs +0 -0
  3689. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/names.rs +0 -0
  3690. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/parser.rs +0 -0
  3691. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/token.rs +0 -0
  3692. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wast.rs +0 -0
  3693. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/src/wat.rs +0 -0
  3694. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/annotations.rs +0 -0
  3695. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/comments.rs +0 -0
  3696. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  3697. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  3698. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  3699. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  3700. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat +0 -0
  3701. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  3702. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat +0 -0
  3703. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  3704. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  3705. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  3706. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  3707. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  3708. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat +0 -0
  3709. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block1.wat.err +0 -0
  3710. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat +0 -0
  3711. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block2.wat.err +0 -0
  3712. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat +0 -0
  3713. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/block3.wat.err +0 -0
  3714. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  3715. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  3716. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  3717. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  3718. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  3719. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  3720. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  3721. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  3722. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  3723. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  3724. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  3725. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  3726. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  3727. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  3728. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  3729. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  3730. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  3731. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  3732. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  3733. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  3734. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  3735. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  3736. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  3737. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  3738. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  3739. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  3740. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  3741. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  3742. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  3743. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  3744. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  3745. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  3746. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  3747. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  3748. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  3749. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  3750. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  3751. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  3752. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  3753. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  3754. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  3755. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  3756. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  3757. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  3758. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  3759. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  3760. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  3761. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  3762. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  3763. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  3764. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  3765. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  3766. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  3767. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  3768. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat +0 -0
  3769. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  3770. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  3771. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  3772. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat +0 -0
  3773. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string1.wat.err +0 -0
  3774. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat +0 -0
  3775. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string10.wat.err +0 -0
  3776. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat +0 -0
  3777. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string11.wat.err +0 -0
  3778. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat +0 -0
  3779. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string12.wat.err +0 -0
  3780. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat +0 -0
  3781. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string13.wat.err +0 -0
  3782. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat +0 -0
  3783. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string14.wat.err +0 -0
  3784. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat +0 -0
  3785. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string15.wat.err +0 -0
  3786. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat +0 -0
  3787. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string16.wat.err +0 -0
  3788. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat +0 -0
  3789. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string2.wat.err +0 -0
  3790. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat +0 -0
  3791. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string3.wat.err +0 -0
  3792. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat +0 -0
  3793. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string4.wat.err +0 -0
  3794. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat +0 -0
  3795. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string5.wat.err +0 -0
  3796. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat +0 -0
  3797. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string6.wat.err +0 -0
  3798. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat +0 -0
  3799. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string7.wat.err +0 -0
  3800. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat +0 -0
  3801. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string8.wat.err +0 -0
  3802. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat +0 -0
  3803. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/string9.wat.err +0 -0
  3804. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  3805. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  3806. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/parse-fail.rs +0 -0
  3807. /data/ext/cargo-vendor/{wast-62.0.1 → wast-63.0.0}/tests/recursive.rs +0 -0
  3808. /data/ext/cargo-vendor/{wast-62.0.1 → wat-1.0.70}/LICENSE +0 -0
  3809. /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/README.md +0 -0
  3810. /data/ext/cargo-vendor/{wat-1.0.69 → wat-1.0.70}/src/lib.rs +0 -0
  3811. /data/ext/cargo-vendor/{wat-1.0.69 → wiggle-12.0.0}/LICENSE +0 -0
  3812. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/README.md +0 -0
  3813. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/borrow.rs +0 -0
  3814. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/error.rs +0 -0
  3815. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/guest_type.rs +0 -0
  3816. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/lib.rs +0 -0
  3817. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/region.rs +0 -0
  3818. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-12.0.0}/src/wasmtime.rs +0 -0
  3819. /data/ext/cargo-vendor/{wiggle-10.0.1 → wiggle-generate-12.0.0}/LICENSE +0 -0
  3820. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/README.md +0 -0
  3821. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/codegen_settings.rs +0 -0
  3822. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/funcs.rs +0 -0
  3823. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/lib.rs +0 -0
  3824. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/lifetimes.rs +0 -0
  3825. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/module_trait.rs +0 -0
  3826. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/names.rs +0 -0
  3827. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/error.rs +0 -0
  3828. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/handle.rs +0 -0
  3829. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/mod.rs +0 -0
  3830. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/record.rs +0 -0
  3831. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/types/variant.rs +0 -0
  3832. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-generate-12.0.0}/src/wasmtime.rs +0 -0
  3833. /data/ext/cargo-vendor/{wiggle-generate-10.0.1 → wiggle-macro-12.0.0}/LICENSE +0 -0
  3834. /data/ext/cargo-vendor/{wiggle-macro-10.0.1 → wiggle-macro-12.0.0}/src/lib.rs +0 -0
  3835. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/LICENSE +0 -0
  3836. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/build.rs +0 -0
  3837. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/abi/local.rs +0 -0
  3838. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/frame/mod.rs +0 -0
  3839. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/aarch64/address.rs +0 -0
  3840. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/aarch64/mod.rs +0 -0
  3841. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/aarch64/regs.rs +0 -0
  3842. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/reg.rs +0 -0
  3843. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/x64/address.rs +0 -0
  3844. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/isa/x64/mod.rs +0 -0
  3845. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/lib.rs +0 -0
  3846. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/regalloc.rs +0 -0
  3847. /data/ext/cargo-vendor/{winch-codegen-0.8.1 → winch-codegen-0.10.0}/src/regset.rs +0 -0
  3848. /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-apache-2.0 +0 -0
  3849. /data/ext/cargo-vendor/{windows-targets-0.48.1 → windows-targets-0.48.5}/license-mit +0 -0
  3850. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/build.rs +0 -0
  3851. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
  3852. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/license-mit +0 -0
  3853. /data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.48.0 → windows_aarch64_gnullvm-0.48.5}/src/lib.rs +0 -0
  3854. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/build.rs +0 -0
  3855. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-apache-2.0 +0 -0
  3856. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/license-mit +0 -0
  3857. /data/ext/cargo-vendor/{windows_aarch64_msvc-0.48.0 → windows_aarch64_msvc-0.48.5}/src/lib.rs +0 -0
  3858. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/build.rs +0 -0
  3859. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-apache-2.0 +0 -0
  3860. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/license-mit +0 -0
  3861. /data/ext/cargo-vendor/{windows_i686_gnu-0.48.0 → windows_i686_gnu-0.48.5}/src/lib.rs +0 -0
  3862. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/build.rs +0 -0
  3863. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-apache-2.0 +0 -0
  3864. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/license-mit +0 -0
  3865. /data/ext/cargo-vendor/{windows_i686_msvc-0.48.0 → windows_i686_msvc-0.48.5}/src/lib.rs +0 -0
  3866. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/build.rs +0 -0
  3867. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-apache-2.0 +0 -0
  3868. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/license-mit +0 -0
  3869. /data/ext/cargo-vendor/{windows_x86_64_gnu-0.48.0 → windows_x86_64_gnu-0.48.5}/src/lib.rs +0 -0
  3870. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/build.rs +0 -0
  3871. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-apache-2.0 +0 -0
  3872. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/license-mit +0 -0
  3873. /data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.48.0 → windows_x86_64_gnullvm-0.48.5}/src/lib.rs +0 -0
  3874. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/build.rs +0 -0
  3875. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-apache-2.0 +0 -0
  3876. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/license-mit +0 -0
  3877. /data/ext/cargo-vendor/{windows_x86_64_msvc-0.48.0 → windows_x86_64_msvc-0.48.5}/src/lib.rs +0 -0
  3878. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/README.md +0 -0
  3879. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/all.rs +0 -0
  3880. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/comments.wit +0 -0
  3881. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  3882. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  3883. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/diamond1/join.wit +0 -0
  3884. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  3885. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  3886. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/disambiguate-diamond/world.wit +0 -0
  3887. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/embedded.wit.md +0 -0
  3888. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/empty.wit +0 -0
  3889. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/foreign-deps/root.wit +0 -0
  3890. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/another-pkg/other-doc.wit +0 -0
  3891. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/corp/saas.wit +0 -0
  3892. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/different-pkg/the-doc.wit +0 -0
  3893. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/foreign-pkg/the-doc.wit +0 -0
  3894. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/some-pkg/some-doc.wit +0 -0
  3895. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/wasi/clocks.wit +0 -0
  3896. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/foreign-deps → wit-parser-0.9.2/tests/ui/foreign-deps-union}/deps/wasi/filesystem.wit +0 -0
  3897. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/functions.wit +0 -0
  3898. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/many-names/a.wit +0 -0
  3899. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/many-names/b.wit +0 -0
  3900. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/bar.wit +0 -0
  3901. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/cycle-a.wit +0 -0
  3902. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/cycle-b.wit +0 -0
  3903. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/multi-file/foo.wit +0 -0
  3904. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax1.wit +0 -0
  3905. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax3.wit +0 -0
  3906. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/package-syntax4.wit +0 -0
  3907. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  3908. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  3909. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/async.wit.result +0 -0
  3910. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/async1.wit.result +0 -0
  3911. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function.wit +0 -0
  3912. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  3913. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function2.wit +0 -0
  3914. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  3915. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-list.wit +0 -0
  3916. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  3917. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  3918. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  3919. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  3920. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  3921. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  3922. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  3923. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  3924. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  3925. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  3926. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  3927. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  3928. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  3929. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  3930. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  3931. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  3932. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  3933. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  3934. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  3935. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  3936. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  3937. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  3938. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle.wit +0 -0
  3939. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle.wit.result +0 -0
  3940. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle2.wit +0 -0
  3941. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  3942. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle3.wit +0 -0
  3943. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  3944. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle4.wit +0 -0
  3945. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  3946. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle5.wit +0 -0
  3947. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  3948. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/dangling-type.wit +0 -0
  3949. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  3950. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  3951. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  3952. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  3953. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  3954. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  3955. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  3956. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  3957. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  3958. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  3959. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-enum.wit +0 -0
  3960. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  3961. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-union.wit +0 -0
  3962. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-union.wit.result +0 -0
  3963. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  3964. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  3965. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/export-twice.wit +0 -0
  3966. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  3967. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/worlds-same-fields5.wit → wit-parser-0.9.2/tests/ui/parse-fail/import-and-export1.wit} +0 -0
  3968. /data/ext/cargo-vendor/{wit-parser-0.8.0/tests/ui/worlds.wit → wit-parser-0.9.2/tests/ui/parse-fail/import-and-export3.wit} +0 -0
  3969. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap1.wit +0 -0
  3970. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -0
  3971. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap2.wit +0 -0
  3972. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -0
  3973. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-twice.wit +0 -0
  3974. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  3975. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-md.md +0 -0
  3976. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-md.wit.result +0 -0
  3977. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  3978. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  3979. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  3980. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  3981. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  3982. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  3983. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/keyword.wit +0 -0
  3984. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/keyword.wit.result +0 -0
  3985. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/missing-package.wit +0 -0
  3986. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  3987. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  3988. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  3989. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  3990. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  3991. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  3992. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  3993. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  3994. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  3995. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  3996. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  3997. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  3998. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  3999. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  4000. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  4001. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  4002. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  4003. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  4004. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  4005. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  4006. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  4007. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  4008. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  4009. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  4010. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  4011. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  4012. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  4013. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  4014. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  4015. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  4016. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  4017. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  4018. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  4019. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict.wit +0 -0
  4020. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  4021. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  4022. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  4023. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  4024. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  4025. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  4026. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  4027. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  4028. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  4029. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  4030. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  4031. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  4032. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  4033. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  4034. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  4035. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  4036. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  4037. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  4038. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/type-then-eof.wit +0 -0
  4039. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/types.wit +0 -0
  4040. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/use-chain.wit +0 -0
  4041. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/use.wit +0 -0
  4042. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/deps/a1/foo.wit +0 -0
  4043. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/deps/a2/foo.wit +0 -0
  4044. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/versions/foo.wit +0 -0
  4045. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/wasi.wit +0 -0
  4046. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-iface-no-collide.wit +0 -0
  4047. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import1.wit +0 -0
  4048. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import2.wit +0 -0
  4049. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-implicit-import3.wit +0 -0
  4050. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/world-top-level-funcs.wit +0 -0
  4051. /data/ext/cargo-vendor/{wit-parser-0.8.0 → wit-parser-0.9.2}/tests/ui/worlds-with-types.wit +0 -0
@@ -1,4481 +0,0 @@
1
- ;; x86-64 instruction selection and CLIF-to-MachInst lowering.
2
-
3
- ;; The main lowering constructor term: takes a clif `Inst` and returns the
4
- ;; register(s) within which the lowered instruction's result values live.
5
- (decl partial lower (Inst) InstOutput)
6
-
7
- ;; A variant of the main lowering constructor term, used for branches.
8
- ;; The only difference is that it gets an extra argument holding a vector
9
- ;; of branch targets to be used.
10
- (decl partial lower_branch (Inst MachLabelSlice) Unit)
11
-
12
- ;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13
-
14
- ;; `i64` and smaller.
15
- (rule (lower (has_type (fits_in_64 ty)
16
- (iconst (u64_from_imm64 x))))
17
- (imm ty x))
18
-
19
- ;; `i128`
20
- (rule 1 (lower (has_type $I128
21
- (iconst (u64_from_imm64 x))))
22
- (value_regs (imm $I64 x)
23
- (imm $I64 0)))
24
-
25
- ;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26
-
27
- (rule (lower (f32const (u32_from_ieee32 x)))
28
- (imm $F32 x))
29
-
30
- ;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
31
-
32
- (rule (lower (f64const (u64_from_ieee64 x)))
33
- (imm $F64 x))
34
-
35
- ;;;; Rules for `null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
36
-
37
- (rule (lower (has_type ty (null)))
38
- (imm ty 0))
39
-
40
- ;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
-
42
- ;; `i64` and smaller.
43
-
44
- ;; Base case for 8 and 16-bit types
45
- (rule -6 (lower (has_type (fits_in_16 ty)
46
- (iadd x y)))
47
- (x64_add ty x y))
48
-
49
- ;; Base case for 32 and 64-bit types which might end up using the `lea`
50
- ;; instruction to fold multiple operations into one.
51
- ;;
52
- ;; Note that at this time this always generates a `lea` pseudo-instruction,
53
- ;; but the actual instruction emitted might be an `add` if it's equivalent.
54
- ;; For more details on this see the `emit.rs` logic to emit
55
- ;; `LoadEffectiveAddress`.
56
- (rule -5 (lower (has_type (ty_32_or_64 ty) (iadd x y)))
57
- (x64_lea ty (to_amode_add (mem_flags_trusted) x y (zero_offset))))
58
-
59
- ;; Higher-priority cases than the previous two where a load can be sunk into
60
- ;; the add instruction itself. Note that both operands are tested for
61
- ;; sink-ability since addition is commutative
62
- (rule -4 (lower (has_type (fits_in_64 ty)
63
- (iadd x (sinkable_load y))))
64
- (x64_add ty x y))
65
- (rule -3 (lower (has_type (fits_in_64 ty)
66
- (iadd (sinkable_load x) y)))
67
- (x64_add ty y x))
68
-
69
- ;; SSE.
70
-
71
- (rule (lower (has_type (multi_lane 8 16)
72
- (iadd x y)))
73
- (x64_paddb x y))
74
-
75
- (rule (lower (has_type (multi_lane 16 8)
76
- (iadd x y)))
77
- (x64_paddw x y))
78
-
79
- (rule (lower (has_type (multi_lane 32 4)
80
- (iadd x y)))
81
- (x64_paddd x y))
82
-
83
- (rule (lower (has_type (multi_lane 64 2)
84
- (iadd x y)))
85
- (x64_paddq x y))
86
-
87
- ;; `i128`
88
- (rule 1 (lower (has_type $I128 (iadd x y)))
89
- ;; Get the high/low registers for `x`.
90
- (let ((x_regs ValueRegs x)
91
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
92
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
93
- ;; Get the high/low registers for `y`.
94
- (let ((y_regs ValueRegs y)
95
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
96
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
97
- ;; Do an add followed by an add-with-carry.
98
- (with_flags (x64_add_with_flags_paired $I64 x_lo y_lo)
99
- (x64_adc_paired $I64 x_hi y_hi)))))
100
-
101
- ;;;; Helpers for `*_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
102
-
103
- (decl construct_overflow_op (CC ProducesFlags) InstOutput)
104
- (rule (construct_overflow_op cc inst)
105
- (let ((results ValueRegs (with_flags inst
106
- (x64_setcc_paired cc))))
107
- (output_pair (value_regs_get results 0)
108
- (value_regs_get results 1))))
109
-
110
- (decl construct_overflow_op_alu (Type CC AluRmiROpcode Gpr GprMemImm) InstOutput)
111
- (rule (construct_overflow_op_alu ty cc alu_op src1 src2)
112
- (construct_overflow_op cc (x64_alurmi_with_flags_paired alu_op ty src1 src2)))
113
-
114
- ;; This essentially creates
115
- ;; alu_<op1> x_lo, y_lo
116
- ;; alu_<op2> x_hi, y_hi
117
- ;; set<cc> r8
118
- (decl construct_overflow_op_alu_128 (CC AluRmiROpcode AluRmiROpcode Value Value) InstOutput)
119
- (rule (construct_overflow_op_alu_128 cc op1 op2 x y)
120
- ;; Get the high/low registers for `x`.
121
- (let ((x_regs ValueRegs x)
122
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
123
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
124
- ;; Get the high/low registers for `y`.
125
- (let ((y_regs ValueRegs y)
126
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
127
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
128
- (let ((lo_inst ProducesFlags (x64_alurmi_with_flags_paired op1 $I64 x_lo y_lo))
129
- (hi_inst ConsumesAndProducesFlags (x64_alurmi_with_flags_chained op2 $I64 x_hi y_hi))
130
- (of_inst ConsumesFlags (x64_setcc_paired cc))
131
-
132
- (result MultiReg (with_flags_chained lo_inst hi_inst of_inst)))
133
- (multi_reg_to_pair_and_single result)))))
134
-
135
- ;;;; Rules for `uadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
136
-
137
- (rule 1 (lower (uadd_overflow x y @ (value_type (fits_in_64 ty))))
138
- (construct_overflow_op_alu ty (CC.B) (AluRmiROpcode.Add) x y))
139
-
140
- ;; i128 gets lowered into adc and add
141
- (rule 0 (lower (uadd_overflow x y @ (value_type $I128)))
142
- (construct_overflow_op_alu_128 (CC.B) (AluRmiROpcode.Add) (AluRmiROpcode.Adc) x y))
143
-
144
- ;;;; Rules for `sadd_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
145
-
146
- (rule 1 (lower (sadd_overflow x y @ (value_type (fits_in_64 ty))))
147
- (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Add) x y))
148
-
149
- (rule 0 (lower (sadd_overflow x y @ (value_type $I128)))
150
- (construct_overflow_op_alu_128 (CC.O) (AluRmiROpcode.Add) (AluRmiROpcode.Adc) x y))
151
-
152
- ;;;; Rules for `usub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
153
-
154
- (rule 1 (lower (usub_overflow x y @ (value_type (fits_in_64 ty))))
155
- (construct_overflow_op_alu ty (CC.B) (AluRmiROpcode.Sub) x y))
156
-
157
- (rule 0 (lower (usub_overflow x y @ (value_type $I128)))
158
- (construct_overflow_op_alu_128 (CC.B) (AluRmiROpcode.Sub) (AluRmiROpcode.Sbb) x y))
159
-
160
- ;;;; Rules for `ssub_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
161
-
162
- (rule 1 (lower (ssub_overflow x y @ (value_type (fits_in_64 ty))))
163
- (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Sub) x y))
164
-
165
- (rule 0 (lower (ssub_overflow x y @ (value_type $I128)))
166
- (construct_overflow_op_alu_128 (CC.O) (AluRmiROpcode.Sub) (AluRmiROpcode.Sbb) x y))
167
-
168
- ;;;; Rules for `umul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
169
-
170
- (rule 2 (lower (umul_overflow x y @ (value_type (fits_in_64 ty))))
171
- (construct_overflow_op (CC.O) (x64_umullo_with_flags_paired ty x y)))
172
-
173
- ;;;; Rules for `smul_overflow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
174
-
175
- (rule 2 (lower (smul_overflow x y @ (value_type (ty_int_ref_16_to_64 ty))))
176
- (construct_overflow_op_alu ty (CC.O) (AluRmiROpcode.Mul) x y))
177
-
178
- ;; there is no 8bit imul with an immediate operand so we need to put it in a register or memory
179
- (rule 1 (lower (smul_overflow x y @ (value_type $I8)))
180
- (construct_overflow_op (CC.O) (x64_alurmi_with_flags_paired (AluRmiROpcode.Mul) $I8 x (reg_mem_to_reg_mem_imm (put_in_reg_mem y)))))
181
-
182
- ;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
183
-
184
- (rule (lower (has_type (multi_lane 8 16)
185
- (sadd_sat x y)))
186
- (x64_paddsb x y))
187
-
188
- (rule (lower (has_type (multi_lane 16 8)
189
- (sadd_sat x y)))
190
- (x64_paddsw x y))
191
-
192
- ;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
193
-
194
- (rule (lower (has_type (multi_lane 8 16)
195
- (uadd_sat x y)))
196
- (x64_paddusb x y))
197
-
198
- (rule (lower (has_type (multi_lane 16 8)
199
- (uadd_sat x y)))
200
- (x64_paddusw x y))
201
-
202
- ;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
203
-
204
- ;; `i64` and smaller.
205
-
206
- ;; Sub two registers.
207
- (rule -3 (lower (has_type (fits_in_64 ty)
208
- (isub x y)))
209
- (x64_sub ty x y))
210
-
211
- ;; SSE.
212
-
213
- (rule (lower (has_type (multi_lane 8 16)
214
- (isub x y)))
215
- (x64_psubb x y))
216
-
217
- (rule (lower (has_type (multi_lane 16 8)
218
- (isub x y)))
219
- (x64_psubw x y))
220
-
221
- (rule (lower (has_type (multi_lane 32 4)
222
- (isub x y)))
223
- (x64_psubd x y))
224
-
225
- (rule (lower (has_type (multi_lane 64 2)
226
- (isub x y)))
227
- (x64_psubq x y))
228
-
229
- ;; `i128`
230
- (rule 1 (lower (has_type $I128 (isub x y)))
231
- ;; Get the high/low registers for `x`.
232
- (let ((x_regs ValueRegs x)
233
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
234
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
235
- ;; Get the high/low registers for `y`.
236
- (let ((y_regs ValueRegs y)
237
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
238
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
239
- ;; Do a sub followed by an sub-with-borrow.
240
- (with_flags (x64_sub_with_flags_paired $I64 x_lo y_lo)
241
- (x64_sbb_paired $I64 x_hi y_hi)))))
242
-
243
- ;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
244
-
245
- (rule (lower (has_type (multi_lane 8 16)
246
- (ssub_sat x y)))
247
- (x64_psubsb x y))
248
-
249
- (rule (lower (has_type (multi_lane 16 8)
250
- (ssub_sat x y)))
251
- (x64_psubsw x y))
252
-
253
- ;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
254
-
255
- (rule (lower (has_type (multi_lane 8 16)
256
- (usub_sat x y)))
257
- (x64_psubusb x y))
258
-
259
- (rule (lower (has_type (multi_lane 16 8)
260
- (usub_sat x y)))
261
- (x64_psubusw x y))
262
-
263
- ;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
264
-
265
- ;; `{i,b}64` and smaller.
266
-
267
- ;; And two registers.
268
- (rule 0 (lower (has_type ty (band x y)))
269
- (if (ty_int_ref_scalar_64 ty))
270
- (x64_and ty x y))
271
-
272
- ;; The above case automatically handles when the rhs is an immediate or a
273
- ;; sinkable load, but additionally handle the lhs here.
274
-
275
- (rule 1 (lower (has_type ty (band (sinkable_load x) y)))
276
- (if (ty_int_ref_scalar_64 ty))
277
- (x64_and ty y x))
278
-
279
- (rule 2 (lower (has_type ty (band (simm32_from_value x) y)))
280
- (if (ty_int_ref_scalar_64 ty))
281
- (x64_and ty y x))
282
-
283
- ;; f32 and f64
284
-
285
- (rule 5 (lower (has_type (ty_scalar_float ty) (band x y)))
286
- (sse_and ty x y))
287
-
288
- ;; SSE.
289
-
290
- (decl sse_and (Type Xmm XmmMem) Xmm)
291
- (rule (sse_and $F32X4 x y) (x64_andps x y))
292
- (rule (sse_and $F64X2 x y) (x64_andpd x y))
293
- (rule (sse_and $F32 x y) (x64_andps x y))
294
- (rule (sse_and $F64 x y) (x64_andpd x y))
295
- (rule -1 (sse_and (multi_lane _bits _lanes) x y) (x64_pand x y))
296
-
297
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
298
- (band x y)))
299
- (sse_and ty x y))
300
-
301
- ;; `i128`.
302
-
303
- (rule 7 (lower (has_type $I128 (band x y)))
304
- (let ((x_regs ValueRegs x)
305
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
306
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
307
- (y_regs ValueRegs y)
308
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
309
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
310
- (value_gprs (x64_and $I64 x_lo y_lo)
311
- (x64_and $I64 x_hi y_hi))))
312
-
313
- ;; Specialized lowerings for `(band x (bnot y))` which is additionally produced
314
- ;; by Cranelift's `band_not` instruction that is legalized into the simpler
315
- ;; forms early on.
316
-
317
- (decl sse_and_not (Type Xmm XmmMem) Xmm)
318
- (rule (sse_and_not $F32X4 x y) (x64_andnps x y))
319
- (rule (sse_and_not $F64X2 x y) (x64_andnpd x y))
320
- (rule -1 (sse_and_not (multi_lane _bits _lanes) x y) (x64_pandn x y))
321
-
322
- ;; Note the flipping of operands below as we're match
323
- ;;
324
- ;; (band x (bnot y))
325
- ;;
326
- ;; while x86 does
327
- ;;
328
- ;; pandn(x, y) = and(not(x), y)
329
- (rule 8 (lower (has_type ty @ (multi_lane _bits _lane) (band x (bnot y))))
330
- (sse_and_not ty y x))
331
- (rule 9 (lower (has_type ty @ (multi_lane _bits _lane) (band (bnot y) x)))
332
- (sse_and_not ty y x))
333
-
334
- (rule 10 (lower (has_type ty (band x (bnot y))))
335
- (if (ty_int_ref_scalar_64 ty))
336
- (if-let $true (use_bmi1))
337
- ;; the first argument is the one that gets inverted with andn
338
- (x64_andn ty y x))
339
- (rule 11 (lower (has_type ty (band (bnot y) x)))
340
- (if (ty_int_ref_scalar_64 ty))
341
- (if-let $true (use_bmi1))
342
- (x64_andn ty y x))
343
-
344
- ;; Specialization of `blsr` for BMI1
345
-
346
- (rule 12 (lower (has_type (ty_32_or_64 ty) (band (isub x (iconst (u64_from_imm64 1))) x)))
347
- (if-let $true (use_bmi1))
348
- (x64_blsr ty x))
349
- (rule 13 (lower (has_type (ty_32_or_64 ty) (band x (isub x (iconst (u64_from_imm64 1))))))
350
- (if-let $true (use_bmi1))
351
- (x64_blsr ty x))
352
-
353
- ;; Specialization of `blsi` for BMI1
354
-
355
- (rule 12 (lower (has_type (ty_32_or_64 ty) (band (ineg x) x)))
356
- (if-let $true (use_bmi1))
357
- (x64_blsi ty x))
358
- (rule 13 (lower (has_type (ty_32_or_64 ty) (band x (ineg x))))
359
- (if-let $true (use_bmi1))
360
- (x64_blsi ty x))
361
-
362
- ;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
363
-
364
- ;; `{i,b}64` and smaller.
365
-
366
- ;; Or two registers.
367
- (rule 0 (lower (has_type ty (bor x y)))
368
- (if (ty_int_ref_scalar_64 ty))
369
- (x64_or ty x y))
370
-
371
- ;; Handle immediates/sinkable loads on the lhs in addition to the automatic
372
- ;; handling of the rhs above
373
-
374
- (rule 1 (lower (has_type ty (bor (sinkable_load x) y)))
375
- (if (ty_int_ref_scalar_64 ty))
376
- (x64_or ty y x))
377
-
378
- (rule 2 (lower (has_type ty (bor (simm32_from_value x) y)))
379
- (if (ty_int_ref_scalar_64 ty))
380
- (x64_or ty y x))
381
-
382
- ;; f32 and f64
383
-
384
- (rule 5 (lower (has_type (ty_scalar_float ty) (bor x y)))
385
- (sse_or ty x y))
386
-
387
- ;; SSE.
388
-
389
- (decl sse_or (Type Xmm XmmMem) Xmm)
390
- (rule (sse_or $F32X4 x y) (x64_orps x y))
391
- (rule (sse_or $F64X2 x y) (x64_orpd x y))
392
- (rule (sse_or $F32 x y) (x64_orps x y))
393
- (rule (sse_or $F64 x y) (x64_orpd x y))
394
- (rule -1 (sse_or (multi_lane _bits _lanes) x y) (x64_por x y))
395
-
396
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
397
- (bor x y)))
398
- (sse_or ty x y))
399
-
400
- ;; `{i,b}128`.
401
-
402
- (decl or_i128 (ValueRegs ValueRegs) ValueRegs)
403
- (rule (or_i128 x y)
404
- (let ((x_lo Gpr (value_regs_get_gpr x 0))
405
- (x_hi Gpr (value_regs_get_gpr x 1))
406
- (y_lo Gpr (value_regs_get_gpr y 0))
407
- (y_hi Gpr (value_regs_get_gpr y 1)))
408
- (value_gprs (x64_or $I64 x_lo y_lo)
409
- (x64_or $I64 x_hi y_hi))))
410
-
411
- (rule 7 (lower (has_type $I128 (bor x y)))
412
- (or_i128 x y))
413
-
414
- ;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
415
-
416
- ;; `{i,b}64` and smaller.
417
-
418
- ;; Xor two registers.
419
- (rule 0 (lower (has_type ty (bxor x y)))
420
- (if (ty_int_ref_scalar_64 ty))
421
- (x64_xor ty x y))
422
-
423
- ;; Handle xor with lhs immediates/sinkable loads in addition to the automatic
424
- ;; handling of the rhs above.
425
-
426
- (rule 1 (lower (has_type ty (bxor (sinkable_load x) y)))
427
- (if (ty_int_ref_scalar_64 ty))
428
- (x64_xor ty y x))
429
-
430
- (rule 4 (lower (has_type ty (bxor (simm32_from_value x) y)))
431
- (if (ty_int_ref_scalar_64 ty))
432
- (x64_xor ty y x))
433
-
434
- ;; f32 and f64
435
-
436
- (rule 5 (lower (has_type (ty_scalar_float ty) (bxor x y)))
437
- (x64_xor_vector ty x y))
438
-
439
- ;; SSE.
440
-
441
- (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes) (bxor x y)))
442
- (x64_xor_vector ty x y))
443
-
444
- ;; `{i,b}128`.
445
-
446
- (rule 7 (lower (has_type $I128 (bxor x y)))
447
- (let ((x_regs ValueRegs x)
448
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
449
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
450
- (y_regs ValueRegs y)
451
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
452
- (y_hi Gpr (value_regs_get_gpr y_regs 1)))
453
- (value_gprs (x64_xor $I64 x_lo y_lo)
454
- (x64_xor $I64 x_hi y_hi))))
455
-
456
- ;; Specialization of `blsmsk` for BMI1
457
-
458
- (rule 8 (lower (has_type (ty_32_or_64 ty) (bxor (isub x (iconst (u64_from_imm64 1))) x)))
459
- (if-let $true (use_bmi1))
460
- (x64_blsmsk ty x))
461
- (rule 9 (lower (has_type (ty_32_or_64 ty) (bxor x (isub x (iconst (u64_from_imm64 1))))))
462
- (if-let $true (use_bmi1))
463
- (x64_blsmsk ty x))
464
-
465
- ;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
466
-
467
- ;; `i64` and smaller.
468
-
469
- (rule -1 (lower (has_type (fits_in_64 ty) (ishl src amt)))
470
- (x64_shl ty src (put_masked_in_imm8_gpr amt ty)))
471
-
472
- ;; `i128`.
473
-
474
- (decl shl_i128 (ValueRegs Gpr) ValueRegs)
475
- (rule (shl_i128 src amt)
476
- ;; Unpack the registers that make up the 128-bit value being shifted.
477
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
478
- (src_hi Gpr (value_regs_get_gpr src 1))
479
- ;; Do two 64-bit shifts.
480
- (lo_shifted Gpr (x64_shl $I64 src_lo amt))
481
- (hi_shifted Gpr (x64_shl $I64 src_hi amt))
482
- ;; `src_lo >> (64 - amt)` are the bits to carry over from the lo
483
- ;; into the hi.
484
- (carry Gpr (x64_shr $I64
485
- src_lo
486
- (x64_sub $I64
487
- (imm $I64 64)
488
- amt)))
489
- (zero Gpr (imm $I64 0))
490
- ;; Nullify the carry if we are shifting in by a multiple of 128.
491
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64)
492
- (RegMemImm.Imm 127)
493
- amt)
494
- (cmove $I64
495
- (CC.Z)
496
- zero
497
- carry)))
498
- ;; Add the carry into the high half.
499
- (hi_shifted_ Gpr (x64_or $I64 carry_ hi_shifted)))
500
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
501
- ;; (modulo 128), then the low bits are zero and the high bits are our
502
- ;; low bits.
503
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
504
- (consumes_flags_concat
505
- (cmove $I64 (CC.Z) lo_shifted zero)
506
- (cmove $I64 (CC.Z) hi_shifted_ lo_shifted)))))
507
-
508
- (rule (lower (has_type $I128 (ishl src amt)))
509
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
510
- ;; amount to the value's bit width.
511
- (let ((amt_ Gpr (lo_gpr amt)))
512
- (shl_i128 src amt_)))
513
-
514
- ;; SSE.
515
-
516
- ;; Since the x86 instruction set does not have any 8x16 shift instructions (even
517
- ;; in higher feature sets like AVX), we lower the `ishl.i8x16` to a sequence of
518
- ;; instructions. The basic idea, whether the amount to shift by is an immediate
519
- ;; or not, is to use a 16x8 shift and then mask off the incorrect bits to 0s.
520
- (rule (lower (has_type ty @ $I8X16 (ishl src amt)))
521
- (let (
522
- ;; Mask the amount to ensure wrapping behaviour
523
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
524
- ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
525
- ;; correct for half of the lanes; the others must be fixed up with
526
- ;; the mask below.
527
- (unmasked Xmm (x64_psllw src (mov_rmi_to_xmm masked_amt)))
528
- (mask_addr SyntheticAmode (ishl_i8x16_mask masked_amt))
529
- (mask Reg (x64_load $I8X16 mask_addr (ExtKind.None))))
530
- (sse_and $I8X16 unmasked (RegMem.Reg mask))))
531
-
532
- ;; Get the address of the mask to use when fixing up the lanes that weren't
533
- ;; correctly generated by the 16x8 shift.
534
- (decl ishl_i8x16_mask (RegMemImm) SyntheticAmode)
535
-
536
- ;; When the shift amount is known, we can statically (i.e. at compile time)
537
- ;; determine the mask to use and only emit that.
538
- (decl ishl_i8x16_mask_for_const (u32) SyntheticAmode)
539
- (extern constructor ishl_i8x16_mask_for_const ishl_i8x16_mask_for_const)
540
- (rule (ishl_i8x16_mask (RegMemImm.Imm amt))
541
- (ishl_i8x16_mask_for_const amt))
542
-
543
- ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
544
- ;; time) find the correct mask offset in the table. We use `lea` to find the
545
- ;; base address of the mask table and then complex addressing to offset to the
546
- ;; right mask: `base_address + amt << 4`
547
- (decl ishl_i8x16_mask_table () SyntheticAmode)
548
- (extern constructor ishl_i8x16_mask_table ishl_i8x16_mask_table)
549
- (rule (ishl_i8x16_mask (RegMemImm.Reg amt))
550
- (let ((mask_table SyntheticAmode (ishl_i8x16_mask_table))
551
- (base_mask_addr Gpr (x64_lea $I64 mask_table))
552
- (mask_offset Gpr (x64_shl $I64 amt
553
- (imm8_to_imm8_gpr 4))))
554
- (Amode.ImmRegRegShift 0
555
- base_mask_addr
556
- mask_offset
557
- 0
558
- (mem_flags_trusted))))
559
-
560
- (rule (ishl_i8x16_mask (RegMemImm.Mem amt))
561
- (ishl_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
562
-
563
- ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
564
-
565
- (rule (lower (has_type ty @ $I16X8 (ishl src amt)))
566
- (x64_psllw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
567
-
568
- (rule (lower (has_type ty @ $I32X4 (ishl src amt)))
569
- (x64_pslld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
570
-
571
- (rule (lower (has_type ty @ $I64X2 (ishl src amt)))
572
- (x64_psllq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
573
-
574
- ;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
575
-
576
- ;; `i64` and smaller.
577
-
578
- (rule -1 (lower (has_type (fits_in_64 ty) (ushr src amt)))
579
- (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Zero))))
580
- (x64_shr ty src_ (put_masked_in_imm8_gpr amt ty))))
581
-
582
- ;; `i128`.
583
-
584
- (decl shr_i128 (ValueRegs Gpr) ValueRegs)
585
- (rule (shr_i128 src amt)
586
- ;; Unpack the lo/hi halves of `src`.
587
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
588
- (src_hi Gpr (value_regs_get_gpr src 1))
589
- ;; Do a shift on each half.
590
- (lo_shifted Gpr (x64_shr $I64 src_lo amt))
591
- (hi_shifted Gpr (x64_shr $I64 src_hi amt))
592
- ;; `src_hi << (64 - amt)` are the bits to carry over from the hi
593
- ;; into the lo.
594
- (carry Gpr (x64_shl $I64
595
- src_hi
596
- (x64_sub $I64
597
- (imm $I64 64)
598
- amt)))
599
- ;; Share the zero value to reduce register pressure
600
- (zero Gpr (imm $I64 0))
601
-
602
- ;; Nullify the carry if we are shifting by a multiple of 128.
603
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
604
- (cmove $I64 (CC.Z) zero carry)))
605
- ;; Add the carry bits into the lo.
606
- (lo_shifted_ Gpr (x64_or $I64 carry_ lo_shifted)))
607
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
608
- ;; (modulo 128), then the hi bits are zero and the lo bits are what
609
- ;; would otherwise be our hi bits.
610
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
611
- (consumes_flags_concat
612
- (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
613
- (cmove $I64 (CC.Z) hi_shifted zero)))))
614
-
615
- (rule (lower (has_type $I128 (ushr src amt)))
616
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
617
- ;; amount to the value's bit width.
618
- (let ((amt_ Gpr (lo_gpr amt)))
619
- (shr_i128 src amt_)))
620
-
621
- ;; SSE.
622
-
623
- ;; There are no 8x16 shifts in x64. Do the same 16x8-shift-and-mask thing we do
624
- ;; with 8x16 `ishl`.
625
- (rule (lower (has_type ty @ $I8X16 (ushr src amt)))
626
- (let (
627
- ;; Mask the amount to ensure wrapping behaviour
628
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
629
- ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
630
- ;; correct for half of the lanes; the others must be fixed up with
631
- ;; the mask below.
632
- (unmasked Xmm (x64_psrlw src (mov_rmi_to_xmm masked_amt))))
633
- (sse_and $I8X16
634
- unmasked
635
- (ushr_i8x16_mask masked_amt))))
636
-
637
- ;; Get the address of the mask to use when fixing up the lanes that weren't
638
- ;; correctly generated by the 16x8 shift.
639
- (decl ushr_i8x16_mask (RegMemImm) SyntheticAmode)
640
-
641
- ;; When the shift amount is known, we can statically (i.e. at compile time)
642
- ;; determine the mask to use and only emit that.
643
- (decl ushr_i8x16_mask_for_const (u32) SyntheticAmode)
644
- (extern constructor ushr_i8x16_mask_for_const ushr_i8x16_mask_for_const)
645
- (rule (ushr_i8x16_mask (RegMemImm.Imm amt))
646
- (ushr_i8x16_mask_for_const amt))
647
-
648
- ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
649
- ;; time) find the correct mask offset in the table. We use `lea` to find the
650
- ;; base address of the mask table and then complex addressing to offset to the
651
- ;; right mask: `base_address + amt << 4`
652
- (decl ushr_i8x16_mask_table () SyntheticAmode)
653
- (extern constructor ushr_i8x16_mask_table ushr_i8x16_mask_table)
654
- (rule (ushr_i8x16_mask (RegMemImm.Reg amt))
655
- (let ((mask_table SyntheticAmode (ushr_i8x16_mask_table))
656
- (base_mask_addr Gpr (x64_lea $I64 mask_table))
657
- (mask_offset Gpr (x64_shl $I64
658
- amt
659
- (imm8_to_imm8_gpr 4))))
660
- (Amode.ImmRegRegShift 0
661
- base_mask_addr
662
- mask_offset
663
- 0
664
- (mem_flags_trusted))))
665
-
666
- (rule (ushr_i8x16_mask (RegMemImm.Mem amt))
667
- (ushr_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
668
-
669
- ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
670
-
671
- (rule (lower (has_type ty @ $I16X8 (ushr src amt)))
672
- (x64_psrlw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
673
-
674
- (rule (lower (has_type ty @ $I32X4 (ushr src amt)))
675
- (x64_psrld src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
676
-
677
- (rule (lower (has_type ty @ $I64X2 (ushr src amt)))
678
- (x64_psrlq src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
679
-
680
- (decl mask_xmm_shift (Type Value) RegMemImm)
681
- (rule (mask_xmm_shift ty amt)
682
- (gpr_to_reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
683
- (rule 1 (mask_xmm_shift ty (iconst n))
684
- (RegMemImm.Imm (shift_amount_masked ty n)))
685
-
686
- ;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
687
-
688
- ;; `i64` and smaller.
689
-
690
- (rule -1 (lower (has_type (fits_in_64 ty) (sshr src amt)))
691
- (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Sign))))
692
- (x64_sar ty src_ (put_masked_in_imm8_gpr amt ty))))
693
-
694
- ;; `i128`.
695
-
696
- (decl sar_i128 (ValueRegs Gpr) ValueRegs)
697
- (rule (sar_i128 src amt)
698
- ;; Unpack the low/high halves of `src`.
699
- (let ((src_lo Gpr (value_regs_get_gpr src 0))
700
- (src_hi Gpr (value_regs_get_gpr src 1))
701
- ;; Do a shift of each half. NB: the low half uses an unsigned shift
702
- ;; because its MSB is not a sign bit.
703
- (lo_shifted Gpr (x64_shr $I64 src_lo amt))
704
- (hi_shifted Gpr (x64_sar $I64 src_hi amt))
705
- ;; `src_hi << (64 - amt)` are the bits to carry over from the low
706
- ;; half to the high half.
707
- (carry Gpr (x64_shl $I64
708
- src_hi
709
- (x64_sub $I64
710
- (imm $I64 64)
711
- amt)))
712
- ;; Nullify the carry if we are shifting by a multiple of 128.
713
- (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
714
- (cmove $I64 (CC.Z) (imm $I64 0) carry)))
715
- ;; Add the carry into the low half.
716
- (lo_shifted_ Gpr (x64_or $I64 lo_shifted carry_))
717
- ;; Get all sign bits.
718
- (sign_bits Gpr (x64_sar $I64 src_hi (imm8_to_imm8_gpr 63))))
719
- ;; Combine the two shifted halves. However, if we are shifting by >= 64
720
- ;; (modulo 128), then the hi bits are all sign bits and the lo bits are
721
- ;; what would otherwise be our hi bits.
722
- (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
723
- (consumes_flags_concat
724
- (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
725
- (cmove $I64 (CC.Z) hi_shifted sign_bits)))))
726
-
727
- (rule (lower (has_type $I128 (sshr src amt)))
728
- ;; NB: Only the low bits of `amt` matter since we logically mask the shift
729
- ;; amount to the value's bit width.
730
- (let ((amt_ Gpr (lo_gpr amt)))
731
- (sar_i128 src amt_)))
732
-
733
- ;; SSE.
734
-
735
- ;; Since the x86 instruction set does not have an 8x16 shift instruction and the
736
- ;; approach used for `ishl` and `ushr` cannot be easily used (the masks do not
737
- ;; preserve the sign), we use a different approach here: separate the low and
738
- ;; high lanes, shift them separately, and merge them into the final result.
739
- ;;
740
- ;; Visually, this looks like the following, where `src.i8x16 = [s0, s1, ...,
741
- ;; s15]:
742
- ;;
743
- ;; lo.i16x8 = [(s0, s0), (s1, s1), ..., (s7, s7)]
744
- ;; shifted_lo.i16x8 = shift each lane of `low`
745
- ;; hi.i16x8 = [(s8, s8), (s9, s9), ..., (s15, s15)]
746
- ;; shifted_hi.i16x8 = shift each lane of `high`
747
- ;; result = [s0'', s1'', ..., s15'']
748
- (rule (lower (has_type ty @ $I8X16 (sshr src amt @ (value_type amt_ty))))
749
- (let ((src_ Xmm (put_in_xmm src))
750
- ;; Mask the amount to ensure wrapping behaviour
751
- (masked_amt RegMemImm (mask_xmm_shift ty amt))
752
- ;; In order for `packsswb` later to only use the high byte of each
753
- ;; 16x8 lane, we shift right an extra 8 bits, relying on `psraw` to
754
- ;; fill in the upper bits appropriately.
755
- (lo Xmm (x64_punpcklbw src_ src_))
756
- (hi Xmm (x64_punpckhbw src_ src_))
757
- (amt_ XmmMemImm (sshr_i8x16_bigger_shift amt_ty masked_amt))
758
- (shifted_lo Xmm (x64_psraw lo amt_))
759
- (shifted_hi Xmm (x64_psraw hi amt_)))
760
- (x64_packsswb shifted_lo shifted_hi)))
761
-
762
- (decl sshr_i8x16_bigger_shift (Type RegMemImm) XmmMemImm)
763
- (rule (sshr_i8x16_bigger_shift _ty (RegMemImm.Imm i))
764
- (xmm_mem_imm_new (RegMemImm.Imm (u32_add i 8))))
765
- (rule (sshr_i8x16_bigger_shift ty (RegMemImm.Reg r))
766
- (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
767
- r
768
- (RegMemImm.Imm 8)))))
769
- (rule (sshr_i8x16_bigger_shift ty rmi @ (RegMemImm.Mem _m))
770
- (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
771
- (imm ty 8)
772
- rmi))))
773
-
774
- ;; `sshr.{i16x8,i32x4}` can be a simple `psra{w,d}`, we just have to make sure
775
- ;; that if the shift amount is in a register, it is in an XMM register.
776
-
777
- (rule (lower (has_type ty @ $I16X8 (sshr src amt)))
778
- (x64_psraw src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
779
-
780
- (rule (lower (has_type ty @ $I32X4 (sshr src amt)))
781
- (x64_psrad src (mov_rmi_to_xmm (mask_xmm_shift ty amt))))
782
-
783
- ;; The `sshr.i64x2` CLIF instruction has no single x86 instruction in the older
784
- ;; feature sets. To remedy this, a small dance is done with an unsigned right
785
- ;; shift plus some extra ops.
786
- (rule 3 (lower (has_type ty @ $I64X2 (sshr src (iconst n))))
787
- (if-let $true (use_avx512vl_simd))
788
- (if-let $true (use_avx512f_simd))
789
- (x64_vpsraq_imm src (shift_amount_masked ty n)))
790
-
791
- (rule 2 (lower (has_type ty @ $I64X2 (sshr src amt)))
792
- (if-let $true (use_avx512vl_simd))
793
- (if-let $true (use_avx512f_simd))
794
- (let ((masked Gpr (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
795
- (x64_vpsraq src (x64_movd_to_xmm masked))))
796
-
797
- (rule 1 (lower (has_type $I64X2 (sshr src (iconst (u64_from_imm64 (u64_as_u32 amt))))))
798
- (lower_i64x2_sshr_imm src (u32_and amt 63)))
799
-
800
- (rule (lower (has_type $I64X2 (sshr src amt)))
801
- (lower_i64x2_sshr_gpr src (x64_and $I64 amt (RegMemImm.Imm 63))))
802
-
803
- (decl lower_i64x2_sshr_imm (Xmm u32) Xmm)
804
-
805
- ;; If the shift amount is less than 32 then do an sshr with 32-bit lanes to
806
- ;; produce the upper halves of each result, followed by a ushr of 64-bit lanes
807
- ;; to produce the lower halves of each result. Interleave results at the end.
808
- (rule 2 (lower_i64x2_sshr_imm vec imm)
809
- (if-let $true (u64_lt imm 32))
810
- (let (
811
- (high32 Xmm (x64_psrad vec (xmi_imm imm)))
812
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
813
- (low32 Xmm (x64_psrlq vec (xmi_imm imm)))
814
- (low32 Xmm (x64_pshufd low32 0b11_10_10_00))
815
- )
816
- (x64_punpckldq low32 high32)))
817
-
818
- ;; If the shift amount is 32 then the `psrlq` from the above rule can be avoided
819
- (rule 1 (lower_i64x2_sshr_imm vec 32)
820
- (let (
821
- (low32 Xmm (x64_pshufd vec 0b11_10_11_01))
822
- (high32 Xmm (x64_psrad vec (xmi_imm 31)))
823
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
824
- )
825
- (x64_punpckldq low32 high32)))
826
-
827
- ;; Shifts >= 32 use one `psrad` to generate the upper bits and second `psrad` to
828
- ;; generate the lower bits. Everything is then woven back together with
829
- ;; shuffles.
830
- (rule (lower_i64x2_sshr_imm vec imm)
831
- (if-let $true (u64_lt 32 imm))
832
- (let (
833
- (high32 Xmm (x64_psrad vec (xmi_imm 31)))
834
- (high32 Xmm (x64_pshufd high32 0b11_10_11_01))
835
- (low32 Xmm (x64_psrad vec (xmi_imm (u32_sub imm 32))))
836
- (low32 Xmm (x64_pshufd low32 0b11_10_10_01))
837
- )
838
- (x64_punpckldq low32 high32)))
839
-
840
- ;; A variable shift amount is slightly more complicated than the immediate
841
- ;; shift amounts from above. The `Gpr` argument is guaranteed to be <= 63 by
842
- ;; earlier masking. A `ushr` operation is used with some xor/sub math to
843
- ;; generate the sign bits.
844
- (decl lower_i64x2_sshr_gpr (Xmm Gpr) Xmm)
845
- (rule (lower_i64x2_sshr_gpr vec val)
846
- (let (
847
- (val Xmm (x64_movq_to_xmm val))
848
- (mask Xmm (flip_high_bit_mask $I64X2))
849
- (sign_bit_loc Xmm (x64_psrlq mask val))
850
- (ushr Xmm (x64_psrlq vec val))
851
- (ushr_sign_bit_flip Xmm (x64_pxor sign_bit_loc ushr))
852
- )
853
- (x64_psubq ushr_sign_bit_flip sign_bit_loc)))
854
-
855
- ;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
856
-
857
- ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
858
- ;; we operate on the whole register. For const's we mask the constant.
859
-
860
- (rule -1 (lower (has_type (fits_in_64 ty) (rotl src amt)))
861
- (x64_rotl ty src (put_masked_in_imm8_gpr amt ty)))
862
-
863
-
864
- ;; `i128`.
865
-
866
- (rule (lower (has_type $I128 (rotl src amt)))
867
- (let ((src_ ValueRegs src)
868
- ;; NB: Only the low bits of `amt` matter since we logically mask the
869
- ;; rotation amount to the value's bit width.
870
- (amt_ Gpr (lo_gpr amt)))
871
- (or_i128 (shl_i128 src_ amt_)
872
- (shr_i128 src_ (x64_sub $I64
873
- (imm $I64 128)
874
- amt_)))))
875
-
876
- ;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
877
-
878
- ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
879
- ;; we operate on the whole register. For const's we mask the constant.
880
-
881
- (rule -1 (lower (has_type (fits_in_64 ty) (rotr src amt)))
882
- (x64_rotr ty src (put_masked_in_imm8_gpr amt ty)))
883
-
884
-
885
- ;; `i128`.
886
-
887
- (rule (lower (has_type $I128 (rotr src amt)))
888
- (let ((src_ ValueRegs src)
889
- ;; NB: Only the low bits of `amt` matter since we logically mask the
890
- ;; rotation amount to the value's bit width.
891
- (amt_ Gpr (lo_gpr amt)))
892
- (or_i128 (shr_i128 src_ amt_)
893
- (shl_i128 src_ (x64_sub $I64
894
- (imm $I64 128)
895
- amt_)))))
896
-
897
- ;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
898
-
899
- ;; `i64` and smaller.
900
-
901
- (rule -1 (lower (has_type (fits_in_64 ty) (ineg x)))
902
- (x64_neg ty x))
903
-
904
- (rule -2 (lower (has_type $I128 (ineg x)))
905
- ;; Get the high/low registers for `x`.
906
- (let ((regs ValueRegs x)
907
- (lo Gpr (value_regs_get_gpr regs 0))
908
- (hi Gpr (value_regs_get_gpr regs 1)))
909
- ;; Do a neg followed by an sub-with-borrow.
910
- (with_flags (x64_neg_paired $I64 lo)
911
- (x64_sbb_paired $I64 (imm $I64 0) hi))))
912
-
913
- ;; SSE.
914
-
915
- (rule (lower (has_type $I8X16 (ineg x)))
916
- (x64_psubb (imm $I8X16 0) x))
917
-
918
- (rule (lower (has_type $I16X8 (ineg x)))
919
- (x64_psubw (imm $I16X8 0) x))
920
-
921
- (rule (lower (has_type $I32X4 (ineg x)))
922
- (x64_psubd (imm $I32X4 0) x))
923
-
924
- (rule (lower (has_type $I64X2 (ineg x)))
925
- (x64_psubq (imm $I64X2 0) x))
926
-
927
- ;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
928
-
929
- (rule (lower (has_type (multi_lane 8 16)
930
- (avg_round x y)))
931
- (x64_pavgb x y))
932
-
933
- (rule (lower (has_type (multi_lane 16 8)
934
- (avg_round x y)))
935
- (x64_pavgw x y))
936
-
937
- ;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
938
-
939
- ;; `i64` and smaller.
940
-
941
- ;; Multiply two registers.
942
- (rule -5 (lower (has_type (fits_in_64 ty) (imul x y)))
943
- (x64_mul ty x y))
944
-
945
- ;; Handle multiplication where the lhs is an immediate or sinkable load in
946
- ;; addition to the automatic rhs handling above.
947
-
948
- (rule -4 (lower (has_type (fits_in_64 ty)
949
- (imul (simm32_from_value x) y)))
950
- (x64_mul ty y x))
951
- (rule -3 (lower (has_type (fits_in_64 ty)
952
- (imul (sinkable_load x) y)))
953
- (x64_mul ty y x))
954
-
955
- ;; `i128`.
956
-
957
- ;; mul:
958
- ;; dst_lo = lhs_lo * rhs_lo
959
- ;; dst_hi = umulhi(lhs_lo, rhs_lo) +
960
- ;; lhs_lo * rhs_hi +
961
- ;; lhs_hi * rhs_lo
962
- ;;
963
- ;; so we emit:
964
- ;; lo_hi = mul x_lo, y_hi
965
- ;; hi_lo = mul x_hi, y_lo
966
- ;; hilo_hilo = add lo_hi, hi_lo
967
- ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
968
- ;; dst_hi = add hilo_hilo, hi_lolo
969
- ;; return (dst_lo, dst_hi)
970
- (rule 2 (lower (has_type $I128 (imul x y)))
971
- ;; Put `x` into registers and unpack its hi/lo halves.
972
- (let ((x_regs ValueRegs x)
973
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
974
- (x_hi Gpr (value_regs_get_gpr x_regs 1))
975
- ;; Put `y` into registers and unpack its hi/lo halves.
976
- (y_regs ValueRegs y)
977
- (y_lo Gpr (value_regs_get_gpr y_regs 0))
978
- (y_hi Gpr (value_regs_get_gpr y_regs 1))
979
- ;; lo_hi = mul x_lo, y_hi
980
- (lo_hi Gpr (x64_mul $I64 x_lo y_hi))
981
- ;; hi_lo = mul x_hi, y_lo
982
- (hi_lo Gpr (x64_mul $I64 x_hi y_lo))
983
- ;; hilo_hilo = add lo_hi, hi_lo
984
- (hilo_hilo Gpr (x64_add $I64 lo_hi hi_lo))
985
- ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
986
- (mul_regs ValueRegs (mulhi_u $I64 x_lo y_lo))
987
- (dst_lo Gpr (value_regs_get_gpr mul_regs 0))
988
- (hi_lolo Gpr (value_regs_get_gpr mul_regs 1))
989
- ;; dst_hi = add hilo_hilo, hi_lolo
990
- (dst_hi Gpr (x64_add $I64 hilo_hilo hi_lolo)))
991
- (value_gprs dst_lo dst_hi)))
992
-
993
- ;; SSE.
994
-
995
- ;; (No i8x16 multiply.)
996
-
997
- (rule (lower (has_type (multi_lane 16 8) (imul x y)))
998
- (x64_pmullw x y))
999
-
1000
- (rule (lower (has_type (multi_lane 32 4) (imul x y)))
1001
- (if-let $true (use_sse41))
1002
- (x64_pmulld x y))
1003
-
1004
- ;; Without `pmulld` the `pmuludq` instruction is used instead which performs
1005
- ;; 32-bit multiplication storing the 64-bit result. The 64-bit result is
1006
- ;; truncated to 32-bits and everything else is woven into place.
1007
- (rule -1 (lower (has_type (multi_lane 32 4) (imul x y)))
1008
- (let (
1009
- (x Xmm x)
1010
- (y Xmm y)
1011
- (x_hi Xmm (x64_pshufd x 0b00_11_00_01))
1012
- (y_hi Xmm (x64_pshufd y 0b00_11_00_01))
1013
- (mul_lo Xmm (x64_pshufd (x64_pmuludq x y) 0b00_00_10_00))
1014
- (mul_hi Xmm (x64_pshufd (x64_pmuludq x_hi y_hi) 0b00_00_10_00))
1015
- )
1016
- (x64_punpckldq mul_lo mul_hi)))
1017
-
1018
- ;; With AVX-512 we can implement `i64x2` multiplication with a single
1019
- ;; instruction.
1020
- (rule 3 (lower (has_type (multi_lane 64 2) (imul x y)))
1021
- (if-let $true (use_avx512vl_simd))
1022
- (if-let $true (use_avx512dq_simd))
1023
- (x64_vpmullq x y))
1024
-
1025
- ;; Otherwise, for i64x2 multiplication we describe a lane A as being composed of
1026
- ;; a 32-bit upper half "Ah" and a 32-bit lower half "Al". The 32-bit long hand
1027
- ;; multiplication can then be written as:
1028
- ;;
1029
- ;; Ah Al
1030
- ;; * Bh Bl
1031
- ;; -----
1032
- ;; Al * Bl
1033
- ;; + (Ah * Bl) << 32
1034
- ;; + (Al * Bh) << 32
1035
- ;;
1036
- ;; So for each lane we will compute:
1037
- ;;
1038
- ;; A * B = (Al * Bl) + ((Ah * Bl) + (Al * Bh)) << 32
1039
- ;;
1040
- ;; Note, the algorithm will use `pmuludq` which operates directly on the lower
1041
- ;; 32-bit (`Al` or `Bl`) of a lane and writes the result to the full 64-bits of
1042
- ;; the lane of the destination. For this reason we don't need shifts to isolate
1043
- ;; the lower 32-bits, however, we will need to use shifts to isolate the high
1044
- ;; 32-bits when doing calculations, i.e., `Ah == A >> 32`.
1045
- (rule (lower (has_type (multi_lane 64 2)
1046
- (imul a b)))
1047
- (let ((a0 Xmm a)
1048
- (b0 Xmm b)
1049
- ;; a_hi = A >> 32
1050
- (a_hi Xmm (x64_psrlq a0 (xmi_imm 32)))
1051
- ;; ah_bl = Ah * Bl
1052
- (ah_bl Xmm (x64_pmuludq a_hi b0))
1053
- ;; b_hi = B >> 32
1054
- (b_hi Xmm (x64_psrlq b0 (xmi_imm 32)))
1055
- ;; al_bh = Al * Bh
1056
- (al_bh Xmm (x64_pmuludq a0 b_hi))
1057
- ;; aa_bb = ah_bl + al_bh
1058
- (aa_bb Xmm (x64_paddq ah_bl al_bh))
1059
- ;; aa_bb_shifted = aa_bb << 32
1060
- (aa_bb_shifted Xmm (x64_psllq aa_bb (xmi_imm 32)))
1061
- ;; al_bl = Al * Bl
1062
- (al_bl Xmm (x64_pmuludq a0 b0)))
1063
- ;; al_bl + aa_bb_shifted
1064
- (x64_paddq al_bl aa_bb_shifted)))
1065
-
1066
- ;; Special case for `i32x4.extmul_high_i16x8_s`.
1067
- (rule 1 (lower (has_type (multi_lane 32 4)
1068
- (imul (swiden_high (and (value_type (multi_lane 16 8))
1069
- x))
1070
- (swiden_high (and (value_type (multi_lane 16 8))
1071
- y)))))
1072
- (let ((x2 Xmm x)
1073
- (y2 Xmm y)
1074
- (lo Xmm (x64_pmullw x2 y2))
1075
- (hi Xmm (x64_pmulhw x2 y2)))
1076
- (x64_punpckhwd lo hi)))
1077
-
1078
- ;; Special case for `i64x2.extmul_high_i32x4_s`.
1079
- (rule 1 (lower (has_type (multi_lane 64 2)
1080
- (imul (swiden_high (and (value_type (multi_lane 32 4))
1081
- x))
1082
- (swiden_high (and (value_type (multi_lane 32 4))
1083
- y)))))
1084
- (if-let $true (use_sse41))
1085
- (let ((x2 Xmm (x64_pshufd x 0xFA))
1086
- (y2 Xmm (x64_pshufd y 0xFA)))
1087
- (x64_pmuldq x2 y2)))
1088
-
1089
- ;; Special case for `i32x4.extmul_low_i16x8_s`.
1090
- (rule 1 (lower (has_type (multi_lane 32 4)
1091
- (imul (swiden_low (and (value_type (multi_lane 16 8))
1092
- x))
1093
- (swiden_low (and (value_type (multi_lane 16 8))
1094
- y)))))
1095
- (let ((x2 Xmm x)
1096
- (y2 Xmm y)
1097
- (lo Xmm (x64_pmullw x2 y2))
1098
- (hi Xmm (x64_pmulhw x2 y2)))
1099
- (x64_punpcklwd lo hi)))
1100
-
1101
- ;; Special case for `i64x2.extmul_low_i32x4_s`.
1102
- (rule 1 (lower (has_type (multi_lane 64 2)
1103
- (imul (swiden_low (and (value_type (multi_lane 32 4))
1104
- x))
1105
- (swiden_low (and (value_type (multi_lane 32 4))
1106
- y)))))
1107
- (if-let $true (use_sse41))
1108
- (let ((x2 Xmm (x64_pshufd x 0x50))
1109
- (y2 Xmm (x64_pshufd y 0x50)))
1110
- (x64_pmuldq x2 y2)))
1111
-
1112
- ;; Special case for `i32x4.extmul_high_i16x8_u`.
1113
- (rule 1 (lower (has_type (multi_lane 32 4)
1114
- (imul (uwiden_high (and (value_type (multi_lane 16 8))
1115
- x))
1116
- (uwiden_high (and (value_type (multi_lane 16 8))
1117
- y)))))
1118
- (let ((x2 Xmm x)
1119
- (y2 Xmm y)
1120
- (lo Xmm (x64_pmullw x2 y2))
1121
- (hi Xmm (x64_pmulhuw x2 y2)))
1122
- (x64_punpckhwd lo hi)))
1123
-
1124
- ;; Special case for `i64x2.extmul_high_i32x4_u`.
1125
- (rule 1 (lower (has_type (multi_lane 64 2)
1126
- (imul (uwiden_high (and (value_type (multi_lane 32 4))
1127
- x))
1128
- (uwiden_high (and (value_type (multi_lane 32 4))
1129
- y)))))
1130
- (let ((x2 Xmm (x64_pshufd x 0xFA))
1131
- (y2 Xmm (x64_pshufd y 0xFA)))
1132
- (x64_pmuludq x2 y2)))
1133
-
1134
- ;; Special case for `i32x4.extmul_low_i16x8_u`.
1135
- (rule 1 (lower (has_type (multi_lane 32 4)
1136
- (imul (uwiden_low (and (value_type (multi_lane 16 8))
1137
- x))
1138
- (uwiden_low (and (value_type (multi_lane 16 8))
1139
- y)))))
1140
- (let ((x2 Xmm x)
1141
- (y2 Xmm y)
1142
- (lo Xmm (x64_pmullw x2 y2))
1143
- (hi Xmm (x64_pmulhuw x2 y2)))
1144
- (x64_punpcklwd lo hi)))
1145
-
1146
- ;; Special case for `i64x2.extmul_low_i32x4_u`.
1147
- (rule 1 (lower (has_type (multi_lane 64 2)
1148
- (imul (uwiden_low (and (value_type (multi_lane 32 4))
1149
- x))
1150
- (uwiden_low (and (value_type (multi_lane 32 4))
1151
- y)))))
1152
- (let ((x2 Xmm (x64_pshufd x 0x50))
1153
- (y2 Xmm (x64_pshufd y 0x50)))
1154
- (x64_pmuludq x2 y2)))
1155
-
1156
- ;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1157
-
1158
- (rule (lower (has_type $I8X16 (iabs x)))
1159
- (x64_pabsb x))
1160
-
1161
- (rule (lower (has_type $I16X8 (iabs x)))
1162
- (x64_pabsw x))
1163
-
1164
- (rule (lower (has_type $I32X4 (iabs x)))
1165
- (x64_pabsd x))
1166
-
1167
- ;; When AVX512 is available, we can use a single `vpabsq` instruction.
1168
- (rule 2 (lower (has_type $I64X2 (iabs x)))
1169
- (if-let $true (use_avx512vl_simd))
1170
- (if-let $true (use_avx512f_simd))
1171
- (x64_vpabsq x))
1172
-
1173
- ;; Otherwise, we use a separate register, `neg`, to contain the results of `0 -
1174
- ;; x` and then blend in those results with `blendvpd` if the MSB of `neg` was
1175
- ;; set to 1 (i.e. if `neg` was negative or, conversely, if `x` was originally
1176
- ;; positive).
1177
- (rule 1 (lower (has_type $I64X2 (iabs x)))
1178
- (if-let $true (use_sse41))
1179
- (let ((rx Xmm x)
1180
- (neg Xmm (x64_psubq (imm $I64X2 0) rx)))
1181
- (x64_blendvpd neg rx neg)))
1182
-
1183
- ;; and if `blendvpd` isn't available then perform a shift/shuffle to generate a
1184
- ;; mask of which lanes are negative, followed by flipping bits/sub to make both
1185
- ;; positive.
1186
- (rule (lower (has_type $I64X2 (iabs x)))
1187
- (let ((x Xmm x)
1188
- (signs Xmm (x64_psrad x (RegMemImm.Imm 31)))
1189
- (signs Xmm (x64_pshufd signs 0b11_11_01_01))
1190
- (xor_if_negative Xmm (x64_pxor x signs)))
1191
- (x64_psubq xor_if_negative signs)))
1192
-
1193
- ;; `i64` and smaller.
1194
-
1195
- (rule -1 (lower (has_type (fits_in_64 ty) (iabs x)))
1196
- (let ((src Gpr x)
1197
- (neg ProducesFlags (x64_neg_paired ty src))
1198
- ;; Manually extract the result from the neg, then ignore
1199
- ;; it below, since we need to pass it into the cmove
1200
- ;; before we pass the cmove to with_flags_reg.
1201
- (neg_result Gpr (produces_flags_get_reg neg))
1202
- ;; When the neg instruction sets the sign flag,
1203
- ;; takes the original (non-negative) value.
1204
- (cmove ConsumesFlags (cmove ty (CC.S) src neg_result)))
1205
- (with_flags_reg (produces_flags_ignore neg) cmove)))
1206
-
1207
- ;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1208
-
1209
- (rule (lower (has_type $F32 (fabs x)))
1210
- (x64_andps x (imm $F32 0x7fffffff)))
1211
-
1212
- (rule (lower (has_type $F64 (fabs x)))
1213
- (x64_andpd x (imm $F64 0x7fffffffffffffff)))
1214
-
1215
- ;; Special case for `f32x4.abs`.
1216
- (rule (lower (has_type $F32X4 (fabs x)))
1217
- (x64_andps x
1218
- (x64_psrld (vector_all_ones) (xmi_imm 1))))
1219
-
1220
- ;; Special case for `f64x2.abs`.
1221
- (rule (lower (has_type $F64X2 (fabs x)))
1222
- (x64_andpd x
1223
- (x64_psrlq (vector_all_ones) (xmi_imm 1))))
1224
-
1225
- ;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1226
-
1227
- (rule (lower (has_type $F32 (fneg x)))
1228
- (x64_xorps x (imm $F32 0x80000000)))
1229
-
1230
- (rule (lower (has_type $F64 (fneg x)))
1231
- (x64_xorpd x (imm $F64 0x8000000000000000)))
1232
-
1233
- (rule (lower (has_type $F32X4 (fneg x)))
1234
- (x64_xorps x
1235
- (x64_pslld (vector_all_ones) (xmi_imm 31))))
1236
-
1237
- (rule (lower (has_type $F64X2 (fneg x)))
1238
- (x64_xorpd x
1239
- (x64_psllq (vector_all_ones) (xmi_imm 63))))
1240
-
1241
- ;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1242
-
1243
- (decl lower_bmask (Type Type ValueRegs) ValueRegs)
1244
-
1245
- ;; Values that fit in a register
1246
- ;;
1247
- ;; Use the neg instruction on the input which sets the CF (carry) flag
1248
- ;; to 0 if the input is 0 or 1 otherwise.
1249
- ;; We then subtract the output register with itself, which always gives a 0,
1250
- ;; however use the carry flag from the previous negate to generate a -1 if it
1251
- ;; was nonzero.
1252
- ;;
1253
- ;; neg in_reg
1254
- ;; sbb out_reg, out_reg
1255
- (rule 0
1256
- (lower_bmask (fits_in_64 out_ty) (fits_in_64 in_ty) val)
1257
- (let ((reg Gpr (value_regs_get_gpr val 0))
1258
- (out ValueRegs (with_flags
1259
- (x64_neg_paired in_ty reg)
1260
- (x64_sbb_paired out_ty reg reg))))
1261
- ;; Extract only the output of the sbb instruction
1262
- (value_reg (value_regs_get out 1))))
1263
-
1264
-
1265
- ;; If the input type is I128 we can `or` the registers, and recurse to the general case.
1266
- (rule 1
1267
- (lower_bmask (fits_in_64 out_ty) $I128 val)
1268
- (let ((lo Gpr (value_regs_get_gpr val 0))
1269
- (hi Gpr (value_regs_get_gpr val 1))
1270
- (mixed Gpr (x64_or $I64 lo hi)))
1271
- (lower_bmask out_ty $I64 (value_reg mixed))))
1272
-
1273
- ;; If the output type is I128 we just duplicate the result of the I64 lowering
1274
- (rule 2
1275
- (lower_bmask $I128 in_ty val)
1276
- (let ((res ValueRegs (lower_bmask $I64 in_ty val))
1277
- (res Gpr (value_regs_get_gpr res 0)))
1278
- (value_regs res res)))
1279
-
1280
-
1281
- ;; Call the lower_bmask rule that does all the procssing
1282
- (rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
1283
- (lower_bmask out_ty in_ty x))
1284
-
1285
- ;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1286
-
1287
- ;; `i64` and smaller.
1288
-
1289
- (rule -2 (lower (has_type ty (bnot x)))
1290
- (if (ty_int_ref_scalar_64 ty))
1291
- (x64_not ty x))
1292
-
1293
-
1294
- ;; `i128`.
1295
-
1296
- (decl i128_not (Value) ValueRegs)
1297
- (rule (i128_not x)
1298
- (let ((x_regs ValueRegs x)
1299
- (x_lo Gpr (value_regs_get_gpr x_regs 0))
1300
- (x_hi Gpr (value_regs_get_gpr x_regs 1)))
1301
- (value_gprs (x64_not $I64 x_lo)
1302
- (x64_not $I64 x_hi))))
1303
-
1304
- (rule (lower (has_type $I128 (bnot x)))
1305
- (i128_not x))
1306
-
1307
- ;; f32 and f64
1308
-
1309
- (rule -3 (lower (has_type (ty_scalar_float ty) (bnot x)))
1310
- (x64_xor_vector ty x (vector_all_ones)))
1311
-
1312
- ;; Special case for vector-types where bit-negation is an xor against an
1313
- ;; all-one value
1314
- (rule -1 (lower (has_type ty @ (multi_lane _bits _lanes) (bnot x)))
1315
- (x64_xor_vector ty x (vector_all_ones)))
1316
-
1317
- ;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1318
-
1319
- (rule (lower (has_type ty @ (multi_lane _bits _lanes)
1320
- (bitselect condition
1321
- if_true
1322
- if_false)))
1323
- ;; a = and if_true, condition
1324
- ;; b = and_not condition, if_false
1325
- ;; or b, a
1326
- (let ((cond_xmm Xmm condition)
1327
- (a Xmm (sse_and ty if_true cond_xmm))
1328
- (b Xmm (sse_and_not ty cond_xmm if_false)))
1329
- (sse_or ty b a)))
1330
-
1331
- ;; If every byte of the condition is guaranteed to be all ones or all zeroes,
1332
- ;; we can use x64_blend.
1333
- (rule 1 (lower (has_type ty @ (multi_lane _bits _lanes)
1334
- (bitselect condition
1335
- if_true
1336
- if_false)))
1337
- (if-let $true (use_sse41))
1338
- (if (all_ones_or_all_zeros condition))
1339
- (x64_blend ty
1340
- condition
1341
- if_true
1342
- if_false))
1343
-
1344
- (decl pure partial all_ones_or_all_zeros (Value) bool)
1345
- (rule (all_ones_or_all_zeros (and (icmp _ _ _) (value_type (multi_lane _ _)))) $true)
1346
- (rule (all_ones_or_all_zeros (and (fcmp _ _ _) (value_type (multi_lane _ _)))) $true)
1347
- (rule (all_ones_or_all_zeros (vconst (vconst_all_ones_or_all_zeros))) $true)
1348
-
1349
- (decl pure vconst_all_ones_or_all_zeros () Constant)
1350
- (extern extractor vconst_all_ones_or_all_zeros vconst_all_ones_or_all_zeros)
1351
-
1352
- ;;;; Rules for `x86_blendv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1353
-
1354
- (rule (lower (has_type $I8X16
1355
- (x86_blendv condition if_true if_false)))
1356
- (if-let $true (use_sse41))
1357
- (x64_pblendvb if_false if_true condition))
1358
-
1359
- (rule (lower (has_type $I32X4
1360
- (x86_blendv condition if_true if_false)))
1361
- (if-let $true (use_sse41))
1362
- (x64_blendvps if_false if_true condition))
1363
-
1364
- (rule (lower (has_type $I64X2
1365
- (x86_blendv condition if_true if_false)))
1366
- (if-let $true (use_sse41))
1367
- (x64_blendvpd if_false if_true condition))
1368
-
1369
- ;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1370
-
1371
- (rule (lower (insertlane vec @ (value_type ty) val (u8_from_uimm8 idx)))
1372
- (vec_insert_lane ty vec val idx))
1373
-
1374
- ;; Helper function used below for `insertlane` but also here for other
1375
- ;; lowerings.
1376
- ;;
1377
- ;; Note that the `Type` used here is the type of vector the insertion is
1378
- ;; happening into, or the type of the first `Reg` argument.
1379
- (decl vec_insert_lane (Type Xmm RegMem u8) Xmm)
1380
-
1381
- ;; i8x16.replace_lane
1382
- (rule 1 (vec_insert_lane $I8X16 vec val idx)
1383
- (if-let $true (use_sse41))
1384
- (x64_pinsrb vec val idx))
1385
-
1386
- ;; This lowering is particularly unoptimized and is mostly just here to work
1387
- ;; rather than here to be fast. Requiring SSE 4.1 for the above lowering isn't
1388
- ;; the end of the world hopefully as that's a pretty old instruction set, so
1389
- ;; this is the "simplest" version that works on SSE2 for now.
1390
- ;;
1391
- ;; This lowering masks the original vector with a constant with all 1s except
1392
- ;; for the "hole" where this value will get placed into, meaning the desired
1393
- ;; lane is guaranteed as all 0s. Next the `val` is shuffled into this hole with
1394
- ;; a few operations:
1395
- ;;
1396
- ;; 1. The `val` is zero-extended to 32-bits to guarantee the lower 32-bits
1397
- ;; are all defined.
1398
- ;; 2. An arithmetic shift-left is used with the low two bits of `n`, the
1399
- ;; desired lane, to move the value into the right position within the 32-bit
1400
- ;; register value.
1401
- ;; 3. The 32-bit register is moved with `movd` into an XMM register
1402
- ;; 4. The XMM register, where all lanes are 0 except for the first lane which
1403
- ;; has the shifted value, is then shuffled with `pshufd` to move the
1404
- ;; shifted value to the correct and final lane. This uses the upper two
1405
- ;; bits of `n` to index the i32x4 lane that we're targeting.
1406
- ;;
1407
- ;; This all, laboriously, gets the `val` into the desired lane so it's then
1408
- ;; `por`'d with the original vec-with-a-hole to produce the final result of the
1409
- ;; insertion.
1410
- (rule (vec_insert_lane $I8X16 vec val n)
1411
- (let ((vec_with_hole Xmm (x64_pand vec (insert_i8x16_lane_hole n)))
1412
- (val Gpr (x64_movzx (ExtMode.BL) val))
1413
- (val Gpr (x64_shl $I32 val (Imm8Reg.Imm8 (u8_shl (u8_and n 3) 3))))
1414
- (val Xmm (x64_movd_to_xmm val))
1415
- (val_at_hole Xmm (x64_pshufd val (insert_i8x16_lane_pshufd_imm (u8_shr n 2)))))
1416
- (x64_por vec_with_hole val_at_hole)))
1417
-
1418
- (decl insert_i8x16_lane_hole (u8) VCodeConstant)
1419
- (extern constructor insert_i8x16_lane_hole insert_i8x16_lane_hole)
1420
- (decl insert_i8x16_lane_pshufd_imm (u8) u8)
1421
- (rule (insert_i8x16_lane_pshufd_imm 0) 0b01_01_01_00)
1422
- (rule (insert_i8x16_lane_pshufd_imm 1) 0b01_01_00_01)
1423
- (rule (insert_i8x16_lane_pshufd_imm 2) 0b01_00_01_01)
1424
- (rule (insert_i8x16_lane_pshufd_imm 3) 0b00_01_01_01)
1425
-
1426
- ;; i16x8.replace_lane
1427
- (rule (vec_insert_lane $I16X8 vec val idx)
1428
- (x64_pinsrw vec val idx))
1429
-
1430
- ;; i32x4.replace_lane
1431
- (rule 1 (vec_insert_lane $I32X4 vec val idx)
1432
- (if-let $true (use_sse41))
1433
- (x64_pinsrd vec val idx))
1434
-
1435
- (rule (vec_insert_lane $I32X4 vec val 0)
1436
- (x64_movss_regmove vec (x64_movd_to_xmm val)))
1437
-
1438
- ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1439
- ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1440
- (rule (vec_insert_lane $I32X4 vec val 1)
1441
- (let ((val Xmm (x64_movd_to_xmm val))
1442
- (vec Xmm vec))
1443
- (x64_shufps (x64_punpcklqdq val vec) vec 0b11_10_00_10)))
1444
-
1445
- ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1446
- ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1447
- (rule (vec_insert_lane $I32X4 vec val 2)
1448
- (let ((val Xmm (x64_movd_to_xmm val))
1449
- (vec Xmm vec))
1450
- (x64_shufps vec (x64_shufps val vec 0b00_11_00_00) 0b10_00_01_00)))
1451
-
1452
- ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1453
- ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1454
- (rule (vec_insert_lane $I32X4 vec val 3)
1455
- (let ((val Xmm (x64_movd_to_xmm val))
1456
- (vec Xmm vec))
1457
- (x64_shufps vec (x64_shufps val vec 0b11_10_01_00) 0b00_10_01_00)))
1458
-
1459
- ;; i64x2.replace_lane
1460
- (rule 1 (vec_insert_lane $I64X2 vec val idx)
1461
- (if-let $true (use_sse41))
1462
- (x64_pinsrq vec val idx))
1463
- (rule (vec_insert_lane $I64X2 vec val 0)
1464
- (x64_movsd_regmove vec (x64_movq_to_xmm val)))
1465
- (rule (vec_insert_lane $I64X2 vec val 1)
1466
- (x64_punpcklqdq vec (x64_movq_to_xmm val)))
1467
-
1468
- ;; f32x4.replace_lane
1469
- (rule 1 (vec_insert_lane $F32X4 vec val idx)
1470
- (if-let $true (use_sse41))
1471
- (x64_insertps vec val (sse_insertps_lane_imm idx)))
1472
-
1473
- ;; f32x4.replace_lane 0 - without insertps
1474
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 0)
1475
- (x64_movss_regmove vec val))
1476
-
1477
- ;; f32x4.replace_lane 1 - without insertps
1478
- ;; tmp = [ vec[1] vec[0] val[1] val[0] ]
1479
- ;; result = [ vec[3] vec[2] tmp[0] tmp[2] ]
1480
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 1)
1481
- (let ((tmp Xmm (x64_movlhps val vec)))
1482
- (x64_shufps tmp vec 0b11_10_00_10)))
1483
-
1484
- ;; f32x4.replace_lane 2 - without insertps
1485
- ;; tmp = [ vec[0] vec[3] val[0] val[0] ]
1486
- ;; result = [ tmp[2] tmp[0] vec[1] vec[0] ]
1487
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 2)
1488
- (let ((tmp Xmm (x64_shufps val vec 0b00_11_00_00)))
1489
- (x64_shufps vec tmp 0b10_00_01_00)))
1490
-
1491
- ;; f32x4.replace_lane 3 - without insertps
1492
- ;; tmp = [ vec[3] vec[2] val[1] val[0] ]
1493
- ;; result = [ tmp[0] tmp[2] vec[1] vec[0] ]
1494
- (rule (vec_insert_lane $F32X4 vec (RegMem.Reg val) 3)
1495
- (let ((tmp Xmm (x64_shufps val vec 0b11_10_01_00)))
1496
- (x64_shufps vec tmp 0b00_10_01_00)))
1497
-
1498
- ;; Recursively delegate to the above rules by loading from memory first.
1499
- (rule (vec_insert_lane $F32X4 vec (RegMem.Mem addr) idx)
1500
- (vec_insert_lane $F32X4 vec (x64_movss_load addr) idx))
1501
-
1502
- ;; External rust code used to calculate the immediate value to `insertps`.
1503
- (decl sse_insertps_lane_imm (u8) u8)
1504
- (extern constructor sse_insertps_lane_imm sse_insertps_lane_imm)
1505
-
1506
- ;; f64x2.replace_lane 0
1507
- ;;
1508
- ;; Here the `movsd` instruction is used specifically to specialize moving
1509
- ;; into the fist lane where unlike above cases we're not using the lane
1510
- ;; immediate as an immediate to the instruction itself.
1511
- (rule (vec_insert_lane $F64X2 vec (RegMem.Reg val) 0)
1512
- (x64_movsd_regmove vec val))
1513
- (rule (vec_insert_lane $F64X2 vec (RegMem.Mem val) 0)
1514
- (x64_movsd_regmove vec (x64_movsd_load val)))
1515
-
1516
- ;; f64x2.replace_lane 1
1517
- ;;
1518
- ;; Here the `movlhps` instruction is used specifically to specialize moving
1519
- ;; into the second lane where unlike above cases we're not using the lane
1520
- ;; immediate as an immediate to the instruction itself.
1521
- (rule (vec_insert_lane $F64X2 vec val 1)
1522
- (x64_movlhps vec val))
1523
-
1524
- ;;;; Rules for `smin`, `smax`, `umin`, `umax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1525
-
1526
- ;; `i64` and smaller.
1527
-
1528
- (decl cmp_and_choose (Type CC Value Value) ValueRegs)
1529
- (rule (cmp_and_choose (fits_in_64 ty) cc x y)
1530
- (let ((size OperandSize (raw_operand_size_of_type ty))
1531
- ;; We need to put x and y in registers explicitly because
1532
- ;; we use the values more than once. Hence, even if these
1533
- ;; are "unique uses" at the CLIF level and would otherwise
1534
- ;; allow for load-op merging, here we cannot do that.
1535
- (x_reg Reg x)
1536
- (y_reg Reg y))
1537
- (with_flags_reg (x64_cmp size x_reg y_reg)
1538
- (cmove ty cc y_reg x_reg))))
1539
-
1540
- (rule -1 (lower (has_type (fits_in_64 ty) (umin x y)))
1541
- (cmp_and_choose ty (CC.B) x y))
1542
-
1543
- (rule -1 (lower (has_type (fits_in_64 ty) (umax x y)))
1544
- (cmp_and_choose ty (CC.NB) x y))
1545
-
1546
- (rule -1 (lower (has_type (fits_in_64 ty) (smin x y)))
1547
- (cmp_and_choose ty (CC.L) x y))
1548
-
1549
- (rule -1 (lower (has_type (fits_in_64 ty) (smax x y)))
1550
- (cmp_and_choose ty (CC.NL) x y))
1551
-
1552
- ;; SSE helpers for determining if single-instruction lowerings are available.
1553
-
1554
- (decl pure has_pmins (Type) bool)
1555
- (rule 1 (has_pmins $I16X8) $true)
1556
- (rule 1 (has_pmins $I64X2) $false)
1557
- (rule (has_pmins _) (use_sse41))
1558
-
1559
- (decl pure has_pmaxs (Type) bool)
1560
- (rule 1 (has_pmaxs $I16X8) $true)
1561
- (rule 1 (has_pmaxs $I64X2) $false)
1562
- (rule (has_pmaxs _) (use_sse41))
1563
-
1564
- (decl pure has_pmaxu (Type) bool)
1565
- (rule 1 (has_pmaxu $I8X16) $true)
1566
- (rule 1 (has_pmaxu $I64X2) $false)
1567
- (rule (has_pmaxu _) (use_sse41))
1568
-
1569
- (decl pure has_pminu (Type) bool)
1570
- (rule 1 (has_pminu $I8X16) $true)
1571
- (rule 1 (has_pminu $I64X2) $false)
1572
- (rule (has_pminu _) (use_sse41))
1573
-
1574
- ;; SSE `smax`.
1575
-
1576
- (rule (lower (has_type (ty_vec128 ty) (smax x y)))
1577
- (lower_vec_smax ty x y))
1578
-
1579
- (decl lower_vec_smax (Type Xmm Xmm) Xmm)
1580
- (rule 1 (lower_vec_smax ty x y)
1581
- (if-let $true (has_pmaxs ty))
1582
- (x64_pmaxs ty x y))
1583
-
1584
- (rule (lower_vec_smax ty x y)
1585
- (let (
1586
- (x Xmm x)
1587
- (y Xmm y)
1588
- (cmp Xmm (x64_pcmpgt ty x y))
1589
- (x_is_max Xmm (x64_pand cmp x))
1590
- (y_is_max Xmm (x64_pandn cmp y))
1591
- )
1592
- (x64_por x_is_max y_is_max)))
1593
-
1594
- ;; SSE `smin`.
1595
-
1596
- (rule 1 (lower (has_type (ty_vec128 ty) (smin x y)))
1597
- (if-let $true (has_pmins ty))
1598
- (x64_pmins ty x y))
1599
-
1600
- (rule (lower (has_type (ty_vec128 ty) (smin x y)))
1601
- (let (
1602
- (x Xmm x)
1603
- (y Xmm y)
1604
- (cmp Xmm (x64_pcmpgt ty y x))
1605
- (x_is_min Xmm (x64_pand cmp x))
1606
- (y_is_min Xmm (x64_pandn cmp y))
1607
- )
1608
- (x64_por x_is_min y_is_min)))
1609
-
1610
- ;; SSE `umax`.
1611
-
1612
- (rule 2 (lower (has_type (ty_vec128 ty) (umax x y)))
1613
- (if-let $true (has_pmaxu ty))
1614
- (x64_pmaxu ty x y))
1615
-
1616
- ;; If y < x then the saturating subtraction will be zero, otherwise when added
1617
- ;; back to x it'll return y.
1618
- (rule 1 (lower (has_type $I16X8 (umax x y)))
1619
- (let ((x Xmm x))
1620
- (x64_paddw x (x64_psubusw y x))))
1621
-
1622
- ;; Flip the upper bits of each lane so the signed comparison has the same
1623
- ;; result as a signed comparison, and then select the results with the output
1624
- ;; mask. See `pcmpgt` lowering for info on flipping the upper bit.
1625
- (rule (lower (has_type (ty_vec128 ty) (umax x y)))
1626
- (let (
1627
- (x Xmm x)
1628
- (y Xmm y)
1629
- (mask Xmm (flip_high_bit_mask ty))
1630
- (x_masked Xmm (x64_pxor x mask))
1631
- (y_masked Xmm (x64_pxor y mask))
1632
- (cmp Xmm (x64_pcmpgt ty x_masked y_masked))
1633
- (x_is_max Xmm (x64_pand cmp x))
1634
- (y_is_max Xmm (x64_pandn cmp y))
1635
- )
1636
- (x64_por x_is_max y_is_max)))
1637
-
1638
- (decl flip_high_bit_mask (Type) Xmm)
1639
- (rule (flip_high_bit_mask $I16X8)
1640
- (x64_movdqu_load (emit_u128_le_const 0x8000_8000_8000_8000_8000_8000_8000_8000)))
1641
- (rule (flip_high_bit_mask $I32X4)
1642
- (x64_movdqu_load (emit_u128_le_const 0x80000000_80000000_80000000_80000000)))
1643
- (rule (flip_high_bit_mask $I64X2)
1644
- (x64_movdqu_load (emit_u128_le_const 0x8000000000000000_8000000000000000)))
1645
-
1646
- ;; SSE `umin`.
1647
-
1648
- (rule 2 (lower (has_type (ty_vec128 ty) (umin x y)))
1649
- (if-let $true (has_pminu ty))
1650
- (x64_pminu ty x y))
1651
-
1652
- ;; If x < y then the saturating subtraction will be 0. Otherwise if x > y then
1653
- ;; the saturated result, when subtracted again, will go back to `y`.
1654
- (rule 1 (lower (has_type $I16X8 (umin x y)))
1655
- (let ((x Xmm x))
1656
- (x64_psubw x (x64_psubusw x y))))
1657
-
1658
- ;; Same as `umax`, and see `pcmpgt` for docs on flipping the upper bit.
1659
- (rule (lower (has_type (ty_vec128 ty) (umin x y)))
1660
- (let (
1661
- (x Xmm x)
1662
- (y Xmm y)
1663
- (mask Xmm (flip_high_bit_mask ty))
1664
- (x_masked Xmm (x64_pxor x mask))
1665
- (y_masked Xmm (x64_pxor y mask))
1666
- (cmp Xmm (x64_pcmpgt ty y_masked x_masked))
1667
- (x_is_max Xmm (x64_pand cmp x))
1668
- (y_is_max Xmm (x64_pandn cmp y))
1669
- )
1670
- (x64_por x_is_max y_is_max)))
1671
-
1672
- ;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1673
-
1674
- (rule (lower (trap code))
1675
- (side_effect (x64_ud2 code)))
1676
-
1677
- ;;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1678
-
1679
- (rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
1680
- (with_flags
1681
- (x64_add_with_flags_paired ty a b)
1682
- (trap_if (CC.B) tc)))
1683
-
1684
- ;; Handle lhs immediates/sinkable loads in addition to the automatic rhs
1685
- ;; handling of above.
1686
-
1687
- (rule 1 (lower (has_type (fits_in_64 ty)
1688
- (uadd_overflow_trap (simm32_from_value a) b tc)))
1689
- (with_flags
1690
- (x64_add_with_flags_paired ty b a)
1691
- (trap_if (CC.B) tc)))
1692
-
1693
- (rule 2 (lower (has_type (fits_in_64 ty)
1694
- (uadd_overflow_trap (sinkable_load a) b tc)))
1695
- (with_flags
1696
- (x64_add_with_flags_paired ty b a)
1697
- (trap_if (CC.B) tc)))
1698
-
1699
- ;;;; Rules for `resumable_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1700
-
1701
- (rule (lower (resumable_trap code))
1702
- (side_effect (x64_ud2 code)))
1703
-
1704
- ;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1705
-
1706
- ;; N.B.: the Ret itself is generated by the ABI.
1707
- (rule (lower (return args))
1708
- (lower_return args))
1709
-
1710
- ;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1711
-
1712
- (rule -2 (lower (icmp cc a @ (value_type (fits_in_64 ty)) b))
1713
- (lower_icmp_bool (emit_cmp cc a b)))
1714
-
1715
- (rule -1 (lower (icmp cc a @ (value_type $I128) b))
1716
- (lower_icmp_bool (emit_cmp cc a b)))
1717
-
1718
- ;; Peephole optimization for `x < 0`, when x is a signed 64 bit value
1719
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I64) (u64_from_iconst 0))))
1720
- (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1721
-
1722
- ;; Peephole optimization for `0 > x`, when x is a signed 64 bit value
1723
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I64))))
1724
- (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1725
-
1726
- ;; Peephole optimization for `0 <= x`, when x is a signed 64 bit value
1727
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I64))))
1728
- (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1729
-
1730
- ;; Peephole optimization for `x >= 0`, when x is a signed 64 bit value
1731
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I64) (u64_from_iconst 0))))
1732
- (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1733
-
1734
- ;; Peephole optimization for `x < 0`, when x is a signed 32 bit value
1735
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I32) (u64_from_iconst 0))))
1736
- (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1737
-
1738
- ;; Peephole optimization for `0 > x`, when x is a signed 32 bit value
1739
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I32))))
1740
- (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1741
-
1742
- ;; Peephole optimization for `0 <= x`, when x is a signed 32 bit value
1743
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I32))))
1744
- (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1745
-
1746
- ;; Peephole optimization for `x >= 0`, when x is a signed 32 bit value
1747
- (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I32) (u64_from_iconst 0))))
1748
- (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1749
-
1750
- ;; For XMM-held values, we lower to `PCMP*` instructions, sometimes more than
1751
- ;; one. To note: what is different here about the output values is that each
1752
- ;; lane will be filled with all 1s or all 0s according to the comparison,
1753
- ;; whereas for GPR-held values, the result will be simply 0 or 1 (upper bits
1754
- ;; unset).
1755
- (rule (lower (icmp (IntCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1756
- (x64_pcmpeq ty a b))
1757
-
1758
- ;; To lower a not-equals comparison, we perform an equality comparison
1759
- ;; (PCMPEQ*) and then invert the bits (PXOR with all 1s).
1760
- (rule (lower (icmp (IntCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1761
- (let ((checked Xmm (x64_pcmpeq ty a b))
1762
- (all_ones Xmm (vector_all_ones)))
1763
- (x64_pxor checked all_ones)))
1764
-
1765
- ;; SSE `sgt`
1766
-
1767
- (rule (lower (icmp (IntCC.SignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1768
- (x64_pcmpgt ty a b))
1769
-
1770
- ;; SSE `slt`
1771
-
1772
- (rule (lower (icmp (IntCC.SignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1773
- (x64_pcmpgt ty b a))
1774
-
1775
- ;; SSE `ugt`
1776
-
1777
- ;; N.B.: we must manually prevent load coalescing operands; the
1778
- ;; register allocator gets confused otherwise.
1779
- (rule 1 (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1780
- (if-let $true (has_pmaxu ty))
1781
- (let ((a Xmm a)
1782
- (b Xmm b)
1783
- (max Xmm (x64_pmaxu ty a b))
1784
- (eq Xmm (x64_pcmpeq ty max b)))
1785
- (x64_pxor eq (vector_all_ones))))
1786
-
1787
- ;; Flip the upper bit of each lane so the result of a signed comparison is the
1788
- ;; same as the result of an unsigned comparison (see docs on `pcmpgt` for more)
1789
- (rule (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1790
- (let ((mask Xmm (flip_high_bit_mask ty))
1791
- (a_masked Xmm (x64_pxor a mask))
1792
- (b_masked Xmm (x64_pxor b mask)))
1793
- (x64_pcmpgt ty a_masked b_masked)))
1794
-
1795
- ;; SSE `ult`
1796
-
1797
- (rule 1 (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1798
- (if-let $true (has_pminu ty))
1799
- ;; N.B.: see note above.
1800
- (let ((a Xmm a)
1801
- (b Xmm b)
1802
- (min Xmm (x64_pminu ty a b))
1803
- (eq Xmm (x64_pcmpeq ty min b)))
1804
- (x64_pxor eq (vector_all_ones))))
1805
-
1806
- ;; Flip the upper bit of `a` and `b` so the signed comparison result will
1807
- ;; be the same as the unsigned comparison result (see docs on `pcmpgt` for more).
1808
- (rule (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1809
- (let ((mask Xmm (flip_high_bit_mask ty))
1810
- (a_masked Xmm (x64_pxor a mask))
1811
- (b_masked Xmm (x64_pxor b mask)))
1812
- (x64_pcmpgt ty b_masked a_masked)))
1813
-
1814
- ;; SSE `sge`
1815
-
1816
- ;; Use `pmaxs*` and compare the result to `a` to see if it's `>= b`.
1817
- (rule 1 (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1818
- (if-let $true (has_pmaxs ty))
1819
- (x64_pcmpeq ty a (x64_pmaxs ty a b)))
1820
-
1821
- ;; Without `pmaxs*` use a `pcmpgt*` with reversed operands and invert the
1822
- ;; result.
1823
- (rule (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1824
- (x64_pxor (x64_pcmpgt ty b a) (vector_all_ones)))
1825
-
1826
- ;; SSE `sle`
1827
-
1828
- ;; With `pmins*` use that and compare the result to `a`.
1829
- (rule 1 (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1830
- (if-let $true (has_pmins ty))
1831
- (x64_pcmpeq ty a (x64_pmins ty a b)))
1832
-
1833
- ;; Without `pmins*` perform a greater-than test and invert the result.
1834
- (rule (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1835
- (x64_pxor (x64_pcmpgt ty a b) (vector_all_ones)))
1836
-
1837
- ;; SSE `uge`
1838
-
1839
- (rule 2 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1840
- (if-let $true (has_pmaxu ty))
1841
- (x64_pcmpeq ty a (x64_pmaxu ty a b)))
1842
-
1843
- ;; Perform a saturating subtract of `a` from `b` and if the result is zero then
1844
- ;; `a` is greater or equal.
1845
- (rule 1 (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type $I16X8) b))
1846
- (x64_pcmpeqw (x64_psubusw b a) (xmm_zero $I16X8)))
1847
-
1848
- ;; Flip the upper bit of each lane so the signed comparison is the same as
1849
- ;; an unsigned one and then invert the result. See docs on `pcmpgt` for why
1850
- ;; flipping the upper bit works.
1851
- (rule (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1852
- (let (
1853
- (mask Xmm (flip_high_bit_mask ty))
1854
- (a_masked Xmm (x64_pxor a mask))
1855
- (b_masked Xmm (x64_pxor b mask))
1856
- (cmp Xmm (x64_pcmpgt ty b_masked a_masked))
1857
- )
1858
- (x64_pxor cmp (vector_all_ones))))
1859
-
1860
- ;; SSE `ule`
1861
-
1862
- (rule 2 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1863
- (if-let $true (has_pminu ty))
1864
- (x64_pcmpeq ty a (x64_pminu ty a b)))
1865
-
1866
- ;; A saturating subtraction will produce zeros if `a` is less than `b`, so
1867
- ;; compare that result to an all-zeros result to figure out lanes of `a` that
1868
- ;; are <= to the lanes in `b`
1869
- (rule 1 (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type $I16X8) b))
1870
- (let ((zeros_if_a_is_min Xmm (x64_psubusw a b)))
1871
- (x64_pcmpeqw zeros_if_a_is_min (xmm_zero $I8X16))))
1872
-
1873
- ;; Flip the upper bit of each lane in `a` and `b` so a signed comparison
1874
- ;; produces the same result as an unsigned comparison. Then test test for `gt`
1875
- ;; and invert the result to get the `le` that is desired here. See docs on
1876
- ;; `pcmpgt` for why flipping the upper bit works.
1877
- (rule (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1878
- (let (
1879
- (mask Xmm (flip_high_bit_mask ty))
1880
- (a_masked Xmm (x64_pxor a mask))
1881
- (b_masked Xmm (x64_pxor b mask))
1882
- (cmp Xmm (x64_pcmpgt ty a_masked b_masked))
1883
- )
1884
- (x64_pxor cmp (vector_all_ones))))
1885
-
1886
- ;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1887
-
1888
- ;; CLIF's `fcmp` instruction always operates on XMM registers--both scalar and
1889
- ;; vector. For the scalar versions, we use the flag-setting behavior of the
1890
- ;; `UCOMIS*` instruction to `SETcc` a 0 or 1 in a GPR register. Note that CLIF's
1891
- ;; `select` uses the same kind of flag-setting behavior but chooses values other
1892
- ;; than 0 or 1.
1893
- ;;
1894
- ;; Checking the result of `UCOMIS*` is unfortunately difficult in some cases
1895
- ;; because we do not have `SETcc` instructions that explicitly check
1896
- ;; simultaneously for the condition (i.e., `eq`, `le`, `gt`, etc.) *and*
1897
- ;; orderedness. Instead, we must check the flags multiple times. The UCOMIS*
1898
- ;; documentation (see Intel's Software Developer's Manual, volume 2, chapter 4)
1899
- ;; is helpful:
1900
- ;; - unordered assigns Z = 1, P = 1, C = 1
1901
- ;; - greater than assigns Z = 0, P = 0, C = 0
1902
- ;; - less than assigns Z = 0, P = 0, C = 1
1903
- ;; - equal assigns Z = 1, P = 0, C = 0
1904
-
1905
- (rule -1 (lower (fcmp cc a @ (value_type (ty_scalar_float ty)) b))
1906
- (lower_fcmp_bool (emit_fcmp cc a b)))
1907
-
1908
- ;; For vector lowerings, we use `CMPP*` instructions with a 3-bit operand that
1909
- ;; determines the comparison to make. Note that comparisons that succeed will
1910
- ;; fill the lane with 1s; comparisons that do not will fill the lane with 0s.
1911
-
1912
- (rule (lower (fcmp (FloatCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1913
- (x64_cmpp ty a b (FcmpImm.Equal)))
1914
- (rule (lower (fcmp (FloatCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1915
- (x64_cmpp ty a b (FcmpImm.NotEqual)))
1916
- (rule (lower (fcmp (FloatCC.LessThan) a @ (value_type (ty_vec128 ty)) b))
1917
- (x64_cmpp ty a b (FcmpImm.LessThan)))
1918
- (rule (lower (fcmp (FloatCC.LessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1919
- (x64_cmpp ty a b (FcmpImm.LessThanOrEqual)))
1920
- (rule (lower (fcmp (FloatCC.Ordered) a @ (value_type (ty_vec128 ty)) b))
1921
- (x64_cmpp ty a b (FcmpImm.Ordered)))
1922
- (rule (lower (fcmp (FloatCC.Unordered) a @ (value_type (ty_vec128 ty)) b))
1923
- (x64_cmpp ty a b (FcmpImm.Unordered)))
1924
- (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1925
- (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThan)))
1926
- (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1927
- (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThanOrEqual)))
1928
-
1929
- ;; Some vector lowerings rely on flipping the operands and using a reversed
1930
- ;; comparison code.
1931
-
1932
- (rule (lower (fcmp (FloatCC.GreaterThan) a @ (value_type (ty_vec128 ty)) b))
1933
- (x64_cmpp ty b a (FcmpImm.LessThan)))
1934
- (rule (lower (fcmp (FloatCC.GreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1935
- (x64_cmpp ty b a (FcmpImm.LessThanOrEqual)))
1936
- (rule (lower (fcmp (FloatCC.UnorderedOrLessThan) a @ (value_type (ty_vec128 ty)) b))
1937
- (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThan)))
1938
- (rule (lower (fcmp (FloatCC.UnorderedOrLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1939
- (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThanOrEqual)))
1940
-
1941
- ;; Some vector lowerings are simply not supported for certain codes:
1942
- ;; - FloatCC::OrderedNotEqual
1943
- ;; - FloatCC::UnorderedOrEqual
1944
-
1945
- ;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1946
-
1947
- ;; When a `select` has an `fcmp` as a condition then rely on `emit_fcmp` to
1948
- ;; figure out how to perform the comparison.
1949
- ;;
1950
- ;; Note, though, that the `FloatCC.Equal` requires an "and" to happen for two
1951
- ;; condition codes which isn't the easiest thing to lower to a `cmove`
1952
- ;; instruction. For this reason a `select (fcmp eq ..) ..` is instead
1953
- ;; flipped around to be `select (fcmp ne ..) ..` with all operands reversed.
1954
- ;; This will produce a `FcmpCondResult.OrCondition` which is easier to codegen
1955
- ;; for.
1956
- (rule (lower (has_type ty (select (maybe_uextend (fcmp cc a b)) x y)))
1957
- (lower_select_fcmp ty (emit_fcmp cc a b) x y))
1958
- (rule 1 (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.Equal) a b)) x y)))
1959
- (lower_select_fcmp ty (emit_fcmp (FloatCC.NotEqual) a b) y x))
1960
-
1961
- (decl lower_select_fcmp (Type FcmpCondResult Value Value) InstOutput)
1962
- (rule (lower_select_fcmp ty (FcmpCondResult.Condition flags cc) x y)
1963
- (with_flags flags (cmove_from_values ty cc x y)))
1964
- (rule (lower_select_fcmp ty (FcmpCondResult.OrCondition flags cc1 cc2) x y)
1965
- (with_flags flags (cmove_or_from_values ty cc1 cc2 x y)))
1966
-
1967
- ;; We also can lower `select`s that depend on an `icmp` test, but more simply
1968
- ;; than the `fcmp` variants above. In these cases, we lower to a `CMP`
1969
- ;; instruction plus a `CMOV`; recall that `cmove_from_values` here may emit more
1970
- ;; than one instruction for certain types (e.g., XMM-held, I128).
1971
-
1972
- (rule (lower (has_type ty (select (maybe_uextend (icmp cc a @ (value_type (fits_in_64 a_ty)) b)) x y)))
1973
- (let ((size OperandSize (raw_operand_size_of_type a_ty)))
1974
- (with_flags (x64_cmp size b a) (cmove_from_values ty cc x y))))
1975
-
1976
- ;; Finally, we lower `select` from a condition value `c`. These rules are meant
1977
- ;; to be the final, default lowerings if no other patterns matched above.
1978
-
1979
- (rule -1 (lower (has_type ty (select c @ (value_type (fits_in_64 a_ty)) x y)))
1980
- (let ((size OperandSize (raw_operand_size_of_type a_ty))
1981
- ;; N.B.: disallow load-op fusion, see above. TODO:
1982
- ;; https://github.com/bytecodealliance/wasmtime/issues/3953.
1983
- (gpr_c Gpr (put_in_gpr c)))
1984
- (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
1985
-
1986
- (rule -2 (lower (has_type ty (select c @ (value_type $I128) x y)))
1987
- (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
1988
- (select_icmp cond_result x y)))
1989
-
1990
- ;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1991
-
1992
- ;; If available, we can use a plain lzcnt instruction here. Note no
1993
- ;; special handling is required for zero inputs, because the machine
1994
- ;; instruction does what the CLIF expects for zero, i.e. it returns
1995
- ;; zero.
1996
- (rule 3 (lower (has_type (ty_32_or_64 ty) (clz src)))
1997
- (if-let $true (use_lzcnt))
1998
- (x64_lzcnt ty src))
1999
-
2000
- (rule 2 (lower (has_type (ty_32_or_64 ty) (clz src)))
2001
- (do_clz ty ty src))
2002
-
2003
- (rule 1 (lower
2004
- (has_type (ty_8_or_16 ty)
2005
- (clz src)))
2006
- (do_clz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
2007
-
2008
- (rule 0 (lower
2009
- (has_type $I128
2010
- (clz src)))
2011
- (let ((upper Gpr (do_clz $I64 $I64 (value_regs_get_gpr src 1)))
2012
- (lower Gpr (x64_add $I64
2013
- (do_clz $I64 $I64 (value_regs_get_gpr src 0))
2014
- (RegMemImm.Imm 64)))
2015
- (result_lo Gpr
2016
- (with_flags_reg
2017
- (x64_cmp_imm (OperandSize.Size64) 64 upper)
2018
- (cmove $I64 (CC.NZ) upper lower))))
2019
- (value_regs result_lo (imm $I64 0))))
2020
-
2021
- ;; Implementation helper for clz; operates on 32 or 64-bit units.
2022
- (decl do_clz (Type Type Gpr) Gpr)
2023
- (rule (do_clz ty orig_ty src)
2024
- (let ((highest_bit_index Reg (bsr_or_else ty src (imm_i64 $I64 -1)))
2025
- (bits_minus_1 Reg (imm ty (u64_sub (ty_bits_u64 orig_ty) 1))))
2026
- (x64_sub ty bits_minus_1 highest_bit_index)))
2027
-
2028
- ;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2029
-
2030
- ;; Analogous to `clz` cases above, but using mirror instructions
2031
- ;; (tzcnt vs lzcnt, bsf vs bsr).
2032
-
2033
- (rule 3 (lower (has_type (ty_32_or_64 ty) (ctz src)))
2034
- (if-let $true (use_bmi1))
2035
- (x64_tzcnt ty src))
2036
-
2037
- (rule 2 (lower (has_type (ty_32_or_64 ty) (ctz src)))
2038
- (do_ctz ty ty src))
2039
-
2040
- (rule 1 (lower
2041
- (has_type (ty_8_or_16 ty)
2042
- (ctz src)))
2043
- (do_ctz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
2044
-
2045
- (rule 0 (lower
2046
- (has_type $I128
2047
- (ctz src)))
2048
- (let ((lower Gpr (do_ctz $I64 $I64 (value_regs_get_gpr src 0)))
2049
- (upper Gpr (x64_add $I64
2050
- (do_ctz $I64 $I64 (value_regs_get_gpr src 1))
2051
- (RegMemImm.Imm 64)))
2052
- (result_lo Gpr
2053
- (with_flags_reg
2054
- (x64_cmp_imm (OperandSize.Size64) 64 lower)
2055
- (cmove $I64 (CC.Z) upper lower))))
2056
- (value_regs result_lo (imm $I64 0))))
2057
-
2058
- (decl do_ctz (Type Type Gpr) Gpr)
2059
- (rule (do_ctz ty orig_ty src)
2060
- (bsf_or_else ty src (imm $I64 (ty_bits_u64 orig_ty))))
2061
-
2062
- ;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2063
-
2064
- (rule 3 (lower (has_type (ty_32_or_64 ty) (popcnt src)))
2065
- (if-let $true (use_popcnt))
2066
- (x64_popcnt ty src))
2067
-
2068
- (rule 2 (lower (has_type (ty_8_or_16 ty) (popcnt src)))
2069
- (if-let $true (use_popcnt))
2070
- (x64_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2071
-
2072
- (rule 1 (lower (has_type $I128 (popcnt src)))
2073
- (if-let $true (use_popcnt))
2074
- (let ((lo_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 0)))
2075
- (hi_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 1))))
2076
- (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2077
-
2078
- (rule -1 (lower
2079
- (has_type (ty_32_or_64 ty)
2080
- (popcnt src)))
2081
- (do_popcnt ty src))
2082
-
2083
- (rule -2 (lower
2084
- (has_type (ty_8_or_16 ty)
2085
- (popcnt src)))
2086
- (do_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
2087
-
2088
- (rule (lower
2089
- (has_type $I128
2090
- (popcnt src)))
2091
- (let ((lo_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 0)))
2092
- (hi_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 1))))
2093
- (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
2094
-
2095
- ;; Implementation of popcount when we don't nave a native popcount
2096
- ;; instruction.
2097
- (decl do_popcnt (Type Gpr) Gpr)
2098
- (rule (do_popcnt $I64 src)
2099
- (let ((shifted1 Gpr (x64_shr $I64 src (Imm8Reg.Imm8 1)))
2100
- (sevens Gpr (imm $I64 0x7777777777777777))
2101
- (masked1 Gpr (x64_and $I64 shifted1 sevens))
2102
- ;; diff1 := src - ((src >> 1) & 0b0111_0111_0111...)
2103
- (diff1 Gpr (x64_sub $I64 src masked1))
2104
- (shifted2 Gpr (x64_shr $I64 masked1 (Imm8Reg.Imm8 1)))
2105
- (masked2 Gpr (x64_and $I64 shifted2 sevens))
2106
- ;; diff2 := diff1 - ((diff1 >> 1) & 0b0111_0111_0111...)
2107
- (diff2 Gpr (x64_sub $I64 diff1 masked2))
2108
- (shifted3 Gpr (x64_shr $I64 masked2 (Imm8Reg.Imm8 1)))
2109
- (masked3 Gpr (x64_and $I64 shifted3 sevens))
2110
- ;; diff3 := diff2 - ((diff2 >> 1) & 0b0111_0111_0111...)
2111
- ;;
2112
- ;; At this point, each nibble of diff3 is the popcount of
2113
- ;; that nibble. This works because at each step above, we
2114
- ;; are basically subtracting floor(value / 2) from the
2115
- ;; running value; the leftover remainder is 1 if the LSB
2116
- ;; was 1. After three steps, we have (nibble / 8) -- 0 or
2117
- ;; 1 for the MSB of the nibble -- plus three possible
2118
- ;; additions for the three other bits.
2119
- (diff3 Gpr (x64_sub $I64 diff2 masked3))
2120
- ;; Add the two nibbles of each byte together.
2121
- (sum1 Gpr (x64_add $I64
2122
- (x64_shr $I64 diff3 (Imm8Reg.Imm8 4))
2123
- diff3))
2124
- ;; Mask the above sum to have the popcount for each byte
2125
- ;; in the lower nibble of that byte.
2126
- (ofof Gpr (imm $I64 0x0f0f0f0f0f0f0f0f))
2127
- (masked4 Gpr (x64_and $I64 sum1 ofof))
2128
- (ones Gpr (imm $I64 0x0101010101010101))
2129
- ;; Use a multiply to sum all of the bytes' popcounts into
2130
- ;; the top byte. Consider the binomial expansion for the
2131
- ;; top byte: it is the sum of the bytes (masked4 >> 56) *
2132
- ;; 0x01 + (masked4 >> 48) * 0x01 + (masked4 >> 40) * 0x01
2133
- ;; + ... + (masked4 >> 0).
2134
- (mul Gpr (x64_mul $I64 masked4 ones))
2135
- ;; Now take that top byte and return it as the popcount.
2136
- (final Gpr (x64_shr $I64 mul (Imm8Reg.Imm8 56))))
2137
- final))
2138
-
2139
- ;; This is the 32-bit version of the above; the steps for each nibble
2140
- ;; are the same, we just use constants half as wide.
2141
- (rule (do_popcnt $I32 src)
2142
- (let ((shifted1 Gpr (x64_shr $I32 src (Imm8Reg.Imm8 1)))
2143
- (sevens Gpr (imm $I32 0x77777777))
2144
- (masked1 Gpr (x64_and $I32 shifted1 sevens))
2145
- (diff1 Gpr (x64_sub $I32 src masked1))
2146
- (shifted2 Gpr (x64_shr $I32 masked1 (Imm8Reg.Imm8 1)))
2147
- (masked2 Gpr (x64_and $I32 shifted2 sevens))
2148
- (diff2 Gpr (x64_sub $I32 diff1 masked2))
2149
- (shifted3 Gpr (x64_shr $I32 masked2 (Imm8Reg.Imm8 1)))
2150
- (masked3 Gpr (x64_and $I32 shifted3 sevens))
2151
- (diff3 Gpr (x64_sub $I32 diff2 masked3))
2152
- (sum1 Gpr (x64_add $I32
2153
- (x64_shr $I32 diff3 (Imm8Reg.Imm8 4))
2154
- diff3))
2155
- (masked4 Gpr (x64_and $I32 sum1 (RegMemImm.Imm 0x0f0f0f0f)))
2156
- (mul Gpr (x64_mul $I32 masked4 (RegMemImm.Imm 0x01010101)))
2157
- (final Gpr (x64_shr $I32 mul (Imm8Reg.Imm8 24))))
2158
- final))
2159
-
2160
-
2161
- (rule 1 (lower (has_type $I8X16 (popcnt src)))
2162
- (if-let $true (use_avx512vl_simd))
2163
- (if-let $true (use_avx512bitalg_simd))
2164
- (x64_vpopcntb src))
2165
-
2166
-
2167
- ;; For SSE 4.2 we use Mula's algorithm (https://arxiv.org/pdf/1611.07612.pdf):
2168
- ;;
2169
- ;; __m128i count_bytes ( __m128i v) {
2170
- ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2171
- ;; __m128i low_mask = _mm_set1_epi8 (0x0f);
2172
- ;; __m128i lo = _mm_and_si128 (v, low_mask);
2173
- ;; __m128i hi = _mm_and_si128 (_mm_srli_epi16 (v, 4), low_mask);
2174
- ;; __m128i cnt1 = _mm_shuffle_epi8 (lookup, lo);
2175
- ;; __m128i cnt2 = _mm_shuffle_epi8 (lookup, hi);
2176
- ;; return _mm_add_epi8 (cnt1, cnt2);
2177
- ;; }
2178
- ;;
2179
- ;; Details of the above algorithm can be found in the reference noted above, but the basics
2180
- ;; are to create a lookup table that pre populates the popcnt values for each number [0,15].
2181
- ;; The algorithm uses shifts to isolate 4 bit sections of the vector, pshufb as part of the
2182
- ;; lookup process, and adds together the results.
2183
- ;;
2184
- ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
2185
-
2186
- (decl popcount_4bit_table () VCodeConstant) ;; bits-per-nibble table `lookup` above
2187
- (extern constructor popcount_4bit_table popcount_4bit_table)
2188
-
2189
- (decl popcount_low_mask () VCodeConstant) ;; mask for low nibbles: 0x0f * 16
2190
- (extern constructor popcount_low_mask popcount_low_mask)
2191
-
2192
- (rule (lower (has_type $I8X16
2193
- (popcnt src)))
2194
- (let ((nibble_table_const VCodeConstant (popcount_4bit_table))
2195
- (low_mask XmmMem (popcount_low_mask))
2196
- (low_nibbles Xmm (sse_and $I8X16 src low_mask))
2197
- ;; Note that this is a 16x8 shift, but that's OK; we mask
2198
- ;; off anything that traverses from one byte to the next
2199
- ;; with the low_mask below.
2200
- (shifted_src Xmm (x64_psrlw src (xmi_imm 4)))
2201
- (high_nibbles Xmm (sse_and $I8X16 shifted_src low_mask))
2202
- (lookup Xmm (x64_xmm_load_const $I8X16 (popcount_4bit_table)))
2203
- (bit_counts_low Xmm (x64_pshufb lookup low_nibbles))
2204
- (bit_counts_high Xmm (x64_pshufb lookup high_nibbles)))
2205
- (x64_paddb bit_counts_low bit_counts_high)))
2206
-
2207
- ;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2208
-
2209
- (rule (lower (has_type $I8 (bitrev src)))
2210
- (do_bitrev8 $I32 src))
2211
-
2212
- (rule (lower (has_type $I16 (bitrev src)))
2213
- (do_bitrev16 $I32 src))
2214
-
2215
- (rule (lower (has_type $I32 (bitrev src)))
2216
- (do_bitrev32 $I32 src))
2217
-
2218
- (rule (lower (has_type $I64 (bitrev src)))
2219
- (do_bitrev64 $I64 src))
2220
-
2221
- (rule (lower (has_type $I128 (bitrev src)))
2222
- (value_regs
2223
- (do_bitrev64 $I64 (value_regs_get_gpr src 1))
2224
- (do_bitrev64 $I64 (value_regs_get_gpr src 0))))
2225
-
2226
- (decl do_bitrev8 (Type Gpr) Gpr)
2227
- (rule (do_bitrev8 ty src)
2228
- (let ((tymask u64 (ty_mask ty))
2229
- (mask1 Gpr (imm ty (u64_and tymask 0x5555555555555555)))
2230
- (lo1 Gpr (x64_and ty src mask1))
2231
- (hi1 Gpr (x64_and ty (x64_shr ty src (Imm8Reg.Imm8 1)) mask1))
2232
- (swap1 Gpr (x64_or ty
2233
- (x64_shl ty lo1 (Imm8Reg.Imm8 1))
2234
- hi1))
2235
- (mask2 Gpr (imm ty (u64_and tymask 0x3333333333333333)))
2236
- (lo2 Gpr (x64_and ty swap1 mask2))
2237
- (hi2 Gpr (x64_and ty (x64_shr ty swap1 (Imm8Reg.Imm8 2)) mask2))
2238
- (swap2 Gpr (x64_or ty
2239
- (x64_shl ty lo2 (Imm8Reg.Imm8 2))
2240
- hi2))
2241
- (mask4 Gpr (imm ty (u64_and tymask 0x0f0f0f0f0f0f0f0f)))
2242
- (lo4 Gpr (x64_and ty swap2 mask4))
2243
- (hi4 Gpr (x64_and ty (x64_shr ty swap2 (Imm8Reg.Imm8 4)) mask4))
2244
- (swap4 Gpr (x64_or ty
2245
- (x64_shl ty lo4 (Imm8Reg.Imm8 4))
2246
- hi4)))
2247
- swap4))
2248
-
2249
- (decl do_bitrev16 (Type Gpr) Gpr)
2250
- (rule (do_bitrev16 ty src)
2251
- (let ((src_ Gpr (do_bitrev8 ty src))
2252
- (tymask u64 (ty_mask ty))
2253
- (mask8 Gpr (imm ty (u64_and tymask 0x00ff00ff00ff00ff)))
2254
- (lo8 Gpr (x64_and ty src_ mask8))
2255
- (hi8 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 8)) mask8))
2256
- (swap8 Gpr (x64_or ty
2257
- (x64_shl ty lo8 (Imm8Reg.Imm8 8))
2258
- hi8)))
2259
- swap8))
2260
-
2261
- (decl do_bitrev32 (Type Gpr) Gpr)
2262
- (rule (do_bitrev32 ty src)
2263
- (let ((src_ Gpr (do_bitrev16 ty src))
2264
- (tymask u64 (ty_mask ty))
2265
- (mask16 Gpr (imm ty (u64_and tymask 0x0000ffff0000ffff)))
2266
- (lo16 Gpr (x64_and ty src_ mask16))
2267
- (hi16 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 16)) mask16))
2268
- (swap16 Gpr (x64_or ty
2269
- (x64_shl ty lo16 (Imm8Reg.Imm8 16))
2270
- hi16)))
2271
- swap16))
2272
-
2273
- (decl do_bitrev64 (Type Gpr) Gpr)
2274
- (rule (do_bitrev64 ty @ $I64 src)
2275
- (let ((src_ Gpr (do_bitrev32 ty src))
2276
- (mask32 Gpr (imm ty 0xffffffff))
2277
- (lo32 Gpr (x64_and ty src_ mask32))
2278
- (hi32 Gpr (x64_shr ty src_ (Imm8Reg.Imm8 32)))
2279
- (swap32 Gpr (x64_or ty
2280
- (x64_shl ty lo32 (Imm8Reg.Imm8 32))
2281
- hi32)))
2282
- swap32))
2283
-
2284
- ;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2285
-
2286
- ;; x64 bswap instruction is only for 32- or 64-bit swaps
2287
- ;; implement the 16-bit swap as a rotl by 8
2288
- (rule (lower (has_type $I16 (bswap src)))
2289
- (x64_rotl $I16 src (Imm8Reg.Imm8 8)))
2290
-
2291
- (rule (lower (has_type $I32 (bswap src)))
2292
- (x64_bswap $I32 src))
2293
-
2294
- (rule (lower (has_type $I64 (bswap src)))
2295
- (x64_bswap $I64 src))
2296
-
2297
- (rule (lower (has_type $I128 (bswap src)))
2298
- (value_regs
2299
- (x64_bswap $I64 (value_regs_get_gpr src 1))
2300
- (x64_bswap $I64 (value_regs_get_gpr src 0))))
2301
-
2302
- ;; Rules for `is_null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2303
-
2304
- ;; Null references are represented by the constant value `0`.
2305
- (rule (lower (is_null src @ (value_type $R64)))
2306
- (with_flags
2307
- (x64_cmp_imm (OperandSize.Size64) 0 src)
2308
- (x64_setcc (CC.Z))))
2309
-
2310
- ;; Rules for `is_invalid` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2311
-
2312
- ;; Invalid references are represented by the constant value `-1`.
2313
- (rule (lower (is_invalid src @ (value_type $R64)))
2314
- (with_flags
2315
- (x64_cmp_imm (OperandSize.Size64) 0xffffffff src) ;; simm32 0xffff_ffff is sign-extended to -1.
2316
- (x64_setcc (CC.Z))))
2317
-
2318
-
2319
- ;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2320
-
2321
- ;; I{8,16,32,64} -> I128.
2322
- (rule (lower (has_type $I128 (uextend src)))
2323
- (value_regs (extend_to_gpr src $I64 (ExtendKind.Zero)) (imm $I64 0)))
2324
-
2325
- ;; I{8,16,32} -> I64.
2326
- (rule (lower (has_type $I64 (uextend src)))
2327
- (extend_to_gpr src $I64 (ExtendKind.Zero)))
2328
-
2329
- ;; I{8,16} -> I32
2330
- ;; I8 -> I16
2331
- (rule -1 (lower (has_type (fits_in_32 _) (uextend src)))
2332
- (extend_to_gpr src $I32 (ExtendKind.Zero)))
2333
-
2334
- ;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2335
-
2336
- ;; I{8,16,32} -> I128.
2337
- ;;
2338
- ;; Produce upper 64 bits sign-extended from lower 64: shift right by
2339
- ;; 63 bits to spread the sign bit across the result.
2340
- (rule (lower (has_type $I128 (sextend src)))
2341
- (let ((lo Gpr (extend_to_gpr src $I64 (ExtendKind.Sign)))
2342
- (hi Gpr (x64_sar $I64 lo (Imm8Reg.Imm8 63))))
2343
- (value_regs lo hi)))
2344
-
2345
- ;; I{8,16,32} -> I64.
2346
- (rule (lower (has_type $I64 (sextend src)))
2347
- (extend_to_gpr src $I64 (ExtendKind.Sign)))
2348
-
2349
- ;; I{8,16} -> I32
2350
- ;; I8 -> I16
2351
- (rule -1 (lower (has_type (fits_in_32 _) (sextend src)))
2352
- (extend_to_gpr src $I32 (ExtendKind.Sign)))
2353
-
2354
- ;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2355
-
2356
- ;; T -> T is always a no-op, even I128 -> I128.
2357
- (rule (lower (has_type ty (ireduce src @ (value_type ty))))
2358
- src)
2359
-
2360
- ;; T -> I{64,32,16,8}: We can simply pass through the value: values
2361
- ;; are always stored with high bits undefined, so we can just leave
2362
- ;; them be.
2363
- (rule 1 (lower (has_type (fits_in_64 ty) (ireduce src)))
2364
- (value_regs_get_gpr src 0))
2365
-
2366
- ;; Rules for `debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2367
-
2368
- (rule (lower (debugtrap))
2369
- (side_effect (x64_hlt)))
2370
-
2371
- ;; Rules for `x86_pmaddubsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2372
-
2373
- (rule (lower (has_type $I16X8 (x86_pmaddubsw x y)))
2374
- (x64_pmaddubsw y x))
2375
-
2376
- ;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2377
-
2378
- (rule (lower (has_type $F32 (fadd x y)))
2379
- (x64_addss x y))
2380
- (rule (lower (has_type $F64 (fadd x y)))
2381
- (x64_addsd x y))
2382
- (rule (lower (has_type $F32X4 (fadd x y)))
2383
- (x64_addps x y))
2384
- (rule (lower (has_type $F64X2 (fadd x y)))
2385
- (x64_addpd x y))
2386
-
2387
- ;; The above rules automatically sink loads for rhs operands, so additionally
2388
- ;; add rules for sinking loads with lhs operands.
2389
- (rule 1 (lower (has_type $F32 (fadd (sinkable_load x) y)))
2390
- (x64_addss y x))
2391
- (rule 1 (lower (has_type $F64 (fadd (sinkable_load x) y)))
2392
- (x64_addsd y x))
2393
- (rule 1 (lower (has_type $F32X4 (fadd (sinkable_load x) y)))
2394
- (x64_addps y x))
2395
- (rule 1 (lower (has_type $F64X2 (fadd (sinkable_load x) y)))
2396
- (x64_addpd y x))
2397
-
2398
- ;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2399
-
2400
- (rule (lower (has_type $F32 (fsub x y)))
2401
- (x64_subss x y))
2402
- (rule (lower (has_type $F64 (fsub x y)))
2403
- (x64_subsd x y))
2404
- (rule (lower (has_type $F32X4 (fsub x y)))
2405
- (x64_subps x y))
2406
- (rule (lower (has_type $F64X2 (fsub x y)))
2407
- (x64_subpd x y))
2408
-
2409
- ;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2410
-
2411
- (rule (lower (has_type $F32 (fmul x y)))
2412
- (x64_mulss x y))
2413
- (rule (lower (has_type $F64 (fmul x y)))
2414
- (x64_mulsd x y))
2415
- (rule (lower (has_type $F32X4 (fmul x y)))
2416
- (x64_mulps x y))
2417
- (rule (lower (has_type $F64X2 (fmul x y)))
2418
- (x64_mulpd x y))
2419
-
2420
- ;; The above rules automatically sink loads for rhs operands, so additionally
2421
- ;; add rules for sinking loads with lhs operands.
2422
- (rule 1 (lower (has_type $F32 (fmul (sinkable_load x) y)))
2423
- (x64_mulss y x))
2424
- (rule 1 (lower (has_type $F64 (fmul (sinkable_load x) y)))
2425
- (x64_mulsd y x))
2426
- (rule 1 (lower (has_type $F32X4 (fmul (sinkable_load x) y)))
2427
- (x64_mulps y x))
2428
- (rule 1 (lower (has_type $F64X2 (fmul (sinkable_load x) y)))
2429
- (x64_mulpd y x))
2430
-
2431
- ;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2432
-
2433
- (rule (lower (has_type $F32 (fdiv x y)))
2434
- (x64_divss x y))
2435
- (rule (lower (has_type $F64 (fdiv x y)))
2436
- (x64_divsd x y))
2437
- (rule (lower (has_type $F32X4 (fdiv x y)))
2438
- (x64_divps x y))
2439
- (rule (lower (has_type $F64X2 (fdiv x y)))
2440
- (x64_divpd x y))
2441
-
2442
- ;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2443
- (rule (lower (has_type $F32 (sqrt x)))
2444
- (x64_sqrtss x))
2445
- (rule (lower (has_type $F64 (sqrt x)))
2446
- (x64_sqrtsd x))
2447
- (rule (lower (has_type $F32X4 (sqrt x)))
2448
- (x64_sqrtps x))
2449
- (rule (lower (has_type $F64X2 (sqrt x)))
2450
- (x64_sqrtpd x))
2451
-
2452
- ;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2453
- (rule (lower (has_type $F64 (fpromote x)))
2454
- (x64_cvtss2sd x))
2455
-
2456
- ;; Rules for `fvpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2457
- (rule (lower (has_type $F64X2 (fvpromote_low x)))
2458
- (x64_cvtps2pd (put_in_xmm x)))
2459
-
2460
- ;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2461
- (rule (lower (has_type $F32 (fdemote x)))
2462
- (x64_cvtsd2ss x))
2463
-
2464
- ;; Rules for `fvdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2465
- (rule (lower (has_type $F32X4 (fvdemote x)))
2466
- (x64_cvtpd2ps x))
2467
-
2468
- ;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2469
-
2470
- (rule (lower (has_type $F32 (fmin x y)))
2471
- (xmm_min_max_seq $F32 $true x y))
2472
- (rule (lower (has_type $F64 (fmin x y)))
2473
- (xmm_min_max_seq $F64 $true x y))
2474
-
2475
- ;; Vector-typed version. We don't use single pseudoinstructions as
2476
- ;; above, because we don't need to generate a mini-CFG. Instead, we
2477
- ;; perform a branchless series of operations.
2478
- ;;
2479
- ;; We cannot simply use native min instructions (minps, minpd) because
2480
- ;; NaN handling is different per CLIF semantics than on
2481
- ;; x86. Specifically, if an argument is NaN, or the arguments are both
2482
- ;; zero but of opposite signs, then the x86 instruction always
2483
- ;; produces the second argument. However, per CLIF semantics, we
2484
- ;; require that fmin(NaN, _) = fmin(_, NaN) = NaN, and fmin(+0, -0) =
2485
- ;; fmin(-0, +0) = -0.
2486
-
2487
- (rule (lower (has_type $F32X4 (fmin x y)))
2488
- ;; Compute min(x, y) and min(y, x) with native
2489
- ;; instructions. These will differ in one of the edge cases
2490
- ;; above that we have to handle properly. (Conversely, if they
2491
- ;; don't differ, then the native instruction's answer is the
2492
- ;; right one per CLIF semantics.)
2493
- (let ((min1 Xmm (x64_minps x y))
2494
- (min2 Xmm (x64_minps y x))
2495
- ;; Compute the OR of the two. Note that NaNs have an
2496
- ;; exponent field of all-ones (0xFF for F32), so if either
2497
- ;; result is a NaN, this OR will be. And if either is a
2498
- ;; zero (which has an exponent of 0 and mantissa of 0),
2499
- ;; this captures a sign-bit of 1 (negative) if either
2500
- ;; input is negative.
2501
- ;;
2502
- ;; In the case where we don't have a +/-0 mismatch or
2503
- ;; NaNs, then `min1` and `min2` are equal and `min_or` is
2504
- ;; the correct minimum.
2505
- (min_or Xmm (x64_orps min1 min2))
2506
- ;; "compare unordered" produces a true mask (all ones) in
2507
- ;; a given lane if the min is a NaN. We use this to
2508
- ;; generate a mask to ensure quiet NaNs.
2509
- (is_nan_mask Xmm (x64_cmpps min_or min2 (FcmpImm.Unordered)))
2510
- ;; OR in the NaN mask.
2511
- (min_or_2 Xmm (x64_orps min_or is_nan_mask))
2512
- ;; Shift the NaN mask down so that it covers just the
2513
- ;; fraction below the NaN signalling bit; we'll use this
2514
- ;; to mask off non-canonical NaN payloads.
2515
- ;;
2516
- ;; All-ones for NaN, shifted down to leave 10 top bits (1
2517
- ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2518
- ;; cleared.
2519
- (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2520
- ;; Do a NAND, so that we retain every bit not set in
2521
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2522
- ;; we retain every bit) in non-NaN cases, and will have
2523
- ;; ones (so we clear those bits) in NaN-payload bits
2524
- ;; otherwise.
2525
- (final Xmm (x64_andnps nan_fraction_mask min_or_2)))
2526
- final))
2527
-
2528
- ;; Likewise for F64 lanes, except that the right-shift is by 13 bits
2529
- ;; (1 sign, 11 exponent, 1 QNaN bit).
2530
- (rule (lower (has_type $F64X2 (fmin x y)))
2531
- (let ((min1 Xmm (x64_minpd x y))
2532
- (min2 Xmm (x64_minpd y x))
2533
- (min_or Xmm (x64_orpd min1 min2))
2534
- (is_nan_mask Xmm (x64_cmppd min1 min2 (FcmpImm.Unordered)))
2535
- (min_or_2 Xmm (x64_orpd min_or is_nan_mask))
2536
- (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2537
- (final Xmm (x64_andnpd nan_fraction_mask min_or_2)))
2538
- final))
2539
-
2540
- ;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2541
-
2542
- (rule (lower (has_type $F32 (fmax x y)))
2543
- (xmm_min_max_seq $F32 $false x y))
2544
- (rule (lower (has_type $F64 (fmax x y)))
2545
- (xmm_min_max_seq $F64 $false x y))
2546
-
2547
- ;; The vector version of fmax here is a dual to the fmin sequence
2548
- ;; above, almost, with a few differences.
2549
-
2550
- (rule (lower (has_type $F32X4 (fmax x y)))
2551
- ;; Compute max(x, y) and max(y, x) with native
2552
- ;; instructions. These will differ in one of the edge cases
2553
- ;; above that we have to handle properly. (Conversely, if they
2554
- ;; don't differ, then the native instruction's answer is the
2555
- ;; right one per CLIF semantics.)
2556
- (let ((max1 Xmm (x64_maxps x y))
2557
- (max2 Xmm (x64_maxps y x))
2558
- ;; Compute the XOR of the two maxima. In the case
2559
- ;; where we don't have a +/-0 mismatch or NaNs, then
2560
- ;; `min1` and `min2` are equal and this XOR is zero.
2561
- (max_xor Xmm (x64_xorps max1 max2))
2562
- ;; OR the XOR into one of the original maxima. If they are
2563
- ;; equal, this does nothing. If max2 was NaN, its exponent
2564
- ;; bits were all-ones, so the xor's exponent bits were the
2565
- ;; complement of max1, and the OR of max1 and max_xor has
2566
- ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2567
- ;; its exponent bits were already all-ones, so the OR will
2568
- ;; be a NaN as well.
2569
- (max_blended_nan Xmm (x64_orps max1 max_xor))
2570
- ;; Subtract the XOR. This ensures that if we had +0 and
2571
- ;; -0, we end up with +0.
2572
- (max_blended_nan_positive Xmm (x64_subps max_blended_nan max_xor))
2573
- ;; "compare unordered" produces a true mask (all ones) in
2574
- ;; a given lane if the min is a NaN. We use this to
2575
- ;; generate a mask to ensure quiet NaNs.
2576
- (is_nan_mask Xmm (x64_cmpps max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2577
- ;; Shift the NaN mask down so that it covers just the
2578
- ;; fraction below the NaN signalling bit; we'll use this
2579
- ;; to mask off non-canonical NaN payloads.
2580
- ;;
2581
- ;; All-ones for NaN, shifted down to leave 10 top bits (1
2582
- ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2583
- ;; cleared.
2584
- (nan_fraction_mask Xmm (x64_psrld is_nan_mask (xmi_imm 10)))
2585
- ;; Do a NAND, so that we retain every bit not set in
2586
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2587
- ;; we retain every bit) in non-NaN cases, and will have
2588
- ;; ones (so we clear those bits) in NaN-payload bits
2589
- ;; otherwise.
2590
- (final Xmm (x64_andnps nan_fraction_mask max_blended_nan_positive)))
2591
- final))
2592
-
2593
- (rule (lower (has_type $F64X2 (fmax x y)))
2594
- ;; Compute max(x, y) and max(y, x) with native
2595
- ;; instructions. These will differ in one of the edge cases
2596
- ;; above that we have to handle properly. (Conversely, if they
2597
- ;; don't differ, then the native instruction's answer is the
2598
- ;; right one per CLIF semantics.)
2599
- (let ((max1 Xmm (x64_maxpd x y))
2600
- (max2 Xmm (x64_maxpd y x))
2601
- ;; Compute the XOR of the two maxima. In the case
2602
- ;; where we don't have a +/-0 mismatch or NaNs, then
2603
- ;; `min1` and `min2` are equal and this XOR is zero.
2604
- (max_xor Xmm (x64_xorpd max1 max2))
2605
- ;; OR the XOR into one of the original maxima. If they are
2606
- ;; equal, this does nothing. If max2 was NaN, its exponent
2607
- ;; bits were all-ones, so the xor's exponent bits were the
2608
- ;; complement of max1, and the OR of max1 and max_xor has
2609
- ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2610
- ;; its exponent bits were already all-ones, so the OR will
2611
- ;; be a NaN as well.
2612
- (max_blended_nan Xmm (x64_orpd max1 max_xor))
2613
- ;; Subtract the XOR. This ensures that if we had +0 and
2614
- ;; -0, we end up with +0.
2615
- (max_blended_nan_positive Xmm (x64_subpd max_blended_nan max_xor))
2616
- ;; `cmpps` with predicate index `3` is `cmpunordps`, or
2617
- ;; "compare unordered": it produces a true mask (all ones)
2618
- ;; in a given lane if the min is a NaN. We use this to
2619
- ;; generate a mask to ensure quiet NaNs.
2620
- (is_nan_mask Xmm (x64_cmppd max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2621
- ;; Shift the NaN mask down so that it covers just the
2622
- ;; fraction below the NaN signalling bit; we'll use this
2623
- ;; to mask off non-canonical NaN payloads.
2624
- ;;
2625
- ;; All-ones for NaN, shifted down to leave 13 top bits (1
2626
- ;; sign, 11 exponent, 1 QNaN bit that must remain set)
2627
- ;; cleared.
2628
- (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (xmi_imm 13)))
2629
- ;; Do a NAND, so that we retain every bit not set in
2630
- ;; `nan_fraction_mask`. This mask will be all zeroes (so
2631
- ;; we retain every bit) in non-NaN cases, and will have
2632
- ;; ones (so we clear those bits) in NaN-payload bits
2633
- ;; otherwise.
2634
- (final Xmm (x64_andnpd nan_fraction_mask max_blended_nan_positive)))
2635
- final))
2636
-
2637
- ;; Rules for `fmin_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2638
-
2639
- (rule (lower (has_type $F32 (fmin_pseudo x y)))
2640
- (x64_minss y x))
2641
- (rule (lower (has_type $F64 (fmin_pseudo x y)))
2642
- (x64_minsd y x))
2643
- (rule (lower (has_type $F32X4 (fmin_pseudo x y)))
2644
- (x64_minps y x))
2645
- (rule (lower (has_type $F64X2 (fmin_pseudo x y)))
2646
- (x64_minpd y x))
2647
-
2648
- ;; Rules for `fmax_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2649
-
2650
- (rule (lower (has_type $F32 (fmax_pseudo x y)))
2651
- (x64_maxss y x))
2652
- (rule (lower (has_type $F64 (fmax_pseudo x y)))
2653
- (x64_maxsd y x))
2654
- (rule (lower (has_type $F32X4 (fmax_pseudo x y)))
2655
- (x64_maxps y x))
2656
- (rule (lower (has_type $F64X2 (fmax_pseudo x y)))
2657
- (x64_maxpd y x))
2658
-
2659
- ;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2660
-
2661
- ;; Base case for fma is to call out to one of two libcalls. For vectors they
2662
- ;; need to be decomposed, handle each element individually, and then recomposed.
2663
-
2664
- (rule (lower (has_type $F32 (fma x y z)))
2665
- (libcall_3 (LibCall.FmaF32) x y z))
2666
- (rule (lower (has_type $F64 (fma x y z)))
2667
- (libcall_3 (LibCall.FmaF64) x y z))
2668
-
2669
- (rule (lower (has_type $F32X4 (fma x y z)))
2670
- (let (
2671
- (x Xmm (put_in_xmm x))
2672
- (y Xmm (put_in_xmm y))
2673
- (z Xmm (put_in_xmm z))
2674
- (x0 Xmm (libcall_3 (LibCall.FmaF32) x y z))
2675
- (x1 Xmm (libcall_3 (LibCall.FmaF32)
2676
- (x64_pshufd x 1)
2677
- (x64_pshufd y 1)
2678
- (x64_pshufd z 1)))
2679
- (x2 Xmm (libcall_3 (LibCall.FmaF32)
2680
- (x64_pshufd x 2)
2681
- (x64_pshufd y 2)
2682
- (x64_pshufd z 2)))
2683
- (x3 Xmm (libcall_3 (LibCall.FmaF32)
2684
- (x64_pshufd x 3)
2685
- (x64_pshufd y 3)
2686
- (x64_pshufd z 3)))
2687
-
2688
- (tmp Xmm (vec_insert_lane $F32X4 x0 x1 1))
2689
- (tmp Xmm (vec_insert_lane $F32X4 tmp x2 2))
2690
- (tmp Xmm (vec_insert_lane $F32X4 tmp x3 3))
2691
- )
2692
- tmp))
2693
- (rule (lower (has_type $F64X2 (fma x y z)))
2694
- (let (
2695
- (x Xmm (put_in_xmm x))
2696
- (y Xmm (put_in_xmm y))
2697
- (z Xmm (put_in_xmm z))
2698
- (x0 Xmm (libcall_3 (LibCall.FmaF64) x y z))
2699
- (x1 Xmm (libcall_3 (LibCall.FmaF64)
2700
- (x64_pshufd x 0xee)
2701
- (x64_pshufd y 0xee)
2702
- (x64_pshufd z 0xee)))
2703
- )
2704
- (vec_insert_lane $F64X2 x0 x1 1)))
2705
-
2706
-
2707
- ;; Special case for when the `fma` feature is active and a native instruction
2708
- ;; can be used.
2709
- (rule 1 (lower (has_type ty (fma x y z)))
2710
- (if-let $true (use_fma))
2711
- (fmadd ty x y z))
2712
-
2713
- (decl fmadd (Type Value Value Value) Xmm)
2714
- (decl fnmadd (Type Value Value Value) Xmm)
2715
-
2716
- ;; Base case. Note that this will automatically sink a load with `z`, the value
2717
- ;; to add.
2718
- (rule (fmadd ty x y z) (x64_vfmadd213 ty x y z))
2719
-
2720
- ;; Allow sinking loads with one of the two values being multiplied in addition
2721
- ;; to the value being added. Note that both x and y can be sunk here due to
2722
- ;; multiplication being commutative.
2723
- (rule 1 (fmadd ty (sinkable_load x) y z) (x64_vfmadd132 ty y z x))
2724
- (rule 2 (fmadd ty x (sinkable_load y) z) (x64_vfmadd132 ty x z y))
2725
-
2726
- ;; If one of the values being multiplied is negated then use a `vfnmadd*`
2727
- ;; instruction instead
2728
- (rule 3 (fmadd ty (fneg x) y z) (fnmadd ty x y z))
2729
- (rule 4 (fmadd ty x (fneg y) z) (fnmadd ty x y z))
2730
-
2731
- (rule (fnmadd ty x y z) (x64_vfnmadd213 ty x y z))
2732
- (rule 1 (fnmadd ty (sinkable_load x) y z) (x64_vfnmadd132 ty y z x))
2733
- (rule 2 (fnmadd ty x (sinkable_load y) z) (x64_vfnmadd132 ty x z y))
2734
-
2735
- ;; Like `fmadd` if one argument is negated switch which one is being codegen'd
2736
- (rule 3 (fnmadd ty (fneg x) y z) (fmadd ty x y z))
2737
- (rule 4 (fnmadd ty x (fneg y) z) (fmadd ty x y z))
2738
-
2739
- ;; Rules for `load*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2740
-
2741
- ;; In order to load a value from memory to a GPR register, we may need to extend
2742
- ;; the loaded value from 8-, 16-, or 32-bits to this backend's expected GPR
2743
- ;; width: 64 bits. Note that `ext_mode` will load 1-bit types (booleans) as
2744
- ;; 8-bit loads.
2745
- ;;
2746
- ;; By default, we zero-extend all sub-64-bit loads to a GPR.
2747
- (rule -4 (lower (has_type (and (fits_in_32 ty) (is_gpr_type _)) (load flags address offset)))
2748
- (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address offset)))
2749
- ;; But if we know that both the `from` and `to` are 64 bits, we simply load with
2750
- ;; no extension.
2751
- (rule -1 (lower (has_type (ty_int_ref_64 ty) (load flags address offset)))
2752
- (x64_mov (to_amode flags address offset)))
2753
- ;; Also, certain scalar loads have a specific `from` width and extension kind
2754
- ;; (signed -> `sx`, zeroed -> `zx`). We overwrite the high bits of the 64-bit
2755
- ;; GPR even if the `to` type is smaller (e.g., 16-bits).
2756
- (rule (lower (has_type (is_gpr_type ty) (uload8 flags address offset)))
2757
- (x64_movzx (ExtMode.BQ) (to_amode flags address offset)))
2758
- (rule (lower (has_type (is_gpr_type ty) (sload8 flags address offset)))
2759
- (x64_movsx (ExtMode.BQ) (to_amode flags address offset)))
2760
- (rule (lower (has_type (is_gpr_type ty) (uload16 flags address offset)))
2761
- (x64_movzx (ExtMode.WQ) (to_amode flags address offset)))
2762
- (rule (lower (has_type (is_gpr_type ty) (sload16 flags address offset)))
2763
- (x64_movsx (ExtMode.WQ) (to_amode flags address offset)))
2764
- (rule (lower (has_type (is_gpr_type ty) (uload32 flags address offset)))
2765
- (x64_movzx (ExtMode.LQ) (to_amode flags address offset)))
2766
- (rule (lower (has_type (is_gpr_type ty) (sload32 flags address offset)))
2767
- (x64_movsx (ExtMode.LQ) (to_amode flags address offset)))
2768
-
2769
- ;; To load to XMM registers, we use the x64-specific instructions for each type.
2770
- ;; For `$F32` and `$F64` this is important--we only want to load 32 or 64 bits.
2771
- ;; But for the 128-bit types, this is not strictly necessary for performance but
2772
- ;; might help with clarity during disassembly.
2773
- (rule (lower (has_type $F32 (load flags address offset)))
2774
- (x64_movss_load (to_amode flags address offset)))
2775
- (rule (lower (has_type $F64 (load flags address offset)))
2776
- (x64_movsd_load (to_amode flags address offset)))
2777
- (rule (lower (has_type $F32X4 (load flags address offset)))
2778
- (x64_movups_load (to_amode flags address offset)))
2779
- (rule (lower (has_type $F64X2 (load flags address offset)))
2780
- (x64_movupd_load (to_amode flags address offset)))
2781
- (rule -2 (lower (has_type (ty_vec128 ty) (load flags address offset)))
2782
- (x64_movdqu_load (to_amode flags address offset)))
2783
-
2784
- ;; We can load an I128 by doing two 64-bit loads.
2785
- (rule -3 (lower (has_type $I128
2786
- (load flags address offset)))
2787
- (let ((addr_lo Amode (to_amode flags address offset))
2788
- (addr_hi Amode (amode_offset addr_lo 8))
2789
- (value_lo Reg (x64_mov addr_lo))
2790
- (value_hi Reg (x64_mov addr_hi)))
2791
- (value_regs value_lo value_hi)))
2792
-
2793
- ;; We also include widening vector loads; these sign- or zero-extend each lane
2794
- ;; to the next wider width (e.g., 16x4 -> 32x4).
2795
- (rule 1 (lower (has_type $I16X8 (sload8x8 flags address offset)))
2796
- (if-let $true (use_sse41))
2797
- (x64_pmovsxbw (to_amode flags address offset)))
2798
- (rule 1 (lower (has_type $I16X8 (uload8x8 flags address offset)))
2799
- (if-let $true (use_sse41))
2800
- (x64_pmovzxbw (to_amode flags address offset)))
2801
- (rule 1 (lower (has_type $I32X4 (sload16x4 flags address offset)))
2802
- (if-let $true (use_sse41))
2803
- (x64_pmovsxwd (to_amode flags address offset)))
2804
- (rule 1 (lower (has_type $I32X4 (uload16x4 flags address offset)))
2805
- (if-let $true (use_sse41))
2806
- (x64_pmovzxwd (to_amode flags address offset)))
2807
- (rule 1 (lower (has_type $I64X2 (sload32x2 flags address offset)))
2808
- (if-let $true (use_sse41))
2809
- (x64_pmovsxdq (to_amode flags address offset)))
2810
- (rule 1 (lower (has_type $I64X2 (uload32x2 flags address offset)))
2811
- (if-let $true (use_sse41))
2812
- (x64_pmovzxdq (to_amode flags address offset)))
2813
-
2814
- (rule (lower (has_type $I16X8 (sload8x8 flags address offset)))
2815
- (lower_swiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
2816
- (rule (lower (has_type $I16X8 (uload8x8 flags address offset)))
2817
- (lower_uwiden_low $I16X8 (x64_movq_to_xmm (to_amode flags address offset))))
2818
- (rule (lower (has_type $I32X4 (sload16x4 flags address offset)))
2819
- (lower_swiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
2820
- (rule (lower (has_type $I32X4 (uload16x4 flags address offset)))
2821
- (lower_uwiden_low $I32X4 (x64_movq_to_xmm (to_amode flags address offset))))
2822
- (rule (lower (has_type $I64X2 (sload32x2 flags address offset)))
2823
- (lower_swiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
2824
- (rule (lower (has_type $I64X2 (uload32x2 flags address offset)))
2825
- (lower_uwiden_low $I64X2 (x64_movq_to_xmm (to_amode flags address offset))))
2826
-
2827
- ;; Rules for `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2828
-
2829
- ;; 8-, 16-, 32- and 64-bit GPR stores.
2830
- (rule -2 (lower (store flags
2831
- value @ (value_type (is_gpr_type ty))
2832
- address
2833
- offset))
2834
- (side_effect
2835
- (x64_movrm ty (to_amode flags address offset) value)))
2836
-
2837
- ;; Explicit 8/16/32-bit opcodes.
2838
- (rule (lower (istore8 flags value address offset))
2839
- (side_effect
2840
- (x64_movrm $I8 (to_amode flags address offset) value)))
2841
- (rule (lower (istore16 flags value address offset))
2842
- (side_effect
2843
- (x64_movrm $I16 (to_amode flags address offset) value)))
2844
- (rule (lower (istore32 flags value address offset))
2845
- (side_effect
2846
- (x64_movrm $I32 (to_amode flags address offset) value)))
2847
-
2848
- ;; F32 stores of values in XMM registers.
2849
- (rule 1 (lower (store flags
2850
- value @ (value_type $F32)
2851
- address
2852
- offset))
2853
- (side_effect
2854
- (x64_movss_store (to_amode flags address offset) value)))
2855
-
2856
- ;; F64 stores of values in XMM registers.
2857
- (rule 1 (lower (store flags
2858
- value @ (value_type $F64)
2859
- address
2860
- offset))
2861
- (side_effect
2862
- (x64_movsd_store (to_amode flags address offset) value)))
2863
-
2864
- ;; Stores of F32X4 vectors.
2865
- (rule 1 (lower (store flags
2866
- value @ (value_type $F32X4)
2867
- address
2868
- offset))
2869
- (side_effect
2870
- (x64_movups_store (to_amode flags address offset) value)))
2871
-
2872
- ;; Stores of F64X2 vectors.
2873
- (rule 1 (lower (store flags
2874
- value @ (value_type $F64X2)
2875
- address
2876
- offset))
2877
- (side_effect
2878
- (x64_movupd_store (to_amode flags address offset) value)))
2879
-
2880
- ;; Stores of all other 128-bit vector types with integer lanes.
2881
- (rule -1 (lower (store flags
2882
- value @ (value_type (ty_vec128_int _))
2883
- address
2884
- offset))
2885
- (side_effect
2886
- (x64_movdqu_store (to_amode flags address offset) value)))
2887
-
2888
- ;; Stores of I128 values: store the two 64-bit halves separately.
2889
- (rule 0 (lower (store flags
2890
- value @ (value_type $I128)
2891
- address
2892
- offset))
2893
- (let ((value_reg ValueRegs value)
2894
- (value_lo Gpr (value_regs_get_gpr value_reg 0))
2895
- (value_hi Gpr (value_regs_get_gpr value_reg 1))
2896
- (addr_lo Amode (to_amode flags address offset))
2897
- (addr_hi Amode (amode_offset addr_lo 8)))
2898
- (side_effect
2899
- (side_effect_concat
2900
- (x64_movrm $I64 addr_lo value_lo)
2901
- (x64_movrm $I64 addr_hi value_hi)))))
2902
-
2903
- ;; Slightly optimize the extraction of the first lane from a vector which is
2904
- ;; stored in memory. In the case the first lane specifically is selected the
2905
- ;; standard `movss` and `movsd` instructions can be used as-if we're storing a
2906
- ;; f32 or f64 despite the source perhaps being an integer vector since the
2907
- ;; result of the instruction is the same.
2908
- (rule 2 (lower (store flags
2909
- (has_type $F32 (extractlane value (u8_from_uimm8 0)))
2910
- address
2911
- offset))
2912
- (side_effect
2913
- (x64_movss_store (to_amode flags address offset) value)))
2914
- (rule 2 (lower (store flags
2915
- (has_type $F64 (extractlane value (u8_from_uimm8 0)))
2916
- address
2917
- offset))
2918
- (side_effect
2919
- (x64_movsd_store (to_amode flags address offset) value)))
2920
- (rule 2 (lower (store flags
2921
- (has_type $I8 (extractlane value (u8_from_uimm8 n)))
2922
- address
2923
- offset))
2924
- (if-let $true (use_sse41))
2925
- (side_effect
2926
- (x64_pextrb_store (to_amode flags address offset) value n)))
2927
- (rule 2 (lower (store flags
2928
- (has_type $I16 (extractlane value (u8_from_uimm8 n)))
2929
- address
2930
- offset))
2931
- (side_effect
2932
- (x64_pextrw_store (to_amode flags address offset) value n)))
2933
- (rule 2 (lower (store flags
2934
- (has_type $I32 (extractlane value (u8_from_uimm8 n)))
2935
- address
2936
- offset))
2937
- (if-let $true (use_sse41))
2938
- (side_effect
2939
- (x64_pextrd_store (to_amode flags address offset) value n)))
2940
- (rule 2 (lower (store flags
2941
- (has_type $I64 (extractlane value (u8_from_uimm8 n)))
2942
- address
2943
- offset))
2944
- (if-let $true (use_sse41))
2945
- (side_effect
2946
- (x64_pextrq_store (to_amode flags address offset) value n)))
2947
-
2948
- ;; Rules for `load*` + ALU op + `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2949
-
2950
- ;; Add mem, reg
2951
- (rule 3 (lower
2952
- (store flags
2953
- (has_type (ty_32_or_64 ty)
2954
- (iadd (and
2955
- (sinkable_load sink)
2956
- (load flags addr offset))
2957
- src2))
2958
- addr
2959
- offset))
2960
- (let ((_ RegMemImm sink))
2961
- (side_effect
2962
- (x64_add_mem ty (to_amode flags addr offset) src2))))
2963
-
2964
- ;; Add mem, reg with args swapped
2965
- (rule 2 (lower
2966
- (store flags
2967
- (has_type (ty_32_or_64 ty)
2968
- (iadd src2
2969
- (and
2970
- (sinkable_load sink)
2971
- (load flags addr offset))))
2972
- addr
2973
- offset))
2974
- (let ((_ RegMemImm sink))
2975
- (side_effect
2976
- (x64_add_mem ty (to_amode flags addr offset) src2))))
2977
-
2978
- ;; Sub mem, reg
2979
- (rule 2 (lower
2980
- (store flags
2981
- (has_type (ty_32_or_64 ty)
2982
- (isub (and
2983
- (sinkable_load sink)
2984
- (load flags addr offset))
2985
- src2))
2986
- addr
2987
- offset))
2988
- (let ((_ RegMemImm sink))
2989
- (side_effect
2990
- (x64_sub_mem ty (to_amode flags addr offset) src2))))
2991
-
2992
- ;; And mem, reg
2993
- (rule 3 (lower
2994
- (store flags
2995
- (has_type (ty_32_or_64 ty)
2996
- (band (and
2997
- (sinkable_load sink)
2998
- (load flags addr offset))
2999
- src2))
3000
- addr
3001
- offset))
3002
- (let ((_ RegMemImm sink))
3003
- (side_effect
3004
- (x64_and_mem ty (to_amode flags addr offset) src2))))
3005
-
3006
- ;; And mem, reg with args swapped
3007
- (rule 2 (lower
3008
- (store flags
3009
- (has_type (ty_32_or_64 ty)
3010
- (band src2
3011
- (and
3012
- (sinkable_load sink)
3013
- (load flags addr offset))))
3014
- addr
3015
- offset))
3016
- (let ((_ RegMemImm sink))
3017
- (side_effect
3018
- (x64_and_mem ty (to_amode flags addr offset) src2))))
3019
-
3020
- ;; Or mem, reg
3021
- (rule 3 (lower
3022
- (store flags
3023
- (has_type (ty_32_or_64 ty)
3024
- (bor (and
3025
- (sinkable_load sink)
3026
- (load flags addr offset))
3027
- src2))
3028
- addr
3029
- offset))
3030
- (let ((_ RegMemImm sink))
3031
- (side_effect
3032
- (x64_or_mem ty (to_amode flags addr offset) src2))))
3033
-
3034
- ;; Or mem, reg with args swapped
3035
- (rule 2 (lower
3036
- (store flags
3037
- (has_type (ty_32_or_64 ty)
3038
- (bor src2
3039
- (and
3040
- (sinkable_load sink)
3041
- (load flags addr offset))))
3042
- addr
3043
- offset))
3044
- (let ((_ RegMemImm sink))
3045
- (side_effect
3046
- (x64_or_mem ty (to_amode flags addr offset) src2))))
3047
-
3048
- ;; Xor mem, reg
3049
- (rule 3 (lower
3050
- (store flags
3051
- (has_type (ty_32_or_64 ty)
3052
- (bxor (and
3053
- (sinkable_load sink)
3054
- (load flags addr offset))
3055
- src2))
3056
- addr
3057
- offset))
3058
- (let ((_ RegMemImm sink))
3059
- (side_effect
3060
- (x64_xor_mem ty (to_amode flags addr offset) src2))))
3061
-
3062
- ;; Xor mem, reg with args swapped
3063
- (rule 2 (lower
3064
- (store flags
3065
- (has_type (ty_32_or_64 ty)
3066
- (bxor src2
3067
- (and
3068
- (sinkable_load sink)
3069
- (load flags addr offset))))
3070
- addr
3071
- offset))
3072
- (let ((_ RegMemImm sink))
3073
- (side_effect
3074
- (x64_xor_mem ty (to_amode flags addr offset) src2))))
3075
-
3076
- ;; Rules for `fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3077
-
3078
- (rule (lower (fence))
3079
- (side_effect (x64_mfence)))
3080
-
3081
- ;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3082
-
3083
- (rule (lower (func_addr (func_ref_data _ extname dist)))
3084
- (load_ext_name extname 0 dist))
3085
-
3086
- ;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3087
-
3088
- (rule (lower (symbol_value (symbol_value_data extname dist offset)))
3089
- (load_ext_name extname offset dist))
3090
-
3091
- ;; Rules for `atomic_load` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3092
-
3093
- ;; This is a normal load. The x86-TSO memory model provides sufficient
3094
- ;; sequencing to satisfy the CLIF synchronisation requirements for `AtomicLoad`
3095
- ;; without the need for any fence instructions.
3096
- ;;
3097
- ;; As described in the `atomic_load` documentation, this lowering is only valid
3098
- ;; for I8, I16, I32, and I64. The sub-64-bit types are zero extended, as with a
3099
- ;; normal load.
3100
- (rule 1 (lower (has_type $I64 (atomic_load flags address)))
3101
- (x64_mov (to_amode flags address (zero_offset))))
3102
- (rule (lower (has_type (and (fits_in_32 ty) (ty_int _)) (atomic_load flags address)))
3103
- (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address (zero_offset))))
3104
-
3105
- ;; Rules for `atomic_store` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3106
-
3107
- ;; This is a normal store followed by an `mfence` instruction. As described in
3108
- ;; the `atomic_load` documentation, this lowering is only valid for I8, I16,
3109
- ;; I32, and I64.
3110
- (rule (lower (atomic_store flags
3111
- value @ (value_type (and (fits_in_64 ty) (ty_int _)))
3112
- address))
3113
- (side_effect (side_effect_concat
3114
- (x64_movrm ty (to_amode flags address (zero_offset)) value)
3115
- (x64_mfence))))
3116
-
3117
- ;; Rules for `atomic_cas` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3118
-
3119
- (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3120
- (atomic_cas flags address expected replacement)))
3121
- (x64_cmpxchg ty expected replacement (to_amode flags address (zero_offset))))
3122
-
3123
- ;; Rules for `atomic_rmw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3124
-
3125
- ;; This is a simple, general-case atomic update, based on a loop involving
3126
- ;; `cmpxchg`. Note that we could do much better than this in the case where the
3127
- ;; old value at the location (that is to say, the SSA `Value` computed by this
3128
- ;; CLIF instruction) is not required. In that case, we could instead implement
3129
- ;; this using a single `lock`-prefixed x64 read-modify-write instruction. Also,
3130
- ;; even in the case where the old value is required, for the `add` and `sub`
3131
- ;; cases, we can use the single instruction `lock xadd`. However, those
3132
- ;; improvements have been left for another day. TODO: filed as
3133
- ;; https://github.com/bytecodealliance/wasmtime/issues/2153.
3134
-
3135
- (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
3136
- (atomic_rmw flags op address input)))
3137
- (x64_atomic_rmw_seq ty op (to_amode flags address (zero_offset)) input))
3138
-
3139
- ;; Rules for `call` and `call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3140
-
3141
- (rule (lower (call (func_ref_data sig_ref extname dist) inputs))
3142
- (gen_call sig_ref extname dist inputs))
3143
-
3144
- (rule (lower (call_indirect sig_ref val inputs))
3145
- (gen_call_indirect sig_ref val inputs))
3146
-
3147
- ;;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;
3148
-
3149
- (rule (lower (get_frame_pointer))
3150
- (x64_rbp))
3151
-
3152
- (rule (lower (get_stack_pointer))
3153
- (x64_rsp))
3154
-
3155
- (rule (lower (get_return_address))
3156
- (x64_load $I64
3157
- (Amode.ImmReg 8 (x64_rbp) (mem_flags_trusted))
3158
- (ExtKind.None)))
3159
-
3160
- ;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3161
-
3162
- (rule (lower_branch (jump _) (single_target target))
3163
- (emit_side_effect (jmp_known target)))
3164
-
3165
- ;; Rules for `brif` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3166
-
3167
- (rule 2 (lower_branch (brif (maybe_uextend (icmp cc a b)) _ _) (two_targets then else))
3168
- (emit_side_effect (jmp_cond_icmp (emit_cmp cc a b) then else)))
3169
-
3170
- (rule 2 (lower_branch (brif (maybe_uextend (fcmp cc a b)) _ _) (two_targets then else))
3171
- (emit_side_effect (jmp_cond_fcmp (emit_fcmp cc a b) then else)))
3172
-
3173
- (rule 1 (lower_branch (brif val @ (value_type $I128) _ _)
3174
- (two_targets then else))
3175
- (emit_side_effect (jmp_cond_icmp (cmp_zero_i128 (CC.Z) val) then else)))
3176
-
3177
- (rule (lower_branch (brif val @ (value_type (ty_int_bool_or_ref)) _ _)
3178
- (two_targets then else))
3179
- (emit_side_effect (with_flags_side_effect
3180
- (cmp_zero_int_bool_ref val)
3181
- (jmp_cond (CC.NZ) then else))))
3182
-
3183
-
3184
- ;; Compare an I128 value to zero, returning a flags result suitable for making a
3185
- ;; jump decision. The comparison is implemented as `(hi == 0) && (low == 0)`,
3186
- ;; and the result can be interpreted as follows
3187
- ;; * CC.Z indicates that the value was non-zero, as one or both of the halves of
3188
- ;; the value were non-zero
3189
- ;; * CC.NZ indicates that both halves of the value were 0
3190
- (decl cmp_zero_i128 (CC ValueRegs) IcmpCondResult)
3191
- (rule (cmp_zero_i128 (cc_nz_or_z cc) val)
3192
- (let ((lo Gpr (value_regs_get_gpr val 0))
3193
- (hi Gpr (value_regs_get_gpr val 1))
3194
- (lo_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) lo)
3195
- (x64_setcc (CC.Z))))
3196
- (hi_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) hi)
3197
- (x64_setcc (CC.Z)))))
3198
- (icmp_cond_result (x64_test (OperandSize.Size8) lo_z hi_z) cc)))
3199
-
3200
-
3201
- (decl cmp_zero_int_bool_ref (Value) ProducesFlags)
3202
- (rule (cmp_zero_int_bool_ref val @ (value_type ty))
3203
- (let ((size OperandSize (raw_operand_size_of_type ty))
3204
- (src Gpr val))
3205
- (x64_test size src src)))
3206
-
3207
- ;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3208
-
3209
- (rule (lower_branch (br_table idx @ (value_type ty) _) (jump_table_targets default_target jt_targets))
3210
- (let ((size OperandSize (raw_operand_size_of_type ty))
3211
- (jt_size u32 (jump_table_size jt_targets))
3212
- (size_reg Reg (imm ty (u32_as_u64 jt_size)))
3213
- (idx_reg Gpr (extend_to_gpr idx $I64 (ExtendKind.Zero)))
3214
- (clamped_idx Reg (with_flags_reg
3215
- (x64_cmp size size_reg idx_reg)
3216
- (cmove ty (CC.B) idx_reg size_reg))))
3217
- (emit_side_effect (jmp_table_seq ty clamped_idx default_target jt_targets))))
3218
-
3219
- ;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3220
-
3221
- (rule (lower (select_spectre_guard (icmp cc a b) x y))
3222
- (select_icmp (emit_cmp cc a b) x y))
3223
-
3224
- (rule -1 (lower (has_type ty (select_spectre_guard c @ (value_type (fits_in_64 a_ty)) x y)))
3225
- (let ((size OperandSize (raw_operand_size_of_type a_ty))
3226
- (gpr_c Gpr (put_in_gpr c)))
3227
- (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
3228
-
3229
- (rule -2 (lower (has_type ty (select_spectre_guard c @ (value_type $I128) x y)))
3230
- (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
3231
- (select_icmp cond_result x y)))
3232
-
3233
- ;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3234
-
3235
- (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I8))))
3236
- (x64_cvtsi2ss $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3237
-
3238
- (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I16))))
3239
- (x64_cvtsi2ss $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3240
-
3241
- (rule 1 (lower (has_type $F32 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3242
- (x64_cvtsi2ss ty a))
3243
-
3244
- (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I8))))
3245
- (x64_cvtsi2sd $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3246
-
3247
- (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I16))))
3248
- (x64_cvtsi2sd $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
3249
-
3250
- (rule 1 (lower (has_type $F64 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
3251
- (x64_cvtsi2sd ty a))
3252
-
3253
- (rule 0 (lower (fcvt_from_sint a @ (value_type $I32X4)))
3254
- (x64_cvtdq2ps a))
3255
-
3256
- ;; Rules for `fcvt_low_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3257
-
3258
- (rule (lower (fcvt_low_from_sint a))
3259
- (x64_cvtdq2pd a))
3260
-
3261
- ;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3262
-
3263
- (rule 1 (lower (has_type $F32 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3264
- (x64_cvtsi2ss $I64 (extend_to_gpr val $I64 (ExtendKind.Zero))))
3265
-
3266
- (rule 1 (lower (has_type $F64 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
3267
- (x64_cvtsi2sd $I64 (extend_to_gpr val $I64 (ExtendKind.Zero))))
3268
-
3269
- (rule (lower (has_type ty (fcvt_from_uint val @ (value_type $I64))))
3270
- (cvt_u64_to_float_seq ty val))
3271
-
3272
- ;; Algorithm uses unpcklps to help create a float that is equivalent
3273
- ;; 0x1.0p52 + double(src). 0x1.0p52 is unique because at this exponent
3274
- ;; every value of the mantissa represents a corresponding uint32 number.
3275
- ;; When we subtract 0x1.0p52 we are left with double(src).
3276
- (rule 1 (lower (has_type $F64X2 (fcvt_from_uint (uwiden_low val @ (value_type $I32X4)))))
3277
- (let ((uint_mask XmmMem (fcvt_uint_mask_const))
3278
- (res Xmm (x64_unpcklps val uint_mask))
3279
- (uint_mask_high XmmMem (fcvt_uint_mask_high_const)))
3280
- (x64_subpd res uint_mask_high)))
3281
-
3282
- ;; When AVX512VL and AVX512F are available,
3283
- ;; `fcvt_from_uint` can be lowered to a single instruction.
3284
- (rule 2 (lower (has_type $F32X4 (fcvt_from_uint src)))
3285
- (if-let $true (use_avx512vl_simd))
3286
- (if-let $true (use_avx512f_simd))
3287
- (x64_vcvtudq2ps src))
3288
-
3289
- ;; Converting packed unsigned integers to packed floats
3290
- ;; requires a few steps. There is no single instruction
3291
- ;; lowering for converting unsigned floats but there is for
3292
- ;; converting packed signed integers to float (cvtdq2ps). In
3293
- ;; the steps below we isolate the upper half (16 bits) and
3294
- ;; lower half (16 bits) of each lane and then we convert
3295
- ;; each half separately using cvtdq2ps meant for signed
3296
- ;; integers. In order for this to work for the upper half
3297
- ;; bits we must shift right by 1 (divide by 2) these bits in
3298
- ;; order to ensure the most significant bit is 0 not signed,
3299
- ;; and then after the conversion we double the value.
3300
- ;; Finally we add the converted values where addition will
3301
- ;; correctly round.
3302
- ;;
3303
- ;; Sequence:
3304
- ;; -> A = 0xffffffff
3305
- ;; -> Ah = 0xffff0000
3306
- ;; -> Al = 0x0000ffff
3307
- ;; -> Convert(Al) // Convert int to float
3308
- ;; -> Ah = Ah >> 1 // Shift right 1 to assure Ah conversion isn't treated as signed
3309
- ;; -> Convert(Ah) // Convert .. with no loss of significant digits from previous shift
3310
- ;; -> Ah = Ah + Ah // Double Ah to account for shift right before the conversion.
3311
- ;; -> dst = Ah + Al // Add the two floats together
3312
- (rule 1 (lower (has_type $F32X4 (fcvt_from_uint val)))
3313
- (let ((a Xmm val)
3314
-
3315
- ;; get the low 16 bits
3316
- (a_lo Xmm (x64_pslld a (xmi_imm 16)))
3317
- (a_lo Xmm (x64_psrld a_lo (xmi_imm 16)))
3318
-
3319
- ;; get the high 16 bits
3320
- (a_hi Xmm (x64_psubd a a_lo))
3321
-
3322
- ;; convert the low 16 bits
3323
- (a_lo Xmm (x64_cvtdq2ps a_lo))
3324
-
3325
- ;; shift the high bits by 1, convert, and double to get the correct
3326
- ;; value
3327
- (a_hi Xmm (x64_psrld a_hi (xmi_imm 1)))
3328
- (a_hi Xmm (x64_cvtdq2ps a_hi))
3329
- (a_hi Xmm (x64_addps a_hi a_hi)))
3330
-
3331
- ;; add together the two converted values
3332
- (x64_addps a_hi a_lo)))
3333
-
3334
- ;; Rules for `fcvt_to_uint` and `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3335
-
3336
- (rule (lower (has_type out_ty (fcvt_to_uint val @ (value_type (ty_scalar_float _)))))
3337
- (cvt_float_to_uint_seq out_ty val $false))
3338
-
3339
- (rule (lower (has_type out_ty (fcvt_to_uint_sat val @ (value_type (ty_scalar_float _)))))
3340
- (cvt_float_to_uint_seq out_ty val $true))
3341
-
3342
- (rule (lower (has_type out_ty (fcvt_to_sint val @ (value_type (ty_scalar_float _)))))
3343
- (cvt_float_to_sint_seq out_ty val $false))
3344
-
3345
- (rule (lower (has_type out_ty (fcvt_to_sint_sat val @ (value_type (ty_scalar_float _)))))
3346
- (cvt_float_to_sint_seq out_ty val $true))
3347
-
3348
- ;; The x64 backend currently only supports these two type combinations.
3349
- (rule 1 (lower (has_type $I32X4 (fcvt_to_sint_sat val @ (value_type $F32X4))))
3350
- (let ((src Xmm val)
3351
-
3352
- ;; Sets tmp to zero if float is NaN
3353
- (tmp Xmm (x64_cmpps src src (FcmpImm.Equal)))
3354
- (dst Xmm (x64_andps src tmp))
3355
-
3356
- ;; Sets top bit of tmp if float is positive
3357
- ;; Setting up to set top bit on negative float values
3358
- (tmp Xmm (x64_pxor tmp dst))
3359
-
3360
- ;; Convert the packed float to packed doubleword.
3361
- (dst Xmm (x64_cvttps2dq dst))
3362
-
3363
- ;; Set top bit only if < 0
3364
- (tmp Xmm (x64_pand dst tmp))
3365
- (tmp Xmm (x64_psrad tmp (xmi_imm 31))))
3366
-
3367
- ;; On overflow 0x80000000 is returned to a lane.
3368
- ;; Below sets positive overflow lanes to 0x7FFFFFFF
3369
- ;; Keeps negative overflow lanes as is.
3370
- (x64_pxor tmp dst)))
3371
-
3372
- ;; The algorithm for converting floats to unsigned ints is a little tricky. The
3373
- ;; complication arises because we are converting from a signed 64-bit int with a positive
3374
- ;; integer range from 1..INT_MAX (0x1..0x7FFFFFFF) to an unsigned integer with an extended
3375
- ;; range from (INT_MAX+1)..UINT_MAX. It's this range from (INT_MAX+1)..UINT_MAX
3376
- ;; (0x80000000..0xFFFFFFFF) that needs to be accounted for as a special case since our
3377
- ;; conversion instruction (cvttps2dq) only converts as high as INT_MAX (0x7FFFFFFF), but
3378
- ;; which conveniently setting underflows and overflows (smaller than MIN_INT or larger than
3379
- ;; MAX_INT) to be INT_MAX+1 (0x80000000). Nothing that the range (INT_MAX+1)..UINT_MAX includes
3380
- ;; precisely INT_MAX values we can correctly account for and convert every value in this range
3381
- ;; if we simply subtract INT_MAX+1 before doing the cvttps2dq conversion. After the subtraction
3382
- ;; every value originally (INT_MAX+1)..UINT_MAX is now the range (0..INT_MAX).
3383
- ;; After the conversion we add INT_MAX+1 back to this converted value, noting again that
3384
- ;; values we are trying to account for were already set to INT_MAX+1 during the original conversion.
3385
- ;; We simply have to create a mask and make sure we are adding together only the lanes that need
3386
- ;; to be accounted for. Digesting it all the steps then are:
3387
- ;;
3388
- ;; Step 1 - Account for NaN and negative floats by setting these src values to zero.
3389
- ;; Step 2 - Make a copy (tmp1) of the src value since we need to convert twice for
3390
- ;; reasons described above.
3391
- ;; Step 3 - Convert the original src values. This will convert properly all floats up to INT_MAX
3392
- ;; Step 4 - Subtract INT_MAX from the copy set (tmp1). Note, all zero and negative values are those
3393
- ;; values that were originally in the range (0..INT_MAX). This will come in handy during
3394
- ;; step 7 when we zero negative lanes.
3395
- ;; Step 5 - Create a bit mask for tmp1 that will correspond to all lanes originally less than
3396
- ;; UINT_MAX that are now less than INT_MAX thanks to the subtraction.
3397
- ;; Step 6 - Convert the second set of values (tmp1)
3398
- ;; Step 7 - Prep the converted second set by zeroing out negative lanes (these have already been
3399
- ;; converted correctly with the first set) and by setting overflow lanes to 0x7FFFFFFF
3400
- ;; as this will allow us to properly saturate overflow lanes when adding to 0x80000000
3401
- ;; Step 8 - Add the orginal converted src and the converted tmp1 where float values originally less
3402
- ;; than and equal to INT_MAX will be unchanged, float values originally between INT_MAX+1 and
3403
- ;; UINT_MAX will add together (INT_MAX) + (SRC - INT_MAX), and float values originally
3404
- ;; greater than UINT_MAX will be saturated to UINT_MAX (0xFFFFFFFF) after adding (0x8000000 + 0x7FFFFFFF).
3405
- ;;
3406
- ;;
3407
- ;; The table below illustrates the result after each step where it matters for the converted set.
3408
- ;; Note the original value range (original src set) is the final dst in Step 8:
3409
- ;;
3410
- ;; Original src set:
3411
- ;; | Original Value Range | Step 1 | Step 3 | Step 8 |
3412
- ;; | -FLT_MIN..FLT_MAX | 0.0..FLT_MAX | 0..INT_MAX(w/overflow) | 0..UINT_MAX(w/saturation) |
3413
- ;;
3414
- ;; Copied src set (tmp1):
3415
- ;; | Step 2 | Step 4 |
3416
- ;; | 0.0..FLT_MAX | (0.0-(INT_MAX+1))..(FLT_MAX-(INT_MAX+1)) |
3417
- ;;
3418
- ;; | Step 6 | Step 7 |
3419
- ;; | (0-(INT_MAX+1))..(UINT_MAX-(INT_MAX+1))(w/overflow) | ((INT_MAX+1)-(INT_MAX+1))..(INT_MAX+1) |
3420
- (rule 1 (lower (has_type $I32X4 (fcvt_to_uint_sat val @ (value_type $F32X4))))
3421
- (let ((src Xmm val)
3422
-
3423
- ;; Converting to unsigned int so if float src is negative or NaN
3424
- ;; will first set to zero.
3425
- (tmp2 Xmm (xmm_zero $F32X4))
3426
- (dst Xmm (x64_maxps src tmp2))
3427
-
3428
- ;; Set tmp2 to INT_MAX+1. It is important to note here that after it looks
3429
- ;; like we are only converting INT_MAX (0x7FFFFFFF) but in fact because
3430
- ;; single precision IEEE-754 floats can only accurately represent contingous
3431
- ;; integers up to 2^23 and outside of this range it rounds to the closest
3432
- ;; integer that it can represent. In the case of INT_MAX, this value gets
3433
- ;; represented as 0x4f000000 which is the integer value (INT_MAX+1).
3434
- (tmp2 Xmm (x64_pcmpeqd tmp2 tmp2))
3435
- (tmp2 Xmm (x64_psrld tmp2 (xmi_imm 1)))
3436
- (tmp2 Xmm (x64_cvtdq2ps tmp2))
3437
-
3438
- ;; Make a copy of these lanes and then do the first conversion.
3439
- ;; Overflow lanes greater than the maximum allowed signed value will
3440
- ;; set to 0x80000000. Negative and NaN lanes will be 0x0
3441
- (tmp1 Xmm dst)
3442
- (dst Xmm (x64_cvttps2dq dst))
3443
-
3444
- ;; Set lanes to src - max_signed_int
3445
- (tmp1 Xmm (x64_subps tmp1 tmp2))
3446
-
3447
- ;; Create mask for all positive lanes to saturate (i.e. greater than
3448
- ;; or equal to the maxmimum allowable unsigned int).
3449
- (tmp2 Xmm (x64_cmpps tmp2 tmp1 (FcmpImm.LessThanOrEqual)))
3450
-
3451
- ;; Convert those set of lanes that have the max_signed_int factored out.
3452
- (tmp1 Xmm (x64_cvttps2dq tmp1))
3453
-
3454
- ;; Prepare converted lanes by zeroing negative lanes and prepping lanes
3455
- ;; that have positive overflow (based on the mask) by setting these lanes
3456
- ;; to 0x7FFFFFFF
3457
- (tmp1 Xmm (x64_pxor tmp1 tmp2))
3458
- (tmp2 Xmm (xmm_zero $I32X4))
3459
- (tmp1 Xmm (lower_vec_smax $I32X4 tmp1 tmp2)))
3460
-
3461
- ;; Add this second set of converted lanes to the original to properly handle
3462
- ;; values greater than max signed int.
3463
- (x64_paddd tmp1 dst)))
3464
-
3465
- ;; Rules for `x86_cvtt2dq` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3466
-
3467
- (rule (lower (has_type $I32X4 (x86_cvtt2dq val @ (value_type $F32X4))))
3468
- (x64_cvttps2dq val))
3469
-
3470
- ;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3471
-
3472
- (rule (lower (has_type $I16X8 (iadd_pairwise x y)))
3473
- (x64_phaddw x y))
3474
-
3475
- (rule (lower (has_type $I32X4 (iadd_pairwise x y)))
3476
- (x64_phaddd x y))
3477
-
3478
- ;; special case for the `i16x8.extadd_pairwise_i8x16_s` wasm instruction
3479
- (rule 1 (lower
3480
- (has_type $I16X8 (iadd_pairwise
3481
- (swiden_low val @ (value_type $I8X16))
3482
- (swiden_high val))))
3483
- (let ((mul_const Xmm (x64_xmm_load_const $I8X16 (iadd_pairwise_mul_const_16))))
3484
- (x64_pmaddubsw mul_const val)))
3485
-
3486
- ;; special case for the `i32x4.extadd_pairwise_i16x8_s` wasm instruction
3487
- (rule 1 (lower
3488
- (has_type $I32X4 (iadd_pairwise
3489
- (swiden_low val @ (value_type $I16X8))
3490
- (swiden_high val))))
3491
- (let ((mul_const XmmMem (iadd_pairwise_mul_const_32)))
3492
- (x64_pmaddwd val mul_const)))
3493
-
3494
- ;; special case for the `i16x8.extadd_pairwise_i8x16_u` wasm instruction
3495
- (rule 1 (lower
3496
- (has_type $I16X8 (iadd_pairwise
3497
- (uwiden_low val @ (value_type $I8X16))
3498
- (uwiden_high val))))
3499
- (let ((mul_const XmmMem (iadd_pairwise_mul_const_16)))
3500
- (x64_pmaddubsw val mul_const)))
3501
-
3502
- ;; special case for the `i32x4.extadd_pairwise_i16x8_u` wasm instruction
3503
- (rule 1 (lower
3504
- (has_type $I32X4 (iadd_pairwise
3505
- (uwiden_low val @ (value_type $I16X8))
3506
- (uwiden_high val))))
3507
- (let ((xor_const XmmMem (iadd_pairwise_xor_const_32))
3508
- (dst Xmm (x64_pxor val xor_const))
3509
-
3510
- (madd_const XmmMem (iadd_pairwise_mul_const_32))
3511
- (dst Xmm (x64_pmaddwd dst madd_const))
3512
-
3513
- (addd_const XmmMem (iadd_pairwise_addd_const_32)))
3514
- (x64_paddd dst addd_const)))
3515
-
3516
- ;; special case for the `i32x4.dot_i16x8_s` wasm instruction
3517
- (rule 1 (lower
3518
- (has_type $I32X4 (iadd_pairwise
3519
- (imul (swiden_low x) (swiden_low y))
3520
- (imul (swiden_high x) (swiden_high y)))))
3521
- (x64_pmaddwd x y))
3522
-
3523
- ;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3524
-
3525
- ;; With SSE4.1 use the `pmovsx*` instructions for this
3526
- (rule 1 (lower (has_type $I16X8 (swiden_low val @ (value_type $I8X16))))
3527
- (if-let $true (use_sse41))
3528
- (x64_pmovsxbw val))
3529
- (rule 1 (lower (has_type $I32X4 (swiden_low val @ (value_type $I16X8))))
3530
- (if-let $true (use_sse41))
3531
- (x64_pmovsxwd val))
3532
- (rule 1 (lower (has_type $I64X2 (swiden_low val @ (value_type $I32X4))))
3533
- (if-let $true (use_sse41))
3534
- (x64_pmovsxdq val))
3535
-
3536
- (rule (lower (has_type ty (swiden_low val))) (lower_swiden_low ty val))
3537
-
3538
- (decl lower_swiden_low (Type Xmm) Xmm)
3539
-
3540
- ;; Duplicate the low lanes next to each other, then perform a wider shift-right
3541
- ;; by the low lane width to move the upper of each pair back into the lower lane
3542
- ;; of each pair, achieving the widening of the lower lanes.
3543
- (rule (lower_swiden_low $I16X8 val)
3544
- (x64_psraw (x64_punpcklbw val val) (xmi_imm 8)))
3545
- (rule (lower_swiden_low $I32X4 val)
3546
- (x64_psrad (x64_punpcklwd val val) (xmi_imm 16)))
3547
-
3548
- ;; Generate the sign-extended halves with a `val < 0` comparison (expressed
3549
- ;; reversed here), then interleave the low 32-bit halves to create the full
3550
- ;; 64-bit results.
3551
- (rule (lower_swiden_low $I64X2 val)
3552
- (let ((tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3553
- (x64_punpckldq val tmp)))
3554
-
3555
- ;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3556
-
3557
- ;; Similar to `swiden_low` with SSE4.1 except that the upper lanes are moved
3558
- ;; to the lower lanes first.
3559
- (rule 1 (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3560
- (if-let $true (use_sse41))
3561
- (let ((x Xmm val))
3562
- (x64_pmovsxbw (x64_palignr x x 8))))
3563
- (rule 1 (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3564
- (if-let $true (use_sse41))
3565
- (let ((x Xmm val))
3566
- (x64_pmovsxwd (x64_palignr x x 8))))
3567
- (rule 1 (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3568
- (if-let $true (use_sse41))
3569
- (x64_pmovsxdq (x64_pshufd val 0b11_10_11_10)))
3570
-
3571
- ;; Similar to `swiden_low` versions but using `punpckh*` instructions to
3572
- ;; pair the high lanes next to each other.
3573
- (rule (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3574
- (let ((val Xmm val))
3575
- (x64_psraw (x64_punpckhbw val val) (xmi_imm 8))))
3576
- (rule (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3577
- (let ((val Xmm val))
3578
- (x64_psrad (x64_punpckhwd val val) (xmi_imm 16))))
3579
-
3580
- ;; Same as `swiden_low`, but `val` has its high lanes moved down.
3581
- (rule (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3582
- (let ((val Xmm (x64_pshufd val 0b00_00_11_10))
3583
- (tmp Xmm (x64_pcmpgtd (xmm_zero $I32X4) val)))
3584
- (x64_punpckldq val tmp)))
3585
-
3586
- ;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3587
-
3588
- ;; With SSE4.1 use the `pmovzx*` instructions for this
3589
- (rule 1 (lower (has_type $I16X8 (uwiden_low val @ (value_type $I8X16))))
3590
- (if-let $true (use_sse41))
3591
- (x64_pmovzxbw val))
3592
- (rule 1 (lower (has_type $I32X4 (uwiden_low val @ (value_type $I16X8))))
3593
- (if-let $true (use_sse41))
3594
- (x64_pmovzxwd val))
3595
- (rule 1 (lower (has_type $I64X2 (uwiden_low val @ (value_type $I32X4))))
3596
- (if-let $true (use_sse41))
3597
- (x64_pmovzxdq val))
3598
-
3599
- (rule (lower (has_type ty (uwiden_low val))) (lower_uwiden_low ty val))
3600
-
3601
- ;; Interleave an all-zero register with the low lanes to produce zero-extended
3602
- ;; results.
3603
- (decl lower_uwiden_low (Type Xmm) Xmm)
3604
- (rule (lower_uwiden_low $I16X8 val) (x64_punpcklbw val (xmm_zero $I8X16)))
3605
- (rule (lower_uwiden_low $I32X4 val) (x64_punpcklwd val (xmm_zero $I8X16)))
3606
- (rule (lower_uwiden_low $I64X2 val) (x64_unpcklps val (xmm_zero $F32X4)))
3607
-
3608
- ;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3609
-
3610
- ;; Same as `uwiden_high`, but interleaving high lanes instead.
3611
- ;;
3612
- ;; Note that according to `llvm-mca` at least these instructions are faster
3613
- ;; than using `pmovzx*` in terms of cycles, even if SSE4.1 is available.
3614
- (rule (lower (has_type $I16X8 (uwiden_high val @ (value_type $I8X16))))
3615
- (x64_punpckhbw val (xmm_zero $I8X16)))
3616
- (rule (lower (has_type $I32X4 (uwiden_high val @ (value_type $I16X8))))
3617
- (x64_punpckhwd val (xmm_zero $I8X16)))
3618
- (rule (lower (has_type $I64X2 (uwiden_high val @ (value_type $I32X4))))
3619
- (x64_unpckhps val (xmm_zero $F32X4)))
3620
-
3621
- ;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3622
-
3623
- (rule (lower (has_type $I8X16 (snarrow a @ (value_type $I16X8) b)))
3624
- (x64_packsswb a b))
3625
-
3626
- (rule (lower (has_type $I16X8 (snarrow a @ (value_type $I32X4) b)))
3627
- (x64_packssdw a b))
3628
-
3629
- ;; We're missing a `snarrow` case for $I64X2
3630
- ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3631
-
3632
- ;; This rule is a special case for handling the translation of the wasm op
3633
- ;; `i32x4.trunc_sat_f64x2_s_zero`. It can be removed once we have an
3634
- ;; implementation of `snarrow` for `I64X2`.
3635
- (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (fcvt_to_sint_sat val))
3636
- (vconst (u128_from_constant 0)))))
3637
- (let ((a Xmm val)
3638
-
3639
- ;; y = i32x4.trunc_sat_f64x2_s_zero(x) is lowered to:
3640
- ;; MOVE xmm_tmp, xmm_x
3641
- ;; CMPEQPD xmm_tmp, xmm_x
3642
- ;; MOVE xmm_y, xmm_x
3643
- ;; ANDPS xmm_tmp, [wasm_f64x2_splat(2147483647.0)]
3644
- ;; MINPD xmm_y, xmm_tmp
3645
- ;; CVTTPD2DQ xmm_y, xmm_y
3646
-
3647
- (tmp1 Xmm (x64_cmppd a a (FcmpImm.Equal)))
3648
- (umax_mask XmmMem (snarrow_umax_mask))
3649
-
3650
- ;; ANDPD xmm_y, [wasm_f64x2_splat(2147483647.0)]
3651
- (tmp1 Xmm (x64_andps tmp1 umax_mask))
3652
- (dst Xmm (x64_minpd a tmp1)))
3653
- (x64_cvttpd2dq dst)))
3654
-
3655
- ;; This rule is a special case for handling the translation of the wasm op
3656
- ;; `i32x4.relaxed_trunc_f64x2_s_zero`.
3657
- (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (x86_cvtt2dq val))
3658
- (vconst (u128_from_constant 0)))))
3659
- (x64_cvttpd2dq val))
3660
-
3661
- ;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3662
-
3663
- (rule (lower (has_type $I8X16 (unarrow a @ (value_type $I16X8) b)))
3664
- (x64_packuswb a b))
3665
-
3666
- (rule 1 (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
3667
- (if-let $true (use_sse41))
3668
- (x64_packusdw a b))
3669
-
3670
- ;; For each input `a` and `b` take the four 32-bit lanes and compress them to
3671
- ;; the low 64-bits of the vector as four 16-bit lanes. Then these are woven
3672
- ;; into one final vector with a `punpcklqdq`.
3673
- ;;
3674
- ;; If this is performance sensitive then it's probably best to upgrade the CPU
3675
- ;; to get the above single-instruction lowering.
3676
- (rule (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
3677
- (let (
3678
- (a Xmm (unarrow_i32x4_lanes_to_low_u16_lanes a))
3679
- (b Xmm (unarrow_i32x4_lanes_to_low_u16_lanes b))
3680
- )
3681
- (x64_punpcklqdq a b)))
3682
-
3683
- (decl unarrow_i32x4_lanes_to_low_u16_lanes (Xmm) Xmm)
3684
- (rule (unarrow_i32x4_lanes_to_low_u16_lanes val)
3685
- (let (
3686
- ;; First convert all negative values in `val` to zero lanes.
3687
- (val_gt_zero Xmm (x64_pcmpgtd val (xmm_zero $I32X4)))
3688
- (val Xmm (x64_pand val val_gt_zero))
3689
-
3690
- ;; Next clamp all larger-than-u16-max lanes to u16::MAX.
3691
- (max Xmm (x64_movdqu_load (emit_u128_le_const 0x0000ffff_0000ffff_0000ffff_0000ffff)))
3692
- (cmp Xmm (x64_pcmpgtd max val))
3693
- (valid_lanes Xmm (x64_pand val cmp))
3694
- (clamped_lanes Xmm (x64_pandn cmp max))
3695
- (val Xmm (x64_por valid_lanes clamped_lanes))
3696
-
3697
- ;; Within each 64-bit half of the 32x4 vector move the first 16 bits
3698
- ;; and the third 16 bits to the bottom of the half. Afterwards
3699
- ;; for the 32x4 vector move the first and third lanes to the bottom
3700
- ;; lanes, which finishes up the conversion here as all the lanes
3701
- ;; are now converted to 16-bit values in the low 4 lanes.
3702
- (val Xmm (x64_pshuflw val 0b00_00_10_00))
3703
- (val Xmm (x64_pshufhw val 0b00_00_10_00))
3704
- )
3705
- (x64_pshufd val 0b00_00_10_00)))
3706
-
3707
-
3708
- ;; We're missing a `unarrow` case for $I64X2
3709
- ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3710
-
3711
- ;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3712
-
3713
- (rule (lower (has_type $I32 (bitcast _ src @ (value_type $F32))))
3714
- (bitcast_xmm_to_gpr $F32 src))
3715
-
3716
- (rule (lower (has_type $F32 (bitcast _ src @ (value_type $I32))))
3717
- (bitcast_gpr_to_xmm $I32 src))
3718
-
3719
- (rule (lower (has_type $I64 (bitcast _ src @ (value_type $F64))))
3720
- (bitcast_xmm_to_gpr $F64 src))
3721
-
3722
- (rule (lower (has_type $F64 (bitcast _ src @ (value_type $I64))))
3723
- (bitcast_gpr_to_xmm $I64 src))
3724
-
3725
- ;; Bitcast between types residing in GPR registers is a no-op.
3726
- (rule 1 (lower (has_type (is_gpr_type _)
3727
- (bitcast _ x @ (value_type (is_gpr_type _))))) x)
3728
-
3729
- ;; Bitcast between types residing in XMM registers is a no-op.
3730
- (rule 2 (lower (has_type (is_xmm_type _)
3731
- (bitcast _ x @ (value_type (is_xmm_type _))))) x)
3732
-
3733
- ;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3734
-
3735
- (rule (lower (has_type $F32 (fcopysign a @ (value_type $F32) b)))
3736
- (let ((sign_bit Xmm (imm $F32 0x80000000)))
3737
- (x64_orps
3738
- (x64_andnps sign_bit a)
3739
- (x64_andps sign_bit b))))
3740
-
3741
- (rule (lower (has_type $F64 (fcopysign a @ (value_type $F64) b)))
3742
- (let ((sign_bit Xmm (imm $F64 0x8000000000000000)))
3743
- (x64_orpd
3744
- (x64_andnpd sign_bit a)
3745
- (x64_andpd sign_bit b))))
3746
-
3747
- ;; Helper for the `ceil`/`floor`/`nearest`/`trunc` instructions ;;;;;;;;;;;;;;;;
3748
-
3749
- ;; Emits either a `round{ss,sd,ps,pd}` instruction, as appropriate, or generates
3750
- ;; the appropriate libcall and sequence to call that.
3751
- (decl x64_round (Type RegMem RoundImm) Xmm)
3752
- (rule 1 (x64_round $F32 a imm)
3753
- (if-let $true (use_sse41))
3754
- (x64_roundss a imm))
3755
- (rule 1 (x64_round $F64 a imm)
3756
- (if-let $true (use_sse41))
3757
- (x64_roundsd a imm))
3758
- (rule 1 (x64_round $F32X4 a imm)
3759
- (if-let $true (use_sse41))
3760
- (x64_roundps a imm))
3761
- (rule 1 (x64_round $F64X2 a imm)
3762
- (if-let $true (use_sse41))
3763
- (x64_roundpd a imm))
3764
-
3765
- (rule (x64_round $F32 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F32 imm) a))
3766
- (rule (x64_round $F64 (RegMem.Reg a) imm) (libcall_1 (round_libcall $F64 imm) a))
3767
- (rule (x64_round $F32X4 (RegMem.Reg a) imm)
3768
- (let (
3769
- (libcall LibCall (round_libcall $F32 imm))
3770
- (result Xmm (libcall_1 libcall a))
3771
- (a1 Xmm (libcall_1 libcall (x64_pshufd a 1)))
3772
- (result Xmm (vec_insert_lane $F32X4 result a1 1))
3773
- (a2 Xmm (libcall_1 libcall (x64_pshufd a 2)))
3774
- (result Xmm (vec_insert_lane $F32X4 result a2 2))
3775
- (a3 Xmm (libcall_1 libcall (x64_pshufd a 3)))
3776
- (result Xmm (vec_insert_lane $F32X4 result a3 3))
3777
- )
3778
- result))
3779
- (rule (x64_round $F64X2 (RegMem.Reg a) imm)
3780
- (let (
3781
- (libcall LibCall (round_libcall $F64 imm))
3782
- (result Xmm (libcall_1 libcall a))
3783
- (a1 Xmm (libcall_1 libcall (x64_pshufd a 0b00_00_11_10)))
3784
- (result Xmm (vec_insert_lane $F64X2 result a1 1))
3785
- )
3786
- result))
3787
- (rule (x64_round ty (RegMem.Mem addr) imm)
3788
- (x64_round ty (RegMem.Reg (x64_load ty addr (ExtKind.ZeroExtend))) imm))
3789
-
3790
- (decl round_libcall (Type RoundImm) LibCall)
3791
- (rule (round_libcall $F32 (RoundImm.RoundUp)) (LibCall.CeilF32))
3792
- (rule (round_libcall $F64 (RoundImm.RoundUp)) (LibCall.CeilF64))
3793
- (rule (round_libcall $F32 (RoundImm.RoundDown)) (LibCall.FloorF32))
3794
- (rule (round_libcall $F64 (RoundImm.RoundDown)) (LibCall.FloorF64))
3795
- (rule (round_libcall $F32 (RoundImm.RoundNearest)) (LibCall.NearestF32))
3796
- (rule (round_libcall $F64 (RoundImm.RoundNearest)) (LibCall.NearestF64))
3797
- (rule (round_libcall $F32 (RoundImm.RoundZero)) (LibCall.TruncF32))
3798
- (rule (round_libcall $F64 (RoundImm.RoundZero)) (LibCall.TruncF64))
3799
-
3800
- ;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3801
-
3802
- (rule (lower (ceil a @ (value_type ty)))
3803
- (x64_round ty a (RoundImm.RoundUp)))
3804
-
3805
- ;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3806
-
3807
- (rule (lower (floor a @ (value_type ty)))
3808
- (x64_round ty a (RoundImm.RoundDown)))
3809
-
3810
- ;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3811
-
3812
- (rule (lower (nearest a @ (value_type ty)))
3813
- (x64_round ty a (RoundImm.RoundNearest)))
3814
-
3815
- ;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3816
-
3817
- (rule (lower (trunc a @ (value_type ty)))
3818
- (x64_round ty a (RoundImm.RoundZero)))
3819
-
3820
- ;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3821
-
3822
- (rule (lower (stack_addr stack_slot offset))
3823
- (stack_addr_impl stack_slot offset))
3824
-
3825
- ;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3826
-
3827
- ;; NB: a `RegMem` divisor, while allowed in the instruction encoding, isn't
3828
- ;; used right now to prevent a possibly-trapping load getting folded into the
3829
- ;; `div` instruction. Ideally non-trapping loads would get folded, however, or
3830
- ;; alternatively Wasmtime/Cranelift would grow support for multiple traps on
3831
- ;; a single opcode and the signal kind would differentiate at runtime.
3832
-
3833
- ;; The inputs to the `div` instruction are different for 8-bit division so
3834
- ;; it needs a special case here since the instruction being crafted has a
3835
- ;; different shape.
3836
- (rule 2 (lower (udiv a @ (value_type $I8) b))
3837
- (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
3838
- (put_in_gpr b)
3839
- (DivSignedness.Unsigned)
3840
- (TrapCode.IntegerDivisionByZero)))
3841
-
3842
- ;; 16-to-64-bit division is all done with a similar instruction and the only
3843
- ;; tricky requirement here is that when div traps are disallowed the divisor
3844
- ;; must not be zero.
3845
- (rule 1 (lower (udiv a @ (value_type (fits_in_64 ty)) b))
3846
- (x64_div_quotient a
3847
- (imm $I64 0)
3848
- (put_in_gpr b)
3849
- (raw_operand_size_of_type ty)
3850
- (DivSignedness.Unsigned)
3851
- (TrapCode.IntegerDivisionByZero)))
3852
-
3853
- ;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3854
-
3855
- (rule 2 (lower (sdiv a @ (value_type $I8) b))
3856
- (x64_div8 (x64_sign_extend_data a (OperandSize.Size8))
3857
- (nonzero_sdiv_divisor $I8 b)
3858
- (DivSignedness.Signed)
3859
- (TrapCode.IntegerOverflow)))
3860
-
3861
- (rule 1 (lower (sdiv a @ (value_type (fits_in_64 ty)) b))
3862
- (let (
3863
- (a Gpr a)
3864
- (size OperandSize (raw_operand_size_of_type ty))
3865
- )
3866
- (x64_div_quotient a
3867
- (x64_sign_extend_data a size)
3868
- (nonzero_sdiv_divisor ty b)
3869
- size
3870
- (DivSignedness.Signed)
3871
- (TrapCode.IntegerOverflow))))
3872
-
3873
- ;; Checks to make sure that the input `Value` is a non-zero value for `sdiv`.
3874
- ;;
3875
- ;; This is required to differentiate the divide-by-zero trap from the
3876
- ;; integer-overflow trap, the two trapping conditions of signed division.
3877
- (decl nonzero_sdiv_divisor (Type Value) Reg)
3878
- (rule 1 (nonzero_sdiv_divisor ty (iconst imm))
3879
- (if-let n (safe_divisor_from_imm64 ty imm))
3880
- (imm ty n))
3881
- (rule 0 (nonzero_sdiv_divisor ty val)
3882
- (let (
3883
- (val Reg val)
3884
- (_ InstOutput (side_effect (with_flags_side_effect
3885
- (x64_test (raw_operand_size_of_type ty) val val)
3886
- (trap_if (CC.Z) (TrapCode.IntegerDivisionByZero)))))
3887
- )
3888
- val))
3889
-
3890
- ;; Rules for `urem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3891
-
3892
- ;; The remainder is in AH, so take the result of the division and right-shift
3893
- ;; by 8.
3894
- (rule 2 (lower (urem a @ (value_type $I8) b))
3895
- (let (
3896
- (result Gpr (x64_div8 (extend_to_gpr a $I32 (ExtendKind.Zero))
3897
- (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
3898
- (DivSignedness.Unsigned)
3899
- (TrapCode.IntegerDivisionByZero)))
3900
- )
3901
- (x64_shr $I64 result (Imm8Reg.Imm8 8))))
3902
-
3903
- (rule 1 (lower (urem a @ (value_type (fits_in_64 ty)) b))
3904
- (x64_div_remainder a
3905
- (imm $I64 0)
3906
- (put_in_gpr b) ;; see `udiv` for why not `gpr_mem`
3907
- (raw_operand_size_of_type ty)
3908
- (DivSignedness.Unsigned)
3909
- (TrapCode.IntegerDivisionByZero)))
3910
-
3911
- ;; Rules for `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3912
-
3913
- ;; Special-cases first for constant `srem` where the checks for 0 and -1 aren't
3914
- ;; applicable.
3915
- ;;
3916
- ;; Note that like `urem` for i8 types the result is in AH so to get the result
3917
- ;; it's right-shifted down.
3918
- (rule 3 (lower (srem a @ (value_type $I8) (iconst imm)))
3919
- (if-let n (safe_divisor_from_imm64 $I8 imm))
3920
- (let (
3921
- (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
3922
- (result Gpr (x64_div8 a (imm $I8 n) (DivSignedness.Signed) (TrapCode.IntegerDivisionByZero)))
3923
- )
3924
- (x64_shr $I64 result (Imm8Reg.Imm8 8))))
3925
-
3926
- ;; Same as the above rule but for 16-to-64 bit types.
3927
- (rule 2 (lower (srem a @ (value_type ty) (iconst imm)))
3928
- (if-let n (safe_divisor_from_imm64 ty imm))
3929
- (let (
3930
- (a Gpr a)
3931
- (size OperandSize (raw_operand_size_of_type ty))
3932
- )
3933
- (x64_div_remainder a
3934
- (x64_sign_extend_data a size)
3935
- (imm ty n)
3936
- size
3937
- (DivSignedness.Signed)
3938
- (TrapCode.IntegerDivisionByZero))))
3939
-
3940
- (rule 1 (lower (srem a @ (value_type $I8) b))
3941
- (let (
3942
- (a Gpr (x64_sign_extend_data a (OperandSize.Size8)))
3943
- )
3944
- (x64_shr $I64 (x64_checked_srem_seq8 a b) (Imm8Reg.Imm8 8))))
3945
-
3946
- (rule (lower (srem a @ (value_type ty) b))
3947
- (let (
3948
- (a Gpr a)
3949
- (size OperandSize (raw_operand_size_of_type ty))
3950
- (hi Gpr (x64_sign_extend_data a size))
3951
- (tmp ValueRegs (x64_checked_srem_seq size a hi b))
3952
- )
3953
- (value_regs_get tmp 1)))
3954
-
3955
- ;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3956
-
3957
- (rule (lower (umulhi a @ (value_type $I16) b))
3958
- (let ((res ValueRegs (mul_hi $I16 $false a b))
3959
- (hi Gpr (value_regs_get_gpr res 1)))
3960
- hi))
3961
-
3962
- (rule (lower (umulhi a @ (value_type $I32) b))
3963
- (let ((res ValueRegs (mul_hi $I32 $false a b))
3964
- (hi Gpr (value_regs_get_gpr res 1)))
3965
- hi))
3966
-
3967
- (rule (lower (umulhi a @ (value_type $I64) b))
3968
- (let ((res ValueRegs (mul_hi $I64 $false a b))
3969
- (hi Gpr (value_regs_get_gpr res 1)))
3970
- hi))
3971
-
3972
- ;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3973
-
3974
- (rule (lower (smulhi a @ (value_type $I16) b))
3975
- (let ((res ValueRegs (mul_hi $I16 $true a b))
3976
- (hi Gpr (value_regs_get_gpr res 1)))
3977
- hi))
3978
-
3979
- (rule (lower (smulhi a @ (value_type $I32) b))
3980
- (let ((res ValueRegs (mul_hi $I32 $true a b))
3981
- (hi Gpr (value_regs_get_gpr res 1)))
3982
- hi))
3983
-
3984
- (rule (lower (smulhi a @ (value_type $I64) b))
3985
- (let ((res ValueRegs (mul_hi $I64 $true a b))
3986
- (hi Gpr (value_regs_get_gpr res 1)))
3987
- hi))
3988
-
3989
- ;; Rules for `get_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3990
-
3991
- (rule (lower (get_pinned_reg))
3992
- (read_pinned_gpr))
3993
-
3994
- ;; Rules for `set_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3995
-
3996
- (rule (lower (set_pinned_reg a @ (value_type ty)))
3997
- (side_effect (write_pinned_gpr a)))
3998
-
3999
- ;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4000
-
4001
- (rule (lower (has_type ty (vconst const)))
4002
- ;; TODO use Inst::gen_constant() instead.
4003
- (x64_xmm_load_const ty (const_to_vconst const)))
4004
-
4005
- ;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4006
-
4007
- ;; Special case for `pblendw` which takes an 8-bit immediate where each bit
4008
- ;; indicates which lane of the two operands is chosen for the output. A bit of
4009
- ;; 0 chooses the corresponding 16-it lane from `a` and a bit of 1 chooses the
4010
- ;; corresponding 16-bit lane from `b`.
4011
- (rule 14 (lower (shuffle a b (pblendw_imm n)))
4012
- (if-let $true (use_sse41))
4013
- (x64_pblendw a b n))
4014
- (decl pblendw_imm (u8) Immediate)
4015
- (extern extractor pblendw_imm pblendw_imm)
4016
-
4017
- ;; When the shuffle looks like "concatenate `a` and `b` and shift right by n*8
4018
- ;; bytes", that's a `palignr` instruction. Note that the order of operands are
4019
- ;; swapped in the instruction here. The `palignr` instruction uses the second
4020
- ;; operand as the low-order bytes and the first operand as high-order bytes,
4021
- ;; so put `a` second.
4022
- (rule 13 (lower (shuffle a b (palignr_imm_from_immediate n)))
4023
- (x64_palignr b a n))
4024
- (decl palignr_imm_from_immediate (u8) Immediate)
4025
- (extern extractor palignr_imm_from_immediate palignr_imm_from_immediate)
4026
-
4027
- ;; Special case the `pshuf{l,h}w` instruction which shuffles four 16-bit
4028
- ;; integers within one value, preserving the other four 16-bit integers in that
4029
- ;; value (either the high or low half). The complicated logic is in the
4030
- ;; extractors here implemented in Rust and note that there's two cases for each
4031
- ;; instruction here to match when either the first or second shuffle operand is
4032
- ;; used.
4033
- (rule 12 (lower (shuffle x y (pshuflw_lhs_imm imm)))
4034
- (x64_pshuflw x imm))
4035
- (rule 11 (lower (shuffle x y (pshuflw_rhs_imm imm)))
4036
- (x64_pshuflw y imm))
4037
- (rule 10 (lower (shuffle x y (pshufhw_lhs_imm imm)))
4038
- (x64_pshufhw x imm))
4039
- (rule 9 (lower (shuffle x y (pshufhw_rhs_imm imm)))
4040
- (x64_pshufhw y imm))
4041
-
4042
- (decl pshuflw_lhs_imm (u8) Immediate)
4043
- (extern extractor pshuflw_lhs_imm pshuflw_lhs_imm)
4044
- (decl pshuflw_rhs_imm (u8) Immediate)
4045
- (extern extractor pshuflw_rhs_imm pshuflw_rhs_imm)
4046
- (decl pshufhw_lhs_imm (u8) Immediate)
4047
- (extern extractor pshufhw_lhs_imm pshufhw_lhs_imm)
4048
- (decl pshufhw_rhs_imm (u8) Immediate)
4049
- (extern extractor pshufhw_rhs_imm pshufhw_rhs_imm)
4050
-
4051
- ;; Special case for the `pshufd` instruction which will permute 32-bit values
4052
- ;; within a single register. This is only applicable if the `imm` specified
4053
- ;; selects 32-bit values from either `x` or `y`, but not both. This means
4054
- ;; there's one rule for selecting from `x` and another rule for selecting from
4055
- ;; `y`.
4056
- (rule 8 (lower (shuffle x y (pshufd_lhs_imm imm)))
4057
- (x64_pshufd x imm))
4058
- (rule 7 (lower (shuffle x y (pshufd_rhs_imm imm)))
4059
- (x64_pshufd y imm))
4060
-
4061
- (decl pshufd_lhs_imm (u8) Immediate)
4062
- (extern extractor pshufd_lhs_imm pshufd_lhs_imm)
4063
- (decl pshufd_rhs_imm (u8) Immediate)
4064
- (extern extractor pshufd_rhs_imm pshufd_rhs_imm)
4065
-
4066
- ;; Special case for i8-level interleaving of upper/low bytes.
4067
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f0f_1e0e_1d0d_1c0c_1b0b_1a0a_1909_1808)))
4068
- (x64_punpckhbw a b))
4069
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1707_1606_1505_1404_1303_1202_1101_1000)))
4070
- (x64_punpcklbw a b))
4071
-
4072
- ;; Special case for i16-level interleaving of upper/low bytes.
4073
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e_0f0e_1d1c_0d0c_1b1a_0b0a_1918_0908)))
4074
- (x64_punpckhwd a b))
4075
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716_0706_1514_0504_1312_0302_1110_0100)))
4076
- (x64_punpcklwd a b))
4077
-
4078
- ;; Special case for i32-level interleaving of upper/low bytes.
4079
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c_0f0e0d0c_1b1a1918_0b0a0908)))
4080
- (x64_punpckhdq a b))
4081
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x17161514_07060504_13121110_03020100)))
4082
- (x64_punpckldq a b))
4083
-
4084
- ;; Special case for i64-level interleaving of upper/low bytes.
4085
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1f1e1d1c1b1a1918_0f0e0d0c0b0a0908)))
4086
- (x64_punpckhqdq a b))
4087
- (rule 6 (lower (shuffle a b (u128_from_immediate 0x1716151413121110_0706050403020100)))
4088
- (x64_punpcklqdq a b))
4089
-
4090
- ;; If the vector shift mask is all 0s then that means the first byte of the
4091
- ;; first operand is broadcast to all bytes. Falling through would load an
4092
- ;; all-zeros constant from a rip-relative location but it should be slightly
4093
- ;; more efficient to execute the `pshufb` here-and-now with an xor'd-to-be-zero
4094
- ;; register.
4095
- (rule 6 (lower (shuffle a _ (u128_from_immediate 0)))
4096
- (x64_pshufb a (xmm_zero $I8X16)))
4097
-
4098
- ;; Special case for the `shufps` instruction which will select two 32-bit values
4099
- ;; from the first operand and two 32-bit values from the second operand. Note
4100
- ;; that there is a second case here as well for when the operands can be
4101
- ;; swapped.
4102
- ;;
4103
- ;; Note that the priority of this instruction is currently lower than the above
4104
- ;; special cases since `shufps` handles many of them and for now it's
4105
- ;; hypothesized that the dedicated instructions are better than `shufps`.
4106
- ;; Someone with more knowledge about x86 timings should perhaps reorder the
4107
- ;; rules here eventually though.
4108
- (rule 5 (lower (shuffle x y (shufps_imm imm)))
4109
- (x64_shufps x y imm))
4110
- (rule 4 (lower (shuffle x y (shufps_rev_imm imm)))
4111
- (x64_shufps y x imm))
4112
-
4113
- (decl shufps_imm(u8) Immediate)
4114
- (extern extractor shufps_imm shufps_imm)
4115
- (decl shufps_rev_imm(u8) Immediate)
4116
- (extern extractor shufps_rev_imm shufps_rev_imm)
4117
-
4118
-
4119
- ;; If `lhs` and `rhs` are the same we can use a single PSHUFB to shuffle the XMM
4120
- ;; register. We statically build `constructed_mask` to zero out any unknown lane
4121
- ;; indices (may not be completely necessary: verification could fail incorrect
4122
- ;; mask values) and fix the indexes to all point to the `dst` vector.
4123
- (rule 3 (lower (shuffle a a (vec_mask_from_immediate mask)))
4124
- (x64_pshufb a (shuffle_0_31_mask mask)))
4125
-
4126
- ;; For the case where the shuffle mask contains out-of-bounds values (values
4127
- ;; greater than 31) we must mask off those resulting values in the result of
4128
- ;; `vpermi2b`.
4129
- (rule 2 (lower (shuffle a b (vec_mask_from_immediate (perm_from_mask_with_zeros mask zeros))))
4130
- (if-let $true (use_avx512vl_simd))
4131
- (if-let $true (use_avx512vbmi_simd))
4132
- (x64_andps (x64_vpermi2b (x64_xmm_load_const $I8X16 mask) a b) zeros))
4133
-
4134
- ;; However, if the shuffle mask contains no out-of-bounds values, we can use
4135
- ;; `vpermi2b` without any masking.
4136
- (rule 1 (lower (shuffle a b (vec_mask_from_immediate mask)))
4137
- (if-let $true (use_avx512vl_simd))
4138
- (if-let $true (use_avx512vbmi_simd))
4139
- (x64_vpermi2b (x64_xmm_load_const $I8X16 (perm_from_mask mask)) a b))
4140
-
4141
- ;; If `lhs` and `rhs` are different, we must shuffle each separately and then OR
4142
- ;; them together. This is necessary due to PSHUFB semantics. As in the case
4143
- ;; above, we build the `constructed_mask` for each case statically.
4144
- (rule (lower (shuffle a b (vec_mask_from_immediate mask)))
4145
- (x64_por
4146
- (x64_pshufb a (shuffle_0_15_mask mask))
4147
- (x64_pshufb b (shuffle_16_31_mask mask))))
4148
-
4149
- ;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4150
-
4151
- ;; SIMD swizzle; the following inefficient implementation is due to the Wasm
4152
- ;; SIMD spec requiring mask indexes greater than 15 to have the same semantics
4153
- ;; as a 0 index. For the spec discussion, see
4154
- ;; https://github.com/WebAssembly/simd/issues/93. The CLIF semantics match the
4155
- ;; Wasm SIMD semantics for this instruction. The instruction format maps to
4156
- ;; variables like: %dst = swizzle %src, %mask
4157
- (rule (lower (swizzle src mask))
4158
- (let ((mask Xmm (x64_paddusb mask (swizzle_zero_mask))))
4159
- (x64_pshufb src mask)))
4160
-
4161
- ;; Rules for `x86_pshufb` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4162
-
4163
- (rule (lower (x86_pshufb src mask))
4164
- (x64_pshufb src mask))
4165
-
4166
- ;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4167
-
4168
- ;; Remove the extractlane instruction, leaving the float where it is. The upper
4169
- ;; bits will remain unchanged; for correctness, this relies on Cranelift type
4170
- ;; checking to avoid using those bits.
4171
- (rule 3 (lower (has_type (ty_scalar_float _) (extractlane val 0)))
4172
- val)
4173
-
4174
- ;; `f32x4.extract_lane N` where `N != 0`
4175
- (rule 1 (lower (extractlane val @ (value_type $F32X4) (u8_from_uimm8 lane)))
4176
- (x64_pshufd val lane))
4177
-
4178
- ;; `f64x2.extract_lane N` where `N != 0` (aka N == 1)
4179
- (rule (lower (extractlane val @ (value_type $F64X2) 1))
4180
- (x64_pshufd val 0b11_10_11_10))
4181
-
4182
- ;; `i8x16.extract_lane N`
4183
- ;;
4184
- ;; Note that without SSE4.1 a 16-bit lane extraction is performed and then
4185
- ;; the result is updated if the desired index is either odd or even.
4186
- (rule 2 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4187
- (if-let $true (use_sse41))
4188
- (x64_pextrb val lane))
4189
- ;; extracting an odd lane has an extra shift-right
4190
- (rule 1 (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4191
- (if-let 1 (u8_and lane 1))
4192
- (x64_shr $I16 (x64_pextrw val (u8_shr lane 1)) (Imm8Reg.Imm8 8)))
4193
- ;; Extracting an even lane already has the desired lane in the lower bits. Note
4194
- ;; that having arbitrary upper bits in the returned register should be ok since
4195
- ;; all operators on the resulting `i8` type should work correctly regardless of
4196
- ;; the bits in the rest of the register.
4197
- (rule (lower (extractlane val @ (value_type ty @ $I8X16) (u8_from_uimm8 lane)))
4198
- (if-let 0 (u8_and lane 1))
4199
- (x64_pextrw val (u8_shr lane 1)))
4200
-
4201
- ;; `i16x8.extract_lane N`
4202
- (rule (lower (extractlane val @ (value_type ty @ $I16X8) (u8_from_uimm8 lane)))
4203
- (x64_pextrw val lane))
4204
-
4205
- ;; `i32x4.extract_lane N`
4206
- (rule 2 (lower (extractlane val @ (value_type ty @ $I32X4) (u8_from_uimm8 lane)))
4207
- (if-let $true (use_sse41))
4208
- (x64_pextrd val lane))
4209
- (rule 1 (lower (extractlane val @ (value_type $I32X4) 0))
4210
- (x64_movd_to_gpr val))
4211
- (rule (lower (extractlane val @ (value_type $I32X4) (u8_from_uimm8 n)))
4212
- (x64_movd_to_gpr (x64_pshufd val n)))
4213
-
4214
- ;; `i64x2.extract_lane N`
4215
- (rule 1 (lower (extractlane val @ (value_type $I64X2) (u8_from_uimm8 lane)))
4216
- (if-let $true (use_sse41))
4217
- (x64_pextrq val lane))
4218
- (rule (lower (extractlane val @ (value_type $I64X2) 0))
4219
- (x64_movq_to_gpr val))
4220
- (rule (lower (extractlane val @ (value_type $I64X2) 1))
4221
- (x64_movq_to_gpr (x64_pshufd val 0b00_00_11_10)))
4222
-
4223
- ;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4224
-
4225
- ;; Case 1: when moving a scalar float, we simply move from one XMM register
4226
- ;; to another, expecting the register allocator to elide this. Here we
4227
- ;; assume that the upper bits of a scalar float have not been munged with
4228
- ;; (the same assumption the old backend makes).
4229
- (rule 1 (lower (scalar_to_vector src @ (value_type (ty_scalar_float _))))
4230
- src)
4231
-
4232
- ;; Case 2: when moving a scalar value of any other type, use MOVD to zero
4233
- ;; the upper lanes.
4234
- (rule (lower (scalar_to_vector src @ (value_type ty)))
4235
- (bitcast_gpr_to_xmm ty src))
4236
-
4237
- ;; Case 3: when presented with `load + scalar_to_vector`, coalesce into a single
4238
- ;; MOVSS/MOVSD instruction.
4239
- (rule 2 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_32 _)))))
4240
- (x64_movss_load src))
4241
- (rule 3 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_64 _)))))
4242
- (x64_movsd_load src))
4243
-
4244
- ;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4245
-
4246
- ;; For all the splat rules below one of the goals is that splatting a value
4247
- ;; doesn't end up accidentally depending on the previous value in a register.
4248
- ;; This means that instructions are chosen to avoid false dependencies where
4249
- ;; new values are created fresh or otherwise overwrite previous register
4250
- ;; contents where possible.
4251
- ;;
4252
- ;; Additionally splats are specialized to special-case load-and-splat which
4253
- ;; has a number of micro-optimizations available.
4254
-
4255
- ;; i8x16 splats: use `vpbroadcastb` on AVX2 and otherwise `pshufb` broadcasts
4256
- ;; with a mask of zero which is calculated with an xor-against-itself register.
4257
- (rule 0 (lower (has_type $I8X16 (splat src)))
4258
- (x64_pshufb (bitcast_gpr_to_xmm $I32 src) (xmm_zero $I8X16)))
4259
- (rule 1 (lower (has_type $I8X16 (splat src)))
4260
- (if-let $true (use_avx2_simd))
4261
- (x64_vpbroadcastb (bitcast_gpr_to_xmm $I32 src)))
4262
- (rule 2 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4263
- (if-let $true (use_sse41))
4264
- (x64_pshufb (x64_pinsrb (xmm_uninit_value) addr 0) (xmm_zero $I8X16)))
4265
- (rule 3 (lower (has_type $I8X16 (splat (sinkable_load_exact addr))))
4266
- (if-let $true (use_avx2_simd))
4267
- (x64_vpbroadcastb addr))
4268
-
4269
- ;; i16x8 splats: use `vpbroadcastw` on AVX2 and otherwise a 16-bit value is
4270
- ;; loaded into an xmm register, `pshuflw` broadcasts the low 16-bit lane
4271
- ;; to the low four lanes, and `pshufd` broadcasts the low 32-bit lane (which
4272
- ;; at that point is two of the 16-bit values we want to broadcast) to all the
4273
- ;; lanes.
4274
- (rule 0 (lower (has_type $I16X8 (splat src)))
4275
- (x64_pshufd (x64_pshuflw (bitcast_gpr_to_xmm $I32 src) 0) 0))
4276
- (rule 1 (lower (has_type $I16X8 (splat src)))
4277
- (if-let $true (use_avx2_simd))
4278
- (x64_vpbroadcastw (bitcast_gpr_to_xmm $I32 src)))
4279
- (rule 2 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4280
- (x64_pshufd (x64_pshuflw (x64_pinsrw (xmm_uninit_value) addr 0) 0) 0))
4281
- (rule 3 (lower (has_type $I16X8 (splat (sinkable_load_exact addr))))
4282
- (if-let $true (use_avx2_simd))
4283
- (x64_vpbroadcastw addr))
4284
-
4285
- ;; i32x4.splat - use `vpbroadcastd` on AVX2 and otherwise `pshufd` can be
4286
- ;; used to broadcast the low lane to all other lanes.
4287
- ;;
4288
- ;; Note that sinkable-load cases come later
4289
- (rule 0 (lower (has_type $I32X4 (splat src)))
4290
- (x64_pshufd (bitcast_gpr_to_xmm $I32 src) 0))
4291
- (rule 1 (lower (has_type $I32X4 (splat src)))
4292
- (if-let $true (use_avx2_simd))
4293
- (x64_vpbroadcastd (bitcast_gpr_to_xmm $I32 src)))
4294
-
4295
- ;; f32x4.splat - the source is already in an xmm register so `shufps` is all
4296
- ;; that's necessary to complete the splat. This is specialized to `vbroadcastss`
4297
- ;; on AVX2 to leverage that specific instruction for this operation.
4298
- (rule 0 (lower (has_type $F32X4 (splat src)))
4299
- (let ((tmp Xmm src))
4300
- (x64_shufps src src 0)))
4301
- (rule 1 (lower (has_type $F32X4 (splat src)))
4302
- (if-let $true (use_avx2_simd))
4303
- (x64_vbroadcastss src))
4304
-
4305
- ;; t32x4.splat of a load - use a `movss` to load into an xmm register and then
4306
- ;; `shufps` broadcasts to the other lanes. Note that this is used for both i32
4307
- ;; and f32 splats.
4308
- ;;
4309
- ;; With AVX the `vbroadcastss` instruction suits this purpose precisely. Note
4310
- ;; that the memory-operand encoding of `vbroadcastss` is usable with AVX, but
4311
- ;; the register-based encoding is only available with AVX2. With the
4312
- ;; `sinkable_load` extractor this should be guaranteed to use the memory-based
4313
- ;; encoding hence the `use_avx_simd` test.
4314
- (rule 4 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4315
- (let ((tmp Xmm (x64_movss_load addr)))
4316
- (x64_shufps tmp tmp 0)))
4317
- (rule 5 (lower (has_type (multi_lane 32 4) (splat (sinkable_load addr))))
4318
- (if-let $true (use_avx_simd))
4319
- (x64_vbroadcastss addr))
4320
-
4321
- ;; t64x2.splat - use `movddup` which is exactly what we want and there's a
4322
- ;; minor specialization for sinkable loads to avoid going through a gpr for i64
4323
- ;; splats
4324
- (rule 0 (lower (has_type $I64X2 (splat src)))
4325
- (x64_movddup (bitcast_gpr_to_xmm $I64 src)))
4326
- (rule 0 (lower (has_type $F64X2 (splat src)))
4327
- (x64_movddup src))
4328
- (rule 5 (lower (has_type (multi_lane 64 2) (splat (sinkable_load addr))))
4329
- (x64_movddup addr))
4330
-
4331
- ;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4332
-
4333
- (rule 1 (lower (vany_true val))
4334
- (if-let $true (use_sse41))
4335
- (let ((val Xmm val))
4336
- (with_flags (x64_ptest val val) (x64_setcc (CC.NZ)))))
4337
-
4338
- ;; Any nonzero byte in `val` means that any lane is true. Compare `val` with a
4339
- ;; zeroed register and extract the high bits to a gpr mask. If the mask is
4340
- ;; 0xffff then every byte was equal to zero, so test if the comparison is
4341
- ;; not-equal or NZ.
4342
- (rule (lower (vany_true val))
4343
- (let (
4344
- (any_byte_zero Xmm (x64_pcmpeqb val (xmm_zero $I8X16)))
4345
- (mask Gpr (x64_pmovmskb (OperandSize.Size32) any_byte_zero))
4346
- )
4347
- (with_flags (x64_cmp (OperandSize.Size32) (RegMemImm.Imm 0xffff) mask)
4348
- (x64_setcc (CC.NZ)))))
4349
-
4350
- ;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4351
-
4352
- (rule 1 (lower (vall_true val @ (value_type ty)))
4353
- (if-let $true (use_sse41))
4354
- (let ((src Xmm val)
4355
- (zeros Xmm (xmm_zero ty))
4356
- (cmp Xmm (x64_pcmpeq (vec_int_type ty) src zeros)))
4357
- (with_flags (x64_ptest cmp cmp) (x64_setcc (CC.Z)))))
4358
-
4359
- ;; Perform an appropriately-sized lane-wise comparison with zero. If the
4360
- ;; result is all 0s then all of them are true because nothing was equal to
4361
- ;; zero.
4362
- (rule (lower (vall_true val @ (value_type ty)))
4363
- (let ((lanes_with_zero Xmm (x64_pcmpeq (vec_int_type ty) val (xmm_zero ty)))
4364
- (mask Gpr (x64_pmovmskb (OperandSize.Size32) lanes_with_zero)))
4365
- (with_flags (x64_test (OperandSize.Size32) mask mask)
4366
- (x64_setcc (CC.Z)))))
4367
-
4368
- ;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4369
-
4370
- ;; The Intel specification allows using both 32-bit and 64-bit GPRs as
4371
- ;; destination for the "move mask" instructions. This is controlled by the REX.R
4372
- ;; bit: "In 64-bit mode, the instruction can access additional registers when
4373
- ;; used with a REX.R prefix. The default operand size is 64-bit in 64-bit mode"
4374
- ;; (PMOVMSKB in IA Software Development Manual, vol. 2). This being the case, we
4375
- ;; will always clear REX.W since its use is unnecessary (`OperandSize` is used
4376
- ;; for setting/clearing REX.W) as we need at most 16 bits of output for
4377
- ;; `vhigh_bits`.
4378
-
4379
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 8 16))))
4380
- (x64_pmovmskb (OperandSize.Size32) val))
4381
-
4382
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 32 4))))
4383
- (x64_movmskps (OperandSize.Size32) val))
4384
-
4385
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 64 2))))
4386
- (x64_movmskpd (OperandSize.Size32) val))
4387
-
4388
- ;; There is no x86 instruction for extracting the high bit of 16-bit lanes so
4389
- ;; here we:
4390
- ;; - duplicate the 16-bit lanes of `src` into 8-bit lanes:
4391
- ;; PACKSSWB([x1, x2, ...], [x1, x2, ...]) = [x1', x2', ..., x1', x2', ...]
4392
- ;; - use PMOVMSKB to gather the high bits; now we have duplicates, though
4393
- ;; - shift away the bottom 8 high bits to remove the duplicates.
4394
- (rule (lower (vhigh_bits val @ (value_type (multi_lane 16 8))))
4395
- (let ((src Xmm val)
4396
- (tmp Xmm (x64_packsswb src src))
4397
- (tmp Gpr (x64_pmovmskb (OperandSize.Size32) tmp)))
4398
- (x64_shr $I64 tmp (Imm8Reg.Imm8 8))))
4399
-
4400
- ;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4401
-
4402
- (rule (lower (iconcat lo @ (value_type $I64) hi))
4403
- (value_regs lo hi))
4404
-
4405
- ;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4406
-
4407
- (rule (lower (isplit val @ (value_type $I128)))
4408
- (let ((regs ValueRegs val)
4409
- (lo Reg (value_regs_get regs 0))
4410
- (hi Reg (value_regs_get regs 1)))
4411
- (output_pair lo hi)))
4412
-
4413
- ;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4414
-
4415
- (rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
4416
- (elf_tls_get_addr name))
4417
-
4418
- (rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
4419
- (macho_tls_get_addr name))
4420
-
4421
- (rule (lower (has_type (tls_model (TlsModel.Coff)) (tls_value (symbol_value_data name _ _))))
4422
- (coff_tls_get_addr name))
4423
-
4424
- ;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4425
-
4426
- (rule (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
4427
- (let ((src1 Xmm qx)
4428
- (src2 Xmm qy)
4429
-
4430
- (mask XmmMem (sqmul_round_sat_mask))
4431
- (dst Xmm (x64_pmulhrsw src1 src2))
4432
- (cmp Xmm (x64_pcmpeqw dst mask)))
4433
- (x64_pxor dst cmp)))
4434
-
4435
- ;; Rules for `x86_pmulhrsw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4436
-
4437
- (rule (lower (x86_pmulhrsw qx @ (value_type $I16X8) qy))
4438
- (x64_pmulhrsw qx qy))
4439
-
4440
- ;; Rules for `uunarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4441
-
4442
- ;; TODO: currently we only lower a special case of `uunarrow` needed to support
4443
- ;; the translation of wasm's i32x4.trunc_sat_f64x2_u_zero operation.
4444
- ;; https://github.com/bytecodealliance/wasmtime/issues/4791
4445
- ;;
4446
- ;; y = i32x4.trunc_sat_f64x2_u_zero(x) is lowered to:
4447
- ;; MOVAPD xmm_y, xmm_x
4448
- ;; XORPD xmm_tmp, xmm_tmp
4449
- ;; MAXPD xmm_y, xmm_tmp
4450
- ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4451
- ;; ROUNDPD xmm_y, xmm_y, 0x0B
4452
- ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4453
- ;; SHUFPS xmm_y, xmm_xmp, 0x88
4454
- (rule (lower (uunarrow (fcvt_to_uint_sat src @ (value_type $F64X2))
4455
- (vconst (u128_from_constant 0))))
4456
- (let ((src Xmm src)
4457
-
4458
- ;; MOVAPD xmm_y, xmm_x
4459
- ;; XORPD xmm_tmp, xmm_tmp
4460
- (zeros Xmm (xmm_zero $F64X2))
4461
- (dst Xmm (x64_maxpd src zeros))
4462
-
4463
- (umax_mask XmmMem (uunarrow_umax_mask))
4464
-
4465
- ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
4466
- (dst Xmm (x64_minpd dst umax_mask))
4467
-
4468
- ;; ROUNDPD xmm_y, xmm_y, 0x0B
4469
- (dst Xmm (x64_round $F64X2 dst (RoundImm.RoundZero)))
4470
-
4471
- ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
4472
- (uint_mask XmmMem (uunarrow_uint_mask))
4473
- (dst Xmm (x64_addpd dst uint_mask)))
4474
-
4475
- ;; SHUFPS xmm_y, xmm_xmp, 0x88
4476
- (x64_shufps dst zeros 0x88)))
4477
-
4478
- ;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
4479
-
4480
- (rule (lower (nop))
4481
- (invalid_reg))