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,3252 +0,0 @@
1
- ;; Instruction formats.
2
- (type MInst
3
- (enum
4
- ;; A no-op of zero size.
5
- (Nop0)
6
- (Nop4)
7
-
8
- ;; load immediate
9
- (Lui
10
- (rd WritableReg)
11
- (imm Imm20))
12
-
13
- (LoadInlineConst
14
- (rd WritableReg)
15
- (ty Type)
16
- (imm u64))
17
-
18
- (Auipc
19
- (rd WritableReg)
20
- (imm Imm20))
21
-
22
- (Fli
23
- (width FpuOPWidth)
24
- (imm FliConstant)
25
- (rd WritableReg))
26
-
27
- ;; An ALU operation with one register sources and a register destination.
28
- (FpuRR
29
- (alu_op FpuOPRR)
30
- (width FpuOPWidth)
31
- (frm FRM)
32
- (rd WritableReg)
33
- (rs Reg))
34
-
35
-
36
- ;; An ALU operation with two register sources and a register destination.
37
- (AluRRR
38
- (alu_op AluOPRRR)
39
- (rd WritableReg)
40
- (rs1 Reg)
41
- (rs2 Reg))
42
-
43
- ;; An ALU operation with two register sources and a register destination.
44
- (FpuRRR
45
- (alu_op FpuOPRRR)
46
- (width FpuOPWidth)
47
- (frm FRM)
48
- (rd WritableReg)
49
- (rs1 Reg)
50
- (rs2 Reg))
51
-
52
- ;; An ALU operation with three register sources and a register destination.
53
- (FpuRRRR
54
- (alu_op FpuOPRRRR)
55
- (width FpuOPWidth)
56
- (frm FRM)
57
- (rd WritableReg)
58
- (rs1 Reg)
59
- (rs2 Reg)
60
- (rs3 Reg))
61
-
62
- ;; An ALU operation with a register source and an immediate-12 source, and a register
63
- ;; destination.
64
- (AluRRImm12
65
- (alu_op AluOPRRI)
66
- (rd WritableReg)
67
- (rs Reg)
68
- (imm12 Imm12))
69
-
70
- ;; A CSR Reading or Writing instruction with a register source and a register destination.
71
- (CsrReg
72
- (op CsrRegOP)
73
- (rd WritableReg)
74
- (rs Reg)
75
- (csr CSR))
76
-
77
- ;; A CSR Writing instruction with an immediate source and a register destination.
78
- (CsrImm
79
- (op CsrImmOP)
80
- (rd WritableReg)
81
- (imm UImm5)
82
- (csr CSR))
83
-
84
- ;; An load
85
- (Load
86
- (rd WritableReg)
87
- (op LoadOP)
88
- (flags MemFlags)
89
- (from AMode))
90
- ;; An Store
91
- (Store
92
- (to AMode)
93
- (op StoreOP)
94
- (flags MemFlags)
95
- (src Reg))
96
-
97
- ;; A pseudo-instruction that captures register arguments in vregs.
98
- (Args
99
- (args VecArgPair))
100
-
101
- ;; A pseudo-instruction that moves vregs to return registers.
102
- (Rets
103
- (rets VecRetPair))
104
-
105
- (Ret)
106
-
107
- (Extend
108
- (rd WritableReg)
109
- (rn Reg)
110
- (signed bool)
111
- (from_bits u8)
112
- (to_bits u8))
113
-
114
- (Call (info BoxCallInfo))
115
-
116
- ;; A machine indirect-call instruction.
117
- (CallInd (info BoxCallIndInfo))
118
-
119
- ;; A direct return-call macro instruction.
120
- (ReturnCall (info BoxReturnCallInfo))
121
-
122
- ;; An indirect return-call macro instruction.
123
- (ReturnCallInd (info BoxReturnCallIndInfo))
124
-
125
- ;; Emits a trap with the given trap code if the comparison succeeds
126
- (TrapIf
127
- (rs1 Reg)
128
- (rs2 Reg)
129
- (cc IntCC)
130
- (trap_code TrapCode))
131
-
132
- (Jal
133
- ;; (rd WritableReg) don't use
134
- (label MachLabel))
135
-
136
- (CondBr
137
- (taken CondBrTarget)
138
- (not_taken CondBrTarget)
139
- (kind IntegerCompare))
140
-
141
- ;; Load an inline symbol reference.
142
- (LoadExtNameGot
143
- (rd WritableReg)
144
- (name BoxExternalName))
145
- (LoadExtNameNear
146
- (rd WritableReg)
147
- (name BoxExternalName)
148
- (offset i64))
149
- (LoadExtNameFar
150
- (rd WritableReg)
151
- (name BoxExternalName)
152
- (offset i64))
153
-
154
- ;; Load a TLS symbol address
155
- (ElfTlsGetAddr
156
- (rd WritableReg)
157
- (name BoxExternalName))
158
-
159
- ;; Load address referenced by `mem` into `rd`.
160
- (LoadAddr
161
- (rd WritableReg)
162
- (mem AMode))
163
-
164
- ;; A MOV instruction. These are encoded as OrR's (AluRRR form) but we
165
- ;; keep them separate at the `Inst` level for better pretty-printing
166
- ;; and faster `is_move()` logic.
167
- (Mov
168
- (rd WritableReg)
169
- (rm Reg)
170
- (ty Type))
171
-
172
- ;; A MOV instruction, but where the source register is a non-allocatable
173
- ;; PReg. It's important that the register be non-allocatable, as regalloc2
174
- ;; will not see it as used.
175
- (MovFromPReg
176
- (rd WritableReg)
177
- (rm PReg))
178
-
179
- (Fence
180
- (pred FenceReq)
181
- (succ FenceReq))
182
-
183
- (EBreak)
184
-
185
- ;; An instruction guaranteed to always be undefined and to trigger an illegal instruction at
186
- ;; runtime.
187
- (Udf
188
- (trap_code TrapCode))
189
- ;; a jump and link register operation
190
- (Jalr
191
- ;;Plain unconditional jumps (assembler pseudo-op J) are encoded as a JAL with rd=x0.
192
- (rd WritableReg)
193
- (base Reg)
194
- (offset Imm12))
195
-
196
- ;; atomic operations.
197
- (Atomic
198
- (op AtomicOP)
199
- (rd WritableReg)
200
- (addr Reg)
201
- (src Reg)
202
- (amo AMO))
203
- ;; an atomic store
204
- (AtomicStore
205
- (src Reg)
206
- (ty Type)
207
- (p Reg))
208
- ;; an atomic load.
209
- (AtomicLoad
210
- (rd WritableReg)
211
- (ty Type)
212
- (p Reg))
213
-
214
- ;; an atomic nand need using loop to implement.
215
- (AtomicRmwLoop
216
- (offset Reg)
217
- (op AtomicRmwOp)
218
- (dst WritableReg)
219
- (ty Type)
220
- (p Reg)
221
- (x Reg)
222
- (t0 WritableReg))
223
-
224
- ;; select x or y base on condition
225
- (Select
226
- (dst WritableValueRegs)
227
- (condition IntegerCompare)
228
- (x ValueRegs)
229
- (y ValueRegs))
230
-
231
- (BrTable
232
- (index Reg)
233
- (tmp1 WritableReg)
234
- (tmp2 WritableReg)
235
- (targets VecMachLabel))
236
-
237
- ;; atomic compare and set operation
238
- (AtomicCas
239
- (offset Reg)
240
- (t0 WritableReg)
241
- (dst WritableReg)
242
- (e Reg)
243
- (addr Reg)
244
- (v Reg)
245
- (ty Type))
246
-
247
- (RawData (data VecU8))
248
-
249
- ;; An unwind pseudo-instruction.
250
- (Unwind
251
- (inst UnwindInst))
252
-
253
- ;; A dummy use, useful to keep a value alive.
254
- (DummyUse
255
- (reg Reg))
256
-
257
- ;; popcnt if target doesn't support extension B
258
- ;; use iteration to implement.
259
- (Popcnt
260
- (sum WritableReg)
261
- (step WritableReg)
262
- (tmp WritableReg)
263
- (rs Reg)
264
- (ty Type))
265
-
266
- ;;; counting leading or trailing zeros.
267
- (Cltz
268
- ;; leading or trailing.
269
- (leading bool)
270
- (sum WritableReg)
271
- (step WritableReg)
272
- (tmp WritableReg)
273
- (rs Reg)
274
- (ty Type))
275
-
276
- (Brev8
277
- (rs Reg)
278
- (ty Type)
279
- (step WritableReg)
280
- (tmp WritableReg)
281
- (tmp2 WritableReg)
282
- (rd WritableReg))
283
- (StackProbeLoop
284
- (guard_size u32)
285
- (probe_count u32)
286
- (tmp WritableReg))
287
-
288
- (VecAluRRRR
289
- (op VecAluOpRRRR)
290
- (vd WritableReg)
291
- (vd_src Reg)
292
- (vs2 Reg)
293
- (vs1 Reg)
294
- (mask VecOpMasking)
295
- (vstate VState))
296
-
297
- (VecAluRRRImm5
298
- (op VecAluOpRRRImm5)
299
- (vd WritableReg)
300
- (vd_src Reg)
301
- (vs2 Reg)
302
- (imm Imm5)
303
- (mask VecOpMasking)
304
- (vstate VState))
305
-
306
- (VecAluRRR
307
- (op VecAluOpRRR)
308
- (vd WritableReg)
309
- (vs2 Reg)
310
- (vs1 Reg)
311
- (mask VecOpMasking)
312
- (vstate VState))
313
-
314
- (VecAluRRImm5
315
- (op VecAluOpRRImm5)
316
- (vd WritableReg)
317
- (vs2 Reg)
318
- (imm Imm5)
319
- (mask VecOpMasking)
320
- (vstate VState))
321
-
322
- (VecAluRR
323
- (op VecAluOpRR)
324
- (vd WritableReg)
325
- (vs Reg)
326
- (mask VecOpMasking)
327
- (vstate VState))
328
-
329
- (VecAluRImm5
330
- (op VecAluOpRImm5)
331
- (vd WritableReg)
332
- (imm Imm5)
333
- (mask VecOpMasking)
334
- (vstate VState))
335
-
336
- (VecSetState
337
- (rd WritableReg)
338
- (vstate VState))
339
-
340
- (VecLoad
341
- (eew VecElementWidth)
342
- (to WritableReg)
343
- (from VecAMode)
344
- (flags MemFlags)
345
- (mask VecOpMasking)
346
- (vstate VState))
347
-
348
- (VecStore
349
- (eew VecElementWidth)
350
- (to VecAMode)
351
- (from Reg)
352
- (flags MemFlags)
353
- (mask VecOpMasking)
354
- (vstate VState))
355
-
356
- (EmitIsland
357
- ;; The needed space before the next deadline.
358
- (needed_space u32))
359
- ))
360
-
361
- (type AtomicOP (enum
362
- (LrW)
363
- (ScW)
364
- (AmoswapW)
365
- (AmoaddW)
366
- (AmoxorW)
367
- (AmoandW)
368
- (AmoorW)
369
- (AmominW)
370
- (AmomaxW)
371
- (AmominuW)
372
- (AmomaxuW)
373
- (LrD)
374
- (ScD)
375
- (AmoswapD)
376
- (AmoaddD)
377
- (AmoxorD)
378
- (AmoandD)
379
- (AmoorD)
380
- (AmominD)
381
- (AmomaxD)
382
- (AmominuD)
383
- (AmomaxuD)
384
- ))
385
-
386
- (type FpuOPRRRR (enum
387
- (Fmadd)
388
- (Fmsub)
389
- (Fnmsub)
390
- (Fnmadd)
391
- ))
392
-
393
- (type FClassResult (enum
394
- ;;0 rs1 is −∞.
395
- (NegInfinite)
396
- ;; 1 rs1 is a negative normal number.
397
- (NegNormal)
398
- ;; 2 rs1 is a negative subnormal number.
399
- (NegSubNormal)
400
- ;; 3 rs1 is −0.
401
- (NegZero)
402
- ;; 4 rs1 is +0.
403
- (PosZero)
404
- ;; 5 rs1 is a positive subnormal number.
405
- (PosSubNormal)
406
- ;; 6 rs1 is a positive normal number.
407
- (PosNormal)
408
- ;; 7 rs1 is +∞.
409
- (PosInfinite)
410
- ;; 8 rs1 is a signaling NaN.
411
- (SNaN)
412
- ;; 9 rs1 is a quiet NaN.
413
- (QNaN)
414
- ))
415
-
416
- (type FliConstant (primitive FliConstant))
417
-
418
- (type FpuOPWidth (enum
419
- (S)
420
- (D)
421
- (H)
422
- (Q)
423
- ))
424
-
425
- (decl pure fpu_op_width_from_ty (Type) FpuOPWidth)
426
- (extern constructor fpu_op_width_from_ty fpu_op_width_from_ty)
427
- (convert Type FpuOPWidth fpu_op_width_from_ty)
428
-
429
- (type FpuOPRR (enum
430
- (Fsqrt) ;; fsqrt.{fmt}
431
- (Fclass) ;; fclass.{fmt}
432
- (FcvtWFmt) ;; fcvt.w.{fmt}
433
- (FcvtWuFmt) ;; fcvt.wu.{fmt}
434
- (FcvtLFmt) ;; fcvt.l.{fmt}
435
- (FcvtLuFmt) ;; fcvt.lu.{fmt}
436
- (FcvtFmtW) ;; fcvt.{fmt}.w
437
- (FcvtFmtWu) ;; fcvt.{fmt}.wu
438
- (FcvtFmtL) ;; fcvt.{fmt}.l
439
- (FcvtFmtLu) ;; fcvt.{fmt}.lu
440
- (FmvXFmt) ;; fmv.x.{fmt}
441
- (FmvFmtX) ;; fmv.{fmt}.x
442
- (FcvtSD) ;; fcvt.s.d
443
- (FcvtDS) ;; fcvt.d.s
444
-
445
- ;; Zfa Extension
446
- (Fround) ;; fround.{fmt}
447
- ))
448
-
449
- (type LoadOP (enum
450
- (Lb)
451
- (Lh)
452
- (Lw)
453
- (Lbu)
454
- (Lhu)
455
- (Lwu)
456
- (Ld)
457
- (Flh)
458
- (Flw)
459
- (Fld)
460
- ))
461
-
462
- (type StoreOP (enum
463
- (Sb)
464
- (Sh)
465
- (Sw)
466
- (Sd)
467
- (Fsh)
468
- (Fsw)
469
- (Fsd)
470
- ))
471
-
472
- (type AluOPRRR (enum
473
- ;; base set
474
- (Add)
475
- (Sub)
476
- (Sll)
477
- (Slt)
478
- (SltU)
479
- (Sgt)
480
- (Sgtu)
481
- (Xor)
482
- (Srl)
483
- (Sra)
484
- (Or)
485
- (And)
486
-
487
- ;; RV64I Base Instruction Set (in addition to RV32I)
488
- (Addw)
489
- (Subw)
490
- (Sllw)
491
- (Srlw)
492
- (Sraw)
493
-
494
-
495
- ;;RV32M Standard Extension
496
- (Mul)
497
- (Mulh)
498
- (Mulhsu)
499
- (Mulhu)
500
- (Div)
501
- (DivU)
502
- (Rem)
503
- (RemU)
504
-
505
- ;; RV64M Standard Extension (in addition to RV32M)
506
- (Mulw)
507
- (Divw)
508
- (Divuw)
509
- (Remw)
510
- (Remuw)
511
-
512
- ;; Zba: Address Generation Instructions
513
- (Adduw)
514
- (Sh1add)
515
- (Sh1adduw)
516
- (Sh2add)
517
- (Sh2adduw)
518
- (Sh3add)
519
- (Sh3adduw)
520
-
521
- ;; Zbb: Bit Manipulation Instructions
522
- (Andn)
523
- (Orn)
524
- (Xnor)
525
- (Max)
526
- (Maxu)
527
- (Min)
528
- (Minu)
529
- (Rol)
530
- (Rolw)
531
- (Ror)
532
- (Rorw)
533
-
534
- ;; Zbs: Single-bit instructions
535
- (Bclr)
536
- (Bext)
537
- (Binv)
538
- (Bset)
539
-
540
- ;; Zbc: Carry-less multiplication
541
- (Clmul)
542
- (Clmulh)
543
- (Clmulr)
544
-
545
- ;; Zbkb: Bit-manipulation for Cryptography
546
- (Pack)
547
- (Packw)
548
- (Packh)
549
-
550
- ;; ZiCond: Integer Conditional Operations
551
- (CzeroEqz)
552
- (CzeroNez)
553
- ))
554
-
555
-
556
- (type FpuOPRRR (enum
557
- (Fadd)
558
- (Fsub)
559
- (Fmul)
560
- (Fdiv)
561
- (Fsgnj)
562
- (Fsgnjn)
563
- (Fsgnjx)
564
- (Fmin)
565
- (Fmax)
566
- (Feq)
567
- (Flt)
568
- (Fle)
569
-
570
- ;; Zfa Extension
571
- (Fminm)
572
- (Fmaxm)
573
- ))
574
-
575
-
576
-
577
- (type AluOPRRI (enum
578
- ;; Base ISA
579
- (Addi)
580
- (Slti)
581
- (SltiU)
582
- (Xori)
583
- (Ori)
584
- (Andi)
585
- (Slli)
586
- (Srli)
587
- (Srai)
588
- (Addiw)
589
- (Slliw)
590
- (SrliW)
591
- (Sraiw)
592
-
593
- ;; Zba: Address Generation Instructions
594
- (SlliUw)
595
-
596
- ;; Zbb: Bit Manipulation Instructions
597
- (Clz)
598
- (Clzw)
599
- (Ctz)
600
- (Ctzw)
601
- (Cpop)
602
- (Cpopw)
603
- (Sextb)
604
- (Sexth)
605
- (Zexth)
606
- (Rori)
607
- (Roriw)
608
- (Rev8)
609
- (Brev8)
610
- (Orcb)
611
-
612
- ;; Zbs: Single-bit instructions
613
- (Bclri)
614
- (Bexti)
615
- (Binvi)
616
- (Bseti)
617
- ))
618
-
619
- (type COpcodeSpace (enum
620
- (C0)
621
- (C1)
622
- (C2)
623
- ))
624
-
625
- ;; Opcodes for the CR compressed instruction format
626
- (type CrOp (enum
627
- (CMv)
628
- (CAdd)
629
- (CJr)
630
- (CJalr)
631
- ;; c.ebreak technically isn't a CR format instruction, but it's encoding
632
- ;; lines up with this format.
633
- (CEbreak)
634
- ))
635
-
636
- ;; Opcodes for the CA compressed instruction format
637
- (type CaOp (enum
638
- (CAnd)
639
- (COr)
640
- (CXor)
641
- (CSub)
642
- (CAddw)
643
- (CSubw)
644
- (CMul)
645
- ))
646
-
647
- ;; Opcodes for the CJ compressed instruction format
648
- (type CjOp (enum
649
- (CJ)
650
- ))
651
-
652
- ;; Opcodes for the CI compressed instruction format
653
- (type CiOp (enum
654
- (CAddi)
655
- (CAddiw)
656
- (CAddi16sp)
657
- (CSlli)
658
- (CLi)
659
- (CLui)
660
- (CLwsp)
661
- (CLdsp)
662
- (CFldsp)
663
- ))
664
-
665
- ;; Opcodes for the CIW compressed instruction format
666
- (type CiwOp (enum
667
- (CAddi4spn)
668
- ))
669
-
670
- ;; Opcodes for the CB compressed instruction format
671
- (type CbOp (enum
672
- (CSrli)
673
- (CSrai)
674
- (CAndi)
675
- ))
676
-
677
- ;; Opcodes for the CSS compressed instruction format
678
- (type CssOp (enum
679
- (CSwsp)
680
- (CSdsp)
681
- (CFsdsp)
682
- ))
683
-
684
- ;; Opcodes for the CS compressed instruction format
685
- (type CsOp (enum
686
- (CSw)
687
- (CSd)
688
- (CFsd)
689
- ))
690
-
691
- ;; Opcodes for the CL compressed instruction format
692
- (type ClOp (enum
693
- (CLw)
694
- (CLd)
695
- (CFld)
696
- ))
697
-
698
- ;; Opcodes for the CSZN compressed instruction format
699
- (type CsznOp (enum
700
- (CNot)
701
- (CZextb)
702
- (CZexth)
703
- (CZextw)
704
- (CSextb)
705
- (CSexth)
706
- ))
707
-
708
- ;; This is a mix of all Zcb memory addressing instructions
709
- ;;
710
- ;; Technically they are split across 4 different formats.
711
- ;; But they are all very similar, so we just group them all together.
712
- (type ZcbMemOp (enum
713
- (CLbu)
714
- (CLhu)
715
- (CLh)
716
- (CSb)
717
- (CSh)
718
- ))
719
-
720
-
721
- (type CsrRegOP (enum
722
- ;; Atomic Read/Write CSR
723
- (CsrRW)
724
- ;; Atomic Read and Set Bits in CSR
725
- (CsrRS)
726
- ;; Atomic Read and Clear Bits in CSR
727
- (CsrRC)
728
- ))
729
-
730
- (type CsrImmOP (enum
731
- ;; Atomic Read/Write CSR (Immediate Source)
732
- (CsrRWI)
733
- ;; Atomic Read and Set Bits in CSR (Immediate Source)
734
- (CsrRSI)
735
- ;; Atomic Read and Clear Bits in CSR (Immediate Source)
736
- (CsrRCI)
737
- ))
738
-
739
- ;; Enum of the known CSR registers
740
- (type CSR (enum
741
- ;; Floating-Point Dynamic Rounding Mode
742
- (Frm)
743
- ))
744
-
745
-
746
- (type FRM (enum
747
- ;; Round to Nearest, ties to Even
748
- (RNE)
749
- ;; Round towards Zero
750
- (RTZ)
751
- ;; Round Down (towards −∞)
752
- (RDN)
753
- ;; Round Up (towards +∞)
754
- (RUP)
755
- ;; Round to Nearest, ties to Max Magnitude
756
- (RMM)
757
- ;; In instruction’s rm field, selects dynamic rounding mode;
758
- ;;In Rounding Mode register, Invalid.
759
- (Fcsr)
760
- ))
761
-
762
- (decl pure frm_bits (FRM) UImm5)
763
- (extern constructor frm_bits frm_bits)
764
- (convert FRM UImm5 frm_bits)
765
-
766
- (type FFlagsException (enum
767
- ;; Invalid Operation
768
- (NV)
769
- ;; Divide by Zero
770
- (DZ)
771
- ;; Overflow
772
- (OF)
773
- ;; Underflow
774
- (UF)
775
- ;; Inexact
776
- (NX)
777
- ))
778
-
779
- ;;;; input output read write
780
- ;;;; SI SO SR SW
781
- ;;;; PI PO PR PW
782
- ;;;; lowest four bit are used.
783
- (type FenceReq (primitive u8))
784
-
785
- (type BoxCallInfo (primitive BoxCallInfo))
786
- (type BoxCallIndInfo (primitive BoxCallIndInfo))
787
- (type BoxReturnCallInfo (primitive BoxReturnCallInfo))
788
- (type BoxReturnCallIndInfo (primitive BoxReturnCallIndInfo))
789
- (type IntegerCompare (primitive IntegerCompare))
790
- (type AMode (primitive AMode))
791
- (type OptionReg (primitive OptionReg))
792
- (type OptionImm12 (primitive OptionImm12))
793
- (type OptionUimm5 (primitive OptionUimm5))
794
- (type Imm12 (primitive Imm12))
795
- (type UImm5 (primitive UImm5))
796
- (type Imm5 (primitive Imm5))
797
- (type Imm20 (primitive Imm20))
798
- (type Imm3 (primitive Imm3))
799
- (type CondBrTarget (primitive CondBrTarget))
800
- (type VecU8 (primitive VecU8))
801
- (type AMO (primitive AMO))
802
- (type VecMachLabel extern (enum))
803
-
804
-
805
- ;;;; Newtypes for Different Register Classes ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
806
-
807
- (type XReg (primitive XReg))
808
- (type WritableXReg (primitive WritableXReg))
809
- (type FReg (primitive FReg))
810
- (type WritableFReg (primitive WritableFReg))
811
- (type VReg (primitive VReg))
812
- (type WritableVReg (primitive WritableVReg))
813
-
814
- ;; Construct a new `XReg` from a `Reg`.
815
- ;;
816
- ;; Asserts that the register has a Integer RegClass.
817
- (decl xreg_new (Reg) XReg)
818
- (extern constructor xreg_new xreg_new)
819
- (convert Reg XReg xreg_new)
820
-
821
- ;; Construct a new `WritableXReg` from a `WritableReg`.
822
- ;;
823
- ;; Asserts that the register has a Integer RegClass.
824
- (decl writable_xreg_new (WritableReg) WritableXReg)
825
- (extern constructor writable_xreg_new writable_xreg_new)
826
- (convert WritableReg WritableXReg writable_xreg_new)
827
-
828
- ;; Put a value into a XReg.
829
- ;;
830
- ;; Asserts that the value goes into a XReg.
831
- (decl put_in_xreg (Value) XReg)
832
- (rule (put_in_xreg val) (xreg_new (put_in_reg val)))
833
- (convert Value XReg put_in_xreg)
834
-
835
- ;; Construct an `InstOutput` out of a single XReg register.
836
- (decl output_xreg (XReg) InstOutput)
837
- (rule (output_xreg x) (output_reg x))
838
- (convert XReg InstOutput output_xreg)
839
-
840
- ;; Convert a `WritableXReg` to an `XReg`.
841
- (decl pure writable_xreg_to_xreg (WritableXReg) XReg)
842
- (extern constructor writable_xreg_to_xreg writable_xreg_to_xreg)
843
- (convert WritableXReg XReg writable_xreg_to_xreg)
844
-
845
- ;; Convert a `WritableXReg` to an `WritableReg`.
846
- (decl pure writable_xreg_to_writable_reg (WritableXReg) WritableReg)
847
- (extern constructor writable_xreg_to_writable_reg writable_xreg_to_writable_reg)
848
- (convert WritableXReg WritableReg writable_xreg_to_writable_reg)
849
-
850
- ;; Convert a `WritableXReg` to an `Reg`.
851
- (decl pure writable_xreg_to_reg (WritableXReg) Reg)
852
- (rule (writable_xreg_to_reg x) (writable_xreg_to_writable_reg x))
853
- (convert WritableXReg Reg writable_xreg_to_reg)
854
-
855
- ;; Convert an `XReg` to a `Reg`.
856
- (decl pure xreg_to_reg (XReg) Reg)
857
- (extern constructor xreg_to_reg xreg_to_reg)
858
- (convert XReg Reg xreg_to_reg)
859
-
860
- ;; Convert a `XReg` to a `ValueRegs`.
861
- (decl xreg_to_value_regs (XReg) ValueRegs)
862
- (rule (xreg_to_value_regs x) (value_reg x))
863
- (convert XReg ValueRegs xreg_to_reg)
864
-
865
- ;; Convert a `WritableXReg` to a `ValueRegs`.
866
- (decl writable_xreg_to_value_regs (WritableXReg) ValueRegs)
867
- (rule (writable_xreg_to_value_regs x) (value_reg x))
868
- (convert WritableXReg ValueRegs writable_xreg_to_value_regs)
869
-
870
- ;; Allocates a new `WritableXReg`.
871
- (decl temp_writable_xreg () WritableXReg)
872
- (rule (temp_writable_xreg) (temp_writable_reg $I64))
873
-
874
-
875
- ;; Construct a new `FReg` from a `Reg`.
876
- ;;
877
- ;; Asserts that the register has a Float RegClass.
878
- (decl freg_new (Reg) FReg)
879
- (extern constructor freg_new freg_new)
880
- (convert Reg FReg freg_new)
881
-
882
- ;; Construct a new `WritableFReg` from a `WritableReg`.
883
- ;;
884
- ;; Asserts that the register has a Float RegClass.
885
- (decl writable_freg_new (WritableReg) WritableFReg)
886
- (extern constructor writable_freg_new writable_freg_new)
887
- (convert WritableReg WritableFReg writable_freg_new)
888
-
889
- ;; Put a value into a FReg.
890
- ;;
891
- ;; Asserts that the value goes into a FReg.
892
- (decl put_in_freg (Value) FReg)
893
- (rule (put_in_freg val) (freg_new (put_in_reg val)))
894
- (convert Value FReg put_in_freg)
895
-
896
- ;; Construct an `InstOutput` out of a single FReg register.
897
- (decl output_freg (FReg) InstOutput)
898
- (rule (output_freg x) (output_reg x))
899
- (convert FReg InstOutput output_freg)
900
-
901
- ;; Convert a `WritableFReg` to an `FReg`.
902
- (decl pure writable_freg_to_freg (WritableFReg) FReg)
903
- (extern constructor writable_freg_to_freg writable_freg_to_freg)
904
- (convert WritableFReg FReg writable_freg_to_freg)
905
-
906
- ;; Convert a `WritableFReg` to an `WritableReg`.
907
- (decl pure writable_freg_to_writable_reg (WritableFReg) WritableReg)
908
- (extern constructor writable_freg_to_writable_reg writable_freg_to_writable_reg)
909
- (convert WritableFReg WritableReg writable_freg_to_writable_reg)
910
-
911
- ;; Convert a `WritableFReg` to an `Reg`.
912
- (decl pure writable_freg_to_reg (WritableFReg) Reg)
913
- (rule (writable_freg_to_reg x) (writable_freg_to_writable_reg x))
914
- (convert WritableFReg Reg writable_freg_to_reg)
915
-
916
- ;; Convert an `FReg` to a `Reg`.
917
- (decl pure freg_to_reg (FReg) Reg)
918
- (extern constructor freg_to_reg freg_to_reg)
919
- (convert FReg Reg freg_to_reg)
920
-
921
- ;; Convert a `FReg` to a `ValueRegs`.
922
- (decl freg_to_value_regs (FReg) ValueRegs)
923
- (rule (freg_to_value_regs x) (value_reg x))
924
- (convert FReg ValueRegs xreg_to_reg)
925
-
926
- ;; Convert a `WritableFReg` to a `ValueRegs`.
927
- (decl writable_freg_to_value_regs (WritableFReg) ValueRegs)
928
- (rule (writable_freg_to_value_regs x) (value_reg x))
929
- (convert WritableFReg ValueRegs writable_freg_to_value_regs)
930
-
931
- ;; Allocates a new `WritableFReg`.
932
- (decl temp_writable_freg () WritableFReg)
933
- (rule (temp_writable_freg) (temp_writable_reg $F64))
934
-
935
-
936
-
937
- ;; Construct a new `VReg` from a `Reg`.
938
- ;;
939
- ;; Asserts that the register has a Vector RegClass.
940
- (decl vreg_new (Reg) VReg)
941
- (extern constructor vreg_new vreg_new)
942
- (convert Reg VReg vreg_new)
943
-
944
- ;; Construct a new `WritableVReg` from a `WritableReg`.
945
- ;;
946
- ;; Asserts that the register has a Vector RegClass.
947
- (decl writable_vreg_new (WritableReg) WritableVReg)
948
- (extern constructor writable_vreg_new writable_vreg_new)
949
- (convert WritableReg WritableVReg writable_vreg_new)
950
-
951
- ;; Put a value into a VReg.
952
- ;;
953
- ;; Asserts that the value goes into a VReg.
954
- (decl put_in_vreg (Value) VReg)
955
- (rule (put_in_vreg val) (vreg_new (put_in_reg val)))
956
- (convert Value VReg put_in_vreg)
957
-
958
- ;; Construct an `InstOutput` out of a single VReg register.
959
- (decl output_vreg (VReg) InstOutput)
960
- (rule (output_vreg x) (output_reg x))
961
- (convert VReg InstOutput output_vreg)
962
-
963
- ;; Convert a `WritableVReg` to an `VReg`.
964
- (decl pure writable_vreg_to_vreg (WritableVReg) VReg)
965
- (extern constructor writable_vreg_to_vreg writable_vreg_to_vreg)
966
- (convert WritableVReg VReg writable_vreg_to_vreg)
967
-
968
- ;; Convert a `WritableVReg` to an `WritableReg`.
969
- (decl pure writable_vreg_to_writable_reg (WritableVReg) WritableReg)
970
- (extern constructor writable_vreg_to_writable_reg writable_vreg_to_writable_reg)
971
- (convert WritableVReg WritableReg writable_vreg_to_writable_reg)
972
-
973
- ;; Convert a `WritableVReg` to an `Reg`.
974
- (decl pure writable_vreg_to_reg (WritableVReg) Reg)
975
- (rule (writable_vreg_to_reg x) (writable_vreg_to_writable_reg x))
976
- (convert WritableVReg Reg writable_vreg_to_reg)
977
-
978
- ;; Convert an `VReg` to a `Reg`.
979
- (decl pure vreg_to_reg (VReg) Reg)
980
- (extern constructor vreg_to_reg vreg_to_reg)
981
- (convert VReg Reg vreg_to_reg)
982
-
983
- ;; Convert a `VReg` to a `ValueRegs`.
984
- (decl vreg_to_value_regs (VReg) ValueRegs)
985
- (rule (vreg_to_value_regs x) (value_reg x))
986
- (convert VReg ValueRegs xreg_to_reg)
987
-
988
- ;; Convert a `WritableVReg` to a `ValueRegs`.
989
- (decl writable_vreg_to_value_regs (WritableVReg) ValueRegs)
990
- (rule (writable_vreg_to_value_regs x) (value_reg x))
991
- (convert WritableVReg ValueRegs writable_vreg_to_value_regs)
992
-
993
- ;; Allocates a new `WritableVReg`.
994
- (decl temp_writable_vreg () WritableVReg)
995
- (rule (temp_writable_vreg) (temp_writable_reg $I8X16))
996
-
997
-
998
- ;; ISA Extension helpers
999
-
1000
- (decl pure has_m () bool)
1001
- (extern constructor has_m has_m)
1002
-
1003
- (decl pure has_v () bool)
1004
- (extern constructor has_v has_v)
1005
-
1006
- (decl pure has_zfa () bool)
1007
- (extern constructor has_zfa has_zfa)
1008
-
1009
- (decl pure has_zfhmin () bool)
1010
- (extern constructor has_zfhmin has_zfhmin)
1011
-
1012
- (decl pure has_zfh () bool)
1013
- (extern constructor has_zfh has_zfh)
1014
-
1015
- (decl pure has_zvfh () bool)
1016
- (extern constructor has_zvfh has_zvfh)
1017
-
1018
- (decl pure has_zbkb () bool)
1019
- (extern constructor has_zbkb has_zbkb)
1020
-
1021
- (decl pure has_zba () bool)
1022
- (extern constructor has_zba has_zba)
1023
-
1024
- (decl pure has_zbb () bool)
1025
- (extern constructor has_zbb has_zbb)
1026
-
1027
- (decl pure has_zbc () bool)
1028
- (extern constructor has_zbc has_zbc)
1029
-
1030
- (decl pure has_zbs () bool)
1031
- (extern constructor has_zbs has_zbs)
1032
-
1033
- (decl pure has_zicond () bool)
1034
- (extern constructor has_zicond has_zicond)
1035
-
1036
-
1037
- ;;;; Type Helpers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1038
-
1039
- ;; Helper that matches any supported type. This extractor checks the ISA flags
1040
- ;; to determine if the type is supported.
1041
- (decl ty_supported (Type) Type)
1042
- (extern extractor ty_supported ty_supported)
1043
-
1044
- ;; Helper that matches any scalar floating point type
1045
-
1046
- ;; Floating point registers are large enough to hold the type
1047
- (decl ty_supported_float_size (Type) Type)
1048
- (extern extractor ty_supported_float_size ty_supported_float_size)
1049
-
1050
- ;; At least basic floating point instructions like load/store are supported (e.g. Zfhmin)
1051
- (decl ty_supported_float_min (Type) Type)
1052
- (extern extractor ty_supported_float_min ty_supported_float_min)
1053
-
1054
- ;; All floating point instructions are supported (e.g. Zfh)
1055
- (decl ty_supported_float_full (Type) Type)
1056
- (extern extractor ty_supported_float_full ty_supported_float_full)
1057
-
1058
- ;; Helper that matches any supported vector type
1059
- (decl ty_supported_vec (Type) Type)
1060
- (extern extractor ty_supported_vec ty_supported_vec)
1061
-
1062
- ;; Helper that matches types which are stored in a pair of integer registers (I128 and F128)
1063
- (decl ty_reg_pair (Type) Type)
1064
- (extern extractor ty_reg_pair ty_reg_pair)
1065
-
1066
-
1067
- ;;;; Instruction Helpers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1068
-
1069
- ;; RV32I Base Integer Instruction Set
1070
-
1071
- ;; Helper for emitting the `add` instruction.
1072
- ;; rd ← rs1 + rs2
1073
- (decl rv_add (XReg XReg) XReg)
1074
- (rule (rv_add rs1 rs2)
1075
- (alu_rrr (AluOPRRR.Add) rs1 rs2))
1076
-
1077
- ;; Helper for emitting the `addi` ("Add Immediate") instruction.
1078
- ;; rd ← rs1 + sext(imm)
1079
- (decl rv_addi (XReg Imm12) XReg)
1080
- (rule (rv_addi rs1 imm)
1081
- (alu_rr_imm12 (AluOPRRI.Addi) rs1 imm))
1082
-
1083
- ;; Helper for emitting the `sub` instruction.
1084
- ;; rd ← rs1 - rs2
1085
- (decl rv_sub (XReg XReg) XReg)
1086
- (rule (rv_sub rs1 rs2)
1087
- (alu_rrr (AluOPRRR.Sub) rs1 rs2))
1088
-
1089
- ;; Helper for emitting the `neg` instruction.
1090
- ;; This instruction is a mnemonic for `sub rd, zero, rs1`.
1091
- (decl rv_neg (XReg) XReg)
1092
- (rule (rv_neg rs1)
1093
- (alu_rrr (AluOPRRR.Sub) (zero_reg) rs1))
1094
-
1095
- ;; Helper for emitting the `sll` ("Shift Left Logical") instruction.
1096
- ;; rd ← rs1 << rs2
1097
- (decl rv_sll (XReg XReg) XReg)
1098
- (rule (rv_sll rs1 rs2)
1099
- (alu_rrr (AluOPRRR.Sll) rs1 rs2))
1100
-
1101
- ;; Helper for emitting the `slli` ("Shift Left Logical Immediate") instruction.
1102
- ;; rd ← rs1 << uext(imm)
1103
- (decl rv_slli (XReg Imm12) XReg)
1104
- (rule (rv_slli rs1 imm)
1105
- (alu_rr_imm12 (AluOPRRI.Slli) rs1 imm))
1106
-
1107
- ;; Helper for emitting the `srl` ("Shift Right Logical") instruction.
1108
- ;; rd ← rs1 >> rs2
1109
- (decl rv_srl (XReg XReg) XReg)
1110
- (rule (rv_srl rs1 rs2)
1111
- (alu_rrr (AluOPRRR.Srl) rs1 rs2))
1112
-
1113
- ;; Helper for emitting the `srli` ("Shift Right Logical Immediate") instruction.
1114
- ;; rd ← rs1 >> uext(imm)
1115
- (decl rv_srli (XReg Imm12) XReg)
1116
- (rule (rv_srli rs1 imm)
1117
- (alu_rr_imm12 (AluOPRRI.Srli) rs1 imm))
1118
-
1119
- ;; Helper for emitting the `sra` ("Shift Right Arithmetic") instruction.
1120
- ;; rd ← rs1 >> rs2
1121
- (decl rv_sra (XReg XReg) XReg)
1122
- (rule (rv_sra rs1 rs2)
1123
- (alu_rrr (AluOPRRR.Sra) rs1 rs2))
1124
-
1125
- ;; Helper for emitting the `srai` ("Shift Right Arithmetic Immediate") instruction.
1126
- ;; rd ← rs1 >> uext(imm)
1127
- (decl rv_srai (XReg Imm12) XReg)
1128
- (rule (rv_srai rs1 imm)
1129
- (alu_rr_imm12 (AluOPRRI.Srai) rs1 imm))
1130
-
1131
- ;; Helper for emitting the `or` instruction.
1132
- ;; rd ← rs1 ∨ rs2
1133
- (decl rv_or (XReg XReg) XReg)
1134
- (rule (rv_or rs1 rs2)
1135
- (alu_rrr (AluOPRRR.Or) rs1 rs2))
1136
-
1137
- ;; Helper for emitting the `ori` ("Or Immediate") instruction.
1138
- ;; rd ← rs1 ∨ uext(imm)
1139
- (decl rv_ori (XReg Imm12) XReg)
1140
- (rule (rv_ori rs1 imm)
1141
- (alu_rr_imm12 (AluOPRRI.Ori) rs1 imm))
1142
-
1143
- ;; Helper for emitting the `xor` instruction.
1144
- ;; rd ← rs1 ⊕ rs2
1145
- (decl rv_xor (XReg XReg) XReg)
1146
- (rule (rv_xor rs1 rs2)
1147
- (alu_rrr (AluOPRRR.Xor) rs1 rs2))
1148
-
1149
- ;; Helper for emitting the `xori` ("Exclusive Or Immediate") instruction.
1150
- ;; rd ← rs1 ⊕ uext(imm)
1151
- (decl rv_xori (XReg Imm12) XReg)
1152
- (rule (rv_xori rs1 imm)
1153
- (alu_rr_imm12 (AluOPRRI.Xori) rs1 imm))
1154
-
1155
- ;; Helper for emitting the `not` instruction.
1156
- ;; This instruction is a mnemonic for `xori rd, rs1, -1`.
1157
- (decl rv_not (XReg) XReg)
1158
- (rule (rv_not rs1)
1159
- (rv_xori rs1 (imm12_const -1)))
1160
-
1161
- ;; Helper for emitting the `and` instruction.
1162
- ;; rd ← rs1 ∧ rs2
1163
- (decl rv_and (XReg XReg) XReg)
1164
- (rule (rv_and rs1 rs2)
1165
- (alu_rrr (AluOPRRR.And) rs1 rs2))
1166
-
1167
- ;; Helper for emitting the `andi` ("And Immediate") instruction.
1168
- ;; rd ← rs1 ∧ uext(imm)
1169
- (decl rv_andi (XReg Imm12) XReg)
1170
- (rule (rv_andi rs1 imm)
1171
- (alu_rr_imm12 (AluOPRRI.Andi) rs1 imm))
1172
-
1173
- ;; Helper for emitting the `slt` ("Set Less Than") instruction.
1174
- ;; rd ← rs1 < rs2
1175
- (decl rv_slt (XReg XReg) XReg)
1176
- (rule (rv_slt rs1 rs2)
1177
- (alu_rrr (AluOPRRR.Slt) rs1 rs2))
1178
-
1179
- ;; Helper for emitting the `sltu` ("Set Less Than Unsigned") instruction.
1180
- ;; rd ← rs1 < rs2
1181
- (decl rv_sltu (XReg XReg) XReg)
1182
- (rule (rv_sltu rs1 rs2)
1183
- (alu_rrr (AluOPRRR.SltU) rs1 rs2))
1184
-
1185
- ;; Helper for emitting the `snez` instruction.
1186
- ;; This instruction is a mnemonic for `sltu rd, zero, rs`.
1187
- (decl rv_snez (XReg) XReg)
1188
- (rule (rv_snez rs1)
1189
- (rv_sltu (zero_reg) rs1))
1190
-
1191
- ;; Helper for emitting the `slti` ("Set Less Than Immediate") instruction.
1192
- ;; rd ← rs1 < imm
1193
- (decl rv_slti (XReg Imm12) XReg)
1194
- (rule (rv_slti rs1 imm)
1195
- (alu_rr_imm12 (AluOPRRI.Slti) rs1 imm))
1196
-
1197
- ;; Helper for emitting the `sltiu` ("Set Less Than Immediate Unsigned") instruction.
1198
- ;; rd ← rs1 < imm
1199
- (decl rv_sltiu (XReg Imm12) XReg)
1200
- (rule (rv_sltiu rs1 imm)
1201
- (alu_rr_imm12 (AluOPRRI.SltiU) rs1 imm))
1202
-
1203
- ;; Helper for emitting the `seqz` instruction.
1204
- ;; This instruction is a mnemonic for `sltiu rd, rs, 1`.
1205
- (decl rv_seqz (XReg) XReg)
1206
- (rule (rv_seqz rs1)
1207
- (rv_sltiu rs1 (imm12_const 1)))
1208
-
1209
-
1210
- ;; RV64I Base Integer Instruction Set
1211
- ;; Unlike RV32I instructions these are only present in the 64bit ISA
1212
-
1213
- ;; Helper for emitting the `addw` ("Add Word") instruction.
1214
- ;; rd ← sext32(rs1) + sext32(rs2)
1215
- (decl rv_addw (XReg XReg) XReg)
1216
- (rule (rv_addw rs1 rs2)
1217
- (alu_rrr (AluOPRRR.Addw) rs1 rs2))
1218
-
1219
- ;; Helper for emitting the `addiw` ("Add Word Immediate") instruction.
1220
- ;; rd ← sext32(rs1) + imm
1221
- (decl rv_addiw (XReg Imm12) XReg)
1222
- (rule (rv_addiw rs1 imm)
1223
- (alu_rr_imm12 (AluOPRRI.Addiw) rs1 imm))
1224
-
1225
- ;; Helper for emitting the `sext.w` ("Sign Extend Word") instruction.
1226
- ;; This instruction is a mnemonic for `addiw rd, rs, zero`.
1227
- (decl rv_sextw (XReg) XReg)
1228
- (rule (rv_sextw rs1)
1229
- (rv_addiw rs1 (imm12_const 0)))
1230
-
1231
- ;; Helper for emitting the `subw` ("Subtract Word") instruction.
1232
- ;; rd ← sext32(rs1) - sext32(rs2)
1233
- (decl rv_subw (XReg XReg) XReg)
1234
- (rule (rv_subw rs1 rs2)
1235
- (alu_rrr (AluOPRRR.Subw) rs1 rs2))
1236
-
1237
- ;; Helper for emitting the `sllw` ("Shift Left Logical Word") instruction.
1238
- ;; rd ← sext32(uext32(rs1) << rs2)
1239
- (decl rv_sllw (XReg XReg) XReg)
1240
- (rule (rv_sllw rs1 rs2)
1241
- (alu_rrr (AluOPRRR.Sllw) rs1 rs2))
1242
-
1243
- ;; Helper for emitting the `slliw` ("Shift Left Logical Immediate Word") instruction.
1244
- ;; rd ← sext32(uext32(rs1) << imm)
1245
- (decl rv_slliw (XReg Imm12) XReg)
1246
- (rule (rv_slliw rs1 imm)
1247
- (alu_rr_imm12 (AluOPRRI.Slliw) rs1 imm))
1248
-
1249
- ;; Helper for emitting the `srlw` ("Shift Right Logical Word") instruction.
1250
- ;; rd ← sext32(uext32(rs1) >> rs2)
1251
- (decl rv_srlw (XReg XReg) XReg)
1252
- (rule (rv_srlw rs1 rs2)
1253
- (alu_rrr (AluOPRRR.Srlw) rs1 rs2))
1254
-
1255
- ;; Helper for emitting the `srliw` ("Shift Right Logical Immediate Word") instruction.
1256
- ;; rd ← sext32(uext32(rs1) >> imm)
1257
- (decl rv_srliw (XReg Imm12) XReg)
1258
- (rule (rv_srliw rs1 imm)
1259
- (alu_rr_imm12 (AluOPRRI.SrliW) rs1 imm))
1260
-
1261
- ;; Helper for emitting the `sraw` ("Shift Right Arithmetic Word") instruction.
1262
- ;; rd ← sext32(rs1 >> rs2)
1263
- (decl rv_sraw (XReg XReg) XReg)
1264
- (rule (rv_sraw rs1 rs2)
1265
- (alu_rrr (AluOPRRR.Sraw) rs1 rs2))
1266
-
1267
- ;; Helper for emitting the `sraiw` ("Shift Right Arithmetic Immediate Word") instruction.
1268
- ;; rd ← sext32(rs1 >> imm)
1269
- (decl rv_sraiw (XReg Imm12) XReg)
1270
- (rule (rv_sraiw rs1 imm)
1271
- (alu_rr_imm12 (AluOPRRI.Sraiw) rs1 imm))
1272
-
1273
-
1274
- ;; RV32M Extension
1275
- ;; TODO: Enable these instructions only when we have the M extension
1276
-
1277
- ;; Helper for emitting the `mul` instruction.
1278
- ;; rd ← rs1 × rs2
1279
- (decl rv_mul (XReg XReg) XReg)
1280
- (rule (rv_mul rs1 rs2)
1281
- (alu_rrr (AluOPRRR.Mul) rs1 rs2))
1282
-
1283
- ;; Helper for emitting the `mulh` ("Multiply High Signed Signed") instruction.
1284
- ;; rd ← (sext(rs1) × sext(rs2)) » xlen
1285
- (decl rv_mulh (XReg XReg) XReg)
1286
- (rule (rv_mulh rs1 rs2)
1287
- (alu_rrr (AluOPRRR.Mulh) rs1 rs2))
1288
-
1289
- ;; Helper for emitting the `mulhu` ("Multiply High Unsigned Unsigned") instruction.
1290
- ;; rd ← (uext(rs1) × uext(rs2)) » xlen
1291
- (decl rv_mulhu (XReg XReg) XReg)
1292
- (rule (rv_mulhu rs1 rs2)
1293
- (alu_rrr (AluOPRRR.Mulhu) rs1 rs2))
1294
-
1295
- ;; Helper for emitting the `div` instruction.
1296
- ;; rd ← rs1 ÷ rs2
1297
- (decl rv_div (XReg XReg) XReg)
1298
- (rule (rv_div rs1 rs2)
1299
- (alu_rrr (AluOPRRR.Div) rs1 rs2))
1300
-
1301
- ;; Helper for emitting the `divu` ("Divide Unsigned") instruction.
1302
- ;; rd ← rs1 ÷ rs2
1303
- (decl rv_divu (XReg XReg) XReg)
1304
- (rule (rv_divu rs1 rs2)
1305
- (alu_rrr (AluOPRRR.DivU) rs1 rs2))
1306
-
1307
- ;; Helper for emitting the `rem` instruction.
1308
- ;; rd ← rs1 mod rs2
1309
- (decl rv_rem (XReg XReg) XReg)
1310
- (rule (rv_rem rs1 rs2)
1311
- (alu_rrr (AluOPRRR.Rem) rs1 rs2))
1312
-
1313
- ;; Helper for emitting the `remu` ("Remainder Unsigned") instruction.
1314
- ;; rd ← rs1 mod rs2
1315
- (decl rv_remu (XReg XReg) XReg)
1316
- (rule (rv_remu rs1 rs2)
1317
- (alu_rrr (AluOPRRR.RemU) rs1 rs2))
1318
-
1319
- ;; RV64M Extension
1320
- ;; TODO: Enable these instructions only when we have the M extension
1321
-
1322
- ;; Helper for emitting the `mulw` ("Multiply Word") instruction.
1323
- ;; rd ← uext32(rs1) × uext32(rs2)
1324
- (decl rv_mulw (XReg XReg) XReg)
1325
- (rule (rv_mulw rs1 rs2)
1326
- (alu_rrr (AluOPRRR.Mulw) rs1 rs2))
1327
-
1328
- ;; Helper for emitting the `divw` ("Divide Word") instruction.
1329
- ;; rd ← sext32(rs1) ÷ sext32(rs2)
1330
- (decl rv_divw (XReg XReg) XReg)
1331
- (rule (rv_divw rs1 rs2)
1332
- (alu_rrr (AluOPRRR.Divw) rs1 rs2))
1333
-
1334
- ;; Helper for emitting the `divuw` ("Divide Unsigned Word") instruction.
1335
- ;; rd ← uext32(rs1) ÷ uext32(rs2)
1336
- (decl rv_divuw (XReg XReg) XReg)
1337
- (rule (rv_divuw rs1 rs2)
1338
- (alu_rrr (AluOPRRR.Divuw) rs1 rs2))
1339
-
1340
- ;; Helper for emitting the `remw` ("Remainder Word") instruction.
1341
- ;; rd ← sext32(rs1) mod sext32(rs2)
1342
- (decl rv_remw (XReg XReg) XReg)
1343
- (rule (rv_remw rs1 rs2)
1344
- (alu_rrr (AluOPRRR.Remw) rs1 rs2))
1345
-
1346
- ;; Helper for emitting the `remuw` ("Remainder Unsigned Word") instruction.
1347
- ;; rd ← uext32(rs1) mod uext32(rs2)
1348
- (decl rv_remuw (XReg XReg) XReg)
1349
- (rule (rv_remuw rs1 rs2)
1350
- (alu_rrr (AluOPRRR.Remuw) rs1 rs2))
1351
-
1352
-
1353
- ;; F and D Extensions
1354
- ;; TODO: Enable these instructions only when we have the F or D extensions
1355
-
1356
- ;; Helper for emitting the `fadd` instruction.
1357
- (decl rv_fadd (Type FRM FReg FReg) FReg)
1358
- (rule (rv_fadd ty frm rs1 rs2) (fpu_rrr (FpuOPRRR.Fadd) ty frm rs1 rs2))
1359
-
1360
- ;; Helper for emitting the `fsub` instruction.
1361
- (decl rv_fsub (Type FRM FReg FReg) FReg)
1362
- (rule (rv_fsub ty frm rs1 rs2) (fpu_rrr (FpuOPRRR.Fsub) ty frm rs1 rs2))
1363
-
1364
- ;; Helper for emitting the `fmul` instruction.
1365
- (decl rv_fmul (Type FRM FReg FReg) FReg)
1366
- (rule (rv_fmul ty frm rs1 rs2) (fpu_rrr (FpuOPRRR.Fmul) ty frm rs1 rs2))
1367
-
1368
- ;; Helper for emitting the `fdiv` instruction.
1369
- (decl rv_fdiv (Type FRM FReg FReg) FReg)
1370
- (rule (rv_fdiv ty frm rs1 rs2) (fpu_rrr (FpuOPRRR.Fdiv) ty frm rs1 rs2))
1371
-
1372
- ;; Helper for emitting the `fsqrt` instruction.
1373
- (decl rv_fsqrt (Type FRM FReg) FReg)
1374
- (rule (rv_fsqrt ty frm rs1) (fpu_rr (FpuOPRR.Fsqrt) ty frm rs1))
1375
-
1376
- ;; Helper for emitting the `fmadd` instruction.
1377
- (decl rv_fmadd (Type FRM FReg FReg FReg) FReg)
1378
- (rule (rv_fmadd ty frm rs1 rs2 rs3) (fpu_rrrr (FpuOPRRRR.Fmadd) ty frm rs1 rs2 rs3))
1379
-
1380
- ;; Helper for emitting the `fmsub` instruction.
1381
- (decl rv_fmsub (Type FRM FReg FReg FReg) FReg)
1382
- (rule (rv_fmsub ty frm rs1 rs2 rs3) (fpu_rrrr (FpuOPRRRR.Fmsub) ty frm rs1 rs2 rs3))
1383
-
1384
- ;; Helper for emitting the `fnmadd` instruction.
1385
- (decl rv_fnmadd (Type FRM FReg FReg FReg) FReg)
1386
- (rule (rv_fnmadd ty frm rs1 rs2 rs3) (fpu_rrrr (FpuOPRRRR.Fnmadd) ty frm rs1 rs2 rs3))
1387
-
1388
- ;; Helper for emitting the `fnmsub` instruction.
1389
- (decl rv_fnmsub (Type FRM FReg FReg FReg) FReg)
1390
- (rule (rv_fnmsub ty frm rs1 rs2 rs3) (fpu_rrrr (FpuOPRRRR.Fnmsub) ty frm rs1 rs2 rs3))
1391
-
1392
- ;; Helper for emitting the `fmv.x.h` instruction.
1393
- (decl rv_fmvxh (FReg) XReg)
1394
- (rule (rv_fmvxh r) (fpu_rr_int (FpuOPRR.FmvXFmt) $F16 (FRM.RNE) r))
1395
-
1396
- ;; Helper for emitting the `fmv.x.w` instruction.
1397
- (decl rv_fmvxw (FReg) XReg)
1398
- (rule (rv_fmvxw r) (fpu_rr_int (FpuOPRR.FmvXFmt) $F32 (FRM.RNE) r))
1399
-
1400
- ;; Helper for emitting the `fmv.x.d` instruction.
1401
- (decl rv_fmvxd (FReg) XReg)
1402
- (rule (rv_fmvxd r) (fpu_rr_int (FpuOPRR.FmvXFmt) $F64 (FRM.RNE) r))
1403
-
1404
- ;; Helper for emitting the `fmv.h.x` instruction.
1405
- (decl rv_fmvhx (XReg) FReg)
1406
- (rule (rv_fmvhx r) (fpu_rr (FpuOPRR.FmvFmtX) $F16 (FRM.RNE) r))
1407
-
1408
- ;; Helper for emitting the `fmv.w.x` instruction.
1409
- (decl rv_fmvwx (XReg) FReg)
1410
- (rule (rv_fmvwx r) (fpu_rr (FpuOPRR.FmvFmtX) $F32 (FRM.RNE) r))
1411
-
1412
- ;; Helper for emitting the `fmv.d.x` instruction.
1413
- (decl rv_fmvdx (XReg) FReg)
1414
- (rule (rv_fmvdx r) (fpu_rr (FpuOPRR.FmvFmtX) $F64 (FRM.RNE) r))
1415
-
1416
- ;; Helper for emitting the `fcvt.d.s` ("Float Convert Double to Single") instruction.
1417
- (decl rv_fcvtds (FReg) FReg)
1418
- (rule (rv_fcvtds rs1) (fpu_rr (FpuOPRR.FcvtDS) $F64 (FRM.RNE) rs1))
1419
-
1420
- ;; Helper for emitting the `fcvt.s.d` ("Float Convert Single to Double") instruction.
1421
- (decl rv_fcvtsd (FRM FReg) FReg)
1422
- (rule (rv_fcvtsd frm rs1) (fpu_rr (FpuOPRR.FcvtSD) $F32 frm rs1))
1423
-
1424
- ;; Helper for emitting the `fcvt.s.w` instruction.
1425
- (decl rv_fcvtsw (FRM XReg) FReg)
1426
- (rule (rv_fcvtsw frm rs1) (fpu_rr (FpuOPRR.FcvtFmtW) $F32 frm rs1))
1427
-
1428
- ;; Helper for emitting the `fcvt.s.wu` instruction.
1429
- (decl rv_fcvtswu (FRM XReg) FReg)
1430
- (rule (rv_fcvtswu frm rs1) (fpu_rr (FpuOPRR.FcvtFmtWu) $F32 frm rs1))
1431
-
1432
- ;; Helper for emitting the `fcvt.d.w` instruction.
1433
- (decl rv_fcvtdw (XReg) FReg)
1434
- (rule (rv_fcvtdw rs1) (fpu_rr (FpuOPRR.FcvtFmtW) $F64 (FRM.RNE) rs1))
1435
-
1436
- ;; Helper for emitting the `fcvt.d.wu` instruction.
1437
- (decl rv_fcvtdwu (XReg) FReg)
1438
- (rule (rv_fcvtdwu rs1) (fpu_rr (FpuOPRR.FcvtFmtWu) $F64 (FRM.RNE) rs1))
1439
-
1440
- ;; Helper for emitting the `fcvt.s.l` instruction.
1441
- (decl rv_fcvtsl (FRM XReg) FReg)
1442
- (rule (rv_fcvtsl frm rs1) (fpu_rr (FpuOPRR.FcvtFmtL) $F32 frm rs1))
1443
-
1444
- ;; Helper for emitting the `fcvt.s.lu` instruction.
1445
- (decl rv_fcvtslu (FRM XReg) FReg)
1446
- (rule (rv_fcvtslu frm rs1) (fpu_rr (FpuOPRR.FcvtFmtLu) $F32 frm rs1))
1447
-
1448
- ;; Helper for emitting the `fcvt.d.l` instruction.
1449
- (decl rv_fcvtdl (FRM XReg) FReg)
1450
- (rule (rv_fcvtdl frm rs1) (fpu_rr (FpuOPRR.FcvtFmtL) $F64 frm rs1))
1451
-
1452
- ;; Helper for emitting the `fcvt.d.lu` instruction.
1453
- (decl rv_fcvtdlu (FRM XReg) FReg)
1454
- (rule (rv_fcvtdlu frm rs1) (fpu_rr (FpuOPRR.FcvtFmtLu) $F64 frm rs1))
1455
-
1456
- ;; Helper for emitting the `fcvt.w.s` instruction.
1457
- (decl rv_fcvtws (FRM FReg) XReg)
1458
- (rule (rv_fcvtws frm rs1) (fpu_rr_int (FpuOPRR.FcvtWFmt) $F32 frm rs1))
1459
-
1460
- ;; Helper for emitting the `fcvt.l.s` instruction.
1461
- (decl rv_fcvtls (FRM FReg) XReg)
1462
- (rule (rv_fcvtls frm rs1) (fpu_rr_int (FpuOPRR.FcvtLFmt) $F32 frm rs1))
1463
-
1464
- ;; Helper for emitting the `fcvt.wu.s` instruction.
1465
- (decl rv_fcvtwus (FRM FReg) XReg)
1466
- (rule (rv_fcvtwus frm rs1) (fpu_rr_int (FpuOPRR.FcvtWuFmt) $F32 frm rs1))
1467
-
1468
- ;; Helper for emitting the `fcvt.lu.s` instruction.
1469
- (decl rv_fcvtlus (FRM FReg) XReg)
1470
- (rule (rv_fcvtlus frm rs1) (fpu_rr_int (FpuOPRR.FcvtLuFmt) $F32 frm rs1))
1471
-
1472
- ;; Helper for emitting the `fcvt.w.d` instruction.
1473
- (decl rv_fcvtwd (FRM FReg) XReg)
1474
- (rule (rv_fcvtwd frm rs1) (fpu_rr_int (FpuOPRR.FcvtWFmt) $F64 frm rs1))
1475
-
1476
- ;; Helper for emitting the `fcvt.l.d` instruction.
1477
- (decl rv_fcvtld (FRM FReg) XReg)
1478
- (rule (rv_fcvtld frm rs1) (fpu_rr_int (FpuOPRR.FcvtLFmt) $F64 frm rs1))
1479
-
1480
- ;; Helper for emitting the `fcvt.wu.d` instruction.
1481
- (decl rv_fcvtwud (FRM FReg) XReg)
1482
- (rule (rv_fcvtwud frm rs1) (fpu_rr_int (FpuOPRR.FcvtWuFmt) $F64 frm rs1))
1483
-
1484
- ;; Helper for emitting the `fcvt.lu.d` instruction.
1485
- (decl rv_fcvtlud (FRM FReg) XReg)
1486
- (rule (rv_fcvtlud frm rs1) (fpu_rr_int (FpuOPRR.FcvtLuFmt) $F64 frm rs1))
1487
-
1488
- ;; Helper for emitting the `fcvt.w.*` instructions.
1489
- (decl rv_fcvtw (Type FRM FReg) XReg)
1490
- (rule (rv_fcvtw $F32 frm rs1) (rv_fcvtws frm rs1))
1491
- (rule (rv_fcvtw $F64 frm rs1) (rv_fcvtwd frm rs1))
1492
-
1493
- ;; Helper for emitting the `fcvt.l.*` instructions.
1494
- (decl rv_fcvtl (Type FRM FReg) XReg)
1495
- (rule (rv_fcvtl $F32 frm rs1) (rv_fcvtls frm rs1))
1496
- (rule (rv_fcvtl $F64 frm rs1) (rv_fcvtld frm rs1))
1497
-
1498
- ;; Helper for emitting the `fcvt.wu.*` instructions.
1499
- (decl rv_fcvtwu (Type FRM FReg) XReg)
1500
- (rule (rv_fcvtwu $F32 frm rs1) (rv_fcvtwus frm rs1))
1501
- (rule (rv_fcvtwu $F64 frm rs1) (rv_fcvtwud frm rs1))
1502
-
1503
- ;; Helper for emitting the `fcvt.lu.*` instructions.
1504
- (decl rv_fcvtlu (Type FRM FReg) XReg)
1505
- (rule (rv_fcvtlu $F32 frm rs1) (rv_fcvtlus frm rs1))
1506
- (rule (rv_fcvtlu $F64 frm rs1) (rv_fcvtlud frm rs1))
1507
-
1508
- ;; Helper for emitting the `fsgnj` ("Floating Point Sign Injection") instruction.
1509
- ;; The output of this instruction is `rs1` with the sign bit from `rs2`
1510
- ;; This implements the `copysign` operation
1511
- (decl rv_fsgnj (Type FReg FReg) FReg)
1512
- (rule (rv_fsgnj ty rs1 rs2) (fpu_rrr (FpuOPRRR.Fsgnj) ty (FRM.RNE) rs1 rs2))
1513
-
1514
- ;; Helper for emitting the `fsgnjn` ("Floating Point Sign Injection Negated") instruction.
1515
- ;; The output of this instruction is `rs1` with the negated sign bit from `rs2`
1516
- ;; When `rs1 == rs2` this implements the `neg` operation
1517
- (decl rv_fsgnjn (Type FReg FReg) FReg)
1518
- (rule (rv_fsgnjn ty rs1 rs2) (fpu_rrr (FpuOPRRR.Fsgnjn) ty (FRM.RTZ) rs1 rs2))
1519
-
1520
- ;; Helper for emitting the `fneg` ("Floating Point Negate") instruction.
1521
- ;; This instruction is a mnemonic for `fsgnjn rd, rs1, rs1`
1522
- (decl rv_fneg (Type FReg) FReg)
1523
- (rule (rv_fneg ty rs1) (rv_fsgnjn ty rs1 rs1))
1524
-
1525
- ;; Helper for emitting the `fsgnjx` ("Floating Point Sign Injection Exclusive") instruction.
1526
- ;; The output of this instruction is `rs1` with the XOR of the sign bits from `rs1` and `rs2`.
1527
- ;; When `rs1 == rs2` this implements `fabs`
1528
- (decl rv_fsgnjx (Type FReg FReg) FReg)
1529
- (rule (rv_fsgnjx ty rs1 rs2) (fpu_rrr (FpuOPRRR.Fsgnjx) ty (FRM.RDN) rs1 rs2))
1530
-
1531
- ;; Helper for emitting the `fabs` ("Floating Point Absolute") instruction.
1532
- ;; This instruction is a mnemonic for `fsgnjx rd, rs1, rs1`
1533
- (decl rv_fabs (Type FReg) FReg)
1534
- (rule (rv_fabs ty rs1) (rv_fsgnjx ty rs1 rs1))
1535
-
1536
- ;; Helper for emitting the `feq` ("Float Equal") instruction.
1537
- (decl rv_feq (Type FReg FReg) XReg)
1538
- (rule (rv_feq ty rs1 rs2) (fpu_rrr_int (FpuOPRRR.Feq) ty (FRM.RDN) rs1 rs2))
1539
-
1540
- ;; Helper for emitting the `flt` ("Float Less Than") instruction.
1541
- (decl rv_flt (Type FReg FReg) XReg)
1542
- (rule (rv_flt ty rs1 rs2) (fpu_rrr_int (FpuOPRRR.Flt) ty (FRM.RTZ) rs1 rs2))
1543
-
1544
- ;; Helper for emitting the `fle` ("Float Less Than or Equal") instruction.
1545
- (decl rv_fle (Type FReg FReg) XReg)
1546
- (rule (rv_fle ty rs1 rs2) (fpu_rrr_int (FpuOPRRR.Fle) ty (FRM.RNE) rs1 rs2))
1547
-
1548
- ;; Helper for emitting the `fgt` ("Float Greater Than") instruction.
1549
- ;; Note: The arguments are reversed
1550
- (decl rv_fgt (Type FReg FReg) XReg)
1551
- (rule (rv_fgt ty rs1 rs2) (rv_flt ty rs2 rs1))
1552
-
1553
- ;; Helper for emitting the `fge` ("Float Greater Than or Equal") instruction.
1554
- ;; Note: The arguments are reversed
1555
- (decl rv_fge (Type FReg FReg) XReg)
1556
- (rule (rv_fge ty rs1 rs2) (rv_fle ty rs2 rs1))
1557
-
1558
- ;; Helper for emitting the `fmin` instruction.
1559
- (decl rv_fmin (Type FReg FReg) FReg)
1560
- (rule (rv_fmin ty rs1 rs2) (fpu_rrr (FpuOPRRR.Fmin) ty (FRM.RNE) rs1 rs2))
1561
-
1562
- ;; Helper for emitting the `fmax` instruction.
1563
- (decl rv_fmax (Type FReg FReg) FReg)
1564
- (rule (rv_fmax ty rs1 rs2) (fpu_rrr (FpuOPRRR.Fmax) ty (FRM.RTZ) rs1 rs2))
1565
-
1566
- ;; `Zfa` Extension Instructions
1567
-
1568
- ;; Helper for emitting the `fminm` instruction.
1569
- (decl rv_fminm (Type FReg FReg) FReg)
1570
- (rule (rv_fminm ty rs1 rs2) (fpu_rrr (FpuOPRRR.Fminm) ty (FRM.RDN) rs1 rs2))
1571
-
1572
- ;; Helper for emitting the `fmaxm` instruction.
1573
- (decl rv_fmaxm (Type FReg FReg) FReg)
1574
- (rule (rv_fmaxm ty rs1 rs2) (fpu_rrr (FpuOPRRR.Fmaxm) ty (FRM.RUP) rs1 rs2))
1575
-
1576
- ;; Helper for emitting the `fround` instruction.
1577
- (decl rv_fround (Type FRM FReg) FReg)
1578
- (rule (rv_fround ty frm rs) (fpu_rr (FpuOPRR.Fround) ty frm rs))
1579
-
1580
- ;; Helper for emitting the `fli` instruction.
1581
- (decl rv_fli (Type FliConstant) FReg)
1582
- (rule (rv_fli ty imm)
1583
- (let ((dst WritableFReg (temp_writable_freg))
1584
- (_ Unit (emit (MInst.Fli ty
1585
- imm
1586
- dst))))
1587
- dst))
1588
-
1589
- ;; `Zba` Extension Instructions
1590
-
1591
- ;; Helper for emitting the `adduw` ("Add Unsigned Word") instruction.
1592
- ;; rd ← uext32(rs1) + uext32(rs2)
1593
- (decl rv_adduw (XReg XReg) XReg)
1594
- (rule (rv_adduw rs1 rs2)
1595
- (alu_rrr (AluOPRRR.Adduw) rs1 rs2))
1596
-
1597
- ;; Helper for emitting the `zext.w` ("Zero Extend Word") instruction.
1598
- ;; This instruction is a mnemonic for `adduw rd, rs1, zero`.
1599
- ;; rd ← uext32(rs1)
1600
- (decl rv_zextw (XReg) XReg)
1601
- (rule (rv_zextw rs1)
1602
- (rv_adduw rs1 (zero_reg)))
1603
-
1604
- ;; Helper for emitting the `slli.uw` ("Shift Left Logical Immediate Unsigned Word") instruction.
1605
- ;; rd ← uext32(rs1) << imm
1606
- (decl rv_slliuw (XReg Imm12) XReg)
1607
- (rule (rv_slliuw rs1 imm)
1608
- (alu_rr_imm12 (AluOPRRI.SlliUw) rs1 imm))
1609
-
1610
-
1611
- ;; `Zbb` Extension Instructions
1612
-
1613
- ;; Helper for emitting the `andn` ("And Negated") instruction.
1614
- ;; rd ← rs1 ∧ ~(rs2)
1615
- (decl rv_andn (XReg XReg) XReg)
1616
- (rule (rv_andn rs1 rs2)
1617
- (if-let true (has_zbb))
1618
- (alu_rrr (AluOPRRR.Andn) rs1 rs2))
1619
- (rule (rv_andn rs1 rs2)
1620
- (if-let false (has_zbb))
1621
- (rv_and rs1 (rv_not rs2)))
1622
-
1623
- ;; Helper for emitting the `orn` ("Or Negated") instruction.
1624
- ;; rd ← rs1 ∨ ~(rs2)
1625
- (decl rv_orn (XReg XReg) XReg)
1626
- (rule (rv_orn rs1 rs2)
1627
- (alu_rrr (AluOPRRR.Orn) rs1 rs2))
1628
-
1629
- ;; Helper for emitting the `xnor` ("Exclusive NOR") instruction.
1630
- ;; rd ← ~(rs1 ^ rs2)
1631
- (decl rv_xnor (XReg XReg) XReg)
1632
- (rule (rv_xnor rs1 rs2)
1633
- (alu_rrr (AluOPRRR.Xnor) rs1 rs2))
1634
-
1635
- ;; Helper for emitting the `clz` ("Count Leading Zero Bits") instruction.
1636
- (decl rv_clz (XReg) XReg)
1637
- (rule (rv_clz rs1)
1638
- (alu_rr_funct12 (AluOPRRI.Clz) rs1))
1639
-
1640
- ;; Helper for emitting the `clzw` ("Count Leading Zero Bits in Word") instruction.
1641
- (decl rv_clzw (XReg) XReg)
1642
- (rule (rv_clzw rs1)
1643
- (alu_rr_funct12 (AluOPRRI.Clzw) rs1))
1644
-
1645
- ;; Helper for emitting the `ctz` ("Count Trailing Zero Bits") instruction.
1646
- (decl rv_ctz (XReg) XReg)
1647
- (rule (rv_ctz rs1)
1648
- (alu_rr_funct12 (AluOPRRI.Ctz) rs1))
1649
-
1650
- ;; Helper for emitting the `ctzw` ("Count Trailing Zero Bits in Word") instruction.
1651
- (decl rv_ctzw (XReg) XReg)
1652
- (rule (rv_ctzw rs1)
1653
- (alu_rr_funct12 (AluOPRRI.Ctzw) rs1))
1654
-
1655
- ;; Helper for emitting the `cpop` ("Count Population") instruction.
1656
- (decl rv_cpop (XReg) XReg)
1657
- (rule (rv_cpop rs1)
1658
- (alu_rr_funct12 (AluOPRRI.Cpop) rs1))
1659
-
1660
- ;; Helper for emitting the `cpopw` ("Count Population") instruction.
1661
- (decl rv_cpopw (XReg) XReg)
1662
- (rule (rv_cpopw rs1)
1663
- (alu_rr_funct12 (AluOPRRI.Cpopw) rs1))
1664
-
1665
- ;; Helper for emitting the `max` instruction.
1666
- (decl rv_max (XReg XReg) XReg)
1667
- (rule (rv_max rs1 rs2)
1668
- (alu_rrr (AluOPRRR.Max) rs1 rs2))
1669
-
1670
- ;; Helper for emitting the `maxu` instruction.
1671
- (decl rv_maxu (XReg XReg) XReg)
1672
- (rule (rv_maxu rs1 rs2)
1673
- (alu_rrr (AluOPRRR.Maxu) rs1 rs2))
1674
-
1675
- ;; Helper for emitting the `min` instruction.
1676
- (decl rv_min (XReg XReg) XReg)
1677
- (rule (rv_min rs1 rs2)
1678
- (alu_rrr (AluOPRRR.Min) rs1 rs2))
1679
-
1680
- ;; Helper for emitting the `minu` instruction.
1681
- (decl rv_minu (XReg XReg) XReg)
1682
- (rule (rv_minu rs1 rs2)
1683
- (alu_rrr (AluOPRRR.Minu) rs1 rs2))
1684
-
1685
- ;; Helper for emitting the `sext.b` instruction.
1686
- (decl rv_sextb (XReg) XReg)
1687
- (rule (rv_sextb rs1)
1688
- (alu_rr_imm12 (AluOPRRI.Sextb) rs1 (imm12_const 0)))
1689
-
1690
- ;; Helper for emitting the `sext.h` instruction.
1691
- (decl rv_sexth (XReg) XReg)
1692
- (rule (rv_sexth rs1)
1693
- (alu_rr_imm12 (AluOPRRI.Sexth) rs1 (imm12_const 0)))
1694
-
1695
- ;; Helper for emitting the `zext.h` instruction.
1696
- (decl rv_zexth (XReg) XReg)
1697
- (rule (rv_zexth rs1)
1698
- (alu_rr_imm12 (AluOPRRI.Zexth) rs1 (imm12_const 0)))
1699
-
1700
- ;; Helper for emitting the `rol` ("Rotate Left") instruction.
1701
- (decl rv_rol (XReg XReg) XReg)
1702
- (rule (rv_rol rs1 rs2)
1703
- (alu_rrr (AluOPRRR.Rol) rs1 rs2))
1704
-
1705
- ;; Helper for emitting the `rolw` ("Rotate Left Word") instruction.
1706
- (decl rv_rolw (XReg XReg) XReg)
1707
- (rule (rv_rolw rs1 rs2)
1708
- (alu_rrr (AluOPRRR.Rolw) rs1 rs2))
1709
-
1710
- ;; Helper for emitting the `ror` ("Rotate Right") instruction.
1711
- (decl rv_ror (XReg XReg) XReg)
1712
- (rule (rv_ror rs1 rs2)
1713
- (alu_rrr (AluOPRRR.Ror) rs1 rs2))
1714
-
1715
- ;; Helper for emitting the `rorw` ("Rotate Right Word") instruction.
1716
- (decl rv_rorw (XReg XReg) XReg)
1717
- (rule (rv_rorw rs1 rs2)
1718
- (alu_rrr (AluOPRRR.Rorw) rs1 rs2))
1719
-
1720
- ;; Helper for emitting the `rori` ("Rotate Right") instruction.
1721
- (decl rv_rori (XReg Imm12) XReg)
1722
- (rule (rv_rori rs1 rs2)
1723
- (alu_rr_imm12 (AluOPRRI.Rori) rs1 rs2))
1724
-
1725
- ;; Helper for emitting the `roriw` ("Rotate Right Word") instruction.
1726
- (decl rv_roriw (XReg Imm12) XReg)
1727
- (rule (rv_roriw rs1 rs2)
1728
- (alu_rr_imm12 (AluOPRRI.Roriw) rs1 rs2))
1729
-
1730
- ;; Helper for emitting the `rev8` ("Byte Reverse") instruction.
1731
- (decl rv_rev8 (XReg) XReg)
1732
- (rule (rv_rev8 rs1)
1733
- (alu_rr_funct12 (AluOPRRI.Rev8) rs1))
1734
-
1735
- ;; Helper for emitting the `brev8` ("Bit Reverse Inside Bytes") instruction.
1736
- ;; TODO: This instruction is mentioned in some older versions of the
1737
- ;; spec, but has since disappeared, we should follow up on this.
1738
- ;; It probably was renamed to `rev.b` which seems to be the closest match.
1739
- (decl rv_brev8 (XReg) XReg)
1740
- (rule (rv_brev8 rs1)
1741
- (alu_rr_funct12 (AluOPRRI.Brev8) rs1))
1742
-
1743
- ;; `Zbs` Extension Instructions
1744
-
1745
- (decl rv_bclr (XReg XReg) XReg)
1746
- (rule (rv_bclr rs1 rs2)
1747
- (alu_rrr (AluOPRRR.Bclr) rs1 rs2))
1748
-
1749
- (decl rv_bclri (XReg Imm12) XReg)
1750
- (rule (rv_bclri rs1 imm)
1751
- (alu_rr_imm12 (AluOPRRI.Bclri) rs1 imm))
1752
-
1753
- (decl rv_bext (XReg XReg) XReg)
1754
- (rule (rv_bext rs1 rs2)
1755
- (alu_rrr (AluOPRRR.Bext) rs1 rs2))
1756
-
1757
- (decl rv_bexti (XReg Imm12) XReg)
1758
- (rule (rv_bexti rs1 imm)
1759
- (alu_rr_imm12 (AluOPRRI.Bexti) rs1 imm))
1760
-
1761
- (decl rv_binv (XReg XReg) XReg)
1762
- (rule (rv_binv rs1 rs2)
1763
- (alu_rrr (AluOPRRR.Binv) rs1 rs2))
1764
-
1765
- (decl rv_binvi (XReg Imm12) XReg)
1766
- (rule (rv_binvi rs1 imm)
1767
- (alu_rr_imm12 (AluOPRRI.Binvi) rs1 imm))
1768
-
1769
- (decl rv_bset (XReg XReg) XReg)
1770
- (rule (rv_bset rs1 rs2)
1771
- (alu_rrr (AluOPRRR.Bset) rs1 rs2))
1772
-
1773
- ;; Helper for emitting the `bseti` ("Single-Bit Set Immediate") instruction.
1774
- (decl rv_bseti (XReg Imm12) XReg)
1775
- (rule (rv_bseti rs1 imm)
1776
- (alu_rr_imm12 (AluOPRRI.Bseti) rs1 imm))
1777
-
1778
- ;; `Zbkb` Extension Instructions
1779
-
1780
- ;; Helper for emitting the `pack` ("Pack low halves of registers") instruction.
1781
- (decl rv_pack (XReg XReg) XReg)
1782
- (rule (rv_pack rs1 rs2)
1783
- (alu_rrr (AluOPRRR.Pack) rs1 rs2))
1784
-
1785
- ;; Helper for emitting the `packw` ("Pack low 16-bits of registers") instruction.
1786
- (decl rv_packw (XReg XReg) XReg)
1787
- (rule (rv_packw rs1 rs2)
1788
- (alu_rrr (AluOPRRR.Packw) rs1 rs2))
1789
-
1790
- ;; `ZiCond` Extension Instructions
1791
-
1792
- ;; Helper for emitting the `czero.eqz` ("Conditional zero, if condition is equal to zero") instruction.
1793
- ;; RS1 is the data source
1794
- ;; RS2 is the condition
1795
- ;;
1796
- ;; rd = (rs2 == 0) ? 0 : rs1
1797
- (decl rv_czero_eqz (XReg XReg) XReg)
1798
- (rule (rv_czero_eqz rs1 rs2)
1799
- (alu_rrr (AluOPRRR.CzeroEqz) rs1 rs2))
1800
-
1801
- ;; Helper for emitting the `czero.nez` ("Conditional zero, if condition is nonzero") instruction.
1802
- ;; RS1 is the data source
1803
- ;; RS2 is the condition
1804
- ;;
1805
- ;; rd = (rs2 != 0) ? 0 : rs1
1806
- (decl rv_czero_nez (XReg XReg) XReg)
1807
- (rule (rv_czero_nez rs1 rs2)
1808
- (alu_rrr (AluOPRRR.CzeroNez) rs1 rs2))
1809
-
1810
-
1811
- ;; `Zicsr` Extension Instructions
1812
-
1813
- ;; Helper for emitting the `csrrwi` instruction.
1814
- (decl rv_csrrwi (CSR UImm5) XReg)
1815
- (rule (rv_csrrwi csr imm)
1816
- (csr_imm (CsrImmOP.CsrRWI) csr imm))
1817
-
1818
- ;; This is a special case of `csrrwi` when the CSR is the `frm` CSR.
1819
- (decl rv_fsrmi (FRM) XReg)
1820
- (rule (rv_fsrmi frm) (rv_csrrwi (CSR.Frm) frm))
1821
-
1822
-
1823
- ;; Helper for emitting the `csrw` instruction. This is a special case of
1824
- ;; `csrrw` where the destination register is always `x0`.
1825
- (decl rv_csrw (CSR XReg) Unit)
1826
- (rule (rv_csrw csr rs)
1827
- (csr_reg_dst_zero (CsrRegOP.CsrRW) csr rs))
1828
-
1829
- ;; This is a special case of `csrw` when the CSR is the `frm` CSR.
1830
- (decl rv_fsrm (XReg) Unit)
1831
- (rule (rv_fsrm rs) (rv_csrw (CSR.Frm) rs))
1832
-
1833
-
1834
-
1835
-
1836
-
1837
-
1838
- ;; Helper for generating a FliConstant from a u64 constant
1839
- (decl pure partial fli_constant_from_u64 (Type u64) FliConstant)
1840
- (extern constructor fli_constant_from_u64 fli_constant_from_u64)
1841
-
1842
- ;; Helper for generating a FliConstant from a u64 negated constant
1843
- (decl pure partial fli_constant_from_negated_u64 (Type u64) FliConstant)
1844
- (extern constructor fli_constant_from_negated_u64 fli_constant_from_negated_u64)
1845
-
1846
- ;; Helper for generating a i64 from a pair of Imm20 and Imm12 constants
1847
- (decl i64_generate_imm (Imm20 Imm12) i64)
1848
- (extern extractor i64_generate_imm i64_generate_imm)
1849
-
1850
- ;; Helper for generating a i64 from a shift of a Imm20 constant with LUI
1851
- (decl i64_shift_for_lui (u64 Imm12) i64)
1852
- (extern extractor i64_shift_for_lui i64_shift_for_lui)
1853
-
1854
- ;; Helper for generating a i64 from a shift of a Imm20 constant
1855
- (decl i64_shift (i64 Imm12) i64)
1856
- (extern extractor i64_shift i64_shift)
1857
-
1858
- (decl pure has_fli_for_type (Type) bool)
1859
- (rule 2 (has_fli_for_type $F16) (if-let true (has_zfh)) (has_zfa))
1860
- (rule 1 (has_fli_for_type $F16) (if-let true (has_zvfh)) (has_zfa))
1861
- (rule (has_fli_for_type $F16) false)
1862
- (rule (has_fli_for_type $F32) (has_zfa))
1863
- (rule (has_fli_for_type $F64) (has_zfa))
1864
-
1865
- ;; Immediate Loading rules
1866
- ;; TODO: Loading the zero reg directly causes a bunch of regalloc errors, we should look into it.
1867
- ;; TODO: Load floats using `fld` instead of `ld`
1868
- (decl imm (Type u64) Reg)
1869
-
1870
- ;; Special-case 0.0 for floats to use the `(zero_reg)` directly.
1871
- ;; See #7162 for why this doesn't fall out of the rules below.
1872
- (rule 9 (imm (ty_supported_float_min ty) 0) (gen_bitcast (zero_reg) (float_int_of_same_size ty) ty))
1873
-
1874
- ;; If Zfa is enabled, we can load certain constants with the `fli` instruction.
1875
- (rule 8 (imm (ty_supported_float_size ty) imm)
1876
- (if-let true (has_fli_for_type ty))
1877
- (if-let const (fli_constant_from_u64 ty imm))
1878
- (rv_fli ty const))
1879
-
1880
- ;; It is beneficial to load the negated constant with `fli` and then negate it
1881
- ;; in a register.
1882
- ;;
1883
- ;; For f64's this saves one instruction, and for f32's it avoids
1884
- ;; having to allocate an integer register, reducing integer register pressure.
1885
- (rule 7 (imm (ty_supported_float_full ty) imm)
1886
- (if-let true (has_fli_for_type ty))
1887
- (if-let const (fli_constant_from_negated_u64 ty imm))
1888
- (rv_fneg ty (rv_fli ty const)))
1889
-
1890
- ;; Otherwise floats get loaded as integers and then moved into an F register.
1891
- (rule 6 (imm (ty_supported_float_min ty) c) (gen_bitcast (imm (float_int_of_same_size ty) c) (float_int_of_same_size ty) ty))
1892
- ;; NaN-box the constant when 16-bit `fmv` is unavailable.
1893
- (rule 5 (imm (ty_supported_float_size $F16) c) (gen_bitcast (imm $I32 (u64_or c 0xffff0000)) $I32 $F32))
1894
-
1895
- ;; Try to match just an imm12
1896
- (rule 4 (imm (ty_int ty) c)
1897
- (if-let (i64_generate_imm (imm20_is_zero) imm12) (i64_sextend_u64 ty c))
1898
- (rv_addi (zero_reg) imm12))
1899
-
1900
- ;; We can also try to load using a single LUI.
1901
- ;; LUI takes a 20 bit immediate, places it on bits 13 to 32 of the register.
1902
- ;; In RV64 this value is then sign extended to 64bits.
1903
- (rule 3 (imm (ty_int ty) c)
1904
- (if-let (i64_generate_imm imm20 (imm12_is_zero)) (i64_sextend_u64 ty c))
1905
- (rv_lui imm20))
1906
-
1907
- ;; We can combo addi + lui to represent all 32-bit immediates
1908
- ;; And some 64-bit immediates as well.
1909
- (rule 2 (imm (ty_int ty) c)
1910
- (if-let (i64_generate_imm imm20 imm12) (i64_sextend_u64 ty c))
1911
- (rv_addi (rv_lui imm20) imm12))
1912
-
1913
- ;; If the non-zero bits of the immediate fit in 20 bits, we can use LUI + shift
1914
- (rule 1 (imm (ty_int ty) c)
1915
- (if-let (i64_shift_for_lui (imm20_from_u64 base) shift) (i64_sextend_u64 ty c))
1916
- (rv_slli (rv_lui base) shift))
1917
-
1918
- ;; Combine one of the above rules with a shift-left if possible, This chops off
1919
- ;; all trailing zeros from the input constant and then attempts if the resulting
1920
- ;; constant can itself use one of the above rules via the `i64_generate_imm`
1921
- ;; matcher. This will then recurse on the above rules to materialize a smaller
1922
- ;; constant which is then shifted left to create the desired constant.
1923
- (rule 0 (imm (ty_int ty) c)
1924
- (if-let (i64_shift c_shifted shift) (i64_sextend_u64 ty c)) ;; constant to make
1925
- (if-let (i64_generate_imm _ _) c_shifted) ;; can the smaller constant be made?
1926
- (rv_slli (imm ty (i64_cast_unsigned c_shifted)) shift))
1927
-
1928
- ;; Otherwise we fall back to loading the immediate from the constant pool.
1929
- (rule -1 (imm (ty_int ty) c)
1930
- (gen_load
1931
- (gen_const_amode (emit_u64_le_const c))
1932
- (LoadOP.Ld)
1933
- (mem_flags_trusted)))
1934
-
1935
- ;; Imm12 Rules
1936
-
1937
- (decl pure imm12_zero () Imm12)
1938
- (rule (imm12_zero) (imm12_const 0))
1939
-
1940
- (decl pure imm12_const (i32) Imm12)
1941
- (extern constructor imm12_const imm12_const)
1942
-
1943
- (decl load_imm12 (i32) Reg)
1944
- (rule
1945
- (load_imm12 x)
1946
- (rv_addi (zero_reg) (imm12_const x)))
1947
-
1948
- ;; for load immediate
1949
- (decl imm_from_bits (u64) Imm12)
1950
- (extern constructor imm_from_bits imm_from_bits)
1951
-
1952
- (decl imm_from_neg_bits (i64) Imm12)
1953
- (extern constructor imm_from_neg_bits imm_from_neg_bits)
1954
-
1955
- (decl imm12_const_add (i32 i32) Imm12)
1956
- (extern constructor imm12_const_add imm12_const_add)
1957
-
1958
- ;; Performs a fallible add of the `Imm12` value and the 32-bit value provided.
1959
- (decl pure partial imm12_add (Imm12 i32) Imm12)
1960
- (extern constructor imm12_add imm12_add)
1961
-
1962
- (decl imm12_and (Imm12 u64) Imm12)
1963
- (extern constructor imm12_and imm12_and)
1964
-
1965
- ;; Imm12 Extractors
1966
-
1967
- ;; Helper to go directly from a `Value`, when it's an `iconst`, to an `Imm12`.
1968
- (decl imm12_from_value (Imm12) Value)
1969
- (extractor (imm12_from_value n) (i64_from_iconst (imm12_from_i64 n)))
1970
-
1971
- ;; Conceptually the same as `imm12_from_value`, but tries negating the constant
1972
- ;; value (first sign-extending to handle narrow widths).
1973
- (decl pure partial imm12_from_negated_value (Value) Imm12)
1974
- (rule
1975
- (imm12_from_negated_value (has_type ty (iconst n)))
1976
- (if-let (imm12_from_u64 imm) (i64_cast_unsigned (i64_wrapping_neg (i64_sextend_imm64 ty n))))
1977
- imm)
1978
-
1979
- (decl imm12_from_u64 (Imm12) u64)
1980
- (extern extractor imm12_from_u64 imm12_from_u64)
1981
-
1982
- (decl imm12_from_i64 (Imm12) i64)
1983
- (extern extractor imm12_from_i64 imm12_from_i64)
1984
-
1985
- (decl pure partial u64_to_imm12 (u64) Imm12)
1986
- (rule (u64_to_imm12 (imm12_from_u64 n)) n)
1987
-
1988
- (decl pure imm12_is_zero () Imm12)
1989
- (extern extractor imm12_is_zero imm12_is_zero)
1990
-
1991
- ;; Imm20
1992
-
1993
- ;; Extractor that matches if a Imm20 is zero
1994
- (decl pure imm20_is_zero () Imm20)
1995
- (extern extractor imm20_is_zero imm20_is_zero)
1996
-
1997
- (decl imm20_from_u64 (Imm20) u64)
1998
- (extern extractor imm20_from_u64 imm20_from_u64)
1999
-
2000
- (decl imm20_from_i64 (Imm20) i64)
2001
- (extern extractor imm20_from_i64 imm20_from_i64)
2002
-
2003
-
2004
- ;; Imm5 Extractors
2005
-
2006
- (decl imm5_from_u64 (Imm5) u64)
2007
- (extern extractor imm5_from_u64 imm5_from_u64)
2008
-
2009
- (decl imm5_from_i64 (Imm5) i64)
2010
- (extern extractor imm5_from_i64 imm5_from_i64)
2011
-
2012
- ;; Construct a Imm5 from an i8
2013
- (decl pure partial i8_to_imm5 (i8) Imm5)
2014
- (extern constructor i8_to_imm5 i8_to_imm5)
2015
-
2016
- ;; Helper to go directly from a `Value` to an `Imm5`.
2017
- (decl imm5_from_value (Imm5) Value)
2018
- (extractor (imm5_from_value n) (i64_from_iconst (imm5_from_i64 n)))
2019
-
2020
- ;; Like imm5_from_value, but first negates the `Value`.
2021
- (decl pure partial imm5_from_negated_value (Value) Imm5)
2022
- (rule (imm5_from_negated_value (has_type ty (iconst n)))
2023
- (if-let (imm5_from_i64 imm) (i64_wrapping_neg (i64_sextend_imm64 ty n)))
2024
- imm)
2025
-
2026
- ;; Constructor that matches a `Value` equivalent to a replicated Imm5 on all lanes.
2027
- (decl pure partial replicated_imm5 (Value) Imm5)
2028
- (rule (replicated_imm5 (splat (imm5_from_value n))) n)
2029
- (rule (replicated_imm5 (vconst (u128_from_constant n128)))
2030
- (if-let (u128_replicated_u64 n64) n128)
2031
- (if-let (u64_replicated_u32 n32) n64)
2032
- (if-let (u32_replicated_u16 n16) n32)
2033
- (if-let (u16_replicated_u8 n8) n16)
2034
- (if-let n (i8_to_imm5 (u8_cast_signed n8)))
2035
- n)
2036
-
2037
- ;; Like replicated_imm5, but first negates the `Value`.
2038
- (decl pure partial negated_replicated_imm5 (Value) Imm5)
2039
- (rule (negated_replicated_imm5 (splat n))
2040
- (if-let imm5 (imm5_from_negated_value n))
2041
- imm5)
2042
- (rule (negated_replicated_imm5 (vconst (u128_from_constant n128)))
2043
- (if-let (u128_replicated_u64 n64) n128)
2044
- (if-let (u64_replicated_u32 n32) n64)
2045
- (if-let (u32_replicated_u16 n16) n32)
2046
- (if-let (u16_replicated_u8 n8) n16)
2047
- (if-let n (i8_to_imm5 (i8_wrapping_neg (u8_cast_signed n8))))
2048
- n)
2049
-
2050
- ;; UImm5 Helpers
2051
-
2052
- ;; Constructor that matches a `Value` equivalent to a replicated UImm5 on all lanes.
2053
- (decl pure partial replicated_uimm5 (Value) UImm5)
2054
- (rule (replicated_uimm5 (splat (uimm5_from_value n))) n)
2055
- (rule 1 (replicated_uimm5 (vconst (u128_from_constant n128)))
2056
- (if-let (u128_replicated_u64 n64) n128)
2057
- (if-let (u64_replicated_u32 n32) n64)
2058
- (if-let (u32_replicated_u16 n16) n32)
2059
- (if-let (u16_replicated_u8 n8) n16)
2060
- (if-let (uimm5_from_u8 n) n8)
2061
- n)
2062
-
2063
- ;; Helper to go directly from a `Value`, when it's an `iconst`, to an `UImm5`.
2064
- (decl uimm5_from_value (UImm5) Value)
2065
- (extractor (uimm5_from_value n)
2066
- (iconst (u64_from_imm64 (uimm5_from_u64 n))))
2067
-
2068
- ;; Extract a `UImm5` from an `u8`.
2069
- (decl pure partial uimm5_from_u8 (UImm5) u8)
2070
- (extern extractor uimm5_from_u8 uimm5_from_u8)
2071
-
2072
- ;; Extract a `UImm5` from an `u64`.
2073
- (decl pure partial uimm5_from_u64 (UImm5) u64)
2074
- (extern extractor uimm5_from_u64 uimm5_from_u64)
2075
-
2076
- ;; Convert a `u64` into an `UImm5`
2077
- (decl pure partial u64_to_uimm5 (u64) UImm5)
2078
- (rule (u64_to_uimm5 (uimm5_from_u64 n)) n)
2079
-
2080
- (decl uimm5_bitcast_to_imm5 (UImm5) Imm5)
2081
- (extern constructor uimm5_bitcast_to_imm5 uimm5_bitcast_to_imm5)
2082
-
2083
- ;; Float Helpers
2084
-
2085
- ;; Returns the bitpattern of the Canonical NaN for the given type.
2086
- (decl pure canonical_nan_u64 (Type) u64)
2087
- (rule (canonical_nan_u64 $F32) 0x7fc00000)
2088
- (rule (canonical_nan_u64 $F64) 0x7ff8000000000000)
2089
-
2090
- ;; Helper for emitting `MInst.FpuRR` instructions.
2091
- (decl fpu_rr (FpuOPRR Type FRM Reg) FReg)
2092
- (rule (fpu_rr op ty frm src)
2093
- (let ((dst WritableFReg (temp_writable_freg))
2094
- (_ Unit (emit (MInst.FpuRR op ty frm dst src))))
2095
- dst))
2096
-
2097
- ;; Similar to fpu_rr but with an integer destination register
2098
- (decl fpu_rr_int (FpuOPRR Type FRM Reg) XReg)
2099
- (rule (fpu_rr_int op ty frm src)
2100
- (let ((dst WritableXReg (temp_writable_xreg))
2101
- (_ Unit (emit (MInst.FpuRR op ty frm dst src))))
2102
- dst))
2103
-
2104
- ;; Helper for emitting `MInst.AluRRR` instructions.
2105
- (decl alu_rrr (AluOPRRR Reg Reg) Reg)
2106
- (rule (alu_rrr op src1 src2)
2107
- (let ((dst WritableXReg (temp_writable_xreg))
2108
- (_ Unit (emit (MInst.AluRRR op dst src1 src2))))
2109
- dst))
2110
-
2111
- ;; Helper for emitting `MInst.FpuRRR` instructions.
2112
- (decl fpu_rrr (FpuOPRRR Type FRM Reg Reg) FReg)
2113
- (rule (fpu_rrr op ty frm src1 src2)
2114
- (let ((dst WritableFReg (temp_writable_freg))
2115
- (_ Unit (emit (MInst.FpuRRR op ty frm dst src1 src2))))
2116
- dst))
2117
-
2118
- ;; Similar to fpu_rrr but with an integer destination register
2119
- (decl fpu_rrr_int (FpuOPRRR Type FRM Reg Reg) XReg)
2120
- (rule (fpu_rrr_int op ty frm src1 src2)
2121
- (let ((dst WritableXReg (temp_writable_xreg))
2122
- (_ Unit (emit (MInst.FpuRRR op ty frm dst src1 src2))))
2123
- dst))
2124
-
2125
- ;; Helper for emitting `MInst.FpuRRRR` instructions.
2126
- (decl fpu_rrrr (FpuOPRRRR Type FRM Reg Reg Reg) FReg)
2127
- (rule (fpu_rrrr op ty frm src1 src2 src3)
2128
- (let ((dst WritableFReg (temp_writable_freg))
2129
- (_ Unit (emit (MInst.FpuRRRR op ty frm dst src1 src2 src3))))
2130
- dst))
2131
-
2132
-
2133
- ;; Helper for emitting `MInst.AluRRImm12` instructions.
2134
- (decl alu_rr_imm12 (AluOPRRI Reg Imm12) Reg)
2135
- (rule (alu_rr_imm12 op src imm)
2136
- (let ((dst WritableXReg (temp_writable_xreg))
2137
- (_ Unit (emit (MInst.AluRRImm12 op dst src imm))))
2138
- dst))
2139
-
2140
- ;; some instruction use imm12 as funct12.
2141
- ;; so we don't need the imm12 parameter.
2142
- (decl alu_rr_funct12 (AluOPRRI Reg) Reg)
2143
- (rule (alu_rr_funct12 op src)
2144
- (let ((dst WritableXReg (temp_writable_xreg))
2145
- (_ Unit (emit (MInst.AluRRImm12 op dst src (imm12_zero)))))
2146
- dst))
2147
-
2148
- ;; Helper for emitting the `Lui` instruction.
2149
- ;; TODO: This should be something like `emit_u_type`. And should share the
2150
- ;; `MInst` with `auipc` since these instructions share the U-Type format.
2151
- (decl rv_lui (Imm20) XReg)
2152
- (rule (rv_lui imm)
2153
- (let ((dst WritableXReg (temp_writable_xreg))
2154
- (_ Unit (emit (MInst.Lui dst imm))))
2155
- dst))
2156
-
2157
- ;; Helper for emitting `MInst.CsrImm` instructions.
2158
- (decl csr_imm (CsrImmOP CSR UImm5) XReg)
2159
- (rule (csr_imm op csr imm)
2160
- (let ((dst WritableXReg (temp_writable_xreg))
2161
- (_ Unit (emit (MInst.CsrImm op dst imm csr))))
2162
- dst))
2163
-
2164
- ;; Helper for emitting a `MInst.CsrReg` instruction that writes the result to x0.
2165
- (decl csr_reg_dst_zero (CsrRegOP CSR XReg) Unit)
2166
- (rule (csr_reg_dst_zero op csr rs)
2167
- (emit (MInst.CsrReg op (writable_zero_reg) rs csr)))
2168
-
2169
-
2170
-
2171
- (decl select_addi (Type) AluOPRRI)
2172
- (rule 1 (select_addi (fits_in_32 ty)) (AluOPRRI.Addiw))
2173
- (rule (select_addi (fits_in_64 ty)) (AluOPRRI.Addi))
2174
-
2175
-
2176
- (decl gen_andi (XReg u64) XReg)
2177
- (rule 1 (gen_andi x (imm12_from_u64 y))
2178
- (rv_andi x y))
2179
-
2180
- (rule 0 (gen_andi x y)
2181
- (rv_and x (imm $I64 y)))
2182
-
2183
-
2184
- (decl gen_or (Type ValueRegs ValueRegs) ValueRegs)
2185
- (rule 1 (gen_or $I128 x y)
2186
- (value_regs
2187
- (rv_or (value_regs_get x 0) (value_regs_get y 0))
2188
- (rv_or (value_regs_get x 1) (value_regs_get y 1))))
2189
-
2190
- (rule 0 (gen_or (fits_in_64 _) x y)
2191
- (rv_or (value_regs_get x 0) (value_regs_get y 0)))
2192
-
2193
-
2194
- (decl lower_ctz (Type Reg) Reg)
2195
- (rule (lower_ctz ty x)
2196
- (gen_cltz false x ty))
2197
-
2198
- (rule 1 (lower_ctz (fits_in_16 ty) x)
2199
- (if-let true (has_zbb))
2200
- (let ((tmp Reg (gen_bseti x (ty_bits ty))))
2201
- (rv_ctzw tmp)))
2202
-
2203
- (rule 2 (lower_ctz $I32 x)
2204
- (if-let true (has_zbb))
2205
- (rv_ctzw x))
2206
-
2207
- (rule 2 (lower_ctz $I64 x)
2208
- (if-let true (has_zbb))
2209
- (rv_ctz x))
2210
-
2211
- ;; Count leading zeros from a i128 bit value.
2212
- ;; We count both halves separately and conditionally add them if it makes sense.
2213
-
2214
- (decl gen_cltz (bool XReg Type) XReg)
2215
- (rule (gen_cltz leading rs ty)
2216
- (let ((tmp WritableXReg (temp_writable_xreg))
2217
- (step WritableXReg (temp_writable_xreg))
2218
- (sum WritableXReg (temp_writable_xreg))
2219
- (_ Unit (emit (MInst.Cltz leading sum step tmp rs ty))))
2220
- sum))
2221
-
2222
- ;; Performs a zero extension of the given value
2223
- (decl zext (Value) XReg)
2224
-
2225
- ;; In the most generic case, we shift left and then shift right.
2226
- (rule 0 (zext val @ (value_type (fits_in_32 ty)))
2227
- (let ((shift Imm12 (imm_from_bits (u64_wrapping_sub 64 (ty_bits ty)))))
2228
- (rv_srli (rv_slli val shift) shift)))
2229
-
2230
- ;; If we are zero extending a U8 we can use a `andi` instruction.
2231
- (rule 1 (zext val @ (value_type $I8))
2232
- (rv_andi val (imm12_const 0xff)))
2233
-
2234
- ;; No point in trying to use `packh` here to zero extend 8 bit values
2235
- ;; since we can just use `andi` instead which is part of the base ISA.
2236
-
2237
- ;; If we have the `zbkb` extension `packw` can be used to zero extend 16 bit values
2238
- (rule 1 (zext val @ (value_type $I16))
2239
- (if-let true (has_zbkb))
2240
- (rv_packw val (zero_reg)))
2241
-
2242
- ;; If we have the `zbkb` extension `pack` can be used to zero extend 32 bit registers
2243
- (rule 1 (zext val @ (value_type $I32))
2244
- (if-let true (has_zbkb))
2245
- (rv_pack val (zero_reg)))
2246
-
2247
- ;; If we have the `zbb` extension we can use the dedicated `zext.h` instruction.
2248
- (rule 2 (zext val @ (value_type $I16))
2249
- (if-let true (has_zbb))
2250
- (rv_zexth val))
2251
-
2252
- ;; With `zba` we have a `zext.w` instruction
2253
- (rule 2 (zext val @ (value_type $I32))
2254
- (if-let true (has_zba))
2255
- (rv_zextw val))
2256
-
2257
- ;; Ignore sign extensions for values whose representation is already the full
2258
- ;; register width.
2259
- (rule 3 (zext val)
2260
- (if (val_already_extended (ExtendOp.Zero) val))
2261
- val)
2262
-
2263
- ;; Performs a signed extension of the given value
2264
- (decl sext (Value) XReg)
2265
-
2266
- ;; Same base case as `zext`, shift left-then-right.
2267
- (rule 0 (sext val @ (value_type (fits_in_32 ty)))
2268
- (let ((shift Imm12 (imm_from_bits (u64_wrapping_sub 64 (ty_bits ty)))))
2269
- (rv_srai (rv_slli val shift) shift)))
2270
-
2271
- ;; If we have the `zbb` extension we can use the dedicated `sext.b` instruction.
2272
- (rule 1 (sext val @ (value_type $I8))
2273
- (if-let true (has_zbb))
2274
- (rv_sextb val))
2275
-
2276
- ;; If we have the `zbb` extension we can use the dedicated `sext.h` instruction.
2277
- (rule 1 (sext val @ (value_type $I16))
2278
- (if-let true (has_zbb))
2279
- (rv_sexth val))
2280
-
2281
- ;; When signed extending from 32 to 64 bits we can use a
2282
- ;; `addiw val 0`. Also known as a `sext.w`
2283
- (rule 1 (sext val @ (value_type $I32))
2284
- (rv_sextw val))
2285
-
2286
- ;; Ignore sign extensions for values whose representation is already the full
2287
- ;; register width.
2288
- (rule 2 (sext val)
2289
- (if (val_already_extended (ExtendOp.Signed) val))
2290
- val)
2291
-
2292
- ;; Helper matcher for when a value's representation is already sign or zero
2293
- ;; extended to the full 64-bit register representation. This is used by `zext`
2294
- ;; and `sext` above to skip the extension instruction entirely in some
2295
- ;; circumstances.
2296
- (decl pure partial val_already_extended (ExtendOp Value) bool)
2297
- (rule 0 (val_already_extended _ v @ (value_type $I64)) true)
2298
-
2299
- ;; When extending our backend always extends to the full register width, so
2300
- ;; there's no need to extend-an-extend.
2301
- (rule 1 (val_already_extended (ExtendOp.Zero) (uextend _)) true)
2302
- (rule 1 (val_already_extended (ExtendOp.Signed) (sextend _)) true)
2303
-
2304
- ;; The result of `icmp`/`fcmp` is zero or one, meaning that it's already sign
2305
- ;; extended to the full register width.
2306
- (rule 1 (val_already_extended _ (icmp _ _ _)) true)
2307
- (rule 1 (val_already_extended _ (fcmp _ _ _)) true)
2308
-
2309
- ;; The lowering for these operations always sign-extend their results due to the
2310
- ;; use of the `*w` instructions in RV64I. Note that this requires that the
2311
- ;; extension is from 32 to 64, 16/8-bit operations are explicitly excluded here.
2312
- ;; There are no native instructions for the 16/8 bit operations so they must
2313
- ;; fall through to actual sign extension above.
2314
- (rule 1 (val_already_extended (ExtendOp.Signed) (has_type $I32 (ishl _ _))) true)
2315
- (rule 1 (val_already_extended (ExtendOp.Signed) (has_type $I32 (ushr _ _))) true)
2316
- (rule 1 (val_already_extended (ExtendOp.Signed) (has_type $I32 (sshr _ _))) true)
2317
- (rule 1 (val_already_extended (ExtendOp.Signed) (has_type $I32 (iadd _ _))) true)
2318
- (rule 1 (val_already_extended (ExtendOp.Signed) (has_type $I32 (isub _ _))) true)
2319
-
2320
- (type ExtendOp
2321
- (enum
2322
- (Zero)
2323
- (Signed)))
2324
-
2325
- (decl lower_b128_binary (AluOPRRR ValueRegs ValueRegs) ValueRegs)
2326
- (rule
2327
- (lower_b128_binary op a b)
2328
- (let
2329
- ( ;; low part.
2330
- (low XReg (alu_rrr op (value_regs_get a 0) (value_regs_get b 0)))
2331
- ;; high part.
2332
- (high XReg (alu_rrr op (value_regs_get a 1) (value_regs_get b 1))))
2333
- (value_regs low high)))
2334
-
2335
- (decl lower_smlhi (Type XReg XReg) XReg)
2336
- (rule 1
2337
- (lower_smlhi $I64 rs1 rs2)
2338
- (rv_mulh rs1 rs2))
2339
-
2340
- (rule
2341
- (lower_smlhi ty rs1 rs2)
2342
- (let
2343
- ((tmp XReg (rv_mul rs1 rs2)))
2344
- (rv_srli tmp (imm12_const (ty_bits ty)))))
2345
-
2346
- ;;;; construct shift amount.rotl on i128 will use shift to implement. So can call this function.
2347
- ;;;; this will return shift amount and (ty_bits - "shift amount")
2348
- ;;;; if ty_bits is greater than 64 like i128, then shmat will fallback to 64.because We are 64 bit platform.
2349
- (decl gen_shamt (Type XReg) ValueRegs)
2350
- (extern constructor gen_shamt gen_shamt)
2351
-
2352
- ;; bseti: Set a single bit in a register, indexed by a constant.
2353
- (decl gen_bseti (Reg u64) Reg)
2354
- (rule (gen_bseti val bit)
2355
- (if-let false (has_zbs))
2356
- (if-let false (u64_lt_eq bit 12))
2357
- (let ((const XReg (imm $I64 (u64_wrapping_shl 1 (u64_unwrap_into_u32 bit)))))
2358
- (rv_or val const)))
2359
-
2360
- (rule (gen_bseti val bit)
2361
- (if-let false (has_zbs))
2362
- (if-let true (u64_lt_eq bit 12))
2363
- (rv_ori val (imm12_const (u32_cast_signed (u32_wrapping_shl 1 (u64_unwrap_into_u32 bit))))))
2364
-
2365
- (rule (gen_bseti val bit)
2366
- (if-let true (has_zbs))
2367
- (rv_bseti val (imm12_const (u32_cast_signed (u64_unwrap_into_u32 bit)))))
2368
-
2369
-
2370
- (decl gen_popcnt (XReg) Reg)
2371
- (rule (gen_popcnt rs)
2372
- (let
2373
- ((tmp WritableXReg (temp_writable_xreg))
2374
- (step WritableXReg (temp_writable_xreg))
2375
- (sum WritableXReg (temp_writable_xreg))
2376
- (_ Unit (emit (MInst.Popcnt sum step tmp rs $I64))))
2377
- (writable_reg_to_reg sum)))
2378
-
2379
- ;; Generates a AMode that points to a register plus an offset.
2380
- (decl gen_reg_offset_amode (Reg i64) AMode)
2381
- (extern constructor gen_reg_offset_amode gen_reg_offset_amode)
2382
-
2383
- ;; Generates a AMode that an offset from the stack pointer.
2384
- (decl gen_sp_offset_amode (i64) AMode)
2385
- (extern constructor gen_sp_offset_amode gen_sp_offset_amode)
2386
-
2387
- ;; Generates a AMode that an offset from the frame pointer.
2388
- (decl gen_fp_offset_amode (i64) AMode)
2389
- (extern constructor gen_fp_offset_amode gen_fp_offset_amode)
2390
-
2391
- ;; Generates an AMode that points to a stack slot + offset.
2392
- (decl gen_stack_slot_amode (StackSlot i64) AMode)
2393
- (extern constructor gen_stack_slot_amode gen_stack_slot_amode)
2394
-
2395
- ;; Generates a AMode that points to a constant in the constant pool.
2396
- (decl gen_const_amode (VCodeConstant) AMode)
2397
- (extern constructor gen_const_amode gen_const_amode)
2398
-
2399
-
2400
-
2401
- ;; Tries to match a Value + Offset into an AMode
2402
- (decl amode (Value i32) AMode)
2403
- (rule 0 (amode addr offset) (amode_inner addr offset))
2404
-
2405
- ;; If we are adding a constant offset with an iadd we can instead make that
2406
- ;; offset part of the amode offset.
2407
- ;;
2408
- ;; We can't recurse into `amode` again since that could cause stack overflows.
2409
- ;; See: https://github.com/bytecodealliance/wasmtime/pull/6968
2410
- (rule 1 (amode (iadd addr (i32_from_iconst y)) offset)
2411
- (if-let new_offset (i32_checked_add y offset))
2412
- (amode_inner addr new_offset))
2413
- (rule 2 (amode (iadd (i32_from_iconst x) addr) offset)
2414
- (if-let new_offset (i32_checked_add x offset))
2415
- (amode_inner addr new_offset))
2416
-
2417
-
2418
- ;; These are the normal rules for generating an AMode.
2419
- (decl amode_inner (Value i32) AMode)
2420
-
2421
- ;; In the simplest case we just lower into a Reg+Offset
2422
- (rule 0 (amode_inner r @ (value_type (ty_addr64 _)) offset)
2423
- (gen_reg_offset_amode r offset))
2424
-
2425
- ;; If the value is a `get_frame_pointer`, we can just use the offset from that.
2426
- (rule 1 (amode_inner (get_frame_pointer) offset)
2427
- (gen_fp_offset_amode offset))
2428
-
2429
- ;; If the value is a `get_stack_pointer`, we can just use the offset from that.
2430
- (rule 1 (amode_inner (get_stack_pointer) offset)
2431
- (gen_sp_offset_amode offset))
2432
-
2433
- ;; Similarly if the value is a `stack_addr` we can also turn that into an sp offset.
2434
- (rule 1 (amode_inner (stack_addr ss ss_offset) amode_offset)
2435
- (if-let combined_offset (i32_checked_add ss_offset amode_offset))
2436
- (gen_stack_slot_amode ss combined_offset))
2437
-
2438
-
2439
- ;; Helpers for sinkable loads ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2440
-
2441
- ;; RISC-V doesen't really have sinkable loads. But the regular load instructions
2442
- ;; sign / zero extend their results to 64 bits. So we can pretend they are
2443
- ;; an extend instruction with a sinkable load. This allows us to have better
2444
- ;; lowerings on these cases.
2445
-
2446
- ;; Extract a sinkable instruction from a value operand.
2447
- (decl sinkable_inst (Inst) Value)
2448
- (extern extractor sinkable_inst sinkable_inst)
2449
-
2450
- ;; Matches a sinkable load.
2451
- (decl sinkable_load (Inst Type MemFlags Value Offset32) Value)
2452
- (extractor (sinkable_load inst ty flags addr offset)
2453
- (and
2454
- (load (little_or_native_endian flags) addr offset)
2455
- (sinkable_inst (has_type ty inst))))
2456
-
2457
- ;; Returns a canonical type for a LoadOP. We only return I64 or F64.
2458
- (decl load_op_reg_type (LoadOP) Type)
2459
- (rule 1 (load_op_reg_type (LoadOP.Fld)) $F64)
2460
- (rule 1 (load_op_reg_type (LoadOP.Flw)) $F64)
2461
- (rule 1 (load_op_reg_type (LoadOP.Flh)) $F64)
2462
- (rule 0 (load_op_reg_type _) $I64)
2463
-
2464
- ;; Helper constructor to build a load instruction.
2465
- (decl gen_load (AMode LoadOP MemFlags) Reg)
2466
- (rule (gen_load amode op flags)
2467
- (let ((dst WritableReg (temp_writable_reg (load_op_reg_type op)))
2468
- (_ Unit (emit (MInst.Load dst op flags amode))))
2469
- dst))
2470
- (rule 1 (gen_load amode (LoadOP.Flh) flags)
2471
- (if-let false (has_zfhmin))
2472
- (gen_bitcast (gen_load amode (LoadOP.Lh) flags) $I16 $F16))
2473
-
2474
- ;; Similar to `gen_load` but marks `Inst` as sunk at the current point.
2475
- ;;
2476
- ;; This is only useful for load op's that perform some additional computation
2477
- ;; such as extending the loaded value.
2478
- (decl gen_sunk_load (Inst AMode LoadOP MemFlags) Reg)
2479
- (rule (gen_sunk_load inst amode op flags)
2480
- (let ((_ Unit (sink_inst inst)))
2481
- (gen_load amode op flags)))
2482
-
2483
-
2484
- ;; Helper constructor to build a store instruction.
2485
- ;;
2486
- ;; This helper contains a special-case for zero constants stored to memory to
2487
- ;; directly store the `zero` register to memory. See #7162 for some discussion
2488
- ;; on why this doesn't just fall out.
2489
- (decl gen_store (AMode MemFlags Value) InstOutput)
2490
- (rule 2 (gen_store amode flags val @ (value_type $F16))
2491
- (if-let false (has_zfhmin))
2492
- (rv_store amode (StoreOP.Sh) flags (gen_bitcast val $F16 $I16)))
2493
- (rule 1 (gen_store amode flags val @ (value_type ty))
2494
- (if-let (u64_from_iconst 0) val)
2495
- (rv_store amode (store_op ty) flags (zero_reg)))
2496
- (rule 0 (gen_store amode flags val @ (value_type ty))
2497
- (rv_store amode (store_op ty) flags val))
2498
-
2499
- ;; Emit a raw instruction to store a register into memory.
2500
- ;;
2501
- ;; Note that the `src` operand must have the correct type for the `op`
2502
- ;; specified.
2503
- (decl rv_store (AMode StoreOP MemFlags Reg) InstOutput)
2504
- (rule (rv_store amode op flags src)
2505
- (side_effect (SideEffectNoResult.Inst (MInst.Store amode op flags src))))
2506
-
2507
-
2508
-
2509
-
2510
- (decl valid_atomic_transaction (Type) Type)
2511
- (extern extractor valid_atomic_transaction valid_atomic_transaction)
2512
-
2513
- ;;helper function.
2514
- ;;construct an atomic instruction.
2515
- (decl gen_atomic (AtomicOP Reg Reg AMO) Reg)
2516
- (rule
2517
- (gen_atomic op addr src amo)
2518
- (let
2519
- ((tmp WritableXReg (temp_writable_xreg))
2520
- (_ Unit (emit (MInst.Atomic op tmp addr src amo))))
2521
- tmp))
2522
-
2523
- ;; helper function
2524
- (decl get_atomic_rmw_op (Type AtomicRmwOp) AtomicOP)
2525
- (rule
2526
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Add))
2527
- (AtomicOP.AmoaddW))
2528
- (rule
2529
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Add))
2530
- (AtomicOP.AmoaddD))
2531
-
2532
- (rule
2533
- (get_atomic_rmw_op $I32 (AtomicRmwOp.And))
2534
- (AtomicOP.AmoandW))
2535
-
2536
- (rule
2537
- (get_atomic_rmw_op $I64 (AtomicRmwOp.And))
2538
- (AtomicOP.AmoandD))
2539
-
2540
- (rule
2541
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Or))
2542
- (AtomicOP.AmoorW))
2543
-
2544
- (rule
2545
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Or))
2546
- (AtomicOP.AmoorD))
2547
-
2548
- (rule
2549
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Smax))
2550
- (AtomicOP.AmomaxW))
2551
-
2552
- (rule
2553
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Smax))
2554
- (AtomicOP.AmomaxD))
2555
-
2556
- (rule
2557
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Smin))
2558
- (AtomicOP.AmominW))
2559
-
2560
- (rule
2561
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Smin))
2562
- (AtomicOP.AmominD))
2563
-
2564
- (rule
2565
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Umax))
2566
- (AtomicOP.AmomaxuW)
2567
- )
2568
-
2569
- (rule
2570
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Umax))
2571
- (AtomicOP.AmomaxuD))
2572
-
2573
- (rule
2574
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Umin))
2575
- (AtomicOP.AmominuW))
2576
-
2577
- (rule
2578
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Umin))
2579
- (AtomicOP.AmominuD))
2580
-
2581
- (rule
2582
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Xchg))
2583
- (AtomicOP.AmoswapW))
2584
-
2585
- (rule
2586
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Xchg))
2587
- (AtomicOP.AmoswapD))
2588
-
2589
- (rule
2590
- (get_atomic_rmw_op $I32 (AtomicRmwOp.Xor))
2591
- (AtomicOP.AmoxorW))
2592
-
2593
- (rule
2594
- (get_atomic_rmw_op $I64 (AtomicRmwOp.Xor))
2595
- (AtomicOP.AmoxorD))
2596
-
2597
- (decl atomic_amo () AMO)
2598
- (extern constructor atomic_amo atomic_amo)
2599
-
2600
-
2601
- (decl gen_atomic_load (Reg Type) Reg)
2602
- (rule
2603
- (gen_atomic_load p ty)
2604
- (let
2605
- ((tmp WritableXReg (temp_writable_xreg))
2606
- (_ Unit (emit (MInst.AtomicLoad tmp ty p))))
2607
- (writable_reg_to_reg tmp)))
2608
-
2609
- ;;;
2610
- (decl gen_atomic_store (Reg Type Reg) InstOutput)
2611
- (rule
2612
- (gen_atomic_store p ty src)
2613
- (side_effect (SideEffectNoResult.Inst (MInst.AtomicStore src ty p)))
2614
- )
2615
-
2616
-
2617
- ;; Rounds a FReg by converting the value into an integer and back with a specified
2618
- ;; float rounding mode.
2619
- (decl float_round_fcvt (Type FRM FReg) FReg)
2620
- (rule (float_round_fcvt $F32 frm rs) (rv_fcvtsw frm (rv_fcvtws frm rs)))
2621
- (rule (float_round_fcvt $F64 frm rs) (rv_fcvtdl frm (rv_fcvtld frm rs)))
2622
-
2623
- (decl gen_float_round (FRM FReg Type) FReg)
2624
- (rule 0 (gen_float_round frm rs ty)
2625
- (let (
2626
- ;; if rs is NaN/+-Infinity/+-Zero or if the exponent is larger than # of bits
2627
- ;; in mantissa, the result is the same as src, check for these cases first.
2628
- (max FReg (imm ty (float_int_max ty)))
2629
- (abs FReg (rv_fabs ty rs))
2630
- (exact XReg (rv_flt ty abs max))
2631
-
2632
- ;; Manually round the value using the fcvt instructions
2633
- ;; to move the value to an integer register and back.
2634
- (fcvt FReg (float_round_fcvt ty frm rs))
2635
- ;; Restore the sign bit from the initial value.
2636
- (rounded FReg (rv_fsgnj ty fcvt rs))
2637
-
2638
- ;; We want to return a arithmetic nan if the input is a canonical nan.
2639
- ;; Convert them by adding 0.0 to the input.
2640
- (float_zero FReg (gen_bitcast (zero_reg) (float_int_of_same_size ty) ty))
2641
- (corrected_nan FReg (rv_fadd ty (FRM.RNE) rs float_zero)))
2642
-
2643
- ;; Check if the value cannot be rounded exactly and return the source input if so
2644
- (gen_select_freg (cmp_eqz exact) corrected_nan rounded)))
2645
-
2646
- ;; With Zfa we can use the dedicated `fround` instruction.
2647
- (rule 1 (gen_float_round frm rs ty)
2648
- (if-let true (has_zfa))
2649
- (rv_fround ty frm rs))
2650
-
2651
-
2652
-
2653
- (decl gen_stack_addr (StackSlot Offset32) Reg)
2654
- (extern constructor gen_stack_addr gen_stack_addr)
2655
-
2656
- (decl gen_select_xreg (IntegerCompare XReg XReg) XReg)
2657
-
2658
- (rule 6 (gen_select_xreg (int_compare_decompose cc x y) x y)
2659
- (if-let (IntCC.UnsignedLessThan) (intcc_without_eq cc))
2660
- (if-let true (has_zbb))
2661
- (rv_minu x y))
2662
-
2663
- (rule 6 (gen_select_xreg (int_compare_decompose cc x y) x y)
2664
- (if-let (IntCC.SignedLessThan) (intcc_without_eq cc))
2665
- (if-let true (has_zbb))
2666
- (rv_min x y))
2667
-
2668
- (rule 6 (gen_select_xreg (int_compare_decompose cc x y) x y)
2669
- (if-let (IntCC.UnsignedGreaterThan) (intcc_without_eq cc))
2670
- (if-let true (has_zbb))
2671
- (rv_maxu x y))
2672
-
2673
- (rule 6 (gen_select_xreg (int_compare_decompose cc x y) x y)
2674
- (if-let (IntCC.SignedGreaterThan) (intcc_without_eq cc))
2675
- (if-let true (has_zbb))
2676
- (rv_max x y))
2677
-
2678
- ;; Rotate Zero Reg to the right. This allows us to write fewer rules
2679
- ;; below when matching the zero register
2680
- ;;
2681
- ;; Additionally prevent this rule from recursing infinitely by only
2682
- ;; matching when one of the inputs is the zero register, but not both.
2683
-
2684
- (rule 5 (gen_select_xreg (int_compare_decompose cc a @ (zero_reg) b @ (non_zero_reg)) x y)
2685
- (if-let true (has_zicond))
2686
- (gen_select_xreg (int_compare (intcc_swap_args cc) b a) x y))
2687
-
2688
- (rule 4 (gen_select_xreg c @ (int_compare_decompose cc a b) x @ (zero_reg) y @ (non_zero_reg))
2689
- (if-let true (has_zicond))
2690
- (gen_select_xreg (int_compare (intcc_complement cc) a b) y x))
2691
-
2692
- (rule 3 (gen_select_xreg (int_compare_decompose (IntCC.Equal) c (zero_reg)) x (zero_reg))
2693
- (if-let true (has_zicond))
2694
- (rv_czero_nez x c))
2695
-
2696
- (rule 3 (gen_select_xreg (int_compare_decompose (IntCC.NotEqual) c (zero_reg)) x (zero_reg))
2697
- (if-let true (has_zicond))
2698
- (rv_czero_eqz x c))
2699
-
2700
- (rule 2 (gen_select_xreg (int_compare_decompose (IntCC.Equal) c (zero_reg)) x y)
2701
- (if-let true (has_zicond))
2702
- (rv_or
2703
- (rv_czero_nez x c)
2704
- (rv_czero_eqz y c)))
2705
-
2706
- (rule 2 (gen_select_xreg (int_compare_decompose (IntCC.NotEqual) c (zero_reg)) x y)
2707
- (if-let true (has_zicond))
2708
- (rv_or
2709
- (rv_czero_eqz x c)
2710
- (rv_czero_nez y c)))
2711
-
2712
- ;; It is still beneficial to emit the full compare instruction, and then the 3 instruction
2713
- ;; select using zicond, so do that here as a last resort.
2714
- (rule 1 (gen_select_xreg compare x y)
2715
- (if-let true (has_zicond))
2716
- (gen_select_xreg (cmp_nez (lower_int_compare compare)) x y))
2717
-
2718
- ;; In the base case we emit a conditional branch and a few moves.
2719
-
2720
- (rule 0 (gen_select_xreg c x y)
2721
- (let
2722
- ((dst WritableReg (temp_writable_xreg))
2723
- (_ Unit (emit (MInst.Select dst c x y))))
2724
- (writable_reg_to_reg dst)))
2725
-
2726
-
2727
- (decl gen_select_vreg (IntegerCompare VReg VReg) VReg)
2728
- (rule (gen_select_vreg c x y)
2729
- (let
2730
- ((dst WritableReg (temp_writable_vreg))
2731
- (_ Unit (emit (MInst.Select dst c (vreg_to_reg x) (vreg_to_reg y)))))
2732
- (writable_reg_to_reg dst)))
2733
- (decl gen_select_freg (IntegerCompare FReg FReg) FReg)
2734
- (rule (gen_select_freg c x y)
2735
- (let
2736
- ((dst WritableReg (temp_writable_freg))
2737
- (_ Unit (emit (MInst.Select dst c (freg_to_reg x) (freg_to_reg y)))))
2738
- (writable_reg_to_reg dst)))
2739
- (decl gen_select_regs (IntegerCompare ValueRegs ValueRegs) ValueRegs)
2740
- (rule (gen_select_regs c x y)
2741
- (let
2742
- ((dst1 WritableReg (temp_writable_xreg))
2743
- (dst2 WritableReg (temp_writable_xreg))
2744
- (_ Unit (emit (MInst.Select (writable_value_regs dst1 dst2) c x y))))
2745
- (value_regs dst1 dst2)))
2746
-
2747
- (decl udf (TrapCode) InstOutput)
2748
- (rule
2749
- (udf code)
2750
- (side_effect (SideEffectNoResult.Inst (MInst.Udf code))))
2751
-
2752
- (decl load_op (Type) LoadOP)
2753
- (extern constructor load_op load_op)
2754
-
2755
- (decl store_op (Type) StoreOP)
2756
- (extern constructor store_op store_op)
2757
-
2758
-
2759
- ;;;; load extern name
2760
- (decl load_ext_name (ExternalName i64 RelocDistance) Reg)
2761
- (rule (load_ext_name name offset _dist)
2762
- (if-let true (is_pic))
2763
- (rv_add (load_ext_name_got name) (imm $I64 (i64_cast_unsigned offset))))
2764
- (rule 1 (load_ext_name name 0 _dist)
2765
- (if-let true (is_pic))
2766
- (load_ext_name_got name))
2767
- (rule (load_ext_name name offset (RelocDistance.Near))
2768
- (if-let false (is_pic))
2769
- (load_ext_name_near name offset))
2770
- (rule (load_ext_name name offset (RelocDistance.Far))
2771
- (if-let false (is_pic))
2772
- (load_ext_name_far name offset))
2773
-
2774
- (decl pure is_pic () bool)
2775
- (extern constructor is_pic is_pic)
2776
-
2777
- ;; Helper for emitting `MInst.LoadExtNameGot` instructions.
2778
- (decl load_ext_name_got (BoxExternalName) Reg)
2779
- (rule (load_ext_name_got extname)
2780
- (let ((dst WritableReg (temp_writable_reg $I64))
2781
- (_ Unit (emit (MInst.LoadExtNameGot dst extname))))
2782
- dst))
2783
-
2784
- ;; Helper for emitting `MInst.LoadExtNameNear` instructions.
2785
- (decl load_ext_name_near (BoxExternalName i64) Reg)
2786
- (rule (load_ext_name_near extname offset)
2787
- (let ((dst WritableReg (temp_writable_reg $I64))
2788
- (_ Unit (emit (MInst.LoadExtNameNear dst extname offset))))
2789
- dst))
2790
-
2791
- ;; Helper for emitting `MInst.LoadExtNameFar` instructions.
2792
- (decl load_ext_name_far (BoxExternalName i64) Reg)
2793
- (rule (load_ext_name_far extname offset)
2794
- (let ((dst WritableReg (temp_writable_reg $I64))
2795
- (_ Unit (emit (MInst.LoadExtNameFar dst extname offset))))
2796
- dst))
2797
-
2798
- (decl elf_tls_get_addr (ExternalName) Reg)
2799
- (rule (elf_tls_get_addr name)
2800
- (let ((dst WritableReg (temp_writable_reg $I64))
2801
- (_ Unit (emit (MInst.ElfTlsGetAddr dst name))))
2802
- dst))
2803
-
2804
- ;;; some float binary operation
2805
- ;;; 1. need move into x register.
2806
- ;;; 2. do the operation.
2807
- ;;; 3. move back.
2808
- (decl lower_float_binary (AluOPRRR FReg FReg Type) FReg)
2809
- (rule
2810
- (lower_float_binary op rs1 rs2 ty)
2811
- (let ((x_rs1 XReg (move_f_to_x rs1 ty))
2812
- (x_rs2 XReg (move_f_to_x rs2 ty))
2813
- (tmp XReg (alu_rrr op x_rs1 x_rs2)))
2814
- (move_x_to_f tmp ty)))
2815
-
2816
-
2817
- (decl sub_i128 (ValueRegs ValueRegs) ValueRegs)
2818
- (rule
2819
- (sub_i128 x y )
2820
- (let (
2821
- ;; low part.
2822
- (low XReg (rv_sub (value_regs_get x 0) (value_regs_get y 0)))
2823
- ;; compute borrow.
2824
- (borrow XReg (rv_sltu (value_regs_get x 0) low))
2825
- ;;
2826
- (high_tmp XReg (rv_sub (value_regs_get x 1) (value_regs_get y 1)))
2827
- ;;
2828
- (high XReg (rv_sub high_tmp borrow)))
2829
- (value_regs low high)))
2830
-
2831
- ;; Consume a CmpResult, producing a branch on its result.
2832
- (decl cond_br (IntegerCompare CondBrTarget CondBrTarget) SideEffectNoResult)
2833
- (rule (cond_br cmp then else)
2834
- (SideEffectNoResult.Inst
2835
- (MInst.CondBr then else cmp)))
2836
-
2837
- ;; Helper for emitting the `j` mnemonic, an unconditional jump to label.
2838
- (decl rv_j (MachLabel) SideEffectNoResult)
2839
- (rule (rv_j label)
2840
- (SideEffectNoResult.Inst (MInst.Jal label)))
2841
-
2842
- ;; Construct an IntegerCompare value.
2843
- (decl int_compare (IntCC XReg XReg) IntegerCompare)
2844
- (extern constructor int_compare int_compare)
2845
-
2846
- ;; Extract the components of an `IntegerCompare`
2847
- (decl int_compare_decompose (IntCC XReg XReg) IntegerCompare)
2848
- (extern extractor infallible int_compare_decompose int_compare_decompose)
2849
-
2850
- (decl label_to_br_target (MachLabel) CondBrTarget)
2851
- (extern constructor label_to_br_target label_to_br_target)
2852
- (convert MachLabel CondBrTarget label_to_br_target)
2853
-
2854
- (decl cmp_eqz (XReg) IntegerCompare)
2855
- (rule (cmp_eqz r) (int_compare (IntCC.Equal) r (zero_reg)))
2856
-
2857
- (decl cmp_nez (XReg) IntegerCompare)
2858
- (rule (cmp_nez r) (int_compare (IntCC.NotEqual) r (zero_reg)))
2859
-
2860
- (decl cmp_eq (XReg XReg) IntegerCompare)
2861
- (rule (cmp_eq rs1 rs2) (int_compare (IntCC.Equal) rs1 rs2))
2862
-
2863
- (decl cmp_ne (XReg XReg) IntegerCompare)
2864
- (rule (cmp_ne rs1 rs2) (int_compare (IntCC.NotEqual) rs1 rs2))
2865
-
2866
- (decl cmp_lt (XReg XReg) IntegerCompare)
2867
- (rule (cmp_lt rs1 rs2) (int_compare (IntCC.SignedLessThan) rs1 rs2))
2868
-
2869
- (decl cmp_ltz (XReg) IntegerCompare)
2870
- (rule (cmp_ltz rs) (int_compare (IntCC.SignedLessThan) rs (zero_reg)))
2871
-
2872
- (decl cmp_gt (XReg XReg) IntegerCompare)
2873
- (rule (cmp_gt rs1 rs2) (int_compare (IntCC.SignedGreaterThan) rs1 rs2))
2874
-
2875
- (decl cmp_ge (XReg XReg) IntegerCompare)
2876
- (rule (cmp_ge rs1 rs2) (int_compare (IntCC.SignedGreaterThanOrEqual) rs1 rs2))
2877
-
2878
- (decl cmp_le (XReg XReg) IntegerCompare)
2879
- (rule (cmp_le rs1 rs2) (int_compare (IntCC.SignedLessThanOrEqual) rs1 rs2))
2880
-
2881
- (decl cmp_gtu (XReg XReg) IntegerCompare)
2882
- (rule (cmp_gtu rs1 rs2) (int_compare (IntCC.UnsignedGreaterThan) rs1 rs2))
2883
-
2884
- (decl cmp_geu (XReg XReg) IntegerCompare)
2885
- (rule (cmp_geu rs1 rs2) (int_compare (IntCC.UnsignedGreaterThanOrEqual) rs1 rs2))
2886
-
2887
- (decl cmp_ltu (XReg XReg) IntegerCompare)
2888
- (rule (cmp_ltu rs1 rs2) (int_compare (IntCC.UnsignedLessThan) rs1 rs2))
2889
-
2890
- (decl cmp_leu (XReg XReg) IntegerCompare)
2891
- (rule (cmp_leu rs1 rs2) (int_compare (IntCC.UnsignedLessThanOrEqual) rs1 rs2))
2892
-
2893
- ;; Helper to generate an `IntegerCompare` which represents the "truthy" value of
2894
- ;; the input provided.
2895
- ;;
2896
- ;; This is used in `Select` and `brif` for example to generate conditional
2897
- ;; branches. The returned comparison, when taken, represents that `Value` is
2898
- ;; nonzero. When not taken the input `Value` is zero.
2899
- (decl is_nonzero_cmp (Value) IntegerCompare)
2900
-
2901
- ;; Base case - convert to a "truthy" value and compare it against zero.
2902
- ;;
2903
- ;; Note that non-64-bit types need to be extended since the upper bits from
2904
- ;; Cranelift's point of view are undefined. Favor a zero extension for 8-bit
2905
- ;; types because that's a single `andi` instruction, but favor sign-extension
2906
- ;; for 16 and 32-bit types because many RISC-V which operate on the low 32-bits.
2907
- ;; Additionally the base 64-bit ISA has a single instruction for sign-extending
2908
- ;; from 32 to 64-bits which makes that a bit cheaper if used.
2909
- ;; of registers sign-extend the results.
2910
- (rule 0 (is_nonzero_cmp val @ (value_type (fits_in_64 _)))
2911
- (cmp_nez (sext val)))
2912
- (rule 1 (is_nonzero_cmp val @ (value_type $I8))
2913
- (cmp_nez (zext val)))
2914
- (rule 1 (is_nonzero_cmp val @ (value_type $I128))
2915
- (cmp_nez (rv_or (value_regs_get val 0) (value_regs_get val 1))))
2916
-
2917
- ;; If the input value is itself an `icmp` or `fcmp` we can avoid generating the
2918
- ;; result of the comparison and instead move the comparison directly into the
2919
- ;; `IntegerCompare` that's returned.
2920
- (rule 2 (is_nonzero_cmp (maybe_uextend (icmp cc a b @ (value_type (fits_in_64 _)))))
2921
- (icmp_to_int_compare cc a b))
2922
- (rule 2 (is_nonzero_cmp (maybe_uextend (fcmp cc a @ (value_type ty) b)))
2923
- (fcmp_to_float_compare cc ty a b))
2924
-
2925
- ;; Creates an `IntegerCompare` from an `icmp` node's parts. This will extend
2926
- ;; values as necessary to their full register width to perform the
2927
- ;; comparison. The returned `IntegerCompare` is suitable to use in conditional
2928
- ;; branches for example.
2929
- ;;
2930
- ;; Note that this should ideally only be used when the `IntegerCompare` returned
2931
- ;; is fed into a branch. If `IntegerCompare` is materialized this will miss out
2932
- ;; on optimizations to compare against constants using some native instructions.
2933
- (decl icmp_to_int_compare (IntCC Value Value) IntegerCompare)
2934
- (rule 0 (icmp_to_int_compare cc a b @ (value_type (fits_in_64 in_ty)))
2935
- (int_compare cc (put_value_in_reg_for_icmp cc a) (put_value_in_reg_for_icmp cc b)))
2936
- (rule 1 (icmp_to_int_compare cc a b @ (value_type $I128))
2937
- (cmp_nez (lower_icmp_i128 cc a b)))
2938
-
2939
- ;; Places a `Value` into a full register width to prepare for a comparison
2940
- ;; using `IntCC`.
2941
- ;;
2942
- ;; This is largely a glorified means of choosing sign-extension or
2943
- ;; zero-extension for the `Value` input.
2944
- (decl put_value_in_reg_for_icmp (IntCC Value) XReg)
2945
-
2946
- ;; Base cases, use the `cc` to determine whether to zero or sign extend.
2947
- (rule 0 (put_value_in_reg_for_icmp cc val)
2948
- (zext val))
2949
- (rule 1 (put_value_in_reg_for_icmp cc val)
2950
- (if (signed_cond_code cc))
2951
- (sext val))
2952
-
2953
- ;; For equality and inequality favor sign extension since it's generally
2954
- ;; easier to perform sign extension on RV64 via native instructions. For 8-bit
2955
- ;; types though use zero-extension since that's a single instruction `and`.
2956
- (rule 2 (put_value_in_reg_for_icmp (IntCC.Equal) val @ (value_type (fits_in_64 _)))
2957
- (sext val))
2958
- (rule 2 (put_value_in_reg_for_icmp (IntCC.NotEqual) val @ (value_type (fits_in_64 _)))
2959
- (sext val))
2960
- (rule 3 (put_value_in_reg_for_icmp (IntCC.Equal) val @ (value_type $I8))
2961
- (zext val))
2962
- (rule 3 (put_value_in_reg_for_icmp (IntCC.NotEqual) val @ (value_type $I8))
2963
- (zext val))
2964
-
2965
- ;; As a special case use `x0` directly if a constant is 0.
2966
- (rule 4 (put_value_in_reg_for_icmp _ (i64_from_iconst 0))
2967
- (zero_reg))
2968
-
2969
-
2970
- (decl partial lower_branch (Inst MachLabelSlice) Unit)
2971
- (rule (lower_branch (jump _) (single_target label))
2972
- (emit_side_effect (rv_j label)))
2973
-
2974
- (rule (lower_branch (brif v _ _) (two_targets then else))
2975
- (emit_side_effect (cond_br (is_nonzero_cmp v) then else)))
2976
-
2977
- (decl lower_br_table (Reg MachLabelSlice) Unit)
2978
- (extern constructor lower_br_table lower_br_table)
2979
-
2980
- (rule (lower_branch (br_table index _) targets)
2981
- (lower_br_table index targets))
2982
-
2983
- (decl load_ra () Reg)
2984
- (extern constructor load_ra load_ra)
2985
-
2986
-
2987
- ;; Generates a bitcast instruction.
2988
- ;; Args are: src, src_ty, dst_ty
2989
- (decl gen_bitcast (Reg Type Type) Reg)
2990
-
2991
- (rule 9 (gen_bitcast r (ty_supported_float_size $F16) (ty_supported_vec _)) (if-let false (has_zvfh)) (rv_vfmv_sf r (vstate_from_type $F32)))
2992
- (rule 8 (gen_bitcast r (ty_supported_vec ty) (ty_supported_float_size $F16)) (if-let false (has_zvfh)) (gen_bitcast (gen_bitcast r ty $I16) $I16 $F16))
2993
- (rule 7 (gen_bitcast r (ty_supported_float_min src_ty) (ty_supported_vec _)) (rv_vfmv_sf r src_ty))
2994
- (rule 6 (gen_bitcast r (ty_supported_vec _) (ty_supported_float_min dst_ty)) (rv_vfmv_fs r dst_ty))
2995
-
2996
- (rule 5 (gen_bitcast r (ty_int_ref_scalar_64 src_ty) (ty_supported_vec _)) (rv_vmv_sx r src_ty))
2997
- (rule 4 (gen_bitcast r (ty_supported_vec _) (ty_int_ref_scalar_64 dst_ty)) (rv_vmv_xs r dst_ty))
2998
- (rule 3 (gen_bitcast r (ty_supported_float_min $F16) $I16) (rv_fmvxh r))
2999
- (rule 2 (gen_bitcast r (ty_supported_float_size $F16) $I16) (rv_fmvxw r))
3000
- (rule 2 (gen_bitcast r (ty_supported_float_size $F32) $I32) (rv_fmvxw r))
3001
- (rule 2 (gen_bitcast r (ty_supported_float_size $F64) $I64) (rv_fmvxd r))
3002
- (rule 1 (gen_bitcast r $I16 (ty_supported_float_min $F16)) (rv_fmvhx r))
3003
- ;; Smaller float types are NaN-boxed inside of larger floating point types on RISC-V, meaning the
3004
- ;; smaller float is stored in the lower bits of the larger float and all the other bits are set to 1.
3005
- ;; This is done automatically by the correctly-sized `fmv` instructions but needs to be done manually
3006
- ;; here when using a 32-bit `fmv` for a 16-bit float.
3007
- (rule 0 (gen_bitcast r $I16 (ty_supported_float_size $F16)) (rv_fmvwx (rv_or r (imm $I32 0xffff0000))))
3008
- (rule 0 (gen_bitcast r $I32 (ty_supported_float_size $F32)) (rv_fmvwx r))
3009
- (rule 0 (gen_bitcast r $I64 (ty_supported_float_size $F64)) (rv_fmvdx r))
3010
- (rule -1 (gen_bitcast r (ty_supported_float_size _) (ty_supported_float_size _)) r)
3011
- (rule -2 (gen_bitcast r (ty_int_ref_scalar_64 _) (ty_int_ref_scalar_64 _)) r)
3012
- (rule -3 (gen_bitcast r (ty_supported_vec _) (ty_supported_vec _)) r)
3013
-
3014
- (decl move_f_to_x (FReg Type) XReg)
3015
- (rule (move_f_to_x r ty) (gen_bitcast r ty (float_int_of_same_size ty)))
3016
-
3017
- (decl move_x_to_f (XReg Type) FReg)
3018
- (rule (move_x_to_f r ty) (gen_bitcast r (float_int_of_same_size ty) ty))
3019
-
3020
- (decl float_int_of_same_size (Type) Type)
3021
- (rule (float_int_of_same_size $F16) $I16)
3022
- (rule (float_int_of_same_size $F32) $I32)
3023
- (rule (float_int_of_same_size $F64) $I64)
3024
-
3025
-
3026
- (decl gen_brev8 (Reg Type) Reg)
3027
- (rule 1
3028
- (gen_brev8 rs _)
3029
- (if-let true (has_zbkb))
3030
- (rv_brev8 rs))
3031
- (rule
3032
- (gen_brev8 rs ty)
3033
- (if-let false (has_zbkb))
3034
- (let
3035
- ((tmp WritableXReg (temp_writable_xreg))
3036
- (tmp2 WritableXReg (temp_writable_xreg))
3037
- (step WritableXReg (temp_writable_xreg))
3038
- (rd WritableXReg (temp_writable_xreg))
3039
- (_ Unit (emit (MInst.Brev8 rs ty step tmp tmp2 rd))))
3040
- (writable_reg_to_reg rd)))
3041
-
3042
- ;; Negates x
3043
- ;; Equivalent to 0 - x
3044
- (decl neg (Type ValueRegs) ValueRegs)
3045
- (rule 1 (neg (fits_in_64 (ty_int ty)) val)
3046
- (value_reg
3047
- (rv_neg (value_regs_get val 0))))
3048
-
3049
- (rule 2 (neg $I128 val)
3050
- (sub_i128 (value_regs_zero) val))
3051
-
3052
-
3053
- ;; Builds an instruction sequence that traps if the comparison succeeds.
3054
- (decl gen_trapif (IntCC XReg XReg TrapCode) InstOutput)
3055
- (rule (gen_trapif cc a b trap_code)
3056
- (side_effect (SideEffectNoResult.Inst (MInst.TrapIf a b cc trap_code))))
3057
-
3058
- ;; Builds an instruction sequence that traps if the input is non-zero.
3059
- (decl gen_trapnz (XReg TrapCode) InstOutput)
3060
- (rule (gen_trapnz test trap_code)
3061
- (gen_trapif (IntCC.NotEqual) test (zero_reg) trap_code))
3062
-
3063
- ;; Builds an instruction sequence that traps if the input is zero.
3064
- (decl gen_trapz (XReg TrapCode) InstOutput)
3065
- (rule (gen_trapz test trap_code)
3066
- (gen_trapif (IntCC.Equal) test (zero_reg) trap_code))
3067
-
3068
- ;; Converts bool to the corresponding {in,}equality condition
3069
- (type ZeroCond
3070
- (enum
3071
- Zero
3072
- NonZero))
3073
-
3074
- (decl zero_cond_to_cc (ZeroCond) IntCC)
3075
- (rule (zero_cond_to_cc (ZeroCond.Zero)) (IntCC.Equal))
3076
- (rule (zero_cond_to_cc (ZeroCond.NonZero)) (IntCC.NotEqual))
3077
-
3078
- ;; Builds an instruction sequence for wide trapz/nz
3079
- (decl gen_trapif_val_i128 (ZeroCond ValueRegs TrapCode) InstOutput)
3080
- (rule (gen_trapif_val_i128 zero_cond value trap_code)
3081
- (let ((lo XReg (value_regs_get value 0))
3082
- (hi XReg (value_regs_get value 1))
3083
- (test XReg (rv_or hi lo)))
3084
- (gen_trapif (zero_cond_to_cc zero_cond) test (zero_reg) trap_code)))
3085
-
3086
- ;;;; Helpers for Emitting Calls ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3087
-
3088
- (decl gen_call_info (Sig ExternalName CallArgList CallRetList OptionTryCallInfo) BoxCallInfo)
3089
- (extern constructor gen_call_info gen_call_info)
3090
-
3091
- (decl gen_call_ind_info (Sig Reg CallArgList CallRetList OptionTryCallInfo) BoxCallIndInfo)
3092
- (extern constructor gen_call_ind_info gen_call_ind_info)
3093
-
3094
- (decl gen_return_call_info (Sig ExternalName CallArgList) BoxReturnCallInfo)
3095
- (extern constructor gen_return_call_info gen_return_call_info)
3096
-
3097
- (decl gen_return_call_ind_info (Sig Reg CallArgList) BoxReturnCallIndInfo)
3098
- (extern constructor gen_return_call_ind_info gen_return_call_ind_info)
3099
-
3100
- ;; Helper for creating `MInst.Call` instructions.
3101
- (decl call_impl (BoxCallInfo) SideEffectNoResult)
3102
- (rule (call_impl info)
3103
- (SideEffectNoResult.Inst (MInst.Call info)))
3104
-
3105
- ;; Helper for creating `MInst.CallInd` instructions.
3106
- (decl call_ind_impl (BoxCallIndInfo) SideEffectNoResult)
3107
- (rule (call_ind_impl info)
3108
- (SideEffectNoResult.Inst (MInst.CallInd info)))
3109
-
3110
- ;; Helper for creating `MInst.ReturnCall` instructions.
3111
- (decl return_call_impl (BoxReturnCallInfo) SideEffectNoResult)
3112
- (rule (return_call_impl info)
3113
- (SideEffectNoResult.Inst (MInst.ReturnCall info)))
3114
-
3115
- ;; Helper for creating `MInst.ReturnCallInd` instructions.
3116
- (decl return_call_ind_impl (BoxReturnCallIndInfo) SideEffectNoResult)
3117
- (rule (return_call_ind_impl info)
3118
- (SideEffectNoResult.Inst (MInst.ReturnCallInd info)))
3119
-
3120
-
3121
- ;;; this is trying to imitate aarch64 `madd` instruction.
3122
- (decl madd (XReg XReg XReg) XReg)
3123
- (rule
3124
- (madd n m a)
3125
- (let
3126
- ((t XReg (rv_mul n m)))
3127
- (rv_add t a)))
3128
-
3129
- ;;;; Helpers for bmask ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3130
-
3131
- ;; Generates either 0 if `Value` is zero or -1 otherwise.
3132
- (decl gen_bmask (Value) XReg)
3133
-
3134
- ;; Base cases: use `snez` after a sign extension to ensure that the entire
3135
- ;; register is defined. For i128 we test both the upper and lower half.
3136
- (rule 0 (gen_bmask val @ (value_type (fits_in_64 _)))
3137
- (let ((non_zero XReg (rv_snez (sext val))))
3138
- (rv_neg non_zero)))
3139
- (rule 1 (gen_bmask val @ (value_type $I128))
3140
- (let ((non_zero XReg (rv_snez (rv_or (value_regs_get val 0) (value_regs_get val 1)))))
3141
- (rv_neg non_zero)))
3142
-
3143
- ;; If the input value is an `icmp` or an `fcmp` directly then the `snez` can
3144
- ;; be omitted because the result of the icmp or fcmp is a 0 or 1 directly. This
3145
- ;; means we can go straight to the `neg` instruction to produce the final
3146
- ;; result.
3147
- (rule 2 (gen_bmask val @ (maybe_uextend (icmp _ _ _))) (rv_neg val))
3148
- (rule 2 (gen_bmask val @ (maybe_uextend (fcmp _ _ _))) (rv_neg val))
3149
-
3150
- (decl lower_bmask (Value Type) ValueRegs)
3151
- (rule 0 (lower_bmask val (fits_in_64 _))
3152
- (value_reg (gen_bmask val)))
3153
- (rule 1 (lower_bmask val $I128)
3154
- (let ((bits XReg (gen_bmask val)))
3155
- (value_regs bits bits)))
3156
-
3157
- ;;;; Helpers for physical registers ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3158
-
3159
- (decl gen_mov_from_preg (PReg) Reg)
3160
-
3161
- (rule
3162
- (gen_mov_from_preg rm)
3163
- (let ((rd WritableXReg (temp_writable_xreg))
3164
- (_ Unit (emit (MInst.MovFromPReg rd rm))))
3165
- rd))
3166
-
3167
- (decl fp_reg () PReg)
3168
- (extern constructor fp_reg fp_reg)
3169
-
3170
- (decl sp_reg () PReg)
3171
- (extern constructor sp_reg sp_reg)
3172
-
3173
- ;; Extractor that matches all registers, except the zero register
3174
- (decl non_zero_reg () XReg)
3175
- (extern extractor non_zero_reg is_non_zero_reg)
3176
-
3177
- ;; Helper for creating the zero register.
3178
- (decl zero_reg () XReg)
3179
- (extern constructor zero_reg zero_reg)
3180
- (extern extractor zero_reg is_zero_reg)
3181
-
3182
- (decl value_regs_zero () ValueRegs)
3183
- (rule (value_regs_zero)
3184
- (value_regs (imm $I64 0) (imm $I64 0)))
3185
-
3186
- (decl writable_zero_reg () WritableReg)
3187
- (extern constructor writable_zero_reg writable_zero_reg)
3188
-
3189
-
3190
- ;;;; Helpers for floating point comparisons ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3191
-
3192
- (type FloatCompare (enum
3193
- ;; The comparison succeeded if `r` is one
3194
- (One (r XReg))
3195
- ;; The comparison succeeded if `r` is zero
3196
- (Zero (r XReg))
3197
- ))
3198
-
3199
- (decl float_compare_invert (FloatCompare) FloatCompare)
3200
- (rule (float_compare_invert (FloatCompare.One r)) (FloatCompare.Zero r))
3201
- (rule (float_compare_invert (FloatCompare.Zero r)) (FloatCompare.One r))
3202
-
3203
- (decl float_to_int_compare (FloatCompare) IntegerCompare)
3204
- (rule (float_to_int_compare (FloatCompare.One r)) (cmp_nez r))
3205
- (rule (float_to_int_compare (FloatCompare.Zero r)) (cmp_eqz r))
3206
- (convert FloatCompare IntegerCompare float_to_int_compare)
3207
-
3208
- ;; Compare two floating point numbers and return a zero/non-zero result.
3209
- (decl fcmp_to_float_compare (FloatCC Type FReg FReg) FloatCompare)
3210
-
3211
- ;; Direct codegen for unordered comparisons is not that efficient, so invert
3212
- ;; the comparison to get an ordered comparison and generate that. Then invert
3213
- ;; the result to produce the final fcmp result.
3214
- (rule 0 (fcmp_to_float_compare cc ty a b)
3215
- (if-let true (floatcc_unordered cc))
3216
- (float_compare_invert (fcmp_to_float_compare (floatcc_complement cc) ty a b)))
3217
-
3218
- ;; a is not nan && b is not nan
3219
- (rule 1 (fcmp_to_float_compare (FloatCC.Ordered) ty a b)
3220
- (FloatCompare.One (rv_and (is_not_nan ty a) (is_not_nan ty b))))
3221
-
3222
- (decl is_not_nan (Type FReg) XReg)
3223
- (rule (is_not_nan ty a) (rv_feq ty a a))
3224
-
3225
- ;; a == b
3226
- (rule 1 (fcmp_to_float_compare (FloatCC.Equal) ty a b)
3227
- (FloatCompare.One (rv_feq ty a b)))
3228
-
3229
- ;; a != b
3230
- ;; == !(a == b)
3231
- (rule 1 (fcmp_to_float_compare (FloatCC.NotEqual) ty a b)
3232
- (FloatCompare.Zero (rv_feq ty a b)))
3233
-
3234
- ;; a < b || a > b
3235
- (rule 1 (fcmp_to_float_compare (FloatCC.OrderedNotEqual) ty a b)
3236
- (FloatCompare.One (rv_or (rv_flt ty a b) (rv_fgt ty a b))))
3237
-
3238
- ;; a < b
3239
- (rule 1 (fcmp_to_float_compare (FloatCC.LessThan) ty a b)
3240
- (FloatCompare.One (rv_flt ty a b)))
3241
-
3242
- ;; a <= b
3243
- (rule 1 (fcmp_to_float_compare (FloatCC.LessThanOrEqual) ty a b)
3244
- (FloatCompare.One (rv_fle ty a b)))
3245
-
3246
- ;; a > b
3247
- (rule 1 (fcmp_to_float_compare (FloatCC.GreaterThan) ty a b)
3248
- (FloatCompare.One (rv_fgt ty a b)))
3249
-
3250
- ;; a >= b
3251
- (rule 1 (fcmp_to_float_compare (FloatCC.GreaterThanOrEqual) ty a b)
3252
- (FloatCompare.One (rv_fge ty a b)))