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