wasmtime 37.0.2 → 38.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2030) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +82 -107
  3. data/ext/Cargo.toml +5 -5
  4. data/ext/cargo-vendor/cap-primitives-3.4.5/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cap-primitives-3.4.5/.cargo_vcs_info.json +6 -0
  6. data/ext/cargo-vendor/cap-primitives-3.4.5/Cargo.lock +340 -0
  7. data/ext/cargo-vendor/cap-primitives-3.4.5/Cargo.toml +96 -0
  8. data/ext/cargo-vendor/cap-primitives-3.4.5/Cargo.toml.orig +47 -0
  9. data/ext/cargo-vendor/cap-primitives-3.4.5/src/fs/via_parent/open_parent.rs +126 -0
  10. data/ext/cargo-vendor/cap-primitives-3.4.5/src/rustix/linux/fs/stat_impl.rs +56 -0
  11. data/ext/cargo-vendor/cap-std-3.4.5/.cargo-checksum.json +1 -0
  12. data/ext/cargo-vendor/cap-std-3.4.5/.cargo_vcs_info.json +6 -0
  13. data/ext/cargo-vendor/cap-std-3.4.5/Cargo.lock +313 -0
  14. data/ext/cargo-vendor/cap-std-3.4.5/Cargo.toml +77 -0
  15. data/ext/cargo-vendor/cap-std-3.4.5/Cargo.toml.orig +32 -0
  16. data/ext/cargo-vendor/cap-std-3.4.5/src/net/tcp_listener.rs +248 -0
  17. data/ext/cargo-vendor/cap-std-3.4.5/src/os/unix/net/unix_listener.rs +156 -0
  18. data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/.cargo-checksum.json +1 -0
  19. data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/.cargo_vcs_info.json +6 -0
  20. data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/Cargo.lock +133 -0
  21. data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/Cargo.toml +98 -0
  22. data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/Cargo.toml.orig +25 -0
  23. data/ext/cargo-vendor/cranelift-assembler-x64-0.125.4/src/rex.rs +236 -0
  24. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/.cargo-checksum.json +1 -0
  25. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/.cargo_vcs_info.json +6 -0
  26. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/Cargo.lock +16 -0
  27. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/Cargo.toml +73 -0
  28. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/Cargo.toml.orig +13 -0
  29. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/src/generate/inst.rs +322 -0
  30. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.125.4/src/generate.rs +110 -0
  31. data/ext/cargo-vendor/cranelift-bforest-0.125.4/.cargo-checksum.json +1 -0
  32. data/ext/cargo-vendor/cranelift-bforest-0.125.4/.cargo_vcs_info.json +6 -0
  33. data/ext/cargo-vendor/cranelift-bforest-0.125.4/Cargo.lock +25 -0
  34. data/ext/cargo-vendor/cranelift-bforest-0.125.4/Cargo.toml +79 -0
  35. data/ext/cargo-vendor/cranelift-bforest-0.125.4/Cargo.toml.orig +19 -0
  36. data/ext/cargo-vendor/cranelift-bitset-0.125.4/.cargo-checksum.json +1 -0
  37. data/ext/cargo-vendor/cranelift-bitset-0.125.4/.cargo_vcs_info.json +6 -0
  38. data/ext/cargo-vendor/cranelift-bitset-0.125.4/Cargo.lock +73 -0
  39. data/ext/cargo-vendor/cranelift-bitset-0.125.4/Cargo.toml +94 -0
  40. data/ext/cargo-vendor/cranelift-bitset-0.125.4/Cargo.toml.orig +22 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.125.4/.cargo-checksum.json +1 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.125.4/.cargo_vcs_info.json +6 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.125.4/Cargo.lock +1352 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.125.4/Cargo.toml +252 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.125.4/Cargo.toml.orig +130 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/inline.rs +1546 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/ir/instructions.rs +1540 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/abi.rs +1619 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst/args.rs +726 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst/emit.rs +3678 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst/mod.rs +3106 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/inst.isle +5205 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/aarch64/lower.isle +3273 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/call_conv.rs +145 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/inst/emit.rs +699 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/inst/mod.rs +936 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/inst.isle +794 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/pulley_shared/lower.isle +1838 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/inst/emit.rs +2877 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/inst/mod.rs +1933 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/inst.isle +3264 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/lower.isle +3140 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/riscv64/mod.rs +300 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/abi.rs +1526 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/inst/emit.rs +3551 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/inst/mod.rs +3542 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/inst.isle +4946 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/s390x/lower.isle +4075 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/abi.rs +1336 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst/args.rs +1063 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst/emit.rs +2188 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst/mod.rs +1662 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/inst.isle +4099 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/lower/isle.rs +1250 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/lower.isle +5061 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/mod.rs +272 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/isa/x64/pcc.rs +324 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/lib.rs +123 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/abi.rs +2572 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/blockorder.rs +485 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/isle.rs +839 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/machinst/lower.rs +1777 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/arithmetic.isle +343 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/bitops.isle +231 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/icmp.isle +304 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/selects.isle +104 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/opts/shifts.isle +314 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/prelude_lower.isle +1204 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/settings.rs +568 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/verifier/mod.rs +2258 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.125.4/src/write.rs +724 -0
  92. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/.cargo-checksum.json +1 -0
  93. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/.cargo_vcs_info.json +6 -0
  94. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/Cargo.lock +110 -0
  95. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/Cargo.toml +90 -0
  96. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/Cargo.toml.orig +26 -0
  97. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/formats.rs +158 -0
  98. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/instructions.rs +504 -0
  99. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/mod.rs +61 -0
  100. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/operands.rs +173 -0
  101. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/cdsl/settings.rs +336 -0
  102. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_asm.rs +740 -0
  103. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_inst.rs +1387 -0
  104. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_isle.rs +1226 -0
  105. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/gen_settings.rs +423 -0
  106. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/isa/riscv64.rs +190 -0
  107. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/isa/x86.rs +428 -0
  108. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/entities.rs +142 -0
  109. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/formats.rs +230 -0
  110. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/instructions.rs +3905 -0
  111. data/ext/cargo-vendor/cranelift-codegen-meta-0.125.4/src/shared/settings.rs +376 -0
  112. data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/.cargo-checksum.json +1 -0
  113. data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/.cargo_vcs_info.json +6 -0
  114. data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/Cargo.lock +7 -0
  115. data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/Cargo.toml +34 -0
  116. data/ext/cargo-vendor/cranelift-codegen-shared-0.125.4/Cargo.toml.orig +14 -0
  117. data/ext/cargo-vendor/cranelift-control-0.125.4/.cargo-checksum.json +1 -0
  118. data/ext/cargo-vendor/cranelift-control-0.125.4/.cargo_vcs_info.json +6 -0
  119. data/ext/cargo-vendor/cranelift-control-0.125.4/Cargo.lock +16 -0
  120. data/ext/cargo-vendor/cranelift-control-0.125.4/Cargo.toml +45 -0
  121. data/ext/cargo-vendor/cranelift-control-0.125.4/Cargo.toml.orig +25 -0
  122. data/ext/cargo-vendor/cranelift-entity-0.125.4/.cargo-checksum.json +1 -0
  123. data/ext/cargo-vendor/cranelift-entity-0.125.4/.cargo_vcs_info.json +6 -0
  124. data/ext/cargo-vendor/cranelift-entity-0.125.4/Cargo.lock +77 -0
  125. data/ext/cargo-vendor/cranelift-entity-0.125.4/Cargo.toml +95 -0
  126. data/ext/cargo-vendor/cranelift-entity-0.125.4/Cargo.toml.orig +24 -0
  127. data/ext/cargo-vendor/cranelift-entity-0.125.4/src/primary.rs +570 -0
  128. data/ext/cargo-vendor/cranelift-frontend-0.125.4/.cargo-checksum.json +1 -0
  129. data/ext/cargo-vendor/cranelift-frontend-0.125.4/.cargo_vcs_info.json +6 -0
  130. data/ext/cargo-vendor/cranelift-frontend-0.125.4/Cargo.lock +531 -0
  131. data/ext/cargo-vendor/cranelift-frontend-0.125.4/Cargo.toml +117 -0
  132. data/ext/cargo-vendor/cranelift-frontend-0.125.4/Cargo.toml.orig +32 -0
  133. data/ext/cargo-vendor/cranelift-frontend-0.125.4/src/frontend.rs +2030 -0
  134. data/ext/cargo-vendor/cranelift-isle-0.125.4/.cargo-checksum.json +1 -0
  135. data/ext/cargo-vendor/cranelift-isle-0.125.4/.cargo_vcs_info.json +6 -0
  136. data/ext/cargo-vendor/cranelift-isle-0.125.4/Cargo.lock +322 -0
  137. data/ext/cargo-vendor/cranelift-isle-0.125.4/Cargo.toml +89 -0
  138. data/ext/cargo-vendor/cranelift-isle-0.125.4/Cargo.toml.orig +26 -0
  139. data/ext/cargo-vendor/cranelift-native-0.125.4/.cargo-checksum.json +1 -0
  140. data/ext/cargo-vendor/cranelift-native-0.125.4/.cargo_vcs_info.json +6 -0
  141. data/ext/cargo-vendor/cranelift-native-0.125.4/Cargo.lock +305 -0
  142. data/ext/cargo-vendor/cranelift-native-0.125.4/Cargo.toml +54 -0
  143. data/ext/cargo-vendor/cranelift-native-0.125.4/Cargo.toml.orig +24 -0
  144. data/ext/cargo-vendor/cranelift-srcgen-0.125.4/.cargo-checksum.json +1 -0
  145. data/ext/cargo-vendor/cranelift-srcgen-0.125.4/.cargo_vcs_info.json +6 -0
  146. data/ext/cargo-vendor/cranelift-srcgen-0.125.4/Cargo.lock +7 -0
  147. data/ext/cargo-vendor/cranelift-srcgen-0.125.4/Cargo.toml +70 -0
  148. data/ext/cargo-vendor/cranelift-srcgen-0.125.4/Cargo.toml.orig +14 -0
  149. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/.cargo-checksum.json +1 -0
  150. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/.cargo_vcs_info.json +6 -0
  151. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/Cargo.lock +2181 -0
  152. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/Cargo.toml +79 -0
  153. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.3/Cargo.toml.orig +27 -0
  154. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/.cargo-checksum.json +1 -0
  155. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/.cargo_vcs_info.json +6 -0
  156. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/Cargo.lock +138 -0
  157. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/Cargo.toml +56 -0
  158. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/Cargo.toml.orig +21 -0
  159. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/README.md +31 -0
  160. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/category.rs +86 -0
  161. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/category_color.rs +41 -0
  162. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/counters.rs +156 -0
  163. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/cpu_delta.rs +60 -0
  164. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/fast_hash_map.rs +3 -0
  165. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/frame.rs +75 -0
  166. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/frame_table.rs +146 -0
  167. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/func_table.rs +110 -0
  168. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/global_lib_table.rs +119 -0
  169. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/lib.rs +81 -0
  170. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/lib_mappings.rs +161 -0
  171. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/library_info.rs +121 -0
  172. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/marker_table.rs +251 -0
  173. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/markers.rs +831 -0
  174. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/native_symbols.rs +71 -0
  175. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/process.rs +121 -0
  176. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/profile.rs +1169 -0
  177. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/reference_timestamp.rs +44 -0
  178. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/resource_table.rs +62 -0
  179. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/sample_table.rs +335 -0
  180. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/serialization_helpers.rs +41 -0
  181. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/stack_table.rs +79 -0
  182. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/string_table.rs +66 -0
  183. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/thread.rs +263 -0
  184. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/thread_string_table.rs +50 -0
  185. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/src/timestamp.rs +68 -0
  186. data/ext/cargo-vendor/fxprof-processed-profile-0.8.1/tests/integration_tests/main.rs +1540 -0
  187. data/ext/cargo-vendor/pulley-interpreter-38.0.4/.cargo-checksum.json +1 -0
  188. data/ext/cargo-vendor/pulley-interpreter-38.0.4/.cargo_vcs_info.json +6 -0
  189. data/ext/cargo-vendor/pulley-interpreter-38.0.4/Cargo.lock +426 -0
  190. data/ext/cargo-vendor/pulley-interpreter-38.0.4/Cargo.toml +144 -0
  191. data/ext/cargo-vendor/pulley-interpreter-38.0.4/src/lib.rs +1423 -0
  192. data/ext/cargo-vendor/pulley-macros-38.0.4/.cargo-checksum.json +1 -0
  193. data/ext/cargo-vendor/pulley-macros-38.0.4/.cargo_vcs_info.json +6 -0
  194. data/ext/cargo-vendor/pulley-macros-38.0.4/Cargo.lock +47 -0
  195. data/ext/cargo-vendor/pulley-macros-38.0.4/Cargo.toml +42 -0
  196. data/ext/cargo-vendor/wasmtime-38.0.4/.cargo-checksum.json +1 -0
  197. data/ext/cargo-vendor/wasmtime-38.0.4/.cargo_vcs_info.json +6 -0
  198. data/ext/cargo-vendor/wasmtime-38.0.4/Cargo.lock +2231 -0
  199. data/ext/cargo-vendor/wasmtime-38.0.4/Cargo.toml +552 -0
  200. data/ext/cargo-vendor/wasmtime-38.0.4/Cargo.toml.orig +410 -0
  201. data/ext/cargo-vendor/wasmtime-38.0.4/build.rs +100 -0
  202. data/ext/cargo-vendor/wasmtime-38.0.4/src/compile.rs +1052 -0
  203. data/ext/cargo-vendor/wasmtime-38.0.4/src/config.rs +3776 -0
  204. data/ext/cargo-vendor/wasmtime-38.0.4/src/engine/serialization.rs +801 -0
  205. data/ext/cargo-vendor/wasmtime-38.0.4/src/engine.rs +963 -0
  206. data/ext/cargo-vendor/wasmtime-38.0.4/src/lib.rs +440 -0
  207. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/component.rs +913 -0
  208. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/concurrent/futures_and_streams.rs +4326 -0
  209. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/concurrent.rs +4687 -0
  210. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/func/host.rs +957 -0
  211. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/func/typed.rs +2888 -0
  212. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/func.rs +977 -0
  213. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/instance.rs +1030 -0
  214. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/component/mod.rs +758 -0
  215. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/coredump.rs +356 -0
  216. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/func.rs +2666 -0
  217. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/instantiate.rs +285 -0
  218. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/memory.rs +1118 -0
  219. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/module.rs +1231 -0
  220. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/profiling.rs +350 -0
  221. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/store.rs +2785 -0
  222. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trampoline/memory.rs +275 -0
  223. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trampoline/table.rs +51 -0
  224. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trampoline/tag.rs +55 -0
  225. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/trap.rs +634 -0
  226. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/component/libcalls.rs +1363 -0
  227. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/component.rs +1042 -0
  228. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/helpers.c +50 -0
  229. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/instance.rs +1864 -0
  230. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/interpreter.rs +506 -0
  231. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/interpreter_disabled.rs +63 -0
  232. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/stack_switching/stack/unix/x86_64.rs +86 -0
  233. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/stack_switching/stack/unix.rs +350 -0
  234. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/stack_switching.rs +691 -0
  235. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/custom/capi.rs +185 -0
  236. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/custom/traphandlers.rs +46 -0
  237. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/miri/traphandlers.rs +6 -0
  238. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/unix/machports.rs +513 -0
  239. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/unix/signals.rs +558 -0
  240. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/unix/traphandlers.rs +59 -0
  241. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/windows/traphandlers.rs +11 -0
  242. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/sys/windows/vectored_exceptions.rs +289 -0
  243. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/throw.rs +128 -0
  244. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/traphandlers.rs +1369 -0
  245. data/ext/cargo-vendor/wasmtime-38.0.4/src/runtime/vm/vmcontext.rs +1727 -0
  246. data/ext/cargo-vendor/wasmtime-environ-38.0.4/.cargo-checksum.json +1 -0
  247. data/ext/cargo-vendor/wasmtime-environ-38.0.4/.cargo_vcs_info.json +6 -0
  248. data/ext/cargo-vendor/wasmtime-environ-38.0.4/Cargo.lock +681 -0
  249. data/ext/cargo-vendor/wasmtime-environ-38.0.4/Cargo.toml +241 -0
  250. data/ext/cargo-vendor/wasmtime-environ-38.0.4/Cargo.toml.orig +82 -0
  251. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/address_map.rs +138 -0
  252. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/builtin.rs +458 -0
  253. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/compile/mod.rs +487 -0
  254. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/compile/module_artifacts.rs +310 -0
  255. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/compile/module_environ.rs +1313 -0
  256. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/artifacts.rs +30 -0
  257. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/compiler.rs +22 -0
  258. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/dfg.rs +1235 -0
  259. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/info.rs +1186 -0
  260. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component/translate/inline.rs +1867 -0
  261. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/component.rs +213 -0
  262. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/hostcall.rs +83 -0
  263. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/key.rs +452 -0
  264. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/lib.rs +82 -0
  265. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/module.rs +796 -0
  266. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/module_artifacts.rs +812 -0
  267. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/trap_encoding.rs +251 -0
  268. data/ext/cargo-vendor/wasmtime-environ-38.0.4/src/vmoffsets.rs +1177 -0
  269. data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/.cargo-checksum.json +1 -0
  270. data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/.cargo_vcs_info.json +6 -0
  271. data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/Cargo.lock +840 -0
  272. data/ext/cargo-vendor/wasmtime-internal-cache-38.0.4/Cargo.toml +128 -0
  273. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/.cargo-checksum.json +1 -0
  274. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/.cargo_vcs_info.json +6 -0
  275. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/Cargo.lock +285 -0
  276. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/Cargo.toml +146 -0
  277. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/codegen.rs +787 -0
  278. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path1_async.rs +206 -0
  279. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path1_concurrent.rs +206 -0
  280. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path1_tracing_async.rs +206 -0
  281. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path2_async.rs +206 -0
  282. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path2_concurrent.rs +206 -0
  283. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/path2_tracing_async.rs +206 -0
  284. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/worlds-with-types_async.rs +272 -0
  285. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/worlds-with-types_concurrent.rs +272 -0
  286. data/ext/cargo-vendor/wasmtime-internal-component-macro-38.0.4/tests/expanded/worlds-with-types_tracing_async.rs +280 -0
  287. data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/.cargo-checksum.json +1 -0
  288. data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/.cargo_vcs_info.json +6 -0
  289. data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/Cargo.lock +7 -0
  290. data/ext/cargo-vendor/wasmtime-internal-component-util-38.0.4/Cargo.toml +38 -0
  291. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/.cargo-checksum.json +1 -0
  292. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/.cargo_vcs_info.json +6 -0
  293. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/Cargo.lock +711 -0
  294. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/Cargo.toml +187 -0
  295. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/compiler/component.rs +1721 -0
  296. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/compiler.rs +1541 -0
  297. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/func_environ/stack_switching/instructions.rs +1917 -0
  298. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/func_environ.rs +4313 -0
  299. data/ext/cargo-vendor/wasmtime-internal-cranelift-38.0.4/src/lib.rs +449 -0
  300. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/.cargo-checksum.json +1 -0
  301. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/.cargo_vcs_info.json +6 -0
  302. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/Cargo.lock +343 -0
  303. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/Cargo.toml +107 -0
  304. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/Cargo.toml.orig +41 -0
  305. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/build.rs +35 -0
  306. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/lib.rs +431 -0
  307. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/aarch64.rs +189 -0
  308. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/arm.rs +95 -0
  309. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/riscv64.rs +166 -0
  310. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/s390x.rs +117 -0
  311. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/x86.rs +118 -0
  312. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch/x86_64.rs +168 -0
  313. data/ext/cargo-vendor/wasmtime-internal-fiber-38.0.4/src/stackswitch.rs +73 -0
  314. data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/.cargo-checksum.json +1 -0
  315. data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/.cargo_vcs_info.json +6 -0
  316. data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/Cargo.lock +203 -0
  317. data/ext/cargo-vendor/wasmtime-internal-jit-debug-38.0.4/Cargo.toml +110 -0
  318. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/.cargo-checksum.json +1 -0
  319. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/.cargo_vcs_info.json +6 -0
  320. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/Cargo.lock +104 -0
  321. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-38.0.4/Cargo.toml +91 -0
  322. data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/.cargo-checksum.json +1 -0
  323. data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/.cargo_vcs_info.json +6 -0
  324. data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/Cargo.lock +16 -0
  325. data/ext/cargo-vendor/wasmtime-internal-math-38.0.4/Cargo.toml +78 -0
  326. data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/.cargo-checksum.json +1 -0
  327. data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/.cargo_vcs_info.json +6 -0
  328. data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/Cargo.lock +7 -0
  329. data/ext/cargo-vendor/wasmtime-internal-slab-38.0.4/Cargo.toml +70 -0
  330. data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/.cargo-checksum.json +1 -0
  331. data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/.cargo_vcs_info.json +6 -0
  332. data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/Cargo.lock +328 -0
  333. data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/Cargo.toml +106 -0
  334. data/ext/cargo-vendor/wasmtime-internal-unwinder-38.0.4/src/stackwalk.rs +261 -0
  335. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/.cargo-checksum.json +1 -0
  336. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/.cargo_vcs_info.json +6 -0
  337. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/Cargo.lock +47 -0
  338. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-38.0.4/Cargo.toml +43 -0
  339. data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/.cargo-checksum.json +1 -0
  340. data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/.cargo_vcs_info.json +6 -0
  341. data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/Cargo.lock +649 -0
  342. data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/Cargo.toml +132 -0
  343. data/ext/cargo-vendor/wasmtime-internal-winch-38.0.4/src/compiler.rs +401 -0
  344. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/.cargo-checksum.json +1 -0
  345. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/.cargo_vcs_info.json +6 -0
  346. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/Cargo.lock +193 -0
  347. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/Cargo.toml +90 -0
  348. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/src/config.rs +164 -0
  349. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-38.0.4/src/lib.rs +3530 -0
  350. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/.cargo-checksum.json +1 -0
  351. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/.cargo_vcs_info.json +6 -0
  352. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/Cargo.lock +2501 -0
  353. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/Cargo.toml +262 -0
  354. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/src/lib.rs +48 -0
  355. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/src/sockets/tcp.rs +819 -0
  356. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/src/view.rs +95 -0
  357. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/tests/all/p3/mod.rs +154 -0
  358. data/ext/cargo-vendor/wasmtime-wasi-38.0.4/tests/all/store.rs +86 -0
  359. data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/.cargo-checksum.json +1 -0
  360. data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/.cargo_vcs_info.json +6 -0
  361. data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/Cargo.lock +1200 -0
  362. data/ext/cargo-vendor/wasmtime-wasi-io-38.0.4/Cargo.toml +105 -0
  363. data/ext/cargo-vendor/wiggle-38.0.4/.cargo-checksum.json +1 -0
  364. data/ext/cargo-vendor/wiggle-38.0.4/.cargo_vcs_info.json +6 -0
  365. data/ext/cargo-vendor/wiggle-38.0.4/Cargo.lock +1157 -0
  366. data/ext/cargo-vendor/wiggle-38.0.4/Cargo.toml +139 -0
  367. data/ext/cargo-vendor/wiggle-generate-38.0.4/.cargo-checksum.json +1 -0
  368. data/ext/cargo-vendor/wiggle-generate-38.0.4/.cargo_vcs_info.json +6 -0
  369. data/ext/cargo-vendor/wiggle-generate-38.0.4/Cargo.lock +115 -0
  370. data/ext/cargo-vendor/wiggle-generate-38.0.4/Cargo.toml +102 -0
  371. data/ext/cargo-vendor/wiggle-macro-38.0.4/.cargo-checksum.json +1 -0
  372. data/ext/cargo-vendor/wiggle-macro-38.0.4/.cargo_vcs_info.json +6 -0
  373. data/ext/cargo-vendor/wiggle-macro-38.0.4/Cargo.lock +127 -0
  374. data/ext/cargo-vendor/wiggle-macro-38.0.4/Cargo.toml +98 -0
  375. data/ext/cargo-vendor/winch-codegen-38.0.4/.cargo-checksum.json +1 -0
  376. data/ext/cargo-vendor/winch-codegen-38.0.4/.cargo_vcs_info.json +6 -0
  377. data/ext/cargo-vendor/winch-codegen-38.0.4/Cargo.lock +620 -0
  378. data/ext/cargo-vendor/winch-codegen-38.0.4/Cargo.toml +133 -0
  379. data/ext/cargo-vendor/winch-codegen-38.0.4/src/codegen/env.rs +415 -0
  380. data/lib/wasmtime/version.rb +1 -1
  381. metadata +1627 -1652
  382. data/ext/cargo-vendor/byteorder-1.5.0/.cargo-checksum.json +0 -1
  383. data/ext/cargo-vendor/byteorder-1.5.0/.cargo_vcs_info.json +0 -6
  384. data/ext/cargo-vendor/byteorder-1.5.0/.github/workflows/ci.yml +0 -183
  385. data/ext/cargo-vendor/byteorder-1.5.0/CHANGELOG.md +0 -143
  386. data/ext/cargo-vendor/byteorder-1.5.0/COPYING +0 -3
  387. data/ext/cargo-vendor/byteorder-1.5.0/Cargo.toml +0 -54
  388. data/ext/cargo-vendor/byteorder-1.5.0/Cargo.toml.orig +0 -34
  389. data/ext/cargo-vendor/byteorder-1.5.0/LICENSE-MIT +0 -21
  390. data/ext/cargo-vendor/byteorder-1.5.0/README.md +0 -77
  391. data/ext/cargo-vendor/byteorder-1.5.0/UNLICENSE +0 -24
  392. data/ext/cargo-vendor/byteorder-1.5.0/benches/bench.rs +0 -326
  393. data/ext/cargo-vendor/byteorder-1.5.0/rustfmt.toml +0 -2
  394. data/ext/cargo-vendor/byteorder-1.5.0/src/io.rs +0 -1592
  395. data/ext/cargo-vendor/byteorder-1.5.0/src/lib.rs +0 -3975
  396. data/ext/cargo-vendor/cap-primitives-3.4.4/.cargo-checksum.json +0 -1
  397. data/ext/cargo-vendor/cap-primitives-3.4.4/.cargo_vcs_info.json +0 -6
  398. data/ext/cargo-vendor/cap-primitives-3.4.4/Cargo.lock +0 -260
  399. data/ext/cargo-vendor/cap-primitives-3.4.4/Cargo.toml +0 -96
  400. data/ext/cargo-vendor/cap-primitives-3.4.4/Cargo.toml.orig +0 -47
  401. data/ext/cargo-vendor/cap-primitives-3.4.4/src/fs/via_parent/open_parent.rs +0 -126
  402. data/ext/cargo-vendor/cap-primitives-3.4.4/src/rustix/linux/fs/stat_impl.rs +0 -55
  403. data/ext/cargo-vendor/cap-std-3.4.4/.cargo-checksum.json +0 -1
  404. data/ext/cargo-vendor/cap-std-3.4.4/.cargo_vcs_info.json +0 -6
  405. data/ext/cargo-vendor/cap-std-3.4.4/Cargo.lock +0 -233
  406. data/ext/cargo-vendor/cap-std-3.4.4/Cargo.toml +0 -77
  407. data/ext/cargo-vendor/cap-std-3.4.4/Cargo.toml.orig +0 -32
  408. data/ext/cargo-vendor/cap-std-3.4.4/src/net/tcp_listener.rs +0 -248
  409. data/ext/cargo-vendor/cap-std-3.4.4/src/os/unix/net/unix_listener.rs +0 -156
  410. data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/.cargo-checksum.json +0 -1
  411. data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/.cargo_vcs_info.json +0 -6
  412. data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/Cargo.lock +0 -133
  413. data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/Cargo.toml +0 -98
  414. data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/Cargo.toml.orig +0 -25
  415. data/ext/cargo-vendor/cranelift-assembler-x64-0.124.2/src/rex.rs +0 -236
  416. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/.cargo-checksum.json +0 -1
  417. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/.cargo_vcs_info.json +0 -6
  418. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/Cargo.lock +0 -16
  419. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/Cargo.toml +0 -73
  420. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/Cargo.toml.orig +0 -13
  421. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/src/generate/inst.rs +0 -307
  422. data/ext/cargo-vendor/cranelift-assembler-x64-meta-0.124.2/src/generate.rs +0 -150
  423. data/ext/cargo-vendor/cranelift-bforest-0.124.2/.cargo-checksum.json +0 -1
  424. data/ext/cargo-vendor/cranelift-bforest-0.124.2/.cargo_vcs_info.json +0 -6
  425. data/ext/cargo-vendor/cranelift-bforest-0.124.2/Cargo.lock +0 -25
  426. data/ext/cargo-vendor/cranelift-bforest-0.124.2/Cargo.toml +0 -79
  427. data/ext/cargo-vendor/cranelift-bforest-0.124.2/Cargo.toml.orig +0 -19
  428. data/ext/cargo-vendor/cranelift-bitset-0.124.2/.cargo-checksum.json +0 -1
  429. data/ext/cargo-vendor/cranelift-bitset-0.124.2/.cargo_vcs_info.json +0 -6
  430. data/ext/cargo-vendor/cranelift-bitset-0.124.2/Cargo.lock +0 -73
  431. data/ext/cargo-vendor/cranelift-bitset-0.124.2/Cargo.toml +0 -94
  432. data/ext/cargo-vendor/cranelift-bitset-0.124.2/Cargo.toml.orig +0 -22
  433. data/ext/cargo-vendor/cranelift-codegen-0.124.2/.cargo-checksum.json +0 -1
  434. data/ext/cargo-vendor/cranelift-codegen-0.124.2/.cargo_vcs_info.json +0 -6
  435. data/ext/cargo-vendor/cranelift-codegen-0.124.2/Cargo.lock +0 -1352
  436. data/ext/cargo-vendor/cranelift-codegen-0.124.2/Cargo.toml +0 -252
  437. data/ext/cargo-vendor/cranelift-codegen-0.124.2/Cargo.toml.orig +0 -130
  438. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/inline.rs +0 -1542
  439. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/ir/instructions.rs +0 -1515
  440. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/abi.rs +0 -1616
  441. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst/args.rs +0 -711
  442. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst/emit.rs +0 -3666
  443. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst/mod.rs +0 -3098
  444. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/inst.isle +0 -5184
  445. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/aarch64/lower.isle +0 -3240
  446. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/call_conv.rs +0 -145
  447. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/inst/emit.rs +0 -693
  448. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/inst/mod.rs +0 -927
  449. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/inst.isle +0 -783
  450. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/pulley_shared/lower.isle +0 -1831
  451. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/inst/emit.rs +0 -2856
  452. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/inst/mod.rs +0 -1925
  453. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/inst.isle +0 -3252
  454. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/lower.isle +0 -3133
  455. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/riscv64/mod.rs +0 -294
  456. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/abi.rs +0 -1526
  457. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/inst/emit.rs +0 -3543
  458. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/inst/mod.rs +0 -3533
  459. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/inst.isle +0 -4934
  460. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/s390x/lower.isle +0 -4069
  461. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/abi.rs +0 -1334
  462. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst/args.rs +0 -1048
  463. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst/emit.rs +0 -2183
  464. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst/mod.rs +0 -1652
  465. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/inst.isle +0 -4074
  466. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/lower/isle.rs +0 -1245
  467. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/lower.isle +0 -5055
  468. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/mod.rs +0 -262
  469. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/isa/x64/pcc.rs +0 -322
  470. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/lib.rs +0 -123
  471. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/abi.rs +0 -2567
  472. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/blockorder.rs +0 -471
  473. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/isle.rs +0 -815
  474. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/machinst/lower.rs +0 -1763
  475. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/arithmetic.isle +0 -333
  476. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/bitops.isle +0 -204
  477. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/icmp.isle +0 -300
  478. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/selects.isle +0 -100
  479. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/opts/shifts.isle +0 -307
  480. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/prelude_lower.isle +0 -1196
  481. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/settings.rs +0 -572
  482. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/verifier/mod.rs +0 -2205
  483. data/ext/cargo-vendor/cranelift-codegen-0.124.2/src/write.rs +0 -723
  484. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/.cargo-checksum.json +0 -1
  485. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/.cargo_vcs_info.json +0 -6
  486. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/Cargo.lock +0 -110
  487. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/Cargo.toml +0 -90
  488. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/Cargo.toml.orig +0 -26
  489. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/formats.rs +0 -144
  490. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/instructions.rs +0 -494
  491. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/mod.rs +0 -72
  492. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/operands.rs +0 -169
  493. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/cdsl/settings.rs +0 -429
  494. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_asm.rs +0 -740
  495. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_inst.rs +0 -1311
  496. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_isle.rs +0 -1199
  497. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/gen_settings.rs +0 -452
  498. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/isa/riscv64.rs +0 -195
  499. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/isa/x86.rs +0 -448
  500. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/entities.rs +0 -131
  501. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/formats.rs +0 -224
  502. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/instructions.rs +0 -3873
  503. data/ext/cargo-vendor/cranelift-codegen-meta-0.124.2/src/shared/settings.rs +0 -411
  504. data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/.cargo-checksum.json +0 -1
  505. data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/.cargo_vcs_info.json +0 -6
  506. data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/Cargo.lock +0 -7
  507. data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/Cargo.toml +0 -34
  508. data/ext/cargo-vendor/cranelift-codegen-shared-0.124.2/Cargo.toml.orig +0 -14
  509. data/ext/cargo-vendor/cranelift-control-0.124.2/.cargo-checksum.json +0 -1
  510. data/ext/cargo-vendor/cranelift-control-0.124.2/.cargo_vcs_info.json +0 -6
  511. data/ext/cargo-vendor/cranelift-control-0.124.2/Cargo.lock +0 -16
  512. data/ext/cargo-vendor/cranelift-control-0.124.2/Cargo.toml +0 -45
  513. data/ext/cargo-vendor/cranelift-control-0.124.2/Cargo.toml.orig +0 -25
  514. data/ext/cargo-vendor/cranelift-entity-0.124.2/.cargo-checksum.json +0 -1
  515. data/ext/cargo-vendor/cranelift-entity-0.124.2/.cargo_vcs_info.json +0 -6
  516. data/ext/cargo-vendor/cranelift-entity-0.124.2/Cargo.lock +0 -77
  517. data/ext/cargo-vendor/cranelift-entity-0.124.2/Cargo.toml +0 -95
  518. data/ext/cargo-vendor/cranelift-entity-0.124.2/Cargo.toml.orig +0 -24
  519. data/ext/cargo-vendor/cranelift-entity-0.124.2/src/primary.rs +0 -548
  520. data/ext/cargo-vendor/cranelift-frontend-0.124.2/.cargo-checksum.json +0 -1
  521. data/ext/cargo-vendor/cranelift-frontend-0.124.2/.cargo_vcs_info.json +0 -6
  522. data/ext/cargo-vendor/cranelift-frontend-0.124.2/Cargo.lock +0 -531
  523. data/ext/cargo-vendor/cranelift-frontend-0.124.2/Cargo.toml +0 -117
  524. data/ext/cargo-vendor/cranelift-frontend-0.124.2/Cargo.toml.orig +0 -32
  525. data/ext/cargo-vendor/cranelift-frontend-0.124.2/src/frontend.rs +0 -2028
  526. data/ext/cargo-vendor/cranelift-isle-0.124.2/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-isle-0.124.2/.cargo_vcs_info.json +0 -6
  528. data/ext/cargo-vendor/cranelift-isle-0.124.2/Cargo.lock +0 -322
  529. data/ext/cargo-vendor/cranelift-isle-0.124.2/Cargo.toml +0 -89
  530. data/ext/cargo-vendor/cranelift-isle-0.124.2/Cargo.toml.orig +0 -26
  531. data/ext/cargo-vendor/cranelift-native-0.124.2/.cargo-checksum.json +0 -1
  532. data/ext/cargo-vendor/cranelift-native-0.124.2/.cargo_vcs_info.json +0 -6
  533. data/ext/cargo-vendor/cranelift-native-0.124.2/Cargo.lock +0 -305
  534. data/ext/cargo-vendor/cranelift-native-0.124.2/Cargo.toml +0 -54
  535. data/ext/cargo-vendor/cranelift-native-0.124.2/Cargo.toml.orig +0 -24
  536. data/ext/cargo-vendor/cranelift-srcgen-0.124.2/.cargo-checksum.json +0 -1
  537. data/ext/cargo-vendor/cranelift-srcgen-0.124.2/.cargo_vcs_info.json +0 -6
  538. data/ext/cargo-vendor/cranelift-srcgen-0.124.2/Cargo.lock +0 -7
  539. data/ext/cargo-vendor/cranelift-srcgen-0.124.2/Cargo.toml +0 -70
  540. data/ext/cargo-vendor/cranelift-srcgen-0.124.2/Cargo.toml.orig +0 -14
  541. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/.cargo-checksum.json +0 -1
  542. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/.cargo_vcs_info.json +0 -6
  543. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/Cargo.lock +0 -2192
  544. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/Cargo.toml +0 -79
  545. data/ext/cargo-vendor/deterministic-wasi-ctx-3.0.2/Cargo.toml.orig +0 -27
  546. data/ext/cargo-vendor/fxhash-0.2.1/.cargo-checksum.json +0 -1
  547. data/ext/cargo-vendor/fxhash-0.2.1/Cargo.toml +0 -38
  548. data/ext/cargo-vendor/fxhash-0.2.1/Cargo.toml.orig +0 -26
  549. data/ext/cargo-vendor/fxhash-0.2.1/README.md +0 -62
  550. data/ext/cargo-vendor/fxhash-0.2.1/bench.rs +0 -78
  551. data/ext/cargo-vendor/fxhash-0.2.1/lib.rs +0 -324
  552. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/.cargo-checksum.json +0 -1
  553. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/.cargo_vcs_info.json +0 -6
  554. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/Cargo.toml +0 -41
  555. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/Cargo.toml.orig +0 -20
  556. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/README.md +0 -27
  557. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/category.rs +0 -98
  558. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/category_color.rs +0 -41
  559. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/counters.rs +0 -130
  560. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/cpu_delta.rs +0 -59
  561. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/fast_hash_map.rs +0 -5
  562. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/frame.rs +0 -54
  563. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/frame_table.rs +0 -166
  564. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/func_table.rs +0 -110
  565. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/global_lib_table.rs +0 -76
  566. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/lib.rs +0 -74
  567. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/lib_mappings.rs +0 -140
  568. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/library_info.rs +0 -120
  569. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/marker_table.rs +0 -78
  570. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/markers.rs +0 -224
  571. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/native_symbols.rs +0 -73
  572. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/process.rs +0 -117
  573. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/profile.rs +0 -718
  574. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/reference_timestamp.rs +0 -43
  575. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/resource_table.rs +0 -63
  576. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/sample_table.rs +0 -50
  577. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/serialization_helpers.rs +0 -30
  578. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/stack_table.rs +0 -80
  579. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/string_table.rs +0 -66
  580. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/thread.rs +0 -225
  581. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/thread_string_table.rs +0 -50
  582. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/src/timestamp.rs +0 -29
  583. data/ext/cargo-vendor/fxprof-processed-profile-0.6.0/tests/integration_tests/main.rs +0 -1270
  584. data/ext/cargo-vendor/pulley-interpreter-37.0.2/.cargo-checksum.json +0 -1
  585. data/ext/cargo-vendor/pulley-interpreter-37.0.2/.cargo_vcs_info.json +0 -6
  586. data/ext/cargo-vendor/pulley-interpreter-37.0.2/Cargo.lock +0 -426
  587. data/ext/cargo-vendor/pulley-interpreter-37.0.2/Cargo.toml +0 -144
  588. data/ext/cargo-vendor/pulley-interpreter-37.0.2/src/lib.rs +0 -1423
  589. data/ext/cargo-vendor/pulley-macros-37.0.2/.cargo-checksum.json +0 -1
  590. data/ext/cargo-vendor/pulley-macros-37.0.2/.cargo_vcs_info.json +0 -6
  591. data/ext/cargo-vendor/pulley-macros-37.0.2/Cargo.lock +0 -47
  592. data/ext/cargo-vendor/pulley-macros-37.0.2/Cargo.toml +0 -42
  593. data/ext/cargo-vendor/wasmtime-37.0.2/.cargo-checksum.json +0 -1
  594. data/ext/cargo-vendor/wasmtime-37.0.2/.cargo_vcs_info.json +0 -6
  595. data/ext/cargo-vendor/wasmtime-37.0.2/Cargo.lock +0 -2250
  596. data/ext/cargo-vendor/wasmtime-37.0.2/Cargo.toml +0 -558
  597. data/ext/cargo-vendor/wasmtime-37.0.2/Cargo.toml.orig +0 -412
  598. data/ext/cargo-vendor/wasmtime-37.0.2/build.rs +0 -99
  599. data/ext/cargo-vendor/wasmtime-37.0.2/src/compile.rs +0 -1271
  600. data/ext/cargo-vendor/wasmtime-37.0.2/src/config.rs +0 -3792
  601. data/ext/cargo-vendor/wasmtime-37.0.2/src/engine/serialization.rs +0 -801
  602. data/ext/cargo-vendor/wasmtime-37.0.2/src/engine.rs +0 -976
  603. data/ext/cargo-vendor/wasmtime-37.0.2/src/lib.rs +0 -440
  604. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/component.rs +0 -898
  605. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/concurrent/futures_and_streams.rs +0 -4239
  606. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/concurrent.rs +0 -4585
  607. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/func/host.rs +0 -957
  608. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/func/typed.rs +0 -2888
  609. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/func.rs +0 -972
  610. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/instance.rs +0 -1024
  611. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/component/mod.rs +0 -758
  612. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/coredump.rs +0 -350
  613. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/func.rs +0 -2680
  614. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/instantiate.rs +0 -300
  615. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/memory.rs +0 -1115
  616. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/module.rs +0 -1224
  617. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/profiling.rs +0 -338
  618. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/store.rs +0 -2782
  619. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trampoline/memory.rs +0 -277
  620. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trampoline/table.rs +0 -50
  621. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trampoline/tag.rs +0 -54
  622. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/trap.rs +0 -634
  623. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/component/libcalls.rs +0 -1257
  624. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/component.rs +0 -1022
  625. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/helpers.c +0 -121
  626. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/instance.rs +0 -1862
  627. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/interpreter.rs +0 -619
  628. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/interpreter_disabled.rs +0 -70
  629. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/stack_switching/stack/unix/x86_64.rs +0 -83
  630. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/stack_switching/stack/unix.rs +0 -353
  631. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/stack_switching.rs +0 -691
  632. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/custom/capi.rs +0 -219
  633. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/custom/traphandlers.rs +0 -69
  634. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/miri/traphandlers.rs +0 -34
  635. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/unix/machports.rs +0 -515
  636. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/unix/signals.rs +0 -566
  637. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/unix/traphandlers.rs +0 -79
  638. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/windows/traphandlers.rs +0 -31
  639. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/sys/windows/vectored_exceptions.rs +0 -125
  640. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/throw.rs +0 -123
  641. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/traphandlers.rs +0 -1438
  642. data/ext/cargo-vendor/wasmtime-37.0.2/src/runtime/vm/vmcontext.rs +0 -1705
  643. data/ext/cargo-vendor/wasmtime-environ-37.0.2/.cargo-checksum.json +0 -1
  644. data/ext/cargo-vendor/wasmtime-environ-37.0.2/.cargo_vcs_info.json +0 -6
  645. data/ext/cargo-vendor/wasmtime-environ-37.0.2/Cargo.lock +0 -650
  646. data/ext/cargo-vendor/wasmtime-environ-37.0.2/Cargo.toml +0 -234
  647. data/ext/cargo-vendor/wasmtime-environ-37.0.2/Cargo.toml.orig +0 -80
  648. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/address_map.rs +0 -126
  649. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/builtin.rs +0 -451
  650. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/key.rs +0 -221
  651. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/mod.rs +0 -490
  652. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/module_artifacts.rs +0 -318
  653. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/compile/module_environ.rs +0 -1312
  654. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/artifacts.rs +0 -68
  655. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/compiler.rs +0 -21
  656. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/dfg.rs +0 -1100
  657. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/info.rs +0 -1124
  658. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component/translate/inline.rs +0 -1792
  659. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/component.rs +0 -213
  660. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/hostcall.rs +0 -82
  661. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/lib.rs +0 -80
  662. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/module.rs +0 -760
  663. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/module_artifacts.rs +0 -119
  664. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/trap_encoding.rs +0 -244
  665. data/ext/cargo-vendor/wasmtime-environ-37.0.2/src/vmoffsets.rs +0 -1167
  666. data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/.cargo-checksum.json +0 -1
  667. data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/.cargo_vcs_info.json +0 -6
  668. data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/Cargo.lock +0 -16
  669. data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/Cargo.toml +0 -35
  670. data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/Cargo.toml.orig +0 -14
  671. data/ext/cargo-vendor/wasmtime-internal-asm-macros-37.0.2/src/lib.rs +0 -90
  672. data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/.cargo-checksum.json +0 -1
  673. data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/.cargo_vcs_info.json +0 -6
  674. data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/Cargo.lock +0 -840
  675. data/ext/cargo-vendor/wasmtime-internal-cache-37.0.2/Cargo.toml +0 -128
  676. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/.cargo-checksum.json +0 -1
  677. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/.cargo_vcs_info.json +0 -6
  678. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/Cargo.lock +0 -285
  679. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/Cargo.toml +0 -146
  680. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/codegen.rs +0 -731
  681. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path1_async.rs +0 -206
  682. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path1_concurrent.rs +0 -206
  683. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path1_tracing_async.rs +0 -206
  684. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path2_async.rs +0 -206
  685. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path2_concurrent.rs +0 -206
  686. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/path2_tracing_async.rs +0 -206
  687. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/worlds-with-types_async.rs +0 -272
  688. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/worlds-with-types_concurrent.rs +0 -272
  689. data/ext/cargo-vendor/wasmtime-internal-component-macro-37.0.2/tests/expanded/worlds-with-types_tracing_async.rs +0 -280
  690. data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/.cargo-checksum.json +0 -1
  691. data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/.cargo_vcs_info.json +0 -6
  692. data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/Cargo.lock +0 -7
  693. data/ext/cargo-vendor/wasmtime-internal-component-util-37.0.2/Cargo.toml +0 -38
  694. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/.cargo-checksum.json +0 -1
  695. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/.cargo_vcs_info.json +0 -6
  696. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/Cargo.lock +0 -711
  697. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/Cargo.toml +0 -187
  698. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/compiler/component.rs +0 -1623
  699. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/compiler.rs +0 -1476
  700. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/func_environ/stack_switching/instructions.rs +0 -1917
  701. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/func_environ.rs +0 -4313
  702. data/ext/cargo-vendor/wasmtime-internal-cranelift-37.0.2/src/lib.rs +0 -449
  703. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/.cargo-checksum.json +0 -1
  704. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/.cargo_vcs_info.json +0 -6
  705. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/Cargo.lock +0 -353
  706. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/Cargo.toml +0 -111
  707. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/Cargo.toml.orig +0 -42
  708. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/build.rs +0 -39
  709. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/lib.rs +0 -434
  710. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/aarch64.rs +0 -184
  711. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/arm.rs +0 -86
  712. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/riscv64.rs +0 -158
  713. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/s390x.S +0 -123
  714. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/x86.rs +0 -109
  715. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch/x86_64.rs +0 -160
  716. data/ext/cargo-vendor/wasmtime-internal-fiber-37.0.2/src/stackswitch.rs +0 -80
  717. data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/.cargo-checksum.json +0 -1
  718. data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/.cargo_vcs_info.json +0 -6
  719. data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/Cargo.lock +0 -203
  720. data/ext/cargo-vendor/wasmtime-internal-jit-debug-37.0.2/Cargo.toml +0 -110
  721. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/.cargo-checksum.json +0 -1
  722. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/.cargo_vcs_info.json +0 -6
  723. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/Cargo.lock +0 -104
  724. data/ext/cargo-vendor/wasmtime-internal-jit-icache-coherence-37.0.2/Cargo.toml +0 -91
  725. data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/.cargo-checksum.json +0 -1
  726. data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/.cargo_vcs_info.json +0 -6
  727. data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/Cargo.lock +0 -16
  728. data/ext/cargo-vendor/wasmtime-internal-math-37.0.2/Cargo.toml +0 -78
  729. data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/.cargo-checksum.json +0 -1
  730. data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/.cargo_vcs_info.json +0 -6
  731. data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/Cargo.lock +0 -7
  732. data/ext/cargo-vendor/wasmtime-internal-slab-37.0.2/Cargo.toml +0 -70
  733. data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/.cargo-checksum.json +0 -1
  734. data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/.cargo_vcs_info.json +0 -6
  735. data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/Cargo.lock +0 -328
  736. data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/Cargo.toml +0 -106
  737. data/ext/cargo-vendor/wasmtime-internal-unwinder-37.0.2/src/stackwalk.rs +0 -219
  738. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/.cargo-checksum.json +0 -1
  739. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/.cargo_vcs_info.json +0 -6
  740. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/Cargo.lock +0 -47
  741. data/ext/cargo-vendor/wasmtime-internal-versioned-export-macros-37.0.2/Cargo.toml +0 -43
  742. data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/.cargo-checksum.json +0 -1
  743. data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/.cargo_vcs_info.json +0 -6
  744. data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/Cargo.lock +0 -649
  745. data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/Cargo.toml +0 -132
  746. data/ext/cargo-vendor/wasmtime-internal-winch-37.0.2/src/compiler.rs +0 -402
  747. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/.cargo-checksum.json +0 -1
  748. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/.cargo_vcs_info.json +0 -6
  749. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/Cargo.lock +0 -193
  750. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/Cargo.toml +0 -90
  751. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/src/config.rs +0 -164
  752. data/ext/cargo-vendor/wasmtime-internal-wit-bindgen-37.0.2/src/lib.rs +0 -3527
  753. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/.cargo-checksum.json +0 -1
  754. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/.cargo_vcs_info.json +0 -6
  755. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/Cargo.lock +0 -2512
  756. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/Cargo.toml +0 -262
  757. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/src/lib.rs +0 -48
  758. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/src/sockets/tcp.rs +0 -819
  759. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/src/view.rs +0 -95
  760. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/tests/all/p3/mod.rs +0 -144
  761. data/ext/cargo-vendor/wasmtime-wasi-37.0.2/tests/all/store.rs +0 -81
  762. data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/.cargo-checksum.json +0 -1
  763. data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/.cargo_vcs_info.json +0 -6
  764. data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/Cargo.lock +0 -1211
  765. data/ext/cargo-vendor/wasmtime-wasi-io-37.0.2/Cargo.toml +0 -105
  766. data/ext/cargo-vendor/wiggle-37.0.2/.cargo-checksum.json +0 -1
  767. data/ext/cargo-vendor/wiggle-37.0.2/.cargo_vcs_info.json +0 -6
  768. data/ext/cargo-vendor/wiggle-37.0.2/Cargo.lock +0 -1168
  769. data/ext/cargo-vendor/wiggle-37.0.2/Cargo.toml +0 -139
  770. data/ext/cargo-vendor/wiggle-generate-37.0.2/.cargo-checksum.json +0 -1
  771. data/ext/cargo-vendor/wiggle-generate-37.0.2/.cargo_vcs_info.json +0 -6
  772. data/ext/cargo-vendor/wiggle-generate-37.0.2/Cargo.lock +0 -115
  773. data/ext/cargo-vendor/wiggle-generate-37.0.2/Cargo.toml +0 -102
  774. data/ext/cargo-vendor/wiggle-macro-37.0.2/.cargo-checksum.json +0 -1
  775. data/ext/cargo-vendor/wiggle-macro-37.0.2/.cargo_vcs_info.json +0 -6
  776. data/ext/cargo-vendor/wiggle-macro-37.0.2/Cargo.lock +0 -127
  777. data/ext/cargo-vendor/wiggle-macro-37.0.2/Cargo.toml +0 -98
  778. data/ext/cargo-vendor/winch-codegen-37.0.2/.cargo-checksum.json +0 -1
  779. data/ext/cargo-vendor/winch-codegen-37.0.2/.cargo_vcs_info.json +0 -6
  780. data/ext/cargo-vendor/winch-codegen-37.0.2/Cargo.lock +0 -620
  781. data/ext/cargo-vendor/winch-codegen-37.0.2/Cargo.toml +0 -133
  782. data/ext/cargo-vendor/winch-codegen-37.0.2/src/codegen/env.rs +0 -415
  783. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/COPYRIGHT +0 -0
  784. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/LICENSE-APACHE +0 -0
  785. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  786. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/LICENSE-MIT +0 -0
  787. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/README.md +0 -0
  788. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/build.rs +0 -0
  789. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/access.rs +0 -0
  790. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/assert_same_file.rs +0 -0
  791. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/canonicalize.rs +0 -0
  792. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/copy.rs +0 -0
  793. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/create_dir.rs +0 -0
  794. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/dir_builder.rs +0 -0
  795. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/dir_entry.rs +0 -0
  796. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/dir_options.rs +0 -0
  797. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/errors.rs +0 -0
  798. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/file.rs +0 -0
  799. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/file_path_by_searching.rs +0 -0
  800. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/file_type.rs +0 -0
  801. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/follow_symlinks.rs +0 -0
  802. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/hard_link.rs +0 -0
  803. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/is_file_read_write.rs +0 -0
  804. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/canonical_path.rs +0 -0
  805. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/canonicalize.rs +0 -0
  806. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/cow_component.rs +0 -0
  807. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/mod.rs +0 -0
  808. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/open.rs +0 -0
  809. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/open_entry.rs +0 -0
  810. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/manually/read_link_one.rs +0 -0
  811. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/maybe_owned_file.rs +0 -0
  812. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/metadata.rs +0 -0
  813. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/mod.rs +0 -0
  814. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open.rs +0 -0
  815. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_ambient.rs +0 -0
  816. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_dir.rs +0 -0
  817. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_options.rs +0 -0
  818. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/open_unchecked_error.rs +0 -0
  819. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/permissions.rs +0 -0
  820. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/read_dir.rs +0 -0
  821. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/read_link.rs +0 -0
  822. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_dir.rs +0 -0
  823. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_dir_all.rs +0 -0
  824. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_file.rs +0 -0
  825. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/remove_open_dir.rs +0 -0
  826. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/rename.rs +0 -0
  827. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/reopen.rs +0 -0
  828. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/set_permissions.rs +0 -0
  829. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/set_times.rs +0 -0
  830. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/stat.rs +0 -0
  831. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/symlink.rs +0 -0
  832. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/system_time_spec.rs +0 -0
  833. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/access.rs +0 -0
  834. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/create_dir.rs +0 -0
  835. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/hard_link.rs +0 -0
  836. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/mod.rs +0 -0
  837. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/read_link.rs +0 -0
  838. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/remove_dir.rs +0 -0
  839. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/remove_file.rs +0 -0
  840. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/rename.rs +0 -0
  841. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/set_permissions.rs +0 -0
  842. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/set_symlink_permissions.rs +0 -0
  843. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/set_times_nofollow.rs +0 -0
  844. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/fs/via_parent/symlink.rs +0 -0
  845. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/lib.rs +0 -0
  846. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/net/mod.rs +0 -0
  847. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/net/pool.rs +0 -0
  848. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/darwin/fs/file_path.rs +0 -0
  849. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/darwin/fs/mod.rs +0 -0
  850. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/darwin/mod.rs +0 -0
  851. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/check.rs +0 -0
  852. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/mod.rs +0 -0
  853. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/open_entry_impl.rs +0 -0
  854. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/open_impl.rs +0 -0
  855. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/remove_dir_impl.rs +0 -0
  856. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/remove_file_impl.rs +0 -0
  857. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/set_permissions_impl.rs +0 -0
  858. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/set_times_impl.rs +0 -0
  859. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/fs/stat_impl.rs +0 -0
  860. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/freebsd/mod.rs +0 -0
  861. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/access_unchecked.rs +0 -0
  862. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/copy_impl.rs +0 -0
  863. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/create_dir_unchecked.rs +0 -0
  864. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/cvt.rs +0 -0
  865. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/dir_entry_inner.rs +0 -0
  866. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/dir_options_ext.rs +0 -0
  867. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/dir_utils.rs +0 -0
  868. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/errors.rs +0 -0
  869. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/file_path.rs +0 -0
  870. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/file_type_ext.rs +0 -0
  871. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/hard_link_unchecked.rs +0 -0
  872. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
  873. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/is_root_dir.rs +0 -0
  874. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/is_same_file.rs +0 -0
  875. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/metadata_ext.rs +0 -0
  876. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/mod.rs +0 -0
  877. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/oflags.rs +0 -0
  878. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/open_options_ext.rs +0 -0
  879. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/open_unchecked.rs +0 -0
  880. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/permissions_ext.rs +0 -0
  881. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/read_dir_inner.rs +0 -0
  882. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/read_link_unchecked.rs +0 -0
  883. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
  884. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
  885. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_file_unchecked.rs +0 -0
  886. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
  887. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/rename_unchecked.rs +0 -0
  888. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/reopen_impl.rs +0 -0
  889. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/set_permissions_impl.rs +0 -0
  890. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/set_symlink_permissions_unchecked.rs +0 -0
  891. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/set_times_impl.rs +0 -0
  892. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/stat_unchecked.rs +0 -0
  893. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/symlink_unchecked.rs +0 -0
  894. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/fs/times.rs +0 -0
  895. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
  896. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/file_metadata.rs +0 -0
  897. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/file_path.rs +0 -0
  898. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/mod.rs +0 -0
  899. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
  900. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/open_impl.rs +0 -0
  901. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/procfs.rs +0 -0
  902. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
  903. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/fs/set_times_impl.rs +0 -0
  904. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/linux/mod.rs +0 -0
  905. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/rustix/mod.rs +0 -0
  906. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/instant.rs +0 -0
  907. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/mod.rs +0 -0
  908. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/monotonic_clock.rs +0 -0
  909. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/system_clock.rs +0 -0
  910. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/time/system_time.rs +0 -0
  911. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/access_unchecked.rs +0 -0
  912. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/copy.rs +0 -0
  913. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/create_dir_unchecked.rs +0 -0
  914. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/create_file_at_w.rs +0 -0
  915. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/dir_entry_inner.rs +0 -0
  916. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/dir_options_ext.rs +0 -0
  917. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/dir_utils.rs +0 -0
  918. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/errors.rs +0 -0
  919. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/file_type_ext.rs +0 -0
  920. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/get_path.rs +0 -0
  921. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/hard_link_unchecked.rs +0 -0
  922. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/is_file_read_write_impl.rs +0 -0
  923. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/is_same_file.rs +0 -0
  924. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/metadata_ext.rs +0 -0
  925. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/mod.rs +0 -0
  926. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/oflags.rs +0 -0
  927. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/open_impl.rs +0 -0
  928. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/open_options_ext.rs +0 -0
  929. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/open_unchecked.rs +0 -0
  930. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/read_dir_inner.rs +0 -0
  931. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/read_link_impl.rs +0 -0
  932. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/read_link_unchecked.rs +0 -0
  933. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_dir_all_impl.rs +0 -0
  934. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_dir_unchecked.rs +0 -0
  935. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_file_unchecked.rs +0 -0
  936. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/remove_open_dir_impl.rs +0 -0
  937. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/rename_unchecked.rs +0 -0
  938. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/reopen_impl.rs +0 -0
  939. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/set_permissions_unchecked.rs +0 -0
  940. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/set_symlink_permissions_unchecked.rs +0 -0
  941. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/set_times_impl.rs +0 -0
  942. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/stat_unchecked.rs +0 -0
  943. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/fs/symlink_unchecked.rs +0 -0
  944. /data/ext/cargo-vendor/{cap-primitives-3.4.4 → cap-primitives-3.4.5}/src/windows/mod.rs +0 -0
  945. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/COPYRIGHT +0 -0
  946. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/LICENSE-APACHE +0 -0
  947. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  948. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/LICENSE-MIT +0 -0
  949. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/README.md +0 -0
  950. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/build.rs +0 -0
  951. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/dir.rs +0 -0
  952. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/dir_entry.rs +0 -0
  953. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/file.rs +0 -0
  954. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/mod.rs +0 -0
  955. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs/read_dir.rs +0 -0
  956. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/dir.rs +0 -0
  957. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/dir_entry.rs +0 -0
  958. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/file.rs +0 -0
  959. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/mod.rs +0 -0
  960. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/fs_utf8/read_dir.rs +0 -0
  961. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/lib.rs +0 -0
  962. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/incoming.rs +0 -0
  963. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/mod.rs +0 -0
  964. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/pool.rs +0 -0
  965. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/tcp_stream.rs +0 -0
  966. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/net/udp_socket.rs +0 -0
  967. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/mod.rs +0 -0
  968. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/mod.rs +0 -0
  969. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/incoming.rs +0 -0
  970. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/mod.rs +0 -0
  971. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/unix_datagram.rs +0 -0
  972. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/os/unix/net/unix_stream.rs +0 -0
  973. /data/ext/cargo-vendor/{cap-std-3.4.4 → cap-std-3.4.5}/src/time/mod.rs +0 -0
  974. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/README.md +0 -0
  975. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/build.rs +0 -0
  976. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/api.rs +0 -0
  977. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/custom.rs +0 -0
  978. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/evex.rs +0 -0
  979. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/features.rs +0 -0
  980. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/fixed.rs +0 -0
  981. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/fuzz.rs +0 -0
  982. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/gpr.rs +0 -0
  983. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/imm.rs +0 -0
  984. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/inst.rs +0 -0
  985. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/lib.rs +0 -0
  986. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/main.rs +0 -0
  987. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/mem.rs +0 -0
  988. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/vex.rs +0 -0
  989. /data/ext/cargo-vendor/{cranelift-assembler-x64-0.124.2 → cranelift-assembler-x64-0.125.4}/src/xmm.rs +0 -0
  990. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/README.md +0 -0
  991. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/custom.rs +0 -0
  992. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/encoding.rs +0 -0
  993. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/features.rs +0 -0
  994. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl/format.rs +0 -0
  995. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/dsl.rs +0 -0
  996. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/generate/features.rs +0 -0
  997. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/generate/format.rs +0 -0
  998. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/generate/operand.rs +0 -0
  999. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/abs.rs +0 -0
  1000. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/add.rs +0 -0
  1001. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/align.rs +0 -0
  1002. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/and.rs +0 -0
  1003. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/atomic.rs +0 -0
  1004. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/avg.rs +0 -0
  1005. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/bitmanip.rs +0 -0
  1006. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/cmov.rs +0 -0
  1007. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/cmp.rs +0 -0
  1008. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/cvt.rs +0 -0
  1009. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/div.rs +0 -0
  1010. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/fma.rs +0 -0
  1011. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/jmp.rs +0 -0
  1012. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/lanes.rs +0 -0
  1013. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/max.rs +0 -0
  1014. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/min.rs +0 -0
  1015. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/misc.rs +0 -0
  1016. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/mov.rs +0 -0
  1017. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/mul.rs +0 -0
  1018. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/neg.rs +0 -0
  1019. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/nop.rs +0 -0
  1020. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/or.rs +0 -0
  1021. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/pack.rs +0 -0
  1022. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/pma.rs +0 -0
  1023. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/recip.rs +0 -0
  1024. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/round.rs +0 -0
  1025. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/setcc.rs +0 -0
  1026. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/shift.rs +0 -0
  1027. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/sqrt.rs +0 -0
  1028. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/stack.rs +0 -0
  1029. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/sub.rs +0 -0
  1030. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/unpack.rs +0 -0
  1031. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions/xor.rs +0 -0
  1032. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/instructions.rs +0 -0
  1033. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/lib.rs +0 -0
  1034. /data/ext/cargo-vendor/{cranelift-assembler-x64-meta-0.124.2 → cranelift-assembler-x64-meta-0.125.4}/src/main.rs +0 -0
  1035. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/LICENSE +0 -0
  1036. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/README.md +0 -0
  1037. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/lib.rs +0 -0
  1038. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/map.rs +0 -0
  1039. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/node.rs +0 -0
  1040. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/path.rs +0 -0
  1041. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/pool.rs +0 -0
  1042. /data/ext/cargo-vendor/{cranelift-bforest-0.124.2 → cranelift-bforest-0.125.4}/src/set.rs +0 -0
  1043. /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/src/compound.rs +0 -0
  1044. /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/src/lib.rs +0 -0
  1045. /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/src/scalar.rs +0 -0
  1046. /data/ext/cargo-vendor/{cranelift-bitset-0.124.2 → cranelift-bitset-0.125.4}/tests/bitset.rs +0 -0
  1047. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/LICENSE +0 -0
  1048. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/README.md +0 -0
  1049. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/build.rs +0 -0
  1050. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/alias_analysis.rs +0 -0
  1051. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/binemit/mod.rs +0 -0
  1052. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/cfg_printer.rs +0 -0
  1053. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/constant_hash.rs +0 -0
  1054. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/context.rs +0 -0
  1055. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ctxhash.rs +0 -0
  1056. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/cursor.rs +0 -0
  1057. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/data_value.rs +0 -0
  1058. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/dbg.rs +0 -0
  1059. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/dominator_tree/simple.rs +0 -0
  1060. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/dominator_tree.rs +0 -0
  1061. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/egraph/cost.rs +0 -0
  1062. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/egraph/elaborate.rs +0 -0
  1063. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/egraph.rs +0 -0
  1064. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/flowgraph.rs +0 -0
  1065. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/incremental_cache.rs +0 -0
  1066. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/inst_predicates.rs +0 -0
  1067. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/inst_specs.isle +0 -0
  1068. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/atomic_rmw_op.rs +0 -0
  1069. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/builder.rs +0 -0
  1070. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/condcodes.rs +0 -0
  1071. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/constant.rs +0 -0
  1072. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/dfg.rs +0 -0
  1073. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/dynamic_type.rs +0 -0
  1074. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/entities.rs +0 -0
  1075. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/exception_table.rs +0 -0
  1076. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/extfunc.rs +0 -0
  1077. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/extname.rs +0 -0
  1078. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/function.rs +0 -0
  1079. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/globalvalue.rs +0 -0
  1080. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/immediates.rs +0 -0
  1081. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/jumptable.rs +0 -0
  1082. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/known_symbol.rs +0 -0
  1083. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/layout.rs +0 -0
  1084. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/libcall.rs +0 -0
  1085. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/memflags.rs +0 -0
  1086. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/memtype.rs +0 -0
  1087. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/mod.rs +0 -0
  1088. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/pcc.rs +0 -0
  1089. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/progpoint.rs +0 -0
  1090. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/sourceloc.rs +0 -0
  1091. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/stackslot.rs +0 -0
  1092. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/trapcode.rs +0 -0
  1093. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/types.rs +0 -0
  1094. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ir/user_stack_maps.rs +0 -0
  1095. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  1096. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/imms.rs +0 -0
  1097. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/regs.rs +0 -0
  1098. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1099. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst/unwind.rs +0 -0
  1100. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/inst_neon.isle +0 -0
  1101. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1102. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower/isle.rs +0 -0
  1103. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower.rs +0 -0
  1104. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1105. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/mod.rs +0 -0
  1106. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/pcc.rs +0 -0
  1107. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/aarch64/settings.rs +0 -0
  1108. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/mod.rs +0 -0
  1109. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley32.rs +0 -0
  1110. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley64.rs +0 -0
  1111. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/abi.rs +0 -0
  1112. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/inst/args.rs +0 -0
  1113. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/inst/regs.rs +0 -0
  1114. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/lower/isle/generated_code.rs +0 -0
  1115. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/lower/isle.rs +0 -0
  1116. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/lower.rs +0 -0
  1117. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/mod.rs +0 -0
  1118. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/pulley_shared/settings.rs +0 -0
  1119. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/abi.rs +0 -0
  1120. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/args.rs +0 -0
  1121. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1122. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/encode.rs +0 -0
  1123. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/imms.rs +0 -0
  1124. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/regs.rs +0 -0
  1125. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1126. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/unwind.rs +0 -0
  1127. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst/vector.rs +0 -0
  1128. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/inst_vector.isle +0 -0
  1129. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1130. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/lower/isle.rs +0 -0
  1131. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/lower.rs +0 -0
  1132. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/riscv64/settings.rs +0 -0
  1133. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/args.rs +0 -0
  1134. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1135. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/imms.rs +0 -0
  1136. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/regs.rs +0 -0
  1137. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1138. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/inst/unwind.rs +0 -0
  1139. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1140. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/lower/isle.rs +0 -0
  1141. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/lower.rs +0 -0
  1142. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/mod.rs +0 -0
  1143. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/s390x/settings.rs +0 -0
  1144. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind/systemv.rs +0 -0
  1145. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind/winarm64.rs +0 -0
  1146. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind/winx64.rs +0 -0
  1147. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/unwind.rs +0 -0
  1148. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/winch.rs +0 -0
  1149. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/emit_state.rs +0 -0
  1150. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/emit_tests.rs +0 -0
  1151. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/external.rs +0 -0
  1152. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/regs.rs +0 -0
  1153. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/stack_switch.rs +0 -0
  1154. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1155. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1156. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/inst/unwind.rs +0 -0
  1157. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1158. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/lower.rs +0 -0
  1159. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isa/x64/settings.rs +0 -0
  1160. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/isle_prelude.rs +0 -0
  1161. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/legalizer/branch_to_trap.rs +0 -0
  1162. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/legalizer/globalvalue.rs +0 -0
  1163. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/legalizer/mod.rs +0 -0
  1164. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/loop_analysis.rs +0 -0
  1165. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/buffer.rs +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/compile.rs +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/helpers.rs +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/inst_common.rs +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/mod.rs +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/pcc.rs +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/reg.rs +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/valueregs.rs +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/machinst/vcode.rs +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/nan_canonicalization.rs +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/README.md +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/cprop.isle +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/div_const.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/extends.isle +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/generated_code.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/remat.isle +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/skeleton.isle +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/spaceship.isle +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/spectre.isle +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts/vector.isle +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/opts.rs +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/prelude.isle +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/prelude_opt.isle +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/print_errors.rs +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/ranges.rs +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/remove_constant_phis.rs +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/result.rs +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/scoped_hash_map.rs +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/souper_harvest.rs +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/take_and_replace.rs +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/timing.rs +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/traversals.rs +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/unreachable_code.rs +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-codegen-0.124.2 → cranelift-codegen-0.125.4}/src/value_label.rs +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/LICENSE +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/README.md +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/cdsl/isa.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/cdsl/types.rs +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/cdsl/typevar.rs +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/constant_hash.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/gen_types.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/arm64.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/mod.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/pulley.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isa/s390x.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/isle.rs +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/lib.rs +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/pulley.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/shared/immediates.rs +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/shared/mod.rs +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/shared/types.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.124.2 → cranelift-codegen-meta-0.125.4}/src/unique_table.rs +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/LICENSE +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/README.md +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/src/constant_hash.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/src/constants.rs +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.124.2 → cranelift-codegen-shared-0.125.4}/src/lib.rs +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/LICENSE +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/README.md +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/src/chaos.rs +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/src/lib.rs +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-control-0.124.2 → cranelift-control-0.125.4}/src/zero_sized.rs +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/LICENSE +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/README.md +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/boxed_slice.rs +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/iter.rs +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/keys.rs +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/lib.rs +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/list.rs +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/map.rs +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/packed_option.rs +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/set.rs +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-entity-0.124.2 → cranelift-entity-0.125.4}/src/sparse.rs +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/LICENSE +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/README.md +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/frontend/safepoints.rs +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/lib.rs +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/ssa.rs +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/switch.rs +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-frontend-0.124.2 → cranelift-frontend-0.125.4}/src/variable.rs +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/README.md +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/build.rs +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/bad_converters.isle +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/error1.isle +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/extra_parens.isle +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/impure_expression.isle +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/impure_rhs.isle +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/fail/multi_prio.isle +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/borrows.isle +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/borrows_main.rs +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/iflets.isle +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/iflets_main.rs +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_constructor.isle +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_constructor_main.rs +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_extractor.isle +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/multi_extractor_main.rs +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/test.isle +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/link/test_main.rs +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/bound_var.isle +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/construct_and_extract.isle +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/conversions.isle +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/conversions_extern.isle +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/let.isle +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/nodebug.isle +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1273. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/test2.isle +0 -0
  1274. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/test3.isle +0 -0
  1275. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/test4.isle +0 -0
  1276. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/tutorial.isle +0 -0
  1277. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/pass/veri_spec.isle +0 -0
  1278. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/iconst.isle +0 -0
  1279. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/iconst_main.rs +0 -0
  1280. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/let_shadowing.isle +0 -0
  1281. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/isle_examples/run/let_shadowing_main.rs +0 -0
  1282. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/ast.rs +0 -0
  1283. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/codegen.rs +0 -0
  1284. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/compile.rs +0 -0
  1285. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/disjointsets.rs +0 -0
  1286. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/error.rs +0 -0
  1287. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/files.rs +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/lexer.rs +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/lib.rs +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/log.rs +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/overlap.rs +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/parser.rs +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/printer.rs +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/sema.rs +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/serialize.rs +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/stablemapset.rs +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/src/trie_again.rs +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-isle-0.124.2 → cranelift-isle-0.125.4}/tests/run_tests.rs +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/LICENSE +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/README.md +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/src/lib.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-native-0.124.2 → cranelift-native-0.125.4}/src/riscv.rs +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-srcgen-0.124.2 → cranelift-srcgen-0.125.4}/src/error.rs +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-srcgen-0.124.2 → cranelift-srcgen-0.125.4}/src/lib.rs +0 -0
  1305. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/README.md +0 -0
  1306. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/src/clocks.rs +0 -0
  1307. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/src/lib.rs +0 -0
  1308. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/src/scheduling.rs +0 -0
  1309. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/clocks.rs +0 -0
  1310. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/common/mod.rs +0 -0
  1311. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/random.rs +0 -0
  1312. /data/ext/cargo-vendor/{deterministic-wasi-ctx-3.0.2 → deterministic-wasi-ctx-3.0.3}/tests/scheduler.rs +0 -0
  1313. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/CONTRIBUTING.md +0 -0
  1314. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/Cargo.toml.orig +0 -0
  1315. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/README.md +0 -0
  1316. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/examples/profiler-html.rs +0 -0
  1317. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/decode.rs +0 -0
  1318. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/disas.rs +0 -0
  1319. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/encode.rs +0 -0
  1320. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/imms.rs +0 -0
  1321. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp/debug.rs +0 -0
  1322. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp/match_loop.rs +0 -0
  1323. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp/tail_loop.rs +0 -0
  1324. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/interp.rs +0 -0
  1325. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/op.rs +0 -0
  1326. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/opcode.rs +0 -0
  1327. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/profile.rs +0 -0
  1328. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/profile_disabled.rs +0 -0
  1329. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/src/regs.rs +0 -0
  1330. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/tests/all/disas.rs +0 -0
  1331. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/tests/all/interp.rs +0 -0
  1332. /data/ext/cargo-vendor/{pulley-interpreter-37.0.2 → pulley-interpreter-38.0.4}/tests/all/main.rs +0 -0
  1333. /data/ext/cargo-vendor/{pulley-macros-37.0.2 → pulley-macros-38.0.4}/Cargo.toml.orig +0 -0
  1334. /data/ext/cargo-vendor/{pulley-macros-37.0.2 → pulley-macros-38.0.4}/src/interp_disable_if_cfg.rs +0 -0
  1335. /data/ext/cargo-vendor/{pulley-macros-37.0.2 → pulley-macros-38.0.4}/src/lib.rs +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/LICENSE +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/README.md +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/call_graph.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/code_builder.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/runtime.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/scc.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/compile/stratify.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/jitdump.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/perfmap.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/pulley.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent/vtune.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/profiling_agent.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/code.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/code_memory.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_7_async.rs +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/_8_store_in_imports.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/bindgen_examples/mod.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/abort.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/error_contexts.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/futures_and_streams/buffers.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/table.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent/tls.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/concurrent_disabled.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/func/options.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/has_data.rs +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/linker.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/matching.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/resource_table.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/resources.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/storage.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/store.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/types.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/component/values.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/debug.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/exception.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals/global.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals/table.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals/tag.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/externals.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/fiber.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/func/typed.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/anyref.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/arrayref.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/eqref.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/exnref.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/externref.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/i31.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/rooting.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled/structref.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/disabled.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/anyref.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/arrayref.rs +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/eqref.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/exnref.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/externref.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/i31.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/rooting.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled/structref.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/enabled.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/noextern.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc/none_ref.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/gc.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/instance.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/limits.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/linker.rs +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/module/registry.rs +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/resources.rs +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/stack.rs +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/async_.rs +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/context.rs +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/data.rs +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/func_refs.rs +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/gc.rs +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/store/token.rs +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/trampoline/func.rs +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/trampoline/global.rs +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/trampoline.rs +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/type_registry.rs +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/types/matching.rs +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/types.rs +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/uninhabited.rs +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/unix.rs +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/v128.rs +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/values.rs +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/always_mut.rs +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/async_yield.rs +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/byte_count.rs +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/component/handle_table.rs +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/component/resources.rs +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/const_expr.rs +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/cow.rs +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/cow_disabled.rs +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/debug_builtins.rs +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/export.rs +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/disabled.rs +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/arrayref.rs +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/data.rs +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/drc.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/exnref.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/free_list.rs +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/null.rs +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled/structref.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/enabled.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/func_ref.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/gc_ref.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/gc_runtime.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/host_data.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc/i31.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/gc.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/imports.rs +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/on_demand.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/metrics.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator/pooling.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/instance/allocator.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/libcalls.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/malloc.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/mmap.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/shared_memory.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/shared_memory_disabled.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory/static_.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/memory.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mmap.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mmap_vec.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/module_id.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/disabled.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/enabled.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/mod.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/pkru.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/mpk/sys.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/pagemap_disabled.rs +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/parking_spot.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/provenance.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/send_sync_unsafe_cell.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/stack_switching/stack/dummy.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/stack_switching/stack.rs +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/store_box.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/mmap.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/mod.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/unwind.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/custom/vm.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/mmap.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/unwind.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/mod.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/mmap.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/pagemap.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/unwind.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/mmap.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/unwind64.rs +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/table.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/traphandlers/signals.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/vm.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/wave/component.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/wave/core.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/wave.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime/windows.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/runtime.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/sync_nostd.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/src/sync_std.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/custom_signal_handler.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/engine_across_forks.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/host_segfault.rs +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/pooling_alloc_near_oom.rs +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-37.0.2 → wasmtime-38.0.4}/tests/unload-engine.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/LICENSE +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/examples/factc.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/address_map.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/module_types.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/stack_maps.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/compile/trap_encoding.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/names.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/translate/adapt.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/translate.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/types.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/types_builder/resources.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/types_builder.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/component/vmcomponent_offsets.rs +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/demangling.rs +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/error.rs +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/ext.rs +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/core_types.rs +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/signature.rs +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/trampoline.rs +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/transcode.rs +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact/traps.rs +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/fact.rs +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/gc/drc.rs +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/gc/null.rs +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/gc.rs +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/module_types.rs +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/obj.rs +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/prelude.rs +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/ref_bits.rs +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/scopevec.rs +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/stack_map.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/stack_switching.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/tunables.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-environ-37.0.2 → wasmtime-environ-38.0.4}/src/types.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/Cargo.toml.orig +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/LICENSE +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/build.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/config/tests.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/config.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/lib.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/tests.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/worker/tests/system_time_stub.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/worker/tests.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/src/worker.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-internal-cache-37.0.2 → wasmtime-internal-cache-38.0.4}/tests/cache_write_default_config.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/Cargo.toml.orig +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/build.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/src/bindgen.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/src/component.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/src/lib.rs +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/char.wit +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/conventions.wit +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/dead-code.wit +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/direct-import.wit +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/empty.wit +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/flags.wit +0 -0
  1582. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/floats.wit +0 -0
  1583. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/function-new.wit +0 -0
  1584. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/host-world.wit +0 -0
  1585. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/integers.wit +0 -0
  1586. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/lists.wit +0 -0
  1587. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/many-arguments.wit +0 -0
  1588. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1589. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1590. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/multiversion/root.wit +0 -0
  1591. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/path1/world.wit +0 -0
  1592. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/path2/world.wit +0 -0
  1593. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/records.wit +0 -0
  1594. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/rename.wit +0 -0
  1595. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/resources-export.wit +0 -0
  1596. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/resources-import.wit +0 -0
  1597. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/share-types.wit +0 -0
  1598. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/simple-functions.wit +0 -0
  1599. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/simple-lists.wit +0 -0
  1600. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/simple-wasi.wit +0 -0
  1601. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/small-anonymous.wit +0 -0
  1602. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/smoke-default.wit +0 -0
  1603. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/smoke-export.wit +0 -0
  1604. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/smoke.wit +0 -0
  1605. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/strings.wit +0 -0
  1606. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/unstable-features.wit +0 -0
  1607. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/unversioned-foo.wit +0 -0
  1608. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/use-paths.wit +0 -0
  1609. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/variants.wit +0 -0
  1610. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/wat.wit +0 -0
  1611. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen/worlds-with-types.wit +0 -0
  1612. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/codegen_no_std.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char_async.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char_concurrent.rs +0 -0
  1616. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/char_tracing_async.rs +0 -0
  1617. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions_async.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions_concurrent.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/conventions_tracing_async.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code_async.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code_concurrent.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/dead-code_tracing_async.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import_async.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import_concurrent.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/direct-import_tracing_async.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty_async.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty_concurrent.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/empty_tracing_async.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags_async.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags_concurrent.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/flags_tracing_async.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats_async.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats_concurrent.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/floats_tracing_async.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new_async.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new_concurrent.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/function-new_tracing_async.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world_async.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world_concurrent.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/host-world_tracing_async.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers.rs +0 -0
  1650. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers_async.rs +0 -0
  1651. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers_concurrent.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/integers_tracing_async.rs +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists.rs +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists_async.rs +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists_concurrent.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/lists_tracing_async.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments_async.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments_concurrent.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/many-arguments_tracing_async.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multi-return.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion_async.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion_concurrent.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/multiversion_tracing_async.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/path1.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/path2.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records_async.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records_concurrent.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/records_tracing_async.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename_async.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename_concurrent.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/rename_tracing_async.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export_async.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export_concurrent.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-export_tracing_async.rs +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import_async.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import_concurrent.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/resources-import_tracing_async.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types_async.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types_concurrent.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/share-types_tracing_async.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions.rs +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions_async.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions_concurrent.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-functions_tracing_async.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists_async.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists_concurrent.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-lists_tracing_async.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi.rs +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi_async.rs +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi_concurrent.rs +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/simple-wasi_tracing_async.rs +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous.rs +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous_async.rs +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous_concurrent.rs +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/small-anonymous_tracing_async.rs +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default.rs +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default_async.rs +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default_concurrent.rs +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-default_tracing_async.rs +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export.rs +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export_async.rs +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export_concurrent.rs +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke-export_tracing_async.rs +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke.rs +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke_async.rs +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke_concurrent.rs +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/smoke_tracing_async.rs +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings.rs +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings_async.rs +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings_concurrent.rs +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/strings_tracing_async.rs +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features.rs +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features_async.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features_concurrent.rs +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unstable-features_tracing_async.rs +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo_async.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo_concurrent.rs +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/unversioned-foo_tracing_async.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths_async.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths_concurrent.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/use-paths_tracing_async.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants_async.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants_concurrent.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/variants_tracing_async.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat_async.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat_concurrent.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/wat_tracing_async.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded/worlds-with-types.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-internal-component-macro-37.0.2 → wasmtime-internal-component-macro-38.0.4}/tests/expanded.rs +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-internal-component-util-37.0.2 → wasmtime-internal-component-util-38.0.4}/Cargo.toml.orig +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-internal-component-util-37.0.2 → wasmtime-internal-component-util-38.0.4}/src/lib.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/Cargo.toml.orig +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/LICENSE +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/SECURITY.md +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/bounds_checks.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/builder.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/compiled_function.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/gc.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/address_transform.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/attr.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/debug_transform_logging.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/expression.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/line_program.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/mod.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/range_info_builder.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/refs.rs +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/simulate.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/synthetic.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/unit.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/transform/utils.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug/write_debuginfo.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/debug.rs +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/disabled.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/enabled/drc.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/enabled/null.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc/enabled.rs +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/gc.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/stack_switching/control_effect.rs +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/stack_switching/fatpointer.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/func_environ/stack_switching/mod.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/isa_builder.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/obj.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/code_translator.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/environ/mod.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/environ/spec.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/func_translator.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/heap.rs +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/mod.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/stack.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/table.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-internal-cranelift-37.0.2 → wasmtime-internal-cranelift-38.0.4}/src/translate/translation_utils.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/LICENSE +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/miri.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/nostd.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/unix.rs +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/windows.c +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-internal-fiber-37.0.2 → wasmtime-internal-fiber-38.0.4}/src/windows.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/Cargo.toml.orig +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/README.md +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/build.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/gdbjit.c +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/src/gdb_jit_int.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/src/lib.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-internal-jit-debug-37.0.2 → wasmtime-internal-jit-debug-38.0.4}/src/perf_jitdump.rs +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/Cargo.toml.orig +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/lib.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/libc.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/miri.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-internal-jit-icache-coherence-37.0.2 → wasmtime-internal-jit-icache-coherence-38.0.4}/src/win.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-internal-math-37.0.2 → wasmtime-internal-math-38.0.4}/Cargo.toml.orig +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-internal-math-37.0.2 → wasmtime-internal-math-38.0.4}/src/lib.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-internal-slab-37.0.2 → wasmtime-internal-slab-38.0.4}/Cargo.toml.orig +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-internal-slab-37.0.2 → wasmtime-internal-slab-38.0.4}/src/lib.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/Cargo.toml.orig +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/LICENSE +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/README.md +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/build.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/aarch64.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/mod.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/riscv64.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/s390x.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/arch/x86.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/exception_table.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/lib.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-internal-unwinder-37.0.2 → wasmtime-internal-unwinder-38.0.4}/src/throw.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-internal-versioned-export-macros-37.0.2 → wasmtime-internal-versioned-export-macros-38.0.4}/Cargo.toml.orig +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-internal-versioned-export-macros-37.0.2 → wasmtime-internal-versioned-export-macros-38.0.4}/src/lib.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/Cargo.toml.orig +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/LICENSE +0 -0
  1822. /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/src/builder.rs +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-internal-winch-37.0.2 → wasmtime-internal-winch-38.0.4}/src/lib.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/Cargo.toml.orig +0 -0
  1825. /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/src/rust.rs +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/src/source.rs +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-internal-wit-bindgen-37.0.2 → wasmtime-internal-wit-bindgen-38.0.4}/src/types.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/Cargo.toml.orig +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/LICENSE +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/README.md +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/empty.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/file.rs +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/locked_async.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/mem.rs +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/stdout.rs +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli/worker_thread_stdin.rs +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/cli.rs +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/clocks.rs +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/ctx.rs +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/error.rs +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/filesystem.rs +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p0.rs +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p1.rs +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/bindings.rs +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/filesystem.rs +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/clocks.rs +0 -0
  1847. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/env.rs +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/exit.rs +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/filesystem/sync.rs +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/filesystem.rs +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/instance_network.rs +0 -0
  1852. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/io.rs +0 -0
  1853. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/mod.rs +0 -0
  1854. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/network.rs +0 -0
  1855. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/random.rs +0 -0
  1856. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/tcp.rs +0 -0
  1857. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/tcp_create_socket.rs +0 -0
  1858. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/udp.rs +0 -0
  1859. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/host/udp_create_socket.rs +0 -0
  1860. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/ip_name_lookup.rs +0 -0
  1861. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/mod.rs +0 -0
  1862. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/network.rs +0 -0
  1863. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/pipe.rs +0 -0
  1864. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/poll.rs +0 -0
  1865. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/stdio.rs +0 -0
  1866. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/tcp.rs +0 -0
  1867. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/udp.rs +0 -0
  1868. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/command.wit +0 -0
  1869. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/environment.wit +0 -0
  1870. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/exit.wit +0 -0
  1871. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/imports.wit +0 -0
  1872. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/run.wit +0 -0
  1873. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/stdio.wit +0 -0
  1874. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/cli/terminal.wit +0 -0
  1875. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/monotonic-clock.wit +0 -0
  1876. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/timezone.wit +0 -0
  1877. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/wall-clock.wit +0 -0
  1878. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/clocks/world.wit +0 -0
  1879. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/filesystem/preopens.wit +0 -0
  1880. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/filesystem/types.wit +0 -0
  1881. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/filesystem/world.wit +0 -0
  1882. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/error.wit +0 -0
  1883. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/poll.wit +0 -0
  1884. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/streams.wit +0 -0
  1885. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/io/world.wit +0 -0
  1886. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/insecure-seed.wit +0 -0
  1887. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/insecure.wit +0 -0
  1888. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/random.wit +0 -0
  1889. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/random/world.wit +0 -0
  1890. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/instance-network.wit +0 -0
  1891. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1892. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/network.wit +0 -0
  1893. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1894. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/tcp.wit +0 -0
  1895. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/udp-create-socket.wit +0 -0
  1896. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/udp.wit +0 -0
  1897. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/deps/sockets/world.wit +0 -0
  1898. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/test.wit +0 -0
  1899. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/wit/world.wit +0 -0
  1900. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p2/write_stream.rs +0 -0
  1901. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/bindings.rs +0 -0
  1902. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/cli/host.rs +0 -0
  1903. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/cli/mod.rs +0 -0
  1904. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/clocks/host.rs +0 -0
  1905. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/clocks/mod.rs +0 -0
  1906. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/filesystem/host.rs +0 -0
  1907. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/filesystem/mod.rs +0 -0
  1908. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/mod.rs +0 -0
  1909. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/random/host.rs +0 -0
  1910. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/random/mod.rs +0 -0
  1911. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/conv.rs +0 -0
  1912. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/ip_name_lookup.rs +0 -0
  1913. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/mod.rs +0 -0
  1914. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/types/mod.rs +0 -0
  1915. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/types/tcp.rs +0 -0
  1916. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/host/types/udp.rs +0 -0
  1917. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/sockets/mod.rs +0 -0
  1918. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/command.wit +0 -0
  1919. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/environment.wit +0 -0
  1920. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/exit.wit +0 -0
  1921. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/imports.wit +0 -0
  1922. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/run.wit +0 -0
  1923. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/stdio.wit +0 -0
  1924. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/cli/terminal.wit +0 -0
  1925. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/monotonic-clock.wit +0 -0
  1926. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/timezone.wit +0 -0
  1927. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/types.wit +0 -0
  1928. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/wall-clock.wit +0 -0
  1929. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/clocks/world.wit +0 -0
  1930. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/filesystem/preopens.wit +0 -0
  1931. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/filesystem/types.wit +0 -0
  1932. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/filesystem/world.wit +0 -0
  1933. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/insecure-seed.wit +0 -0
  1934. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/insecure.wit +0 -0
  1935. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/random.wit +0 -0
  1936. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/random/world.wit +0 -0
  1937. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1938. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/sockets/types.wit +0 -0
  1939. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/deps/sockets/world.wit +0 -0
  1940. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/p3/wit/package.wit +0 -0
  1941. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/random.rs +0 -0
  1942. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/runtime.rs +0 -0
  1943. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/sockets/mod.rs +0 -0
  1944. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/sockets/udp.rs +0 -0
  1945. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/src/sockets/util.rs +0 -0
  1946. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/main.rs +0 -0
  1947. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p1.rs +0 -0
  1948. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/api.rs +0 -0
  1949. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/async_.rs +0 -0
  1950. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/mod.rs +0 -0
  1951. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/all/p2/sync.rs +0 -0
  1952. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/tests/process_stdin.rs +0 -0
  1953. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p0/typenames.witx +0 -0
  1954. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p0/wasi_unstable.witx +0 -0
  1955. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p1/typenames.witx +0 -0
  1956. /data/ext/cargo-vendor/{wasmtime-wasi-37.0.2 → wasmtime-wasi-38.0.4}/witx/p1/wasi_snapshot_preview1.witx +0 -0
  1957. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/Cargo.toml.orig +0 -0
  1958. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/bindings.rs +0 -0
  1959. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/impls.rs +0 -0
  1960. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/lib.rs +0 -0
  1961. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/poll.rs +0 -0
  1962. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/src/streams.rs +0 -0
  1963. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/error.wit +0 -0
  1964. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/poll.wit +0 -0
  1965. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/streams.wit +0 -0
  1966. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/deps/io/world.wit +0 -0
  1967. /data/ext/cargo-vendor/{wasmtime-wasi-io-37.0.2 → wasmtime-wasi-io-38.0.4}/wit/world.wit +0 -0
  1968. /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/Cargo.toml.orig +0 -0
  1969. /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/LICENSE +0 -0
  1970. /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/README.md +0 -0
  1971. /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/error.rs +0 -0
  1972. /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/guest_type.rs +0 -0
  1973. /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/lib.rs +0 -0
  1974. /data/ext/cargo-vendor/{wiggle-37.0.2 → wiggle-38.0.4}/src/region.rs +0 -0
  1975. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/Cargo.toml.orig +0 -0
  1976. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/LICENSE +0 -0
  1977. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/README.md +0 -0
  1978. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/codegen_settings.rs +0 -0
  1979. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/config.rs +0 -0
  1980. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/funcs.rs +0 -0
  1981. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/lib.rs +0 -0
  1982. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/lifetimes.rs +0 -0
  1983. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/module_trait.rs +0 -0
  1984. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/names.rs +0 -0
  1985. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/error.rs +0 -0
  1986. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/flags.rs +0 -0
  1987. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/handle.rs +0 -0
  1988. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/mod.rs +0 -0
  1989. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/record.rs +0 -0
  1990. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/types/variant.rs +0 -0
  1991. /data/ext/cargo-vendor/{wiggle-generate-37.0.2 → wiggle-generate-38.0.4}/src/wasmtime.rs +0 -0
  1992. /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/Cargo.toml.orig +0 -0
  1993. /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/LICENSE +0 -0
  1994. /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/build.rs +0 -0
  1995. /data/ext/cargo-vendor/{wiggle-macro-37.0.2 → wiggle-macro-38.0.4}/src/lib.rs +0 -0
  1996. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/Cargo.toml.orig +0 -0
  1997. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/LICENSE +0 -0
  1998. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/build.rs +0 -0
  1999. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/abi/local.rs +0 -0
  2000. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/abi/mod.rs +0 -0
  2001. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/bounds.rs +0 -0
  2002. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/builtin.rs +0 -0
  2003. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/call.rs +0 -0
  2004. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/context.rs +0 -0
  2005. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/control.rs +0 -0
  2006. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/error.rs +0 -0
  2007. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/mod.rs +0 -0
  2008. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/codegen/phase.rs +0 -0
  2009. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/constant_pool.rs +0 -0
  2010. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/frame/mod.rs +0 -0
  2011. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/abi.rs +0 -0
  2012. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/address.rs +0 -0
  2013. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/asm.rs +0 -0
  2014. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/masm.rs +0 -0
  2015. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/mod.rs +0 -0
  2016. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/aarch64/regs.rs +0 -0
  2017. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/mod.rs +0 -0
  2018. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/reg.rs +0 -0
  2019. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/abi.rs +0 -0
  2020. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/address.rs +0 -0
  2021. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/asm.rs +0 -0
  2022. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/masm.rs +0 -0
  2023. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/mod.rs +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/isa/x64/regs.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/lib.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/masm.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/regalloc.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/regset.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/stack.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-37.0.2 → winch-codegen-38.0.4}/src/visitor.rs +0 -0
@@ -1,3873 +0,0 @@
1
- #![expect(non_snake_case, reason = "DSL style here")]
2
-
3
- use crate::cdsl::instructions::{
4
- AllInstructions, InstructionBuilder as Inst, InstructionGroupBuilder,
5
- };
6
- use crate::cdsl::operands::Operand;
7
- use crate::cdsl::types::{LaneType, ValueType};
8
- use crate::cdsl::typevar::{Interval, TypeSetBuilder, TypeVar};
9
- use crate::shared::formats::Formats;
10
- use crate::shared::types;
11
- use crate::shared::{entities::EntityRefs, immediates::Immediates};
12
-
13
- #[inline(never)]
14
- fn define_control_flow(
15
- ig: &mut InstructionGroupBuilder,
16
- formats: &Formats,
17
- imm: &Immediates,
18
- entities: &EntityRefs,
19
- ) {
20
- ig.push(
21
- Inst::new(
22
- "jump",
23
- r#"
24
- Jump.
25
-
26
- Unconditionally jump to a basic block, passing the specified
27
- block arguments. The number and types of arguments must match the
28
- destination block.
29
- "#,
30
- &formats.jump,
31
- )
32
- .operands_in(vec![
33
- Operand::new("block_call", &entities.block_call)
34
- .with_doc("Destination basic block, with its arguments provided"),
35
- ])
36
- .branches(),
37
- );
38
-
39
- let ScalarTruthy = &TypeVar::new(
40
- "ScalarTruthy",
41
- "A scalar truthy type",
42
- TypeSetBuilder::new().ints(Interval::All).build(),
43
- );
44
-
45
- ig.push(
46
- Inst::new(
47
- "brif",
48
- r#"
49
- Conditional branch when cond is non-zero.
50
-
51
- Take the ``then`` branch when ``c != 0``, and the ``else`` branch otherwise.
52
- "#,
53
- &formats.brif,
54
- )
55
- .operands_in(vec![
56
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
57
- Operand::new("block_then", &entities.block_then).with_doc("Then block"),
58
- Operand::new("block_else", &entities.block_else).with_doc("Else block"),
59
- ])
60
- .branches(),
61
- );
62
-
63
- {
64
- let _i32 = &TypeVar::new(
65
- "i32",
66
- "A 32 bit scalar integer type",
67
- TypeSetBuilder::new().ints(32..32).build(),
68
- );
69
-
70
- ig.push(
71
- Inst::new(
72
- "br_table",
73
- r#"
74
- Indirect branch via jump table.
75
-
76
- Use ``x`` as an unsigned index into the jump table ``JT``. If a jump
77
- table entry is found, branch to the corresponding block. If no entry was
78
- found or the index is out-of-bounds, branch to the default block of the
79
- table.
80
-
81
- Note that this branch instruction can't pass arguments to the targeted
82
- blocks. Split critical edges as needed to work around this.
83
-
84
- Do not confuse this with "tables" in WebAssembly. ``br_table`` is for
85
- jump tables with destinations within the current function only -- think
86
- of a ``match`` in Rust or a ``switch`` in C. If you want to call a
87
- function in a dynamic library, that will typically use
88
- ``call_indirect``.
89
- "#,
90
- &formats.branch_table,
91
- )
92
- .operands_in(vec![
93
- Operand::new("x", _i32).with_doc("i32 index into jump table"),
94
- Operand::new("JT", &entities.jump_table),
95
- ])
96
- .branches(),
97
- );
98
- }
99
-
100
- let iAddr = &TypeVar::new(
101
- "iAddr",
102
- "An integer address type",
103
- TypeSetBuilder::new().ints(32..64).build(),
104
- );
105
-
106
- ig.push(
107
- Inst::new(
108
- "debugtrap",
109
- r#"
110
- Encodes an assembly debug trap.
111
- "#,
112
- &formats.nullary,
113
- )
114
- .other_side_effects()
115
- .can_load()
116
- .can_store(),
117
- );
118
-
119
- ig.push(
120
- Inst::new(
121
- "trap",
122
- r#"
123
- Terminate execution unconditionally.
124
- "#,
125
- &formats.trap,
126
- )
127
- .operands_in(vec![Operand::new("code", &imm.trapcode)])
128
- .can_trap()
129
- .terminates_block(),
130
- );
131
-
132
- ig.push(
133
- Inst::new(
134
- "trapz",
135
- r#"
136
- Trap when zero.
137
-
138
- if ``c`` is non-zero, execution continues at the following instruction.
139
- "#,
140
- &formats.cond_trap,
141
- )
142
- .operands_in(vec![
143
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
144
- Operand::new("code", &imm.trapcode),
145
- ])
146
- .can_trap()
147
- // When one `trapz` dominates another `trapz` and they have identical
148
- // conditions and trap codes, it is safe to deduplicate them (like GVN,
149
- // although there is not actually any value being numbered). Either the
150
- // first `trapz` raised a trap and execution halted, or it didn't and
151
- // therefore the dominated `trapz` will not raise a trap either.
152
- .side_effects_idempotent(),
153
- );
154
-
155
- ig.push(
156
- Inst::new(
157
- "trapnz",
158
- r#"
159
- Trap when non-zero.
160
-
161
- If ``c`` is zero, execution continues at the following instruction.
162
- "#,
163
- &formats.cond_trap,
164
- )
165
- .operands_in(vec![
166
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
167
- Operand::new("code", &imm.trapcode),
168
- ])
169
- .can_trap()
170
- // See the above comment for `trapz` and idempotent side effects.
171
- .side_effects_idempotent(),
172
- );
173
-
174
- ig.push(
175
- Inst::new(
176
- "return",
177
- r#"
178
- Return from the function.
179
-
180
- Unconditionally transfer control to the calling function, passing the
181
- provided return values. The list of return values must match the
182
- function signature's return types.
183
- "#,
184
- &formats.multiary,
185
- )
186
- .operands_in(vec![
187
- Operand::new("rvals", &entities.varargs).with_doc("return values"),
188
- ])
189
- .returns(),
190
- );
191
-
192
- ig.push(
193
- Inst::new(
194
- "call",
195
- r#"
196
- Direct function call.
197
-
198
- Call a function which has been declared in the preamble. The argument
199
- types must match the function's signature.
200
- "#,
201
- &formats.call,
202
- )
203
- .operands_in(vec![
204
- Operand::new("FN", &entities.func_ref)
205
- .with_doc("function to call, declared by `function`"),
206
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
207
- ])
208
- .operands_out(vec![
209
- Operand::new("rvals", &entities.varargs).with_doc("return values"),
210
- ])
211
- .call(),
212
- );
213
-
214
- ig.push(
215
- Inst::new(
216
- "call_indirect",
217
- r#"
218
- Indirect function call.
219
-
220
- Call the function pointed to by `callee` with the given arguments. The
221
- called function must match the specified signature.
222
-
223
- Note that this is different from WebAssembly's ``call_indirect``; the
224
- callee is a native address, rather than a table index. For WebAssembly,
225
- `table_addr` and `load` are used to obtain a native address
226
- from a table.
227
- "#,
228
- &formats.call_indirect,
229
- )
230
- .operands_in(vec![
231
- Operand::new("SIG", &entities.sig_ref).with_doc("function signature"),
232
- Operand::new("callee", iAddr).with_doc("address of function to call"),
233
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
234
- ])
235
- .operands_out(vec![
236
- Operand::new("rvals", &entities.varargs).with_doc("return values"),
237
- ])
238
- .call(),
239
- );
240
-
241
- ig.push(
242
- Inst::new(
243
- "return_call",
244
- r#"
245
- Direct tail call.
246
-
247
- Tail call a function which has been declared in the preamble. The
248
- argument types must match the function's signature, the caller and
249
- callee calling conventions must be the same, and must be a calling
250
- convention that supports tail calls.
251
-
252
- This instruction is a block terminator.
253
- "#,
254
- &formats.call,
255
- )
256
- .operands_in(vec![
257
- Operand::new("FN", &entities.func_ref)
258
- .with_doc("function to call, declared by `function`"),
259
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
260
- ])
261
- .returns()
262
- .call(),
263
- );
264
-
265
- ig.push(
266
- Inst::new(
267
- "return_call_indirect",
268
- r#"
269
- Indirect tail call.
270
-
271
- Call the function pointed to by `callee` with the given arguments. The
272
- argument types must match the function's signature, the caller and
273
- callee calling conventions must be the same, and must be a calling
274
- convention that supports tail calls.
275
-
276
- This instruction is a block terminator.
277
-
278
- Note that this is different from WebAssembly's ``tail_call_indirect``;
279
- the callee is a native address, rather than a table index. For
280
- WebAssembly, `table_addr` and `load` are used to obtain a native address
281
- from a table.
282
- "#,
283
- &formats.call_indirect,
284
- )
285
- .operands_in(vec![
286
- Operand::new("SIG", &entities.sig_ref).with_doc("function signature"),
287
- Operand::new("callee", iAddr).with_doc("address of function to call"),
288
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
289
- ])
290
- .returns()
291
- .call(),
292
- );
293
-
294
- ig.push(
295
- Inst::new(
296
- "func_addr",
297
- r#"
298
- Get the address of a function.
299
-
300
- Compute the absolute address of a function declared in the preamble.
301
- The returned address can be used as a ``callee`` argument to
302
- `call_indirect`. This is also a method for calling functions that
303
- are too far away to be addressable by a direct `call`
304
- instruction.
305
- "#,
306
- &formats.func_addr,
307
- )
308
- .operands_in(vec![
309
- Operand::new("FN", &entities.func_ref)
310
- .with_doc("function to call, declared by `function`"),
311
- ])
312
- .operands_out(vec![Operand::new("addr", iAddr)]),
313
- );
314
-
315
- ig.push(
316
- Inst::new(
317
- "try_call",
318
- r#"
319
- Call a function, catching the specified exceptions.
320
-
321
- Call the function pointed to by `callee` with the given arguments. On
322
- normal return, branch to the first target, with function returns
323
- available as `retN` block arguments. On exceptional return,
324
- look up the thrown exception tag in the provided exception table;
325
- if the tag matches one of the targets, branch to the matching
326
- target with the exception payloads available as `exnN` block arguments.
327
- If no tag matches, then propagate the exception up the stack.
328
-
329
- It is the Cranelift embedder's responsibility to define the meaning
330
- of tags: they are accepted by this instruction and passed through
331
- to unwind metadata tables in Cranelift's output. Actual unwinding is
332
- outside the purview of the core Cranelift compiler.
333
-
334
- Payload values on exception are passed in fixed register(s) that are
335
- defined by the platform and ABI. See the documentation on `CallConv`
336
- for details.
337
- "#,
338
- &formats.try_call,
339
- )
340
- .operands_in(vec![
341
- Operand::new("callee", &entities.func_ref)
342
- .with_doc("function to call, declared by `function`"),
343
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
344
- Operand::new("ET", &entities.exception_table).with_doc("exception table"),
345
- ])
346
- .call()
347
- .branches(),
348
- );
349
-
350
- ig.push(
351
- Inst::new(
352
- "try_call_indirect",
353
- r#"
354
- Call a function, catching the specified exceptions.
355
-
356
- Call the function pointed to by `callee` with the given arguments. On
357
- normal return, branch to the first target, with function returns
358
- available as `retN` block arguments. On exceptional return,
359
- look up the thrown exception tag in the provided exception table;
360
- if the tag matches one of the targets, branch to the matching
361
- target with the exception payloads available as `exnN` block arguments.
362
- If no tag matches, then propagate the exception up the stack.
363
-
364
- It is the Cranelift embedder's responsibility to define the meaning
365
- of tags: they are accepted by this instruction and passed through
366
- to unwind metadata tables in Cranelift's output. Actual unwinding is
367
- outside the purview of the core Cranelift compiler.
368
-
369
- Payload values on exception are passed in fixed register(s) that are
370
- defined by the platform and ABI. See the documentation on `CallConv`
371
- for details.
372
- "#,
373
- &formats.try_call_indirect,
374
- )
375
- .operands_in(vec![
376
- Operand::new("callee", iAddr).with_doc("address of function to call"),
377
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
378
- Operand::new("ET", &entities.exception_table).with_doc("exception table"),
379
- ])
380
- .call()
381
- .branches(),
382
- );
383
- }
384
-
385
- #[inline(never)]
386
- fn define_simd_lane_access(
387
- ig: &mut InstructionGroupBuilder,
388
- formats: &Formats,
389
- imm: &Immediates,
390
- _: &EntityRefs,
391
- ) {
392
- let TxN = &TypeVar::new(
393
- "TxN",
394
- "A SIMD vector type",
395
- TypeSetBuilder::new()
396
- .ints(Interval::All)
397
- .floats(Interval::All)
398
- .simd_lanes(Interval::All)
399
- .dynamic_simd_lanes(Interval::All)
400
- .includes_scalars(false)
401
- .build(),
402
- );
403
-
404
- ig.push(
405
- Inst::new(
406
- "splat",
407
- r#"
408
- Vector splat.
409
-
410
- Return a vector whose lanes are all ``x``.
411
- "#,
412
- &formats.unary,
413
- )
414
- .operands_in(vec![
415
- Operand::new("x", &TxN.lane_of()).with_doc("Value to splat to all lanes"),
416
- ])
417
- .operands_out(vec![Operand::new("a", TxN)]),
418
- );
419
-
420
- let I8x16 = &TypeVar::new(
421
- "I8x16",
422
- "A SIMD vector type consisting of 16 lanes of 8-bit integers",
423
- TypeSetBuilder::new()
424
- .ints(8..8)
425
- .simd_lanes(16..16)
426
- .includes_scalars(false)
427
- .build(),
428
- );
429
-
430
- ig.push(
431
- Inst::new(
432
- "swizzle",
433
- r#"
434
- Vector swizzle.
435
-
436
- Returns a new vector with byte-width lanes selected from the lanes of the first input
437
- vector ``x`` specified in the second input vector ``s``. The indices ``i`` in range
438
- ``[0, 15]`` select the ``i``-th element of ``x``. For indices outside of the range the
439
- resulting lane is 0. Note that this operates on byte-width lanes.
440
- "#,
441
- &formats.binary,
442
- )
443
- .operands_in(vec![
444
- Operand::new("x", I8x16).with_doc("Vector to modify by re-arranging lanes"),
445
- Operand::new("y", I8x16).with_doc("Mask for re-arranging lanes"),
446
- ])
447
- .operands_out(vec![Operand::new("a", I8x16)]),
448
- );
449
-
450
- ig.push(
451
- Inst::new(
452
- "x86_pshufb",
453
- r#"
454
- A vector swizzle lookalike which has the semantics of `pshufb` on x64.
455
-
456
- This instruction will permute the 8-bit lanes of `x` with the indices
457
- specified in `y`. Each lane in the mask, `y`, uses the bottom four
458
- bits for selecting the lane from `x` unless the most significant bit
459
- is set, in which case the lane is zeroed. The output vector will have
460
- the following contents when the element of `y` is in these ranges:
461
-
462
- * `[0, 127]` -> `x[y[i] % 16]`
463
- * `[128, 255]` -> 0
464
- "#,
465
- &formats.binary,
466
- )
467
- .operands_in(vec![
468
- Operand::new("x", I8x16).with_doc("Vector to modify by re-arranging lanes"),
469
- Operand::new("y", I8x16).with_doc("Mask for re-arranging lanes"),
470
- ])
471
- .operands_out(vec![Operand::new("a", I8x16)]),
472
- );
473
-
474
- ig.push(
475
- Inst::new(
476
- "insertlane",
477
- r#"
478
- Insert ``y`` as lane ``Idx`` in x.
479
-
480
- The lane index, ``Idx``, is an immediate value, not an SSA value. It
481
- must indicate a valid lane index for the type of ``x``.
482
- "#,
483
- &formats.ternary_imm8,
484
- )
485
- .operands_in(vec![
486
- Operand::new("x", TxN).with_doc("The vector to modify"),
487
- Operand::new("y", &TxN.lane_of()).with_doc("New lane value"),
488
- Operand::new("Idx", &imm.uimm8).with_doc("Lane index"),
489
- ])
490
- .operands_out(vec![Operand::new("a", TxN)]),
491
- );
492
-
493
- ig.push(
494
- Inst::new(
495
- "extractlane",
496
- r#"
497
- Extract lane ``Idx`` from ``x``.
498
-
499
- The lane index, ``Idx``, is an immediate value, not an SSA value. It
500
- must indicate a valid lane index for the type of ``x``. Note that the upper bits of ``a``
501
- may or may not be zeroed depending on the ISA but the type system should prevent using
502
- ``a`` as anything other than the extracted value.
503
- "#,
504
- &formats.binary_imm8,
505
- )
506
- .operands_in(vec![
507
- Operand::new("x", TxN),
508
- Operand::new("Idx", &imm.uimm8).with_doc("Lane index"),
509
- ])
510
- .operands_out(vec![Operand::new("a", &TxN.lane_of())]),
511
- );
512
- }
513
-
514
- #[inline(never)]
515
- fn define_simd_arithmetic(
516
- ig: &mut InstructionGroupBuilder,
517
- formats: &Formats,
518
- _: &Immediates,
519
- _: &EntityRefs,
520
- ) {
521
- let Int = &TypeVar::new(
522
- "Int",
523
- "A scalar or vector integer type",
524
- TypeSetBuilder::new()
525
- .ints(Interval::All)
526
- .simd_lanes(Interval::All)
527
- .build(),
528
- );
529
-
530
- ig.push(
531
- Inst::new(
532
- "smin",
533
- r#"
534
- Signed integer minimum.
535
- "#,
536
- &formats.binary,
537
- )
538
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
539
- .operands_out(vec![Operand::new("a", Int)]),
540
- );
541
-
542
- ig.push(
543
- Inst::new(
544
- "umin",
545
- r#"
546
- Unsigned integer minimum.
547
- "#,
548
- &formats.binary,
549
- )
550
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
551
- .operands_out(vec![Operand::new("a", Int)]),
552
- );
553
-
554
- ig.push(
555
- Inst::new(
556
- "smax",
557
- r#"
558
- Signed integer maximum.
559
- "#,
560
- &formats.binary,
561
- )
562
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
563
- .operands_out(vec![Operand::new("a", Int)]),
564
- );
565
-
566
- ig.push(
567
- Inst::new(
568
- "umax",
569
- r#"
570
- Unsigned integer maximum.
571
- "#,
572
- &formats.binary,
573
- )
574
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
575
- .operands_out(vec![Operand::new("a", Int)]),
576
- );
577
-
578
- let IxN = &TypeVar::new(
579
- "IxN",
580
- "A SIMD vector type containing integers",
581
- TypeSetBuilder::new()
582
- .ints(Interval::All)
583
- .simd_lanes(Interval::All)
584
- .includes_scalars(false)
585
- .build(),
586
- );
587
-
588
- ig.push(
589
- Inst::new(
590
- "avg_round",
591
- r#"
592
- Unsigned average with rounding: `a := (x + y + 1) // 2`
593
-
594
- The addition does not lose any information (such as from overflow).
595
- "#,
596
- &formats.binary,
597
- )
598
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
599
- .operands_out(vec![Operand::new("a", IxN)]),
600
- );
601
-
602
- ig.push(
603
- Inst::new(
604
- "uadd_sat",
605
- r#"
606
- Add with unsigned saturation.
607
-
608
- This is similar to `iadd` but the operands are interpreted as unsigned integers and their
609
- summed result, instead of wrapping, will be saturated to the highest unsigned integer for
610
- the controlling type (e.g. `0xFF` for i8).
611
- "#,
612
- &formats.binary,
613
- )
614
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
615
- .operands_out(vec![Operand::new("a", IxN)]),
616
- );
617
-
618
- ig.push(
619
- Inst::new(
620
- "sadd_sat",
621
- r#"
622
- Add with signed saturation.
623
-
624
- This is similar to `iadd` but the operands are interpreted as signed integers and their
625
- summed result, instead of wrapping, will be saturated to the lowest or highest
626
- signed integer for the controlling type (e.g. `0x80` or `0x7F` for i8). For example,
627
- since an `sadd_sat.i8` of `0x70` and `0x70` is greater than `0x7F`, the result will be
628
- clamped to `0x7F`.
629
- "#,
630
- &formats.binary,
631
- )
632
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
633
- .operands_out(vec![Operand::new("a", IxN)]),
634
- );
635
-
636
- ig.push(
637
- Inst::new(
638
- "usub_sat",
639
- r#"
640
- Subtract with unsigned saturation.
641
-
642
- This is similar to `isub` but the operands are interpreted as unsigned integers and their
643
- difference, instead of wrapping, will be saturated to the lowest unsigned integer for
644
- the controlling type (e.g. `0x00` for i8).
645
- "#,
646
- &formats.binary,
647
- )
648
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
649
- .operands_out(vec![Operand::new("a", IxN)]),
650
- );
651
-
652
- ig.push(
653
- Inst::new(
654
- "ssub_sat",
655
- r#"
656
- Subtract with signed saturation.
657
-
658
- This is similar to `isub` but the operands are interpreted as signed integers and their
659
- difference, instead of wrapping, will be saturated to the lowest or highest
660
- signed integer for the controlling type (e.g. `0x80` or `0x7F` for i8).
661
- "#,
662
- &formats.binary,
663
- )
664
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
665
- .operands_out(vec![Operand::new("a", IxN)]),
666
- );
667
- }
668
-
669
- pub(crate) fn define(
670
- all_instructions: &mut AllInstructions,
671
- formats: &Formats,
672
- imm: &Immediates,
673
- entities: &EntityRefs,
674
- ) {
675
- let mut ig = InstructionGroupBuilder::new(all_instructions);
676
-
677
- define_control_flow(&mut ig, formats, imm, entities);
678
- define_simd_lane_access(&mut ig, formats, imm, entities);
679
- define_simd_arithmetic(&mut ig, formats, imm, entities);
680
-
681
- // Operand kind shorthands.
682
- let i8: &TypeVar = &ValueType::from(LaneType::from(types::Int::I8)).into();
683
- let f16_: &TypeVar = &ValueType::from(LaneType::from(types::Float::F16)).into();
684
- let f32_: &TypeVar = &ValueType::from(LaneType::from(types::Float::F32)).into();
685
- let f64_: &TypeVar = &ValueType::from(LaneType::from(types::Float::F64)).into();
686
- let f128_: &TypeVar = &ValueType::from(LaneType::from(types::Float::F128)).into();
687
-
688
- // Starting definitions.
689
- let Int = &TypeVar::new(
690
- "Int",
691
- "A scalar or vector integer type",
692
- TypeSetBuilder::new()
693
- .ints(Interval::All)
694
- .simd_lanes(Interval::All)
695
- .dynamic_simd_lanes(Interval::All)
696
- .build(),
697
- );
698
-
699
- let NarrowInt = &TypeVar::new(
700
- "NarrowInt",
701
- "An integer type of width up to `i64`",
702
- TypeSetBuilder::new().ints(8..64).build(),
703
- );
704
-
705
- let ScalarTruthy = &TypeVar::new(
706
- "ScalarTruthy",
707
- "A scalar truthy type",
708
- TypeSetBuilder::new().ints(Interval::All).build(),
709
- );
710
-
711
- let iB = &TypeVar::new(
712
- "iB",
713
- "A scalar integer type",
714
- TypeSetBuilder::new().ints(Interval::All).build(),
715
- );
716
-
717
- let iSwappable = &TypeVar::new(
718
- "iSwappable",
719
- "A multi byte scalar integer type",
720
- TypeSetBuilder::new().ints(16..128).build(),
721
- );
722
-
723
- let iAddr = &TypeVar::new(
724
- "iAddr",
725
- "An integer address type",
726
- TypeSetBuilder::new().ints(32..64).build(),
727
- );
728
-
729
- let TxN = &TypeVar::new(
730
- "TxN",
731
- "A SIMD vector type",
732
- TypeSetBuilder::new()
733
- .ints(Interval::All)
734
- .floats(Interval::All)
735
- .simd_lanes(Interval::All)
736
- .includes_scalars(false)
737
- .build(),
738
- );
739
- let Any = &TypeVar::new(
740
- "Any",
741
- "Any integer, float, or reference scalar or vector type",
742
- TypeSetBuilder::new()
743
- .ints(Interval::All)
744
- .floats(Interval::All)
745
- .simd_lanes(Interval::All)
746
- .includes_scalars(true)
747
- .build(),
748
- );
749
-
750
- let Mem = &TypeVar::new(
751
- "Mem",
752
- "Any type that can be stored in memory",
753
- TypeSetBuilder::new()
754
- .ints(Interval::All)
755
- .floats(Interval::All)
756
- .simd_lanes(Interval::All)
757
- .dynamic_simd_lanes(Interval::All)
758
- .build(),
759
- );
760
-
761
- let MemTo = &TypeVar::copy_from(Mem, "MemTo".to_string());
762
-
763
- ig.push(
764
- Inst::new(
765
- "load",
766
- r#"
767
- Load from memory at ``p + Offset``.
768
-
769
- This is a polymorphic instruction that can load any value type which
770
- has a memory representation.
771
- "#,
772
- &formats.load,
773
- )
774
- .operands_in(vec![
775
- Operand::new("MemFlags", &imm.memflags),
776
- Operand::new("p", iAddr),
777
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
778
- ])
779
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")])
780
- .can_load(),
781
- );
782
-
783
- ig.push(
784
- Inst::new(
785
- "store",
786
- r#"
787
- Store ``x`` to memory at ``p + Offset``.
788
-
789
- This is a polymorphic instruction that can store any value type with a
790
- memory representation.
791
- "#,
792
- &formats.store,
793
- )
794
- .operands_in(vec![
795
- Operand::new("MemFlags", &imm.memflags),
796
- Operand::new("x", Mem).with_doc("Value to be stored"),
797
- Operand::new("p", iAddr),
798
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
799
- ])
800
- .can_store(),
801
- );
802
-
803
- let iExt8 = &TypeVar::new(
804
- "iExt8",
805
- "An integer type with more than 8 bits",
806
- TypeSetBuilder::new().ints(16..64).build(),
807
- );
808
-
809
- ig.push(
810
- Inst::new(
811
- "uload8",
812
- r#"
813
- Load 8 bits from memory at ``p + Offset`` and zero-extend.
814
-
815
- This is equivalent to ``load.i8`` followed by ``uextend``.
816
- "#,
817
- &formats.load,
818
- )
819
- .operands_in(vec![
820
- Operand::new("MemFlags", &imm.memflags),
821
- Operand::new("p", iAddr),
822
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
823
- ])
824
- .operands_out(vec![Operand::new("a", iExt8)])
825
- .can_load(),
826
- );
827
-
828
- ig.push(
829
- Inst::new(
830
- "sload8",
831
- r#"
832
- Load 8 bits from memory at ``p + Offset`` and sign-extend.
833
-
834
- This is equivalent to ``load.i8`` followed by ``sextend``.
835
- "#,
836
- &formats.load,
837
- )
838
- .operands_in(vec![
839
- Operand::new("MemFlags", &imm.memflags),
840
- Operand::new("p", iAddr),
841
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
842
- ])
843
- .operands_out(vec![Operand::new("a", iExt8)])
844
- .can_load(),
845
- );
846
-
847
- ig.push(
848
- Inst::new(
849
- "istore8",
850
- r#"
851
- Store the low 8 bits of ``x`` to memory at ``p + Offset``.
852
-
853
- This is equivalent to ``ireduce.i8`` followed by ``store.i8``.
854
- "#,
855
- &formats.store,
856
- )
857
- .operands_in(vec![
858
- Operand::new("MemFlags", &imm.memflags),
859
- Operand::new("x", iExt8),
860
- Operand::new("p", iAddr),
861
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
862
- ])
863
- .can_store(),
864
- );
865
-
866
- let iExt16 = &TypeVar::new(
867
- "iExt16",
868
- "An integer type with more than 16 bits",
869
- TypeSetBuilder::new().ints(32..64).build(),
870
- );
871
-
872
- ig.push(
873
- Inst::new(
874
- "uload16",
875
- r#"
876
- Load 16 bits from memory at ``p + Offset`` and zero-extend.
877
-
878
- This is equivalent to ``load.i16`` followed by ``uextend``.
879
- "#,
880
- &formats.load,
881
- )
882
- .operands_in(vec![
883
- Operand::new("MemFlags", &imm.memflags),
884
- Operand::new("p", iAddr),
885
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
886
- ])
887
- .operands_out(vec![Operand::new("a", iExt16)])
888
- .can_load(),
889
- );
890
-
891
- ig.push(
892
- Inst::new(
893
- "sload16",
894
- r#"
895
- Load 16 bits from memory at ``p + Offset`` and sign-extend.
896
-
897
- This is equivalent to ``load.i16`` followed by ``sextend``.
898
- "#,
899
- &formats.load,
900
- )
901
- .operands_in(vec![
902
- Operand::new("MemFlags", &imm.memflags),
903
- Operand::new("p", iAddr),
904
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
905
- ])
906
- .operands_out(vec![Operand::new("a", iExt16)])
907
- .can_load(),
908
- );
909
-
910
- ig.push(
911
- Inst::new(
912
- "istore16",
913
- r#"
914
- Store the low 16 bits of ``x`` to memory at ``p + Offset``.
915
-
916
- This is equivalent to ``ireduce.i16`` followed by ``store.i16``.
917
- "#,
918
- &formats.store,
919
- )
920
- .operands_in(vec![
921
- Operand::new("MemFlags", &imm.memflags),
922
- Operand::new("x", iExt16),
923
- Operand::new("p", iAddr),
924
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
925
- ])
926
- .can_store(),
927
- );
928
-
929
- let iExt32 = &TypeVar::new(
930
- "iExt32",
931
- "An integer type with more than 32 bits",
932
- TypeSetBuilder::new().ints(64..64).build(),
933
- );
934
-
935
- ig.push(
936
- Inst::new(
937
- "uload32",
938
- r#"
939
- Load 32 bits from memory at ``p + Offset`` and zero-extend.
940
-
941
- This is equivalent to ``load.i32`` followed by ``uextend``.
942
- "#,
943
- &formats.load,
944
- )
945
- .operands_in(vec![
946
- Operand::new("MemFlags", &imm.memflags),
947
- Operand::new("p", iAddr),
948
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
949
- ])
950
- .operands_out(vec![Operand::new("a", iExt32)])
951
- .can_load(),
952
- );
953
-
954
- ig.push(
955
- Inst::new(
956
- "sload32",
957
- r#"
958
- Load 32 bits from memory at ``p + Offset`` and sign-extend.
959
-
960
- This is equivalent to ``load.i32`` followed by ``sextend``.
961
- "#,
962
- &formats.load,
963
- )
964
- .operands_in(vec![
965
- Operand::new("MemFlags", &imm.memflags),
966
- Operand::new("p", iAddr),
967
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
968
- ])
969
- .operands_out(vec![Operand::new("a", iExt32)])
970
- .can_load(),
971
- );
972
-
973
- ig.push(
974
- Inst::new(
975
- "istore32",
976
- r#"
977
- Store the low 32 bits of ``x`` to memory at ``p + Offset``.
978
-
979
- This is equivalent to ``ireduce.i32`` followed by ``store.i32``.
980
- "#,
981
- &formats.store,
982
- )
983
- .operands_in(vec![
984
- Operand::new("MemFlags", &imm.memflags),
985
- Operand::new("x", iExt32),
986
- Operand::new("p", iAddr),
987
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
988
- ])
989
- .can_store(),
990
- );
991
- ig.push(
992
- Inst::new(
993
- "stack_switch",
994
- r#"
995
- Suspends execution of the current stack and resumes execution of another
996
- one.
997
-
998
- The target stack to switch to is identified by the data stored at
999
- ``load_context_ptr``. Before switching, this instruction stores
1000
- analogous information about the
1001
- current (i.e., original) stack at ``store_context_ptr``, to
1002
- enabled switching back to the original stack at a later point.
1003
-
1004
- The size, alignment and layout of the information stored at
1005
- ``load_context_ptr`` and ``store_context_ptr`` is platform-dependent.
1006
- The instruction assumes that ``load_context_ptr`` and
1007
- ``store_context_ptr`` are valid pointers to memory with said layout and
1008
- alignment, and does not perform any checks on these pointers or the data
1009
- stored there.
1010
-
1011
- The instruction is experimental and only supported on x64 Linux at the
1012
- moment.
1013
-
1014
- When switching from a stack A to a stack B, one of the following cases
1015
- must apply:
1016
- 1. Stack B was previously suspended using a ``stack_switch`` instruction.
1017
- 2. Stack B is a newly initialized stack. The necessary initialization is
1018
- platform-dependent and will generally involve running some kind of
1019
- trampoline to start execution of a function on the new stack.
1020
-
1021
- In both cases, the ``in_payload`` argument of the ``stack_switch``
1022
- instruction executed on A is passed to stack B. In the first case above,
1023
- it will be the result value of the earlier ``stack_switch`` instruction
1024
- executed on stack B. In the second case, the value will be accessible to
1025
- the trampoline in a platform-dependent register.
1026
-
1027
- The pointers ``load_context_ptr`` and ``store_context_ptr`` are allowed
1028
- to be equal; the instruction ensures that all data is loaded from the
1029
- former before writing to the latter.
1030
-
1031
- Stack switching is one-shot in the sense that each ``stack_switch``
1032
- operation effectively consumes the context identified by
1033
- ``load_context_ptr``. In other words, performing two ``stack_switches``
1034
- using the same ``load_context_ptr`` causes undefined behavior, unless
1035
- the context at ``load_context_ptr`` is overwritten by another
1036
- `stack_switch` in between.
1037
- "#,
1038
- &formats.ternary,
1039
- )
1040
- .operands_in(vec![
1041
- Operand::new("store_context_ptr", iAddr),
1042
- Operand::new("load_context_ptr", iAddr),
1043
- Operand::new("in_payload0", iAddr),
1044
- ])
1045
- .operands_out(vec![Operand::new("out_payload0", iAddr)])
1046
- .other_side_effects()
1047
- .can_load()
1048
- .can_store()
1049
- .call(),
1050
- );
1051
-
1052
- let I16x8 = &TypeVar::new(
1053
- "I16x8",
1054
- "A SIMD vector with exactly 8 lanes of 16-bit values",
1055
- TypeSetBuilder::new()
1056
- .ints(16..16)
1057
- .simd_lanes(8..8)
1058
- .includes_scalars(false)
1059
- .build(),
1060
- );
1061
-
1062
- ig.push(
1063
- Inst::new(
1064
- "uload8x8",
1065
- r#"
1066
- Load an 8x8 vector (64 bits) from memory at ``p + Offset`` and zero-extend into an i16x8
1067
- vector.
1068
- "#,
1069
- &formats.load,
1070
- )
1071
- .operands_in(vec![
1072
- Operand::new("MemFlags", &imm.memflags),
1073
- Operand::new("p", iAddr),
1074
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1075
- ])
1076
- .operands_out(vec![Operand::new("a", I16x8).with_doc("Value loaded")])
1077
- .can_load(),
1078
- );
1079
-
1080
- ig.push(
1081
- Inst::new(
1082
- "sload8x8",
1083
- r#"
1084
- Load an 8x8 vector (64 bits) from memory at ``p + Offset`` and sign-extend into an i16x8
1085
- vector.
1086
- "#,
1087
- &formats.load,
1088
- )
1089
- .operands_in(vec![
1090
- Operand::new("MemFlags", &imm.memflags),
1091
- Operand::new("p", iAddr),
1092
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1093
- ])
1094
- .operands_out(vec![Operand::new("a", I16x8).with_doc("Value loaded")])
1095
- .can_load(),
1096
- );
1097
-
1098
- let I32x4 = &TypeVar::new(
1099
- "I32x4",
1100
- "A SIMD vector with exactly 4 lanes of 32-bit values",
1101
- TypeSetBuilder::new()
1102
- .ints(32..32)
1103
- .simd_lanes(4..4)
1104
- .includes_scalars(false)
1105
- .build(),
1106
- );
1107
-
1108
- ig.push(
1109
- Inst::new(
1110
- "uload16x4",
1111
- r#"
1112
- Load a 16x4 vector (64 bits) from memory at ``p + Offset`` and zero-extend into an i32x4
1113
- vector.
1114
- "#,
1115
- &formats.load,
1116
- )
1117
- .operands_in(vec![
1118
- Operand::new("MemFlags", &imm.memflags),
1119
- Operand::new("p", iAddr),
1120
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1121
- ])
1122
- .operands_out(vec![Operand::new("a", I32x4).with_doc("Value loaded")])
1123
- .can_load(),
1124
- );
1125
-
1126
- ig.push(
1127
- Inst::new(
1128
- "sload16x4",
1129
- r#"
1130
- Load a 16x4 vector (64 bits) from memory at ``p + Offset`` and sign-extend into an i32x4
1131
- vector.
1132
- "#,
1133
- &formats.load,
1134
- )
1135
- .operands_in(vec![
1136
- Operand::new("MemFlags", &imm.memflags),
1137
- Operand::new("p", iAddr),
1138
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1139
- ])
1140
- .operands_out(vec![Operand::new("a", I32x4).with_doc("Value loaded")])
1141
- .can_load(),
1142
- );
1143
-
1144
- let I64x2 = &TypeVar::new(
1145
- "I64x2",
1146
- "A SIMD vector with exactly 2 lanes of 64-bit values",
1147
- TypeSetBuilder::new()
1148
- .ints(64..64)
1149
- .simd_lanes(2..2)
1150
- .includes_scalars(false)
1151
- .build(),
1152
- );
1153
-
1154
- ig.push(
1155
- Inst::new(
1156
- "uload32x2",
1157
- r#"
1158
- Load an 32x2 vector (64 bits) from memory at ``p + Offset`` and zero-extend into an i64x2
1159
- vector.
1160
- "#,
1161
- &formats.load,
1162
- )
1163
- .operands_in(vec![
1164
- Operand::new("MemFlags", &imm.memflags),
1165
- Operand::new("p", iAddr),
1166
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1167
- ])
1168
- .operands_out(vec![Operand::new("a", I64x2).with_doc("Value loaded")])
1169
- .can_load(),
1170
- );
1171
-
1172
- ig.push(
1173
- Inst::new(
1174
- "sload32x2",
1175
- r#"
1176
- Load a 32x2 vector (64 bits) from memory at ``p + Offset`` and sign-extend into an i64x2
1177
- vector.
1178
- "#,
1179
- &formats.load,
1180
- )
1181
- .operands_in(vec![
1182
- Operand::new("MemFlags", &imm.memflags),
1183
- Operand::new("p", iAddr),
1184
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1185
- ])
1186
- .operands_out(vec![Operand::new("a", I64x2).with_doc("Value loaded")])
1187
- .can_load(),
1188
- );
1189
-
1190
- ig.push(
1191
- Inst::new(
1192
- "stack_load",
1193
- r#"
1194
- Load a value from a stack slot at the constant offset.
1195
-
1196
- This is a polymorphic instruction that can load any value type which
1197
- has a memory representation.
1198
-
1199
- The offset is an immediate constant, not an SSA value. The memory
1200
- access cannot go out of bounds, i.e.
1201
- `sizeof(a) + Offset <= sizeof(SS)`.
1202
- "#,
1203
- &formats.stack_load,
1204
- )
1205
- .operands_in(vec![
1206
- Operand::new("SS", &entities.stack_slot),
1207
- Operand::new("Offset", &imm.offset32).with_doc("In-bounds offset into stack slot"),
1208
- ])
1209
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")])
1210
- .can_load(),
1211
- );
1212
-
1213
- ig.push(
1214
- Inst::new(
1215
- "stack_store",
1216
- r#"
1217
- Store a value to a stack slot at a constant offset.
1218
-
1219
- This is a polymorphic instruction that can store any value type with a
1220
- memory representation.
1221
-
1222
- The offset is an immediate constant, not an SSA value. The memory
1223
- access cannot go out of bounds, i.e.
1224
- `sizeof(a) + Offset <= sizeof(SS)`.
1225
- "#,
1226
- &formats.stack_store,
1227
- )
1228
- .operands_in(vec![
1229
- Operand::new("x", Mem).with_doc("Value to be stored"),
1230
- Operand::new("SS", &entities.stack_slot),
1231
- Operand::new("Offset", &imm.offset32).with_doc("In-bounds offset into stack slot"),
1232
- ])
1233
- .can_store(),
1234
- );
1235
-
1236
- ig.push(
1237
- Inst::new(
1238
- "stack_addr",
1239
- r#"
1240
- Get the address of a stack slot.
1241
-
1242
- Compute the absolute address of a byte in a stack slot. The offset must
1243
- refer to a byte inside the stack slot:
1244
- `0 <= Offset < sizeof(SS)`.
1245
- "#,
1246
- &formats.stack_load,
1247
- )
1248
- .operands_in(vec![
1249
- Operand::new("SS", &entities.stack_slot),
1250
- Operand::new("Offset", &imm.offset32).with_doc("In-bounds offset into stack slot"),
1251
- ])
1252
- .operands_out(vec![Operand::new("addr", iAddr)]),
1253
- );
1254
-
1255
- ig.push(
1256
- Inst::new(
1257
- "dynamic_stack_load",
1258
- r#"
1259
- Load a value from a dynamic stack slot.
1260
-
1261
- This is a polymorphic instruction that can load any value type which
1262
- has a memory representation.
1263
- "#,
1264
- &formats.dynamic_stack_load,
1265
- )
1266
- .operands_in(vec![Operand::new("DSS", &entities.dynamic_stack_slot)])
1267
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")])
1268
- .can_load(),
1269
- );
1270
-
1271
- ig.push(
1272
- Inst::new(
1273
- "dynamic_stack_store",
1274
- r#"
1275
- Store a value to a dynamic stack slot.
1276
-
1277
- This is a polymorphic instruction that can store any dynamic value type with a
1278
- memory representation.
1279
- "#,
1280
- &formats.dynamic_stack_store,
1281
- )
1282
- .operands_in(vec![
1283
- Operand::new("x", Mem).with_doc("Value to be stored"),
1284
- Operand::new("DSS", &entities.dynamic_stack_slot),
1285
- ])
1286
- .can_store(),
1287
- );
1288
-
1289
- ig.push(
1290
- Inst::new(
1291
- "dynamic_stack_addr",
1292
- r#"
1293
- Get the address of a dynamic stack slot.
1294
-
1295
- Compute the absolute address of the first byte of a dynamic stack slot.
1296
- "#,
1297
- &formats.dynamic_stack_load,
1298
- )
1299
- .operands_in(vec![Operand::new("DSS", &entities.dynamic_stack_slot)])
1300
- .operands_out(vec![Operand::new("addr", iAddr)]),
1301
- );
1302
-
1303
- ig.push(
1304
- Inst::new(
1305
- "global_value",
1306
- r#"
1307
- Compute the value of global GV.
1308
- "#,
1309
- &formats.unary_global_value,
1310
- )
1311
- .operands_in(vec![Operand::new("GV", &entities.global_value)])
1312
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")]),
1313
- );
1314
-
1315
- ig.push(
1316
- Inst::new(
1317
- "symbol_value",
1318
- r#"
1319
- Compute the value of global GV, which is a symbolic value.
1320
- "#,
1321
- &formats.unary_global_value,
1322
- )
1323
- .operands_in(vec![Operand::new("GV", &entities.global_value)])
1324
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")]),
1325
- );
1326
-
1327
- ig.push(
1328
- Inst::new(
1329
- "tls_value",
1330
- r#"
1331
- Compute the value of global GV, which is a TLS (thread local storage) value.
1332
- "#,
1333
- &formats.unary_global_value,
1334
- )
1335
- .operands_in(vec![Operand::new("GV", &entities.global_value)])
1336
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")]),
1337
- );
1338
-
1339
- // Note this instruction is marked as having other side-effects, so GVN won't try to hoist it,
1340
- // which would result in it being subject to spilling. While not hoisting would generally hurt
1341
- // performance, since a computed value used many times may need to be regenerated before each
1342
- // use, it is not the case here: this instruction doesn't generate any code. That's because,
1343
- // by definition the pinned register is never used by the register allocator, but is written to
1344
- // and read explicitly and exclusively by set_pinned_reg and get_pinned_reg.
1345
- ig.push(
1346
- Inst::new(
1347
- "get_pinned_reg",
1348
- r#"
1349
- Gets the content of the pinned register, when it's enabled.
1350
- "#,
1351
- &formats.nullary,
1352
- )
1353
- .operands_out(vec![Operand::new("addr", iAddr)])
1354
- .other_side_effects(),
1355
- );
1356
-
1357
- ig.push(
1358
- Inst::new(
1359
- "set_pinned_reg",
1360
- r#"
1361
- Sets the content of the pinned register, when it's enabled.
1362
- "#,
1363
- &formats.unary,
1364
- )
1365
- .operands_in(vec![Operand::new("addr", iAddr)])
1366
- .other_side_effects(),
1367
- );
1368
-
1369
- ig.push(
1370
- Inst::new(
1371
- "get_frame_pointer",
1372
- r#"
1373
- Get the address in the frame pointer register.
1374
-
1375
- Usage of this instruction requires setting `preserve_frame_pointers` to `true`.
1376
- "#,
1377
- &formats.nullary,
1378
- )
1379
- .operands_out(vec![Operand::new("addr", iAddr)]),
1380
- );
1381
-
1382
- ig.push(
1383
- Inst::new(
1384
- "get_stack_pointer",
1385
- r#"
1386
- Get the address in the stack pointer register.
1387
- "#,
1388
- &formats.nullary,
1389
- )
1390
- .operands_out(vec![Operand::new("addr", iAddr)]),
1391
- );
1392
-
1393
- ig.push(
1394
- Inst::new(
1395
- "get_return_address",
1396
- r#"
1397
- Get the PC where this function will transfer control to when it returns.
1398
-
1399
- Usage of this instruction requires setting `preserve_frame_pointers` to `true`.
1400
- "#,
1401
- &formats.nullary,
1402
- )
1403
- .operands_out(vec![Operand::new("addr", iAddr)]),
1404
- );
1405
-
1406
- ig.push(
1407
- Inst::new(
1408
- "iconst",
1409
- r#"
1410
- Integer constant.
1411
-
1412
- Create a scalar integer SSA value with an immediate constant value, or
1413
- an integer vector where all the lanes have the same value.
1414
- "#,
1415
- &formats.unary_imm,
1416
- )
1417
- .operands_in(vec![Operand::new("N", &imm.imm64)])
1418
- .operands_out(vec![
1419
- Operand::new("a", NarrowInt).with_doc("A constant integer scalar or vector value"),
1420
- ]),
1421
- );
1422
-
1423
- ig.push(
1424
- Inst::new(
1425
- "f16const",
1426
- r#"
1427
- Floating point constant.
1428
-
1429
- Create a `f16` SSA value with an immediate constant value.
1430
- "#,
1431
- &formats.unary_ieee16,
1432
- )
1433
- .operands_in(vec![Operand::new("N", &imm.ieee16)])
1434
- .operands_out(vec![
1435
- Operand::new("a", f16_).with_doc("A constant f16 scalar value"),
1436
- ]),
1437
- );
1438
-
1439
- ig.push(
1440
- Inst::new(
1441
- "f32const",
1442
- r#"
1443
- Floating point constant.
1444
-
1445
- Create a `f32` SSA value with an immediate constant value.
1446
- "#,
1447
- &formats.unary_ieee32,
1448
- )
1449
- .operands_in(vec![Operand::new("N", &imm.ieee32)])
1450
- .operands_out(vec![
1451
- Operand::new("a", f32_).with_doc("A constant f32 scalar value"),
1452
- ]),
1453
- );
1454
-
1455
- ig.push(
1456
- Inst::new(
1457
- "f64const",
1458
- r#"
1459
- Floating point constant.
1460
-
1461
- Create a `f64` SSA value with an immediate constant value.
1462
- "#,
1463
- &formats.unary_ieee64,
1464
- )
1465
- .operands_in(vec![Operand::new("N", &imm.ieee64)])
1466
- .operands_out(vec![
1467
- Operand::new("a", f64_).with_doc("A constant f64 scalar value"),
1468
- ]),
1469
- );
1470
-
1471
- ig.push(
1472
- Inst::new(
1473
- "f128const",
1474
- r#"
1475
- Floating point constant.
1476
-
1477
- Create a `f128` SSA value with an immediate constant value.
1478
- "#,
1479
- &formats.unary_const,
1480
- )
1481
- .operands_in(vec![Operand::new("N", &entities.pool_constant)])
1482
- .operands_out(vec![
1483
- Operand::new("a", f128_).with_doc("A constant f128 scalar value"),
1484
- ]),
1485
- );
1486
-
1487
- ig.push(
1488
- Inst::new(
1489
- "vconst",
1490
- r#"
1491
- SIMD vector constant.
1492
-
1493
- Construct a vector with the given immediate bytes.
1494
- "#,
1495
- &formats.unary_const,
1496
- )
1497
- .operands_in(vec![
1498
- Operand::new("N", &entities.pool_constant)
1499
- .with_doc("The 16 immediate bytes of a 128-bit vector"),
1500
- ])
1501
- .operands_out(vec![
1502
- Operand::new("a", TxN).with_doc("A constant vector value"),
1503
- ]),
1504
- );
1505
-
1506
- let Tx16 = &TypeVar::new(
1507
- "Tx16",
1508
- "A SIMD vector with exactly 16 lanes of 8-bit values; eventually this may support other \
1509
- lane counts and widths",
1510
- TypeSetBuilder::new()
1511
- .ints(8..8)
1512
- .simd_lanes(16..16)
1513
- .includes_scalars(false)
1514
- .build(),
1515
- );
1516
-
1517
- ig.push(
1518
- Inst::new(
1519
- "shuffle",
1520
- r#"
1521
- SIMD vector shuffle.
1522
-
1523
- Shuffle two vectors using the given immediate bytes. For each of the 16 bytes of the
1524
- immediate, a value i of 0-15 selects the i-th element of the first vector and a value i of
1525
- 16-31 selects the (i-16)th element of the second vector. Immediate values outside of the
1526
- 0-31 range are not valid.
1527
- "#,
1528
- &formats.shuffle,
1529
- )
1530
- .operands_in(vec![
1531
- Operand::new("a", Tx16).with_doc("A vector value"),
1532
- Operand::new("b", Tx16).with_doc("A vector value"),
1533
- Operand::new("mask", &entities.uimm128)
1534
- .with_doc("The 16 immediate bytes used for selecting the elements to shuffle"),
1535
- ])
1536
- .operands_out(vec![Operand::new("a", Tx16).with_doc("A vector value")]),
1537
- );
1538
-
1539
- ig.push(Inst::new(
1540
- "nop",
1541
- r#"
1542
- Just a dummy instruction.
1543
-
1544
- Note: this doesn't compile to a machine code nop.
1545
- "#,
1546
- &formats.nullary,
1547
- ));
1548
-
1549
- ig.push(
1550
- Inst::new(
1551
- "select",
1552
- r#"
1553
- Conditional select.
1554
-
1555
- This instruction selects whole values. Use `bitselect` to choose each
1556
- bit according to a mask.
1557
- "#,
1558
- &formats.ternary,
1559
- )
1560
- .operands_in(vec![
1561
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
1562
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1563
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1564
- ])
1565
- .operands_out(vec![Operand::new("a", Any)]),
1566
- );
1567
-
1568
- ig.push(
1569
- Inst::new(
1570
- "select_spectre_guard",
1571
- r#"
1572
- Conditional select intended for Spectre guards.
1573
-
1574
- This operation is semantically equivalent to a select instruction.
1575
- However, this instruction prohibits all speculation on the
1576
- controlling value when determining which input to use as the result.
1577
- As such, it is suitable for use in Spectre guards.
1578
-
1579
- For example, on a target which may speculatively execute branches,
1580
- the lowering of this instruction is guaranteed to not conditionally
1581
- branch. Instead it will typically lower to a conditional move
1582
- instruction. (No Spectre-vulnerable processors are known to perform
1583
- value speculation on conditional move instructions.)
1584
-
1585
- Ensure that the instruction you're trying to protect from Spectre
1586
- attacks has a data dependency on the result of this instruction.
1587
- That prevents an out-of-order CPU from evaluating that instruction
1588
- until the result of this one is known, which in turn will be blocked
1589
- until the controlling value is known.
1590
-
1591
- Typical usage is to use a bounds-check as the controlling value,
1592
- and select between either a null pointer if the bounds-check
1593
- fails, or an in-bounds address otherwise, so that dereferencing
1594
- the resulting address with a load or store instruction will trap if
1595
- the bounds-check failed. When this instruction is used in this way,
1596
- any microarchitectural side effects of the memory access will only
1597
- occur after the bounds-check finishes, which ensures that no Spectre
1598
- vulnerability will exist.
1599
-
1600
- Optimization opportunities for this instruction are limited compared
1601
- to a normal select instruction, but it is allowed to be replaced
1602
- by other values which are functionally equivalent as long as doing
1603
- so does not introduce any new opportunities to speculate on the
1604
- controlling value.
1605
- "#,
1606
- &formats.ternary,
1607
- )
1608
- .operands_in(vec![
1609
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
1610
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1611
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1612
- ])
1613
- .operands_out(vec![Operand::new("a", Any)]),
1614
- );
1615
-
1616
- ig.push(
1617
- Inst::new(
1618
- "bitselect",
1619
- r#"
1620
- Conditional select of bits.
1621
-
1622
- For each bit in `c`, this instruction selects the corresponding bit from `x` if the bit
1623
- in `x` is 1 and the corresponding bit from `y` if the bit in `c` is 0. See also:
1624
- `select`.
1625
- "#,
1626
- &formats.ternary,
1627
- )
1628
- .operands_in(vec![
1629
- Operand::new("c", Any).with_doc("Controlling value to test"),
1630
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1631
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1632
- ])
1633
- .operands_out(vec![Operand::new("a", Any)]),
1634
- );
1635
-
1636
- ig.push(
1637
- Inst::new(
1638
- "x86_blendv",
1639
- r#"
1640
- A bitselect-lookalike instruction except with the semantics of
1641
- `blendv`-related instructions on x86.
1642
-
1643
- This instruction will use the top bit of each lane in `c`, the condition
1644
- mask. If the bit is 1 then the corresponding lane from `x` is chosen.
1645
- Otherwise the corresponding lane from `y` is chosen.
1646
-
1647
- "#,
1648
- &formats.ternary,
1649
- )
1650
- .operands_in(vec![
1651
- Operand::new("c", Any).with_doc("Controlling value to test"),
1652
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1653
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1654
- ])
1655
- .operands_out(vec![Operand::new("a", Any)]),
1656
- );
1657
-
1658
- ig.push(
1659
- Inst::new(
1660
- "vany_true",
1661
- r#"
1662
- Reduce a vector to a scalar boolean.
1663
-
1664
- Return a scalar boolean true if any lane in ``a`` is non-zero, false otherwise.
1665
- "#,
1666
- &formats.unary,
1667
- )
1668
- .operands_in(vec![Operand::new("a", TxN)])
1669
- .operands_out(vec![Operand::new("s", i8)]),
1670
- );
1671
-
1672
- ig.push(
1673
- Inst::new(
1674
- "vall_true",
1675
- r#"
1676
- Reduce a vector to a scalar boolean.
1677
-
1678
- Return a scalar boolean true if all lanes in ``i`` are non-zero, false otherwise.
1679
- "#,
1680
- &formats.unary,
1681
- )
1682
- .operands_in(vec![Operand::new("a", TxN)])
1683
- .operands_out(vec![Operand::new("s", i8)]),
1684
- );
1685
-
1686
- ig.push(
1687
- Inst::new(
1688
- "vhigh_bits",
1689
- r#"
1690
- Reduce a vector to a scalar integer.
1691
-
1692
- Return a scalar integer, consisting of the concatenation of the most significant bit
1693
- of each lane of ``a``.
1694
- "#,
1695
- &formats.unary,
1696
- )
1697
- .operands_in(vec![Operand::new("a", TxN)])
1698
- .operands_out(vec![Operand::new("x", NarrowInt)]),
1699
- );
1700
-
1701
- ig.push(
1702
- Inst::new(
1703
- "icmp",
1704
- r#"
1705
- Integer comparison.
1706
-
1707
- The condition code determines if the operands are interpreted as signed
1708
- or unsigned integers.
1709
-
1710
- | Signed | Unsigned | Condition |
1711
- |--------|----------|-----------------------|
1712
- | eq | eq | Equal |
1713
- | ne | ne | Not equal |
1714
- | slt | ult | Less than |
1715
- | sge | uge | Greater than or equal |
1716
- | sgt | ugt | Greater than |
1717
- | sle | ule | Less than or equal |
1718
-
1719
- When this instruction compares integer vectors, it returns a vector of
1720
- lane-wise comparisons.
1721
-
1722
- When comparing scalars, the result is:
1723
- - `1` if the condition holds.
1724
- - `0` if the condition does not hold.
1725
-
1726
- When comparing vectors, the result is:
1727
- - `-1` (i.e. all ones) in each lane where the condition holds.
1728
- - `0` in each lane where the condition does not hold.
1729
- "#,
1730
- &formats.int_compare,
1731
- )
1732
- .operands_in(vec![
1733
- Operand::new("Cond", &imm.intcc),
1734
- Operand::new("x", Int),
1735
- Operand::new("y", Int),
1736
- ])
1737
- .operands_out(vec![Operand::new("a", &Int.as_truthy())]),
1738
- );
1739
-
1740
- ig.push(
1741
- Inst::new(
1742
- "icmp_imm",
1743
- r#"
1744
- Compare scalar integer to a constant.
1745
-
1746
- This is the same as the `icmp` instruction, except one operand is
1747
- a sign extended 64 bit immediate constant.
1748
-
1749
- This instruction can only compare scalars. Use `icmp` for
1750
- lane-wise vector comparisons.
1751
- "#,
1752
- &formats.int_compare_imm,
1753
- )
1754
- .operands_in(vec![
1755
- Operand::new("Cond", &imm.intcc),
1756
- Operand::new("x", iB),
1757
- Operand::new("Y", &imm.imm64),
1758
- ])
1759
- .operands_out(vec![Operand::new("a", i8)]),
1760
- );
1761
-
1762
- ig.push(
1763
- Inst::new(
1764
- "iadd",
1765
- r#"
1766
- Wrapping integer addition: `a := x + y \pmod{2^B}`.
1767
-
1768
- This instruction does not depend on the signed/unsigned interpretation
1769
- of the operands.
1770
- "#,
1771
- &formats.binary,
1772
- )
1773
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1774
- .operands_out(vec![Operand::new("a", Int)]),
1775
- );
1776
-
1777
- ig.push(
1778
- Inst::new(
1779
- "isub",
1780
- r#"
1781
- Wrapping integer subtraction: `a := x - y \pmod{2^B}`.
1782
-
1783
- This instruction does not depend on the signed/unsigned interpretation
1784
- of the operands.
1785
- "#,
1786
- &formats.binary,
1787
- )
1788
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1789
- .operands_out(vec![Operand::new("a", Int)]),
1790
- );
1791
-
1792
- ig.push(
1793
- Inst::new(
1794
- "ineg",
1795
- r#"
1796
- Integer negation: `a := -x \pmod{2^B}`.
1797
- "#,
1798
- &formats.unary,
1799
- )
1800
- .operands_in(vec![Operand::new("x", Int)])
1801
- .operands_out(vec![Operand::new("a", Int)]),
1802
- );
1803
-
1804
- ig.push(
1805
- Inst::new(
1806
- "iabs",
1807
- r#"
1808
- Integer absolute value with wrapping: `a := |x|`.
1809
- "#,
1810
- &formats.unary,
1811
- )
1812
- .operands_in(vec![Operand::new("x", Int)])
1813
- .operands_out(vec![Operand::new("a", Int)]),
1814
- );
1815
-
1816
- ig.push(
1817
- Inst::new(
1818
- "imul",
1819
- r#"
1820
- Wrapping integer multiplication: `a := x y \pmod{2^B}`.
1821
-
1822
- This instruction does not depend on the signed/unsigned interpretation
1823
- of the operands.
1824
-
1825
- Polymorphic over all integer types (vector and scalar).
1826
- "#,
1827
- &formats.binary,
1828
- )
1829
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1830
- .operands_out(vec![Operand::new("a", Int)]),
1831
- );
1832
-
1833
- ig.push(
1834
- Inst::new(
1835
- "umulhi",
1836
- r#"
1837
- Unsigned integer multiplication, producing the high half of a
1838
- double-length result.
1839
-
1840
- Polymorphic over all integer types (vector and scalar).
1841
- "#,
1842
- &formats.binary,
1843
- )
1844
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1845
- .operands_out(vec![Operand::new("a", Int)]),
1846
- );
1847
-
1848
- ig.push(
1849
- Inst::new(
1850
- "smulhi",
1851
- r#"
1852
- Signed integer multiplication, producing the high half of a
1853
- double-length result.
1854
-
1855
- Polymorphic over all integer types (vector and scalar).
1856
- "#,
1857
- &formats.binary,
1858
- )
1859
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1860
- .operands_out(vec![Operand::new("a", Int)]),
1861
- );
1862
-
1863
- let I16or32 = &TypeVar::new(
1864
- "I16or32",
1865
- "A vector integer type with 16- or 32-bit numbers",
1866
- TypeSetBuilder::new().ints(16..32).simd_lanes(4..8).build(),
1867
- );
1868
-
1869
- ig.push(
1870
- Inst::new(
1871
- "sqmul_round_sat",
1872
- r#"
1873
- Fixed-point multiplication of numbers in the QN format, where N + 1
1874
- is the number bitwidth:
1875
- `a := signed_saturate((x * y + (1 << (Q - 1))) >> Q)`
1876
-
1877
- Polymorphic over all integer vector types with 16- or 32-bit numbers.
1878
- "#,
1879
- &formats.binary,
1880
- )
1881
- .operands_in(vec![Operand::new("x", I16or32), Operand::new("y", I16or32)])
1882
- .operands_out(vec![Operand::new("a", I16or32)]),
1883
- );
1884
-
1885
- ig.push(
1886
- Inst::new(
1887
- "x86_pmulhrsw",
1888
- r#"
1889
- A similar instruction to `sqmul_round_sat` except with the semantics
1890
- of x86's `pmulhrsw` instruction.
1891
-
1892
- This is the same as `sqmul_round_sat` except when both input lanes are
1893
- `i16::MIN`.
1894
- "#,
1895
- &formats.binary,
1896
- )
1897
- .operands_in(vec![Operand::new("x", I16or32), Operand::new("y", I16or32)])
1898
- .operands_out(vec![Operand::new("a", I16or32)]),
1899
- );
1900
-
1901
- // Integer division and remainder are scalar-only; most
1902
- // hardware does not directly support vector integer division.
1903
-
1904
- ig.push(
1905
- Inst::new(
1906
- "udiv",
1907
- r#"
1908
- Unsigned integer division: `a := \lfloor {x \over y} \rfloor`.
1909
-
1910
- This operation traps if the divisor is zero.
1911
- "#,
1912
- &formats.binary,
1913
- )
1914
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1915
- .operands_out(vec![Operand::new("a", iB)])
1916
- .can_trap()
1917
- .side_effects_idempotent(),
1918
- );
1919
-
1920
- ig.push(
1921
- Inst::new(
1922
- "sdiv",
1923
- r#"
1924
- Signed integer division rounded toward zero: `a := sign(xy)
1925
- \lfloor {|x| \over |y|}\rfloor`.
1926
-
1927
- This operation traps if the divisor is zero, or if the result is not
1928
- representable in `B` bits two's complement. This only happens
1929
- when `x = -2^{B-1}, y = -1`.
1930
- "#,
1931
- &formats.binary,
1932
- )
1933
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1934
- .operands_out(vec![Operand::new("a", iB)])
1935
- .can_trap()
1936
- .side_effects_idempotent(),
1937
- );
1938
-
1939
- ig.push(
1940
- Inst::new(
1941
- "urem",
1942
- r#"
1943
- Unsigned integer remainder.
1944
-
1945
- This operation traps if the divisor is zero.
1946
- "#,
1947
- &formats.binary,
1948
- )
1949
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1950
- .operands_out(vec![Operand::new("a", iB)])
1951
- .can_trap()
1952
- .side_effects_idempotent(),
1953
- );
1954
-
1955
- ig.push(
1956
- Inst::new(
1957
- "srem",
1958
- r#"
1959
- Signed integer remainder. The result has the sign of the dividend.
1960
-
1961
- This operation traps if the divisor is zero.
1962
- "#,
1963
- &formats.binary,
1964
- )
1965
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1966
- .operands_out(vec![Operand::new("a", iB)])
1967
- .can_trap()
1968
- .side_effects_idempotent(),
1969
- );
1970
-
1971
- ig.push(
1972
- Inst::new(
1973
- "iadd_imm",
1974
- r#"
1975
- Add immediate integer.
1976
-
1977
- Same as `iadd`, but one operand is a sign extended 64 bit immediate constant.
1978
-
1979
- Polymorphic over all scalar integer types, but does not support vector
1980
- types.
1981
- "#,
1982
- &formats.binary_imm64,
1983
- )
1984
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1985
- .operands_out(vec![Operand::new("a", iB)]),
1986
- );
1987
-
1988
- ig.push(
1989
- Inst::new(
1990
- "imul_imm",
1991
- r#"
1992
- Integer multiplication by immediate constant.
1993
-
1994
- Same as `imul`, but one operand is a sign extended 64 bit immediate constant.
1995
-
1996
- Polymorphic over all scalar integer types, but does not support vector
1997
- types.
1998
- "#,
1999
- &formats.binary_imm64,
2000
- )
2001
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2002
- .operands_out(vec![Operand::new("a", iB)]),
2003
- );
2004
-
2005
- ig.push(
2006
- Inst::new(
2007
- "udiv_imm",
2008
- r#"
2009
- Unsigned integer division by an immediate constant.
2010
-
2011
- Same as `udiv`, but one operand is a zero extended 64 bit immediate constant.
2012
-
2013
- This operation traps if the divisor is zero.
2014
- "#,
2015
- &formats.binary_imm64,
2016
- )
2017
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2018
- .operands_out(vec![Operand::new("a", iB)]),
2019
- );
2020
-
2021
- ig.push(
2022
- Inst::new(
2023
- "sdiv_imm",
2024
- r#"
2025
- Signed integer division by an immediate constant.
2026
-
2027
- Same as `sdiv`, but one operand is a sign extended 64 bit immediate constant.
2028
-
2029
- This operation traps if the divisor is zero, or if the result is not
2030
- representable in `B` bits two's complement. This only happens
2031
- when `x = -2^{B-1}, Y = -1`.
2032
- "#,
2033
- &formats.binary_imm64,
2034
- )
2035
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2036
- .operands_out(vec![Operand::new("a", iB)]),
2037
- );
2038
-
2039
- ig.push(
2040
- Inst::new(
2041
- "urem_imm",
2042
- r#"
2043
- Unsigned integer remainder with immediate divisor.
2044
-
2045
- Same as `urem`, but one operand is a zero extended 64 bit immediate constant.
2046
-
2047
- This operation traps if the divisor is zero.
2048
- "#,
2049
- &formats.binary_imm64,
2050
- )
2051
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2052
- .operands_out(vec![Operand::new("a", iB)]),
2053
- );
2054
-
2055
- ig.push(
2056
- Inst::new(
2057
- "srem_imm",
2058
- r#"
2059
- Signed integer remainder with immediate divisor.
2060
-
2061
- Same as `srem`, but one operand is a sign extended 64 bit immediate constant.
2062
-
2063
- This operation traps if the divisor is zero.
2064
- "#,
2065
- &formats.binary_imm64,
2066
- )
2067
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2068
- .operands_out(vec![Operand::new("a", iB)]),
2069
- );
2070
-
2071
- ig.push(
2072
- Inst::new(
2073
- "irsub_imm",
2074
- r#"
2075
- Immediate reverse wrapping subtraction: `a := Y - x \pmod{2^B}`.
2076
-
2077
- The immediate operand is a sign extended 64 bit constant.
2078
-
2079
- Also works as integer negation when `Y = 0`. Use `iadd_imm`
2080
- with a negative immediate operand for the reverse immediate
2081
- subtraction.
2082
-
2083
- Polymorphic over all scalar integer types, but does not support vector
2084
- types.
2085
- "#,
2086
- &formats.binary_imm64,
2087
- )
2088
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2089
- .operands_out(vec![Operand::new("a", iB)]),
2090
- );
2091
-
2092
- ig.push(
2093
- Inst::new(
2094
- "sadd_overflow_cin",
2095
- r#"
2096
- Add signed integers with carry in and overflow out.
2097
-
2098
- Same as `sadd_overflow` with an additional carry input. The `c_in` type
2099
- is interpreted as 1 if it's nonzero or 0 if it's zero.
2100
- "#,
2101
- &formats.ternary,
2102
- )
2103
- .operands_in(vec![
2104
- Operand::new("x", iB),
2105
- Operand::new("y", iB),
2106
- Operand::new("c_in", i8).with_doc("Input carry flag"),
2107
- ])
2108
- .operands_out(vec![
2109
- Operand::new("a", iB),
2110
- Operand::new("c_out", i8).with_doc("Output carry flag"),
2111
- ]),
2112
- );
2113
-
2114
- ig.push(
2115
- Inst::new(
2116
- "uadd_overflow_cin",
2117
- r#"
2118
- Add unsigned integers with carry in and overflow out.
2119
-
2120
- Same as `uadd_overflow` with an additional carry input. The `c_in` type
2121
- is interpreted as 1 if it's nonzero or 0 if it's zero.
2122
- "#,
2123
- &formats.ternary,
2124
- )
2125
- .operands_in(vec![
2126
- Operand::new("x", iB),
2127
- Operand::new("y", iB),
2128
- Operand::new("c_in", i8).with_doc("Input carry flag"),
2129
- ])
2130
- .operands_out(vec![
2131
- Operand::new("a", iB),
2132
- Operand::new("c_out", i8).with_doc("Output carry flag"),
2133
- ]),
2134
- );
2135
-
2136
- {
2137
- let of_out = Operand::new("of", i8).with_doc("Overflow flag");
2138
- ig.push(
2139
- Inst::new(
2140
- "uadd_overflow",
2141
- r#"
2142
- Add integers unsigned with overflow out.
2143
- ``of`` is set when the addition overflowed.
2144
- ```text
2145
- a &= x + y \pmod 2^B \\
2146
- of &= x+y >= 2^B
2147
- ```
2148
- Polymorphic over all scalar integer types, but does not support vector
2149
- types.
2150
- "#,
2151
- &formats.binary,
2152
- )
2153
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2154
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2155
- );
2156
-
2157
- ig.push(
2158
- Inst::new(
2159
- "sadd_overflow",
2160
- r#"
2161
- Add integers signed with overflow out.
2162
- ``of`` is set when the addition over- or underflowed.
2163
- Polymorphic over all scalar integer types, but does not support vector
2164
- types.
2165
- "#,
2166
- &formats.binary,
2167
- )
2168
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2169
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2170
- );
2171
-
2172
- ig.push(
2173
- Inst::new(
2174
- "usub_overflow",
2175
- r#"
2176
- Subtract integers unsigned with overflow out.
2177
- ``of`` is set when the subtraction underflowed.
2178
- ```text
2179
- a &= x - y \pmod 2^B \\
2180
- of &= x - y < 0
2181
- ```
2182
- Polymorphic over all scalar integer types, but does not support vector
2183
- types.
2184
- "#,
2185
- &formats.binary,
2186
- )
2187
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2188
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2189
- );
2190
-
2191
- ig.push(
2192
- Inst::new(
2193
- "ssub_overflow",
2194
- r#"
2195
- Subtract integers signed with overflow out.
2196
- ``of`` is set when the subtraction over- or underflowed.
2197
- Polymorphic over all scalar integer types, but does not support vector
2198
- types.
2199
- "#,
2200
- &formats.binary,
2201
- )
2202
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2203
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2204
- );
2205
-
2206
- {
2207
- let NarrowScalar = &TypeVar::new(
2208
- "NarrowScalar",
2209
- "A scalar integer type up to 64 bits",
2210
- TypeSetBuilder::new().ints(8..64).build(),
2211
- );
2212
-
2213
- ig.push(
2214
- Inst::new(
2215
- "umul_overflow",
2216
- r#"
2217
- Multiply integers unsigned with overflow out.
2218
- ``of`` is set when the multiplication overflowed.
2219
- ```text
2220
- a &= x * y \pmod 2^B \\
2221
- of &= x * y > 2^B
2222
- ```
2223
- Polymorphic over all scalar integer types except i128, but does not support vector
2224
- types.
2225
- "#,
2226
- &formats.binary,
2227
- )
2228
- .operands_in(vec![
2229
- Operand::new("x", NarrowScalar),
2230
- Operand::new("y", NarrowScalar),
2231
- ])
2232
- .operands_out(vec![Operand::new("a", NarrowScalar), of_out.clone()]),
2233
- );
2234
-
2235
- ig.push(
2236
- Inst::new(
2237
- "smul_overflow",
2238
- r#"
2239
- Multiply integers signed with overflow out.
2240
- ``of`` is set when the multiplication over- or underflowed.
2241
- Polymorphic over all scalar integer types except i128, but does not support vector
2242
- types.
2243
- "#,
2244
- &formats.binary,
2245
- )
2246
- .operands_in(vec![
2247
- Operand::new("x", NarrowScalar),
2248
- Operand::new("y", NarrowScalar),
2249
- ])
2250
- .operands_out(vec![Operand::new("a", NarrowScalar), of_out.clone()]),
2251
- );
2252
- }
2253
- }
2254
-
2255
- let i32_64 = &TypeVar::new(
2256
- "i32_64",
2257
- "A 32 or 64-bit scalar integer type",
2258
- TypeSetBuilder::new().ints(32..64).build(),
2259
- );
2260
-
2261
- ig.push(
2262
- Inst::new(
2263
- "uadd_overflow_trap",
2264
- r#"
2265
- Unsigned addition of x and y, trapping if the result overflows.
2266
-
2267
- Accepts 32 or 64-bit integers, and does not support vector types.
2268
- "#,
2269
- &formats.int_add_trap,
2270
- )
2271
- .operands_in(vec![
2272
- Operand::new("x", i32_64),
2273
- Operand::new("y", i32_64),
2274
- Operand::new("code", &imm.trapcode),
2275
- ])
2276
- .operands_out(vec![Operand::new("a", i32_64)])
2277
- .can_trap()
2278
- .side_effects_idempotent(),
2279
- );
2280
-
2281
- ig.push(
2282
- Inst::new(
2283
- "ssub_overflow_bin",
2284
- r#"
2285
- Subtract signed integers with borrow in and overflow out.
2286
-
2287
- Same as `ssub_overflow` with an additional borrow input. The `b_in` type
2288
- is interpreted as 1 if it's nonzero or 0 if it's zero. The computation
2289
- performed here is `x - (y + (b_in != 0))`.
2290
- "#,
2291
- &formats.ternary,
2292
- )
2293
- .operands_in(vec![
2294
- Operand::new("x", iB),
2295
- Operand::new("y", iB),
2296
- Operand::new("b_in", i8).with_doc("Input borrow flag"),
2297
- ])
2298
- .operands_out(vec![
2299
- Operand::new("a", iB),
2300
- Operand::new("b_out", i8).with_doc("Output borrow flag"),
2301
- ]),
2302
- );
2303
-
2304
- ig.push(
2305
- Inst::new(
2306
- "usub_overflow_bin",
2307
- r#"
2308
- Subtract unsigned integers with borrow in and overflow out.
2309
-
2310
- Same as `usub_overflow` with an additional borrow input. The `b_in` type
2311
- is interpreted as 1 if it's nonzero or 0 if it's zero. The computation
2312
- performed here is `x - (y + (b_in != 0))`.
2313
- "#,
2314
- &formats.ternary,
2315
- )
2316
- .operands_in(vec![
2317
- Operand::new("x", iB),
2318
- Operand::new("y", iB),
2319
- Operand::new("b_in", i8).with_doc("Input borrow flag"),
2320
- ])
2321
- .operands_out(vec![
2322
- Operand::new("a", iB),
2323
- Operand::new("b_out", i8).with_doc("Output borrow flag"),
2324
- ]),
2325
- );
2326
-
2327
- let bits = &TypeVar::new(
2328
- "bits",
2329
- "Any integer, float, or vector type",
2330
- TypeSetBuilder::new()
2331
- .ints(Interval::All)
2332
- .floats(Interval::All)
2333
- .simd_lanes(Interval::All)
2334
- .includes_scalars(true)
2335
- .build(),
2336
- );
2337
-
2338
- ig.push(
2339
- Inst::new(
2340
- "band",
2341
- r#"
2342
- Bitwise and.
2343
- "#,
2344
- &formats.binary,
2345
- )
2346
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2347
- .operands_out(vec![Operand::new("a", bits)]),
2348
- );
2349
-
2350
- ig.push(
2351
- Inst::new(
2352
- "bor",
2353
- r#"
2354
- Bitwise or.
2355
- "#,
2356
- &formats.binary,
2357
- )
2358
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2359
- .operands_out(vec![Operand::new("a", bits)]),
2360
- );
2361
-
2362
- ig.push(
2363
- Inst::new(
2364
- "bxor",
2365
- r#"
2366
- Bitwise xor.
2367
- "#,
2368
- &formats.binary,
2369
- )
2370
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2371
- .operands_out(vec![Operand::new("a", bits)]),
2372
- );
2373
-
2374
- ig.push(
2375
- Inst::new(
2376
- "bnot",
2377
- r#"
2378
- Bitwise not.
2379
- "#,
2380
- &formats.unary,
2381
- )
2382
- .operands_in(vec![Operand::new("x", bits)])
2383
- .operands_out(vec![Operand::new("a", bits)]),
2384
- );
2385
-
2386
- ig.push(
2387
- Inst::new(
2388
- "band_not",
2389
- r#"
2390
- Bitwise and not.
2391
-
2392
- Computes `x & ~y`.
2393
- "#,
2394
- &formats.binary,
2395
- )
2396
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2397
- .operands_out(vec![Operand::new("a", bits)]),
2398
- );
2399
-
2400
- ig.push(
2401
- Inst::new(
2402
- "bor_not",
2403
- r#"
2404
- Bitwise or not.
2405
-
2406
- Computes `x | ~y`.
2407
- "#,
2408
- &formats.binary,
2409
- )
2410
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2411
- .operands_out(vec![Operand::new("a", bits)]),
2412
- );
2413
-
2414
- ig.push(
2415
- Inst::new(
2416
- "bxor_not",
2417
- r#"
2418
- Bitwise xor not.
2419
-
2420
- Computes `x ^ ~y`.
2421
- "#,
2422
- &formats.binary,
2423
- )
2424
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2425
- .operands_out(vec![Operand::new("a", bits)]),
2426
- );
2427
-
2428
- ig.push(
2429
- Inst::new(
2430
- "band_imm",
2431
- r#"
2432
- Bitwise and with immediate.
2433
-
2434
- Same as `band`, but one operand is a zero extended 64 bit immediate constant.
2435
-
2436
- Polymorphic over all scalar integer types, but does not support vector
2437
- types.
2438
- "#,
2439
- &formats.binary_imm64,
2440
- )
2441
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2442
- .operands_out(vec![Operand::new("a", iB)]),
2443
- );
2444
-
2445
- ig.push(
2446
- Inst::new(
2447
- "bor_imm",
2448
- r#"
2449
- Bitwise or with immediate.
2450
-
2451
- Same as `bor`, but one operand is a zero extended 64 bit immediate constant.
2452
-
2453
- Polymorphic over all scalar integer types, but does not support vector
2454
- types.
2455
- "#,
2456
- &formats.binary_imm64,
2457
- )
2458
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2459
- .operands_out(vec![Operand::new("a", iB)]),
2460
- );
2461
-
2462
- ig.push(
2463
- Inst::new(
2464
- "bxor_imm",
2465
- r#"
2466
- Bitwise xor with immediate.
2467
-
2468
- Same as `bxor`, but one operand is a zero extended 64 bit immediate constant.
2469
-
2470
- Polymorphic over all scalar integer types, but does not support vector
2471
- types.
2472
- "#,
2473
- &formats.binary_imm64,
2474
- )
2475
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2476
- .operands_out(vec![Operand::new("a", iB)]),
2477
- );
2478
-
2479
- ig.push(
2480
- Inst::new(
2481
- "rotl",
2482
- r#"
2483
- Rotate left.
2484
-
2485
- Rotate the bits in ``x`` by ``y`` places.
2486
- "#,
2487
- &formats.binary,
2488
- )
2489
- .operands_in(vec![
2490
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2491
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2492
- ])
2493
- .operands_out(vec![Operand::new("a", Int)]),
2494
- );
2495
-
2496
- ig.push(
2497
- Inst::new(
2498
- "rotr",
2499
- r#"
2500
- Rotate right.
2501
-
2502
- Rotate the bits in ``x`` by ``y`` places.
2503
- "#,
2504
- &formats.binary,
2505
- )
2506
- .operands_in(vec![
2507
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2508
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2509
- ])
2510
- .operands_out(vec![Operand::new("a", Int)]),
2511
- );
2512
-
2513
- ig.push(
2514
- Inst::new(
2515
- "rotl_imm",
2516
- r#"
2517
- Rotate left by immediate.
2518
-
2519
- Same as `rotl`, but one operand is a zero extended 64 bit immediate constant.
2520
- "#,
2521
- &formats.binary_imm64,
2522
- )
2523
- .operands_in(vec![
2524
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2525
- Operand::new("Y", &imm.imm64),
2526
- ])
2527
- .operands_out(vec![Operand::new("a", Int)]),
2528
- );
2529
-
2530
- ig.push(
2531
- Inst::new(
2532
- "rotr_imm",
2533
- r#"
2534
- Rotate right by immediate.
2535
-
2536
- Same as `rotr`, but one operand is a zero extended 64 bit immediate constant.
2537
- "#,
2538
- &formats.binary_imm64,
2539
- )
2540
- .operands_in(vec![
2541
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2542
- Operand::new("Y", &imm.imm64),
2543
- ])
2544
- .operands_out(vec![Operand::new("a", Int)]),
2545
- );
2546
-
2547
- ig.push(
2548
- Inst::new(
2549
- "ishl",
2550
- r#"
2551
- Integer shift left. Shift the bits in ``x`` towards the MSB by ``y``
2552
- places. Shift in zero bits to the LSB.
2553
-
2554
- The shift amount is masked to the size of ``x``.
2555
-
2556
- When shifting a B-bits integer type, this instruction computes:
2557
-
2558
- ```text
2559
- s &:= y \pmod B,
2560
- a &:= x \cdot 2^s \pmod{2^B}.
2561
- ```
2562
- "#,
2563
- &formats.binary,
2564
- )
2565
- .operands_in(vec![
2566
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2567
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2568
- ])
2569
- .operands_out(vec![Operand::new("a", Int)]),
2570
- );
2571
-
2572
- ig.push(
2573
- Inst::new(
2574
- "ushr",
2575
- r#"
2576
- Unsigned shift right. Shift bits in ``x`` towards the LSB by ``y``
2577
- places, shifting in zero bits to the MSB. Also called a *logical
2578
- shift*.
2579
-
2580
- The shift amount is masked to the size of ``x``.
2581
-
2582
- When shifting a B-bits integer type, this instruction computes:
2583
-
2584
- ```text
2585
- s &:= y \pmod B,
2586
- a &:= \lfloor x \cdot 2^{-s} \rfloor.
2587
- ```
2588
- "#,
2589
- &formats.binary,
2590
- )
2591
- .operands_in(vec![
2592
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2593
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2594
- ])
2595
- .operands_out(vec![Operand::new("a", Int)]),
2596
- );
2597
-
2598
- ig.push(
2599
- Inst::new(
2600
- "sshr",
2601
- r#"
2602
- Signed shift right. Shift bits in ``x`` towards the LSB by ``y``
2603
- places, shifting in sign bits to the MSB. Also called an *arithmetic
2604
- shift*.
2605
-
2606
- The shift amount is masked to the size of ``x``.
2607
- "#,
2608
- &formats.binary,
2609
- )
2610
- .operands_in(vec![
2611
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2612
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2613
- ])
2614
- .operands_out(vec![Operand::new("a", Int)]),
2615
- );
2616
-
2617
- ig.push(
2618
- Inst::new(
2619
- "ishl_imm",
2620
- r#"
2621
- Integer shift left by immediate.
2622
-
2623
- The shift amount is masked to the size of ``x``.
2624
- "#,
2625
- &formats.binary_imm64,
2626
- )
2627
- .operands_in(vec![
2628
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2629
- Operand::new("Y", &imm.imm64),
2630
- ])
2631
- .operands_out(vec![Operand::new("a", Int)]),
2632
- );
2633
-
2634
- ig.push(
2635
- Inst::new(
2636
- "ushr_imm",
2637
- r#"
2638
- Unsigned shift right by immediate.
2639
-
2640
- The shift amount is masked to the size of ``x``.
2641
- "#,
2642
- &formats.binary_imm64,
2643
- )
2644
- .operands_in(vec![
2645
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2646
- Operand::new("Y", &imm.imm64),
2647
- ])
2648
- .operands_out(vec![Operand::new("a", Int)]),
2649
- );
2650
-
2651
- ig.push(
2652
- Inst::new(
2653
- "sshr_imm",
2654
- r#"
2655
- Signed shift right by immediate.
2656
-
2657
- The shift amount is masked to the size of ``x``.
2658
- "#,
2659
- &formats.binary_imm64,
2660
- )
2661
- .operands_in(vec![
2662
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2663
- Operand::new("Y", &imm.imm64),
2664
- ])
2665
- .operands_out(vec![Operand::new("a", Int)]),
2666
- );
2667
-
2668
- ig.push(
2669
- Inst::new(
2670
- "bitrev",
2671
- r#"
2672
- Reverse the bits of a integer.
2673
-
2674
- Reverses the bits in ``x``.
2675
- "#,
2676
- &formats.unary,
2677
- )
2678
- .operands_in(vec![Operand::new("x", iB)])
2679
- .operands_out(vec![Operand::new("a", iB)]),
2680
- );
2681
-
2682
- ig.push(
2683
- Inst::new(
2684
- "clz",
2685
- r#"
2686
- Count leading zero bits.
2687
-
2688
- Starting from the MSB in ``x``, count the number of zero bits before
2689
- reaching the first one bit. When ``x`` is zero, returns the size of x
2690
- in bits.
2691
- "#,
2692
- &formats.unary,
2693
- )
2694
- .operands_in(vec![Operand::new("x", iB)])
2695
- .operands_out(vec![Operand::new("a", iB)]),
2696
- );
2697
-
2698
- ig.push(
2699
- Inst::new(
2700
- "cls",
2701
- r#"
2702
- Count leading sign bits.
2703
-
2704
- Starting from the MSB after the sign bit in ``x``, count the number of
2705
- consecutive bits identical to the sign bit. When ``x`` is 0 or -1,
2706
- returns one less than the size of x in bits.
2707
- "#,
2708
- &formats.unary,
2709
- )
2710
- .operands_in(vec![Operand::new("x", iB)])
2711
- .operands_out(vec![Operand::new("a", iB)]),
2712
- );
2713
-
2714
- ig.push(
2715
- Inst::new(
2716
- "ctz",
2717
- r#"
2718
- Count trailing zeros.
2719
-
2720
- Starting from the LSB in ``x``, count the number of zero bits before
2721
- reaching the first one bit. When ``x`` is zero, returns the size of x
2722
- in bits.
2723
- "#,
2724
- &formats.unary,
2725
- )
2726
- .operands_in(vec![Operand::new("x", iB)])
2727
- .operands_out(vec![Operand::new("a", iB)]),
2728
- );
2729
-
2730
- ig.push(
2731
- Inst::new(
2732
- "bswap",
2733
- r#"
2734
- Reverse the byte order of an integer.
2735
-
2736
- Reverses the bytes in ``x``.
2737
- "#,
2738
- &formats.unary,
2739
- )
2740
- .operands_in(vec![Operand::new("x", iSwappable)])
2741
- .operands_out(vec![Operand::new("a", iSwappable)]),
2742
- );
2743
-
2744
- ig.push(
2745
- Inst::new(
2746
- "popcnt",
2747
- r#"
2748
- Population count
2749
-
2750
- Count the number of one bits in ``x``.
2751
- "#,
2752
- &formats.unary,
2753
- )
2754
- .operands_in(vec![Operand::new("x", Int)])
2755
- .operands_out(vec![Operand::new("a", Int)]),
2756
- );
2757
-
2758
- let Float = &TypeVar::new(
2759
- "Float",
2760
- "A scalar or vector floating point number",
2761
- TypeSetBuilder::new()
2762
- .floats(Interval::All)
2763
- .simd_lanes(Interval::All)
2764
- .dynamic_simd_lanes(Interval::All)
2765
- .build(),
2766
- );
2767
-
2768
- ig.push(
2769
- Inst::new(
2770
- "fcmp",
2771
- r#"
2772
- Floating point comparison.
2773
-
2774
- Two IEEE 754-2008 floating point numbers, `x` and `y`, relate to each
2775
- other in exactly one of four ways:
2776
-
2777
- ```text
2778
- == ==========================================
2779
- UN Unordered when one or both numbers is NaN.
2780
- EQ When `x = y`. (And `0.0 = -0.0`).
2781
- LT When `x < y`.
2782
- GT When `x > y`.
2783
- == ==========================================
2784
- ```
2785
-
2786
- The 14 `floatcc` condition codes each correspond to a subset of
2787
- the four relations, except for the empty set which would always be
2788
- false, and the full set which would always be true.
2789
-
2790
- The condition codes are divided into 7 'ordered' conditions which don't
2791
- include UN, and 7 unordered conditions which all include UN.
2792
-
2793
- ```text
2794
- +-------+------------+---------+------------+-------------------------+
2795
- |Ordered |Unordered |Condition |
2796
- +=======+============+=========+============+=========================+
2797
- |ord |EQ | LT | GT|uno |UN |NaNs absent / present. |
2798
- +-------+------------+---------+------------+-------------------------+
2799
- |eq |EQ |ueq |UN | EQ |Equal |
2800
- +-------+------------+---------+------------+-------------------------+
2801
- |one |LT | GT |ne |UN | LT | GT|Not equal |
2802
- +-------+------------+---------+------------+-------------------------+
2803
- |lt |LT |ult |UN | LT |Less than |
2804
- +-------+------------+---------+------------+-------------------------+
2805
- |le |LT | EQ |ule |UN | LT | EQ|Less than or equal |
2806
- +-------+------------+---------+------------+-------------------------+
2807
- |gt |GT |ugt |UN | GT |Greater than |
2808
- +-------+------------+---------+------------+-------------------------+
2809
- |ge |GT | EQ |uge |UN | GT | EQ|Greater than or equal |
2810
- +-------+------------+---------+------------+-------------------------+
2811
- ```
2812
-
2813
- The standard C comparison operators, `<, <=, >, >=`, are all ordered,
2814
- so they are false if either operand is NaN. The C equality operator,
2815
- `==`, is ordered, and since inequality is defined as the logical
2816
- inverse it is *unordered*. They map to the `floatcc` condition
2817
- codes as follows:
2818
-
2819
- ```text
2820
- ==== ====== ============
2821
- C `Cond` Subset
2822
- ==== ====== ============
2823
- `==` eq EQ
2824
- `!=` ne UN | LT | GT
2825
- `<` lt LT
2826
- `<=` le LT | EQ
2827
- `>` gt GT
2828
- `>=` ge GT | EQ
2829
- ==== ====== ============
2830
- ```
2831
-
2832
- This subset of condition codes also corresponds to the WebAssembly
2833
- floating point comparisons of the same name.
2834
-
2835
- When this instruction compares floating point vectors, it returns a
2836
- vector with the results of lane-wise comparisons.
2837
-
2838
- When comparing scalars, the result is:
2839
- - `1` if the condition holds.
2840
- - `0` if the condition does not hold.
2841
-
2842
- When comparing vectors, the result is:
2843
- - `-1` (i.e. all ones) in each lane where the condition holds.
2844
- - `0` in each lane where the condition does not hold.
2845
- "#,
2846
- &formats.float_compare,
2847
- )
2848
- .operands_in(vec![
2849
- Operand::new("Cond", &imm.floatcc),
2850
- Operand::new("x", Float),
2851
- Operand::new("y", Float),
2852
- ])
2853
- .operands_out(vec![Operand::new("a", &Float.as_truthy())]),
2854
- );
2855
-
2856
- ig.push(
2857
- Inst::new(
2858
- "fadd",
2859
- r#"
2860
- Floating point addition.
2861
- "#,
2862
- &formats.binary,
2863
- )
2864
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2865
- .operands_out(vec![
2866
- Operand::new("a", Float).with_doc("Result of applying operator to each lane"),
2867
- ]),
2868
- );
2869
-
2870
- ig.push(
2871
- Inst::new(
2872
- "fsub",
2873
- r#"
2874
- Floating point subtraction.
2875
- "#,
2876
- &formats.binary,
2877
- )
2878
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2879
- .operands_out(vec![
2880
- Operand::new("a", Float).with_doc("Result of applying operator to each lane"),
2881
- ]),
2882
- );
2883
-
2884
- ig.push(
2885
- Inst::new(
2886
- "fmul",
2887
- r#"
2888
- Floating point multiplication.
2889
- "#,
2890
- &formats.binary,
2891
- )
2892
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2893
- .operands_out(vec![
2894
- Operand::new("a", Float).with_doc("Result of applying operator to each lane"),
2895
- ]),
2896
- );
2897
-
2898
- ig.push(
2899
- Inst::new(
2900
- "fdiv",
2901
- r#"
2902
- Floating point division.
2903
-
2904
- Unlike the integer division instructions ` and
2905
- `udiv`, this can't trap. Division by zero is infinity or
2906
- NaN, depending on the dividend.
2907
- "#,
2908
- &formats.binary,
2909
- )
2910
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2911
- .operands_out(vec![
2912
- Operand::new("a", Float).with_doc("Result of applying operator to each lane"),
2913
- ]),
2914
- );
2915
-
2916
- ig.push(
2917
- Inst::new(
2918
- "sqrt",
2919
- r#"
2920
- Floating point square root.
2921
- "#,
2922
- &formats.unary,
2923
- )
2924
- .operands_in(vec![Operand::new("x", Float)])
2925
- .operands_out(vec![
2926
- Operand::new("a", Float).with_doc("Result of applying operator to each lane"),
2927
- ]),
2928
- );
2929
-
2930
- ig.push(
2931
- Inst::new(
2932
- "fma",
2933
- r#"
2934
- Floating point fused multiply-and-add.
2935
-
2936
- Computes `a := xy+z` without any intermediate rounding of the
2937
- product.
2938
- "#,
2939
- &formats.ternary,
2940
- )
2941
- .operands_in(vec![
2942
- Operand::new("x", Float),
2943
- Operand::new("y", Float),
2944
- Operand::new("z", Float),
2945
- ])
2946
- .operands_out(vec![
2947
- Operand::new("a", Float).with_doc("Result of applying operator to each lane"),
2948
- ]),
2949
- );
2950
-
2951
- ig.push(
2952
- Inst::new(
2953
- "fneg",
2954
- r#"
2955
- Floating point negation.
2956
-
2957
- Note that this is a pure bitwise operation.
2958
- "#,
2959
- &formats.unary,
2960
- )
2961
- .operands_in(vec![Operand::new("x", Float)])
2962
- .operands_out(vec![
2963
- Operand::new("a", Float).with_doc("``x`` with its sign bit inverted"),
2964
- ]),
2965
- );
2966
-
2967
- ig.push(
2968
- Inst::new(
2969
- "fabs",
2970
- r#"
2971
- Floating point absolute value.
2972
-
2973
- Note that this is a pure bitwise operation.
2974
- "#,
2975
- &formats.unary,
2976
- )
2977
- .operands_in(vec![Operand::new("x", Float)])
2978
- .operands_out(vec![
2979
- Operand::new("a", Float).with_doc("``x`` with its sign bit cleared"),
2980
- ]),
2981
- );
2982
-
2983
- ig.push(
2984
- Inst::new(
2985
- "fcopysign",
2986
- r#"
2987
- Floating point copy sign.
2988
-
2989
- Note that this is a pure bitwise operation. The sign bit from ``y`` is
2990
- copied to the sign bit of ``x``.
2991
- "#,
2992
- &formats.binary,
2993
- )
2994
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2995
- .operands_out(vec![
2996
- Operand::new("a", Float).with_doc("``x`` with its sign bit changed to that of ``y``"),
2997
- ]),
2998
- );
2999
-
3000
- ig.push(
3001
- Inst::new(
3002
- "fmin",
3003
- r#"
3004
- Floating point minimum, propagating NaNs using the WebAssembly rules.
3005
-
3006
- If either operand is NaN, this returns NaN with an unspecified sign. Furthermore, if
3007
- each input NaN consists of a mantissa whose most significant bit is 1 and the rest is
3008
- 0, then the output has the same form. Otherwise, the output mantissa's most significant
3009
- bit is 1 and the rest is unspecified.
3010
- "#,
3011
- &formats.binary,
3012
- )
3013
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
3014
- .operands_out(vec![
3015
- Operand::new("a", Float).with_doc("The smaller of ``x`` and ``y``"),
3016
- ]),
3017
- );
3018
-
3019
- ig.push(
3020
- Inst::new(
3021
- "fmax",
3022
- r#"
3023
- Floating point maximum, propagating NaNs using the WebAssembly rules.
3024
-
3025
- If either operand is NaN, this returns NaN with an unspecified sign. Furthermore, if
3026
- each input NaN consists of a mantissa whose most significant bit is 1 and the rest is
3027
- 0, then the output has the same form. Otherwise, the output mantissa's most significant
3028
- bit is 1 and the rest is unspecified.
3029
- "#,
3030
- &formats.binary,
3031
- )
3032
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
3033
- .operands_out(vec![
3034
- Operand::new("a", Float).with_doc("The larger of ``x`` and ``y``"),
3035
- ]),
3036
- );
3037
-
3038
- ig.push(
3039
- Inst::new(
3040
- "ceil",
3041
- r#"
3042
- Round floating point round to integral, towards positive infinity.
3043
- "#,
3044
- &formats.unary,
3045
- )
3046
- .operands_in(vec![Operand::new("x", Float)])
3047
- .operands_out(vec![
3048
- Operand::new("a", Float).with_doc("``x`` rounded to integral value"),
3049
- ]),
3050
- );
3051
-
3052
- ig.push(
3053
- Inst::new(
3054
- "floor",
3055
- r#"
3056
- Round floating point round to integral, towards negative infinity.
3057
- "#,
3058
- &formats.unary,
3059
- )
3060
- .operands_in(vec![Operand::new("x", Float)])
3061
- .operands_out(vec![
3062
- Operand::new("a", Float).with_doc("``x`` rounded to integral value"),
3063
- ]),
3064
- );
3065
-
3066
- ig.push(
3067
- Inst::new(
3068
- "trunc",
3069
- r#"
3070
- Round floating point round to integral, towards zero.
3071
- "#,
3072
- &formats.unary,
3073
- )
3074
- .operands_in(vec![Operand::new("x", Float)])
3075
- .operands_out(vec![
3076
- Operand::new("a", Float).with_doc("``x`` rounded to integral value"),
3077
- ]),
3078
- );
3079
-
3080
- ig.push(
3081
- Inst::new(
3082
- "nearest",
3083
- r#"
3084
- Round floating point round to integral, towards nearest with ties to
3085
- even.
3086
- "#,
3087
- &formats.unary,
3088
- )
3089
- .operands_in(vec![Operand::new("x", Float)])
3090
- .operands_out(vec![
3091
- Operand::new("a", Float).with_doc("``x`` rounded to integral value"),
3092
- ]),
3093
- );
3094
-
3095
- ig.push(
3096
- Inst::new(
3097
- "bitcast",
3098
- r#"
3099
- Reinterpret the bits in `x` as a different type.
3100
-
3101
- The input and output types must be storable to memory and of the same
3102
- size. A bitcast is equivalent to storing one type and loading the other
3103
- type from the same address, both using the specified MemFlags.
3104
-
3105
- Note that this operation only supports the `big` or `little` MemFlags.
3106
- The specified byte order only affects the result in the case where
3107
- input and output types differ in lane count/size. In this case, the
3108
- operation is only valid if a byte order specifier is provided.
3109
- "#,
3110
- &formats.load_no_offset,
3111
- )
3112
- .operands_in(vec![
3113
- Operand::new("MemFlags", &imm.memflags),
3114
- Operand::new("x", Mem),
3115
- ])
3116
- .operands_out(vec![
3117
- Operand::new("a", MemTo).with_doc("Bits of `x` reinterpreted"),
3118
- ]),
3119
- );
3120
-
3121
- ig.push(
3122
- Inst::new(
3123
- "scalar_to_vector",
3124
- r#"
3125
- Copies a scalar value to a vector value. The scalar is copied into the
3126
- least significant lane of the vector, and all other lanes will be zero.
3127
- "#,
3128
- &formats.unary,
3129
- )
3130
- .operands_in(vec![
3131
- Operand::new("s", &TxN.lane_of()).with_doc("A scalar value"),
3132
- ])
3133
- .operands_out(vec![Operand::new("a", TxN).with_doc("A vector value")]),
3134
- );
3135
-
3136
- let Truthy = &TypeVar::new(
3137
- "Truthy",
3138
- "A scalar whose values are truthy",
3139
- TypeSetBuilder::new().ints(Interval::All).build(),
3140
- );
3141
- let IntTo = &TypeVar::new(
3142
- "IntTo",
3143
- "An integer type",
3144
- TypeSetBuilder::new().ints(Interval::All).build(),
3145
- );
3146
-
3147
- ig.push(
3148
- Inst::new(
3149
- "bmask",
3150
- r#"
3151
- Convert `x` to an integer mask.
3152
-
3153
- Non-zero maps to all 1s and zero maps to all 0s.
3154
- "#,
3155
- &formats.unary,
3156
- )
3157
- .operands_in(vec![Operand::new("x", Truthy)])
3158
- .operands_out(vec![Operand::new("a", IntTo)]),
3159
- );
3160
-
3161
- let Int = &TypeVar::new(
3162
- "Int",
3163
- "A scalar integer type",
3164
- TypeSetBuilder::new().ints(Interval::All).build(),
3165
- );
3166
-
3167
- ig.push(
3168
- Inst::new(
3169
- "ireduce",
3170
- r#"
3171
- Convert `x` to a smaller integer type by discarding
3172
- the most significant bits.
3173
-
3174
- This is the same as reducing modulo `2^n`.
3175
- "#,
3176
- &formats.unary,
3177
- )
3178
- .operands_in(vec![
3179
- Operand::new("x", &Int.wider())
3180
- .with_doc("A scalar integer type, wider than the controlling type"),
3181
- ])
3182
- .operands_out(vec![Operand::new("a", Int)]),
3183
- );
3184
-
3185
- let I16or32or64xN = &TypeVar::new(
3186
- "I16or32or64xN",
3187
- "A SIMD vector type containing integer lanes 16, 32, or 64 bits wide",
3188
- TypeSetBuilder::new()
3189
- .ints(16..64)
3190
- .simd_lanes(2..8)
3191
- .dynamic_simd_lanes(2..8)
3192
- .includes_scalars(false)
3193
- .build(),
3194
- );
3195
-
3196
- ig.push(
3197
- Inst::new(
3198
- "snarrow",
3199
- r#"
3200
- Combine `x` and `y` into a vector with twice the lanes but half the integer width while
3201
- saturating overflowing values to the signed maximum and minimum.
3202
-
3203
- The lanes will be concatenated after narrowing. For example, when `x` and `y` are `i32x4`
3204
- and `x = [x3, x2, x1, x0]` and `y = [y3, y2, y1, y0]`, then after narrowing the value
3205
- returned is an `i16x8`: `a = [y3', y2', y1', y0', x3', x2', x1', x0']`.
3206
- "#,
3207
- &formats.binary,
3208
- )
3209
- .operands_in(vec![
3210
- Operand::new("x", I16or32or64xN),
3211
- Operand::new("y", I16or32or64xN),
3212
- ])
3213
- .operands_out(vec![Operand::new("a", &I16or32or64xN.split_lanes())]),
3214
- );
3215
-
3216
- ig.push(
3217
- Inst::new(
3218
- "unarrow",
3219
- r#"
3220
- Combine `x` and `y` into a vector with twice the lanes but half the integer width while
3221
- saturating overflowing values to the unsigned maximum and minimum.
3222
-
3223
- Note that all input lanes are considered signed: any negative lanes will overflow and be
3224
- replaced with the unsigned minimum, `0x00`.
3225
-
3226
- The lanes will be concatenated after narrowing. For example, when `x` and `y` are `i32x4`
3227
- and `x = [x3, x2, x1, x0]` and `y = [y3, y2, y1, y0]`, then after narrowing the value
3228
- returned is an `i16x8`: `a = [y3', y2', y1', y0', x3', x2', x1', x0']`.
3229
- "#,
3230
- &formats.binary,
3231
- )
3232
- .operands_in(vec![
3233
- Operand::new("x", I16or32or64xN),
3234
- Operand::new("y", I16or32or64xN),
3235
- ])
3236
- .operands_out(vec![Operand::new("a", &I16or32or64xN.split_lanes())]),
3237
- );
3238
-
3239
- ig.push(
3240
- Inst::new(
3241
- "uunarrow",
3242
- r#"
3243
- Combine `x` and `y` into a vector with twice the lanes but half the integer width while
3244
- saturating overflowing values to the unsigned maximum and minimum.
3245
-
3246
- Note that all input lanes are considered unsigned: any negative values will be interpreted as unsigned, overflowing and being replaced with the unsigned maximum.
3247
-
3248
- The lanes will be concatenated after narrowing. For example, when `x` and `y` are `i32x4`
3249
- and `x = [x3, x2, x1, x0]` and `y = [y3, y2, y1, y0]`, then after narrowing the value
3250
- returned is an `i16x8`: `a = [y3', y2', y1', y0', x3', x2', x1', x0']`.
3251
- "#,
3252
- &formats.binary,
3253
- )
3254
- .operands_in(vec![Operand::new("x", I16or32or64xN), Operand::new("y", I16or32or64xN)])
3255
- .operands_out(vec![Operand::new("a", &I16or32or64xN.split_lanes())]),
3256
- );
3257
-
3258
- let I8or16or32xN = &TypeVar::new(
3259
- "I8or16or32xN",
3260
- "A SIMD vector type containing integer lanes 8, 16, or 32 bits wide.",
3261
- TypeSetBuilder::new()
3262
- .ints(8..32)
3263
- .simd_lanes(2..16)
3264
- .dynamic_simd_lanes(2..16)
3265
- .includes_scalars(false)
3266
- .build(),
3267
- );
3268
-
3269
- ig.push(
3270
- Inst::new(
3271
- "swiden_low",
3272
- r#"
3273
- Widen the low lanes of `x` using signed extension.
3274
-
3275
- This will double the lane width and halve the number of lanes.
3276
- "#,
3277
- &formats.unary,
3278
- )
3279
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3280
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3281
- );
3282
-
3283
- ig.push(
3284
- Inst::new(
3285
- "swiden_high",
3286
- r#"
3287
- Widen the high lanes of `x` using signed extension.
3288
-
3289
- This will double the lane width and halve the number of lanes.
3290
- "#,
3291
- &formats.unary,
3292
- )
3293
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3294
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3295
- );
3296
-
3297
- ig.push(
3298
- Inst::new(
3299
- "uwiden_low",
3300
- r#"
3301
- Widen the low lanes of `x` using unsigned extension.
3302
-
3303
- This will double the lane width and halve the number of lanes.
3304
- "#,
3305
- &formats.unary,
3306
- )
3307
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3308
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3309
- );
3310
-
3311
- ig.push(
3312
- Inst::new(
3313
- "uwiden_high",
3314
- r#"
3315
- Widen the high lanes of `x` using unsigned extension.
3316
-
3317
- This will double the lane width and halve the number of lanes.
3318
- "#,
3319
- &formats.unary,
3320
- )
3321
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3322
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3323
- );
3324
-
3325
- ig.push(
3326
- Inst::new(
3327
- "iadd_pairwise",
3328
- r#"
3329
- Does lane-wise integer pairwise addition on two operands, putting the
3330
- combined results into a single vector result. Here a pair refers to adjacent
3331
- lanes in a vector, i.e. i*2 + (i*2+1) for i == num_lanes/2. The first operand
3332
- pairwise add results will make up the low half of the resulting vector while
3333
- the second operand pairwise add results will make up the upper half of the
3334
- resulting vector.
3335
- "#,
3336
- &formats.binary,
3337
- )
3338
- .operands_in(vec![
3339
- Operand::new("x", I8or16or32xN),
3340
- Operand::new("y", I8or16or32xN),
3341
- ])
3342
- .operands_out(vec![Operand::new("a", I8or16or32xN)]),
3343
- );
3344
-
3345
- let I8x16 = &TypeVar::new(
3346
- "I8x16",
3347
- "A SIMD vector type consisting of 16 lanes of 8-bit integers",
3348
- TypeSetBuilder::new()
3349
- .ints(8..8)
3350
- .simd_lanes(16..16)
3351
- .includes_scalars(false)
3352
- .build(),
3353
- );
3354
-
3355
- ig.push(
3356
- Inst::new(
3357
- "x86_pmaddubsw",
3358
- r#"
3359
- An instruction with equivalent semantics to `pmaddubsw` on x86.
3360
-
3361
- This instruction will take signed bytes from the first argument and
3362
- multiply them against unsigned bytes in the second argument. Adjacent
3363
- pairs are then added, with saturating, to a 16-bit value and are packed
3364
- into the result.
3365
- "#,
3366
- &formats.binary,
3367
- )
3368
- .operands_in(vec![Operand::new("x", I8x16), Operand::new("y", I8x16)])
3369
- .operands_out(vec![Operand::new("a", I16x8)]),
3370
- );
3371
-
3372
- ig.push(
3373
- Inst::new(
3374
- "uextend",
3375
- r#"
3376
- Convert `x` to a larger integer type by zero-extending.
3377
-
3378
- Each lane in `x` is converted to a larger integer type by adding
3379
- zeroes. The result has the same numerical value as `x` when both are
3380
- interpreted as unsigned integers.
3381
-
3382
- The result type must have the same number of vector lanes as the input,
3383
- and each lane must not have fewer bits that the input lanes. If the
3384
- input and output types are the same, this is a no-op.
3385
- "#,
3386
- &formats.unary,
3387
- )
3388
- .operands_in(vec![Operand::new("x", &Int.narrower()).with_doc(
3389
- "A scalar integer type, narrower than the controlling type",
3390
- )])
3391
- .operands_out(vec![Operand::new("a", Int)]),
3392
- );
3393
-
3394
- ig.push(
3395
- Inst::new(
3396
- "sextend",
3397
- r#"
3398
- Convert `x` to a larger integer type by sign-extending.
3399
-
3400
- Each lane in `x` is converted to a larger integer type by replicating
3401
- the sign bit. The result has the same numerical value as `x` when both
3402
- are interpreted as signed integers.
3403
-
3404
- The result type must have the same number of vector lanes as the input,
3405
- and each lane must not have fewer bits that the input lanes. If the
3406
- input and output types are the same, this is a no-op.
3407
- "#,
3408
- &formats.unary,
3409
- )
3410
- .operands_in(vec![Operand::new("x", &Int.narrower()).with_doc(
3411
- "A scalar integer type, narrower than the controlling type",
3412
- )])
3413
- .operands_out(vec![Operand::new("a", Int)]),
3414
- );
3415
-
3416
- let FloatScalar = &TypeVar::new(
3417
- "FloatScalar",
3418
- "A scalar only floating point number",
3419
- TypeSetBuilder::new().floats(Interval::All).build(),
3420
- );
3421
-
3422
- ig.push(
3423
- Inst::new(
3424
- "fpromote",
3425
- r#"
3426
- Convert `x` to a larger floating point format.
3427
-
3428
- Each lane in `x` is converted to the destination floating point format.
3429
- This is an exact operation.
3430
-
3431
- Cranelift currently only supports two floating point formats
3432
- - `f32` and `f64`. This may change in the future.
3433
-
3434
- The result type must have the same number of vector lanes as the input,
3435
- and the result lanes must not have fewer bits than the input lanes.
3436
- "#,
3437
- &formats.unary,
3438
- )
3439
- .operands_in(vec![Operand::new("x", &FloatScalar.narrower()).with_doc(
3440
- "A scalar only floating point number, narrower than the controlling type",
3441
- )])
3442
- .operands_out(vec![Operand::new("a", FloatScalar)]),
3443
- );
3444
-
3445
- ig.push(
3446
- Inst::new(
3447
- "fdemote",
3448
- r#"
3449
- Convert `x` to a smaller floating point format.
3450
-
3451
- Each lane in `x` is converted to the destination floating point format
3452
- by rounding to nearest, ties to even.
3453
-
3454
- Cranelift currently only supports two floating point formats
3455
- - `f32` and `f64`. This may change in the future.
3456
-
3457
- The result type must have the same number of vector lanes as the input,
3458
- and the result lanes must not have more bits than the input lanes.
3459
- "#,
3460
- &formats.unary,
3461
- )
3462
- .operands_in(vec![Operand::new("x", &FloatScalar.wider()).with_doc(
3463
- "A scalar only floating point number, wider than the controlling type",
3464
- )])
3465
- .operands_out(vec![Operand::new("a", FloatScalar)]),
3466
- );
3467
-
3468
- let F64x2 = &TypeVar::new(
3469
- "F64x2",
3470
- "A SIMD vector type consisting of 2 lanes of 64-bit floats",
3471
- TypeSetBuilder::new()
3472
- .floats(64..64)
3473
- .simd_lanes(2..2)
3474
- .includes_scalars(false)
3475
- .build(),
3476
- );
3477
- let F32x4 = &TypeVar::new(
3478
- "F32x4",
3479
- "A SIMD vector type consisting of 4 lanes of 32-bit floats",
3480
- TypeSetBuilder::new()
3481
- .floats(32..32)
3482
- .simd_lanes(4..4)
3483
- .includes_scalars(false)
3484
- .build(),
3485
- );
3486
-
3487
- ig.push(
3488
- Inst::new(
3489
- "fvdemote",
3490
- r#"
3491
- Convert `x` to a smaller floating point format.
3492
-
3493
- Each lane in `x` is converted to the destination floating point format
3494
- by rounding to nearest, ties to even.
3495
-
3496
- Cranelift currently only supports two floating point formats
3497
- - `f32` and `f64`. This may change in the future.
3498
-
3499
- Fvdemote differs from fdemote in that with fvdemote it targets vectors.
3500
- Fvdemote is constrained to having the input type being F64x2 and the result
3501
- type being F32x4. The result lane that was the upper half of the input lane
3502
- is initialized to zero.
3503
- "#,
3504
- &formats.unary,
3505
- )
3506
- .operands_in(vec![Operand::new("x", F64x2)])
3507
- .operands_out(vec![Operand::new("a", F32x4)]),
3508
- );
3509
-
3510
- ig.push(
3511
- Inst::new(
3512
- "fvpromote_low",
3513
- r#"
3514
- Converts packed single precision floating point to packed double precision floating point.
3515
-
3516
- Considering only the lower half of the register, the low lanes in `x` are interpreted as
3517
- single precision floats that are then converted to a double precision floats.
3518
-
3519
- The result type will have half the number of vector lanes as the input. Fvpromote_low is
3520
- constrained to input F32x4 with a result type of F64x2.
3521
- "#,
3522
- &formats.unary,
3523
- )
3524
- .operands_in(vec![Operand::new("a", F32x4)])
3525
- .operands_out(vec![Operand::new("x", F64x2)]),
3526
- );
3527
-
3528
- let IntTo = &TypeVar::new(
3529
- "IntTo",
3530
- "An scalar only integer type",
3531
- TypeSetBuilder::new().ints(Interval::All).build(),
3532
- );
3533
-
3534
- ig.push(
3535
- Inst::new(
3536
- "fcvt_to_uint",
3537
- r#"
3538
- Converts floating point scalars to unsigned integer.
3539
-
3540
- Only operates on `x` if it is a scalar. If `x` is NaN or if
3541
- the unsigned integral value cannot be represented in the result
3542
- type, this instruction traps.
3543
-
3544
- "#,
3545
- &formats.unary,
3546
- )
3547
- .operands_in(vec![Operand::new("x", FloatScalar)])
3548
- .operands_out(vec![Operand::new("a", IntTo)])
3549
- .can_trap()
3550
- .side_effects_idempotent(),
3551
- );
3552
-
3553
- ig.push(
3554
- Inst::new(
3555
- "fcvt_to_sint",
3556
- r#"
3557
- Converts floating point scalars to signed integer.
3558
-
3559
- Only operates on `x` if it is a scalar. If `x` is NaN or if
3560
- the unsigned integral value cannot be represented in the result
3561
- type, this instruction traps.
3562
-
3563
- "#,
3564
- &formats.unary,
3565
- )
3566
- .operands_in(vec![Operand::new("x", FloatScalar)])
3567
- .operands_out(vec![Operand::new("a", IntTo)])
3568
- .can_trap()
3569
- .side_effects_idempotent(),
3570
- );
3571
-
3572
- let IntTo = &TypeVar::new(
3573
- "IntTo",
3574
- "A larger integer type with the same number of lanes",
3575
- TypeSetBuilder::new()
3576
- .ints(Interval::All)
3577
- .simd_lanes(Interval::All)
3578
- .build(),
3579
- );
3580
-
3581
- ig.push(
3582
- Inst::new(
3583
- "fcvt_to_uint_sat",
3584
- r#"
3585
- Convert floating point to unsigned integer as fcvt_to_uint does, but
3586
- saturates the input instead of trapping. NaN and negative values are
3587
- converted to 0.
3588
- "#,
3589
- &formats.unary,
3590
- )
3591
- .operands_in(vec![Operand::new("x", Float)])
3592
- .operands_out(vec![Operand::new("a", IntTo)]),
3593
- );
3594
-
3595
- ig.push(
3596
- Inst::new(
3597
- "fcvt_to_sint_sat",
3598
- r#"
3599
- Convert floating point to signed integer as fcvt_to_sint does, but
3600
- saturates the input instead of trapping. NaN values are converted to 0.
3601
- "#,
3602
- &formats.unary,
3603
- )
3604
- .operands_in(vec![Operand::new("x", Float)])
3605
- .operands_out(vec![Operand::new("a", IntTo)]),
3606
- );
3607
-
3608
- ig.push(
3609
- Inst::new(
3610
- "x86_cvtt2dq",
3611
- r#"
3612
- A float-to-integer conversion instruction for vectors-of-floats which
3613
- has the same semantics as `cvttp{s,d}2dq` on x86. This specifically
3614
- returns `INT_MIN` for NaN or out-of-bounds lanes.
3615
- "#,
3616
- &formats.unary,
3617
- )
3618
- .operands_in(vec![Operand::new("x", Float)])
3619
- .operands_out(vec![Operand::new("a", IntTo)]),
3620
- );
3621
-
3622
- let Int = &TypeVar::new(
3623
- "Int",
3624
- "A scalar or vector integer type",
3625
- TypeSetBuilder::new()
3626
- .ints(Interval::All)
3627
- .simd_lanes(Interval::All)
3628
- .build(),
3629
- );
3630
-
3631
- let FloatTo = &TypeVar::new(
3632
- "FloatTo",
3633
- "A scalar or vector floating point number",
3634
- TypeSetBuilder::new()
3635
- .floats(Interval::All)
3636
- .simd_lanes(Interval::All)
3637
- .build(),
3638
- );
3639
-
3640
- ig.push(
3641
- Inst::new(
3642
- "fcvt_from_uint",
3643
- r#"
3644
- Convert unsigned integer to floating point.
3645
-
3646
- Each lane in `x` is interpreted as an unsigned integer and converted to
3647
- floating point using round to nearest, ties to even.
3648
-
3649
- The result type must have the same number of vector lanes as the input.
3650
- "#,
3651
- &formats.unary,
3652
- )
3653
- .operands_in(vec![Operand::new("x", Int)])
3654
- .operands_out(vec![Operand::new("a", FloatTo)]),
3655
- );
3656
-
3657
- ig.push(
3658
- Inst::new(
3659
- "fcvt_from_sint",
3660
- r#"
3661
- Convert signed integer to floating point.
3662
-
3663
- Each lane in `x` is interpreted as a signed integer and converted to
3664
- floating point using round to nearest, ties to even.
3665
-
3666
- The result type must have the same number of vector lanes as the input.
3667
- "#,
3668
- &formats.unary,
3669
- )
3670
- .operands_in(vec![Operand::new("x", Int)])
3671
- .operands_out(vec![Operand::new("a", FloatTo)]),
3672
- );
3673
-
3674
- let WideInt = &TypeVar::new(
3675
- "WideInt",
3676
- "An integer type of width `i16` upwards",
3677
- TypeSetBuilder::new().ints(16..128).build(),
3678
- );
3679
-
3680
- ig.push(
3681
- Inst::new(
3682
- "isplit",
3683
- r#"
3684
- Split an integer into low and high parts.
3685
-
3686
- Vectors of integers are split lane-wise, so the results have the same
3687
- number of lanes as the input, but the lanes are half the size.
3688
-
3689
- Returns the low half of `x` and the high half of `x` as two independent
3690
- values.
3691
- "#,
3692
- &formats.unary,
3693
- )
3694
- .operands_in(vec![Operand::new("x", WideInt)])
3695
- .operands_out(vec![
3696
- Operand::new("lo", &WideInt.half_width()).with_doc("The low bits of `x`"),
3697
- Operand::new("hi", &WideInt.half_width()).with_doc("The high bits of `x`"),
3698
- ]),
3699
- );
3700
-
3701
- ig.push(
3702
- Inst::new(
3703
- "iconcat",
3704
- r#"
3705
- Concatenate low and high bits to form a larger integer type.
3706
-
3707
- Vectors of integers are concatenated lane-wise such that the result has
3708
- the same number of lanes as the inputs, but the lanes are twice the
3709
- size.
3710
- "#,
3711
- &formats.binary,
3712
- )
3713
- .operands_in(vec![
3714
- Operand::new("lo", NarrowInt),
3715
- Operand::new("hi", NarrowInt),
3716
- ])
3717
- .operands_out(vec![
3718
- Operand::new("a", &NarrowInt.double_width())
3719
- .with_doc("The concatenation of `lo` and `hi`"),
3720
- ]),
3721
- );
3722
-
3723
- // Instructions relating to atomic memory accesses and fences
3724
- let AtomicMem = &TypeVar::new(
3725
- "AtomicMem",
3726
- "Any type that can be stored in memory, which can be used in an atomic operation",
3727
- TypeSetBuilder::new().ints(8..128).build(),
3728
- );
3729
-
3730
- ig.push(
3731
- Inst::new(
3732
- "atomic_rmw",
3733
- r#"
3734
- Atomically read-modify-write memory at `p`, with second operand `x`. The old value is
3735
- returned. `p` has the type of the target word size, and `x` may be any integer type; note
3736
- that some targets require specific target features to be enabled in order to support 128-bit
3737
- integer atomics. The type of the returned value is the same as the type of `x`. This
3738
- operation is sequentially consistent and creates happens-before edges that order normal
3739
- (non-atomic) loads and stores.
3740
- "#,
3741
- &formats.atomic_rmw,
3742
- )
3743
- .operands_in(vec![
3744
- Operand::new("MemFlags", &imm.memflags),
3745
- Operand::new("AtomicRmwOp", &imm.atomic_rmw_op),
3746
- Operand::new("p", iAddr),
3747
- Operand::new("x", AtomicMem).with_doc("Value to be atomically stored"),
3748
- ])
3749
- .operands_out(vec![
3750
- Operand::new("a", AtomicMem).with_doc("Value atomically loaded"),
3751
- ])
3752
- .can_load()
3753
- .can_store()
3754
- .other_side_effects(),
3755
- );
3756
-
3757
- ig.push(
3758
- Inst::new(
3759
- "atomic_cas",
3760
- r#"
3761
- Perform an atomic compare-and-swap operation on memory at `p`, with expected value `e`,
3762
- storing `x` if the value at `p` equals `e`. The old value at `p` is returned,
3763
- regardless of whether the operation succeeds or fails. `p` has the type of the target
3764
- word size, and `x` and `e` must have the same type and the same size, which may be any
3765
- integer type; note that some targets require specific target features to be enabled in order
3766
- to support 128-bit integer atomics. The type of the returned value is the same as the type
3767
- of `x` and `e`. This operation is sequentially consistent and creates happens-before edges
3768
- that order normal (non-atomic) loads and stores.
3769
- "#,
3770
- &formats.atomic_cas,
3771
- )
3772
- .operands_in(vec![
3773
- Operand::new("MemFlags", &imm.memflags),
3774
- Operand::new("p", iAddr),
3775
- Operand::new("e", AtomicMem).with_doc("Expected value in CAS"),
3776
- Operand::new("x", AtomicMem).with_doc("Value to be atomically stored"),
3777
- ])
3778
- .operands_out(vec![
3779
- Operand::new("a", AtomicMem).with_doc("Value atomically loaded"),
3780
- ])
3781
- .can_load()
3782
- .can_store()
3783
- .other_side_effects(),
3784
- );
3785
-
3786
- ig.push(
3787
- Inst::new(
3788
- "atomic_load",
3789
- r#"
3790
- Atomically load from memory at `p`.
3791
-
3792
- This is a polymorphic instruction that can load any value type which has a memory
3793
- representation. It can only be used for integer types; note that some targets require
3794
- specific target features to be enabled in order to support 128-bit integer atomics. This
3795
- operation is sequentially consistent and creates happens-before edges that order normal
3796
- (non-atomic) loads and stores.
3797
- "#,
3798
- &formats.load_no_offset,
3799
- )
3800
- .operands_in(vec![
3801
- Operand::new("MemFlags", &imm.memflags),
3802
- Operand::new("p", iAddr),
3803
- ])
3804
- .operands_out(vec![
3805
- Operand::new("a", AtomicMem).with_doc("Value atomically loaded"),
3806
- ])
3807
- .can_load()
3808
- .other_side_effects(),
3809
- );
3810
-
3811
- ig.push(
3812
- Inst::new(
3813
- "atomic_store",
3814
- r#"
3815
- Atomically store `x` to memory at `p`.
3816
-
3817
- This is a polymorphic instruction that can store any value type with a memory
3818
- representation. It can only be used for integer types; note that some targets require
3819
- specific target features to be enabled in order to support 128-bit integer atomics This
3820
- operation is sequentially consistent and creates happens-before edges that order normal
3821
- (non-atomic) loads and stores.
3822
- "#,
3823
- &formats.store_no_offset,
3824
- )
3825
- .operands_in(vec![
3826
- Operand::new("MemFlags", &imm.memflags),
3827
- Operand::new("x", AtomicMem).with_doc("Value to be atomically stored"),
3828
- Operand::new("p", iAddr),
3829
- ])
3830
- .can_store()
3831
- .other_side_effects(),
3832
- );
3833
-
3834
- ig.push(
3835
- Inst::new(
3836
- "fence",
3837
- r#"
3838
- A memory fence. This must provide ordering to ensure that, at a minimum, neither loads
3839
- nor stores of any kind may move forwards or backwards across the fence. This operation
3840
- is sequentially consistent.
3841
- "#,
3842
- &formats.nullary,
3843
- )
3844
- .other_side_effects(),
3845
- );
3846
-
3847
- let TxN = &TypeVar::new(
3848
- "TxN",
3849
- "A dynamic vector type",
3850
- TypeSetBuilder::new()
3851
- .ints(Interval::All)
3852
- .floats(Interval::All)
3853
- .dynamic_simd_lanes(Interval::All)
3854
- .build(),
3855
- );
3856
-
3857
- ig.push(
3858
- Inst::new(
3859
- "extract_vector",
3860
- r#"
3861
- Return a fixed length sub vector, extracted from a dynamic vector.
3862
- "#,
3863
- &formats.binary_imm8,
3864
- )
3865
- .operands_in(vec![
3866
- Operand::new("x", TxN).with_doc("The dynamic vector to extract from"),
3867
- Operand::new("y", &imm.uimm8).with_doc("128-bit vector index"),
3868
- ])
3869
- .operands_out(vec![
3870
- Operand::new("a", &TxN.dynamic_to_vector()).with_doc("New fixed vector"),
3871
- ]),
3872
- );
3873
- }