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,3533 +0,0 @@
1
- //! This module defines s390x-specific machine instruction types.
2
-
3
- use crate::binemit::{Addend, CodeOffset, Reloc};
4
- use crate::ir::{ExternalName, Type, types};
5
- use crate::isa::s390x::abi::S390xMachineDeps;
6
- use crate::isa::{CallConv, FunctionAlignment};
7
- use crate::machinst::*;
8
- use crate::{CodegenError, CodegenResult, settings};
9
- use alloc::boxed::Box;
10
- use alloc::vec::Vec;
11
- use smallvec::SmallVec;
12
- use std::fmt::Write;
13
- use std::string::{String, ToString};
14
- pub mod regs;
15
- pub use self::regs::*;
16
- pub mod imms;
17
- pub use self::imms::*;
18
- pub mod args;
19
- pub use self::args::*;
20
- pub mod emit;
21
- pub use self::emit::*;
22
- pub mod unwind;
23
-
24
- #[cfg(test)]
25
- mod emit_tests;
26
-
27
- //=============================================================================
28
- // Instructions (top level): definition
29
-
30
- pub use crate::isa::s390x::lower::isle::generated_code::{
31
- ALUOp, CmpOp, FPUOp1, FPUOp2, FPUOp3, FpuConv128Op, FpuRoundMode, FpuRoundOp, LaneOrder,
32
- MInst as Inst, RxSBGOp, ShiftOp, SymbolReloc, UnaryOp, VecBinaryOp, VecFloatCmpOp, VecIntCmpOp,
33
- VecShiftOp, VecUnaryOp,
34
- };
35
-
36
- /// The destination of a call instruction.
37
- #[derive(Clone, Debug)]
38
- pub enum CallInstDest {
39
- /// Direct call.
40
- Direct { name: ExternalName },
41
- /// Indirect call.
42
- Indirect { reg: Reg },
43
- }
44
-
45
- /// Additional information for (direct) ReturnCall instructions, left out of line to lower the size of
46
- /// the Inst enum.
47
- #[derive(Clone, Debug)]
48
- pub struct ReturnCallInfo<T> {
49
- pub dest: T,
50
- pub uses: CallArgList,
51
- pub callee_pop_size: u32,
52
- }
53
-
54
- #[test]
55
- fn inst_size_test() {
56
- // This test will help with unintentionally growing the size
57
- // of the Inst enum.
58
- assert_eq!(32, std::mem::size_of::<Inst>());
59
- }
60
-
61
- /// A register pair. Enum so it can be destructured in ISLE.
62
- #[derive(Clone, Copy, Debug)]
63
- pub struct RegPair {
64
- pub hi: Reg,
65
- pub lo: Reg,
66
- }
67
-
68
- /// A writable register pair. Enum so it can be destructured in ISLE.
69
- #[derive(Clone, Copy, Debug)]
70
- pub struct WritableRegPair {
71
- pub hi: Writable<Reg>,
72
- pub lo: Writable<Reg>,
73
- }
74
-
75
- impl WritableRegPair {
76
- pub fn to_regpair(&self) -> RegPair {
77
- RegPair {
78
- hi: self.hi.to_reg(),
79
- lo: self.lo.to_reg(),
80
- }
81
- }
82
- }
83
-
84
- /// Supported instruction sets
85
- #[expect(non_camel_case_types, reason = "matching native names")]
86
- #[derive(Debug)]
87
- pub(crate) enum InstructionSet {
88
- /// Baseline ISA for cranelift is z14.
89
- Base,
90
- /// Miscellaneous-Instruction-Extensions Facility 3 (z15)
91
- MIE3,
92
- /// Vector-Enhancements Facility 2 (z15)
93
- VXRS_EXT2,
94
- }
95
-
96
- impl Inst {
97
- /// Retrieve the ISA feature set in which the instruction is available.
98
- fn available_in_isa(&self) -> InstructionSet {
99
- match self {
100
- // These instructions are part of the baseline ISA for cranelift (z14)
101
- Inst::Nop0
102
- | Inst::Nop2
103
- | Inst::AluRRSImm16 { .. }
104
- | Inst::AluRR { .. }
105
- | Inst::AluRX { .. }
106
- | Inst::AluRSImm16 { .. }
107
- | Inst::AluRSImm32 { .. }
108
- | Inst::AluRUImm32 { .. }
109
- | Inst::AluRUImm16Shifted { .. }
110
- | Inst::AluRUImm32Shifted { .. }
111
- | Inst::ShiftRR { .. }
112
- | Inst::RxSBG { .. }
113
- | Inst::RxSBGTest { .. }
114
- | Inst::SMulWide { .. }
115
- | Inst::UMulWide { .. }
116
- | Inst::SDivMod32 { .. }
117
- | Inst::SDivMod64 { .. }
118
- | Inst::UDivMod32 { .. }
119
- | Inst::UDivMod64 { .. }
120
- | Inst::Flogr { .. }
121
- | Inst::CmpRR { .. }
122
- | Inst::CmpRX { .. }
123
- | Inst::CmpRSImm16 { .. }
124
- | Inst::CmpRSImm32 { .. }
125
- | Inst::CmpRUImm32 { .. }
126
- | Inst::CmpTrapRR { .. }
127
- | Inst::CmpTrapRSImm16 { .. }
128
- | Inst::CmpTrapRUImm16 { .. }
129
- | Inst::AtomicRmw { .. }
130
- | Inst::AtomicCas32 { .. }
131
- | Inst::AtomicCas64 { .. }
132
- | Inst::Fence
133
- | Inst::Load32 { .. }
134
- | Inst::Load32ZExt8 { .. }
135
- | Inst::Load32SExt8 { .. }
136
- | Inst::Load32ZExt16 { .. }
137
- | Inst::Load32SExt16 { .. }
138
- | Inst::Load64 { .. }
139
- | Inst::Load64ZExt8 { .. }
140
- | Inst::Load64SExt8 { .. }
141
- | Inst::Load64ZExt16 { .. }
142
- | Inst::Load64SExt16 { .. }
143
- | Inst::Load64ZExt32 { .. }
144
- | Inst::Load64SExt32 { .. }
145
- | Inst::LoadRev16 { .. }
146
- | Inst::LoadRev32 { .. }
147
- | Inst::LoadRev64 { .. }
148
- | Inst::Store8 { .. }
149
- | Inst::Store16 { .. }
150
- | Inst::Store32 { .. }
151
- | Inst::Store64 { .. }
152
- | Inst::StoreImm8 { .. }
153
- | Inst::StoreImm16 { .. }
154
- | Inst::StoreImm32SExt16 { .. }
155
- | Inst::StoreImm64SExt16 { .. }
156
- | Inst::StoreRev16 { .. }
157
- | Inst::StoreRev32 { .. }
158
- | Inst::StoreRev64 { .. }
159
- | Inst::LoadMultiple64 { .. }
160
- | Inst::StoreMultiple64 { .. }
161
- | Inst::Mov32 { .. }
162
- | Inst::Mov64 { .. }
163
- | Inst::MovPReg { .. }
164
- | Inst::Mov32Imm { .. }
165
- | Inst::Mov32SImm16 { .. }
166
- | Inst::Mov64SImm16 { .. }
167
- | Inst::Mov64SImm32 { .. }
168
- | Inst::Mov64UImm16Shifted { .. }
169
- | Inst::Mov64UImm32Shifted { .. }
170
- | Inst::Insert64UImm16Shifted { .. }
171
- | Inst::Insert64UImm32Shifted { .. }
172
- | Inst::LoadAR { .. }
173
- | Inst::InsertAR { .. }
174
- | Inst::Extend { .. }
175
- | Inst::CMov32 { .. }
176
- | Inst::CMov64 { .. }
177
- | Inst::CMov32SImm16 { .. }
178
- | Inst::CMov64SImm16 { .. }
179
- | Inst::FpuMove32 { .. }
180
- | Inst::FpuMove64 { .. }
181
- | Inst::FpuCMov32 { .. }
182
- | Inst::FpuCMov64 { .. }
183
- | Inst::FpuRR { .. }
184
- | Inst::FpuRRR { .. }
185
- | Inst::FpuRRRR { .. }
186
- | Inst::FpuConv128FromInt { .. }
187
- | Inst::FpuConv128ToInt { .. }
188
- | Inst::FpuCmp32 { .. }
189
- | Inst::FpuCmp64 { .. }
190
- | Inst::FpuCmp128 { .. }
191
- | Inst::VecRRR { .. }
192
- | Inst::VecRR { .. }
193
- | Inst::VecShiftRR { .. }
194
- | Inst::VecSelect { .. }
195
- | Inst::VecPermute { .. }
196
- | Inst::VecPermuteDWImm { .. }
197
- | Inst::VecIntCmp { .. }
198
- | Inst::VecIntCmpS { .. }
199
- | Inst::VecFloatCmp { .. }
200
- | Inst::VecFloatCmpS { .. }
201
- | Inst::VecInt128SCmpHi { .. }
202
- | Inst::VecInt128UCmpHi { .. }
203
- | Inst::VecLoad { .. }
204
- | Inst::VecStore { .. }
205
- | Inst::VecLoadReplicate { .. }
206
- | Inst::VecMov { .. }
207
- | Inst::VecCMov { .. }
208
- | Inst::MovToVec128 { .. }
209
- | Inst::VecImmByteMask { .. }
210
- | Inst::VecImmBitMask { .. }
211
- | Inst::VecImmReplicate { .. }
212
- | Inst::VecLoadLane { .. }
213
- | Inst::VecLoadLaneUndef { .. }
214
- | Inst::VecStoreLane { .. }
215
- | Inst::VecInsertLane { .. }
216
- | Inst::VecInsertLaneUndef { .. }
217
- | Inst::VecExtractLane { .. }
218
- | Inst::VecInsertLaneImm { .. }
219
- | Inst::VecInsertLaneImmUndef { .. }
220
- | Inst::VecReplicateLane { .. }
221
- | Inst::VecEltRev { .. }
222
- | Inst::AllocateArgs { .. }
223
- | Inst::Call { .. }
224
- | Inst::ReturnCall { .. }
225
- | Inst::Args { .. }
226
- | Inst::Rets { .. }
227
- | Inst::Ret { .. }
228
- | Inst::Jump { .. }
229
- | Inst::CondBr { .. }
230
- | Inst::TrapIf { .. }
231
- | Inst::IndirectBr { .. }
232
- | Inst::Debugtrap
233
- | Inst::Trap { .. }
234
- | Inst::JTSequence { .. }
235
- | Inst::StackProbeLoop { .. }
236
- | Inst::LoadSymbolReloc { .. }
237
- | Inst::LoadAddr { .. }
238
- | Inst::Loop { .. }
239
- | Inst::CondBreak { .. }
240
- | Inst::Unwind { .. }
241
- | Inst::ElfTlsGetOffset { .. } => InstructionSet::Base,
242
-
243
- // These depend on the opcode
244
- Inst::AluRRR { alu_op, .. } => match alu_op {
245
- ALUOp::NotAnd32 | ALUOp::NotAnd64 => InstructionSet::MIE3,
246
- ALUOp::NotOrr32 | ALUOp::NotOrr64 => InstructionSet::MIE3,
247
- ALUOp::NotXor32 | ALUOp::NotXor64 => InstructionSet::MIE3,
248
- ALUOp::AndNot32 | ALUOp::AndNot64 => InstructionSet::MIE3,
249
- ALUOp::OrrNot32 | ALUOp::OrrNot64 => InstructionSet::MIE3,
250
- _ => InstructionSet::Base,
251
- },
252
- Inst::UnaryRR { op, .. } => match op {
253
- UnaryOp::PopcntReg => InstructionSet::MIE3,
254
- _ => InstructionSet::Base,
255
- },
256
- Inst::FpuRound { op, .. } => match op {
257
- FpuRoundOp::ToSInt32 | FpuRoundOp::FromSInt32 => InstructionSet::VXRS_EXT2,
258
- FpuRoundOp::ToUInt32 | FpuRoundOp::FromUInt32 => InstructionSet::VXRS_EXT2,
259
- FpuRoundOp::ToSInt32x4 | FpuRoundOp::FromSInt32x4 => InstructionSet::VXRS_EXT2,
260
- FpuRoundOp::ToUInt32x4 | FpuRoundOp::FromUInt32x4 => InstructionSet::VXRS_EXT2,
261
- _ => InstructionSet::Base,
262
- },
263
-
264
- // These are all part of VXRS_EXT2
265
- Inst::VecLoadRev { .. }
266
- | Inst::VecLoadByte16Rev { .. }
267
- | Inst::VecLoadByte32Rev { .. }
268
- | Inst::VecLoadByte64Rev { .. }
269
- | Inst::VecLoadElt16Rev { .. }
270
- | Inst::VecLoadElt32Rev { .. }
271
- | Inst::VecLoadElt64Rev { .. }
272
- | Inst::VecStoreRev { .. }
273
- | Inst::VecStoreByte16Rev { .. }
274
- | Inst::VecStoreByte32Rev { .. }
275
- | Inst::VecStoreByte64Rev { .. }
276
- | Inst::VecStoreElt16Rev { .. }
277
- | Inst::VecStoreElt32Rev { .. }
278
- | Inst::VecStoreElt64Rev { .. }
279
- | Inst::VecLoadReplicateRev { .. }
280
- | Inst::VecLoadLaneRev { .. }
281
- | Inst::VecLoadLaneRevUndef { .. }
282
- | Inst::VecStoreLaneRev { .. } => InstructionSet::VXRS_EXT2,
283
-
284
- Inst::DummyUse { .. } => InstructionSet::Base,
285
- }
286
- }
287
-
288
- /// Create a 128-bit move instruction.
289
- pub fn mov128(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
290
- assert!(to_reg.to_reg().class() == RegClass::Float);
291
- assert!(from_reg.class() == RegClass::Float);
292
- Inst::VecMov {
293
- rd: to_reg,
294
- rn: from_reg,
295
- }
296
- }
297
-
298
- /// Create a 64-bit move instruction.
299
- pub fn mov64(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
300
- assert!(to_reg.to_reg().class() == from_reg.class());
301
- if from_reg.class() == RegClass::Int {
302
- Inst::Mov64 {
303
- rd: to_reg,
304
- rm: from_reg,
305
- }
306
- } else {
307
- Inst::FpuMove64 {
308
- rd: to_reg,
309
- rn: from_reg,
310
- }
311
- }
312
- }
313
-
314
- /// Create a 32-bit move instruction.
315
- pub fn mov32(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
316
- if from_reg.class() == RegClass::Int {
317
- Inst::Mov32 {
318
- rd: to_reg,
319
- rm: from_reg,
320
- }
321
- } else {
322
- Inst::FpuMove32 {
323
- rd: to_reg,
324
- rn: from_reg,
325
- }
326
- }
327
- }
328
-
329
- /// Generic constructor for a load (zero-extending where appropriate).
330
- pub fn gen_load(into_reg: Writable<Reg>, mem: MemArg, ty: Type) -> Inst {
331
- match ty {
332
- types::I8 => Inst::Load64ZExt8 { rd: into_reg, mem },
333
- types::I16 => Inst::Load64ZExt16 { rd: into_reg, mem },
334
- types::I32 => Inst::Load64ZExt32 { rd: into_reg, mem },
335
- types::I64 => Inst::Load64 { rd: into_reg, mem },
336
- types::F16 => Inst::VecLoadLaneUndef {
337
- size: 16,
338
- rd: into_reg,
339
- mem,
340
- lane_imm: 0,
341
- },
342
- types::F32 => Inst::VecLoadLaneUndef {
343
- size: 32,
344
- rd: into_reg,
345
- mem,
346
- lane_imm: 0,
347
- },
348
- types::F64 => Inst::VecLoadLaneUndef {
349
- size: 64,
350
- rd: into_reg,
351
- mem,
352
- lane_imm: 0,
353
- },
354
- _ if ty.bits() == 128 => Inst::VecLoad { rd: into_reg, mem },
355
- _ => unimplemented!("gen_load({})", ty),
356
- }
357
- }
358
-
359
- /// Generic constructor for a store.
360
- pub fn gen_store(mem: MemArg, from_reg: Reg, ty: Type) -> Inst {
361
- match ty {
362
- types::I8 => Inst::Store8 { rd: from_reg, mem },
363
- types::I16 => Inst::Store16 { rd: from_reg, mem },
364
- types::I32 => Inst::Store32 { rd: from_reg, mem },
365
- types::I64 => Inst::Store64 { rd: from_reg, mem },
366
- types::F16 => Inst::VecStoreLane {
367
- size: 16,
368
- rd: from_reg,
369
- mem,
370
- lane_imm: 0,
371
- },
372
- types::F32 => Inst::VecStoreLane {
373
- size: 32,
374
- rd: from_reg,
375
- mem,
376
- lane_imm: 0,
377
- },
378
- types::F64 => Inst::VecStoreLane {
379
- size: 64,
380
- rd: from_reg,
381
- mem,
382
- lane_imm: 0,
383
- },
384
- _ if ty.bits() == 128 => Inst::VecStore { rd: from_reg, mem },
385
- _ => unimplemented!("gen_store({})", ty),
386
- }
387
- }
388
- }
389
-
390
- //=============================================================================
391
- // Instructions: get_regs
392
-
393
- fn memarg_operands(memarg: &mut MemArg, collector: &mut impl OperandVisitor) {
394
- match memarg {
395
- MemArg::BXD12 { base, index, .. } | MemArg::BXD20 { base, index, .. } => {
396
- collector.reg_use(base);
397
- collector.reg_use(index);
398
- }
399
- MemArg::Label { .. } | MemArg::Constant { .. } | MemArg::Symbol { .. } => {}
400
- MemArg::RegOffset { reg, .. } => {
401
- collector.reg_use(reg);
402
- }
403
- MemArg::InitialSPOffset { .. }
404
- | MemArg::IncomingArgOffset { .. }
405
- | MemArg::OutgoingArgOffset { .. }
406
- | MemArg::SlotOffset { .. }
407
- | MemArg::SpillOffset { .. } => {}
408
- }
409
- // mem_finalize might require %r1 to hold (part of) the address.
410
- // Conservatively assume this will always be necessary here.
411
- collector.reg_fixed_nonallocatable(gpr_preg(1));
412
- }
413
-
414
- fn s390x_get_operands(inst: &mut Inst, collector: &mut DenyReuseVisitor<impl OperandVisitor>) {
415
- match inst {
416
- Inst::AluRRR { rd, rn, rm, .. } => {
417
- collector.reg_def(rd);
418
- collector.reg_use(rn);
419
- collector.reg_use(rm);
420
- }
421
- Inst::AluRRSImm16 { rd, rn, .. } => {
422
- collector.reg_def(rd);
423
- collector.reg_use(rn);
424
- }
425
- Inst::AluRR { rd, ri, rm, .. } => {
426
- collector.reg_reuse_def(rd, 1);
427
- collector.reg_use(ri);
428
- collector.reg_use(rm);
429
- }
430
- Inst::AluRX { rd, ri, mem, .. } => {
431
- collector.reg_reuse_def(rd, 1);
432
- collector.reg_use(ri);
433
- memarg_operands(mem, collector);
434
- }
435
- Inst::AluRSImm16 { rd, ri, .. } => {
436
- collector.reg_reuse_def(rd, 1);
437
- collector.reg_use(ri);
438
- }
439
- Inst::AluRSImm32 { rd, ri, .. } => {
440
- collector.reg_reuse_def(rd, 1);
441
- collector.reg_use(ri);
442
- }
443
- Inst::AluRUImm32 { rd, ri, .. } => {
444
- collector.reg_reuse_def(rd, 1);
445
- collector.reg_use(ri);
446
- }
447
- Inst::AluRUImm16Shifted { rd, ri, .. } => {
448
- collector.reg_reuse_def(rd, 1);
449
- collector.reg_use(ri);
450
- }
451
- Inst::AluRUImm32Shifted { rd, ri, .. } => {
452
- collector.reg_reuse_def(rd, 1);
453
- collector.reg_use(ri);
454
- }
455
- Inst::SMulWide { rd, rn, rm } => {
456
- collector.reg_use(rn);
457
- collector.reg_use(rm);
458
- // FIXME: The pair is hard-coded as %r2/%r3 because regalloc cannot handle pairs. If
459
- // that changes, all the hard-coded uses of %r2/%r3 can be changed.
460
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
461
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
462
- }
463
- Inst::UMulWide { rd, ri, rn } => {
464
- collector.reg_use(rn);
465
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
466
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
467
- collector.reg_fixed_use(ri, gpr(3));
468
- }
469
- Inst::SDivMod32 { rd, ri, rn } | Inst::SDivMod64 { rd, ri, rn } => {
470
- collector.reg_use(rn);
471
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
472
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
473
- collector.reg_fixed_use(ri, gpr(3));
474
- }
475
- Inst::UDivMod32 { rd, ri, rn } | Inst::UDivMod64 { rd, ri, rn } => {
476
- collector.reg_use(rn);
477
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
478
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
479
- collector.reg_fixed_use(&mut ri.hi, gpr(2));
480
- collector.reg_fixed_use(&mut ri.lo, gpr(3));
481
- }
482
- Inst::Flogr { rd, rn } => {
483
- collector.reg_use(rn);
484
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
485
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
486
- }
487
- Inst::ShiftRR {
488
- rd, rn, shift_reg, ..
489
- } => {
490
- collector.reg_def(rd);
491
- collector.reg_use(rn);
492
- collector.reg_use(shift_reg);
493
- }
494
- Inst::RxSBG { rd, ri, rn, .. } => {
495
- collector.reg_reuse_def(rd, 1);
496
- collector.reg_use(ri);
497
- collector.reg_use(rn);
498
- }
499
- Inst::RxSBGTest { rd, rn, .. } => {
500
- collector.reg_use(rd);
501
- collector.reg_use(rn);
502
- }
503
- Inst::UnaryRR { rd, rn, .. } => {
504
- collector.reg_def(rd);
505
- collector.reg_use(rn);
506
- }
507
- Inst::CmpRR { rn, rm, .. } => {
508
- collector.reg_use(rn);
509
- collector.reg_use(rm);
510
- }
511
- Inst::CmpRX { rn, mem, .. } => {
512
- collector.reg_use(rn);
513
- memarg_operands(mem, collector);
514
- }
515
- Inst::CmpRSImm16 { rn, .. } => {
516
- collector.reg_use(rn);
517
- }
518
- Inst::CmpRSImm32 { rn, .. } => {
519
- collector.reg_use(rn);
520
- }
521
- Inst::CmpRUImm32 { rn, .. } => {
522
- collector.reg_use(rn);
523
- }
524
- Inst::CmpTrapRR { rn, rm, .. } => {
525
- collector.reg_use(rn);
526
- collector.reg_use(rm);
527
- }
528
- Inst::CmpTrapRSImm16 { rn, .. } => {
529
- collector.reg_use(rn);
530
- }
531
- Inst::CmpTrapRUImm16 { rn, .. } => {
532
- collector.reg_use(rn);
533
- }
534
- Inst::AtomicRmw { rd, rn, mem, .. } => {
535
- collector.reg_def(rd);
536
- collector.reg_use(rn);
537
- memarg_operands(mem, collector);
538
- }
539
- Inst::AtomicCas32 {
540
- rd, ri, rn, mem, ..
541
- }
542
- | Inst::AtomicCas64 {
543
- rd, ri, rn, mem, ..
544
- } => {
545
- collector.reg_reuse_def(rd, 1);
546
- collector.reg_use(ri);
547
- collector.reg_use(rn);
548
- memarg_operands(mem, collector);
549
- }
550
- Inst::Fence => {}
551
- Inst::Load32 { rd, mem, .. }
552
- | Inst::Load32ZExt8 { rd, mem, .. }
553
- | Inst::Load32SExt8 { rd, mem, .. }
554
- | Inst::Load32ZExt16 { rd, mem, .. }
555
- | Inst::Load32SExt16 { rd, mem, .. }
556
- | Inst::Load64 { rd, mem, .. }
557
- | Inst::Load64ZExt8 { rd, mem, .. }
558
- | Inst::Load64SExt8 { rd, mem, .. }
559
- | Inst::Load64ZExt16 { rd, mem, .. }
560
- | Inst::Load64SExt16 { rd, mem, .. }
561
- | Inst::Load64ZExt32 { rd, mem, .. }
562
- | Inst::Load64SExt32 { rd, mem, .. }
563
- | Inst::LoadRev16 { rd, mem, .. }
564
- | Inst::LoadRev32 { rd, mem, .. }
565
- | Inst::LoadRev64 { rd, mem, .. } => {
566
- collector.reg_def(rd);
567
- memarg_operands(mem, collector);
568
- }
569
- Inst::Store8 { rd, mem, .. }
570
- | Inst::Store16 { rd, mem, .. }
571
- | Inst::Store32 { rd, mem, .. }
572
- | Inst::Store64 { rd, mem, .. }
573
- | Inst::StoreRev16 { rd, mem, .. }
574
- | Inst::StoreRev32 { rd, mem, .. }
575
- | Inst::StoreRev64 { rd, mem, .. } => {
576
- collector.reg_use(rd);
577
- memarg_operands(mem, collector);
578
- }
579
- Inst::StoreImm8 { mem, .. }
580
- | Inst::StoreImm16 { mem, .. }
581
- | Inst::StoreImm32SExt16 { mem, .. }
582
- | Inst::StoreImm64SExt16 { mem, .. } => {
583
- memarg_operands(mem, collector);
584
- }
585
- Inst::LoadMultiple64 { rt, rt2, mem, .. } => {
586
- memarg_operands(mem, collector);
587
- let first_regnum = rt.to_reg().to_real_reg().unwrap().hw_enc();
588
- let last_regnum = rt2.to_reg().to_real_reg().unwrap().hw_enc();
589
- for regnum in first_regnum..last_regnum + 1 {
590
- collector.reg_fixed_nonallocatable(gpr_preg(regnum));
591
- }
592
- }
593
- Inst::StoreMultiple64 { rt, rt2, mem, .. } => {
594
- memarg_operands(mem, collector);
595
- let first_regnum = rt.to_real_reg().unwrap().hw_enc();
596
- let last_regnum = rt2.to_real_reg().unwrap().hw_enc();
597
- for regnum in first_regnum..last_regnum + 1 {
598
- collector.reg_fixed_nonallocatable(gpr_preg(regnum));
599
- }
600
- }
601
- Inst::Mov64 { rd, rm } => {
602
- collector.reg_def(rd);
603
- collector.reg_use(rm);
604
- }
605
- Inst::MovPReg { rd, rm } => {
606
- collector.reg_def(rd);
607
- collector.reg_fixed_nonallocatable(*rm);
608
- }
609
- Inst::Mov32 { rd, rm } => {
610
- collector.reg_def(rd);
611
- collector.reg_use(rm);
612
- }
613
- Inst::Mov32Imm { rd, .. }
614
- | Inst::Mov32SImm16 { rd, .. }
615
- | Inst::Mov64SImm16 { rd, .. }
616
- | Inst::Mov64SImm32 { rd, .. }
617
- | Inst::Mov64UImm16Shifted { rd, .. }
618
- | Inst::Mov64UImm32Shifted { rd, .. } => {
619
- collector.reg_def(rd);
620
- }
621
- Inst::CMov32 { rd, ri, rm, .. } | Inst::CMov64 { rd, ri, rm, .. } => {
622
- collector.reg_reuse_def(rd, 1);
623
- collector.reg_use(ri);
624
- collector.reg_use(rm);
625
- }
626
- Inst::CMov32SImm16 { rd, ri, .. } | Inst::CMov64SImm16 { rd, ri, .. } => {
627
- collector.reg_reuse_def(rd, 1);
628
- collector.reg_use(ri);
629
- }
630
- Inst::Insert64UImm16Shifted { rd, ri, .. } | Inst::Insert64UImm32Shifted { rd, ri, .. } => {
631
- collector.reg_reuse_def(rd, 1);
632
- collector.reg_use(ri);
633
- }
634
- Inst::LoadAR { rd, .. } => {
635
- collector.reg_def(rd);
636
- }
637
- Inst::InsertAR { rd, ri, .. } => {
638
- collector.reg_reuse_def(rd, 1);
639
- collector.reg_use(ri);
640
- }
641
- Inst::FpuMove32 { rd, rn } | Inst::FpuMove64 { rd, rn } => {
642
- collector.reg_def(rd);
643
- collector.reg_use(rn);
644
- }
645
- Inst::FpuCMov32 { rd, ri, rm, .. } | Inst::FpuCMov64 { rd, ri, rm, .. } => {
646
- collector.reg_reuse_def(rd, 1);
647
- collector.reg_use(ri);
648
- collector.reg_use(rm);
649
- }
650
- Inst::FpuRR { rd, rn, .. } => {
651
- collector.reg_def(rd);
652
- collector.reg_use(rn);
653
- }
654
- Inst::FpuRRR { rd, rn, rm, .. } => {
655
- collector.reg_def(rd);
656
- collector.reg_use(rn);
657
- collector.reg_use(rm);
658
- }
659
- Inst::FpuRRRR { rd, rn, rm, ra, .. } => {
660
- collector.reg_def(rd);
661
- collector.reg_use(rn);
662
- collector.reg_use(rm);
663
- collector.reg_use(ra);
664
- }
665
- Inst::FpuCmp32 { rn, rm } | Inst::FpuCmp64 { rn, rm } | Inst::FpuCmp128 { rn, rm } => {
666
- collector.reg_use(rn);
667
- collector.reg_use(rm);
668
- }
669
- Inst::FpuRound { rd, rn, .. } => {
670
- collector.reg_def(rd);
671
- collector.reg_use(rn);
672
- }
673
- Inst::FpuConv128FromInt { rd, rn, .. } => {
674
- collector.reg_fixed_def(&mut rd.hi, vr(1));
675
- collector.reg_fixed_def(&mut rd.lo, vr(3));
676
- collector.reg_use(rn);
677
- }
678
- Inst::FpuConv128ToInt { rd, rn, .. } => {
679
- collector.reg_def(rd);
680
- collector.reg_fixed_use(&mut rn.hi, vr(1));
681
- collector.reg_fixed_use(&mut rn.lo, vr(3));
682
- }
683
- Inst::VecRRR { rd, rn, rm, .. } => {
684
- collector.reg_def(rd);
685
- collector.reg_use(rn);
686
- collector.reg_use(rm);
687
- }
688
- Inst::VecRR { rd, rn, .. } => {
689
- collector.reg_def(rd);
690
- collector.reg_use(rn);
691
- }
692
- Inst::VecShiftRR {
693
- rd, rn, shift_reg, ..
694
- } => {
695
- collector.reg_def(rd);
696
- collector.reg_use(rn);
697
- collector.reg_use(shift_reg);
698
- }
699
- Inst::VecSelect { rd, rn, rm, ra, .. } => {
700
- collector.reg_def(rd);
701
- collector.reg_use(rn);
702
- collector.reg_use(rm);
703
- collector.reg_use(ra);
704
- }
705
- Inst::VecPermute { rd, rn, rm, ra, .. } => {
706
- collector.reg_def(rd);
707
- collector.reg_use(rn);
708
- collector.reg_use(rm);
709
- collector.reg_use(ra);
710
- }
711
- Inst::VecPermuteDWImm { rd, rn, rm, .. } => {
712
- collector.reg_def(rd);
713
- collector.reg_use(rn);
714
- collector.reg_use(rm);
715
- }
716
- Inst::VecIntCmp { rd, rn, rm, .. } | Inst::VecIntCmpS { rd, rn, rm, .. } => {
717
- collector.reg_def(rd);
718
- collector.reg_use(rn);
719
- collector.reg_use(rm);
720
- }
721
- Inst::VecFloatCmp { rd, rn, rm, .. } | Inst::VecFloatCmpS { rd, rn, rm, .. } => {
722
- collector.reg_def(rd);
723
- collector.reg_use(rn);
724
- collector.reg_use(rm);
725
- }
726
- Inst::VecInt128SCmpHi { tmp, rn, rm, .. } | Inst::VecInt128UCmpHi { tmp, rn, rm, .. } => {
727
- collector.reg_def(tmp);
728
- collector.reg_use(rn);
729
- collector.reg_use(rm);
730
- }
731
- Inst::VecLoad { rd, mem, .. } => {
732
- collector.reg_def(rd);
733
- memarg_operands(mem, collector);
734
- }
735
- Inst::VecLoadRev { rd, mem, .. } => {
736
- collector.reg_def(rd);
737
- memarg_operands(mem, collector);
738
- }
739
- Inst::VecLoadByte16Rev { rd, mem, .. } => {
740
- collector.reg_def(rd);
741
- memarg_operands(mem, collector);
742
- }
743
- Inst::VecLoadByte32Rev { rd, mem, .. } => {
744
- collector.reg_def(rd);
745
- memarg_operands(mem, collector);
746
- }
747
- Inst::VecLoadByte64Rev { rd, mem, .. } => {
748
- collector.reg_def(rd);
749
- memarg_operands(mem, collector);
750
- }
751
- Inst::VecLoadElt16Rev { rd, mem, .. } => {
752
- collector.reg_def(rd);
753
- memarg_operands(mem, collector);
754
- }
755
- Inst::VecLoadElt32Rev { rd, mem, .. } => {
756
- collector.reg_def(rd);
757
- memarg_operands(mem, collector);
758
- }
759
- Inst::VecLoadElt64Rev { rd, mem, .. } => {
760
- collector.reg_def(rd);
761
- memarg_operands(mem, collector);
762
- }
763
- Inst::VecStore { rd, mem, .. } => {
764
- collector.reg_use(rd);
765
- memarg_operands(mem, collector);
766
- }
767
- Inst::VecStoreRev { rd, mem, .. } => {
768
- collector.reg_use(rd);
769
- memarg_operands(mem, collector);
770
- }
771
- Inst::VecStoreByte16Rev { rd, mem, .. } => {
772
- collector.reg_use(rd);
773
- memarg_operands(mem, collector);
774
- }
775
- Inst::VecStoreByte32Rev { rd, mem, .. } => {
776
- collector.reg_use(rd);
777
- memarg_operands(mem, collector);
778
- }
779
- Inst::VecStoreByte64Rev { rd, mem, .. } => {
780
- collector.reg_use(rd);
781
- memarg_operands(mem, collector);
782
- }
783
- Inst::VecStoreElt16Rev { rd, mem, .. } => {
784
- collector.reg_use(rd);
785
- memarg_operands(mem, collector);
786
- }
787
- Inst::VecStoreElt32Rev { rd, mem, .. } => {
788
- collector.reg_use(rd);
789
- memarg_operands(mem, collector);
790
- }
791
- Inst::VecStoreElt64Rev { rd, mem, .. } => {
792
- collector.reg_use(rd);
793
- memarg_operands(mem, collector);
794
- }
795
- Inst::VecLoadReplicate { rd, mem, .. } => {
796
- collector.reg_def(rd);
797
- memarg_operands(mem, collector);
798
- }
799
- Inst::VecLoadReplicateRev { rd, mem, .. } => {
800
- collector.reg_def(rd);
801
- memarg_operands(mem, collector);
802
- }
803
- Inst::VecMov { rd, rn } => {
804
- collector.reg_def(rd);
805
- collector.reg_use(rn);
806
- }
807
- Inst::VecCMov { rd, ri, rm, .. } => {
808
- collector.reg_reuse_def(rd, 1);
809
- collector.reg_use(ri);
810
- collector.reg_use(rm);
811
- }
812
- Inst::MovToVec128 { rd, rn, rm } => {
813
- collector.reg_def(rd);
814
- collector.reg_use(rn);
815
- collector.reg_use(rm);
816
- }
817
- Inst::VecImmByteMask { rd, .. } => {
818
- collector.reg_def(rd);
819
- }
820
- Inst::VecImmBitMask { rd, .. } => {
821
- collector.reg_def(rd);
822
- }
823
- Inst::VecImmReplicate { rd, .. } => {
824
- collector.reg_def(rd);
825
- }
826
- Inst::VecLoadLane { rd, ri, mem, .. } => {
827
- collector.reg_reuse_def(rd, 1);
828
- collector.reg_use(ri);
829
- memarg_operands(mem, collector);
830
- }
831
- Inst::VecLoadLaneUndef { rd, mem, .. } => {
832
- collector.reg_def(rd);
833
- memarg_operands(mem, collector);
834
- }
835
- Inst::VecStoreLaneRev { rd, mem, .. } => {
836
- collector.reg_use(rd);
837
- memarg_operands(mem, collector);
838
- }
839
- Inst::VecLoadLaneRevUndef { rd, mem, .. } => {
840
- collector.reg_def(rd);
841
- memarg_operands(mem, collector);
842
- }
843
- Inst::VecStoreLane { rd, mem, .. } => {
844
- collector.reg_use(rd);
845
- memarg_operands(mem, collector);
846
- }
847
- Inst::VecLoadLaneRev { rd, ri, mem, .. } => {
848
- collector.reg_reuse_def(rd, 1);
849
- collector.reg_use(ri);
850
- memarg_operands(mem, collector);
851
- }
852
- Inst::VecInsertLane {
853
- rd,
854
- ri,
855
- rn,
856
- lane_reg,
857
- ..
858
- } => {
859
- collector.reg_reuse_def(rd, 1);
860
- collector.reg_use(ri);
861
- collector.reg_use(rn);
862
- collector.reg_use(lane_reg);
863
- }
864
- Inst::VecInsertLaneUndef {
865
- rd, rn, lane_reg, ..
866
- } => {
867
- collector.reg_def(rd);
868
- collector.reg_use(rn);
869
- collector.reg_use(lane_reg);
870
- }
871
- Inst::VecExtractLane {
872
- rd, rn, lane_reg, ..
873
- } => {
874
- collector.reg_def(rd);
875
- collector.reg_use(rn);
876
- collector.reg_use(lane_reg);
877
- }
878
- Inst::VecInsertLaneImm { rd, ri, .. } => {
879
- collector.reg_reuse_def(rd, 1);
880
- collector.reg_use(ri);
881
- }
882
- Inst::VecInsertLaneImmUndef { rd, .. } => {
883
- collector.reg_def(rd);
884
- }
885
- Inst::VecReplicateLane { rd, rn, .. } => {
886
- collector.reg_def(rd);
887
- collector.reg_use(rn);
888
- }
889
- Inst::VecEltRev { rd, rn, .. } => {
890
- collector.reg_def(rd);
891
- collector.reg_use(rn);
892
- }
893
- Inst::Extend { rd, rn, .. } => {
894
- collector.reg_def(rd);
895
- collector.reg_use(rn);
896
- }
897
- Inst::AllocateArgs { .. } => {}
898
- Inst::Call { link, info, .. } => {
899
- let CallInfo {
900
- dest,
901
- uses,
902
- defs,
903
- clobbers,
904
- try_call_info,
905
- ..
906
- } = &mut **info;
907
- match dest {
908
- CallInstDest::Direct { .. } => {}
909
- CallInstDest::Indirect { reg } => collector.reg_use(reg),
910
- }
911
- for CallArgPair { vreg, preg } in uses {
912
- collector.reg_fixed_use(vreg, *preg);
913
- }
914
- for CallRetPair { vreg, location } in defs {
915
- match location {
916
- RetLocation::Reg(preg, ..) => collector.reg_fixed_def(vreg, *preg),
917
- RetLocation::Stack(..) => collector.any_def(vreg),
918
- }
919
- }
920
- let mut clobbers = *clobbers;
921
- clobbers.add(link.to_reg().to_real_reg().unwrap().into());
922
- collector.reg_clobbers(clobbers);
923
- if let Some(try_call_info) = try_call_info {
924
- try_call_info.collect_operands(collector);
925
- }
926
- }
927
- Inst::ReturnCall { info } => {
928
- let ReturnCallInfo { dest, uses, .. } = &mut **info;
929
- match dest {
930
- CallInstDest::Direct { .. } => {}
931
- CallInstDest::Indirect { reg } => collector.reg_use(reg),
932
- }
933
- for CallArgPair { vreg, preg } in uses {
934
- collector.reg_fixed_use(vreg, *preg);
935
- }
936
- }
937
- Inst::ElfTlsGetOffset {
938
- tls_offset,
939
- got,
940
- got_offset,
941
- ..
942
- } => {
943
- collector.reg_fixed_use(got, gpr(12));
944
- collector.reg_fixed_use(got_offset, gpr(2));
945
- collector.reg_fixed_def(tls_offset, gpr(2));
946
-
947
- let mut clobbers =
948
- S390xMachineDeps::get_regs_clobbered_by_call(CallConv::SystemV, false);
949
- clobbers.add(gpr_preg(14));
950
- clobbers.remove(gpr_preg(2));
951
- collector.reg_clobbers(clobbers);
952
- }
953
- Inst::Args { args } => {
954
- for ArgPair { vreg, preg } in args {
955
- collector.reg_fixed_def(vreg, *preg);
956
- }
957
- }
958
- Inst::Rets { rets } => {
959
- for RetPair { vreg, preg } in rets {
960
- collector.reg_fixed_use(vreg, *preg);
961
- }
962
- }
963
- Inst::Ret { .. } => {
964
- // NOTE: we explicitly don't mark the link register as used here, as the use is only in
965
- // the epilog where callee-save registers are restored.
966
- }
967
- Inst::Jump { .. } => {}
968
- Inst::IndirectBr { rn, .. } => {
969
- collector.reg_use(rn);
970
- }
971
- Inst::CondBr { .. } => {}
972
- Inst::Nop0 | Inst::Nop2 => {}
973
- Inst::Debugtrap => {}
974
- Inst::Trap { .. } => {}
975
- Inst::TrapIf { .. } => {}
976
- Inst::JTSequence { ridx, .. } => {
977
- collector.reg_use(ridx);
978
- collector.reg_fixed_nonallocatable(gpr_preg(1));
979
- }
980
- Inst::LoadSymbolReloc { rd, .. } => {
981
- collector.reg_def(rd);
982
- collector.reg_fixed_nonallocatable(gpr_preg(1));
983
- }
984
- Inst::LoadAddr { rd, mem } => {
985
- collector.reg_def(rd);
986
- memarg_operands(mem, collector);
987
- }
988
- Inst::StackProbeLoop { probe_count, .. } => {
989
- collector.reg_early_def(probe_count);
990
- }
991
- Inst::Loop { body, .. } => {
992
- // `reuse_def` constraints can't be permitted in a Loop instruction because the operand
993
- // index will always be relative to the Loop instruction, not the individual
994
- // instruction in the loop body. However, fixed-nonallocatable registers used with
995
- // instructions that would have emitted `reuse_def` constraints are fine.
996
- let mut collector = DenyReuseVisitor {
997
- inner: collector.inner,
998
- deny_reuse: true,
999
- };
1000
- for inst in body {
1001
- s390x_get_operands(inst, &mut collector);
1002
- }
1003
- }
1004
- Inst::CondBreak { .. } => {}
1005
- Inst::Unwind { .. } => {}
1006
- Inst::DummyUse { reg } => {
1007
- collector.reg_use(reg);
1008
- }
1009
- }
1010
- }
1011
-
1012
- struct DenyReuseVisitor<'a, T> {
1013
- inner: &'a mut T,
1014
- deny_reuse: bool,
1015
- }
1016
-
1017
- impl<T: OperandVisitor> OperandVisitor for DenyReuseVisitor<'_, T> {
1018
- fn add_operand(
1019
- &mut self,
1020
- reg: &mut Reg,
1021
- constraint: regalloc2::OperandConstraint,
1022
- kind: regalloc2::OperandKind,
1023
- pos: regalloc2::OperandPos,
1024
- ) {
1025
- debug_assert!(
1026
- !self.deny_reuse || !matches!(constraint, regalloc2::OperandConstraint::Reuse(_))
1027
- );
1028
- self.inner.add_operand(reg, constraint, kind, pos);
1029
- }
1030
-
1031
- fn debug_assert_is_allocatable_preg(&self, reg: regalloc2::PReg, expected: bool) {
1032
- self.inner.debug_assert_is_allocatable_preg(reg, expected);
1033
- }
1034
-
1035
- fn reg_clobbers(&mut self, regs: regalloc2::PRegSet) {
1036
- self.inner.reg_clobbers(regs);
1037
- }
1038
- }
1039
-
1040
- //=============================================================================
1041
- // Instructions: misc functions and external interface
1042
-
1043
- impl MachInst for Inst {
1044
- type ABIMachineSpec = S390xMachineDeps;
1045
- type LabelUse = LabelUse;
1046
- const TRAP_OPCODE: &'static [u8] = &[0, 0];
1047
-
1048
- fn get_operands(&mut self, collector: &mut impl OperandVisitor) {
1049
- s390x_get_operands(
1050
- self,
1051
- &mut DenyReuseVisitor {
1052
- inner: collector,
1053
- deny_reuse: false,
1054
- },
1055
- );
1056
- }
1057
-
1058
- fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
1059
- match self {
1060
- &Inst::Mov32 { rd, rm } => Some((rd, rm)),
1061
- &Inst::Mov64 { rd, rm } => Some((rd, rm)),
1062
- &Inst::FpuMove32 { rd, rn } => Some((rd, rn)),
1063
- &Inst::FpuMove64 { rd, rn } => Some((rd, rn)),
1064
- &Inst::VecMov { rd, rn } => Some((rd, rn)),
1065
- _ => None,
1066
- }
1067
- }
1068
-
1069
- fn is_included_in_clobbers(&self) -> bool {
1070
- // We exclude call instructions from the clobber-set when they are calls
1071
- // from caller to callee with the same ABI. Such calls cannot possibly
1072
- // force any new registers to be saved in the prologue, because anything
1073
- // that the callee clobbers, the caller is also allowed to clobber. This
1074
- // both saves work and enables us to more precisely follow the
1075
- // half-caller-save, half-callee-save SysV ABI for some vector
1076
- // registers.
1077
- match self {
1078
- &Inst::Args { .. } => false,
1079
- &Inst::Call { ref info, .. } => {
1080
- info.caller_conv != info.callee_conv || info.try_call_info.is_some()
1081
- }
1082
- &Inst::ElfTlsGetOffset { .. } => false,
1083
- _ => true,
1084
- }
1085
- }
1086
-
1087
- fn is_trap(&self) -> bool {
1088
- match self {
1089
- Self::Trap { .. } => true,
1090
- _ => false,
1091
- }
1092
- }
1093
-
1094
- fn is_args(&self) -> bool {
1095
- match self {
1096
- Self::Args { .. } => true,
1097
- _ => false,
1098
- }
1099
- }
1100
-
1101
- fn is_term(&self) -> MachTerminator {
1102
- match self {
1103
- &Inst::Rets { .. } => MachTerminator::Ret,
1104
- &Inst::ReturnCall { .. } => MachTerminator::RetCall,
1105
- &Inst::Jump { .. } => MachTerminator::Branch,
1106
- &Inst::CondBr { .. } => MachTerminator::Branch,
1107
- &Inst::IndirectBr { .. } => MachTerminator::Branch,
1108
- &Inst::JTSequence { .. } => MachTerminator::Branch,
1109
- &Inst::Call { ref info, .. } if info.try_call_info.is_some() => MachTerminator::Branch,
1110
- _ => MachTerminator::None,
1111
- }
1112
- }
1113
-
1114
- fn is_mem_access(&self) -> bool {
1115
- panic!("TODO FILL ME OUT")
1116
- }
1117
-
1118
- fn is_safepoint(&self) -> bool {
1119
- match self {
1120
- Inst::Call { .. } => true,
1121
- _ => false,
1122
- }
1123
- }
1124
-
1125
- fn call_type(&self) -> CallType {
1126
- match self {
1127
- Inst::Call { .. } | Inst::ElfTlsGetOffset { .. } => CallType::Regular,
1128
-
1129
- Inst::ReturnCall { .. } => CallType::TailCall,
1130
-
1131
- _ => CallType::None,
1132
- }
1133
- }
1134
-
1135
- fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Inst {
1136
- assert!(ty.bits() <= 128);
1137
- if ty.bits() <= 32 {
1138
- Inst::mov32(to_reg, from_reg)
1139
- } else if ty.bits() <= 64 {
1140
- Inst::mov64(to_reg, from_reg)
1141
- } else {
1142
- Inst::mov128(to_reg, from_reg)
1143
- }
1144
- }
1145
-
1146
- fn gen_nop(preferred_size: usize) -> Inst {
1147
- if preferred_size == 0 {
1148
- Inst::Nop0
1149
- } else {
1150
- // We can't give a NOP (or any insn) < 2 bytes.
1151
- assert!(preferred_size >= 2);
1152
- Inst::Nop2
1153
- }
1154
- }
1155
-
1156
- fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
1157
- match ty {
1158
- types::I8 => Ok((&[RegClass::Int], &[types::I8])),
1159
- types::I16 => Ok((&[RegClass::Int], &[types::I16])),
1160
- types::I32 => Ok((&[RegClass::Int], &[types::I32])),
1161
- types::I64 => Ok((&[RegClass::Int], &[types::I64])),
1162
- types::F16 => Ok((&[RegClass::Float], &[types::F16])),
1163
- types::F32 => Ok((&[RegClass::Float], &[types::F32])),
1164
- types::F64 => Ok((&[RegClass::Float], &[types::F64])),
1165
- types::F128 => Ok((&[RegClass::Float], &[types::F128])),
1166
- types::I128 => Ok((&[RegClass::Float], &[types::I128])),
1167
- _ if ty.is_vector() && ty.bits() == 128 => Ok((&[RegClass::Float], &[types::I8X16])),
1168
- _ => Err(CodegenError::Unsupported(format!(
1169
- "Unexpected SSA-value type: {ty}"
1170
- ))),
1171
- }
1172
- }
1173
-
1174
- fn canonical_type_for_rc(rc: RegClass) -> Type {
1175
- match rc {
1176
- RegClass::Int => types::I64,
1177
- RegClass::Float => types::I8X16,
1178
- RegClass::Vector => unreachable!(),
1179
- }
1180
- }
1181
-
1182
- fn gen_jump(target: MachLabel) -> Inst {
1183
- Inst::Jump { dest: target }
1184
- }
1185
-
1186
- fn worst_case_size() -> CodeOffset {
1187
- // The maximum size, in bytes, of any `Inst`'s emitted code. We have at least one case of
1188
- // an 8-instruction sequence (saturating int-to-float conversions) with three embedded
1189
- // 64-bit f64 constants.
1190
- //
1191
- // Note that inline jump-tables handle island/pool insertion separately, so we do not need
1192
- // to account for them here (otherwise the worst case would be 2^31 * 4, clearly not
1193
- // feasible for other reasons).
1194
- 44
1195
- }
1196
-
1197
- fn ref_type_regclass(_: &settings::Flags) -> RegClass {
1198
- RegClass::Int
1199
- }
1200
-
1201
- fn gen_dummy_use(reg: Reg) -> Inst {
1202
- Inst::DummyUse { reg }
1203
- }
1204
-
1205
- fn function_alignment() -> FunctionAlignment {
1206
- FunctionAlignment {
1207
- minimum: 4,
1208
- preferred: 4,
1209
- }
1210
- }
1211
- }
1212
-
1213
- //=============================================================================
1214
- // Pretty-printing of instructions.
1215
-
1216
- fn mem_finalize_for_show(mem: &MemArg, state: &EmitState, mi: MemInstType) -> (String, MemArg) {
1217
- let (mem_insts, mem) = mem_finalize(mem, state, mi);
1218
- let mut mem_str = mem_insts
1219
- .into_iter()
1220
- .map(|inst| inst.print_with_state(&mut EmitState::default()))
1221
- .collect::<Vec<_>>()
1222
- .join(" ; ");
1223
- if !mem_str.is_empty() {
1224
- mem_str += " ; ";
1225
- }
1226
-
1227
- (mem_str, mem)
1228
- }
1229
-
1230
- impl Inst {
1231
- fn print_with_state(&self, state: &mut EmitState) -> String {
1232
- match self {
1233
- &Inst::Nop0 => "nop-zero-len".to_string(),
1234
- &Inst::Nop2 => "nop".to_string(),
1235
- &Inst::AluRRR { alu_op, rd, rn, rm } => {
1236
- let (op, have_rr) = match alu_op {
1237
- ALUOp::Add32 => ("ark", true),
1238
- ALUOp::Add64 => ("agrk", true),
1239
- ALUOp::AddLogical32 => ("alrk", true),
1240
- ALUOp::AddLogical64 => ("algrk", true),
1241
- ALUOp::Sub32 => ("srk", true),
1242
- ALUOp::Sub64 => ("sgrk", true),
1243
- ALUOp::SubLogical32 => ("slrk", true),
1244
- ALUOp::SubLogical64 => ("slgrk", true),
1245
- ALUOp::Mul32 => ("msrkc", true),
1246
- ALUOp::Mul64 => ("msgrkc", true),
1247
- ALUOp::And32 => ("nrk", true),
1248
- ALUOp::And64 => ("ngrk", true),
1249
- ALUOp::Orr32 => ("ork", true),
1250
- ALUOp::Orr64 => ("ogrk", true),
1251
- ALUOp::Xor32 => ("xrk", true),
1252
- ALUOp::Xor64 => ("xgrk", true),
1253
- ALUOp::NotAnd32 => ("nnrk", false),
1254
- ALUOp::NotAnd64 => ("nngrk", false),
1255
- ALUOp::NotOrr32 => ("nork", false),
1256
- ALUOp::NotOrr64 => ("nogrk", false),
1257
- ALUOp::NotXor32 => ("nxrk", false),
1258
- ALUOp::NotXor64 => ("nxgrk", false),
1259
- ALUOp::AndNot32 => ("ncrk", false),
1260
- ALUOp::AndNot64 => ("ncgrk", false),
1261
- ALUOp::OrrNot32 => ("ocrk", false),
1262
- ALUOp::OrrNot64 => ("ocgrk", false),
1263
- _ => unreachable!(),
1264
- };
1265
- if have_rr && rd.to_reg() == rn {
1266
- let inst = Inst::AluRR {
1267
- alu_op,
1268
- rd,
1269
- ri: rd.to_reg(),
1270
- rm,
1271
- };
1272
- return inst.print_with_state(state);
1273
- }
1274
- let rd = pretty_print_reg(rd.to_reg());
1275
- let rn = pretty_print_reg(rn);
1276
- let rm = pretty_print_reg(rm);
1277
- format!("{op} {rd}, {rn}, {rm}")
1278
- }
1279
- &Inst::AluRRSImm16 {
1280
- alu_op,
1281
- rd,
1282
- rn,
1283
- imm,
1284
- } => {
1285
- if rd.to_reg() == rn {
1286
- let inst = Inst::AluRSImm16 {
1287
- alu_op,
1288
- rd,
1289
- ri: rd.to_reg(),
1290
- imm,
1291
- };
1292
- return inst.print_with_state(state);
1293
- }
1294
- let op = match alu_op {
1295
- ALUOp::Add32 => "ahik",
1296
- ALUOp::Add64 => "aghik",
1297
- _ => unreachable!(),
1298
- };
1299
- let rd = pretty_print_reg(rd.to_reg());
1300
- let rn = pretty_print_reg(rn);
1301
- format!("{op} {rd}, {rn}, {imm}")
1302
- }
1303
- &Inst::AluRR { alu_op, rd, ri, rm } => {
1304
- let op = match alu_op {
1305
- ALUOp::Add32 => "ar",
1306
- ALUOp::Add64 => "agr",
1307
- ALUOp::Add64Ext32 => "agfr",
1308
- ALUOp::AddLogical32 => "alr",
1309
- ALUOp::AddLogical64 => "algr",
1310
- ALUOp::AddLogical64Ext32 => "algfr",
1311
- ALUOp::Sub32 => "sr",
1312
- ALUOp::Sub64 => "sgr",
1313
- ALUOp::Sub64Ext32 => "sgfr",
1314
- ALUOp::SubLogical32 => "slr",
1315
- ALUOp::SubLogical64 => "slgr",
1316
- ALUOp::SubLogical64Ext32 => "slgfr",
1317
- ALUOp::Mul32 => "msr",
1318
- ALUOp::Mul64 => "msgr",
1319
- ALUOp::Mul64Ext32 => "msgfr",
1320
- ALUOp::And32 => "nr",
1321
- ALUOp::And64 => "ngr",
1322
- ALUOp::Orr32 => "or",
1323
- ALUOp::Orr64 => "ogr",
1324
- ALUOp::Xor32 => "xr",
1325
- ALUOp::Xor64 => "xgr",
1326
- _ => unreachable!(),
1327
- };
1328
- let rd = pretty_print_reg_mod(rd, ri);
1329
- let rm = pretty_print_reg(rm);
1330
- format!("{op} {rd}, {rm}")
1331
- }
1332
- &Inst::AluRX {
1333
- alu_op,
1334
- rd,
1335
- ri,
1336
- ref mem,
1337
- } => {
1338
- let (opcode_rx, opcode_rxy) = match alu_op {
1339
- ALUOp::Add32 => (Some("a"), Some("ay")),
1340
- ALUOp::Add32Ext16 => (Some("ah"), Some("ahy")),
1341
- ALUOp::Add64 => (None, Some("ag")),
1342
- ALUOp::Add64Ext16 => (None, Some("agh")),
1343
- ALUOp::Add64Ext32 => (None, Some("agf")),
1344
- ALUOp::AddLogical32 => (Some("al"), Some("aly")),
1345
- ALUOp::AddLogical64 => (None, Some("alg")),
1346
- ALUOp::AddLogical64Ext32 => (None, Some("algf")),
1347
- ALUOp::Sub32 => (Some("s"), Some("sy")),
1348
- ALUOp::Sub32Ext16 => (Some("sh"), Some("shy")),
1349
- ALUOp::Sub64 => (None, Some("sg")),
1350
- ALUOp::Sub64Ext16 => (None, Some("sgh")),
1351
- ALUOp::Sub64Ext32 => (None, Some("sgf")),
1352
- ALUOp::SubLogical32 => (Some("sl"), Some("sly")),
1353
- ALUOp::SubLogical64 => (None, Some("slg")),
1354
- ALUOp::SubLogical64Ext32 => (None, Some("slgf")),
1355
- ALUOp::Mul32 => (Some("ms"), Some("msy")),
1356
- ALUOp::Mul32Ext16 => (Some("mh"), Some("mhy")),
1357
- ALUOp::Mul64 => (None, Some("msg")),
1358
- ALUOp::Mul64Ext16 => (None, Some("mgh")),
1359
- ALUOp::Mul64Ext32 => (None, Some("msgf")),
1360
- ALUOp::And32 => (Some("n"), Some("ny")),
1361
- ALUOp::And64 => (None, Some("ng")),
1362
- ALUOp::Orr32 => (Some("o"), Some("oy")),
1363
- ALUOp::Orr64 => (None, Some("og")),
1364
- ALUOp::Xor32 => (Some("x"), Some("xy")),
1365
- ALUOp::Xor64 => (None, Some("xg")),
1366
- _ => unreachable!(),
1367
- };
1368
-
1369
- let rd = pretty_print_reg_mod(rd, ri);
1370
- let mem = mem.clone();
1371
- let (mem_str, mem) = mem_finalize_for_show(
1372
- &mem,
1373
- state,
1374
- MemInstType {
1375
- have_d12: opcode_rx.is_some(),
1376
- have_d20: opcode_rxy.is_some(),
1377
- have_pcrel: false,
1378
- have_unaligned_pcrel: false,
1379
- have_index: true,
1380
- },
1381
- );
1382
- let op = match &mem {
1383
- &MemArg::BXD12 { .. } => opcode_rx,
1384
- &MemArg::BXD20 { .. } => opcode_rxy,
1385
- _ => unreachable!(),
1386
- };
1387
- let mem = mem.pretty_print_default();
1388
-
1389
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1390
- }
1391
- &Inst::AluRSImm16 {
1392
- alu_op,
1393
- rd,
1394
- ri,
1395
- imm,
1396
- } => {
1397
- let op = match alu_op {
1398
- ALUOp::Add32 => "ahi",
1399
- ALUOp::Add64 => "aghi",
1400
- ALUOp::Mul32 => "mhi",
1401
- ALUOp::Mul64 => "mghi",
1402
- _ => unreachable!(),
1403
- };
1404
- let rd = pretty_print_reg_mod(rd, ri);
1405
- format!("{op} {rd}, {imm}")
1406
- }
1407
- &Inst::AluRSImm32 {
1408
- alu_op,
1409
- rd,
1410
- ri,
1411
- imm,
1412
- } => {
1413
- let op = match alu_op {
1414
- ALUOp::Add32 => "afi",
1415
- ALUOp::Add64 => "agfi",
1416
- ALUOp::Mul32 => "msfi",
1417
- ALUOp::Mul64 => "msgfi",
1418
- _ => unreachable!(),
1419
- };
1420
- let rd = pretty_print_reg_mod(rd, ri);
1421
- format!("{op} {rd}, {imm}")
1422
- }
1423
- &Inst::AluRUImm32 {
1424
- alu_op,
1425
- rd,
1426
- ri,
1427
- imm,
1428
- } => {
1429
- let op = match alu_op {
1430
- ALUOp::AddLogical32 => "alfi",
1431
- ALUOp::AddLogical64 => "algfi",
1432
- ALUOp::SubLogical32 => "slfi",
1433
- ALUOp::SubLogical64 => "slgfi",
1434
- _ => unreachable!(),
1435
- };
1436
- let rd = pretty_print_reg_mod(rd, ri);
1437
- format!("{op} {rd}, {imm}")
1438
- }
1439
- &Inst::AluRUImm16Shifted {
1440
- alu_op,
1441
- rd,
1442
- ri,
1443
- imm,
1444
- } => {
1445
- let op = match (alu_op, imm.shift) {
1446
- (ALUOp::And32, 0) => "nill",
1447
- (ALUOp::And32, 1) => "nilh",
1448
- (ALUOp::And64, 0) => "nill",
1449
- (ALUOp::And64, 1) => "nilh",
1450
- (ALUOp::And64, 2) => "nihl",
1451
- (ALUOp::And64, 3) => "nihh",
1452
- (ALUOp::Orr32, 0) => "oill",
1453
- (ALUOp::Orr32, 1) => "oilh",
1454
- (ALUOp::Orr64, 0) => "oill",
1455
- (ALUOp::Orr64, 1) => "oilh",
1456
- (ALUOp::Orr64, 2) => "oihl",
1457
- (ALUOp::Orr64, 3) => "oihh",
1458
- _ => unreachable!(),
1459
- };
1460
- let rd = pretty_print_reg_mod(rd, ri);
1461
- format!("{} {}, {}", op, rd, imm.bits)
1462
- }
1463
- &Inst::AluRUImm32Shifted {
1464
- alu_op,
1465
- rd,
1466
- ri,
1467
- imm,
1468
- } => {
1469
- let op = match (alu_op, imm.shift) {
1470
- (ALUOp::And32, 0) => "nilf",
1471
- (ALUOp::And64, 0) => "nilf",
1472
- (ALUOp::And64, 1) => "nihf",
1473
- (ALUOp::Orr32, 0) => "oilf",
1474
- (ALUOp::Orr64, 0) => "oilf",
1475
- (ALUOp::Orr64, 1) => "oihf",
1476
- (ALUOp::Xor32, 0) => "xilf",
1477
- (ALUOp::Xor64, 0) => "xilf",
1478
- (ALUOp::Xor64, 1) => "xihf",
1479
- _ => unreachable!(),
1480
- };
1481
- let rd = pretty_print_reg_mod(rd, ri);
1482
- format!("{} {}, {}", op, rd, imm.bits)
1483
- }
1484
- &Inst::SMulWide { rd, rn, rm } => {
1485
- let op = "mgrk";
1486
- let rn = pretty_print_reg(rn);
1487
- let rm = pretty_print_reg(rm);
1488
- let rd = pretty_print_regpair(rd.to_regpair());
1489
- format!("{op} {rd}, {rn}, {rm}")
1490
- }
1491
- &Inst::UMulWide { rd, ri, rn } => {
1492
- let op = "mlgr";
1493
- let rn = pretty_print_reg(rn);
1494
- let rd = pretty_print_regpair_mod_lo(rd, ri);
1495
- format!("{op} {rd}, {rn}")
1496
- }
1497
- &Inst::SDivMod32 { rd, ri, rn } => {
1498
- let op = "dsgfr";
1499
- let rn = pretty_print_reg(rn);
1500
- let rd = pretty_print_regpair_mod_lo(rd, ri);
1501
- format!("{op} {rd}, {rn}")
1502
- }
1503
- &Inst::SDivMod64 { rd, ri, rn } => {
1504
- let op = "dsgr";
1505
- let rn = pretty_print_reg(rn);
1506
- let rd = pretty_print_regpair_mod_lo(rd, ri);
1507
- format!("{op} {rd}, {rn}")
1508
- }
1509
- &Inst::UDivMod32 { rd, ri, rn } => {
1510
- let op = "dlr";
1511
- let rn = pretty_print_reg(rn);
1512
- let rd = pretty_print_regpair_mod(rd, ri);
1513
- format!("{op} {rd}, {rn}")
1514
- }
1515
- &Inst::UDivMod64 { rd, ri, rn } => {
1516
- let op = "dlgr";
1517
- let rn = pretty_print_reg(rn);
1518
- let rd = pretty_print_regpair_mod(rd, ri);
1519
- format!("{op} {rd}, {rn}")
1520
- }
1521
- &Inst::Flogr { rd, rn } => {
1522
- let op = "flogr";
1523
- let rn = pretty_print_reg(rn);
1524
- let rd = pretty_print_regpair(rd.to_regpair());
1525
- format!("{op} {rd}, {rn}")
1526
- }
1527
- &Inst::ShiftRR {
1528
- shift_op,
1529
- rd,
1530
- rn,
1531
- shift_imm,
1532
- shift_reg,
1533
- } => {
1534
- let op = match shift_op {
1535
- ShiftOp::RotL32 => "rll",
1536
- ShiftOp::RotL64 => "rllg",
1537
- ShiftOp::LShL32 => "sllk",
1538
- ShiftOp::LShL64 => "sllg",
1539
- ShiftOp::LShR32 => "srlk",
1540
- ShiftOp::LShR64 => "srlg",
1541
- ShiftOp::AShR32 => "srak",
1542
- ShiftOp::AShR64 => "srag",
1543
- };
1544
- let rd = pretty_print_reg(rd.to_reg());
1545
- let rn = pretty_print_reg(rn);
1546
- let shift_reg = if shift_reg != zero_reg() {
1547
- format!("({})", pretty_print_reg(shift_reg))
1548
- } else {
1549
- "".to_string()
1550
- };
1551
- format!("{op} {rd}, {rn}, {shift_imm}{shift_reg}")
1552
- }
1553
- &Inst::RxSBG {
1554
- op,
1555
- rd,
1556
- ri,
1557
- rn,
1558
- start_bit,
1559
- end_bit,
1560
- rotate_amt,
1561
- } => {
1562
- let op = match op {
1563
- RxSBGOp::Insert => "risbgn",
1564
- RxSBGOp::And => "rnsbg",
1565
- RxSBGOp::Or => "rosbg",
1566
- RxSBGOp::Xor => "rxsbg",
1567
- };
1568
- let rd = pretty_print_reg_mod(rd, ri);
1569
- let rn = pretty_print_reg(rn);
1570
- format!(
1571
- "{} {}, {}, {}, {}, {}",
1572
- op,
1573
- rd,
1574
- rn,
1575
- start_bit,
1576
- end_bit,
1577
- (rotate_amt as u8) & 63
1578
- )
1579
- }
1580
- &Inst::RxSBGTest {
1581
- op,
1582
- rd,
1583
- rn,
1584
- start_bit,
1585
- end_bit,
1586
- rotate_amt,
1587
- } => {
1588
- let op = match op {
1589
- RxSBGOp::And => "rnsbg",
1590
- RxSBGOp::Or => "rosbg",
1591
- RxSBGOp::Xor => "rxsbg",
1592
- _ => unreachable!(),
1593
- };
1594
- let rd = pretty_print_reg(rd);
1595
- let rn = pretty_print_reg(rn);
1596
- format!(
1597
- "{} {}, {}, {}, {}, {}",
1598
- op,
1599
- rd,
1600
- rn,
1601
- start_bit | 0x80,
1602
- end_bit,
1603
- (rotate_amt as u8) & 63
1604
- )
1605
- }
1606
- &Inst::UnaryRR { op, rd, rn } => {
1607
- let (op, extra) = match op {
1608
- UnaryOp::Abs32 => ("lpr", ""),
1609
- UnaryOp::Abs64 => ("lpgr", ""),
1610
- UnaryOp::Abs64Ext32 => ("lpgfr", ""),
1611
- UnaryOp::Neg32 => ("lcr", ""),
1612
- UnaryOp::Neg64 => ("lcgr", ""),
1613
- UnaryOp::Neg64Ext32 => ("lcgfr", ""),
1614
- UnaryOp::PopcntByte => ("popcnt", ""),
1615
- UnaryOp::PopcntReg => ("popcnt", ", 8"),
1616
- UnaryOp::BSwap32 => ("lrvr", ""),
1617
- UnaryOp::BSwap64 => ("lrvgr", ""),
1618
- };
1619
- let rd = pretty_print_reg(rd.to_reg());
1620
- let rn = pretty_print_reg(rn);
1621
- format!("{op} {rd}, {rn}{extra}")
1622
- }
1623
- &Inst::CmpRR { op, rn, rm } => {
1624
- let op = match op {
1625
- CmpOp::CmpS32 => "cr",
1626
- CmpOp::CmpS64 => "cgr",
1627
- CmpOp::CmpS64Ext32 => "cgfr",
1628
- CmpOp::CmpL32 => "clr",
1629
- CmpOp::CmpL64 => "clgr",
1630
- CmpOp::CmpL64Ext32 => "clgfr",
1631
- _ => unreachable!(),
1632
- };
1633
- let rn = pretty_print_reg(rn);
1634
- let rm = pretty_print_reg(rm);
1635
- format!("{op} {rn}, {rm}")
1636
- }
1637
- &Inst::CmpRX { op, rn, ref mem } => {
1638
- let (opcode_rx, opcode_rxy, opcode_ril) = match op {
1639
- CmpOp::CmpS32 => (Some("c"), Some("cy"), Some("crl")),
1640
- CmpOp::CmpS32Ext16 => (Some("ch"), Some("chy"), Some("chrl")),
1641
- CmpOp::CmpS64 => (None, Some("cg"), Some("cgrl")),
1642
- CmpOp::CmpS64Ext16 => (None, Some("cgh"), Some("cghrl")),
1643
- CmpOp::CmpS64Ext32 => (None, Some("cgf"), Some("cgfrl")),
1644
- CmpOp::CmpL32 => (Some("cl"), Some("cly"), Some("clrl")),
1645
- CmpOp::CmpL32Ext16 => (None, None, Some("clhrl")),
1646
- CmpOp::CmpL64 => (None, Some("clg"), Some("clgrl")),
1647
- CmpOp::CmpL64Ext16 => (None, None, Some("clghrl")),
1648
- CmpOp::CmpL64Ext32 => (None, Some("clgf"), Some("clgfrl")),
1649
- };
1650
-
1651
- let rn = pretty_print_reg(rn);
1652
- let mem = mem.clone();
1653
- let (mem_str, mem) = mem_finalize_for_show(
1654
- &mem,
1655
- state,
1656
- MemInstType {
1657
- have_d12: opcode_rx.is_some(),
1658
- have_d20: opcode_rxy.is_some(),
1659
- have_pcrel: opcode_ril.is_some(),
1660
- have_unaligned_pcrel: false,
1661
- have_index: true,
1662
- },
1663
- );
1664
- let op = match &mem {
1665
- &MemArg::BXD12 { .. } => opcode_rx,
1666
- &MemArg::BXD20 { .. } => opcode_rxy,
1667
- &MemArg::Label { .. } | &MemArg::Constant { .. } | &MemArg::Symbol { .. } => {
1668
- opcode_ril
1669
- }
1670
- _ => unreachable!(),
1671
- };
1672
- let mem = mem.pretty_print_default();
1673
-
1674
- format!("{}{} {}, {}", mem_str, op.unwrap(), rn, mem)
1675
- }
1676
- &Inst::CmpRSImm16 { op, rn, imm } => {
1677
- let op = match op {
1678
- CmpOp::CmpS32 => "chi",
1679
- CmpOp::CmpS64 => "cghi",
1680
- _ => unreachable!(),
1681
- };
1682
- let rn = pretty_print_reg(rn);
1683
- format!("{op} {rn}, {imm}")
1684
- }
1685
- &Inst::CmpRSImm32 { op, rn, imm } => {
1686
- let op = match op {
1687
- CmpOp::CmpS32 => "cfi",
1688
- CmpOp::CmpS64 => "cgfi",
1689
- _ => unreachable!(),
1690
- };
1691
- let rn = pretty_print_reg(rn);
1692
- format!("{op} {rn}, {imm}")
1693
- }
1694
- &Inst::CmpRUImm32 { op, rn, imm } => {
1695
- let op = match op {
1696
- CmpOp::CmpL32 => "clfi",
1697
- CmpOp::CmpL64 => "clgfi",
1698
- _ => unreachable!(),
1699
- };
1700
- let rn = pretty_print_reg(rn);
1701
- format!("{op} {rn}, {imm}")
1702
- }
1703
- &Inst::CmpTrapRR {
1704
- op, rn, rm, cond, ..
1705
- } => {
1706
- let op = match op {
1707
- CmpOp::CmpS32 => "crt",
1708
- CmpOp::CmpS64 => "cgrt",
1709
- CmpOp::CmpL32 => "clrt",
1710
- CmpOp::CmpL64 => "clgrt",
1711
- _ => unreachable!(),
1712
- };
1713
- let rn = pretty_print_reg(rn);
1714
- let rm = pretty_print_reg(rm);
1715
- let cond = cond.pretty_print_default();
1716
- format!("{op}{cond} {rn}, {rm}")
1717
- }
1718
- &Inst::CmpTrapRSImm16 {
1719
- op, rn, imm, cond, ..
1720
- } => {
1721
- let op = match op {
1722
- CmpOp::CmpS32 => "cit",
1723
- CmpOp::CmpS64 => "cgit",
1724
- _ => unreachable!(),
1725
- };
1726
- let rn = pretty_print_reg(rn);
1727
- let cond = cond.pretty_print_default();
1728
- format!("{op}{cond} {rn}, {imm}")
1729
- }
1730
- &Inst::CmpTrapRUImm16 {
1731
- op, rn, imm, cond, ..
1732
- } => {
1733
- let op = match op {
1734
- CmpOp::CmpL32 => "clfit",
1735
- CmpOp::CmpL64 => "clgit",
1736
- _ => unreachable!(),
1737
- };
1738
- let rn = pretty_print_reg(rn);
1739
- let cond = cond.pretty_print_default();
1740
- format!("{op}{cond} {rn}, {imm}")
1741
- }
1742
- &Inst::AtomicRmw {
1743
- alu_op,
1744
- rd,
1745
- rn,
1746
- ref mem,
1747
- } => {
1748
- let op = match alu_op {
1749
- ALUOp::Add32 => "laa",
1750
- ALUOp::Add64 => "laag",
1751
- ALUOp::AddLogical32 => "laal",
1752
- ALUOp::AddLogical64 => "laalg",
1753
- ALUOp::And32 => "lan",
1754
- ALUOp::And64 => "lang",
1755
- ALUOp::Orr32 => "lao",
1756
- ALUOp::Orr64 => "laog",
1757
- ALUOp::Xor32 => "lax",
1758
- ALUOp::Xor64 => "laxg",
1759
- _ => unreachable!(),
1760
- };
1761
-
1762
- let rd = pretty_print_reg(rd.to_reg());
1763
- let rn = pretty_print_reg(rn);
1764
- let mem = mem.clone();
1765
- let (mem_str, mem) = mem_finalize_for_show(
1766
- &mem,
1767
- state,
1768
- MemInstType {
1769
- have_d12: false,
1770
- have_d20: true,
1771
- have_pcrel: false,
1772
- have_unaligned_pcrel: false,
1773
- have_index: false,
1774
- },
1775
- );
1776
- let mem = mem.pretty_print_default();
1777
- format!("{mem_str}{op} {rd}, {rn}, {mem}")
1778
- }
1779
- &Inst::AtomicCas32 {
1780
- rd,
1781
- ri,
1782
- rn,
1783
- ref mem,
1784
- }
1785
- | &Inst::AtomicCas64 {
1786
- rd,
1787
- ri,
1788
- rn,
1789
- ref mem,
1790
- } => {
1791
- let (opcode_rs, opcode_rsy) = match self {
1792
- &Inst::AtomicCas32 { .. } => (Some("cs"), Some("csy")),
1793
- &Inst::AtomicCas64 { .. } => (None, Some("csg")),
1794
- _ => unreachable!(),
1795
- };
1796
-
1797
- let rd = pretty_print_reg_mod(rd, ri);
1798
- let rn = pretty_print_reg(rn);
1799
- let mem = mem.clone();
1800
- let (mem_str, mem) = mem_finalize_for_show(
1801
- &mem,
1802
- state,
1803
- MemInstType {
1804
- have_d12: opcode_rs.is_some(),
1805
- have_d20: opcode_rsy.is_some(),
1806
- have_pcrel: false,
1807
- have_unaligned_pcrel: false,
1808
- have_index: false,
1809
- },
1810
- );
1811
- let op = match &mem {
1812
- &MemArg::BXD12 { .. } => opcode_rs,
1813
- &MemArg::BXD20 { .. } => opcode_rsy,
1814
- _ => unreachable!(),
1815
- };
1816
- let mem = mem.pretty_print_default();
1817
-
1818
- format!("{}{} {}, {}, {}", mem_str, op.unwrap(), rd, rn, mem)
1819
- }
1820
- &Inst::Fence => "bcr 14, 0".to_string(),
1821
- &Inst::Load32 { rd, ref mem }
1822
- | &Inst::Load32ZExt8 { rd, ref mem }
1823
- | &Inst::Load32SExt8 { rd, ref mem }
1824
- | &Inst::Load32ZExt16 { rd, ref mem }
1825
- | &Inst::Load32SExt16 { rd, ref mem }
1826
- | &Inst::Load64 { rd, ref mem }
1827
- | &Inst::Load64ZExt8 { rd, ref mem }
1828
- | &Inst::Load64SExt8 { rd, ref mem }
1829
- | &Inst::Load64ZExt16 { rd, ref mem }
1830
- | &Inst::Load64SExt16 { rd, ref mem }
1831
- | &Inst::Load64ZExt32 { rd, ref mem }
1832
- | &Inst::Load64SExt32 { rd, ref mem }
1833
- | &Inst::LoadRev16 { rd, ref mem }
1834
- | &Inst::LoadRev32 { rd, ref mem }
1835
- | &Inst::LoadRev64 { rd, ref mem } => {
1836
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
1837
- &Inst::Load32 { .. } => (Some("l"), Some("ly"), Some("lrl")),
1838
- &Inst::Load32ZExt8 { .. } => (None, Some("llc"), None),
1839
- &Inst::Load32SExt8 { .. } => (None, Some("lb"), None),
1840
- &Inst::Load32ZExt16 { .. } => (None, Some("llh"), Some("llhrl")),
1841
- &Inst::Load32SExt16 { .. } => (Some("lh"), Some("lhy"), Some("lhrl")),
1842
- &Inst::Load64 { .. } => (None, Some("lg"), Some("lgrl")),
1843
- &Inst::Load64ZExt8 { .. } => (None, Some("llgc"), None),
1844
- &Inst::Load64SExt8 { .. } => (None, Some("lgb"), None),
1845
- &Inst::Load64ZExt16 { .. } => (None, Some("llgh"), Some("llghrl")),
1846
- &Inst::Load64SExt16 { .. } => (None, Some("lgh"), Some("lghrl")),
1847
- &Inst::Load64ZExt32 { .. } => (None, Some("llgf"), Some("llgfrl")),
1848
- &Inst::Load64SExt32 { .. } => (None, Some("lgf"), Some("lgfrl")),
1849
- &Inst::LoadRev16 { .. } => (None, Some("lrvh"), None),
1850
- &Inst::LoadRev32 { .. } => (None, Some("lrv"), None),
1851
- &Inst::LoadRev64 { .. } => (None, Some("lrvg"), None),
1852
- _ => unreachable!(),
1853
- };
1854
-
1855
- let rd = pretty_print_reg(rd.to_reg());
1856
- let mem = mem.clone();
1857
- let (mem_str, mem) = mem_finalize_for_show(
1858
- &mem,
1859
- state,
1860
- MemInstType {
1861
- have_d12: opcode_rx.is_some(),
1862
- have_d20: opcode_rxy.is_some(),
1863
- have_pcrel: opcode_ril.is_some(),
1864
- have_unaligned_pcrel: false,
1865
- have_index: true,
1866
- },
1867
- );
1868
- let op = match &mem {
1869
- &MemArg::BXD12 { .. } => opcode_rx,
1870
- &MemArg::BXD20 { .. } => opcode_rxy,
1871
- &MemArg::Label { .. } | &MemArg::Constant { .. } | &MemArg::Symbol { .. } => {
1872
- opcode_ril
1873
- }
1874
- _ => unreachable!(),
1875
- };
1876
- let mem = mem.pretty_print_default();
1877
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1878
- }
1879
- &Inst::Store8 { rd, ref mem }
1880
- | &Inst::Store16 { rd, ref mem }
1881
- | &Inst::Store32 { rd, ref mem }
1882
- | &Inst::Store64 { rd, ref mem }
1883
- | &Inst::StoreRev16 { rd, ref mem }
1884
- | &Inst::StoreRev32 { rd, ref mem }
1885
- | &Inst::StoreRev64 { rd, ref mem } => {
1886
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
1887
- &Inst::Store8 { .. } => (Some("stc"), Some("stcy"), None),
1888
- &Inst::Store16 { .. } => (Some("sth"), Some("sthy"), Some("sthrl")),
1889
- &Inst::Store32 { .. } => (Some("st"), Some("sty"), Some("strl")),
1890
- &Inst::Store64 { .. } => (None, Some("stg"), Some("stgrl")),
1891
- &Inst::StoreRev16 { .. } => (None, Some("strvh"), None),
1892
- &Inst::StoreRev32 { .. } => (None, Some("strv"), None),
1893
- &Inst::StoreRev64 { .. } => (None, Some("strvg"), None),
1894
- _ => unreachable!(),
1895
- };
1896
-
1897
- let rd = pretty_print_reg(rd);
1898
- let mem = mem.clone();
1899
- let (mem_str, mem) = mem_finalize_for_show(
1900
- &mem,
1901
- state,
1902
- MemInstType {
1903
- have_d12: opcode_rx.is_some(),
1904
- have_d20: opcode_rxy.is_some(),
1905
- have_pcrel: opcode_ril.is_some(),
1906
- have_unaligned_pcrel: false,
1907
- have_index: true,
1908
- },
1909
- );
1910
- let op = match &mem {
1911
- &MemArg::BXD12 { .. } => opcode_rx,
1912
- &MemArg::BXD20 { .. } => opcode_rxy,
1913
- &MemArg::Label { .. } | &MemArg::Constant { .. } | &MemArg::Symbol { .. } => {
1914
- opcode_ril
1915
- }
1916
- _ => unreachable!(),
1917
- };
1918
- let mem = mem.pretty_print_default();
1919
-
1920
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1921
- }
1922
- &Inst::StoreImm8 { imm, ref mem } => {
1923
- let mem = mem.clone();
1924
- let (mem_str, mem) = mem_finalize_for_show(
1925
- &mem,
1926
- state,
1927
- MemInstType {
1928
- have_d12: true,
1929
- have_d20: true,
1930
- have_pcrel: false,
1931
- have_unaligned_pcrel: false,
1932
- have_index: false,
1933
- },
1934
- );
1935
- let op = match &mem {
1936
- &MemArg::BXD12 { .. } => "mvi",
1937
- &MemArg::BXD20 { .. } => "mviy",
1938
- _ => unreachable!(),
1939
- };
1940
- let mem = mem.pretty_print_default();
1941
-
1942
- format!("{mem_str}{op} {mem}, {imm}")
1943
- }
1944
- &Inst::StoreImm16 { imm, ref mem }
1945
- | &Inst::StoreImm32SExt16 { imm, ref mem }
1946
- | &Inst::StoreImm64SExt16 { imm, ref mem } => {
1947
- let mem = mem.clone();
1948
- let (mem_str, mem) = mem_finalize_for_show(
1949
- &mem,
1950
- state,
1951
- MemInstType {
1952
- have_d12: false,
1953
- have_d20: true,
1954
- have_pcrel: false,
1955
- have_unaligned_pcrel: false,
1956
- have_index: false,
1957
- },
1958
- );
1959
- let op = match self {
1960
- &Inst::StoreImm16 { .. } => "mvhhi",
1961
- &Inst::StoreImm32SExt16 { .. } => "mvhi",
1962
- &Inst::StoreImm64SExt16 { .. } => "mvghi",
1963
- _ => unreachable!(),
1964
- };
1965
- let mem = mem.pretty_print_default();
1966
-
1967
- format!("{mem_str}{op} {mem}, {imm}")
1968
- }
1969
- &Inst::LoadMultiple64 { rt, rt2, ref mem } => {
1970
- let mem = mem.clone();
1971
- let (mem_str, mem) = mem_finalize_for_show(
1972
- &mem,
1973
- state,
1974
- MemInstType {
1975
- have_d12: false,
1976
- have_d20: true,
1977
- have_pcrel: false,
1978
- have_unaligned_pcrel: false,
1979
- have_index: false,
1980
- },
1981
- );
1982
- let rt = pretty_print_reg(rt.to_reg());
1983
- let rt2 = pretty_print_reg(rt2.to_reg());
1984
- let mem = mem.pretty_print_default();
1985
- format!("{mem_str}lmg {rt}, {rt2}, {mem}")
1986
- }
1987
- &Inst::StoreMultiple64 { rt, rt2, ref mem } => {
1988
- let mem = mem.clone();
1989
- let (mem_str, mem) = mem_finalize_for_show(
1990
- &mem,
1991
- state,
1992
- MemInstType {
1993
- have_d12: false,
1994
- have_d20: true,
1995
- have_pcrel: false,
1996
- have_unaligned_pcrel: false,
1997
- have_index: false,
1998
- },
1999
- );
2000
- let rt = pretty_print_reg(rt);
2001
- let rt2 = pretty_print_reg(rt2);
2002
- let mem = mem.pretty_print_default();
2003
- format!("{mem_str}stmg {rt}, {rt2}, {mem}")
2004
- }
2005
- &Inst::Mov64 { rd, rm } => {
2006
- let rd = pretty_print_reg(rd.to_reg());
2007
- let rm = pretty_print_reg(rm);
2008
- format!("lgr {rd}, {rm}")
2009
- }
2010
- &Inst::MovPReg { rd, rm } => {
2011
- let rd = pretty_print_reg(rd.to_reg());
2012
- let rm = show_reg(rm.into());
2013
- format!("lgr {rd}, {rm}")
2014
- }
2015
- &Inst::Mov32 { rd, rm } => {
2016
- let rd = pretty_print_reg(rd.to_reg());
2017
- let rm = pretty_print_reg(rm);
2018
- format!("lr {rd}, {rm}")
2019
- }
2020
- &Inst::Mov32Imm { rd, ref imm } => {
2021
- let rd = pretty_print_reg(rd.to_reg());
2022
- format!("iilf {rd}, {imm}")
2023
- }
2024
- &Inst::Mov32SImm16 { rd, ref imm } => {
2025
- let rd = pretty_print_reg(rd.to_reg());
2026
- format!("lhi {rd}, {imm}")
2027
- }
2028
- &Inst::Mov64SImm16 { rd, ref imm } => {
2029
- let rd = pretty_print_reg(rd.to_reg());
2030
- format!("lghi {rd}, {imm}")
2031
- }
2032
- &Inst::Mov64SImm32 { rd, ref imm } => {
2033
- let rd = pretty_print_reg(rd.to_reg());
2034
- format!("lgfi {rd}, {imm}")
2035
- }
2036
- &Inst::Mov64UImm16Shifted { rd, ref imm } => {
2037
- let rd = pretty_print_reg(rd.to_reg());
2038
- let op = match imm.shift {
2039
- 0 => "llill",
2040
- 1 => "llilh",
2041
- 2 => "llihl",
2042
- 3 => "llihh",
2043
- _ => unreachable!(),
2044
- };
2045
- format!("{} {}, {}", op, rd, imm.bits)
2046
- }
2047
- &Inst::Mov64UImm32Shifted { rd, ref imm } => {
2048
- let rd = pretty_print_reg(rd.to_reg());
2049
- let op = match imm.shift {
2050
- 0 => "llilf",
2051
- 1 => "llihf",
2052
- _ => unreachable!(),
2053
- };
2054
- format!("{} {}, {}", op, rd, imm.bits)
2055
- }
2056
- &Inst::Insert64UImm16Shifted { rd, ri, ref imm } => {
2057
- let rd = pretty_print_reg_mod(rd, ri);
2058
- let op = match imm.shift {
2059
- 0 => "iill",
2060
- 1 => "iilh",
2061
- 2 => "iihl",
2062
- 3 => "iihh",
2063
- _ => unreachable!(),
2064
- };
2065
- format!("{} {}, {}", op, rd, imm.bits)
2066
- }
2067
- &Inst::Insert64UImm32Shifted { rd, ri, ref imm } => {
2068
- let rd = pretty_print_reg_mod(rd, ri);
2069
- let op = match imm.shift {
2070
- 0 => "iilf",
2071
- 1 => "iihf",
2072
- _ => unreachable!(),
2073
- };
2074
- format!("{} {}, {}", op, rd, imm.bits)
2075
- }
2076
- &Inst::LoadAR { rd, ar } => {
2077
- let rd = pretty_print_reg(rd.to_reg());
2078
- format!("ear {rd}, %a{ar}")
2079
- }
2080
- &Inst::InsertAR { rd, ri, ar } => {
2081
- let rd = pretty_print_reg_mod(rd, ri);
2082
- format!("ear {rd}, %a{ar}")
2083
- }
2084
- &Inst::CMov32 { rd, cond, ri, rm } => {
2085
- let rd = pretty_print_reg_mod(rd, ri);
2086
- let rm = pretty_print_reg(rm);
2087
- let cond = cond.pretty_print_default();
2088
- format!("locr{cond} {rd}, {rm}")
2089
- }
2090
- &Inst::CMov64 { rd, cond, ri, rm } => {
2091
- let rd = pretty_print_reg_mod(rd, ri);
2092
- let rm = pretty_print_reg(rm);
2093
- let cond = cond.pretty_print_default();
2094
- format!("locgr{cond} {rd}, {rm}")
2095
- }
2096
- &Inst::CMov32SImm16 {
2097
- rd,
2098
- cond,
2099
- ri,
2100
- ref imm,
2101
- } => {
2102
- let rd = pretty_print_reg_mod(rd, ri);
2103
- let cond = cond.pretty_print_default();
2104
- format!("lochi{cond} {rd}, {imm}")
2105
- }
2106
- &Inst::CMov64SImm16 {
2107
- rd,
2108
- cond,
2109
- ri,
2110
- ref imm,
2111
- } => {
2112
- let rd = pretty_print_reg_mod(rd, ri);
2113
- let cond = cond.pretty_print_default();
2114
- format!("locghi{cond} {rd}, {imm}")
2115
- }
2116
- &Inst::FpuMove32 { rd, rn } => {
2117
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2118
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2119
- if rd_fpr.is_some() && rn_fpr.is_some() {
2120
- format!("ler {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
2121
- } else {
2122
- format!("vlr {rd}, {rn}")
2123
- }
2124
- }
2125
- &Inst::FpuMove64 { rd, rn } => {
2126
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2127
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2128
- if rd_fpr.is_some() && rn_fpr.is_some() {
2129
- format!("ldr {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
2130
- } else {
2131
- format!("vlr {rd}, {rn}")
2132
- }
2133
- }
2134
- &Inst::FpuCMov32 { rd, cond, rm, .. } => {
2135
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2136
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2137
- if rd_fpr.is_some() && rm_fpr.is_some() {
2138
- let cond = cond.invert().pretty_print_default();
2139
- format!("j{} 6 ; ler {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
2140
- } else {
2141
- let cond = cond.invert().pretty_print_default();
2142
- format!("j{cond} 10 ; vlr {rd}, {rm}")
2143
- }
2144
- }
2145
- &Inst::FpuCMov64 { rd, cond, rm, .. } => {
2146
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2147
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2148
- if rd_fpr.is_some() && rm_fpr.is_some() {
2149
- let cond = cond.invert().pretty_print_default();
2150
- format!("j{} 6 ; ldr {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
2151
- } else {
2152
- let cond = cond.invert().pretty_print_default();
2153
- format!("j{cond} 10 ; vlr {rd}, {rm}")
2154
- }
2155
- }
2156
- &Inst::FpuRR { fpu_op, rd, rn } => {
2157
- let (op, op_fpr) = match fpu_op {
2158
- FPUOp1::Abs32 => ("wflpsb", Some("lpebr")),
2159
- FPUOp1::Abs64 => ("wflpdb", Some("lpdbr")),
2160
- FPUOp1::Abs128 => ("wflpxb", None),
2161
- FPUOp1::Abs32x4 => ("vflpsb", None),
2162
- FPUOp1::Abs64x2 => ("vflpdb", None),
2163
- FPUOp1::Neg32 => ("wflcsb", Some("lcebr")),
2164
- FPUOp1::Neg64 => ("wflcdb", Some("lcdbr")),
2165
- FPUOp1::Neg128 => ("wflcxb", None),
2166
- FPUOp1::Neg32x4 => ("vflcsb", None),
2167
- FPUOp1::Neg64x2 => ("vflcdb", None),
2168
- FPUOp1::NegAbs32 => ("wflnsb", Some("lnebr")),
2169
- FPUOp1::NegAbs64 => ("wflndb", Some("lndbr")),
2170
- FPUOp1::NegAbs128 => ("wflnxb", None),
2171
- FPUOp1::NegAbs32x4 => ("vflnsb", None),
2172
- FPUOp1::NegAbs64x2 => ("vflndb", None),
2173
- FPUOp1::Sqrt32 => ("wfsqsb", Some("sqebr")),
2174
- FPUOp1::Sqrt64 => ("wfsqdb", Some("sqdbr")),
2175
- FPUOp1::Sqrt128 => ("wfsqxb", None),
2176
- FPUOp1::Sqrt32x4 => ("vfsqsb", None),
2177
- FPUOp1::Sqrt64x2 => ("vfsqdb", None),
2178
- FPUOp1::Cvt32To64 => ("wldeb", Some("ldebr")),
2179
- FPUOp1::Cvt32x4To64x2 => ("vldeb", None),
2180
- FPUOp1::Cvt64To128 => ("wflld", None),
2181
- };
2182
-
2183
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2184
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2185
- if op_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
2186
- format!(
2187
- "{} {}, {}",
2188
- op_fpr.unwrap(),
2189
- rd_fpr.unwrap(),
2190
- rn_fpr.unwrap()
2191
- )
2192
- } else if op.starts_with('w') {
2193
- format!("{} {}, {}", op, rd_fpr.unwrap_or(rd), rn_fpr.unwrap_or(rn))
2194
- } else {
2195
- format!("{op} {rd}, {rn}")
2196
- }
2197
- }
2198
- &Inst::FpuRRR { fpu_op, rd, rn, rm } => {
2199
- let (op, opt_m6, op_fpr) = match fpu_op {
2200
- FPUOp2::Add32 => ("wfasb", "", Some("aebr")),
2201
- FPUOp2::Add64 => ("wfadb", "", Some("adbr")),
2202
- FPUOp2::Add128 => ("wfaxb", "", None),
2203
- FPUOp2::Add32x4 => ("vfasb", "", None),
2204
- FPUOp2::Add64x2 => ("vfadb", "", None),
2205
- FPUOp2::Sub32 => ("wfssb", "", Some("sebr")),
2206
- FPUOp2::Sub64 => ("wfsdb", "", Some("sdbr")),
2207
- FPUOp2::Sub128 => ("wfsxb", "", None),
2208
- FPUOp2::Sub32x4 => ("vfssb", "", None),
2209
- FPUOp2::Sub64x2 => ("vfsdb", "", None),
2210
- FPUOp2::Mul32 => ("wfmsb", "", Some("meebr")),
2211
- FPUOp2::Mul64 => ("wfmdb", "", Some("mdbr")),
2212
- FPUOp2::Mul128 => ("wfmxb", "", None),
2213
- FPUOp2::Mul32x4 => ("vfmsb", "", None),
2214
- FPUOp2::Mul64x2 => ("vfmdb", "", None),
2215
- FPUOp2::Div32 => ("wfdsb", "", Some("debr")),
2216
- FPUOp2::Div64 => ("wfddb", "", Some("ddbr")),
2217
- FPUOp2::Div128 => ("wfdxb", "", None),
2218
- FPUOp2::Div32x4 => ("vfdsb", "", None),
2219
- FPUOp2::Div64x2 => ("vfddb", "", None),
2220
- FPUOp2::Max32 => ("wfmaxsb", ", 1", None),
2221
- FPUOp2::Max64 => ("wfmaxdb", ", 1", None),
2222
- FPUOp2::Max128 => ("wfmaxxb", ", 1", None),
2223
- FPUOp2::Max32x4 => ("vfmaxsb", ", 1", None),
2224
- FPUOp2::Max64x2 => ("vfmaxdb", ", 1", None),
2225
- FPUOp2::Min32 => ("wfminsb", ", 1", None),
2226
- FPUOp2::Min64 => ("wfmindb", ", 1", None),
2227
- FPUOp2::Min128 => ("wfminxb", ", 1", None),
2228
- FPUOp2::Min32x4 => ("vfminsb", ", 1", None),
2229
- FPUOp2::Min64x2 => ("vfmindb", ", 1", None),
2230
- FPUOp2::MaxPseudo32 => ("wfmaxsb", ", 3", None),
2231
- FPUOp2::MaxPseudo64 => ("wfmaxdb", ", 3", None),
2232
- FPUOp2::MaxPseudo128 => ("wfmaxxb", ", 3", None),
2233
- FPUOp2::MaxPseudo32x4 => ("vfmaxsb", ", 3", None),
2234
- FPUOp2::MaxPseudo64x2 => ("vfmaxdb", ", 3", None),
2235
- FPUOp2::MinPseudo32 => ("wfminsb", ", 3", None),
2236
- FPUOp2::MinPseudo64 => ("wfmindb", ", 3", None),
2237
- FPUOp2::MinPseudo128 => ("wfminxb", ", 3", None),
2238
- FPUOp2::MinPseudo32x4 => ("vfminsb", ", 3", None),
2239
- FPUOp2::MinPseudo64x2 => ("vfmindb", ", 3", None),
2240
- };
2241
-
2242
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2243
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2244
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2245
- if op_fpr.is_some() && rd == rn && rd_fpr.is_some() && rm_fpr.is_some() {
2246
- format!(
2247
- "{} {}, {}",
2248
- op_fpr.unwrap(),
2249
- rd_fpr.unwrap(),
2250
- rm_fpr.unwrap()
2251
- )
2252
- } else if op.starts_with('w') {
2253
- format!(
2254
- "{} {}, {}, {}{}",
2255
- op,
2256
- rd_fpr.unwrap_or(rd),
2257
- rn_fpr.unwrap_or(rn),
2258
- rm_fpr.unwrap_or(rm),
2259
- opt_m6
2260
- )
2261
- } else {
2262
- format!("{op} {rd}, {rn}, {rm}{opt_m6}")
2263
- }
2264
- }
2265
- &Inst::FpuRRRR {
2266
- fpu_op,
2267
- rd,
2268
- rn,
2269
- rm,
2270
- ra,
2271
- } => {
2272
- let (op, op_fpr) = match fpu_op {
2273
- FPUOp3::MAdd32 => ("wfmasb", Some("maebr")),
2274
- FPUOp3::MAdd64 => ("wfmadb", Some("madbr")),
2275
- FPUOp3::MAdd128 => ("wfmaxb", None),
2276
- FPUOp3::MAdd32x4 => ("vfmasb", None),
2277
- FPUOp3::MAdd64x2 => ("vfmadb", None),
2278
- FPUOp3::MSub32 => ("wfmssb", Some("msebr")),
2279
- FPUOp3::MSub64 => ("wfmsdb", Some("msdbr")),
2280
- FPUOp3::MSub128 => ("wfmsxb", None),
2281
- FPUOp3::MSub32x4 => ("vfmssb", None),
2282
- FPUOp3::MSub64x2 => ("vfmsdb", None),
2283
- };
2284
-
2285
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2286
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2287
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2288
- let (ra, ra_fpr) = pretty_print_fpr(ra);
2289
- if op_fpr.is_some()
2290
- && rd == ra
2291
- && rd_fpr.is_some()
2292
- && rn_fpr.is_some()
2293
- && rm_fpr.is_some()
2294
- {
2295
- format!(
2296
- "{} {}, {}, {}",
2297
- op_fpr.unwrap(),
2298
- rd_fpr.unwrap(),
2299
- rn_fpr.unwrap(),
2300
- rm_fpr.unwrap()
2301
- )
2302
- } else if op.starts_with('w') {
2303
- format!(
2304
- "{} {}, {}, {}, {}",
2305
- op,
2306
- rd_fpr.unwrap_or(rd),
2307
- rn_fpr.unwrap_or(rn),
2308
- rm_fpr.unwrap_or(rm),
2309
- ra_fpr.unwrap_or(ra)
2310
- )
2311
- } else {
2312
- format!("{op} {rd}, {rn}, {rm}, {ra}")
2313
- }
2314
- }
2315
- &Inst::FpuCmp32 { rn, rm } => {
2316
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2317
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2318
- if rn_fpr.is_some() && rm_fpr.is_some() {
2319
- format!("cebr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
2320
- } else {
2321
- format!("wfcsb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
2322
- }
2323
- }
2324
- &Inst::FpuCmp64 { rn, rm } => {
2325
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2326
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2327
- if rn_fpr.is_some() && rm_fpr.is_some() {
2328
- format!("cdbr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
2329
- } else {
2330
- format!("wfcdb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
2331
- }
2332
- }
2333
- &Inst::FpuCmp128 { rn, rm } => {
2334
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2335
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2336
- format!("wfcxb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
2337
- }
2338
- &Inst::FpuRound { op, mode, rd, rn } => {
2339
- let mode = match mode {
2340
- FpuRoundMode::Current => 0,
2341
- FpuRoundMode::ToNearest => 1,
2342
- FpuRoundMode::ShorterPrecision => 3,
2343
- FpuRoundMode::ToNearestTiesToEven => 4,
2344
- FpuRoundMode::ToZero => 5,
2345
- FpuRoundMode::ToPosInfinity => 6,
2346
- FpuRoundMode::ToNegInfinity => 7,
2347
- };
2348
- let (opcode, opcode_fpr) = match op {
2349
- FpuRoundOp::Cvt64To32 => ("wledb", Some("ledbra")),
2350
- FpuRoundOp::Cvt64x2To32x4 => ("vledb", None),
2351
- FpuRoundOp::Cvt128To64 => ("wflrx", None),
2352
- FpuRoundOp::Round32 => ("wfisb", Some("fiebr")),
2353
- FpuRoundOp::Round64 => ("wfidb", Some("fidbr")),
2354
- FpuRoundOp::Round128 => ("wfixb", None),
2355
- FpuRoundOp::Round32x4 => ("vfisb", None),
2356
- FpuRoundOp::Round64x2 => ("vfidb", None),
2357
- FpuRoundOp::ToSInt32 => ("wcfeb", None),
2358
- FpuRoundOp::ToSInt64 => ("wcgdb", None),
2359
- FpuRoundOp::ToUInt32 => ("wclfeb", None),
2360
- FpuRoundOp::ToUInt64 => ("wclgdb", None),
2361
- FpuRoundOp::ToSInt32x4 => ("vcfeb", None),
2362
- FpuRoundOp::ToSInt64x2 => ("vcgdb", None),
2363
- FpuRoundOp::ToUInt32x4 => ("vclfeb", None),
2364
- FpuRoundOp::ToUInt64x2 => ("vclgdb", None),
2365
- FpuRoundOp::FromSInt32 => ("wcefb", None),
2366
- FpuRoundOp::FromSInt64 => ("wcdgb", None),
2367
- FpuRoundOp::FromUInt32 => ("wcelfb", None),
2368
- FpuRoundOp::FromUInt64 => ("wcdlgb", None),
2369
- FpuRoundOp::FromSInt32x4 => ("vcefb", None),
2370
- FpuRoundOp::FromSInt64x2 => ("vcdgb", None),
2371
- FpuRoundOp::FromUInt32x4 => ("vcelfb", None),
2372
- FpuRoundOp::FromUInt64x2 => ("vcdlgb", None),
2373
- };
2374
-
2375
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2376
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2377
- if opcode_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
2378
- format!(
2379
- "{} {}, {}, {}{}",
2380
- opcode_fpr.unwrap(),
2381
- rd_fpr.unwrap(),
2382
- mode,
2383
- rn_fpr.unwrap(),
2384
- if opcode_fpr.unwrap().ends_with('a') {
2385
- ", 0"
2386
- } else {
2387
- ""
2388
- }
2389
- )
2390
- } else if opcode.starts_with('w') {
2391
- format!(
2392
- "{} {}, {}, 0, {}",
2393
- opcode,
2394
- rd_fpr.unwrap_or(rd),
2395
- rn_fpr.unwrap_or(rn),
2396
- mode
2397
- )
2398
- } else {
2399
- format!("{opcode} {rd}, {rn}, 0, {mode}")
2400
- }
2401
- }
2402
- &Inst::FpuConv128FromInt { op, mode, rd, rn } => {
2403
- let mode = match mode {
2404
- FpuRoundMode::Current => 0,
2405
- FpuRoundMode::ToNearest => 1,
2406
- FpuRoundMode::ShorterPrecision => 3,
2407
- FpuRoundMode::ToNearestTiesToEven => 4,
2408
- FpuRoundMode::ToZero => 5,
2409
- FpuRoundMode::ToPosInfinity => 6,
2410
- FpuRoundMode::ToNegInfinity => 7,
2411
- };
2412
- let opcode = match op {
2413
- FpuConv128Op::SInt32 => "cxfbra",
2414
- FpuConv128Op::SInt64 => "cxgbra",
2415
- FpuConv128Op::UInt32 => "cxlfbr",
2416
- FpuConv128Op::UInt64 => "cxlgbr",
2417
- };
2418
- let rd = pretty_print_fp_regpair(rd.to_regpair());
2419
- let rn = pretty_print_reg(rn);
2420
- format!("{opcode} {rd}, {mode}, {rn}, 0")
2421
- }
2422
- &Inst::FpuConv128ToInt { op, mode, rd, rn } => {
2423
- let mode = match mode {
2424
- FpuRoundMode::Current => 0,
2425
- FpuRoundMode::ToNearest => 1,
2426
- FpuRoundMode::ShorterPrecision => 3,
2427
- FpuRoundMode::ToNearestTiesToEven => 4,
2428
- FpuRoundMode::ToZero => 5,
2429
- FpuRoundMode::ToPosInfinity => 6,
2430
- FpuRoundMode::ToNegInfinity => 7,
2431
- };
2432
- let opcode = match op {
2433
- FpuConv128Op::SInt32 => "cfxbra",
2434
- FpuConv128Op::SInt64 => "cgxbra",
2435
- FpuConv128Op::UInt32 => "clfxbr",
2436
- FpuConv128Op::UInt64 => "clgxbr",
2437
- };
2438
- let rd = pretty_print_reg(rd.to_reg());
2439
- let rn = pretty_print_fp_regpair(rn);
2440
- format!("{opcode} {rd}, {mode}, {rn}, 0")
2441
- }
2442
-
2443
- &Inst::VecRRR { op, rd, rn, rm } => {
2444
- let op = match op {
2445
- VecBinaryOp::Add8x16 => "vab",
2446
- VecBinaryOp::Add16x8 => "vah",
2447
- VecBinaryOp::Add32x4 => "vaf",
2448
- VecBinaryOp::Add64x2 => "vag",
2449
- VecBinaryOp::Add128 => "vaq",
2450
- VecBinaryOp::Sub8x16 => "vsb",
2451
- VecBinaryOp::Sub16x8 => "vsh",
2452
- VecBinaryOp::Sub32x4 => "vsf",
2453
- VecBinaryOp::Sub64x2 => "vsg",
2454
- VecBinaryOp::Sub128 => "vsq",
2455
- VecBinaryOp::Mul8x16 => "vmlb",
2456
- VecBinaryOp::Mul16x8 => "vmlhw",
2457
- VecBinaryOp::Mul32x4 => "vmlf",
2458
- VecBinaryOp::UMulHi8x16 => "vmlhb",
2459
- VecBinaryOp::UMulHi16x8 => "vmlhh",
2460
- VecBinaryOp::UMulHi32x4 => "vmlhf",
2461
- VecBinaryOp::SMulHi8x16 => "vmhb",
2462
- VecBinaryOp::SMulHi16x8 => "vmhh",
2463
- VecBinaryOp::SMulHi32x4 => "vmhf",
2464
- VecBinaryOp::UMulEven8x16 => "vmleb",
2465
- VecBinaryOp::UMulEven16x8 => "vmleh",
2466
- VecBinaryOp::UMulEven32x4 => "vmlef",
2467
- VecBinaryOp::SMulEven8x16 => "vmeb",
2468
- VecBinaryOp::SMulEven16x8 => "vmeh",
2469
- VecBinaryOp::SMulEven32x4 => "vmef",
2470
- VecBinaryOp::UMulOdd8x16 => "vmlob",
2471
- VecBinaryOp::UMulOdd16x8 => "vmloh",
2472
- VecBinaryOp::UMulOdd32x4 => "vmlof",
2473
- VecBinaryOp::SMulOdd8x16 => "vmob",
2474
- VecBinaryOp::SMulOdd16x8 => "vmoh",
2475
- VecBinaryOp::SMulOdd32x4 => "vmof",
2476
- VecBinaryOp::UMax8x16 => "vmxlb",
2477
- VecBinaryOp::UMax16x8 => "vmxlh",
2478
- VecBinaryOp::UMax32x4 => "vmxlf",
2479
- VecBinaryOp::UMax64x2 => "vmxlg",
2480
- VecBinaryOp::SMax8x16 => "vmxb",
2481
- VecBinaryOp::SMax16x8 => "vmxh",
2482
- VecBinaryOp::SMax32x4 => "vmxf",
2483
- VecBinaryOp::SMax64x2 => "vmxg",
2484
- VecBinaryOp::UMin8x16 => "vmnlb",
2485
- VecBinaryOp::UMin16x8 => "vmnlh",
2486
- VecBinaryOp::UMin32x4 => "vmnlf",
2487
- VecBinaryOp::UMin64x2 => "vmnlg",
2488
- VecBinaryOp::SMin8x16 => "vmnb",
2489
- VecBinaryOp::SMin16x8 => "vmnh",
2490
- VecBinaryOp::SMin32x4 => "vmnf",
2491
- VecBinaryOp::SMin64x2 => "vmng",
2492
- VecBinaryOp::UAvg8x16 => "vavglb",
2493
- VecBinaryOp::UAvg16x8 => "vavglh",
2494
- VecBinaryOp::UAvg32x4 => "vavglf",
2495
- VecBinaryOp::UAvg64x2 => "vavglg",
2496
- VecBinaryOp::SAvg8x16 => "vavgb",
2497
- VecBinaryOp::SAvg16x8 => "vavgh",
2498
- VecBinaryOp::SAvg32x4 => "vavgf",
2499
- VecBinaryOp::SAvg64x2 => "vavgg",
2500
- VecBinaryOp::And128 => "vn",
2501
- VecBinaryOp::Orr128 => "vo",
2502
- VecBinaryOp::Xor128 => "vx",
2503
- VecBinaryOp::NotAnd128 => "vnn",
2504
- VecBinaryOp::NotOrr128 => "vno",
2505
- VecBinaryOp::NotXor128 => "vnx",
2506
- VecBinaryOp::AndNot128 => "vnc",
2507
- VecBinaryOp::OrrNot128 => "voc",
2508
- VecBinaryOp::BitPermute128 => "vbperm",
2509
- VecBinaryOp::LShLByByte128 => "vslb",
2510
- VecBinaryOp::LShRByByte128 => "vsrlb",
2511
- VecBinaryOp::AShRByByte128 => "vsrab",
2512
- VecBinaryOp::LShLByBit128 => "vsl",
2513
- VecBinaryOp::LShRByBit128 => "vsrl",
2514
- VecBinaryOp::AShRByBit128 => "vsra",
2515
- VecBinaryOp::Pack16x8 => "vpkh",
2516
- VecBinaryOp::Pack32x4 => "vpkf",
2517
- VecBinaryOp::Pack64x2 => "vpkg",
2518
- VecBinaryOp::PackUSat16x8 => "vpklsh",
2519
- VecBinaryOp::PackUSat32x4 => "vpklsf",
2520
- VecBinaryOp::PackUSat64x2 => "vpklsg",
2521
- VecBinaryOp::PackSSat16x8 => "vpksh",
2522
- VecBinaryOp::PackSSat32x4 => "vpksf",
2523
- VecBinaryOp::PackSSat64x2 => "vpksg",
2524
- VecBinaryOp::MergeLow8x16 => "vmrlb",
2525
- VecBinaryOp::MergeLow16x8 => "vmrlh",
2526
- VecBinaryOp::MergeLow32x4 => "vmrlf",
2527
- VecBinaryOp::MergeLow64x2 => "vmrlg",
2528
- VecBinaryOp::MergeHigh8x16 => "vmrhb",
2529
- VecBinaryOp::MergeHigh16x8 => "vmrhh",
2530
- VecBinaryOp::MergeHigh32x4 => "vmrhf",
2531
- VecBinaryOp::MergeHigh64x2 => "vmrhg",
2532
- };
2533
- let rd = pretty_print_reg(rd.to_reg());
2534
- let rn = pretty_print_reg(rn);
2535
- let rm = pretty_print_reg(rm);
2536
- format!("{op} {rd}, {rn}, {rm}")
2537
- }
2538
- &Inst::VecRR { op, rd, rn } => {
2539
- let op = match op {
2540
- VecUnaryOp::Abs8x16 => "vlpb",
2541
- VecUnaryOp::Abs16x8 => "vlph",
2542
- VecUnaryOp::Abs32x4 => "vlpf",
2543
- VecUnaryOp::Abs64x2 => "vlpg",
2544
- VecUnaryOp::Neg8x16 => "vlcb",
2545
- VecUnaryOp::Neg16x8 => "vlch",
2546
- VecUnaryOp::Neg32x4 => "vlcf",
2547
- VecUnaryOp::Neg64x2 => "vlcg",
2548
- VecUnaryOp::Popcnt8x16 => "vpopctb",
2549
- VecUnaryOp::Popcnt16x8 => "vpopcth",
2550
- VecUnaryOp::Popcnt32x4 => "vpopctf",
2551
- VecUnaryOp::Popcnt64x2 => "vpopctg",
2552
- VecUnaryOp::Clz8x16 => "vclzb",
2553
- VecUnaryOp::Clz16x8 => "vclzh",
2554
- VecUnaryOp::Clz32x4 => "vclzf",
2555
- VecUnaryOp::Clz64x2 => "vclzg",
2556
- VecUnaryOp::Ctz8x16 => "vctzb",
2557
- VecUnaryOp::Ctz16x8 => "vctzh",
2558
- VecUnaryOp::Ctz32x4 => "vctzf",
2559
- VecUnaryOp::Ctz64x2 => "vctzg",
2560
- VecUnaryOp::UnpackULow8x16 => "vupllb",
2561
- VecUnaryOp::UnpackULow16x8 => "vupllh",
2562
- VecUnaryOp::UnpackULow32x4 => "vupllf",
2563
- VecUnaryOp::UnpackUHigh8x16 => "vuplhb",
2564
- VecUnaryOp::UnpackUHigh16x8 => "vuplhh",
2565
- VecUnaryOp::UnpackUHigh32x4 => "vuplhf",
2566
- VecUnaryOp::UnpackSLow8x16 => "vuplb",
2567
- VecUnaryOp::UnpackSLow16x8 => "vuplh",
2568
- VecUnaryOp::UnpackSLow32x4 => "vuplf",
2569
- VecUnaryOp::UnpackSHigh8x16 => "vuphb",
2570
- VecUnaryOp::UnpackSHigh16x8 => "vuphh",
2571
- VecUnaryOp::UnpackSHigh32x4 => "vuphf",
2572
- };
2573
- let rd = pretty_print_reg(rd.to_reg());
2574
- let rn = pretty_print_reg(rn);
2575
- format!("{op} {rd}, {rn}")
2576
- }
2577
- &Inst::VecShiftRR {
2578
- shift_op,
2579
- rd,
2580
- rn,
2581
- shift_imm,
2582
- shift_reg,
2583
- } => {
2584
- let op = match shift_op {
2585
- VecShiftOp::RotL8x16 => "verllb",
2586
- VecShiftOp::RotL16x8 => "verllh",
2587
- VecShiftOp::RotL32x4 => "verllf",
2588
- VecShiftOp::RotL64x2 => "verllg",
2589
- VecShiftOp::LShL8x16 => "veslb",
2590
- VecShiftOp::LShL16x8 => "veslh",
2591
- VecShiftOp::LShL32x4 => "veslf",
2592
- VecShiftOp::LShL64x2 => "veslg",
2593
- VecShiftOp::LShR8x16 => "vesrlb",
2594
- VecShiftOp::LShR16x8 => "vesrlh",
2595
- VecShiftOp::LShR32x4 => "vesrlf",
2596
- VecShiftOp::LShR64x2 => "vesrlg",
2597
- VecShiftOp::AShR8x16 => "vesrab",
2598
- VecShiftOp::AShR16x8 => "vesrah",
2599
- VecShiftOp::AShR32x4 => "vesraf",
2600
- VecShiftOp::AShR64x2 => "vesrag",
2601
- };
2602
- let rd = pretty_print_reg(rd.to_reg());
2603
- let rn = pretty_print_reg(rn);
2604
- let shift_reg = if shift_reg != zero_reg() {
2605
- format!("({})", pretty_print_reg(shift_reg))
2606
- } else {
2607
- "".to_string()
2608
- };
2609
- format!("{op} {rd}, {rn}, {shift_imm}{shift_reg}")
2610
- }
2611
- &Inst::VecSelect { rd, rn, rm, ra } => {
2612
- let rd = pretty_print_reg(rd.to_reg());
2613
- let rn = pretty_print_reg(rn);
2614
- let rm = pretty_print_reg(rm);
2615
- let ra = pretty_print_reg(ra);
2616
- format!("vsel {rd}, {rn}, {rm}, {ra}")
2617
- }
2618
- &Inst::VecPermute { rd, rn, rm, ra } => {
2619
- let rd = pretty_print_reg(rd.to_reg());
2620
- let rn = pretty_print_reg(rn);
2621
- let rm = pretty_print_reg(rm);
2622
- let ra = pretty_print_reg(ra);
2623
- format!("vperm {rd}, {rn}, {rm}, {ra}")
2624
- }
2625
- &Inst::VecPermuteDWImm {
2626
- rd,
2627
- rn,
2628
- rm,
2629
- idx1,
2630
- idx2,
2631
- } => {
2632
- let rd = pretty_print_reg(rd.to_reg());
2633
- let rn = pretty_print_reg(rn);
2634
- let rm = pretty_print_reg(rm);
2635
- let m4 = (idx1 & 1) * 4 + (idx2 & 1);
2636
- format!("vpdi {rd}, {rn}, {rm}, {m4}")
2637
- }
2638
- &Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
2639
- let op = match op {
2640
- VecIntCmpOp::CmpEq8x16 => "vceqb",
2641
- VecIntCmpOp::CmpEq16x8 => "vceqh",
2642
- VecIntCmpOp::CmpEq32x4 => "vceqf",
2643
- VecIntCmpOp::CmpEq64x2 => "vceqg",
2644
- VecIntCmpOp::SCmpHi8x16 => "vchb",
2645
- VecIntCmpOp::SCmpHi16x8 => "vchh",
2646
- VecIntCmpOp::SCmpHi32x4 => "vchf",
2647
- VecIntCmpOp::SCmpHi64x2 => "vchg",
2648
- VecIntCmpOp::UCmpHi8x16 => "vchlb",
2649
- VecIntCmpOp::UCmpHi16x8 => "vchlh",
2650
- VecIntCmpOp::UCmpHi32x4 => "vchlf",
2651
- VecIntCmpOp::UCmpHi64x2 => "vchlg",
2652
- };
2653
- let s = match self {
2654
- &Inst::VecIntCmp { .. } => "",
2655
- &Inst::VecIntCmpS { .. } => "s",
2656
- _ => unreachable!(),
2657
- };
2658
- let rd = pretty_print_reg(rd.to_reg());
2659
- let rn = pretty_print_reg(rn);
2660
- let rm = pretty_print_reg(rm);
2661
- format!("{op}{s} {rd}, {rn}, {rm}")
2662
- }
2663
- &Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
2664
- let op = match op {
2665
- VecFloatCmpOp::CmpEq32x4 => "vfcesb",
2666
- VecFloatCmpOp::CmpEq64x2 => "vfcedb",
2667
- VecFloatCmpOp::CmpHi32x4 => "vfchsb",
2668
- VecFloatCmpOp::CmpHi64x2 => "vfchdb",
2669
- VecFloatCmpOp::CmpHiEq32x4 => "vfchesb",
2670
- VecFloatCmpOp::CmpHiEq64x2 => "vfchedb",
2671
- };
2672
- let s = match self {
2673
- &Inst::VecFloatCmp { .. } => "",
2674
- &Inst::VecFloatCmpS { .. } => "s",
2675
- _ => unreachable!(),
2676
- };
2677
- let rd = pretty_print_reg(rd.to_reg());
2678
- let rn = pretty_print_reg(rn);
2679
- let rm = pretty_print_reg(rm);
2680
- format!("{op}{s} {rd}, {rn}, {rm}")
2681
- }
2682
- &Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
2683
- let op = match self {
2684
- &Inst::VecInt128SCmpHi { .. } => "vecg",
2685
- &Inst::VecInt128UCmpHi { .. } => "veclg",
2686
- _ => unreachable!(),
2687
- };
2688
- let tmp = pretty_print_reg(tmp.to_reg());
2689
- let rn = pretty_print_reg(rn);
2690
- let rm = pretty_print_reg(rm);
2691
- format!("{op} {rm}, {rn} ; jne 10 ; vchlgs {tmp}, {rn}, {rm}")
2692
- }
2693
- &Inst::VecLoad { rd, ref mem }
2694
- | &Inst::VecLoadRev { rd, ref mem }
2695
- | &Inst::VecLoadByte16Rev { rd, ref mem }
2696
- | &Inst::VecLoadByte32Rev { rd, ref mem }
2697
- | &Inst::VecLoadByte64Rev { rd, ref mem }
2698
- | &Inst::VecLoadElt16Rev { rd, ref mem }
2699
- | &Inst::VecLoadElt32Rev { rd, ref mem }
2700
- | &Inst::VecLoadElt64Rev { rd, ref mem } => {
2701
- let opcode = match self {
2702
- &Inst::VecLoad { .. } => "vl",
2703
- &Inst::VecLoadRev { .. } => "vlbrq",
2704
- &Inst::VecLoadByte16Rev { .. } => "vlbrh",
2705
- &Inst::VecLoadByte32Rev { .. } => "vlbrf",
2706
- &Inst::VecLoadByte64Rev { .. } => "vlbrg",
2707
- &Inst::VecLoadElt16Rev { .. } => "vlerh",
2708
- &Inst::VecLoadElt32Rev { .. } => "vlerf",
2709
- &Inst::VecLoadElt64Rev { .. } => "vlerg",
2710
- _ => unreachable!(),
2711
- };
2712
-
2713
- let rd = pretty_print_reg(rd.to_reg());
2714
- let mem = mem.clone();
2715
- let (mem_str, mem) = mem_finalize_for_show(
2716
- &mem,
2717
- state,
2718
- MemInstType {
2719
- have_d12: true,
2720
- have_d20: false,
2721
- have_pcrel: false,
2722
- have_unaligned_pcrel: false,
2723
- have_index: true,
2724
- },
2725
- );
2726
- let mem = mem.pretty_print_default();
2727
- format!("{mem_str}{opcode} {rd}, {mem}")
2728
- }
2729
- &Inst::VecStore { rd, ref mem }
2730
- | &Inst::VecStoreRev { rd, ref mem }
2731
- | &Inst::VecStoreByte16Rev { rd, ref mem }
2732
- | &Inst::VecStoreByte32Rev { rd, ref mem }
2733
- | &Inst::VecStoreByte64Rev { rd, ref mem }
2734
- | &Inst::VecStoreElt16Rev { rd, ref mem }
2735
- | &Inst::VecStoreElt32Rev { rd, ref mem }
2736
- | &Inst::VecStoreElt64Rev { rd, ref mem } => {
2737
- let opcode = match self {
2738
- &Inst::VecStore { .. } => "vst",
2739
- &Inst::VecStoreRev { .. } => "vstbrq",
2740
- &Inst::VecStoreByte16Rev { .. } => "vstbrh",
2741
- &Inst::VecStoreByte32Rev { .. } => "vstbrf",
2742
- &Inst::VecStoreByte64Rev { .. } => "vstbrg",
2743
- &Inst::VecStoreElt16Rev { .. } => "vsterh",
2744
- &Inst::VecStoreElt32Rev { .. } => "vsterf",
2745
- &Inst::VecStoreElt64Rev { .. } => "vsterg",
2746
- _ => unreachable!(),
2747
- };
2748
-
2749
- let rd = pretty_print_reg(rd);
2750
- let mem = mem.clone();
2751
- let (mem_str, mem) = mem_finalize_for_show(
2752
- &mem,
2753
- state,
2754
- MemInstType {
2755
- have_d12: true,
2756
- have_d20: false,
2757
- have_pcrel: false,
2758
- have_unaligned_pcrel: false,
2759
- have_index: true,
2760
- },
2761
- );
2762
- let mem = mem.pretty_print_default();
2763
- format!("{mem_str}{opcode} {rd}, {mem}")
2764
- }
2765
- &Inst::VecLoadReplicate { size, rd, ref mem }
2766
- | &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
2767
- let opcode = match (self, size) {
2768
- (&Inst::VecLoadReplicate { .. }, 8) => "vlrepb",
2769
- (&Inst::VecLoadReplicate { .. }, 16) => "vlreph",
2770
- (&Inst::VecLoadReplicate { .. }, 32) => "vlrepf",
2771
- (&Inst::VecLoadReplicate { .. }, 64) => "vlrepg",
2772
- (&Inst::VecLoadReplicateRev { .. }, 16) => "vlbrreph",
2773
- (&Inst::VecLoadReplicateRev { .. }, 32) => "vlbrrepf",
2774
- (&Inst::VecLoadReplicateRev { .. }, 64) => "vlbrrepg",
2775
- _ => unreachable!(),
2776
- };
2777
-
2778
- let rd = pretty_print_reg(rd.to_reg());
2779
- let mem = mem.clone();
2780
- let (mem_str, mem) = mem_finalize_for_show(
2781
- &mem,
2782
- state,
2783
- MemInstType {
2784
- have_d12: true,
2785
- have_d20: false,
2786
- have_pcrel: false,
2787
- have_unaligned_pcrel: false,
2788
- have_index: true,
2789
- },
2790
- );
2791
- let mem = mem.pretty_print_default();
2792
- format!("{mem_str}{opcode} {rd}, {mem}")
2793
- }
2794
- &Inst::VecMov { rd, rn } => {
2795
- let rd = pretty_print_reg(rd.to_reg());
2796
- let rn = pretty_print_reg(rn);
2797
- format!("vlr {rd}, {rn}")
2798
- }
2799
- &Inst::VecCMov { rd, cond, ri, rm } => {
2800
- let rd = pretty_print_reg_mod(rd, ri);
2801
- let rm = pretty_print_reg(rm);
2802
- let cond = cond.invert().pretty_print_default();
2803
- format!("j{cond} 10 ; vlr {rd}, {rm}")
2804
- }
2805
- &Inst::MovToVec128 { rd, rn, rm } => {
2806
- let rd = pretty_print_reg(rd.to_reg());
2807
- let rn = pretty_print_reg(rn);
2808
- let rm = pretty_print_reg(rm);
2809
- format!("vlvgp {rd}, {rn}, {rm}")
2810
- }
2811
- &Inst::VecImmByteMask { rd, mask } => {
2812
- let rd = pretty_print_reg(rd.to_reg());
2813
- format!("vgbm {rd}, {mask}")
2814
- }
2815
- &Inst::VecImmBitMask {
2816
- size,
2817
- rd,
2818
- start_bit,
2819
- end_bit,
2820
- } => {
2821
- let rd = pretty_print_reg(rd.to_reg());
2822
- let op = match size {
2823
- 8 => "vgmb",
2824
- 16 => "vgmh",
2825
- 32 => "vgmf",
2826
- 64 => "vgmg",
2827
- _ => unreachable!(),
2828
- };
2829
- format!("{op} {rd}, {start_bit}, {end_bit}")
2830
- }
2831
- &Inst::VecImmReplicate { size, rd, imm } => {
2832
- let rd = pretty_print_reg(rd.to_reg());
2833
- let op = match size {
2834
- 8 => "vrepib",
2835
- 16 => "vrepih",
2836
- 32 => "vrepif",
2837
- 64 => "vrepig",
2838
- _ => unreachable!(),
2839
- };
2840
- format!("{op} {rd}, {imm}")
2841
- }
2842
- &Inst::VecLoadLane {
2843
- size,
2844
- rd,
2845
- ref mem,
2846
- lane_imm,
2847
- ..
2848
- }
2849
- | &Inst::VecLoadLaneRev {
2850
- size,
2851
- rd,
2852
- ref mem,
2853
- lane_imm,
2854
- ..
2855
- } => {
2856
- let opcode_vrx = match (self, size) {
2857
- (&Inst::VecLoadLane { .. }, 8) => "vleb",
2858
- (&Inst::VecLoadLane { .. }, 16) => "vleh",
2859
- (&Inst::VecLoadLane { .. }, 32) => "vlef",
2860
- (&Inst::VecLoadLane { .. }, 64) => "vleg",
2861
- (&Inst::VecLoadLaneRev { .. }, 16) => "vlebrh",
2862
- (&Inst::VecLoadLaneRev { .. }, 32) => "vlebrf",
2863
- (&Inst::VecLoadLaneRev { .. }, 64) => "vlebrg",
2864
- _ => unreachable!(),
2865
- };
2866
-
2867
- let (rd, _) = pretty_print_fpr(rd.to_reg());
2868
- let mem = mem.clone();
2869
- let (mem_str, mem) = mem_finalize_for_show(
2870
- &mem,
2871
- state,
2872
- MemInstType {
2873
- have_d12: true,
2874
- have_d20: false,
2875
- have_pcrel: false,
2876
- have_unaligned_pcrel: false,
2877
- have_index: true,
2878
- },
2879
- );
2880
- let mem = mem.pretty_print_default();
2881
- format!("{mem_str}{opcode_vrx} {rd}, {mem}, {lane_imm}")
2882
- }
2883
- &Inst::VecLoadLaneUndef {
2884
- size,
2885
- rd,
2886
- ref mem,
2887
- lane_imm,
2888
- }
2889
- | &Inst::VecLoadLaneRevUndef {
2890
- size,
2891
- rd,
2892
- ref mem,
2893
- lane_imm,
2894
- } => {
2895
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
2896
- (&Inst::VecLoadLaneUndef { .. }, 8) => ("vleb", None, None),
2897
- (&Inst::VecLoadLaneUndef { .. }, 16) => ("vleh", None, None),
2898
- (&Inst::VecLoadLaneUndef { .. }, 32) => ("vlef", Some("le"), Some("ley")),
2899
- (&Inst::VecLoadLaneUndef { .. }, 64) => ("vleg", Some("ld"), Some("ldy")),
2900
- (&Inst::VecLoadLaneRevUndef { .. }, 16) => ("vlebrh", None, None),
2901
- (&Inst::VecLoadLaneRevUndef { .. }, 32) => ("vlebrf", None, None),
2902
- (&Inst::VecLoadLaneRevUndef { .. }, 64) => ("vlebrg", None, None),
2903
- _ => unreachable!(),
2904
- };
2905
-
2906
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2907
- let mem = mem.clone();
2908
- if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
2909
- let (mem_str, mem) = mem_finalize_for_show(
2910
- &mem,
2911
- state,
2912
- MemInstType {
2913
- have_d12: true,
2914
- have_d20: true,
2915
- have_pcrel: false,
2916
- have_unaligned_pcrel: false,
2917
- have_index: true,
2918
- },
2919
- );
2920
- let op = match &mem {
2921
- &MemArg::BXD12 { .. } => opcode_rx,
2922
- &MemArg::BXD20 { .. } => opcode_rxy,
2923
- _ => unreachable!(),
2924
- };
2925
- let mem = mem.pretty_print_default();
2926
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
2927
- } else {
2928
- let (mem_str, mem) = mem_finalize_for_show(
2929
- &mem,
2930
- state,
2931
- MemInstType {
2932
- have_d12: true,
2933
- have_d20: false,
2934
- have_pcrel: false,
2935
- have_unaligned_pcrel: false,
2936
- have_index: true,
2937
- },
2938
- );
2939
- let mem = mem.pretty_print_default();
2940
- format!("{mem_str}{opcode_vrx} {rd}, {mem}, {lane_imm}")
2941
- }
2942
- }
2943
- &Inst::VecStoreLane {
2944
- size,
2945
- rd,
2946
- ref mem,
2947
- lane_imm,
2948
- }
2949
- | &Inst::VecStoreLaneRev {
2950
- size,
2951
- rd,
2952
- ref mem,
2953
- lane_imm,
2954
- } => {
2955
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
2956
- (&Inst::VecStoreLane { .. }, 8) => ("vsteb", None, None),
2957
- (&Inst::VecStoreLane { .. }, 16) => ("vsteh", None, None),
2958
- (&Inst::VecStoreLane { .. }, 32) => ("vstef", Some("ste"), Some("stey")),
2959
- (&Inst::VecStoreLane { .. }, 64) => ("vsteg", Some("std"), Some("stdy")),
2960
- (&Inst::VecStoreLaneRev { .. }, 16) => ("vstebrh", None, None),
2961
- (&Inst::VecStoreLaneRev { .. }, 32) => ("vstebrf", None, None),
2962
- (&Inst::VecStoreLaneRev { .. }, 64) => ("vstebrg", None, None),
2963
- _ => unreachable!(),
2964
- };
2965
-
2966
- let (rd, rd_fpr) = pretty_print_fpr(rd);
2967
- let mem = mem.clone();
2968
- if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
2969
- let (mem_str, mem) = mem_finalize_for_show(
2970
- &mem,
2971
- state,
2972
- MemInstType {
2973
- have_d12: true,
2974
- have_d20: true,
2975
- have_pcrel: false,
2976
- have_unaligned_pcrel: false,
2977
- have_index: true,
2978
- },
2979
- );
2980
- let op = match &mem {
2981
- &MemArg::BXD12 { .. } => opcode_rx,
2982
- &MemArg::BXD20 { .. } => opcode_rxy,
2983
- _ => unreachable!(),
2984
- };
2985
- let mem = mem.pretty_print_default();
2986
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
2987
- } else {
2988
- let (mem_str, mem) = mem_finalize_for_show(
2989
- &mem,
2990
- state,
2991
- MemInstType {
2992
- have_d12: true,
2993
- have_d20: false,
2994
- have_pcrel: false,
2995
- have_unaligned_pcrel: false,
2996
- have_index: true,
2997
- },
2998
- );
2999
- let mem = mem.pretty_print_default();
3000
- format!("{mem_str}{opcode_vrx} {rd}, {mem}, {lane_imm}",)
3001
- }
3002
- }
3003
- &Inst::VecInsertLane {
3004
- size,
3005
- rd,
3006
- ri,
3007
- rn,
3008
- lane_imm,
3009
- lane_reg,
3010
- } => {
3011
- let op = match size {
3012
- 8 => "vlvgb",
3013
- 16 => "vlvgh",
3014
- 32 => "vlvgf",
3015
- 64 => "vlvgg",
3016
- _ => unreachable!(),
3017
- };
3018
- let rd = pretty_print_reg_mod(rd, ri);
3019
- let rn = pretty_print_reg(rn);
3020
- let lane_reg = if lane_reg != zero_reg() {
3021
- format!("({})", pretty_print_reg(lane_reg))
3022
- } else {
3023
- "".to_string()
3024
- };
3025
- format!("{op} {rd}, {rn}, {lane_imm}{lane_reg}")
3026
- }
3027
- &Inst::VecInsertLaneUndef {
3028
- size,
3029
- rd,
3030
- rn,
3031
- lane_imm,
3032
- lane_reg,
3033
- } => {
3034
- let (opcode_vrs, opcode_rre) = match size {
3035
- 8 => ("vlvgb", None),
3036
- 16 => ("vlvgh", None),
3037
- 32 => ("vlvgf", None),
3038
- 64 => ("vlvgg", Some("ldgr")),
3039
- _ => unreachable!(),
3040
- };
3041
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
3042
- let rn = pretty_print_reg(rn);
3043
- let lane_reg = if lane_reg != zero_reg() {
3044
- format!("({})", pretty_print_reg(lane_reg))
3045
- } else {
3046
- "".to_string()
3047
- };
3048
- if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rd_fpr.is_some()
3049
- {
3050
- format!("{} {}, {}", opcode_rre.unwrap(), rd_fpr.unwrap(), rn)
3051
- } else {
3052
- format!("{opcode_vrs} {rd}, {rn}, {lane_imm}{lane_reg}")
3053
- }
3054
- }
3055
- &Inst::VecExtractLane {
3056
- size,
3057
- rd,
3058
- rn,
3059
- lane_imm,
3060
- lane_reg,
3061
- } => {
3062
- let (opcode_vrs, opcode_rre) = match size {
3063
- 8 => ("vlgvb", None),
3064
- 16 => ("vlgvh", None),
3065
- 32 => ("vlgvf", None),
3066
- 64 => ("vlgvg", Some("lgdr")),
3067
- _ => unreachable!(),
3068
- };
3069
- let rd = pretty_print_reg(rd.to_reg());
3070
- let (rn, rn_fpr) = pretty_print_fpr(rn);
3071
- let lane_reg = if lane_reg != zero_reg() {
3072
- format!("({})", pretty_print_reg(lane_reg))
3073
- } else {
3074
- "".to_string()
3075
- };
3076
- if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rn_fpr.is_some()
3077
- {
3078
- format!("{} {}, {}", opcode_rre.unwrap(), rd, rn_fpr.unwrap())
3079
- } else {
3080
- format!("{opcode_vrs} {rd}, {rn}, {lane_imm}{lane_reg}")
3081
- }
3082
- }
3083
- &Inst::VecInsertLaneImm {
3084
- size,
3085
- rd,
3086
- ri,
3087
- imm,
3088
- lane_imm,
3089
- } => {
3090
- let op = match size {
3091
- 8 => "vleib",
3092
- 16 => "vleih",
3093
- 32 => "vleif",
3094
- 64 => "vleig",
3095
- _ => unreachable!(),
3096
- };
3097
- let rd = pretty_print_reg_mod(rd, ri);
3098
- format!("{op} {rd}, {imm}, {lane_imm}")
3099
- }
3100
- &Inst::VecInsertLaneImmUndef {
3101
- size,
3102
- rd,
3103
- imm,
3104
- lane_imm,
3105
- } => {
3106
- let op = match size {
3107
- 8 => "vleib",
3108
- 16 => "vleih",
3109
- 32 => "vleif",
3110
- 64 => "vleig",
3111
- _ => unreachable!(),
3112
- };
3113
- let rd = pretty_print_reg(rd.to_reg());
3114
- format!("{op} {rd}, {imm}, {lane_imm}")
3115
- }
3116
- &Inst::VecReplicateLane {
3117
- size,
3118
- rd,
3119
- rn,
3120
- lane_imm,
3121
- } => {
3122
- let op = match size {
3123
- 8 => "vrepb",
3124
- 16 => "vreph",
3125
- 32 => "vrepf",
3126
- 64 => "vrepg",
3127
- _ => unreachable!(),
3128
- };
3129
- let rd = pretty_print_reg(rd.to_reg());
3130
- let rn = pretty_print_reg(rn);
3131
- format!("{op} {rd}, {rn}, {lane_imm}")
3132
- }
3133
- &Inst::VecEltRev { lane_count, rd, rn } => {
3134
- assert!(lane_count >= 2 && lane_count <= 16);
3135
- let rd = pretty_print_reg(rd.to_reg());
3136
- let rn = pretty_print_reg(rn);
3137
- let mut print = format!("vpdi {rd}, {rn}, {rn}, 4");
3138
- if lane_count >= 4 {
3139
- print = format!("{print} ; verllg {rn}, {rn}, 32");
3140
- }
3141
- if lane_count >= 8 {
3142
- print = format!("{print} ; verllf {rn}, {rn}, 16");
3143
- }
3144
- if lane_count >= 16 {
3145
- print = format!("{print} ; verllh {rn}, {rn}, 8");
3146
- }
3147
- print
3148
- }
3149
- &Inst::Extend {
3150
- rd,
3151
- rn,
3152
- signed,
3153
- from_bits,
3154
- to_bits,
3155
- } => {
3156
- let rd = pretty_print_reg(rd.to_reg());
3157
- let rn = pretty_print_reg(rn);
3158
- let op = match (signed, from_bits, to_bits) {
3159
- (_, 1, 32) => "llcr",
3160
- (_, 1, 64) => "llgcr",
3161
- (false, 8, 32) => "llcr",
3162
- (false, 8, 64) => "llgcr",
3163
- (true, 8, 32) => "lbr",
3164
- (true, 8, 64) => "lgbr",
3165
- (false, 16, 32) => "llhr",
3166
- (false, 16, 64) => "llghr",
3167
- (true, 16, 32) => "lhr",
3168
- (true, 16, 64) => "lghr",
3169
- (false, 32, 64) => "llgfr",
3170
- (true, 32, 64) => "lgfr",
3171
- _ => panic!("Unsupported Extend case: {self:?}"),
3172
- };
3173
- format!("{op} {rd}, {rn}")
3174
- }
3175
- &Inst::AllocateArgs { size } => {
3176
- state.nominal_sp_offset = size;
3177
- if let Ok(size) = i16::try_from(size) {
3178
- format!("aghi {}, {}", show_reg(stack_reg()), -size)
3179
- } else {
3180
- format!("slgfi {}, {}", show_reg(stack_reg()), size)
3181
- }
3182
- }
3183
- &Inst::Call { link, ref info } => {
3184
- state.nominal_sp_offset = 0;
3185
- let link = link.to_reg();
3186
- let (opcode, dest) = match &info.dest {
3187
- CallInstDest::Direct { name } => ("brasl", name.display(None).to_string()),
3188
- CallInstDest::Indirect { reg } => ("basr", pretty_print_reg(*reg)),
3189
- };
3190
- state.outgoing_sp_offset = info.callee_pop_size;
3191
- let mut retval_loads = S390xMachineDeps::gen_retval_loads(info)
3192
- .into_iter()
3193
- .map(|inst| inst.print_with_state(state))
3194
- .collect::<Vec<_>>()
3195
- .join(" ; ");
3196
- if !retval_loads.is_empty() {
3197
- retval_loads = " ; ".to_string() + &retval_loads;
3198
- }
3199
- state.outgoing_sp_offset = 0;
3200
- let try_call = if let Some(try_call_info) = &info.try_call_info {
3201
- format!(
3202
- "; jg {:?}; catch [{}]",
3203
- try_call_info.continuation,
3204
- try_call_info.pretty_print_dests()
3205
- )
3206
- } else {
3207
- "".to_string()
3208
- };
3209
- let callee_pop_size = if info.callee_pop_size > 0 {
3210
- format!(" ; callee_pop_size {}", info.callee_pop_size)
3211
- } else {
3212
- "".to_string()
3213
- };
3214
- format!(
3215
- "{} {}, {}{}{}{}",
3216
- opcode,
3217
- show_reg(link),
3218
- dest,
3219
- callee_pop_size,
3220
- retval_loads,
3221
- try_call
3222
- )
3223
- }
3224
- &Inst::ReturnCall { ref info } => {
3225
- let (epilogue_insts, temp_dest) = S390xMachineDeps::gen_tail_epilogue(
3226
- state.frame_layout(),
3227
- info.callee_pop_size,
3228
- &info.dest,
3229
- );
3230
- let mut epilogue_str = epilogue_insts
3231
- .into_iter()
3232
- .map(|inst| inst.print_with_state(state))
3233
- .collect::<Vec<_>>()
3234
- .join(" ; ");
3235
- if !epilogue_str.is_empty() {
3236
- epilogue_str += " ; ";
3237
- }
3238
- let (opcode, dest) = match &info.dest {
3239
- CallInstDest::Direct { name } => ("jg", name.display(None).to_string()),
3240
- CallInstDest::Indirect { reg } => {
3241
- ("br", pretty_print_reg(temp_dest.unwrap_or(*reg)))
3242
- }
3243
- };
3244
- let callee_pop_size = if info.callee_pop_size > 0 {
3245
- format!(" ; callee_pop_size {}", info.callee_pop_size)
3246
- } else {
3247
- "".to_string()
3248
- };
3249
- format!("{epilogue_str}{opcode} {dest}{callee_pop_size}")
3250
- }
3251
- &Inst::ElfTlsGetOffset { ref symbol, .. } => {
3252
- let dest = match &**symbol {
3253
- SymbolReloc::TlsGd { name } => {
3254
- format!("tls_gdcall:{}", name.display(None))
3255
- }
3256
- _ => unreachable!(),
3257
- };
3258
- format!("brasl {}, {}", show_reg(gpr(14)), dest)
3259
- }
3260
- &Inst::Args { ref args } => {
3261
- let mut s = "args".to_string();
3262
- for arg in args {
3263
- let preg = pretty_print_reg(arg.preg);
3264
- let def = pretty_print_reg(arg.vreg.to_reg());
3265
- write!(&mut s, " {def}={preg}").unwrap();
3266
- }
3267
- s
3268
- }
3269
- &Inst::Rets { ref rets } => {
3270
- let mut s = "rets".to_string();
3271
- for ret in rets {
3272
- let preg = pretty_print_reg(ret.preg);
3273
- let vreg = pretty_print_reg(ret.vreg);
3274
- write!(&mut s, " {vreg}={preg}").unwrap();
3275
- }
3276
- s
3277
- }
3278
- &Inst::Ret { link } => {
3279
- let link = show_reg(link);
3280
- format!("br {link}")
3281
- }
3282
- &Inst::Jump { dest } => {
3283
- let dest = dest.to_string();
3284
- format!("jg {dest}")
3285
- }
3286
- &Inst::IndirectBr { rn, .. } => {
3287
- let rn = pretty_print_reg(rn);
3288
- format!("br {rn}")
3289
- }
3290
- &Inst::CondBr {
3291
- taken,
3292
- not_taken,
3293
- cond,
3294
- } => {
3295
- let taken = taken.to_string();
3296
- let not_taken = not_taken.to_string();
3297
- let cond = cond.pretty_print_default();
3298
- format!("jg{cond} {taken} ; jg {not_taken}")
3299
- }
3300
- &Inst::Debugtrap => ".word 0x0001 # debugtrap".to_string(),
3301
- &Inst::Trap { trap_code } => {
3302
- format!(".word 0x0000 # trap={trap_code}")
3303
- }
3304
- &Inst::TrapIf { cond, trap_code } => {
3305
- let cond = cond.pretty_print_default();
3306
- format!("jg{cond} .+2 # trap={trap_code}")
3307
- }
3308
- &Inst::JTSequence {
3309
- ridx,
3310
- default,
3311
- default_cond,
3312
- ref targets,
3313
- } => {
3314
- let ridx = pretty_print_reg(ridx);
3315
- let rtmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
3316
- let jt_entries: String = targets
3317
- .iter()
3318
- .map(|label| format!(" {}", label.to_string()))
3319
- .collect();
3320
- format!(
3321
- concat!(
3322
- "jg{} {} ; ",
3323
- "larl {}, 14 ; ",
3324
- "agf {}, 0({}, {}) ; ",
3325
- "br {} ; ",
3326
- "jt_entries{}"
3327
- ),
3328
- default_cond.pretty_print_default(),
3329
- default.to_string(),
3330
- rtmp,
3331
- rtmp,
3332
- rtmp,
3333
- ridx,
3334
- rtmp,
3335
- jt_entries,
3336
- )
3337
- }
3338
- &Inst::LoadSymbolReloc {
3339
- rd,
3340
- ref symbol_reloc,
3341
- } => {
3342
- let rd = pretty_print_reg(rd.to_reg());
3343
- let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
3344
- let symbol = match &**symbol_reloc {
3345
- SymbolReloc::Absolute { name, offset } => {
3346
- format!("{} + {}", name.display(None), offset)
3347
- }
3348
- SymbolReloc::TlsGd { name } => format!("{}@tlsgd", name.display(None)),
3349
- };
3350
- format!("bras {tmp}, 12 ; data {symbol} ; lg {rd}, 0({tmp})")
3351
- }
3352
- &Inst::LoadAddr { rd, ref mem } => {
3353
- let rd = pretty_print_reg(rd.to_reg());
3354
- let mem = mem.clone();
3355
- let (mem_str, mem) = mem_finalize_for_show(
3356
- &mem,
3357
- state,
3358
- MemInstType {
3359
- have_d12: true,
3360
- have_d20: true,
3361
- have_pcrel: true,
3362
- have_unaligned_pcrel: true,
3363
- have_index: true,
3364
- },
3365
- );
3366
- let op = match &mem {
3367
- &MemArg::BXD12 { .. } => "la",
3368
- &MemArg::BXD20 { .. } => "lay",
3369
- &MemArg::Label { .. } | &MemArg::Constant { .. } | &MemArg::Symbol { .. } => {
3370
- "larl"
3371
- }
3372
- _ => unreachable!(),
3373
- };
3374
- let mem = mem.pretty_print_default();
3375
-
3376
- format!("{mem_str}{op} {rd}, {mem}")
3377
- }
3378
- &Inst::StackProbeLoop {
3379
- probe_count,
3380
- guard_size,
3381
- } => {
3382
- let probe_count = pretty_print_reg(probe_count.to_reg());
3383
- let stack_reg = pretty_print_reg(stack_reg());
3384
- format!(
3385
- "0: aghi {stack_reg}, -{guard_size} ; mvi 0({stack_reg}), 0 ; brct {probe_count}, 0b"
3386
- )
3387
- }
3388
- &Inst::Loop { ref body, cond } => {
3389
- let body = body
3390
- .into_iter()
3391
- .map(|inst| inst.print_with_state(state))
3392
- .collect::<Vec<_>>()
3393
- .join(" ; ");
3394
- let cond = cond.pretty_print_default();
3395
- format!("0: {body} ; jg{cond} 0b ; 1:")
3396
- }
3397
- &Inst::CondBreak { cond } => {
3398
- let cond = cond.pretty_print_default();
3399
- format!("jg{cond} 1f")
3400
- }
3401
- &Inst::Unwind { ref inst } => {
3402
- format!("unwind {inst:?}")
3403
- }
3404
- &Inst::DummyUse { reg } => {
3405
- let reg = pretty_print_reg(reg);
3406
- format!("dummy_use {reg}")
3407
- }
3408
- }
3409
- }
3410
- }
3411
-
3412
- //=============================================================================
3413
- // Label fixups and jump veneers.
3414
-
3415
- /// Different forms of label references for different instruction formats.
3416
- #[derive(Clone, Copy, Debug, PartialEq, Eq)]
3417
- pub enum LabelUse {
3418
- /// RI-format branch. 16-bit signed offset. PC-relative, offset is imm << 1.
3419
- BranchRI,
3420
- /// RIL-format branch. 32-bit signed offset. PC-relative, offset is imm << 1.
3421
- BranchRIL,
3422
- /// 32-bit PC relative constant offset (from address of constant itself),
3423
- /// signed. Used in jump tables.
3424
- PCRel32,
3425
- /// 32-bit PC relative constant offset (from address of call instruction),
3426
- /// signed. Offset is imm << 1. Used for call relocations.
3427
- PCRel32Dbl,
3428
- }
3429
-
3430
- impl MachInstLabelUse for LabelUse {
3431
- /// Alignment for veneer code.
3432
- const ALIGN: CodeOffset = 2;
3433
-
3434
- /// Maximum PC-relative range (positive), inclusive.
3435
- fn max_pos_range(self) -> CodeOffset {
3436
- match self {
3437
- // 16-bit signed immediate, left-shifted by 1.
3438
- LabelUse::BranchRI => ((1 << 15) - 1) << 1,
3439
- // 32-bit signed immediate, left-shifted by 1.
3440
- LabelUse::BranchRIL => 0xffff_fffe,
3441
- // 32-bit signed immediate.
3442
- LabelUse::PCRel32 => 0x7fff_ffff,
3443
- // 32-bit signed immediate, left-shifted by 1, offset by 2.
3444
- LabelUse::PCRel32Dbl => 0xffff_fffc,
3445
- }
3446
- }
3447
-
3448
- /// Maximum PC-relative range (negative).
3449
- fn max_neg_range(self) -> CodeOffset {
3450
- match self {
3451
- // 16-bit signed immediate, left-shifted by 1.
3452
- LabelUse::BranchRI => (1 << 15) << 1,
3453
- // 32-bit signed immediate, left-shifted by 1.
3454
- // NOTE: This should be 4GB, but CodeOffset is only u32.
3455
- LabelUse::BranchRIL => 0xffff_ffff,
3456
- // 32-bit signed immediate.
3457
- LabelUse::PCRel32 => 0x8000_0000,
3458
- // 32-bit signed immediate, left-shifted by 1, offset by 2.
3459
- // NOTE: This should be 4GB + 2, but CodeOffset is only u32.
3460
- LabelUse::PCRel32Dbl => 0xffff_ffff,
3461
- }
3462
- }
3463
-
3464
- /// Size of window into code needed to do the patch.
3465
- fn patch_size(self) -> CodeOffset {
3466
- match self {
3467
- LabelUse::BranchRI => 4,
3468
- LabelUse::BranchRIL => 6,
3469
- LabelUse::PCRel32 => 4,
3470
- LabelUse::PCRel32Dbl => 4,
3471
- }
3472
- }
3473
-
3474
- /// Perform the patch.
3475
- fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
3476
- let pc_rel = (label_offset as i64) - (use_offset as i64);
3477
- debug_assert!(pc_rel <= self.max_pos_range() as i64);
3478
- debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
3479
- debug_assert!(pc_rel & 1 == 0);
3480
- let pc_rel_shifted = pc_rel >> 1;
3481
-
3482
- match self {
3483
- LabelUse::BranchRI => {
3484
- buffer[2..4].clone_from_slice(&u16::to_be_bytes(pc_rel_shifted as u16));
3485
- }
3486
- LabelUse::BranchRIL => {
3487
- buffer[2..6].clone_from_slice(&u32::to_be_bytes(pc_rel_shifted as u32));
3488
- }
3489
- LabelUse::PCRel32 => {
3490
- let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
3491
- let insn_word = insn_word.wrapping_add(pc_rel as u32);
3492
- buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
3493
- }
3494
- LabelUse::PCRel32Dbl => {
3495
- let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
3496
- let insn_word = insn_word.wrapping_add((pc_rel_shifted + 1) as u32);
3497
- buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
3498
- }
3499
- }
3500
- }
3501
-
3502
- /// Is a veneer supported for this label reference type?
3503
- fn supports_veneer(self) -> bool {
3504
- false
3505
- }
3506
-
3507
- /// How large is the veneer, if supported?
3508
- fn veneer_size(self) -> CodeOffset {
3509
- 0
3510
- }
3511
-
3512
- fn worst_case_veneer_size() -> CodeOffset {
3513
- 0
3514
- }
3515
-
3516
- /// Generate a veneer into the buffer, given that this veneer is at `veneer_offset`, and return
3517
- /// an offset and label-use for the veneer's use of the original label.
3518
- fn generate_veneer(
3519
- self,
3520
- _buffer: &mut [u8],
3521
- _veneer_offset: CodeOffset,
3522
- ) -> (CodeOffset, LabelUse) {
3523
- unreachable!();
3524
- }
3525
-
3526
- fn from_reloc(reloc: Reloc, addend: Addend) -> Option<Self> {
3527
- match (reloc, addend) {
3528
- (Reloc::S390xPCRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
3529
- (Reloc::S390xPLTRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
3530
- _ => None,
3531
- }
3532
- }
3533
- }