wasmtime 22.0.0 → 23.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2164) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +127 -90
  3. data/ext/Cargo.toml +5 -5
  4. data/ext/cargo-vendor/cranelift-bforest-0.110.2/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cranelift-bforest-0.110.2/Cargo.toml +50 -0
  6. data/ext/cargo-vendor/cranelift-bitset-0.110.2/.cargo-checksum.json +1 -0
  7. data/ext/cargo-vendor/cranelift-bitset-0.110.2/Cargo.toml +60 -0
  8. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/compound.rs +508 -0
  9. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/lib.rs +19 -0
  10. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/scalar.rs +575 -0
  11. data/ext/cargo-vendor/cranelift-bitset-0.110.2/tests/bitset.rs +78 -0
  12. data/ext/cargo-vendor/cranelift-codegen-0.110.2/.cargo-checksum.json +1 -0
  13. data/ext/cargo-vendor/cranelift-codegen-0.110.2/Cargo.toml +206 -0
  14. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/binemit/stack_map.rs +141 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/context.rs +390 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/data_value.rs +410 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/dfg.rs +1806 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/globalvalue.rs +147 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/immediates.rs +2109 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/instructions.rs +1015 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/jumptable.rs +168 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/mod.rs +110 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/trapcode.rs +148 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/types.rs +643 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/user_stack_maps.rs +101 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit.rs +3605 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit_tests.rs +7927 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/mod.rs +3058 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst.isle +4221 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/lower.isle +2969 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/mod.rs +259 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/mod.rs +462 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit.rs +2741 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit_tests.rs +2219 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/mod.rs +1935 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst.isle +3153 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower/isle.rs +654 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower.isle +2953 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/mod.rs +265 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/emit.rs +3421 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/mod.rs +3395 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/lower.isle +3983 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/mod.rs +220 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit.rs +4297 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit_state.rs +65 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/mod.rs +2818 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst.isle +5299 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/lower.isle +4819 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/mod.rs +239 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isle_prelude.rs +965 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/legalizer/mod.rs +343 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/lib.rs +106 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/abi.rs +2427 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/buffer.rs +2544 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/helpers.rs +23 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/isle.rs +908 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/lower.rs +1462 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/mod.rs +564 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/vcode.rs +1840 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude.isle +654 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude_lower.isle +1070 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/write.rs +660 -0
  63. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/.cargo-checksum.json +1 -0
  64. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/Cargo.toml +45 -0
  65. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/types.rs +512 -0
  66. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/typevar.rs +980 -0
  67. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/gen_inst.rs +1278 -0
  68. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/instructions.rs +3760 -0
  69. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/types.rs +143 -0
  70. data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/.cargo-checksum.json +1 -0
  71. data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/Cargo.toml +31 -0
  72. data/ext/cargo-vendor/cranelift-control-0.110.2/.cargo-checksum.json +1 -0
  73. data/ext/cargo-vendor/cranelift-control-0.110.2/Cargo.toml +39 -0
  74. data/ext/cargo-vendor/cranelift-entity-0.110.2/.cargo-checksum.json +1 -0
  75. data/ext/cargo-vendor/cranelift-entity-0.110.2/Cargo.toml +66 -0
  76. data/ext/cargo-vendor/cranelift-entity-0.110.2/src/set.rs +193 -0
  77. data/ext/cargo-vendor/cranelift-frontend-0.110.2/.cargo-checksum.json +1 -0
  78. data/ext/cargo-vendor/cranelift-frontend-0.110.2/Cargo.toml +87 -0
  79. data/ext/cargo-vendor/cranelift-frontend-0.110.2/src/frontend.rs +2867 -0
  80. data/ext/cargo-vendor/cranelift-isle-0.110.2/.cargo-checksum.json +1 -0
  81. data/ext/cargo-vendor/cranelift-isle-0.110.2/Cargo.toml +60 -0
  82. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/codegen.rs +920 -0
  83. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/parser.rs +562 -0
  84. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/sema.rs +2503 -0
  85. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/trie_again.rs +695 -0
  86. data/ext/cargo-vendor/cranelift-native-0.110.2/.cargo-checksum.json +1 -0
  87. data/ext/cargo-vendor/cranelift-native-0.110.2/Cargo.toml +52 -0
  88. data/ext/cargo-vendor/cranelift-native-0.110.2/src/lib.rs +188 -0
  89. data/ext/cargo-vendor/cranelift-wasm-0.110.2/.cargo-checksum.json +1 -0
  90. data/ext/cargo-vendor/cranelift-wasm-0.110.2/Cargo.toml +119 -0
  91. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator/bounds_checks.rs +731 -0
  92. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator.rs +3694 -0
  93. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/heap.rs +119 -0
  94. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/sections_translator.rs +333 -0
  95. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/.cargo-checksum.json +1 -0
  96. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/Cargo.toml +69 -0
  97. data/ext/cargo-vendor/termcolor-1.4.1/.cargo-checksum.json +1 -0
  98. data/ext/cargo-vendor/termcolor-1.4.1/COPYING +3 -0
  99. data/ext/cargo-vendor/termcolor-1.4.1/Cargo.toml +40 -0
  100. data/ext/cargo-vendor/termcolor-1.4.1/LICENSE-MIT +21 -0
  101. data/ext/cargo-vendor/termcolor-1.4.1/README.md +110 -0
  102. data/ext/cargo-vendor/termcolor-1.4.1/UNLICENSE +24 -0
  103. data/ext/cargo-vendor/termcolor-1.4.1/rustfmt.toml +2 -0
  104. data/ext/cargo-vendor/termcolor-1.4.1/src/lib.rs +2572 -0
  105. data/ext/cargo-vendor/wasi-common-23.0.2/.cargo-checksum.json +1 -0
  106. data/ext/cargo-vendor/wasi-common-23.0.2/Cargo.toml +234 -0
  107. data/ext/cargo-vendor/wasi-common-23.0.2/src/tokio/mod.rs +135 -0
  108. data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/async_.rs +295 -0
  109. data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/sync.rs +284 -0
  110. data/ext/cargo-vendor/wasm-encoder-0.212.0/.cargo-checksum.json +1 -0
  111. data/ext/cargo-vendor/wasm-encoder-0.212.0/Cargo.toml +49 -0
  112. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/component/types.rs +771 -0
  113. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/code.rs +3571 -0
  114. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/exports.rs +85 -0
  115. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/globals.rs +100 -0
  116. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/imports.rs +143 -0
  117. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/memories.rs +115 -0
  118. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tables.rs +121 -0
  119. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tags.rs +85 -0
  120. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/types.rs +663 -0
  121. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/lib.rs +218 -0
  122. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/reencode.rs +1804 -0
  123. data/ext/cargo-vendor/wasm-encoder-0.215.0/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/wasm-encoder-0.215.0/Cargo.toml +65 -0
  125. data/ext/cargo-vendor/wasm-encoder-0.215.0/README.md +80 -0
  126. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/aliases.rs +160 -0
  127. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/builder.rs +455 -0
  128. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/canonicals.rs +159 -0
  129. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/components.rs +29 -0
  130. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/exports.rs +124 -0
  131. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/imports.rs +175 -0
  132. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/instances.rs +200 -0
  133. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/modules.rs +29 -0
  134. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/names.rs +149 -0
  135. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/start.rs +52 -0
  136. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/types.rs +802 -0
  137. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component.rs +168 -0
  138. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/code.rs +3947 -0
  139. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/custom.rs +73 -0
  140. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/data.rs +186 -0
  141. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/dump.rs +627 -0
  142. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/elements.rs +222 -0
  143. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/exports.rs +85 -0
  144. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/functions.rs +63 -0
  145. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/globals.rs +100 -0
  146. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/imports.rs +143 -0
  147. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/linking.rs +263 -0
  148. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/memories.rs +115 -0
  149. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/names.rs +298 -0
  150. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/producers.rs +181 -0
  151. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/start.rs +39 -0
  152. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tables.rs +129 -0
  153. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tags.rs +85 -0
  154. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/types.rs +678 -0
  155. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core.rs +168 -0
  156. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/lib.rs +218 -0
  157. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/raw.rs +30 -0
  158. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/reencode.rs +2002 -0
  159. data/ext/cargo-vendor/wasmparser-0.212.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.lock +669 -0
  161. data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.toml +112 -0
  162. data/ext/cargo-vendor/wasmparser-0.212.0/src/binary_reader.rs +1968 -0
  163. data/ext/cargo-vendor/wasmparser-0.212.0/src/features.rs +166 -0
  164. data/ext/cargo-vendor/wasmparser-0.212.0/src/lib.rs +814 -0
  165. data/ext/cargo-vendor/wasmparser-0.212.0/src/parser.rs +1682 -0
  166. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/operators.rs +453 -0
  167. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/tables.rs +93 -0
  168. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/types.rs +1941 -0
  169. data/ext/cargo-vendor/wasmparser-0.212.0/src/resources.rs +234 -0
  170. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/component.rs +3252 -0
  171. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/core.rs +1454 -0
  172. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/operators.rs +4230 -0
  173. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/types.rs +4598 -0
  174. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator.rs +1632 -0
  175. data/ext/cargo-vendor/wasmprinter-0.212.0/.cargo-checksum.json +1 -0
  176. data/ext/cargo-vendor/wasmprinter-0.212.0/Cargo.toml +54 -0
  177. data/ext/cargo-vendor/wasmprinter-0.212.0/src/lib.rs +3221 -0
  178. data/ext/cargo-vendor/wasmprinter-0.212.0/src/operator.rs +1189 -0
  179. data/ext/cargo-vendor/wasmprinter-0.212.0/src/print.rs +190 -0
  180. data/ext/cargo-vendor/wasmprinter-0.212.0/tests/all.rs +48 -0
  181. data/ext/cargo-vendor/wasmtime-23.0.2/.cargo-checksum.json +1 -0
  182. data/ext/cargo-vendor/wasmtime-23.0.2/Cargo.toml +399 -0
  183. data/ext/cargo-vendor/wasmtime-23.0.2/build.rs +38 -0
  184. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/code_builder.rs +274 -0
  185. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/runtime.rs +167 -0
  186. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile.rs +881 -0
  187. data/ext/cargo-vendor/wasmtime-23.0.2/src/config.rs +2902 -0
  188. data/ext/cargo-vendor/wasmtime-23.0.2/src/engine/serialization.rs +893 -0
  189. data/ext/cargo-vendor/wasmtime-23.0.2/src/engine.rs +719 -0
  190. data/ext/cargo-vendor/wasmtime-23.0.2/src/lib.rs +406 -0
  191. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/jitdump.rs +65 -0
  192. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/perfmap.rs +47 -0
  193. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/vtune.rs +80 -0
  194. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent.rs +104 -0
  195. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/code_memory.rs +337 -0
  196. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/mod.rs +488 -0
  197. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/component.rs +811 -0
  198. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/host.rs +439 -0
  199. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/options.rs +552 -0
  200. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/typed.rs +2497 -0
  201. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func.rs +688 -0
  202. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/instance.rs +846 -0
  203. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/linker.rs +673 -0
  204. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/matching.rs +216 -0
  205. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/mod.rs +663 -0
  206. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/resources.rs +1132 -0
  207. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/values.rs +979 -0
  208. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/coredump.rs +339 -0
  209. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/debug.rs +165 -0
  210. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/global.rs +310 -0
  211. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/table.rs +480 -0
  212. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func/typed.rs +788 -0
  213. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func.rs +2593 -0
  214. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/disabled/rooting.rs +224 -0
  215. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/externref.rs +591 -0
  216. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/rooting.rs +1590 -0
  217. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instance.rs +989 -0
  218. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instantiate.rs +332 -0
  219. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/limits.rs +398 -0
  220. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/linker.rs +1498 -0
  221. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/memory.rs +1101 -0
  222. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module/registry.rs +353 -0
  223. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module.rs +1179 -0
  224. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/profiling.rs +280 -0
  225. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/stack.rs +72 -0
  226. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store/data.rs +301 -0
  227. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store.rs +2873 -0
  228. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/func.rs +93 -0
  229. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/memory.rs +295 -0
  230. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/table.rs +28 -0
  231. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline.rs +75 -0
  232. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trap.rs +642 -0
  233. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types/matching.rs +428 -0
  234. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types.rs +2771 -0
  235. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/values.rs +966 -0
  236. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/arch/riscv64.rs +41 -0
  237. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/libcalls.rs +571 -0
  238. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/resources.rs +351 -0
  239. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component.rs +857 -0
  240. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/const_expr.rs +102 -0
  241. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/cow.rs +988 -0
  242. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/disabled.rs +23 -0
  243. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/drc.rs +964 -0
  244. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/free_list.rs +770 -0
  245. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_ref.rs +490 -0
  246. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_runtime.rs +505 -0
  247. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc.rs +244 -0
  248. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/on_demand.rs +219 -0
  249. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +199 -0
  250. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +93 -0
  251. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +78 -0
  252. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +703 -0
  253. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +990 -0
  254. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/table_pool.rs +245 -0
  255. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +279 -0
  256. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling.rs +793 -0
  257. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator.rs +808 -0
  258. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance.rs +1518 -0
  259. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/libcalls.rs +832 -0
  260. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/memory.rs +815 -0
  261. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap.rs +217 -0
  262. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap_vec.rs +159 -0
  263. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/module_id.rs +19 -0
  264. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/disabled.rs +43 -0
  265. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/enabled.rs +213 -0
  266. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/mod.rs +59 -0
  267. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/sys.rs +113 -0
  268. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mmap.rs +112 -0
  269. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mod.rs +34 -0
  270. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/unwind.rs +17 -0
  271. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/vm.rs +105 -0
  272. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/mmap.rs +98 -0
  273. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/unwind.rs +17 -0
  274. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/mmap.rs +159 -0
  275. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/signals.rs +407 -0
  276. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/unwind.rs +149 -0
  277. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/mmap.rs +220 -0
  278. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/unwind.rs +46 -0
  279. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/table.rs +898 -0
  280. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory.rs +235 -0
  281. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory_disabled.rs +104 -0
  282. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/traphandlers.rs +767 -0
  283. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext/vm_host_func_context.rs +79 -0
  284. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext.rs +1246 -0
  285. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm.rs +403 -0
  286. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime.rs +113 -0
  287. data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/.cargo-checksum.json +1 -0
  288. data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/Cargo.toml +32 -0
  289. data/ext/cargo-vendor/wasmtime-cache-23.0.2/.cargo-checksum.json +1 -0
  290. data/ext/cargo-vendor/wasmtime-cache-23.0.2/Cargo.toml +103 -0
  291. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/.cargo-checksum.json +1 -0
  292. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/Cargo.toml +106 -0
  293. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/src/bindgen.rs +500 -0
  294. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/codegen.rs +698 -0
  295. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char.rs +268 -0
  296. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char_async.rs +291 -0
  297. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions.rs +706 -0
  298. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions_async.rs +757 -0
  299. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code.rs +194 -0
  300. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code_async.rs +213 -0
  301. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import.rs +120 -0
  302. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import_async.rs +132 -0
  303. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty.rs +74 -0
  304. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty_async.rs +80 -0
  305. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags.rs +743 -0
  306. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags_async.rs +791 -0
  307. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats.rs +343 -0
  308. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats_async.rs +376 -0
  309. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new.rs +94 -0
  310. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new_async.rs +103 -0
  311. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers.rs +873 -0
  312. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers_async.rs +976 -0
  313. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists.rs +1924 -0
  314. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists_async.rs +2114 -0
  315. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments.rs +614 -0
  316. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments_async.rs +638 -0
  317. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return.rs +357 -0
  318. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return_async.rs +391 -0
  319. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion.rs +354 -0
  320. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion_async.rs +379 -0
  321. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records.rs +940 -0
  322. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records_async.rs +1008 -0
  323. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename.rs +183 -0
  324. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename_async.rs +202 -0
  325. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export.rs +657 -0
  326. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export_async.rs +712 -0
  327. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import.rs +1088 -0
  328. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import_async.rs +1166 -0
  329. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types.rs +315 -0
  330. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types_async.rs +337 -0
  331. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions.rs +399 -0
  332. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions_async.rs +439 -0
  333. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists.rs +427 -0
  334. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists_async.rs +464 -0
  335. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi.rs +245 -0
  336. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi_async.rs +264 -0
  337. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous.rs +338 -0
  338. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous_async.rs +356 -0
  339. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default.rs +94 -0
  340. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default_async.rs +103 -0
  341. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export.rs +149 -0
  342. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export_async.rs +158 -0
  343. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke.rs +133 -0
  344. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke_async.rs +146 -0
  345. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings.rs +316 -0
  346. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings_async.rs +344 -0
  347. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo.rs +165 -0
  348. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo_async.rs +178 -0
  349. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths.rs +317 -0
  350. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths_async.rs +349 -0
  351. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants.rs +1896 -0
  352. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants_async.rs +2019 -0
  353. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat.rs +145 -0
  354. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat_async.rs +151 -0
  355. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types.rs +175 -0
  356. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types_async.rs +191 -0
  357. data/ext/cargo-vendor/wasmtime-component-util-23.0.2/.cargo-checksum.json +1 -0
  358. data/ext/cargo-vendor/wasmtime-component-util-23.0.2/Cargo.toml +35 -0
  359. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/.cargo-checksum.json +1 -0
  360. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/Cargo.toml +125 -0
  361. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/compiler.rs +1029 -0
  362. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/gc.rs +257 -0
  363. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/address_transform.rs +841 -0
  364. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/attr.rs +328 -0
  365. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/expression.rs +1264 -0
  366. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/line_program.rs +287 -0
  367. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/mod.rs +273 -0
  368. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/range_info_builder.rs +234 -0
  369. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/simulate.rs +423 -0
  370. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/unit.rs +520 -0
  371. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/utils.rs +165 -0
  372. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/write_debuginfo.rs +176 -0
  373. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug.rs +178 -0
  374. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/func_environ.rs +2721 -0
  375. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/gc/enabled.rs +648 -0
  376. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/lib.rs +458 -0
  377. data/ext/cargo-vendor/wasmtime-environ-23.0.2/.cargo-checksum.json +1 -0
  378. data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.lock +792 -0
  379. data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.toml +185 -0
  380. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/mod.rs +379 -0
  381. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/module_environ.rs +1264 -0
  382. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/dfg.rs +718 -0
  383. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/info.rs +683 -0
  384. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/names.rs +275 -0
  385. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate/inline.rs +1333 -0
  386. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate.rs +993 -0
  387. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types.rs +1041 -0
  388. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types_builder.rs +976 -0
  389. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component.rs +109 -0
  390. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/lib.rs +64 -0
  391. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/module.rs +702 -0
  392. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/stack_map.rs +31 -0
  393. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/tunables.rs +165 -0
  394. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/vmoffsets.rs +897 -0
  395. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/.cargo-checksum.json +1 -0
  396. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/Cargo.toml +75 -0
  397. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/.cargo-checksum.json +1 -0
  398. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/Cargo.toml +77 -0
  399. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/.cargo-checksum.json +1 -0
  400. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/Cargo.toml +62 -0
  401. data/ext/cargo-vendor/wasmtime-slab-23.0.2/.cargo-checksum.json +1 -0
  402. data/ext/cargo-vendor/wasmtime-slab-23.0.2/Cargo.toml +31 -0
  403. data/ext/cargo-vendor/wasmtime-types-23.0.2/.cargo-checksum.json +1 -0
  404. data/ext/cargo-vendor/wasmtime-types-23.0.2/Cargo.toml +71 -0
  405. data/ext/cargo-vendor/wasmtime-types-23.0.2/src/lib.rs +1760 -0
  406. data/ext/cargo-vendor/wasmtime-types-23.0.2/src/prelude.rs +86 -0
  407. data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/.cargo-checksum.json +1 -0
  408. data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/Cargo.toml +40 -0
  409. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/.cargo-checksum.json +1 -0
  410. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/Cargo.toml +215 -0
  411. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/bindings.rs +561 -0
  412. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/filesystem.rs +448 -0
  413. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/filesystem.rs +1091 -0
  414. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/io.rs +391 -0
  415. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/lib.rs +419 -0
  416. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/preview1.rs +2801 -0
  417. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/stdio.rs +596 -0
  418. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/api.rs +197 -0
  419. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/async_.rs +397 -0
  420. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/sync.rs +331 -0
  421. data/ext/cargo-vendor/wasmtime-winch-23.0.2/.cargo-checksum.json +1 -0
  422. data/ext/cargo-vendor/wasmtime-winch-23.0.2/Cargo.toml +92 -0
  423. data/ext/cargo-vendor/wasmtime-winch-23.0.2/src/compiler.rs +242 -0
  424. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/.cargo-checksum.json +1 -0
  425. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/Cargo.toml +57 -0
  426. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/src/lib.rs +2777 -0
  427. data/ext/cargo-vendor/wast-215.0.0/.cargo-checksum.json +1 -0
  428. data/ext/cargo-vendor/wast-215.0.0/Cargo.toml +101 -0
  429. data/ext/cargo-vendor/wast-215.0.0/src/component/binary.rs +1014 -0
  430. data/ext/cargo-vendor/wast-215.0.0/src/component/component.rs +320 -0
  431. data/ext/cargo-vendor/wast-215.0.0/src/component/expand.rs +875 -0
  432. data/ext/cargo-vendor/wast-215.0.0/src/component/resolve.rs +988 -0
  433. data/ext/cargo-vendor/wast-215.0.0/src/component.rs +28 -0
  434. data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf.rs +610 -0
  435. data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf_disabled.rs +41 -0
  436. data/ext/cargo-vendor/wast-215.0.0/src/core/binary.rs +1542 -0
  437. data/ext/cargo-vendor/wast-215.0.0/src/core/expr.rs +2110 -0
  438. data/ext/cargo-vendor/wast-215.0.0/src/core/memory.rs +279 -0
  439. data/ext/cargo-vendor/wast-215.0.0/src/core/module.rs +215 -0
  440. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/deinline_import_export.rs +232 -0
  441. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/names.rs +791 -0
  442. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/types.rs +270 -0
  443. data/ext/cargo-vendor/wast-215.0.0/src/core/table.rs +308 -0
  444. data/ext/cargo-vendor/wast-215.0.0/src/core/types.rs +1057 -0
  445. data/ext/cargo-vendor/wast-215.0.0/src/core.rs +30 -0
  446. data/ext/cargo-vendor/wast-215.0.0/src/lib.rs +556 -0
  447. data/ext/cargo-vendor/wast-215.0.0/src/parser.rs +1434 -0
  448. data/ext/cargo-vendor/wast-215.0.0/src/wat.rs +68 -0
  449. data/ext/cargo-vendor/wat-1.215.0/.cargo-checksum.json +1 -0
  450. data/ext/cargo-vendor/wat-1.215.0/Cargo.toml +56 -0
  451. data/ext/cargo-vendor/wat-1.215.0/src/lib.rs +469 -0
  452. data/ext/cargo-vendor/wiggle-23.0.2/.cargo-checksum.json +1 -0
  453. data/ext/cargo-vendor/wiggle-23.0.2/Cargo.toml +110 -0
  454. data/ext/cargo-vendor/wiggle-generate-23.0.2/.cargo-checksum.json +1 -0
  455. data/ext/cargo-vendor/wiggle-generate-23.0.2/Cargo.toml +76 -0
  456. data/ext/cargo-vendor/wiggle-macro-23.0.2/.cargo-checksum.json +1 -0
  457. data/ext/cargo-vendor/wiggle-macro-23.0.2/Cargo.toml +59 -0
  458. data/ext/cargo-vendor/winapi-util-0.1.9/.cargo-checksum.json +1 -0
  459. data/ext/cargo-vendor/winapi-util-0.1.9/COPYING +3 -0
  460. data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml +53 -0
  461. data/ext/cargo-vendor/winapi-util-0.1.9/LICENSE-MIT +21 -0
  462. data/ext/cargo-vendor/winapi-util-0.1.9/README.md +64 -0
  463. data/ext/cargo-vendor/winapi-util-0.1.9/UNLICENSE +24 -0
  464. data/ext/cargo-vendor/winapi-util-0.1.9/rustfmt.toml +2 -0
  465. data/ext/cargo-vendor/winapi-util-0.1.9/src/console.rs +407 -0
  466. data/ext/cargo-vendor/winapi-util-0.1.9/src/file.rs +166 -0
  467. data/ext/cargo-vendor/winapi-util-0.1.9/src/lib.rs +35 -0
  468. data/ext/cargo-vendor/winapi-util-0.1.9/src/sysinfo.rs +161 -0
  469. data/ext/cargo-vendor/winapi-util-0.1.9/src/win.rs +246 -0
  470. data/ext/cargo-vendor/winch-codegen-0.21.2/.cargo-checksum.json +1 -0
  471. data/ext/cargo-vendor/winch-codegen-0.21.2/Cargo.toml +87 -0
  472. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/env.rs +449 -0
  473. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/mod.rs +878 -0
  474. data/ext/cargo-vendor/winch-codegen-0.21.2/src/visitor.rs +2154 -0
  475. data/ext/cargo-vendor/wit-parser-0.212.0/.cargo-checksum.json +1 -0
  476. data/ext/cargo-vendor/wit-parser-0.212.0/Cargo.toml +112 -0
  477. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/lex.rs +751 -0
  478. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/resolve.rs +1539 -0
  479. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast.rs +1851 -0
  480. data/ext/cargo-vendor/wit-parser-0.212.0/src/decoding.rs +1798 -0
  481. data/ext/cargo-vendor/wit-parser-0.212.0/src/lib.rs +888 -0
  482. data/ext/cargo-vendor/wit-parser-0.212.0/src/resolve.rs +2740 -0
  483. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/feature-gates.wit.json +308 -0
  484. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/a.wit +23 -0
  485. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/b.wit +23 -0
  486. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package.wit.json +250 -0
  487. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep1/types.wit +2 -0
  488. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep2/types.wit +2 -0
  489. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/packages.wit +13 -0
  490. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps.wit.json +83 -0
  491. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep1/types.wit +9 -0
  492. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep2/types.wit +5 -0
  493. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/packages.wit +11 -0
  494. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps.wit.json +116 -0
  495. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit +23 -0
  496. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit.json +130 -0
  497. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit +15 -0
  498. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit.json +87 -0
  499. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit +23 -0
  500. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit.json +130 -0
  501. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit +23 -0
  502. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit.json +130 -0
  503. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit +11 -0
  504. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit.json +70 -0
  505. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit +3 -0
  506. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit.result +1 -0
  507. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit +13 -0
  508. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit.result +8 -0
  509. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit +23 -0
  510. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit.result +1 -0
  511. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit +23 -0
  512. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit.result +5 -0
  513. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/observe.wit +5 -0
  514. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/world.wit +5 -0
  515. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +9 -0
  516. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit +11 -0
  517. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit.result +5 -0
  518. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit +15 -0
  519. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit.result +5 -0
  520. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/since-and-unstable.wit.json +583 -0
  521. data/ext/src/ruby_api/memory.rs +2 -1
  522. data/lib/wasmtime/version.rb +1 -1
  523. metadata +1736 -1643
  524. data/ext/cargo-vendor/cranelift-bforest-0.109.0/.cargo-checksum.json +0 -1
  525. data/ext/cargo-vendor/cranelift-bforest-0.109.0/Cargo.toml +0 -41
  526. data/ext/cargo-vendor/cranelift-codegen-0.109.0/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-codegen-0.109.0/Cargo.toml +0 -193
  528. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/binemit/stack_map.rs +0 -155
  529. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/bitset.rs +0 -187
  530. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/context.rs +0 -384
  531. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/data_value.rs +0 -385
  532. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/dfg.rs +0 -1777
  533. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/globalvalue.rs +0 -147
  534. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/immediates.rs +0 -1612
  535. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/instructions.rs +0 -1020
  536. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/jumptable.rs +0 -168
  537. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/mod.rs +0 -108
  538. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/trapcode.rs +0 -149
  539. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/types.rs +0 -627
  540. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit.rs +0 -3584
  541. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit_tests.rs +0 -7901
  542. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/mod.rs +0 -3060
  543. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst.isle +0 -4218
  544. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/lower.isle +0 -2933
  545. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/mod.rs +0 -242
  546. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/mod.rs +0 -449
  547. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit.rs +0 -2682
  548. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit_tests.rs +0 -2215
  549. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/mod.rs +0 -1938
  550. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst.isle +0 -3127
  551. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower/isle.rs +0 -649
  552. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower.isle +0 -2923
  553. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/mod.rs +0 -260
  554. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/emit.rs +0 -3401
  555. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/mod.rs +0 -3401
  556. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/lower.isle +0 -3995
  557. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/mod.rs +0 -215
  558. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit.rs +0 -4287
  559. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit_state.rs +0 -52
  560. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/mod.rs +0 -2821
  561. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst.isle +0 -5289
  562. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/lower.isle +0 -4810
  563. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/mod.rs +0 -234
  564. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isle_prelude.rs +0 -986
  565. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/legalizer/mod.rs +0 -348
  566. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/lib.rs +0 -106
  567. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/abi.rs +0 -2419
  568. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/buffer.rs +0 -2508
  569. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/helpers.rs +0 -33
  570. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/isle.rs +0 -909
  571. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/lower.rs +0 -1432
  572. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/mod.rs +0 -551
  573. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/vcode.rs +0 -1741
  574. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude.isle +0 -664
  575. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude_lower.isle +0 -1073
  576. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/write.rs +0 -638
  577. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/.cargo-checksum.json +0 -1
  578. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/Cargo.toml +0 -36
  579. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/cdsl/types.rs +0 -496
  580. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/cdsl/typevar.rs +0 -980
  581. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/gen_inst.rs +0 -1278
  582. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/shared/instructions.rs +0 -3791
  583. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/shared/types.rs +0 -137
  584. data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/.cargo-checksum.json +0 -1
  585. data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/Cargo.toml +0 -22
  586. data/ext/cargo-vendor/cranelift-control-0.109.0/.cargo-checksum.json +0 -1
  587. data/ext/cargo-vendor/cranelift-control-0.109.0/Cargo.toml +0 -30
  588. data/ext/cargo-vendor/cranelift-entity-0.109.0/.cargo-checksum.json +0 -1
  589. data/ext/cargo-vendor/cranelift-entity-0.109.0/Cargo.toml +0 -53
  590. data/ext/cargo-vendor/cranelift-entity-0.109.0/src/set.rs +0 -290
  591. data/ext/cargo-vendor/cranelift-frontend-0.109.0/.cargo-checksum.json +0 -1
  592. data/ext/cargo-vendor/cranelift-frontend-0.109.0/Cargo.toml +0 -68
  593. data/ext/cargo-vendor/cranelift-frontend-0.109.0/src/frontend.rs +0 -1857
  594. data/ext/cargo-vendor/cranelift-isle-0.109.0/.cargo-checksum.json +0 -1
  595. data/ext/cargo-vendor/cranelift-isle-0.109.0/Cargo.toml +0 -47
  596. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/codegen.rs +0 -886
  597. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/parser.rs +0 -562
  598. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/sema.rs +0 -2492
  599. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/trie_again.rs +0 -684
  600. data/ext/cargo-vendor/cranelift-native-0.109.0/.cargo-checksum.json +0 -1
  601. data/ext/cargo-vendor/cranelift-native-0.109.0/Cargo.toml +0 -43
  602. data/ext/cargo-vendor/cranelift-native-0.109.0/src/lib.rs +0 -188
  603. data/ext/cargo-vendor/cranelift-wasm-0.109.0/.cargo-checksum.json +0 -1
  604. data/ext/cargo-vendor/cranelift-wasm-0.109.0/Cargo.toml +0 -110
  605. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/code_translator/bounds_checks.rs +0 -713
  606. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/code_translator.rs +0 -3695
  607. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/heap.rs +0 -116
  608. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/sections_translator.rs +0 -343
  609. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/.cargo-checksum.json +0 -1
  610. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/Cargo.toml +0 -48
  611. data/ext/cargo-vendor/memoffset-0.9.0/.cargo-checksum.json +0 -1
  612. data/ext/cargo-vendor/memoffset-0.9.0/Cargo.toml +0 -37
  613. data/ext/cargo-vendor/memoffset-0.9.0/LICENSE +0 -19
  614. data/ext/cargo-vendor/memoffset-0.9.0/README.md +0 -85
  615. data/ext/cargo-vendor/memoffset-0.9.0/build.rs +0 -25
  616. data/ext/cargo-vendor/memoffset-0.9.0/src/lib.rs +0 -94
  617. data/ext/cargo-vendor/memoffset-0.9.0/src/offset_of.rs +0 -400
  618. data/ext/cargo-vendor/memoffset-0.9.0/src/raw_field.rs +0 -226
  619. data/ext/cargo-vendor/memoffset-0.9.0/src/span_of.rs +0 -263
  620. data/ext/cargo-vendor/wasi-common-22.0.0/.cargo-checksum.json +0 -1
  621. data/ext/cargo-vendor/wasi-common-22.0.0/Cargo.toml +0 -224
  622. data/ext/cargo-vendor/wasi-common-22.0.0/src/tokio/mod.rs +0 -137
  623. data/ext/cargo-vendor/wasi-common-22.0.0/tests/all/async_.rs +0 -293
  624. data/ext/cargo-vendor/wasi-common-22.0.0/tests/all/sync.rs +0 -279
  625. data/ext/cargo-vendor/wasm-encoder-0.209.1/.cargo-checksum.json +0 -1
  626. data/ext/cargo-vendor/wasm-encoder-0.209.1/Cargo.toml +0 -46
  627. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/types.rs +0 -792
  628. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/code.rs +0 -3595
  629. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/exports.rs +0 -98
  630. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/globals.rs +0 -112
  631. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/imports.rs +0 -157
  632. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/memories.rs +0 -128
  633. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tables.rs +0 -134
  634. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tags.rs +0 -104
  635. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/types.rs +0 -678
  636. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/lib.rs +0 -215
  637. data/ext/cargo-vendor/wasmparser-0.209.1/.cargo-checksum.json +0 -1
  638. data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.lock +0 -662
  639. data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.toml +0 -109
  640. data/ext/cargo-vendor/wasmparser-0.209.1/src/binary_reader.rs +0 -1929
  641. data/ext/cargo-vendor/wasmparser-0.209.1/src/features.rs +0 -164
  642. data/ext/cargo-vendor/wasmparser-0.209.1/src/lib.rs +0 -814
  643. data/ext/cargo-vendor/wasmparser-0.209.1/src/parser.rs +0 -1682
  644. data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/operators.rs +0 -423
  645. data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/tables.rs +0 -93
  646. data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/types.rs +0 -1788
  647. data/ext/cargo-vendor/wasmparser-0.209.1/src/resources.rs +0 -235
  648. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/component.rs +0 -3236
  649. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/core.rs +0 -1464
  650. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/operators.rs +0 -4231
  651. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/types.rs +0 -4550
  652. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator.rs +0 -1633
  653. data/ext/cargo-vendor/wasmprinter-0.209.1/.cargo-checksum.json +0 -1
  654. data/ext/cargo-vendor/wasmprinter-0.209.1/Cargo.toml +0 -51
  655. data/ext/cargo-vendor/wasmprinter-0.209.1/src/lib.rs +0 -3225
  656. data/ext/cargo-vendor/wasmprinter-0.209.1/src/operator.rs +0 -1171
  657. data/ext/cargo-vendor/wasmprinter-0.209.1/tests/all.rs +0 -293
  658. data/ext/cargo-vendor/wasmtime-22.0.0/.cargo-checksum.json +0 -1
  659. data/ext/cargo-vendor/wasmtime-22.0.0/Cargo.toml +0 -387
  660. data/ext/cargo-vendor/wasmtime-22.0.0/build.rs +0 -42
  661. data/ext/cargo-vendor/wasmtime-22.0.0/src/compile/code_builder.rs +0 -275
  662. data/ext/cargo-vendor/wasmtime-22.0.0/src/compile/runtime.rs +0 -167
  663. data/ext/cargo-vendor/wasmtime-22.0.0/src/compile.rs +0 -917
  664. data/ext/cargo-vendor/wasmtime-22.0.0/src/config.rs +0 -2943
  665. data/ext/cargo-vendor/wasmtime-22.0.0/src/engine/serialization.rs +0 -890
  666. data/ext/cargo-vendor/wasmtime-22.0.0/src/engine.rs +0 -728
  667. data/ext/cargo-vendor/wasmtime-22.0.0/src/lib.rs +0 -389
  668. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/jitdump.rs +0 -67
  669. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/perfmap.rs +0 -48
  670. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/vtune.rs +0 -81
  671. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent.rs +0 -106
  672. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/code_memory.rs +0 -338
  673. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -489
  674. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/component.rs +0 -656
  675. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/host.rs +0 -440
  676. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/options.rs +0 -555
  677. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/typed.rs +0 -2498
  678. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func.rs +0 -689
  679. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/instance.rs +0 -810
  680. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/linker.rs +0 -854
  681. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/matching.rs +0 -217
  682. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/mod.rs +0 -657
  683. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/resources.rs +0 -1133
  684. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/values.rs +0 -980
  685. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/coredump.rs +0 -342
  686. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/debug.rs +0 -166
  687. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/global.rs +0 -310
  688. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/table.rs +0 -481
  689. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func/typed.rs +0 -780
  690. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func.rs +0 -2564
  691. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/disabled/rooting.rs +0 -224
  692. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/externref.rs +0 -592
  693. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/rooting.rs +0 -1588
  694. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instance.rs +0 -992
  695. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instantiate.rs +0 -337
  696. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/limits.rs +0 -399
  697. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/linker.rs +0 -1499
  698. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/memory.rs +0 -998
  699. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module/registry.rs +0 -353
  700. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module.rs +0 -1322
  701. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/profiling.rs +0 -221
  702. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/stack.rs +0 -73
  703. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store/data.rs +0 -301
  704. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store.rs +0 -2824
  705. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/func.rs +0 -94
  706. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/memory.rs +0 -287
  707. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/table.rs +0 -29
  708. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline.rs +0 -78
  709. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trap.rs +0 -642
  710. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/types/matching.rs +0 -421
  711. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/types.rs +0 -2580
  712. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/values.rs +0 -966
  713. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/arch/riscv64.rs +0 -41
  714. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component/libcalls.rs +0 -571
  715. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component/resources.rs +0 -352
  716. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component.rs +0 -857
  717. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/const_expr.rs +0 -102
  718. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/cow.rs +0 -972
  719. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/disabled.rs +0 -24
  720. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -968
  721. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/enabled/free_list.rs +0 -771
  722. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/gc_ref.rs +0 -491
  723. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/gc_runtime.rs +0 -506
  724. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc.rs +0 -245
  725. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/on_demand.rs +0 -220
  726. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -194
  727. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -94
  728. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -78
  729. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -707
  730. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -975
  731. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -245
  732. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -278
  733. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -794
  734. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator.rs +0 -801
  735. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance.rs +0 -1514
  736. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/libcalls.rs +0 -834
  737. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/memory.rs +0 -736
  738. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mmap.rs +0 -220
  739. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mmap_vec.rs +0 -162
  740. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/module_id.rs +0 -43
  741. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/disabled.rs +0 -43
  742. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/enabled.rs +0 -214
  743. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/mod.rs +0 -54
  744. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/sys.rs +0 -114
  745. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -112
  746. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/mod.rs +0 -34
  747. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/unwind.rs +0 -17
  748. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/vm.rs +0 -105
  749. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -95
  750. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/miri/unwind.rs +0 -17
  751. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -162
  752. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/signals.rs +0 -407
  753. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -150
  754. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -221
  755. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/windows/unwind.rs +0 -46
  756. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/table.rs +0 -899
  757. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/threads/shared_memory.rs +0 -233
  758. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/threads/shared_memory_disabled.rs +0 -101
  759. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/traphandlers.rs +0 -768
  760. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -79
  761. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext.rs +0 -1302
  762. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm.rs +0 -277
  763. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime.rs +0 -113
  764. data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/.cargo-checksum.json +0 -1
  765. data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/Cargo.toml +0 -22
  766. data/ext/cargo-vendor/wasmtime-cache-22.0.0/.cargo-checksum.json +0 -1
  767. data/ext/cargo-vendor/wasmtime-cache-22.0.0/Cargo.toml +0 -89
  768. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/.cargo-checksum.json +0 -1
  769. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/Cargo.toml +0 -86
  770. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/src/bindgen.rs +0 -493
  771. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/codegen.rs +0 -651
  772. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char.rs +0 -198
  773. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char_async.rs +0 -215
  774. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions.rs +0 -586
  775. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions_async.rs +0 -631
  776. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code.rs +0 -165
  777. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code_async.rs +0 -178
  778. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import.rs +0 -91
  779. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import_async.rs +0 -97
  780. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty.rs +0 -45
  781. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty_async.rs +0 -45
  782. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags.rs +0 -637
  783. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags_async.rs +0 -679
  784. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats.rs +0 -255
  785. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats_async.rs +0 -282
  786. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new.rs +0 -59
  787. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new_async.rs +0 -62
  788. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers.rs +0 -722
  789. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers_async.rs +0 -819
  790. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists.rs +0 -1743
  791. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists_async.rs +0 -1927
  792. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments.rs +0 -543
  793. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments_async.rs +0 -561
  794. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return.rs +0 -270
  795. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return_async.rs +0 -298
  796. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion.rs +0 -251
  797. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion_async.rs +0 -270
  798. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records.rs +0 -815
  799. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records_async.rs +0 -877
  800. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename.rs +0 -154
  801. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename_async.rs +0 -167
  802. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export.rs +0 -467
  803. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export_async.rs +0 -516
  804. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import.rs +0 -1014
  805. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import_async.rs +0 -1086
  806. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types.rs +0 -249
  807. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types_async.rs +0 -265
  808. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions.rs +0 -313
  809. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions_async.rs +0 -347
  810. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists.rs +0 -350
  811. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists_async.rs +0 -381
  812. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi.rs +0 -216
  813. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi_async.rs +0 -229
  814. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous.rs +0 -275
  815. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous_async.rs +0 -287
  816. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default.rs +0 -59
  817. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default_async.rs +0 -62
  818. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export.rs +0 -86
  819. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export_async.rs +0 -89
  820. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke.rs +0 -104
  821. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke_async.rs +0 -111
  822. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings.rs +0 -247
  823. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings_async.rs +0 -269
  824. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo.rs +0 -136
  825. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo_async.rs +0 -143
  826. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths.rs +0 -288
  827. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths_async.rs +0 -314
  828. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants.rs +0 -1750
  829. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants_async.rs +0 -1867
  830. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat.rs +0 -84
  831. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat_async.rs +0 -84
  832. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types.rs +0 -138
  833. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types_async.rs +0 -148
  834. data/ext/cargo-vendor/wasmtime-component-util-22.0.0/.cargo-checksum.json +0 -1
  835. data/ext/cargo-vendor/wasmtime-component-util-22.0.0/Cargo.toml +0 -25
  836. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/.cargo-checksum.json +0 -1
  837. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/Cargo.toml +0 -115
  838. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/compiler.rs +0 -1067
  839. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/gc.rs +0 -252
  840. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/address_transform.rs +0 -783
  841. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/attr.rs +0 -320
  842. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/expression.rs +0 -1248
  843. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/line_program.rs +0 -287
  844. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/mod.rs +0 -256
  845. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/range_info_builder.rs +0 -221
  846. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/simulate.rs +0 -411
  847. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/unit.rs +0 -529
  848. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/utils.rs +0 -186
  849. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/write_debuginfo.rs +0 -196
  850. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug.rs +0 -18
  851. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/func_environ.rs +0 -2910
  852. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/gc/enabled.rs +0 -648
  853. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/lib.rs +0 -462
  854. data/ext/cargo-vendor/wasmtime-environ-22.0.0/.cargo-checksum.json +0 -1
  855. data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.lock +0 -774
  856. data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.toml +0 -161
  857. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/mod.rs +0 -374
  858. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/module_environ.rs +0 -1348
  859. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/dfg.rs +0 -691
  860. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/info.rs +0 -672
  861. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate/inline.rs +0 -1332
  862. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate.rs +0 -985
  863. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types.rs +0 -1038
  864. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types_builder.rs +0 -1004
  865. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component.rs +0 -107
  866. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/lib.rs +0 -151
  867. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/module.rs +0 -704
  868. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/stack_map.rs +0 -37
  869. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/tunables.rs +0 -175
  870. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/vmoffsets.rs +0 -989
  871. data/ext/cargo-vendor/wasmtime-fiber-22.0.0/.cargo-checksum.json +0 -1
  872. data/ext/cargo-vendor/wasmtime-fiber-22.0.0/Cargo.toml +0 -65
  873. data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/.cargo-checksum.json +0 -1
  874. data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/Cargo.toml +0 -68
  875. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/.cargo-checksum.json +0 -1
  876. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/Cargo.toml +0 -52
  877. data/ext/cargo-vendor/wasmtime-slab-22.0.0/.cargo-checksum.json +0 -1
  878. data/ext/cargo-vendor/wasmtime-slab-22.0.0/Cargo.toml +0 -21
  879. data/ext/cargo-vendor/wasmtime-types-22.0.0/.cargo-checksum.json +0 -1
  880. data/ext/cargo-vendor/wasmtime-types-22.0.0/Cargo.toml +0 -56
  881. data/ext/cargo-vendor/wasmtime-types-22.0.0/src/lib.rs +0 -1737
  882. data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/.cargo-checksum.json +0 -1
  883. data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/Cargo.toml +0 -32
  884. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/.cargo-checksum.json +0 -1
  885. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/Cargo.toml +0 -201
  886. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/bindings.rs +0 -289
  887. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/filesystem.rs +0 -446
  888. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/filesystem.rs +0 -1091
  889. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/io.rs +0 -388
  890. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/lib.rs +0 -417
  891. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/preview1.rs +0 -2801
  892. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/stdio.rs +0 -533
  893. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/api.rs +0 -198
  894. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/async_.rs +0 -397
  895. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/sync.rs +0 -331
  896. data/ext/cargo-vendor/wasmtime-winch-22.0.0/.cargo-checksum.json +0 -1
  897. data/ext/cargo-vendor/wasmtime-winch-22.0.0/Cargo.toml +0 -82
  898. data/ext/cargo-vendor/wasmtime-winch-22.0.0/src/compiler.rs +0 -239
  899. data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/.cargo-checksum.json +0 -1
  900. data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/Cargo.toml +0 -47
  901. data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/src/lib.rs +0 -2639
  902. data/ext/cargo-vendor/wast-209.0.1/.cargo-checksum.json +0 -1
  903. data/ext/cargo-vendor/wast-209.0.1/Cargo.toml +0 -60
  904. data/ext/cargo-vendor/wast-209.0.1/src/component/binary.rs +0 -1000
  905. data/ext/cargo-vendor/wast-209.0.1/src/component/component.rs +0 -321
  906. data/ext/cargo-vendor/wast-209.0.1/src/component/expand.rs +0 -875
  907. data/ext/cargo-vendor/wast-209.0.1/src/component/resolve.rs +0 -999
  908. data/ext/cargo-vendor/wast-209.0.1/src/component.rs +0 -28
  909. data/ext/cargo-vendor/wast-209.0.1/src/core/binary.rs +0 -1396
  910. data/ext/cargo-vendor/wast-209.0.1/src/core/expr.rs +0 -2016
  911. data/ext/cargo-vendor/wast-209.0.1/src/core/memory.rs +0 -284
  912. data/ext/cargo-vendor/wast-209.0.1/src/core/module.rs +0 -218
  913. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/deinline_import_export.rs +0 -235
  914. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/names.rs +0 -751
  915. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/types.rs +0 -267
  916. data/ext/cargo-vendor/wast-209.0.1/src/core/table.rs +0 -302
  917. data/ext/cargo-vendor/wast-209.0.1/src/core/types.rs +0 -901
  918. data/ext/cargo-vendor/wast-209.0.1/src/core.rs +0 -29
  919. data/ext/cargo-vendor/wast-209.0.1/src/lib.rs +0 -551
  920. data/ext/cargo-vendor/wast-209.0.1/src/parser.rs +0 -1414
  921. data/ext/cargo-vendor/wast-209.0.1/src/wat.rs +0 -71
  922. data/ext/cargo-vendor/wat-1.209.1/.cargo-checksum.json +0 -1
  923. data/ext/cargo-vendor/wat-1.209.1/Cargo.toml +0 -34
  924. data/ext/cargo-vendor/wat-1.209.1/src/lib.rs +0 -401
  925. data/ext/cargo-vendor/wiggle-22.0.0/.cargo-checksum.json +0 -1
  926. data/ext/cargo-vendor/wiggle-22.0.0/Cargo.toml +0 -124
  927. data/ext/cargo-vendor/wiggle-generate-22.0.0/.cargo-checksum.json +0 -1
  928. data/ext/cargo-vendor/wiggle-generate-22.0.0/Cargo.toml +0 -67
  929. data/ext/cargo-vendor/wiggle-generate-22.0.0/LICENSE +0 -220
  930. data/ext/cargo-vendor/wiggle-macro-22.0.0/.cargo-checksum.json +0 -1
  931. data/ext/cargo-vendor/wiggle-macro-22.0.0/Cargo.toml +0 -51
  932. data/ext/cargo-vendor/wiggle-macro-22.0.0/LICENSE +0 -220
  933. data/ext/cargo-vendor/winch-codegen-0.20.0/.cargo-checksum.json +0 -1
  934. data/ext/cargo-vendor/winch-codegen-0.20.0/Cargo.toml +0 -77
  935. data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/env.rs +0 -448
  936. data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/mod.rs +0 -882
  937. data/ext/cargo-vendor/winch-codegen-0.20.0/src/visitor.rs +0 -2149
  938. data/ext/cargo-vendor/wit-parser-0.209.1/.cargo-checksum.json +0 -1
  939. data/ext/cargo-vendor/wit-parser-0.209.1/Cargo.toml +0 -112
  940. data/ext/cargo-vendor/wit-parser-0.209.1/src/ast/lex.rs +0 -747
  941. data/ext/cargo-vendor/wit-parser-0.209.1/src/ast/resolve.rs +0 -1524
  942. data/ext/cargo-vendor/wit-parser-0.209.1/src/ast.rs +0 -1668
  943. data/ext/cargo-vendor/wit-parser-0.209.1/src/decoding.rs +0 -1795
  944. data/ext/cargo-vendor/wit-parser-0.209.1/src/lib.rs +0 -873
  945. data/ext/cargo-vendor/wit-parser-0.209.1/src/resolve.rs +0 -2498
  946. data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/feature-gates.wit.json +0 -288
  947. data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/since-and-unstable.wit.json +0 -549
  948. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/LICENSE +0 -0
  949. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/README.md +0 -0
  950. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/lib.rs +0 -0
  951. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/map.rs +0 -0
  952. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/node.rs +0 -0
  953. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/path.rs +0 -0
  954. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/pool.rs +0 -0
  955. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/set.rs +0 -0
  956. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/LICENSE +0 -0
  957. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/README.md +0 -0
  958. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/benches/x64-evex-encoding.rs +0 -0
  959. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/build.rs +0 -0
  960. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/alias_analysis.rs +0 -0
  961. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/binemit/mod.rs +0 -0
  962. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/cfg_printer.rs +0 -0
  963. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/constant_hash.rs +0 -0
  964. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ctxhash.rs +0 -0
  965. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/cursor.rs +0 -0
  966. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/dbg.rs +0 -0
  967. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/dominator_tree.rs +0 -0
  968. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph/cost.rs +0 -0
  969. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph/elaborate.rs +0 -0
  970. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph.rs +0 -0
  971. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/flowgraph.rs +0 -0
  972. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/incremental_cache.rs +0 -0
  973. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/inst_predicates.rs +0 -0
  974. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/atomic_rmw_op.rs +0 -0
  975. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/builder.rs +0 -0
  976. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/condcodes.rs +0 -0
  977. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/constant.rs +0 -0
  978. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/dynamic_type.rs +0 -0
  979. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/entities.rs +0 -0
  980. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/extfunc.rs +0 -0
  981. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/extname.rs +0 -0
  982. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/function.rs +0 -0
  983. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/known_symbol.rs +0 -0
  984. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/layout.rs +0 -0
  985. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/libcall.rs +0 -0
  986. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/memflags.rs +0 -0
  987. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/memtype.rs +0 -0
  988. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/pcc.rs +0 -0
  989. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/progpoint.rs +0 -0
  990. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/sourceloc.rs +0 -0
  991. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/stackslot.rs +0 -0
  992. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/abi.rs +0 -0
  993. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/args.rs +0 -0
  994. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/imms.rs +0 -0
  995. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/regs.rs +0 -0
  996. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  997. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  998. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst_neon.isle +0 -0
  999. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1000. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle.rs +0 -0
  1001. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower.rs +0 -0
  1002. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1003. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/pcc.rs +0 -0
  1004. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/settings.rs +0 -0
  1005. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/call_conv.rs +0 -0
  1006. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/abi.rs +0 -0
  1007. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/args.rs +0 -0
  1008. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/encode.rs +0 -0
  1009. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/imms.rs +0 -0
  1010. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/regs.rs +0 -0
  1011. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1012. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  1013. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/vector.rs +0 -0
  1014. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst_vector.isle +0 -0
  1015. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1016. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower.rs +0 -0
  1017. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/settings.rs +0 -0
  1018. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/abi.rs +0 -0
  1019. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/args.rs +0 -0
  1020. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1021. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/imms.rs +0 -0
  1022. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/regs.rs +0 -0
  1023. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1024. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/unwind.rs +0 -0
  1025. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst.isle +0 -0
  1026. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1027. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle.rs +0 -0
  1028. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower.rs +0 -0
  1029. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/settings.rs +0 -0
  1030. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind/systemv.rs +0 -0
  1031. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind/winx64.rs +0 -0
  1032. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind.rs +0 -0
  1033. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/abi.rs +0 -0
  1034. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/evex.rs +0 -0
  1035. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/mod.rs +0 -0
  1036. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/rex.rs +0 -0
  1037. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/vex.rs +0 -0
  1038. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/args.rs +0 -0
  1039. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  1040. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/regs.rs +0 -0
  1041. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1042. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1043. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind.rs +0 -0
  1044. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1045. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle.rs +0 -0
  1046. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower.rs +0 -0
  1047. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/pcc.rs +0 -0
  1048. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/settings.rs +0 -0
  1049. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/iterators.rs +0 -0
  1050. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/legalizer/globalvalue.rs +0 -0
  1051. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/loop_analysis.rs +0 -0
  1052. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/blockorder.rs +0 -0
  1053. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/compile.rs +0 -0
  1054. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/inst_common.rs +0 -0
  1055. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/pcc.rs +0 -0
  1056. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/reg.rs +0 -0
  1057. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/valueregs.rs +0 -0
  1058. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/nan_canonicalization.rs +0 -0
  1059. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/README.md +0 -0
  1060. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/arithmetic.isle +0 -0
  1061. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/bitops.isle +0 -0
  1062. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/cprop.isle +0 -0
  1063. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/extends.isle +0 -0
  1064. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/generated_code.rs +0 -0
  1065. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/icmp.isle +0 -0
  1066. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/remat.isle +0 -0
  1067. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/selects.isle +0 -0
  1068. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/shifts.isle +0 -0
  1069. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/spaceship.isle +0 -0
  1070. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/spectre.isle +0 -0
  1071. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/vector.isle +0 -0
  1072. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts.rs +0 -0
  1073. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/prelude_opt.isle +0 -0
  1074. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/print_errors.rs +0 -0
  1075. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ranges.rs +0 -0
  1076. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/remove_constant_phis.rs +0 -0
  1077. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/result.rs +0 -0
  1078. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/scoped_hash_map.rs +0 -0
  1079. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/settings.rs +0 -0
  1080. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/souper_harvest.rs +0 -0
  1081. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/timing.rs +0 -0
  1082. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/traversals.rs +0 -0
  1083. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/unionfind.rs +0 -0
  1084. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/unreachable_code.rs +0 -0
  1085. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/value_label.rs +0 -0
  1086. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/verifier/mod.rs +0 -0
  1087. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/LICENSE +0 -0
  1088. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/README.md +0 -0
  1089. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/formats.rs +0 -0
  1090. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/instructions.rs +0 -0
  1091. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/isa.rs +0 -0
  1092. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/mod.rs +0 -0
  1093. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/operands.rs +0 -0
  1094. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/settings.rs +0 -0
  1095. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/constant_hash.rs +0 -0
  1096. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/error.rs +0 -0
  1097. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_isle.rs +0 -0
  1098. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_settings.rs +0 -0
  1099. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_types.rs +0 -0
  1100. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/arm64.rs +0 -0
  1101. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/mod.rs +0 -0
  1102. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/riscv64.rs +0 -0
  1103. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/s390x.rs +0 -0
  1104. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/x86.rs +0 -0
  1105. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isle.rs +0 -0
  1106. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/lib.rs +0 -0
  1107. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/entities.rs +0 -0
  1108. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/formats.rs +0 -0
  1109. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/immediates.rs +0 -0
  1110. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/mod.rs +0 -0
  1111. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/settings.rs +0 -0
  1112. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/srcgen.rs +0 -0
  1113. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/unique_table.rs +0 -0
  1114. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/LICENSE +0 -0
  1115. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/README.md +0 -0
  1116. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/constant_hash.rs +0 -0
  1117. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/constants.rs +0 -0
  1118. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/lib.rs +0 -0
  1119. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/LICENSE +0 -0
  1120. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/README.md +0 -0
  1121. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/chaos.rs +0 -0
  1122. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/lib.rs +0 -0
  1123. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/zero_sized.rs +0 -0
  1124. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/LICENSE +0 -0
  1125. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/README.md +0 -0
  1126. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/boxed_slice.rs +0 -0
  1127. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/iter.rs +0 -0
  1128. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/keys.rs +0 -0
  1129. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/lib.rs +0 -0
  1130. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/list.rs +0 -0
  1131. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/map.rs +0 -0
  1132. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/packed_option.rs +0 -0
  1133. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/primary.rs +0 -0
  1134. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/sparse.rs +0 -0
  1135. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/unsigned.rs +0 -0
  1136. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/LICENSE +0 -0
  1137. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/README.md +0 -0
  1138. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/lib.rs +0 -0
  1139. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/ssa.rs +0 -0
  1140. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/switch.rs +0 -0
  1141. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/variable.rs +0 -0
  1142. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/README.md +0 -0
  1143. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/build.rs +0 -0
  1144. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/bad_converters.isle +0 -0
  1145. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1146. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1147. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/error1.isle +0 -0
  1148. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/extra_parens.isle +0 -0
  1149. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/impure_expression.isle +0 -0
  1150. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/impure_rhs.isle +0 -0
  1151. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1152. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/multi_prio.isle +0 -0
  1153. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/borrows.isle +0 -0
  1154. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/borrows_main.rs +0 -0
  1155. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/iflets.isle +0 -0
  1156. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/iflets_main.rs +0 -0
  1157. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor.isle +0 -0
  1158. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  1159. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor.isle +0 -0
  1160. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  1161. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/test.isle +0 -0
  1162. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/test_main.rs +0 -0
  1163. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/bound_var.isle +0 -0
  1164. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  1165. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/conversions.isle +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/conversions_extern.isle +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/let.isle +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/nodebug.isle +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test2.isle +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test3.isle +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test4.isle +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/tutorial.isle +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/iconst.isle +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/iconst_main.rs +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing.isle +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/ast.rs +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/compile.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/disjointsets.rs +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/error.rs +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/lexer.rs +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/lib.rs +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/log.rs +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/overlap.rs +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/serialize.rs +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/stablemapset.rs +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/tests/run_tests.rs +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/LICENSE +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/README.md +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/src/riscv.rs +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/LICENSE +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/README.md +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/dummy.rs +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/mod.rs +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/spec.rs +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/func_translator.rs +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/lib.rs +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/module_translator.rs +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/state.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/table.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/translation_utils.rs +0 -0
  1203. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/README.md +0 -0
  1204. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/clocks.rs +0 -0
  1205. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/lib.rs +0 -0
  1206. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/noop_scheduler.rs +0 -0
  1207. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/clocks.rs +0 -0
  1208. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/common/mod.rs +0 -0
  1209. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/random.rs +0 -0
  1210. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/scheduler.rs +0 -0
  1211. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/LICENSE +0 -0
  1212. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/README.md +0 -0
  1213. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/clocks.rs +0 -0
  1214. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/ctx.rs +0 -0
  1215. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/dir.rs +0 -0
  1216. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/error.rs +0 -0
  1217. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/file.rs +0 -0
  1218. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/lib.rs +0 -0
  1219. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/pipe.rs +0 -0
  1220. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/random.rs +0 -0
  1221. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sched/subscription.rs +0 -0
  1222. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sched.rs +0 -0
  1223. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/mod.rs +0 -0
  1224. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_0.rs +0 -0
  1225. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1226. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_1.rs +0 -0
  1227. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/string_array.rs +0 -0
  1228. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/clocks.rs +0 -0
  1229. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/dir.rs +0 -0
  1230. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/file.rs +0 -0
  1231. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/mod.rs +0 -0
  1232. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/net.rs +0 -0
  1233. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched/unix.rs +0 -0
  1234. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched/windows.rs +0 -0
  1235. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched.rs +0 -0
  1236. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/stdio.rs +0 -0
  1237. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/table.rs +0 -0
  1238. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/dir.rs +0 -0
  1239. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/file.rs +0 -0
  1240. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/net.rs +0 -0
  1241. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched/unix.rs +0 -0
  1242. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched/windows.rs +0 -0
  1243. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched.rs +0 -0
  1244. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/stdio.rs +0 -0
  1245. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/tests/all/main.rs +0 -0
  1246. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview0/typenames.witx +0 -0
  1247. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1248. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview1/typenames.witx +0 -0
  1249. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1250. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/LICENSE +0 -0
  1251. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/README.md +0 -0
  1252. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/aliases.rs +0 -0
  1253. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/builder.rs +0 -0
  1254. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/canonicals.rs +0 -0
  1255. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/components.rs +0 -0
  1256. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/exports.rs +0 -0
  1257. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/imports.rs +0 -0
  1258. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/instances.rs +0 -0
  1259. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/modules.rs +0 -0
  1260. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/names.rs +0 -0
  1261. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/start.rs +0 -0
  1262. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component.rs +0 -0
  1263. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/custom.rs +0 -0
  1264. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/data.rs +0 -0
  1265. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/dump.rs +0 -0
  1266. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/elements.rs +0 -0
  1267. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/functions.rs +0 -0
  1268. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/linking.rs +0 -0
  1269. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/names.rs +0 -0
  1270. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/producers.rs +0 -0
  1271. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/start.rs +0 -0
  1272. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core.rs +0 -0
  1273. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/raw.rs +0 -0
  1274. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/README.md +0 -0
  1275. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/benches/benchmark.rs +0 -0
  1276. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/examples/simple.rs +0 -0
  1277. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/hash.rs +0 -0
  1278. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map/detail.rs +0 -0
  1279. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map/tests.rs +0 -0
  1280. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map.rs +0 -0
  1281. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_set.rs +0 -0
  1282. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/map.rs +0 -0
  1283. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/mod.rs +0 -0
  1284. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/set.rs +0 -0
  1285. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/limits.rs +0 -0
  1286. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/aliases.rs +0 -0
  1287. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/canonicals.rs +0 -0
  1288. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/exports.rs +0 -0
  1289. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/imports.rs +0 -0
  1290. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/instances.rs +0 -0
  1291. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/names.rs +0 -0
  1292. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/start.rs +0 -0
  1293. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/types.rs +0 -0
  1294. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component.rs +0 -0
  1295. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/branch_hinting.rs +0 -0
  1296. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/code.rs +0 -0
  1297. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/coredumps.rs +0 -0
  1298. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/custom.rs +0 -0
  1299. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/data.rs +0 -0
  1300. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/dylink0.rs +0 -0
  1301. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/elements.rs +0 -0
  1302. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/exports.rs +0 -0
  1303. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/functions.rs +0 -0
  1304. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/globals.rs +0 -0
  1305. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/imports.rs +0 -0
  1306. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/init.rs +0 -0
  1307. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/linking.rs +0 -0
  1308. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/memories.rs +0 -0
  1309. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/names.rs +0 -0
  1310. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/producers.rs +0 -0
  1311. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/reloc.rs +0 -0
  1312. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/tags.rs +0 -0
  1313. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/types/matches.rs +0 -0
  1314. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core.rs +0 -0
  1315. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers.rs +0 -0
  1316. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/core/canonical.rs +0 -0
  1317. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/func.rs +0 -0
  1318. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/names.rs +0 -0
  1319. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/tests/big-module.rs +0 -0
  1320. /data/ext/cargo-vendor/{wasmprinter-0.209.1 → wasmprinter-0.212.0}/LICENSE +0 -0
  1321. /data/ext/cargo-vendor/{wasmprinter-0.209.1 → wasmprinter-0.212.0}/README.md +0 -0
  1322. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/LICENSE +0 -0
  1323. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/README.md +0 -0
  1324. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1325. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/code.rs +0 -0
  1326. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1327. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1328. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1329. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1330. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1331. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1332. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1333. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/resource_table.rs +0 -0
  1334. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/storage.rs +0 -0
  1335. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/store.rs +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/types.rs +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/externals.rs +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/noextern.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/resources.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/signatures.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/store/context.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/store/func_refs.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/trampoline/global.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/type_registry.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/uninhabited.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/unix.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/v128.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/export.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/helpers.c +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/imports.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/store_box.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/mod.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/windows.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/sync_nostd.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/sync_std.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-asm-macros-22.0.0 → wasmtime-asm-macros-23.0.2}/src/lib.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/LICENSE +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/build.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/config/tests.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/config.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/lib.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/tests.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker/tests.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/tests/cache_write_default_config.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/build.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/src/component.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/src/lib.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/char.wit +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/conventions.wit +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/dead-code.wit +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/direct-import.wit +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/empty.wit +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/flags.wit +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/floats.wit +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/function-new.wit +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/integers.wit +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/lists.wit +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/many-arguments.wit +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multi-return.wit +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/records.wit +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/rename.wit +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-export.wit +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-import.wit +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/share-types.wit +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-functions.wit +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-lists.wit +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-default.wit +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-export.wit +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke.wit +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/strings.wit +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/use-paths.wit +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/variants.wit +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/wat.wit +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen_no_std.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/expanded.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-component-util-22.0.0 → wasmtime-component-util-23.0.2}/src/lib.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/LICENSE +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/SECURITY.md +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/builder.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/compiled_function.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/compiler/component.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/debug/transform/refs.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/gc/disabled.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/gc.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/isa_builder.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/obj.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/LICENSE +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/examples/factc.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/address_map.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/builtin.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/address_map.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/module_artifacts.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/module_types.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/trap_encoding.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/artifacts.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/compiler.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/translate/adapt.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/types_builder/resources.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/demangling.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/core_types.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/signature.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/trampoline.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/transcode.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/traps.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/gc.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/module_artifacts.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/module_types.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/obj.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/ref_bits.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/scopevec.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/trap_encoding.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/LICENSE +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/build.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/lib.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/aarch64.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/arm.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/riscv64.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/s390x.S +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/x86.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/x86_64.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/windows.c +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/windows.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/README.md +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/gdb_jit_int.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/lib.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/perf_jitdump.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/lib.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/libc.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/miri.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/win.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-slab-22.0.0 → wasmtime-slab-23.0.2}/src/lib.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-types-22.0.0 → wasmtime-types-23.0.2}/LICENSE +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-types-22.0.0 → wasmtime-types-23.0.2}/src/error.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-22.0.0 → wasmtime-versioned-export-macros-23.0.2}/src/lib.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/LICENSE +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/README.md +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/clocks/host.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/clocks.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/ctx.rs +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/error.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/clocks.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/env.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/exit.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/filesystem/sync.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/instance_network.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/mod.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/network.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/random.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/tcp.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/tcp_create_socket.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/udp.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/udp_create_socket.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/ip_name_lookup.rs +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/network.rs +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/pipe.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/poll.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/preview0.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/random.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/runtime.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/stream.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/tcp.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/udp.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/write_stream.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/all/main.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/all/preview1.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/process_stdin.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/command-extended.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/command.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/environment.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/exit.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/imports.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/run.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/stdio.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/terminal.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/world.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/types.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/world.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/handler.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/proxy.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/types.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/error.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/poll.wit +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/streams.wit +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/world.wit +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure.wit +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/random.wit +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/world.wit +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/network.wit +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp.wit +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/world.wit +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/test.wit +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview0/typenames.witx +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview1/typenames.witx +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/LICENSE +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/src/builder.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/src/lib.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/rust.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/source.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/types.rs +0 -0
  1582. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/README.md +0 -0
  1583. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/alias.rs +0 -0
  1584. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/custom.rs +0 -0
  1585. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/export.rs +0 -0
  1586. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/func.rs +0 -0
  1587. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/import.rs +0 -0
  1588. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/instance.rs +0 -0
  1589. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/item_ref.rs +0 -0
  1590. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/module.rs +0 -0
  1591. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/types.rs +0 -0
  1592. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/wast.rs +0 -0
  1593. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/custom.rs +0 -0
  1594. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/export.rs +0 -0
  1595. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/func.rs +0 -0
  1596. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/global.rs +0 -0
  1597. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/import.rs +0 -0
  1598. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/resolve/mod.rs +0 -0
  1599. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/tag.rs +0 -0
  1600. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/wast.rs +0 -0
  1601. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/encode.rs +0 -0
  1602. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/error.rs +0 -0
  1603. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/gensym.rs +0 -0
  1604. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/lexer.rs +0 -0
  1605. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/names.rs +0 -0
  1606. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/token.rs +0 -0
  1607. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/wast.rs +0 -0
  1608. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/annotations.rs +0 -0
  1609. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/comments.rs +0 -0
  1610. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1611. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1612. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1613. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1614. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1615. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1616. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1617. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1618. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1619. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1620. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1621. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1622. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat +0 -0
  1623. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1624. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat +0 -0
  1625. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1626. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat +0 -0
  1627. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1628. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1629. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1630. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1631. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1632. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1633. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1634. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1635. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1636. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1637. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1638. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1639. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1640. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1641. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1642. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1643. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1644. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1645. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1646. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1647. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1648. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1649. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1650. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1651. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1652. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1653. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1654. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1655. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1656. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1657. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1658. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1659. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1660. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1661. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1662. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1663. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1664. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1665. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1666. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1667. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1668. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1669. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1670. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1671. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1672. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1673. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1674. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1675. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1676. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1677. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1678. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1679. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1680. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1681. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1682. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat +0 -0
  1683. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1684. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1685. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1686. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat +0 -0
  1687. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1688. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat +0 -0
  1689. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1690. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat +0 -0
  1691. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1692. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat +0 -0
  1693. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1694. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat +0 -0
  1695. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1696. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat +0 -0
  1697. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1698. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat +0 -0
  1699. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1700. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat +0 -0
  1701. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1702. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat +0 -0
  1703. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1704. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat +0 -0
  1705. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1706. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat +0 -0
  1707. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1708. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat +0 -0
  1709. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1710. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat +0 -0
  1711. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1712. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat +0 -0
  1713. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1714. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat +0 -0
  1715. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1716. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat +0 -0
  1717. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat.err +0 -0
  1718. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  1719. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  1720. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail.rs +0 -0
  1721. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/recursive.rs +0 -0
  1722. /data/ext/cargo-vendor/{wat-1.209.1 → wat-1.215.0}/README.md +0 -0
  1723. /data/ext/cargo-vendor/{wast-209.0.1 → wiggle-23.0.2}/LICENSE +0 -0
  1724. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/README.md +0 -0
  1725. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/error.rs +0 -0
  1726. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/guest_type.rs +0 -0
  1727. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/lib.rs +0 -0
  1728. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/region.rs +0 -0
  1729. /data/ext/cargo-vendor/{wat-1.209.1 → wiggle-generate-23.0.2}/LICENSE +0 -0
  1730. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/README.md +0 -0
  1731. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/codegen_settings.rs +0 -0
  1732. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/config.rs +0 -0
  1733. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/funcs.rs +0 -0
  1734. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/lib.rs +0 -0
  1735. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/lifetimes.rs +0 -0
  1736. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/module_trait.rs +0 -0
  1737. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/names.rs +0 -0
  1738. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/error.rs +0 -0
  1739. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/flags.rs +0 -0
  1740. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/handle.rs +0 -0
  1741. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/mod.rs +0 -0
  1742. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/record.rs +0 -0
  1743. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/variant.rs +0 -0
  1744. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/wasmtime.rs +0 -0
  1745. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-macro-23.0.2}/LICENSE +0 -0
  1746. /data/ext/cargo-vendor/{wiggle-macro-22.0.0 → wiggle-macro-23.0.2}/build.rs +0 -0
  1747. /data/ext/cargo-vendor/{wiggle-macro-22.0.0 → wiggle-macro-23.0.2}/src/lib.rs +0 -0
  1748. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/LICENSE +0 -0
  1749. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/build.rs +0 -0
  1750. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/abi/local.rs +0 -0
  1751. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/abi/mod.rs +0 -0
  1752. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/bounds.rs +0 -0
  1753. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/builtin.rs +0 -0
  1754. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/call.rs +0 -0
  1755. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/context.rs +0 -0
  1756. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/control.rs +0 -0
  1757. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/frame/mod.rs +0 -0
  1758. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/abi.rs +0 -0
  1759. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/address.rs +0 -0
  1760. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/asm.rs +0 -0
  1761. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/masm.rs +0 -0
  1762. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/mod.rs +0 -0
  1763. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/regs.rs +0 -0
  1764. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/mod.rs +0 -0
  1765. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/reg.rs +0 -0
  1766. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/abi.rs +0 -0
  1767. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/address.rs +0 -0
  1768. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/asm.rs +0 -0
  1769. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/masm.rs +0 -0
  1770. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/mod.rs +0 -0
  1771. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/regs.rs +0 -0
  1772. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/lib.rs +0 -0
  1773. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/masm.rs +0 -0
  1774. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/regalloc.rs +0 -0
  1775. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/regset.rs +0 -0
  1776. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/stack.rs +0 -0
  1777. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/README.md +0 -0
  1778. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/abi.rs +0 -0
  1779. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/ast/toposort.rs +0 -0
  1780. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/live.rs +0 -0
  1781. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/metadata.rs +0 -0
  1782. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/serde_.rs +0 -0
  1783. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/sizealign.rs +0 -0
  1784. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/all.rs +0 -0
  1785. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/comments.wit +0 -0
  1786. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/comments.wit.json +0 -0
  1787. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  1788. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  1789. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/root.wit +0 -0
  1790. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include.wit.json +0 -0
  1791. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  1792. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource/foo.wit +0 -0
  1793. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource.wit.json +0 -0
  1794. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  1795. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  1796. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/join.wit +0 -0
  1797. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1.wit.json +0 -0
  1798. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  1799. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  1800. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
  1801. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
  1802. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/empty.wit +0 -0
  1803. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/empty.wit.json +0 -0
  1804. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/feature-gates.wit +0 -0
  1805. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  1806. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  1807. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  1808. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  1809. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  1810. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  1811. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  1812. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/root.wit +0 -0
  1813. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  1814. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  1815. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  1816. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  1817. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  1818. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  1819. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  1820. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  1821. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/root.wit +0 -0
  1822. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union.wit.json +0 -0
  1823. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps.wit.json +0 -0
  1824. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/functions.wit +0 -0
  1825. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/functions.wit.json +0 -0
  1826. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  1827. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  1828. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/world.wit +0 -0
  1829. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps.wit.json +0 -0
  1830. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit +0 -0
  1831. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit.json +0 -0
  1832. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap2.wit +0 -0
  1833. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap2.wit.json +0 -0
  1834. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/include-reps.wit +0 -0
  1835. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/include-reps.wit.json +0 -0
  1836. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit +0 -0
  1837. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
  1838. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/a.wit +0 -0
  1839. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
  1840. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
  1841. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
  1842. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
  1843. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps.wit.json +0 -0
  1844. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names/a.wit +0 -0
  1845. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names/b.wit +0 -0
  1846. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names.wit.json +0 -0
  1847. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/bar.wit +0 -0
  1848. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-a.wit +0 -0
  1849. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-b.wit +0 -0
  1850. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/foo.wit +0 -0
  1851. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file.wit.json +0 -0
  1852. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  1853. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  1854. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  1855. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit +0 -0
  1856. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit.json +0 -0
  1857. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit +0 -0
  1858. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit.json +0 -0
  1859. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit +0 -0
  1860. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit.json +0 -0
  1861. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  1862. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  1863. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/async.wit.result +0 -0
  1864. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  1865. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit +0 -0
  1866. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  1867. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
  1868. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  1869. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate1.wit +0 -0
  1870. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate1.wit.result +0 -0
  1871. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate2.wit +0 -0
  1872. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate2.wit.result +0 -0
  1873. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate3.wit +0 -0
  1874. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate3.wit.result +0 -0
  1875. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate4.wit +0 -0
  1876. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate4.wit.result +0 -0
  1877. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate5.wit +0 -0
  1878. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate5.wit.result +0 -0
  1879. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
  1880. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  1881. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
  1882. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  1883. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
  1884. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  1885. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  1886. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  1887. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  1888. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  1889. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  1890. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  1891. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  1892. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  1893. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  1894. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  1895. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  1896. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  1897. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  1898. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  1899. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  1900. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  1901. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  1902. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  1903. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  1904. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  1905. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  1906. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  1907. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  1908. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  1909. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  1910. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  1911. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  1912. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  1913. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  1914. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  1915. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  1916. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  1917. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  1918. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  1919. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  1920. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  1921. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  1922. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  1923. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  1924. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  1925. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  1926. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  1927. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  1928. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  1929. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  1930. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  1931. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  1932. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  1933. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  1934. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  1935. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since1.wit +0 -0
  1936. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since1.wit.result +0 -0
  1937. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since3.wit +0 -0
  1938. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since3.wit.result +0 -0
  1939. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  1940. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  1941. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  1942. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  1943. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  1944. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit +0 -0
  1945. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
  1946. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit +0 -0
  1947. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  1948. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit +0 -0
  1949. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  1950. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit +0 -0
  1951. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  1952. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit +0 -0
  1953. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  1954. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  1955. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  1956. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  1957. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  1958. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  1959. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  1960. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  1961. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  1962. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  1963. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  1964. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  1965. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  1966. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  1967. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
  1968. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  1969. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  1970. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  1971. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit +0 -0
  1972. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  1973. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  1974. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  1975. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  1976. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  1977. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  1978. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  1979. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  1980. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  1981. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  1982. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  1983. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit +0 -0
  1984. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  1985. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
  1986. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  1987. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  1988. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  1989. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  1990. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
  1991. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  1992. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  1993. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  1994. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  1995. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  1996. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  1997. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  1998. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  1999. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2000. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2001. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2002. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2003. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2004. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit +0 -0
  2005. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2006. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit +0 -0
  2007. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2008. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2009. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2010. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
  2011. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2012. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2013. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2014. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2015. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2016. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2017. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2018. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2019. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2020. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2021. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2022. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2023. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2024. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit +0 -0
  2025. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +0 -0
  2026. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-return-borrow.wit +0 -0
  2027. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-return-borrow.wit.result +0 -0
  2028. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow1.wit +0 -0
  2029. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow1.wit.result +0 -0
  2030. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow2.wit +0 -0
  2031. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow2.wit.result +0 -0
  2032. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit +0 -0
  2033. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit.result +0 -0
  2034. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit +0 -0
  2035. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit.result +0 -0
  2036. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit +0 -0
  2037. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit.result +0 -0
  2038. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow6.wit +0 -0
  2039. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow6.wit.result +0 -0
  2040. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow7.wit +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow7.wit.result +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/deps/baz.wit +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/foo.wit +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8.wit.result +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2090. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2091. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2092. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2093. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2094. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2095. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2096. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2097. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2098. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2099. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2100. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2101. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2102. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2103. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2104. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/random.wit +0 -0
  2105. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/random.wit.json +0 -0
  2106. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-empty.wit +0 -0
  2107. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-empty.wit.json +0 -0
  2108. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2109. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2110. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit +0 -0
  2111. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit.json +0 -0
  2112. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit +0 -0
  2113. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit.json +0 -0
  2114. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources.wit +0 -0
  2115. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources.wit.json +0 -0
  2116. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources1.wit +0 -0
  2117. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources1.wit.json +0 -0
  2118. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit +0 -0
  2119. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit.json +0 -0
  2120. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/shared-types.wit +0 -0
  2121. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/shared-types.wit.json +0 -0
  2122. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wat +0 -0
  2123. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wit.json +0 -0
  2124. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/since-and-unstable.wit +0 -0
  2125. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/stress-export-elaborate.wit +0 -0
  2126. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2127. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit +0 -0
  2128. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit.json +0 -0
  2129. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/types.wit +0 -0
  2130. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/types.wit.json +0 -0
  2131. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit +0 -0
  2132. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit.json +0 -0
  2133. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit +0 -0
  2134. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit.json +0 -0
  2135. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use-chain.wit +0 -0
  2136. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use-chain.wit.json +0 -0
  2137. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use.wit +0 -0
  2138. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use.wit.json +0 -0
  2139. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2140. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/foo.wit +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions.wit.json +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/wasi.wit +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/wasi.wit.json +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-diamond.wit +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-diamond.wit.json +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-iface-no-collide.wit +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import1.wit +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import1.wit.json +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import2.wit +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import2.wit.json +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import3.wit +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import3.wit.json +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-same-fields4.wit +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-same-fields4.wit.json +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-resources.wit +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-resources.wit.json +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-union-dedup.wit +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-with-types.wit +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -1,3401 +0,0 @@
1
- //! This module defines s390x-specific machine instruction types.
2
-
3
- use crate::binemit::{Addend, CodeOffset, Reloc};
4
- use crate::ir::{types, ExternalName, Opcode, Type};
5
- use crate::isa::s390x::abi::S390xMachineDeps;
6
- use crate::isa::{CallConv, FunctionAlignment};
7
- use crate::machinst::*;
8
- use crate::{settings, CodegenError, CodegenResult};
9
- use alloc::boxed::Box;
10
- use alloc::vec::Vec;
11
- use regalloc2::PRegSet;
12
- use smallvec::SmallVec;
13
- use std::fmt::Write;
14
- use std::string::{String, ToString};
15
- pub mod regs;
16
- pub use self::regs::*;
17
- pub mod imms;
18
- pub use self::imms::*;
19
- pub mod args;
20
- pub use self::args::*;
21
- pub mod emit;
22
- pub use self::emit::*;
23
- pub mod unwind;
24
-
25
- #[cfg(test)]
26
- mod emit_tests;
27
-
28
- //=============================================================================
29
- // Instructions (top level): definition
30
-
31
- pub use crate::isa::s390x::lower::isle::generated_code::{
32
- ALUOp, CmpOp, FPUOp1, FPUOp2, FPUOp3, FpuRoundMode, FpuRoundOp, LaneOrder, MInst as Inst,
33
- RxSBGOp, ShiftOp, SymbolReloc, UnaryOp, VecBinaryOp, VecFloatCmpOp, VecIntCmpOp, VecShiftOp,
34
- VecUnaryOp,
35
- };
36
-
37
- /// Additional information for (direct) Call instructions, left out of line to lower the size of
38
- /// the Inst enum.
39
- #[derive(Clone, Debug)]
40
- pub struct CallInfo {
41
- pub dest: ExternalName,
42
- pub uses: CallArgList,
43
- pub defs: CallRetList,
44
- pub clobbers: PRegSet,
45
- pub opcode: Opcode,
46
- pub caller_callconv: CallConv,
47
- pub callee_callconv: CallConv,
48
- pub tls_symbol: Option<SymbolReloc>,
49
- }
50
-
51
- /// Additional information for CallInd instructions, left out of line to lower the size of the Inst
52
- /// enum.
53
- #[derive(Clone, Debug)]
54
- pub struct CallIndInfo {
55
- pub rn: Reg,
56
- pub uses: CallArgList,
57
- pub defs: CallRetList,
58
- pub clobbers: PRegSet,
59
- pub opcode: Opcode,
60
- pub caller_callconv: CallConv,
61
- pub callee_callconv: CallConv,
62
- }
63
-
64
- #[test]
65
- fn inst_size_test() {
66
- // This test will help with unintentionally growing the size
67
- // of the Inst enum.
68
- assert_eq!(32, std::mem::size_of::<Inst>());
69
- }
70
-
71
- /// A register pair. Enum so it can be destructured in ISLE.
72
- #[derive(Clone, Copy, Debug)]
73
- pub struct RegPair {
74
- pub hi: Reg,
75
- pub lo: Reg,
76
- }
77
-
78
- /// A writable register pair. Enum so it can be destructured in ISLE.
79
- #[derive(Clone, Copy, Debug)]
80
- pub struct WritableRegPair {
81
- pub hi: Writable<Reg>,
82
- pub lo: Writable<Reg>,
83
- }
84
-
85
- impl WritableRegPair {
86
- pub fn to_regpair(&self) -> RegPair {
87
- RegPair {
88
- hi: self.hi.to_reg(),
89
- lo: self.lo.to_reg(),
90
- }
91
- }
92
- }
93
-
94
- /// Supported instruction sets
95
- #[allow(non_camel_case_types)]
96
- #[derive(Debug)]
97
- pub(crate) enum InstructionSet {
98
- /// Baseline ISA for cranelift is z14.
99
- Base,
100
- /// Miscellaneous-Instruction-Extensions Facility 2 (z15)
101
- MIE2,
102
- /// Vector-Enhancements Facility 2 (z15)
103
- VXRS_EXT2,
104
- }
105
-
106
- impl Inst {
107
- /// Retrieve the ISA feature set in which the instruction is available.
108
- fn available_in_isa(&self) -> InstructionSet {
109
- match self {
110
- // These instructions are part of the baseline ISA for cranelift (z14)
111
- Inst::Nop0
112
- | Inst::Nop2
113
- | Inst::AluRRSImm16 { .. }
114
- | Inst::AluRR { .. }
115
- | Inst::AluRX { .. }
116
- | Inst::AluRSImm16 { .. }
117
- | Inst::AluRSImm32 { .. }
118
- | Inst::AluRUImm32 { .. }
119
- | Inst::AluRUImm16Shifted { .. }
120
- | Inst::AluRUImm32Shifted { .. }
121
- | Inst::ShiftRR { .. }
122
- | Inst::RxSBG { .. }
123
- | Inst::RxSBGTest { .. }
124
- | Inst::SMulWide { .. }
125
- | Inst::UMulWide { .. }
126
- | Inst::SDivMod32 { .. }
127
- | Inst::SDivMod64 { .. }
128
- | Inst::UDivMod32 { .. }
129
- | Inst::UDivMod64 { .. }
130
- | Inst::Flogr { .. }
131
- | Inst::CmpRR { .. }
132
- | Inst::CmpRX { .. }
133
- | Inst::CmpRSImm16 { .. }
134
- | Inst::CmpRSImm32 { .. }
135
- | Inst::CmpRUImm32 { .. }
136
- | Inst::CmpTrapRR { .. }
137
- | Inst::CmpTrapRSImm16 { .. }
138
- | Inst::CmpTrapRUImm16 { .. }
139
- | Inst::AtomicRmw { .. }
140
- | Inst::AtomicCas32 { .. }
141
- | Inst::AtomicCas64 { .. }
142
- | Inst::Fence
143
- | Inst::Load32 { .. }
144
- | Inst::Load32ZExt8 { .. }
145
- | Inst::Load32SExt8 { .. }
146
- | Inst::Load32ZExt16 { .. }
147
- | Inst::Load32SExt16 { .. }
148
- | Inst::Load64 { .. }
149
- | Inst::Load64ZExt8 { .. }
150
- | Inst::Load64SExt8 { .. }
151
- | Inst::Load64ZExt16 { .. }
152
- | Inst::Load64SExt16 { .. }
153
- | Inst::Load64ZExt32 { .. }
154
- | Inst::Load64SExt32 { .. }
155
- | Inst::LoadRev16 { .. }
156
- | Inst::LoadRev32 { .. }
157
- | Inst::LoadRev64 { .. }
158
- | Inst::Store8 { .. }
159
- | Inst::Store16 { .. }
160
- | Inst::Store32 { .. }
161
- | Inst::Store64 { .. }
162
- | Inst::StoreImm8 { .. }
163
- | Inst::StoreImm16 { .. }
164
- | Inst::StoreImm32SExt16 { .. }
165
- | Inst::StoreImm64SExt16 { .. }
166
- | Inst::StoreRev16 { .. }
167
- | Inst::StoreRev32 { .. }
168
- | Inst::StoreRev64 { .. }
169
- | Inst::Mvc { .. }
170
- | Inst::LoadMultiple64 { .. }
171
- | Inst::StoreMultiple64 { .. }
172
- | Inst::Mov32 { .. }
173
- | Inst::Mov64 { .. }
174
- | Inst::MovPReg { .. }
175
- | Inst::Mov32Imm { .. }
176
- | Inst::Mov32SImm16 { .. }
177
- | Inst::Mov64SImm16 { .. }
178
- | Inst::Mov64SImm32 { .. }
179
- | Inst::Mov64UImm16Shifted { .. }
180
- | Inst::Mov64UImm32Shifted { .. }
181
- | Inst::Insert64UImm16Shifted { .. }
182
- | Inst::Insert64UImm32Shifted { .. }
183
- | Inst::LoadAR { .. }
184
- | Inst::InsertAR { .. }
185
- | Inst::Extend { .. }
186
- | Inst::CMov32 { .. }
187
- | Inst::CMov64 { .. }
188
- | Inst::CMov32SImm16 { .. }
189
- | Inst::CMov64SImm16 { .. }
190
- | Inst::FpuMove32 { .. }
191
- | Inst::FpuMove64 { .. }
192
- | Inst::FpuCMov32 { .. }
193
- | Inst::FpuCMov64 { .. }
194
- | Inst::FpuRR { .. }
195
- | Inst::FpuRRR { .. }
196
- | Inst::FpuRRRR { .. }
197
- | Inst::FpuCmp32 { .. }
198
- | Inst::FpuCmp64 { .. }
199
- | Inst::LoadFpuConst32 { .. }
200
- | Inst::LoadFpuConst64 { .. }
201
- | Inst::VecRRR { .. }
202
- | Inst::VecRR { .. }
203
- | Inst::VecShiftRR { .. }
204
- | Inst::VecSelect { .. }
205
- | Inst::VecPermute { .. }
206
- | Inst::VecPermuteDWImm { .. }
207
- | Inst::VecIntCmp { .. }
208
- | Inst::VecIntCmpS { .. }
209
- | Inst::VecFloatCmp { .. }
210
- | Inst::VecFloatCmpS { .. }
211
- | Inst::VecInt128SCmpHi { .. }
212
- | Inst::VecInt128UCmpHi { .. }
213
- | Inst::VecLoad { .. }
214
- | Inst::VecStore { .. }
215
- | Inst::VecLoadReplicate { .. }
216
- | Inst::VecMov { .. }
217
- | Inst::VecCMov { .. }
218
- | Inst::MovToVec128 { .. }
219
- | Inst::VecLoadConst { .. }
220
- | Inst::VecLoadConstReplicate { .. }
221
- | Inst::VecImmByteMask { .. }
222
- | Inst::VecImmBitMask { .. }
223
- | Inst::VecImmReplicate { .. }
224
- | Inst::VecLoadLane { .. }
225
- | Inst::VecLoadLaneUndef { .. }
226
- | Inst::VecStoreLane { .. }
227
- | Inst::VecInsertLane { .. }
228
- | Inst::VecInsertLaneUndef { .. }
229
- | Inst::VecExtractLane { .. }
230
- | Inst::VecInsertLaneImm { .. }
231
- | Inst::VecReplicateLane { .. }
232
- | Inst::Call { .. }
233
- | Inst::CallInd { .. }
234
- | Inst::Args { .. }
235
- | Inst::Rets { .. }
236
- | Inst::Ret { .. }
237
- | Inst::Jump { .. }
238
- | Inst::CondBr { .. }
239
- | Inst::TrapIf { .. }
240
- | Inst::OneWayCondBr { .. }
241
- | Inst::IndirectBr { .. }
242
- | Inst::Debugtrap
243
- | Inst::Trap { .. }
244
- | Inst::JTSequence { .. }
245
- | Inst::LoadSymbolReloc { .. }
246
- | Inst::LoadAddr { .. }
247
- | Inst::Loop { .. }
248
- | Inst::CondBreak { .. }
249
- | Inst::Unwind { .. } => InstructionSet::Base,
250
-
251
- // These depend on the opcode
252
- Inst::AluRRR { alu_op, .. } => match alu_op {
253
- ALUOp::NotAnd32 | ALUOp::NotAnd64 => InstructionSet::MIE2,
254
- ALUOp::NotOrr32 | ALUOp::NotOrr64 => InstructionSet::MIE2,
255
- ALUOp::NotXor32 | ALUOp::NotXor64 => InstructionSet::MIE2,
256
- ALUOp::AndNot32 | ALUOp::AndNot64 => InstructionSet::MIE2,
257
- ALUOp::OrrNot32 | ALUOp::OrrNot64 => InstructionSet::MIE2,
258
- _ => InstructionSet::Base,
259
- },
260
- Inst::UnaryRR { op, .. } => match op {
261
- UnaryOp::PopcntReg => InstructionSet::MIE2,
262
- _ => InstructionSet::Base,
263
- },
264
- Inst::FpuRound { op, .. } => match op {
265
- FpuRoundOp::ToSInt32 | FpuRoundOp::FromSInt32 => InstructionSet::VXRS_EXT2,
266
- FpuRoundOp::ToUInt32 | FpuRoundOp::FromUInt32 => InstructionSet::VXRS_EXT2,
267
- FpuRoundOp::ToSInt32x4 | FpuRoundOp::FromSInt32x4 => InstructionSet::VXRS_EXT2,
268
- FpuRoundOp::ToUInt32x4 | FpuRoundOp::FromUInt32x4 => InstructionSet::VXRS_EXT2,
269
- _ => InstructionSet::Base,
270
- },
271
-
272
- // These are all part of VXRS_EXT2
273
- Inst::VecLoadRev { .. }
274
- | Inst::VecLoadByte16Rev { .. }
275
- | Inst::VecLoadByte32Rev { .. }
276
- | Inst::VecLoadByte64Rev { .. }
277
- | Inst::VecLoadElt16Rev { .. }
278
- | Inst::VecLoadElt32Rev { .. }
279
- | Inst::VecLoadElt64Rev { .. }
280
- | Inst::VecStoreRev { .. }
281
- | Inst::VecStoreByte16Rev { .. }
282
- | Inst::VecStoreByte32Rev { .. }
283
- | Inst::VecStoreByte64Rev { .. }
284
- | Inst::VecStoreElt16Rev { .. }
285
- | Inst::VecStoreElt32Rev { .. }
286
- | Inst::VecStoreElt64Rev { .. }
287
- | Inst::VecLoadReplicateRev { .. }
288
- | Inst::VecLoadLaneRev { .. }
289
- | Inst::VecLoadLaneRevUndef { .. }
290
- | Inst::VecStoreLaneRev { .. } => InstructionSet::VXRS_EXT2,
291
-
292
- Inst::DummyUse { .. } => InstructionSet::Base,
293
- }
294
- }
295
-
296
- /// Create a 128-bit move instruction.
297
- pub fn mov128(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
298
- assert!(to_reg.to_reg().class() == RegClass::Float);
299
- assert!(from_reg.class() == RegClass::Float);
300
- Inst::VecMov {
301
- rd: to_reg,
302
- rn: from_reg,
303
- }
304
- }
305
-
306
- /// Create a 64-bit move instruction.
307
- pub fn mov64(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
308
- assert!(to_reg.to_reg().class() == from_reg.class());
309
- if from_reg.class() == RegClass::Int {
310
- Inst::Mov64 {
311
- rd: to_reg,
312
- rm: from_reg,
313
- }
314
- } else {
315
- Inst::FpuMove64 {
316
- rd: to_reg,
317
- rn: from_reg,
318
- }
319
- }
320
- }
321
-
322
- /// Create a 32-bit move instruction.
323
- pub fn mov32(to_reg: Writable<Reg>, from_reg: Reg) -> Inst {
324
- if from_reg.class() == RegClass::Int {
325
- Inst::Mov32 {
326
- rd: to_reg,
327
- rm: from_reg,
328
- }
329
- } else {
330
- Inst::FpuMove32 {
331
- rd: to_reg,
332
- rn: from_reg,
333
- }
334
- }
335
- }
336
-
337
- /// Generic constructor for a load (zero-extending where appropriate).
338
- pub fn gen_load(into_reg: Writable<Reg>, mem: MemArg, ty: Type) -> Inst {
339
- match ty {
340
- types::I8 => Inst::Load64ZExt8 { rd: into_reg, mem },
341
- types::I16 => Inst::Load64ZExt16 { rd: into_reg, mem },
342
- types::I32 => Inst::Load64ZExt32 { rd: into_reg, mem },
343
- types::I64 | types::R64 => Inst::Load64 { rd: into_reg, mem },
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.is_vector() && ty.bits() == 128 => Inst::VecLoad { rd: into_reg, mem },
357
- types::I128 => Inst::VecLoad { rd: into_reg, mem },
358
- _ => unimplemented!("gen_load({})", ty),
359
- }
360
- }
361
-
362
- /// Generic constructor for a store.
363
- pub fn gen_store(mem: MemArg, from_reg: Reg, ty: Type) -> Inst {
364
- match ty {
365
- types::I8 => Inst::Store8 { rd: from_reg, mem },
366
- types::I16 => Inst::Store16 { rd: from_reg, mem },
367
- types::I32 => Inst::Store32 { rd: from_reg, mem },
368
- types::I64 | types::R64 => Inst::Store64 { rd: from_reg, mem },
369
- types::F32 => Inst::VecStoreLane {
370
- size: 32,
371
- rd: from_reg,
372
- mem,
373
- lane_imm: 0,
374
- },
375
- types::F64 => Inst::VecStoreLane {
376
- size: 64,
377
- rd: from_reg,
378
- mem,
379
- lane_imm: 0,
380
- },
381
- _ if ty.is_vector() && ty.bits() == 128 => Inst::VecStore { rd: from_reg, mem },
382
- types::I128 => Inst::VecStore { rd: from_reg, mem },
383
- _ => unimplemented!("gen_store({})", ty),
384
- }
385
- }
386
- }
387
-
388
- //=============================================================================
389
- // Instructions: get_regs
390
-
391
- fn memarg_operands(memarg: &mut MemArg, collector: &mut impl OperandVisitor) {
392
- match memarg {
393
- MemArg::BXD12 { base, index, .. } | MemArg::BXD20 { base, index, .. } => {
394
- collector.reg_use(base);
395
- collector.reg_use(index);
396
- }
397
- MemArg::Label { .. } | MemArg::Symbol { .. } => {}
398
- MemArg::RegOffset { reg, .. } => {
399
- collector.reg_use(reg);
400
- }
401
- MemArg::InitialSPOffset { .. } | MemArg::SlotOffset { .. } => {}
402
- }
403
- // mem_finalize might require %r1 to hold (part of) the address.
404
- // Conservatively assume this will always be necessary here.
405
- collector.reg_fixed_nonallocatable(gpr_preg(1));
406
- }
407
-
408
- fn s390x_get_operands(inst: &mut Inst, collector: &mut DenyReuseVisitor<impl OperandVisitor>) {
409
- match inst {
410
- Inst::AluRRR { rd, rn, rm, .. } => {
411
- collector.reg_def(rd);
412
- collector.reg_use(rn);
413
- collector.reg_use(rm);
414
- }
415
- Inst::AluRRSImm16 { rd, rn, .. } => {
416
- collector.reg_def(rd);
417
- collector.reg_use(rn);
418
- }
419
- Inst::AluRR { rd, ri, rm, .. } => {
420
- collector.reg_reuse_def(rd, 1);
421
- collector.reg_use(ri);
422
- collector.reg_use(rm);
423
- }
424
- Inst::AluRX { rd, ri, mem, .. } => {
425
- collector.reg_reuse_def(rd, 1);
426
- collector.reg_use(ri);
427
- memarg_operands(mem, collector);
428
- }
429
- Inst::AluRSImm16 { rd, ri, .. } => {
430
- collector.reg_reuse_def(rd, 1);
431
- collector.reg_use(ri);
432
- }
433
- Inst::AluRSImm32 { rd, ri, .. } => {
434
- collector.reg_reuse_def(rd, 1);
435
- collector.reg_use(ri);
436
- }
437
- Inst::AluRUImm32 { rd, ri, .. } => {
438
- collector.reg_reuse_def(rd, 1);
439
- collector.reg_use(ri);
440
- }
441
- Inst::AluRUImm16Shifted { rd, ri, .. } => {
442
- collector.reg_reuse_def(rd, 1);
443
- collector.reg_use(ri);
444
- }
445
- Inst::AluRUImm32Shifted { rd, ri, .. } => {
446
- collector.reg_reuse_def(rd, 1);
447
- collector.reg_use(ri);
448
- }
449
- Inst::SMulWide { rd, rn, rm } => {
450
- collector.reg_use(rn);
451
- collector.reg_use(rm);
452
- // FIXME: The pair is hard-coded as %r2/%r3 because regalloc cannot handle pairs. If
453
- // that changes, all the hard-coded uses of %r2/%r3 can be changed.
454
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
455
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
456
- }
457
- Inst::UMulWide { rd, ri, rn } => {
458
- collector.reg_use(rn);
459
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
460
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
461
- collector.reg_fixed_use(ri, gpr(3));
462
- }
463
- Inst::SDivMod32 { rd, ri, rn } | Inst::SDivMod64 { rd, ri, rn } => {
464
- collector.reg_use(rn);
465
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
466
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
467
- collector.reg_fixed_use(ri, gpr(3));
468
- }
469
- Inst::UDivMod32 { rd, ri, rn } | Inst::UDivMod64 { rd, ri, rn } => {
470
- collector.reg_use(rn);
471
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
472
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
473
- collector.reg_fixed_use(&mut ri.hi, gpr(2));
474
- collector.reg_fixed_use(&mut ri.lo, gpr(3));
475
- }
476
- Inst::Flogr { rd, rn } => {
477
- collector.reg_use(rn);
478
- collector.reg_fixed_def(&mut rd.hi, gpr(2));
479
- collector.reg_fixed_def(&mut rd.lo, gpr(3));
480
- }
481
- Inst::ShiftRR {
482
- rd, rn, shift_reg, ..
483
- } => {
484
- collector.reg_def(rd);
485
- collector.reg_use(rn);
486
- collector.reg_use(shift_reg);
487
- }
488
- Inst::RxSBG { rd, ri, rn, .. } => {
489
- collector.reg_reuse_def(rd, 1);
490
- collector.reg_use(ri);
491
- collector.reg_use(rn);
492
- }
493
- Inst::RxSBGTest { rd, rn, .. } => {
494
- collector.reg_use(rd);
495
- collector.reg_use(rn);
496
- }
497
- Inst::UnaryRR { rd, rn, .. } => {
498
- collector.reg_def(rd);
499
- collector.reg_use(rn);
500
- }
501
- Inst::CmpRR { rn, rm, .. } => {
502
- collector.reg_use(rn);
503
- collector.reg_use(rm);
504
- }
505
- Inst::CmpRX { rn, mem, .. } => {
506
- collector.reg_use(rn);
507
- memarg_operands(mem, collector);
508
- }
509
- Inst::CmpRSImm16 { rn, .. } => {
510
- collector.reg_use(rn);
511
- }
512
- Inst::CmpRSImm32 { rn, .. } => {
513
- collector.reg_use(rn);
514
- }
515
- Inst::CmpRUImm32 { rn, .. } => {
516
- collector.reg_use(rn);
517
- }
518
- Inst::CmpTrapRR { rn, rm, .. } => {
519
- collector.reg_use(rn);
520
- collector.reg_use(rm);
521
- }
522
- Inst::CmpTrapRSImm16 { rn, .. } => {
523
- collector.reg_use(rn);
524
- }
525
- Inst::CmpTrapRUImm16 { rn, .. } => {
526
- collector.reg_use(rn);
527
- }
528
- Inst::AtomicRmw { rd, rn, mem, .. } => {
529
- collector.reg_def(rd);
530
- collector.reg_use(rn);
531
- memarg_operands(mem, collector);
532
- }
533
- Inst::AtomicCas32 {
534
- rd, ri, rn, mem, ..
535
- }
536
- | Inst::AtomicCas64 {
537
- rd, ri, rn, mem, ..
538
- } => {
539
- collector.reg_reuse_def(rd, 1);
540
- collector.reg_use(ri);
541
- collector.reg_use(rn);
542
- memarg_operands(mem, collector);
543
- }
544
- Inst::Fence => {}
545
- Inst::Load32 { rd, mem, .. }
546
- | Inst::Load32ZExt8 { rd, mem, .. }
547
- | Inst::Load32SExt8 { rd, mem, .. }
548
- | Inst::Load32ZExt16 { rd, mem, .. }
549
- | Inst::Load32SExt16 { rd, mem, .. }
550
- | Inst::Load64 { rd, mem, .. }
551
- | Inst::Load64ZExt8 { rd, mem, .. }
552
- | Inst::Load64SExt8 { rd, mem, .. }
553
- | Inst::Load64ZExt16 { rd, mem, .. }
554
- | Inst::Load64SExt16 { rd, mem, .. }
555
- | Inst::Load64ZExt32 { rd, mem, .. }
556
- | Inst::Load64SExt32 { rd, mem, .. }
557
- | Inst::LoadRev16 { rd, mem, .. }
558
- | Inst::LoadRev32 { rd, mem, .. }
559
- | Inst::LoadRev64 { rd, mem, .. } => {
560
- collector.reg_def(rd);
561
- memarg_operands(mem, collector);
562
- }
563
- Inst::Store8 { rd, mem, .. }
564
- | Inst::Store16 { rd, mem, .. }
565
- | Inst::Store32 { rd, mem, .. }
566
- | Inst::Store64 { rd, mem, .. }
567
- | Inst::StoreRev16 { rd, mem, .. }
568
- | Inst::StoreRev32 { rd, mem, .. }
569
- | Inst::StoreRev64 { rd, mem, .. } => {
570
- collector.reg_use(rd);
571
- memarg_operands(mem, collector);
572
- }
573
- Inst::StoreImm8 { mem, .. }
574
- | Inst::StoreImm16 { mem, .. }
575
- | Inst::StoreImm32SExt16 { mem, .. }
576
- | Inst::StoreImm64SExt16 { mem, .. } => {
577
- memarg_operands(mem, collector);
578
- }
579
- Inst::Mvc { dst, src, .. } => {
580
- collector.reg_use(&mut dst.base);
581
- collector.reg_use(&mut src.base);
582
- }
583
- Inst::LoadMultiple64 { rt, rt2, mem, .. } => {
584
- memarg_operands(mem, collector);
585
- let first_regnum = rt.to_reg().to_real_reg().unwrap().hw_enc();
586
- let last_regnum = rt2.to_reg().to_real_reg().unwrap().hw_enc();
587
- for regnum in first_regnum..last_regnum + 1 {
588
- collector.reg_fixed_nonallocatable(gpr_preg(regnum));
589
- }
590
- }
591
- Inst::StoreMultiple64 { rt, rt2, mem, .. } => {
592
- memarg_operands(mem, collector);
593
- let first_regnum = rt.to_real_reg().unwrap().hw_enc();
594
- let last_regnum = rt2.to_real_reg().unwrap().hw_enc();
595
- for regnum in first_regnum..last_regnum + 1 {
596
- collector.reg_fixed_nonallocatable(gpr_preg(regnum));
597
- }
598
- }
599
- Inst::Mov64 { rd, rm } => {
600
- collector.reg_def(rd);
601
- collector.reg_use(rm);
602
- }
603
- Inst::MovPReg { rd, rm } => {
604
- debug_assert!([gpr_preg(0), gpr_preg(14), gpr_preg(15)].contains(rm));
605
- debug_assert!(rd.to_reg().is_virtual());
606
- collector.reg_def(rd);
607
- }
608
- Inst::Mov32 { rd, rm } => {
609
- collector.reg_def(rd);
610
- collector.reg_use(rm);
611
- }
612
- Inst::Mov32Imm { rd, .. }
613
- | Inst::Mov32SImm16 { rd, .. }
614
- | Inst::Mov64SImm16 { rd, .. }
615
- | Inst::Mov64SImm32 { rd, .. }
616
- | Inst::Mov64UImm16Shifted { rd, .. }
617
- | Inst::Mov64UImm32Shifted { rd, .. } => {
618
- collector.reg_def(rd);
619
- }
620
- Inst::CMov32 { rd, ri, rm, .. } | Inst::CMov64 { rd, ri, rm, .. } => {
621
- collector.reg_reuse_def(rd, 1);
622
- collector.reg_use(ri);
623
- collector.reg_use(rm);
624
- }
625
- Inst::CMov32SImm16 { rd, ri, .. } | Inst::CMov64SImm16 { rd, ri, .. } => {
626
- collector.reg_reuse_def(rd, 1);
627
- collector.reg_use(ri);
628
- }
629
- Inst::Insert64UImm16Shifted { rd, ri, .. } | Inst::Insert64UImm32Shifted { rd, ri, .. } => {
630
- collector.reg_reuse_def(rd, 1);
631
- collector.reg_use(ri);
632
- }
633
- Inst::LoadAR { rd, .. } => {
634
- collector.reg_def(rd);
635
- }
636
- Inst::InsertAR { rd, ri, .. } => {
637
- collector.reg_reuse_def(rd, 1);
638
- collector.reg_use(ri);
639
- }
640
- Inst::FpuMove32 { rd, rn } | Inst::FpuMove64 { rd, rn } => {
641
- collector.reg_def(rd);
642
- collector.reg_use(rn);
643
- }
644
- Inst::FpuCMov32 { rd, ri, rm, .. } | Inst::FpuCMov64 { rd, ri, rm, .. } => {
645
- collector.reg_reuse_def(rd, 1);
646
- collector.reg_use(ri);
647
- collector.reg_use(rm);
648
- }
649
- Inst::FpuRR { rd, rn, .. } => {
650
- collector.reg_def(rd);
651
- collector.reg_use(rn);
652
- }
653
- Inst::FpuRRR { rd, rn, rm, .. } => {
654
- collector.reg_def(rd);
655
- collector.reg_use(rn);
656
- collector.reg_use(rm);
657
- }
658
- Inst::FpuRRRR { rd, rn, rm, ra, .. } => {
659
- collector.reg_def(rd);
660
- collector.reg_use(rn);
661
- collector.reg_use(rm);
662
- collector.reg_use(ra);
663
- }
664
- Inst::FpuCmp32 { rn, rm } | Inst::FpuCmp64 { rn, rm } => {
665
- collector.reg_use(rn);
666
- collector.reg_use(rm);
667
- }
668
- Inst::LoadFpuConst32 { rd, .. } | Inst::LoadFpuConst64 { rd, .. } => {
669
- collector.reg_def(rd);
670
- collector.reg_fixed_nonallocatable(gpr_preg(1));
671
- }
672
- Inst::FpuRound { rd, rn, .. } => {
673
- collector.reg_def(rd);
674
- collector.reg_use(rn);
675
- }
676
- Inst::VecRRR { rd, rn, rm, .. } => {
677
- collector.reg_def(rd);
678
- collector.reg_use(rn);
679
- collector.reg_use(rm);
680
- }
681
- Inst::VecRR { rd, rn, .. } => {
682
- collector.reg_def(rd);
683
- collector.reg_use(rn);
684
- }
685
- Inst::VecShiftRR {
686
- rd, rn, shift_reg, ..
687
- } => {
688
- collector.reg_def(rd);
689
- collector.reg_use(rn);
690
- collector.reg_use(shift_reg);
691
- }
692
- Inst::VecSelect { rd, rn, rm, ra, .. } => {
693
- collector.reg_def(rd);
694
- collector.reg_use(rn);
695
- collector.reg_use(rm);
696
- collector.reg_use(ra);
697
- }
698
- Inst::VecPermute { rd, rn, rm, ra, .. } => {
699
- collector.reg_def(rd);
700
- collector.reg_use(rn);
701
- collector.reg_use(rm);
702
- collector.reg_use(ra);
703
- }
704
- Inst::VecPermuteDWImm { rd, rn, rm, .. } => {
705
- collector.reg_def(rd);
706
- collector.reg_use(rn);
707
- collector.reg_use(rm);
708
- }
709
- Inst::VecIntCmp { rd, rn, rm, .. } | Inst::VecIntCmpS { rd, rn, rm, .. } => {
710
- collector.reg_def(rd);
711
- collector.reg_use(rn);
712
- collector.reg_use(rm);
713
- }
714
- Inst::VecFloatCmp { rd, rn, rm, .. } | Inst::VecFloatCmpS { rd, rn, rm, .. } => {
715
- collector.reg_def(rd);
716
- collector.reg_use(rn);
717
- collector.reg_use(rm);
718
- }
719
- Inst::VecInt128SCmpHi { tmp, rn, rm, .. } | Inst::VecInt128UCmpHi { tmp, rn, rm, .. } => {
720
- collector.reg_def(tmp);
721
- collector.reg_use(rn);
722
- collector.reg_use(rm);
723
- }
724
- Inst::VecLoad { rd, mem, .. } => {
725
- collector.reg_def(rd);
726
- memarg_operands(mem, collector);
727
- }
728
- Inst::VecLoadRev { rd, mem, .. } => {
729
- collector.reg_def(rd);
730
- memarg_operands(mem, collector);
731
- }
732
- Inst::VecLoadByte16Rev { rd, mem, .. } => {
733
- collector.reg_def(rd);
734
- memarg_operands(mem, collector);
735
- }
736
- Inst::VecLoadByte32Rev { rd, mem, .. } => {
737
- collector.reg_def(rd);
738
- memarg_operands(mem, collector);
739
- }
740
- Inst::VecLoadByte64Rev { rd, mem, .. } => {
741
- collector.reg_def(rd);
742
- memarg_operands(mem, collector);
743
- }
744
- Inst::VecLoadElt16Rev { rd, mem, .. } => {
745
- collector.reg_def(rd);
746
- memarg_operands(mem, collector);
747
- }
748
- Inst::VecLoadElt32Rev { rd, mem, .. } => {
749
- collector.reg_def(rd);
750
- memarg_operands(mem, collector);
751
- }
752
- Inst::VecLoadElt64Rev { rd, mem, .. } => {
753
- collector.reg_def(rd);
754
- memarg_operands(mem, collector);
755
- }
756
- Inst::VecStore { rd, mem, .. } => {
757
- collector.reg_use(rd);
758
- memarg_operands(mem, collector);
759
- }
760
- Inst::VecStoreRev { rd, mem, .. } => {
761
- collector.reg_use(rd);
762
- memarg_operands(mem, collector);
763
- }
764
- Inst::VecStoreByte16Rev { rd, mem, .. } => {
765
- collector.reg_use(rd);
766
- memarg_operands(mem, collector);
767
- }
768
- Inst::VecStoreByte32Rev { rd, mem, .. } => {
769
- collector.reg_use(rd);
770
- memarg_operands(mem, collector);
771
- }
772
- Inst::VecStoreByte64Rev { rd, mem, .. } => {
773
- collector.reg_use(rd);
774
- memarg_operands(mem, collector);
775
- }
776
- Inst::VecStoreElt16Rev { rd, mem, .. } => {
777
- collector.reg_use(rd);
778
- memarg_operands(mem, collector);
779
- }
780
- Inst::VecStoreElt32Rev { rd, mem, .. } => {
781
- collector.reg_use(rd);
782
- memarg_operands(mem, collector);
783
- }
784
- Inst::VecStoreElt64Rev { rd, mem, .. } => {
785
- collector.reg_use(rd);
786
- memarg_operands(mem, collector);
787
- }
788
- Inst::VecLoadReplicate { rd, mem, .. } => {
789
- collector.reg_def(rd);
790
- memarg_operands(mem, collector);
791
- }
792
- Inst::VecLoadReplicateRev { rd, mem, .. } => {
793
- collector.reg_def(rd);
794
- memarg_operands(mem, collector);
795
- }
796
- Inst::VecMov { rd, rn } => {
797
- collector.reg_def(rd);
798
- collector.reg_use(rn);
799
- }
800
- Inst::VecCMov { rd, ri, rm, .. } => {
801
- collector.reg_reuse_def(rd, 1);
802
- collector.reg_use(ri);
803
- collector.reg_use(rm);
804
- }
805
- Inst::MovToVec128 { rd, rn, rm } => {
806
- collector.reg_def(rd);
807
- collector.reg_use(rn);
808
- collector.reg_use(rm);
809
- }
810
- Inst::VecLoadConst { rd, .. } | Inst::VecLoadConstReplicate { rd, .. } => {
811
- collector.reg_def(rd);
812
- collector.reg_fixed_nonallocatable(gpr_preg(1));
813
- }
814
- Inst::VecImmByteMask { rd, .. } => {
815
- collector.reg_def(rd);
816
- }
817
- Inst::VecImmBitMask { rd, .. } => {
818
- collector.reg_def(rd);
819
- }
820
- Inst::VecImmReplicate { rd, .. } => {
821
- collector.reg_def(rd);
822
- }
823
- Inst::VecLoadLane { rd, ri, mem, .. } => {
824
- collector.reg_reuse_def(rd, 1);
825
- collector.reg_use(ri);
826
- memarg_operands(mem, collector);
827
- }
828
- Inst::VecLoadLaneUndef { rd, mem, .. } => {
829
- collector.reg_def(rd);
830
- memarg_operands(mem, collector);
831
- }
832
- Inst::VecStoreLaneRev { rd, mem, .. } => {
833
- collector.reg_use(rd);
834
- memarg_operands(mem, collector);
835
- }
836
- Inst::VecLoadLaneRevUndef { rd, mem, .. } => {
837
- collector.reg_def(rd);
838
- memarg_operands(mem, collector);
839
- }
840
- Inst::VecStoreLane { rd, mem, .. } => {
841
- collector.reg_use(rd);
842
- memarg_operands(mem, collector);
843
- }
844
- Inst::VecLoadLaneRev { rd, ri, mem, .. } => {
845
- collector.reg_reuse_def(rd, 1);
846
- collector.reg_use(ri);
847
- memarg_operands(mem, collector);
848
- }
849
- Inst::VecInsertLane {
850
- rd,
851
- ri,
852
- rn,
853
- lane_reg,
854
- ..
855
- } => {
856
- collector.reg_reuse_def(rd, 1);
857
- collector.reg_use(ri);
858
- collector.reg_use(rn);
859
- collector.reg_use(lane_reg);
860
- }
861
- Inst::VecInsertLaneUndef {
862
- rd, rn, lane_reg, ..
863
- } => {
864
- collector.reg_def(rd);
865
- collector.reg_use(rn);
866
- collector.reg_use(lane_reg);
867
- }
868
- Inst::VecExtractLane {
869
- rd, rn, lane_reg, ..
870
- } => {
871
- collector.reg_def(rd);
872
- collector.reg_use(rn);
873
- collector.reg_use(lane_reg);
874
- }
875
- Inst::VecInsertLaneImm { rd, ri, .. } => {
876
- collector.reg_reuse_def(rd, 1);
877
- collector.reg_use(ri);
878
- }
879
- Inst::VecReplicateLane { rd, rn, .. } => {
880
- collector.reg_def(rd);
881
- collector.reg_use(rn);
882
- }
883
- Inst::Extend { rd, rn, .. } => {
884
- collector.reg_def(rd);
885
- collector.reg_use(rn);
886
- }
887
- Inst::Call { link, info } => {
888
- let CallInfo { uses, defs, .. } = &mut **info;
889
- for CallArgPair { vreg, preg } in uses {
890
- collector.reg_fixed_use(vreg, *preg);
891
- }
892
- for CallRetPair { vreg, preg } in defs {
893
- collector.reg_fixed_def(vreg, *preg);
894
- }
895
- let mut clobbers = info.clobbers.clone();
896
- clobbers.add(link.to_reg().to_real_reg().unwrap().into());
897
- collector.reg_clobbers(clobbers);
898
- }
899
- Inst::CallInd { link, info } => {
900
- let CallIndInfo { rn, uses, defs, .. } = &mut **info;
901
- collector.reg_use(rn);
902
- for CallArgPair { vreg, preg } in uses {
903
- collector.reg_fixed_use(vreg, *preg);
904
- }
905
- for CallRetPair { vreg, preg } in defs {
906
- collector.reg_fixed_def(vreg, *preg);
907
- }
908
- let mut clobbers = info.clobbers.clone();
909
- clobbers.add(link.to_reg().to_real_reg().unwrap().into());
910
- collector.reg_clobbers(clobbers);
911
- }
912
- Inst::Args { args } => {
913
- for ArgPair { vreg, preg } in args {
914
- collector.reg_fixed_def(vreg, *preg);
915
- }
916
- }
917
- Inst::Rets { rets } => {
918
- for RetPair { vreg, preg } in rets {
919
- collector.reg_fixed_use(vreg, *preg);
920
- }
921
- }
922
- Inst::Ret { .. } => {
923
- // NOTE: we explicitly don't mark the link register as used here, as the use is only in
924
- // the epilog where callee-save registers are restored.
925
- }
926
- Inst::Jump { .. } => {}
927
- Inst::IndirectBr { rn, .. } => {
928
- collector.reg_use(rn);
929
- }
930
- Inst::CondBr { .. } | Inst::OneWayCondBr { .. } => {}
931
- Inst::Nop0 | Inst::Nop2 => {}
932
- Inst::Debugtrap => {}
933
- Inst::Trap { .. } => {}
934
- Inst::TrapIf { .. } => {}
935
- Inst::JTSequence { ridx, .. } => {
936
- collector.reg_use(ridx);
937
- collector.reg_fixed_nonallocatable(gpr_preg(1));
938
- }
939
- Inst::LoadSymbolReloc { rd, .. } => {
940
- collector.reg_def(rd);
941
- collector.reg_fixed_nonallocatable(gpr_preg(1));
942
- }
943
- Inst::LoadAddr { rd, mem } => {
944
- collector.reg_def(rd);
945
- memarg_operands(mem, collector);
946
- }
947
- Inst::Loop { body, .. } => {
948
- // `reuse_def` constraints can't be permitted in a Loop instruction because the operand
949
- // index will always be relative to the Loop instruction, not the individual
950
- // instruction in the loop body. However, fixed-nonallocatable registers used with
951
- // instructions that would have emitted `reuse_def` constraints are fine.
952
- let mut collector = DenyReuseVisitor {
953
- inner: collector.inner,
954
- deny_reuse: true,
955
- };
956
- for inst in body {
957
- s390x_get_operands(inst, &mut collector);
958
- }
959
- }
960
- Inst::CondBreak { .. } => {}
961
- Inst::Unwind { .. } => {}
962
- Inst::DummyUse { reg } => {
963
- collector.reg_use(reg);
964
- }
965
- }
966
- }
967
-
968
- struct DenyReuseVisitor<'a, T> {
969
- inner: &'a mut T,
970
- deny_reuse: bool,
971
- }
972
-
973
- impl<T: OperandVisitor> OperandVisitor for DenyReuseVisitor<'_, T> {
974
- fn add_operand(
975
- &mut self,
976
- reg: &mut Reg,
977
- constraint: regalloc2::OperandConstraint,
978
- kind: regalloc2::OperandKind,
979
- pos: regalloc2::OperandPos,
980
- ) {
981
- debug_assert!(
982
- !self.deny_reuse || !matches!(constraint, regalloc2::OperandConstraint::Reuse(_))
983
- );
984
- self.inner.add_operand(reg, constraint, kind, pos);
985
- }
986
-
987
- fn debug_assert_is_allocatable_preg(&self, reg: regalloc2::PReg, expected: bool) {
988
- self.inner.debug_assert_is_allocatable_preg(reg, expected);
989
- }
990
-
991
- fn reg_clobbers(&mut self, regs: PRegSet) {
992
- self.inner.reg_clobbers(regs);
993
- }
994
- }
995
-
996
- //=============================================================================
997
- // Instructions: misc functions and external interface
998
-
999
- impl MachInst for Inst {
1000
- type ABIMachineSpec = S390xMachineDeps;
1001
- type LabelUse = LabelUse;
1002
- const TRAP_OPCODE: &'static [u8] = &[0, 0];
1003
-
1004
- fn get_operands(&mut self, collector: &mut impl OperandVisitor) {
1005
- s390x_get_operands(
1006
- self,
1007
- &mut DenyReuseVisitor {
1008
- inner: collector,
1009
- deny_reuse: false,
1010
- },
1011
- );
1012
- }
1013
-
1014
- fn is_move(&self) -> Option<(Writable<Reg>, Reg)> {
1015
- match self {
1016
- &Inst::Mov32 { rd, rm } => Some((rd, rm)),
1017
- &Inst::Mov64 { rd, rm } => Some((rd, rm)),
1018
- &Inst::FpuMove32 { rd, rn } => Some((rd, rn)),
1019
- &Inst::FpuMove64 { rd, rn } => Some((rd, rn)),
1020
- &Inst::VecMov { rd, rn } => Some((rd, rn)),
1021
- _ => None,
1022
- }
1023
- }
1024
-
1025
- fn is_included_in_clobbers(&self) -> bool {
1026
- // We exclude call instructions from the clobber-set when they are calls
1027
- // from caller to callee with the same ABI. Such calls cannot possibly
1028
- // force any new registers to be saved in the prologue, because anything
1029
- // that the callee clobbers, the caller is also allowed to clobber. This
1030
- // both saves work and enables us to more precisely follow the
1031
- // half-caller-save, half-callee-save SysV ABI for some vector
1032
- // registers.
1033
- match self {
1034
- &Inst::Args { .. } => false,
1035
- &Inst::Call { ref info, .. } => info.caller_callconv != info.callee_callconv,
1036
- &Inst::CallInd { ref info, .. } => info.caller_callconv != info.callee_callconv,
1037
- _ => true,
1038
- }
1039
- }
1040
-
1041
- fn is_trap(&self) -> bool {
1042
- match self {
1043
- Self::Trap { .. } => true,
1044
- _ => false,
1045
- }
1046
- }
1047
-
1048
- fn is_args(&self) -> bool {
1049
- match self {
1050
- Self::Args { .. } => true,
1051
- _ => false,
1052
- }
1053
- }
1054
-
1055
- fn is_term(&self) -> MachTerminator {
1056
- match self {
1057
- &Inst::Rets { .. } => MachTerminator::Ret,
1058
- &Inst::Jump { .. } => MachTerminator::Uncond,
1059
- &Inst::CondBr { .. } => MachTerminator::Cond,
1060
- &Inst::OneWayCondBr { .. } => {
1061
- // Explicitly invisible to CFG processing.
1062
- MachTerminator::None
1063
- }
1064
- &Inst::IndirectBr { .. } => MachTerminator::Indirect,
1065
- &Inst::JTSequence { .. } => MachTerminator::Indirect,
1066
- _ => MachTerminator::None,
1067
- }
1068
- }
1069
-
1070
- fn is_mem_access(&self) -> bool {
1071
- panic!("TODO FILL ME OUT")
1072
- }
1073
-
1074
- fn is_safepoint(&self) -> bool {
1075
- match self {
1076
- &Inst::Call { .. }
1077
- | &Inst::CallInd { .. }
1078
- | &Inst::Trap { .. }
1079
- | Inst::TrapIf { .. }
1080
- | &Inst::CmpTrapRR { .. }
1081
- | &Inst::CmpTrapRSImm16 { .. }
1082
- | &Inst::CmpTrapRUImm16 { .. } => true,
1083
- _ => false,
1084
- }
1085
- }
1086
-
1087
- fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Inst {
1088
- assert!(ty.bits() <= 128);
1089
- if ty.bits() <= 32 {
1090
- Inst::mov32(to_reg, from_reg)
1091
- } else if ty.bits() <= 64 {
1092
- Inst::mov64(to_reg, from_reg)
1093
- } else {
1094
- Inst::mov128(to_reg, from_reg)
1095
- }
1096
- }
1097
-
1098
- fn gen_nop(preferred_size: usize) -> Inst {
1099
- if preferred_size == 0 {
1100
- Inst::Nop0
1101
- } else {
1102
- // We can't give a NOP (or any insn) < 2 bytes.
1103
- assert!(preferred_size >= 2);
1104
- Inst::Nop2
1105
- }
1106
- }
1107
-
1108
- fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
1109
- match ty {
1110
- types::I8 => Ok((&[RegClass::Int], &[types::I8])),
1111
- types::I16 => Ok((&[RegClass::Int], &[types::I16])),
1112
- types::I32 => Ok((&[RegClass::Int], &[types::I32])),
1113
- types::I64 => Ok((&[RegClass::Int], &[types::I64])),
1114
- types::R32 => panic!("32-bit reftype pointer should never be seen on s390x"),
1115
- types::R64 => Ok((&[RegClass::Int], &[types::R64])),
1116
- types::F32 => Ok((&[RegClass::Float], &[types::F32])),
1117
- types::F64 => Ok((&[RegClass::Float], &[types::F64])),
1118
- types::I128 => Ok((&[RegClass::Float], &[types::I128])),
1119
- _ if ty.is_vector() && ty.bits() == 128 => Ok((&[RegClass::Float], &[types::I8X16])),
1120
- _ => Err(CodegenError::Unsupported(format!(
1121
- "Unexpected SSA-value type: {}",
1122
- ty
1123
- ))),
1124
- }
1125
- }
1126
-
1127
- fn canonical_type_for_rc(rc: RegClass) -> Type {
1128
- match rc {
1129
- RegClass::Int => types::I64,
1130
- RegClass::Float => types::I8X16,
1131
- RegClass::Vector => unreachable!(),
1132
- }
1133
- }
1134
-
1135
- fn gen_jump(target: MachLabel) -> Inst {
1136
- Inst::Jump { dest: target }
1137
- }
1138
-
1139
- fn worst_case_size() -> CodeOffset {
1140
- // The maximum size, in bytes, of any `Inst`'s emitted code. We have at least one case of
1141
- // an 8-instruction sequence (saturating int-to-float conversions) with three embedded
1142
- // 64-bit f64 constants.
1143
- //
1144
- // Note that inline jump-tables handle island/pool insertion separately, so we do not need
1145
- // to account for them here (otherwise the worst case would be 2^31 * 4, clearly not
1146
- // feasible for other reasons).
1147
- 44
1148
- }
1149
-
1150
- fn ref_type_regclass(_: &settings::Flags) -> RegClass {
1151
- RegClass::Int
1152
- }
1153
-
1154
- fn gen_dummy_use(reg: Reg) -> Inst {
1155
- Inst::DummyUse { reg }
1156
- }
1157
-
1158
- fn function_alignment() -> FunctionAlignment {
1159
- FunctionAlignment {
1160
- minimum: 4,
1161
- preferred: 4,
1162
- }
1163
- }
1164
- }
1165
-
1166
- //=============================================================================
1167
- // Pretty-printing of instructions.
1168
-
1169
- fn mem_finalize_for_show(mem: &MemArg, state: &EmitState, mi: MemInstType) -> (String, MemArg) {
1170
- let (mem_insts, mem) = mem_finalize(mem, state, mi);
1171
- let mut mem_str = mem_insts
1172
- .into_iter()
1173
- .map(|inst| inst.print_with_state(&mut EmitState::default()))
1174
- .collect::<Vec<_>>()
1175
- .join(" ; ");
1176
- if !mem_str.is_empty() {
1177
- mem_str += " ; ";
1178
- }
1179
-
1180
- (mem_str, mem)
1181
- }
1182
-
1183
- impl Inst {
1184
- fn print_with_state(&self, state: &mut EmitState) -> String {
1185
- match self {
1186
- &Inst::Nop0 => "nop-zero-len".to_string(),
1187
- &Inst::Nop2 => "nop".to_string(),
1188
- &Inst::AluRRR { alu_op, rd, rn, rm } => {
1189
- let (op, have_rr) = match alu_op {
1190
- ALUOp::Add32 => ("ark", true),
1191
- ALUOp::Add64 => ("agrk", true),
1192
- ALUOp::AddLogical32 => ("alrk", true),
1193
- ALUOp::AddLogical64 => ("algrk", true),
1194
- ALUOp::Sub32 => ("srk", true),
1195
- ALUOp::Sub64 => ("sgrk", true),
1196
- ALUOp::SubLogical32 => ("slrk", true),
1197
- ALUOp::SubLogical64 => ("slgrk", true),
1198
- ALUOp::Mul32 => ("msrkc", true),
1199
- ALUOp::Mul64 => ("msgrkc", true),
1200
- ALUOp::And32 => ("nrk", true),
1201
- ALUOp::And64 => ("ngrk", true),
1202
- ALUOp::Orr32 => ("ork", true),
1203
- ALUOp::Orr64 => ("ogrk", true),
1204
- ALUOp::Xor32 => ("xrk", true),
1205
- ALUOp::Xor64 => ("xgrk", true),
1206
- ALUOp::NotAnd32 => ("nnrk", false),
1207
- ALUOp::NotAnd64 => ("nngrk", false),
1208
- ALUOp::NotOrr32 => ("nork", false),
1209
- ALUOp::NotOrr64 => ("nogrk", false),
1210
- ALUOp::NotXor32 => ("nxrk", false),
1211
- ALUOp::NotXor64 => ("nxgrk", false),
1212
- ALUOp::AndNot32 => ("ncrk", false),
1213
- ALUOp::AndNot64 => ("ncgrk", false),
1214
- ALUOp::OrrNot32 => ("ocrk", false),
1215
- ALUOp::OrrNot64 => ("ocgrk", false),
1216
- _ => unreachable!(),
1217
- };
1218
- if have_rr && rd.to_reg() == rn {
1219
- let inst = Inst::AluRR {
1220
- alu_op,
1221
- rd,
1222
- ri: rd.to_reg(),
1223
- rm,
1224
- };
1225
- return inst.print_with_state(state);
1226
- }
1227
- let rd = pretty_print_reg(rd.to_reg());
1228
- let rn = pretty_print_reg(rn);
1229
- let rm = pretty_print_reg(rm);
1230
- format!("{} {}, {}, {}", op, rd, rn, rm)
1231
- }
1232
- &Inst::AluRRSImm16 {
1233
- alu_op,
1234
- rd,
1235
- rn,
1236
- imm,
1237
- } => {
1238
- if rd.to_reg() == rn {
1239
- let inst = Inst::AluRSImm16 {
1240
- alu_op,
1241
- rd,
1242
- ri: rd.to_reg(),
1243
- imm,
1244
- };
1245
- return inst.print_with_state(state);
1246
- }
1247
- let op = match alu_op {
1248
- ALUOp::Add32 => "ahik",
1249
- ALUOp::Add64 => "aghik",
1250
- _ => unreachable!(),
1251
- };
1252
- let rd = pretty_print_reg(rd.to_reg());
1253
- let rn = pretty_print_reg(rn);
1254
- format!("{} {}, {}, {}", op, rd, rn, imm)
1255
- }
1256
- &Inst::AluRR { alu_op, rd, ri, rm } => {
1257
- let op = match alu_op {
1258
- ALUOp::Add32 => "ar",
1259
- ALUOp::Add64 => "agr",
1260
- ALUOp::Add64Ext32 => "agfr",
1261
- ALUOp::AddLogical32 => "alr",
1262
- ALUOp::AddLogical64 => "algr",
1263
- ALUOp::AddLogical64Ext32 => "algfr",
1264
- ALUOp::Sub32 => "sr",
1265
- ALUOp::Sub64 => "sgr",
1266
- ALUOp::Sub64Ext32 => "sgfr",
1267
- ALUOp::SubLogical32 => "slr",
1268
- ALUOp::SubLogical64 => "slgr",
1269
- ALUOp::SubLogical64Ext32 => "slgfr",
1270
- ALUOp::Mul32 => "msr",
1271
- ALUOp::Mul64 => "msgr",
1272
- ALUOp::Mul64Ext32 => "msgfr",
1273
- ALUOp::And32 => "nr",
1274
- ALUOp::And64 => "ngr",
1275
- ALUOp::Orr32 => "or",
1276
- ALUOp::Orr64 => "ogr",
1277
- ALUOp::Xor32 => "xr",
1278
- ALUOp::Xor64 => "xgr",
1279
- _ => unreachable!(),
1280
- };
1281
- let rd = pretty_print_reg_mod(rd, ri);
1282
- let rm = pretty_print_reg(rm);
1283
- format!("{} {}, {}", op, rd, rm)
1284
- }
1285
- &Inst::AluRX {
1286
- alu_op,
1287
- rd,
1288
- ri,
1289
- ref mem,
1290
- } => {
1291
- let (opcode_rx, opcode_rxy) = match alu_op {
1292
- ALUOp::Add32 => (Some("a"), Some("ay")),
1293
- ALUOp::Add32Ext16 => (Some("ah"), Some("ahy")),
1294
- ALUOp::Add64 => (None, Some("ag")),
1295
- ALUOp::Add64Ext16 => (None, Some("agh")),
1296
- ALUOp::Add64Ext32 => (None, Some("agf")),
1297
- ALUOp::AddLogical32 => (Some("al"), Some("aly")),
1298
- ALUOp::AddLogical64 => (None, Some("alg")),
1299
- ALUOp::AddLogical64Ext32 => (None, Some("algf")),
1300
- ALUOp::Sub32 => (Some("s"), Some("sy")),
1301
- ALUOp::Sub32Ext16 => (Some("sh"), Some("shy")),
1302
- ALUOp::Sub64 => (None, Some("sg")),
1303
- ALUOp::Sub64Ext16 => (None, Some("sgh")),
1304
- ALUOp::Sub64Ext32 => (None, Some("sgf")),
1305
- ALUOp::SubLogical32 => (Some("sl"), Some("sly")),
1306
- ALUOp::SubLogical64 => (None, Some("slg")),
1307
- ALUOp::SubLogical64Ext32 => (None, Some("slgf")),
1308
- ALUOp::Mul32 => (Some("ms"), Some("msy")),
1309
- ALUOp::Mul32Ext16 => (Some("mh"), Some("mhy")),
1310
- ALUOp::Mul64 => (None, Some("msg")),
1311
- ALUOp::Mul64Ext16 => (None, Some("mgh")),
1312
- ALUOp::Mul64Ext32 => (None, Some("msgf")),
1313
- ALUOp::And32 => (Some("n"), Some("ny")),
1314
- ALUOp::And64 => (None, Some("ng")),
1315
- ALUOp::Orr32 => (Some("o"), Some("oy")),
1316
- ALUOp::Orr64 => (None, Some("og")),
1317
- ALUOp::Xor32 => (Some("x"), Some("xy")),
1318
- ALUOp::Xor64 => (None, Some("xg")),
1319
- _ => unreachable!(),
1320
- };
1321
-
1322
- let rd = pretty_print_reg_mod(rd, ri);
1323
- let mem = mem.clone();
1324
- let (mem_str, mem) = mem_finalize_for_show(
1325
- &mem,
1326
- state,
1327
- MemInstType {
1328
- have_d12: opcode_rx.is_some(),
1329
- have_d20: opcode_rxy.is_some(),
1330
- have_pcrel: false,
1331
- have_unaligned_pcrel: false,
1332
- have_index: true,
1333
- },
1334
- );
1335
- let op = match &mem {
1336
- &MemArg::BXD12 { .. } => opcode_rx,
1337
- &MemArg::BXD20 { .. } => opcode_rxy,
1338
- _ => unreachable!(),
1339
- };
1340
- let mem = mem.pretty_print_default();
1341
-
1342
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1343
- }
1344
- &Inst::AluRSImm16 {
1345
- alu_op,
1346
- rd,
1347
- ri,
1348
- imm,
1349
- } => {
1350
- let op = match alu_op {
1351
- ALUOp::Add32 => "ahi",
1352
- ALUOp::Add64 => "aghi",
1353
- ALUOp::Mul32 => "mhi",
1354
- ALUOp::Mul64 => "mghi",
1355
- _ => unreachable!(),
1356
- };
1357
- let rd = pretty_print_reg_mod(rd, ri);
1358
- format!("{} {}, {}", op, rd, imm)
1359
- }
1360
- &Inst::AluRSImm32 {
1361
- alu_op,
1362
- rd,
1363
- ri,
1364
- imm,
1365
- } => {
1366
- let op = match alu_op {
1367
- ALUOp::Add32 => "afi",
1368
- ALUOp::Add64 => "agfi",
1369
- ALUOp::Mul32 => "msfi",
1370
- ALUOp::Mul64 => "msgfi",
1371
- _ => unreachable!(),
1372
- };
1373
- let rd = pretty_print_reg_mod(rd, ri);
1374
- format!("{} {}, {}", op, rd, imm)
1375
- }
1376
- &Inst::AluRUImm32 {
1377
- alu_op,
1378
- rd,
1379
- ri,
1380
- imm,
1381
- } => {
1382
- let op = match alu_op {
1383
- ALUOp::AddLogical32 => "alfi",
1384
- ALUOp::AddLogical64 => "algfi",
1385
- ALUOp::SubLogical32 => "slfi",
1386
- ALUOp::SubLogical64 => "slgfi",
1387
- _ => unreachable!(),
1388
- };
1389
- let rd = pretty_print_reg_mod(rd, ri);
1390
- format!("{} {}, {}", op, rd, imm)
1391
- }
1392
- &Inst::AluRUImm16Shifted {
1393
- alu_op,
1394
- rd,
1395
- ri,
1396
- imm,
1397
- } => {
1398
- let op = match (alu_op, imm.shift) {
1399
- (ALUOp::And32, 0) => "nill",
1400
- (ALUOp::And32, 1) => "nilh",
1401
- (ALUOp::And64, 0) => "nill",
1402
- (ALUOp::And64, 1) => "nilh",
1403
- (ALUOp::And64, 2) => "nihl",
1404
- (ALUOp::And64, 3) => "nihh",
1405
- (ALUOp::Orr32, 0) => "oill",
1406
- (ALUOp::Orr32, 1) => "oilh",
1407
- (ALUOp::Orr64, 0) => "oill",
1408
- (ALUOp::Orr64, 1) => "oilh",
1409
- (ALUOp::Orr64, 2) => "oihl",
1410
- (ALUOp::Orr64, 3) => "oihh",
1411
- _ => unreachable!(),
1412
- };
1413
- let rd = pretty_print_reg_mod(rd, ri);
1414
- format!("{} {}, {}", op, rd, imm.bits)
1415
- }
1416
- &Inst::AluRUImm32Shifted {
1417
- alu_op,
1418
- rd,
1419
- ri,
1420
- imm,
1421
- } => {
1422
- let op = match (alu_op, imm.shift) {
1423
- (ALUOp::And32, 0) => "nilf",
1424
- (ALUOp::And64, 0) => "nilf",
1425
- (ALUOp::And64, 1) => "nihf",
1426
- (ALUOp::Orr32, 0) => "oilf",
1427
- (ALUOp::Orr64, 0) => "oilf",
1428
- (ALUOp::Orr64, 1) => "oihf",
1429
- (ALUOp::Xor32, 0) => "xilf",
1430
- (ALUOp::Xor64, 0) => "xilf",
1431
- (ALUOp::Xor64, 1) => "xihf",
1432
- _ => unreachable!(),
1433
- };
1434
- let rd = pretty_print_reg_mod(rd, ri);
1435
- format!("{} {}, {}", op, rd, imm.bits)
1436
- }
1437
- &Inst::SMulWide { rd, rn, rm } => {
1438
- let op = "mgrk";
1439
- let rn = pretty_print_reg(rn);
1440
- let rm = pretty_print_reg(rm);
1441
- let rd = pretty_print_regpair(rd.to_regpair());
1442
- format!("{} {}, {}, {}", op, rd, rn, rm)
1443
- }
1444
- &Inst::UMulWide { rd, ri, rn } => {
1445
- let op = "mlgr";
1446
- let rn = pretty_print_reg(rn);
1447
- let rd = pretty_print_regpair_mod_lo(rd, ri);
1448
- format!("{} {}, {}", op, rd, rn)
1449
- }
1450
- &Inst::SDivMod32 { rd, ri, rn } => {
1451
- let op = "dsgfr";
1452
- let rn = pretty_print_reg(rn);
1453
- let rd = pretty_print_regpair_mod_lo(rd, ri);
1454
- format!("{} {}, {}", op, rd, rn)
1455
- }
1456
- &Inst::SDivMod64 { rd, ri, rn } => {
1457
- let op = "dsgr";
1458
- let rn = pretty_print_reg(rn);
1459
- let rd = pretty_print_regpair_mod_lo(rd, ri);
1460
- format!("{} {}, {}", op, rd, rn)
1461
- }
1462
- &Inst::UDivMod32 { rd, ri, rn } => {
1463
- let op = "dlr";
1464
- let rn = pretty_print_reg(rn);
1465
- let rd = pretty_print_regpair_mod(rd, ri);
1466
- format!("{} {}, {}", op, rd, rn)
1467
- }
1468
- &Inst::UDivMod64 { rd, ri, rn } => {
1469
- let op = "dlgr";
1470
- let rn = pretty_print_reg(rn);
1471
- let rd = pretty_print_regpair_mod(rd, ri);
1472
- format!("{} {}, {}", op, rd, rn)
1473
- }
1474
- &Inst::Flogr { rd, rn } => {
1475
- let op = "flogr";
1476
- let rn = pretty_print_reg(rn);
1477
- let rd = pretty_print_regpair(rd.to_regpair());
1478
- format!("{} {}, {}", op, rd, rn)
1479
- }
1480
- &Inst::ShiftRR {
1481
- shift_op,
1482
- rd,
1483
- rn,
1484
- shift_imm,
1485
- shift_reg,
1486
- } => {
1487
- let op = match shift_op {
1488
- ShiftOp::RotL32 => "rll",
1489
- ShiftOp::RotL64 => "rllg",
1490
- ShiftOp::LShL32 => "sllk",
1491
- ShiftOp::LShL64 => "sllg",
1492
- ShiftOp::LShR32 => "srlk",
1493
- ShiftOp::LShR64 => "srlg",
1494
- ShiftOp::AShR32 => "srak",
1495
- ShiftOp::AShR64 => "srag",
1496
- };
1497
- let rd = pretty_print_reg(rd.to_reg());
1498
- let rn = pretty_print_reg(rn);
1499
- let shift_reg = if shift_reg != zero_reg() {
1500
- format!("({})", pretty_print_reg(shift_reg))
1501
- } else {
1502
- "".to_string()
1503
- };
1504
- format!("{} {}, {}, {}{}", op, rd, rn, shift_imm, shift_reg)
1505
- }
1506
- &Inst::RxSBG {
1507
- op,
1508
- rd,
1509
- ri,
1510
- rn,
1511
- start_bit,
1512
- end_bit,
1513
- rotate_amt,
1514
- } => {
1515
- let op = match op {
1516
- RxSBGOp::Insert => "risbgn",
1517
- RxSBGOp::And => "rnsbg",
1518
- RxSBGOp::Or => "rosbg",
1519
- RxSBGOp::Xor => "rxsbg",
1520
- };
1521
- let rd = pretty_print_reg_mod(rd, ri);
1522
- let rn = pretty_print_reg(rn);
1523
- format!(
1524
- "{} {}, {}, {}, {}, {}",
1525
- op,
1526
- rd,
1527
- rn,
1528
- start_bit,
1529
- end_bit,
1530
- (rotate_amt as u8) & 63
1531
- )
1532
- }
1533
- &Inst::RxSBGTest {
1534
- op,
1535
- rd,
1536
- rn,
1537
- start_bit,
1538
- end_bit,
1539
- rotate_amt,
1540
- } => {
1541
- let op = match op {
1542
- RxSBGOp::And => "rnsbg",
1543
- RxSBGOp::Or => "rosbg",
1544
- RxSBGOp::Xor => "rxsbg",
1545
- _ => unreachable!(),
1546
- };
1547
- let rd = pretty_print_reg(rd);
1548
- let rn = pretty_print_reg(rn);
1549
- format!(
1550
- "{} {}, {}, {}, {}, {}",
1551
- op,
1552
- rd,
1553
- rn,
1554
- start_bit | 0x80,
1555
- end_bit,
1556
- (rotate_amt as u8) & 63
1557
- )
1558
- }
1559
- &Inst::UnaryRR { op, rd, rn } => {
1560
- let (op, extra) = match op {
1561
- UnaryOp::Abs32 => ("lpr", ""),
1562
- UnaryOp::Abs64 => ("lpgr", ""),
1563
- UnaryOp::Abs64Ext32 => ("lpgfr", ""),
1564
- UnaryOp::Neg32 => ("lcr", ""),
1565
- UnaryOp::Neg64 => ("lcgr", ""),
1566
- UnaryOp::Neg64Ext32 => ("lcgfr", ""),
1567
- UnaryOp::PopcntByte => ("popcnt", ""),
1568
- UnaryOp::PopcntReg => ("popcnt", ", 8"),
1569
- UnaryOp::BSwap32 => ("lrvr", ""),
1570
- UnaryOp::BSwap64 => ("lrvgr", ""),
1571
- };
1572
- let rd = pretty_print_reg(rd.to_reg());
1573
- let rn = pretty_print_reg(rn);
1574
- format!("{} {}, {}{}", op, rd, rn, extra)
1575
- }
1576
- &Inst::CmpRR { op, rn, rm } => {
1577
- let op = match op {
1578
- CmpOp::CmpS32 => "cr",
1579
- CmpOp::CmpS64 => "cgr",
1580
- CmpOp::CmpS64Ext32 => "cgfr",
1581
- CmpOp::CmpL32 => "clr",
1582
- CmpOp::CmpL64 => "clgr",
1583
- CmpOp::CmpL64Ext32 => "clgfr",
1584
- _ => unreachable!(),
1585
- };
1586
- let rn = pretty_print_reg(rn);
1587
- let rm = pretty_print_reg(rm);
1588
- format!("{} {}, {}", op, rn, rm)
1589
- }
1590
- &Inst::CmpRX { op, rn, ref mem } => {
1591
- let (opcode_rx, opcode_rxy, opcode_ril) = match op {
1592
- CmpOp::CmpS32 => (Some("c"), Some("cy"), Some("crl")),
1593
- CmpOp::CmpS32Ext16 => (Some("ch"), Some("chy"), Some("chrl")),
1594
- CmpOp::CmpS64 => (None, Some("cg"), Some("cgrl")),
1595
- CmpOp::CmpS64Ext16 => (None, Some("cgh"), Some("cghrl")),
1596
- CmpOp::CmpS64Ext32 => (None, Some("cgf"), Some("cgfrl")),
1597
- CmpOp::CmpL32 => (Some("cl"), Some("cly"), Some("clrl")),
1598
- CmpOp::CmpL32Ext16 => (None, None, Some("clhrl")),
1599
- CmpOp::CmpL64 => (None, Some("clg"), Some("clgrl")),
1600
- CmpOp::CmpL64Ext16 => (None, None, Some("clghrl")),
1601
- CmpOp::CmpL64Ext32 => (None, Some("clgf"), Some("clgfrl")),
1602
- };
1603
-
1604
- let rn = pretty_print_reg(rn);
1605
- let mem = mem.clone();
1606
- let (mem_str, mem) = mem_finalize_for_show(
1607
- &mem,
1608
- state,
1609
- MemInstType {
1610
- have_d12: opcode_rx.is_some(),
1611
- have_d20: opcode_rxy.is_some(),
1612
- have_pcrel: opcode_ril.is_some(),
1613
- have_unaligned_pcrel: false,
1614
- have_index: true,
1615
- },
1616
- );
1617
- let op = match &mem {
1618
- &MemArg::BXD12 { .. } => opcode_rx,
1619
- &MemArg::BXD20 { .. } => opcode_rxy,
1620
- &MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
1621
- _ => unreachable!(),
1622
- };
1623
- let mem = mem.pretty_print_default();
1624
-
1625
- format!("{}{} {}, {}", mem_str, op.unwrap(), rn, mem)
1626
- }
1627
- &Inst::CmpRSImm16 { op, rn, imm } => {
1628
- let op = match op {
1629
- CmpOp::CmpS32 => "chi",
1630
- CmpOp::CmpS64 => "cghi",
1631
- _ => unreachable!(),
1632
- };
1633
- let rn = pretty_print_reg(rn);
1634
- format!("{} {}, {}", op, rn, imm)
1635
- }
1636
- &Inst::CmpRSImm32 { op, rn, imm } => {
1637
- let op = match op {
1638
- CmpOp::CmpS32 => "cfi",
1639
- CmpOp::CmpS64 => "cgfi",
1640
- _ => unreachable!(),
1641
- };
1642
- let rn = pretty_print_reg(rn);
1643
- format!("{} {}, {}", op, rn, imm)
1644
- }
1645
- &Inst::CmpRUImm32 { op, rn, imm } => {
1646
- let op = match op {
1647
- CmpOp::CmpL32 => "clfi",
1648
- CmpOp::CmpL64 => "clgfi",
1649
- _ => unreachable!(),
1650
- };
1651
- let rn = pretty_print_reg(rn);
1652
- format!("{} {}, {}", op, rn, imm)
1653
- }
1654
- &Inst::CmpTrapRR {
1655
- op, rn, rm, cond, ..
1656
- } => {
1657
- let op = match op {
1658
- CmpOp::CmpS32 => "crt",
1659
- CmpOp::CmpS64 => "cgrt",
1660
- CmpOp::CmpL32 => "clrt",
1661
- CmpOp::CmpL64 => "clgrt",
1662
- _ => unreachable!(),
1663
- };
1664
- let rn = pretty_print_reg(rn);
1665
- let rm = pretty_print_reg(rm);
1666
- let cond = cond.pretty_print_default();
1667
- format!("{}{} {}, {}", op, cond, rn, rm)
1668
- }
1669
- &Inst::CmpTrapRSImm16 {
1670
- op, rn, imm, cond, ..
1671
- } => {
1672
- let op = match op {
1673
- CmpOp::CmpS32 => "cit",
1674
- CmpOp::CmpS64 => "cgit",
1675
- _ => unreachable!(),
1676
- };
1677
- let rn = pretty_print_reg(rn);
1678
- let cond = cond.pretty_print_default();
1679
- format!("{}{} {}, {}", op, cond, rn, imm)
1680
- }
1681
- &Inst::CmpTrapRUImm16 {
1682
- op, rn, imm, cond, ..
1683
- } => {
1684
- let op = match op {
1685
- CmpOp::CmpL32 => "clfit",
1686
- CmpOp::CmpL64 => "clgit",
1687
- _ => unreachable!(),
1688
- };
1689
- let rn = pretty_print_reg(rn);
1690
- let cond = cond.pretty_print_default();
1691
- format!("{}{} {}, {}", op, cond, rn, imm)
1692
- }
1693
- &Inst::AtomicRmw {
1694
- alu_op,
1695
- rd,
1696
- rn,
1697
- ref mem,
1698
- } => {
1699
- let op = match alu_op {
1700
- ALUOp::Add32 => "laa",
1701
- ALUOp::Add64 => "laag",
1702
- ALUOp::AddLogical32 => "laal",
1703
- ALUOp::AddLogical64 => "laalg",
1704
- ALUOp::And32 => "lan",
1705
- ALUOp::And64 => "lang",
1706
- ALUOp::Orr32 => "lao",
1707
- ALUOp::Orr64 => "laog",
1708
- ALUOp::Xor32 => "lax",
1709
- ALUOp::Xor64 => "laxg",
1710
- _ => unreachable!(),
1711
- };
1712
-
1713
- let rd = pretty_print_reg(rd.to_reg());
1714
- let rn = pretty_print_reg(rn);
1715
- let mem = mem.clone();
1716
- let (mem_str, mem) = mem_finalize_for_show(
1717
- &mem,
1718
- state,
1719
- MemInstType {
1720
- have_d12: false,
1721
- have_d20: true,
1722
- have_pcrel: false,
1723
- have_unaligned_pcrel: false,
1724
- have_index: false,
1725
- },
1726
- );
1727
- let mem = mem.pretty_print_default();
1728
- format!("{}{} {}, {}, {}", mem_str, op, rd, rn, mem)
1729
- }
1730
- &Inst::AtomicCas32 {
1731
- rd,
1732
- ri,
1733
- rn,
1734
- ref mem,
1735
- }
1736
- | &Inst::AtomicCas64 {
1737
- rd,
1738
- ri,
1739
- rn,
1740
- ref mem,
1741
- } => {
1742
- let (opcode_rs, opcode_rsy) = match self {
1743
- &Inst::AtomicCas32 { .. } => (Some("cs"), Some("csy")),
1744
- &Inst::AtomicCas64 { .. } => (None, Some("csg")),
1745
- _ => unreachable!(),
1746
- };
1747
-
1748
- let rd = pretty_print_reg_mod(rd, ri);
1749
- let rn = pretty_print_reg(rn);
1750
- let mem = mem.clone();
1751
- let (mem_str, mem) = mem_finalize_for_show(
1752
- &mem,
1753
- state,
1754
- MemInstType {
1755
- have_d12: opcode_rs.is_some(),
1756
- have_d20: opcode_rsy.is_some(),
1757
- have_pcrel: false,
1758
- have_unaligned_pcrel: false,
1759
- have_index: false,
1760
- },
1761
- );
1762
- let op = match &mem {
1763
- &MemArg::BXD12 { .. } => opcode_rs,
1764
- &MemArg::BXD20 { .. } => opcode_rsy,
1765
- _ => unreachable!(),
1766
- };
1767
- let mem = mem.pretty_print_default();
1768
-
1769
- format!("{}{} {}, {}, {}", mem_str, op.unwrap(), rd, rn, mem)
1770
- }
1771
- &Inst::Fence => "bcr 14, 0".to_string(),
1772
- &Inst::Load32 { rd, ref mem }
1773
- | &Inst::Load32ZExt8 { rd, ref mem }
1774
- | &Inst::Load32SExt8 { rd, ref mem }
1775
- | &Inst::Load32ZExt16 { rd, ref mem }
1776
- | &Inst::Load32SExt16 { rd, ref mem }
1777
- | &Inst::Load64 { rd, ref mem }
1778
- | &Inst::Load64ZExt8 { rd, ref mem }
1779
- | &Inst::Load64SExt8 { rd, ref mem }
1780
- | &Inst::Load64ZExt16 { rd, ref mem }
1781
- | &Inst::Load64SExt16 { rd, ref mem }
1782
- | &Inst::Load64ZExt32 { rd, ref mem }
1783
- | &Inst::Load64SExt32 { rd, ref mem }
1784
- | &Inst::LoadRev16 { rd, ref mem }
1785
- | &Inst::LoadRev32 { rd, ref mem }
1786
- | &Inst::LoadRev64 { rd, ref mem } => {
1787
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
1788
- &Inst::Load32 { .. } => (Some("l"), Some("ly"), Some("lrl")),
1789
- &Inst::Load32ZExt8 { .. } => (None, Some("llc"), None),
1790
- &Inst::Load32SExt8 { .. } => (None, Some("lb"), None),
1791
- &Inst::Load32ZExt16 { .. } => (None, Some("llh"), Some("llhrl")),
1792
- &Inst::Load32SExt16 { .. } => (Some("lh"), Some("lhy"), Some("lhrl")),
1793
- &Inst::Load64 { .. } => (None, Some("lg"), Some("lgrl")),
1794
- &Inst::Load64ZExt8 { .. } => (None, Some("llgc"), None),
1795
- &Inst::Load64SExt8 { .. } => (None, Some("lgb"), None),
1796
- &Inst::Load64ZExt16 { .. } => (None, Some("llgh"), Some("llghrl")),
1797
- &Inst::Load64SExt16 { .. } => (None, Some("lgh"), Some("lghrl")),
1798
- &Inst::Load64ZExt32 { .. } => (None, Some("llgf"), Some("llgfrl")),
1799
- &Inst::Load64SExt32 { .. } => (None, Some("lgf"), Some("lgfrl")),
1800
- &Inst::LoadRev16 { .. } => (None, Some("lrvh"), None),
1801
- &Inst::LoadRev32 { .. } => (None, Some("lrv"), None),
1802
- &Inst::LoadRev64 { .. } => (None, Some("lrvg"), None),
1803
- _ => unreachable!(),
1804
- };
1805
-
1806
- let rd = pretty_print_reg(rd.to_reg());
1807
- let mem = mem.clone();
1808
- let (mem_str, mem) = mem_finalize_for_show(
1809
- &mem,
1810
- state,
1811
- MemInstType {
1812
- have_d12: opcode_rx.is_some(),
1813
- have_d20: opcode_rxy.is_some(),
1814
- have_pcrel: opcode_ril.is_some(),
1815
- have_unaligned_pcrel: false,
1816
- have_index: true,
1817
- },
1818
- );
1819
- let op = match &mem {
1820
- &MemArg::BXD12 { .. } => opcode_rx,
1821
- &MemArg::BXD20 { .. } => opcode_rxy,
1822
- &MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
1823
- _ => unreachable!(),
1824
- };
1825
- let mem = mem.pretty_print_default();
1826
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1827
- }
1828
- &Inst::Store8 { rd, ref mem }
1829
- | &Inst::Store16 { rd, ref mem }
1830
- | &Inst::Store32 { rd, ref mem }
1831
- | &Inst::Store64 { rd, ref mem }
1832
- | &Inst::StoreRev16 { rd, ref mem }
1833
- | &Inst::StoreRev32 { rd, ref mem }
1834
- | &Inst::StoreRev64 { rd, ref mem } => {
1835
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
1836
- &Inst::Store8 { .. } => (Some("stc"), Some("stcy"), None),
1837
- &Inst::Store16 { .. } => (Some("sth"), Some("sthy"), Some("sthrl")),
1838
- &Inst::Store32 { .. } => (Some("st"), Some("sty"), Some("strl")),
1839
- &Inst::Store64 { .. } => (None, Some("stg"), Some("stgrl")),
1840
- &Inst::StoreRev16 { .. } => (None, Some("strvh"), None),
1841
- &Inst::StoreRev32 { .. } => (None, Some("strv"), None),
1842
- &Inst::StoreRev64 { .. } => (None, Some("strvg"), None),
1843
- _ => unreachable!(),
1844
- };
1845
-
1846
- let rd = pretty_print_reg(rd);
1847
- let mem = mem.clone();
1848
- let (mem_str, mem) = mem_finalize_for_show(
1849
- &mem,
1850
- state,
1851
- MemInstType {
1852
- have_d12: opcode_rx.is_some(),
1853
- have_d20: opcode_rxy.is_some(),
1854
- have_pcrel: opcode_ril.is_some(),
1855
- have_unaligned_pcrel: false,
1856
- have_index: true,
1857
- },
1858
- );
1859
- let op = match &mem {
1860
- &MemArg::BXD12 { .. } => opcode_rx,
1861
- &MemArg::BXD20 { .. } => opcode_rxy,
1862
- &MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
1863
- _ => unreachable!(),
1864
- };
1865
- let mem = mem.pretty_print_default();
1866
-
1867
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1868
- }
1869
- &Inst::StoreImm8 { imm, ref mem } => {
1870
- let mem = mem.clone();
1871
- let (mem_str, mem) = mem_finalize_for_show(
1872
- &mem,
1873
- state,
1874
- MemInstType {
1875
- have_d12: true,
1876
- have_d20: true,
1877
- have_pcrel: false,
1878
- have_unaligned_pcrel: false,
1879
- have_index: false,
1880
- },
1881
- );
1882
- let op = match &mem {
1883
- &MemArg::BXD12 { .. } => "mvi",
1884
- &MemArg::BXD20 { .. } => "mviy",
1885
- _ => unreachable!(),
1886
- };
1887
- let mem = mem.pretty_print_default();
1888
-
1889
- format!("{}{} {}, {}", mem_str, op, mem, imm)
1890
- }
1891
- &Inst::StoreImm16 { imm, ref mem }
1892
- | &Inst::StoreImm32SExt16 { imm, ref mem }
1893
- | &Inst::StoreImm64SExt16 { imm, ref mem } => {
1894
- let mem = mem.clone();
1895
- let (mem_str, mem) = mem_finalize_for_show(
1896
- &mem,
1897
- state,
1898
- MemInstType {
1899
- have_d12: false,
1900
- have_d20: true,
1901
- have_pcrel: false,
1902
- have_unaligned_pcrel: false,
1903
- have_index: false,
1904
- },
1905
- );
1906
- let op = match self {
1907
- &Inst::StoreImm16 { .. } => "mvhhi",
1908
- &Inst::StoreImm32SExt16 { .. } => "mvhi",
1909
- &Inst::StoreImm64SExt16 { .. } => "mvghi",
1910
- _ => unreachable!(),
1911
- };
1912
- let mem = mem.pretty_print_default();
1913
-
1914
- format!("{}{} {}, {}", mem_str, op, mem, imm)
1915
- }
1916
- &Inst::Mvc {
1917
- ref dst,
1918
- ref src,
1919
- len_minus_one,
1920
- } => {
1921
- let dst = dst.clone();
1922
- let src = src.clone();
1923
- format!(
1924
- "mvc {}({},{}), {}({})",
1925
- dst.disp.pretty_print_default(),
1926
- len_minus_one,
1927
- show_reg(dst.base),
1928
- src.disp.pretty_print_default(),
1929
- show_reg(src.base)
1930
- )
1931
- }
1932
- &Inst::LoadMultiple64 { rt, rt2, ref mem } => {
1933
- let mem = mem.clone();
1934
- let (mem_str, mem) = mem_finalize_for_show(
1935
- &mem,
1936
- state,
1937
- MemInstType {
1938
- have_d12: false,
1939
- have_d20: true,
1940
- have_pcrel: false,
1941
- have_unaligned_pcrel: false,
1942
- have_index: false,
1943
- },
1944
- );
1945
- let rt = pretty_print_reg(rt.to_reg());
1946
- let rt2 = pretty_print_reg(rt2.to_reg());
1947
- let mem = mem.pretty_print_default();
1948
- format!("{}lmg {}, {}, {}", mem_str, rt, rt2, mem)
1949
- }
1950
- &Inst::StoreMultiple64 { rt, rt2, ref mem } => {
1951
- let mem = mem.clone();
1952
- let (mem_str, mem) = mem_finalize_for_show(
1953
- &mem,
1954
- state,
1955
- MemInstType {
1956
- have_d12: false,
1957
- have_d20: true,
1958
- have_pcrel: false,
1959
- have_unaligned_pcrel: false,
1960
- have_index: false,
1961
- },
1962
- );
1963
- let rt = pretty_print_reg(rt);
1964
- let rt2 = pretty_print_reg(rt2);
1965
- let mem = mem.pretty_print_default();
1966
- format!("{}stmg {}, {}, {}", mem_str, rt, rt2, mem)
1967
- }
1968
- &Inst::Mov64 { rd, rm } => {
1969
- let rd = pretty_print_reg(rd.to_reg());
1970
- let rm = pretty_print_reg(rm);
1971
- format!("lgr {}, {}", rd, rm)
1972
- }
1973
- &Inst::MovPReg { rd, rm } => {
1974
- let rd = pretty_print_reg(rd.to_reg());
1975
- let rm = show_reg(rm.into());
1976
- format!("lgr {}, {}", rd, rm)
1977
- }
1978
- &Inst::Mov32 { rd, rm } => {
1979
- let rd = pretty_print_reg(rd.to_reg());
1980
- let rm = pretty_print_reg(rm);
1981
- format!("lr {}, {}", rd, rm)
1982
- }
1983
- &Inst::Mov32Imm { rd, ref imm } => {
1984
- let rd = pretty_print_reg(rd.to_reg());
1985
- format!("iilf {}, {}", rd, imm)
1986
- }
1987
- &Inst::Mov32SImm16 { rd, ref imm } => {
1988
- let rd = pretty_print_reg(rd.to_reg());
1989
- format!("lhi {}, {}", rd, imm)
1990
- }
1991
- &Inst::Mov64SImm16 { rd, ref imm } => {
1992
- let rd = pretty_print_reg(rd.to_reg());
1993
- format!("lghi {}, {}", rd, imm)
1994
- }
1995
- &Inst::Mov64SImm32 { rd, ref imm } => {
1996
- let rd = pretty_print_reg(rd.to_reg());
1997
- format!("lgfi {}, {}", rd, imm)
1998
- }
1999
- &Inst::Mov64UImm16Shifted { rd, ref imm } => {
2000
- let rd = pretty_print_reg(rd.to_reg());
2001
- let op = match imm.shift {
2002
- 0 => "llill",
2003
- 1 => "llilh",
2004
- 2 => "llihl",
2005
- 3 => "llihh",
2006
- _ => unreachable!(),
2007
- };
2008
- format!("{} {}, {}", op, rd, imm.bits)
2009
- }
2010
- &Inst::Mov64UImm32Shifted { rd, ref imm } => {
2011
- let rd = pretty_print_reg(rd.to_reg());
2012
- let op = match imm.shift {
2013
- 0 => "llilf",
2014
- 1 => "llihf",
2015
- _ => unreachable!(),
2016
- };
2017
- format!("{} {}, {}", op, rd, imm.bits)
2018
- }
2019
- &Inst::Insert64UImm16Shifted { rd, ri, ref imm } => {
2020
- let rd = pretty_print_reg_mod(rd, ri);
2021
- let op = match imm.shift {
2022
- 0 => "iill",
2023
- 1 => "iilh",
2024
- 2 => "iihl",
2025
- 3 => "iihh",
2026
- _ => unreachable!(),
2027
- };
2028
- format!("{} {}, {}", op, rd, imm.bits)
2029
- }
2030
- &Inst::Insert64UImm32Shifted { rd, ri, ref imm } => {
2031
- let rd = pretty_print_reg_mod(rd, ri);
2032
- let op = match imm.shift {
2033
- 0 => "iilf",
2034
- 1 => "iihf",
2035
- _ => unreachable!(),
2036
- };
2037
- format!("{} {}, {}", op, rd, imm.bits)
2038
- }
2039
- &Inst::LoadAR { rd, ar } => {
2040
- let rd = pretty_print_reg(rd.to_reg());
2041
- format!("ear {}, %a{}", rd, ar)
2042
- }
2043
- &Inst::InsertAR { rd, ri, ar } => {
2044
- let rd = pretty_print_reg_mod(rd, ri);
2045
- format!("ear {}, %a{}", rd, ar)
2046
- }
2047
- &Inst::CMov32 { rd, cond, ri, rm } => {
2048
- let rd = pretty_print_reg_mod(rd, ri);
2049
- let rm = pretty_print_reg(rm);
2050
- let cond = cond.pretty_print_default();
2051
- format!("locr{} {}, {}", cond, rd, rm)
2052
- }
2053
- &Inst::CMov64 { rd, cond, ri, rm } => {
2054
- let rd = pretty_print_reg_mod(rd, ri);
2055
- let rm = pretty_print_reg(rm);
2056
- let cond = cond.pretty_print_default();
2057
- format!("locgr{} {}, {}", cond, rd, rm)
2058
- }
2059
- &Inst::CMov32SImm16 {
2060
- rd,
2061
- cond,
2062
- ri,
2063
- ref imm,
2064
- } => {
2065
- let rd = pretty_print_reg_mod(rd, ri);
2066
- let cond = cond.pretty_print_default();
2067
- format!("lochi{} {}, {}", cond, rd, imm)
2068
- }
2069
- &Inst::CMov64SImm16 {
2070
- rd,
2071
- cond,
2072
- ri,
2073
- ref imm,
2074
- } => {
2075
- let rd = pretty_print_reg_mod(rd, ri);
2076
- let cond = cond.pretty_print_default();
2077
- format!("locghi{} {}, {}", cond, rd, imm)
2078
- }
2079
- &Inst::FpuMove32 { rd, rn } => {
2080
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2081
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2082
- if rd_fpr.is_some() && rn_fpr.is_some() {
2083
- format!("ler {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
2084
- } else {
2085
- format!("vlr {}, {}", rd, rn)
2086
- }
2087
- }
2088
- &Inst::FpuMove64 { rd, rn } => {
2089
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2090
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2091
- if rd_fpr.is_some() && rn_fpr.is_some() {
2092
- format!("ldr {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
2093
- } else {
2094
- format!("vlr {}, {}", rd, rn)
2095
- }
2096
- }
2097
- &Inst::FpuCMov32 { rd, cond, rm, .. } => {
2098
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2099
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2100
- if rd_fpr.is_some() && rm_fpr.is_some() {
2101
- let cond = cond.invert().pretty_print_default();
2102
- format!("j{} 6 ; ler {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
2103
- } else {
2104
- let cond = cond.invert().pretty_print_default();
2105
- format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
2106
- }
2107
- }
2108
- &Inst::FpuCMov64 { rd, cond, rm, .. } => {
2109
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2110
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2111
- if rd_fpr.is_some() && rm_fpr.is_some() {
2112
- let cond = cond.invert().pretty_print_default();
2113
- format!("j{} 6 ; ldr {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
2114
- } else {
2115
- let cond = cond.invert().pretty_print_default();
2116
- format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
2117
- }
2118
- }
2119
- &Inst::FpuRR { fpu_op, rd, rn } => {
2120
- let (op, op_fpr) = match fpu_op {
2121
- FPUOp1::Abs32 => ("wflpsb", Some("lpebr")),
2122
- FPUOp1::Abs64 => ("wflpdb", Some("lpdbr")),
2123
- FPUOp1::Abs32x4 => ("vflpsb", None),
2124
- FPUOp1::Abs64x2 => ("vflpdb", None),
2125
- FPUOp1::Neg32 => ("wflcsb", Some("lcebr")),
2126
- FPUOp1::Neg64 => ("wflcdb", Some("lcdbr")),
2127
- FPUOp1::Neg32x4 => ("vflcsb", None),
2128
- FPUOp1::Neg64x2 => ("vflcdb", None),
2129
- FPUOp1::NegAbs32 => ("wflnsb", Some("lnebr")),
2130
- FPUOp1::NegAbs64 => ("wflndb", Some("lndbr")),
2131
- FPUOp1::NegAbs32x4 => ("vflnsb", None),
2132
- FPUOp1::NegAbs64x2 => ("vflndb", None),
2133
- FPUOp1::Sqrt32 => ("wfsqsb", Some("sqebr")),
2134
- FPUOp1::Sqrt64 => ("wfsqdb", Some("sqdbr")),
2135
- FPUOp1::Sqrt32x4 => ("vfsqsb", None),
2136
- FPUOp1::Sqrt64x2 => ("vfsqdb", None),
2137
- FPUOp1::Cvt32To64 => ("wldeb", Some("ldebr")),
2138
- FPUOp1::Cvt32x4To64x2 => ("vldeb", None),
2139
- };
2140
-
2141
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2142
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2143
- if op_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
2144
- format!(
2145
- "{} {}, {}",
2146
- op_fpr.unwrap(),
2147
- rd_fpr.unwrap(),
2148
- rn_fpr.unwrap()
2149
- )
2150
- } else if op.starts_with('w') {
2151
- format!("{} {}, {}", op, rd_fpr.unwrap_or(rd), rn_fpr.unwrap_or(rn))
2152
- } else {
2153
- format!("{} {}, {}", op, rd, rn)
2154
- }
2155
- }
2156
- &Inst::FpuRRR { fpu_op, rd, rn, rm } => {
2157
- let (op, opt_m6, op_fpr) = match fpu_op {
2158
- FPUOp2::Add32 => ("wfasb", "", Some("aebr")),
2159
- FPUOp2::Add64 => ("wfadb", "", Some("adbr")),
2160
- FPUOp2::Add32x4 => ("vfasb", "", None),
2161
- FPUOp2::Add64x2 => ("vfadb", "", None),
2162
- FPUOp2::Sub32 => ("wfssb", "", Some("sebr")),
2163
- FPUOp2::Sub64 => ("wfsdb", "", Some("sdbr")),
2164
- FPUOp2::Sub32x4 => ("vfssb", "", None),
2165
- FPUOp2::Sub64x2 => ("vfsdb", "", None),
2166
- FPUOp2::Mul32 => ("wfmsb", "", Some("meebr")),
2167
- FPUOp2::Mul64 => ("wfmdb", "", Some("mdbr")),
2168
- FPUOp2::Mul32x4 => ("vfmsb", "", None),
2169
- FPUOp2::Mul64x2 => ("vfmdb", "", None),
2170
- FPUOp2::Div32 => ("wfdsb", "", Some("debr")),
2171
- FPUOp2::Div64 => ("wfddb", "", Some("ddbr")),
2172
- FPUOp2::Div32x4 => ("vfdsb", "", None),
2173
- FPUOp2::Div64x2 => ("vfddb", "", None),
2174
- FPUOp2::Max32 => ("wfmaxsb", ", 1", None),
2175
- FPUOp2::Max64 => ("wfmaxdb", ", 1", None),
2176
- FPUOp2::Max32x4 => ("vfmaxsb", ", 1", None),
2177
- FPUOp2::Max64x2 => ("vfmaxdb", ", 1", None),
2178
- FPUOp2::Min32 => ("wfminsb", ", 1", None),
2179
- FPUOp2::Min64 => ("wfmindb", ", 1", None),
2180
- FPUOp2::Min32x4 => ("vfminsb", ", 1", None),
2181
- FPUOp2::Min64x2 => ("vfmindb", ", 1", None),
2182
- FPUOp2::MaxPseudo32 => ("wfmaxsb", ", 3", None),
2183
- FPUOp2::MaxPseudo64 => ("wfmaxdb", ", 3", None),
2184
- FPUOp2::MaxPseudo32x4 => ("vfmaxsb", ", 3", None),
2185
- FPUOp2::MaxPseudo64x2 => ("vfmaxdb", ", 3", None),
2186
- FPUOp2::MinPseudo32 => ("wfminsb", ", 3", None),
2187
- FPUOp2::MinPseudo64 => ("wfmindb", ", 3", None),
2188
- FPUOp2::MinPseudo32x4 => ("vfminsb", ", 3", None),
2189
- FPUOp2::MinPseudo64x2 => ("vfmindb", ", 3", None),
2190
- };
2191
-
2192
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2193
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2194
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2195
- if op_fpr.is_some() && rd == rn && rd_fpr.is_some() && rm_fpr.is_some() {
2196
- format!(
2197
- "{} {}, {}",
2198
- op_fpr.unwrap(),
2199
- rd_fpr.unwrap(),
2200
- rm_fpr.unwrap()
2201
- )
2202
- } else if op.starts_with('w') {
2203
- format!(
2204
- "{} {}, {}, {}{}",
2205
- op,
2206
- rd_fpr.unwrap_or(rd),
2207
- rn_fpr.unwrap_or(rn),
2208
- rm_fpr.unwrap_or(rm),
2209
- opt_m6
2210
- )
2211
- } else {
2212
- format!("{} {}, {}, {}{}", op, rd, rn, rm, opt_m6)
2213
- }
2214
- }
2215
- &Inst::FpuRRRR {
2216
- fpu_op,
2217
- rd,
2218
- rn,
2219
- rm,
2220
- ra,
2221
- } => {
2222
- let (op, op_fpr) = match fpu_op {
2223
- FPUOp3::MAdd32 => ("wfmasb", Some("maebr")),
2224
- FPUOp3::MAdd64 => ("wfmadb", Some("madbr")),
2225
- FPUOp3::MAdd32x4 => ("vfmasb", None),
2226
- FPUOp3::MAdd64x2 => ("vfmadb", None),
2227
- FPUOp3::MSub32 => ("wfmssb", Some("msebr")),
2228
- FPUOp3::MSub64 => ("wfmsdb", Some("msdbr")),
2229
- FPUOp3::MSub32x4 => ("vfmssb", None),
2230
- FPUOp3::MSub64x2 => ("vfmsdb", None),
2231
- };
2232
-
2233
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2234
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2235
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2236
- let (ra, ra_fpr) = pretty_print_fpr(ra);
2237
- if op_fpr.is_some()
2238
- && rd == ra
2239
- && rd_fpr.is_some()
2240
- && rn_fpr.is_some()
2241
- && rm_fpr.is_some()
2242
- {
2243
- format!(
2244
- "{} {}, {}, {}",
2245
- op_fpr.unwrap(),
2246
- rd_fpr.unwrap(),
2247
- rn_fpr.unwrap(),
2248
- rm_fpr.unwrap()
2249
- )
2250
- } else if op.starts_with('w') {
2251
- format!(
2252
- "{} {}, {}, {}, {}",
2253
- op,
2254
- rd_fpr.unwrap_or(rd),
2255
- rn_fpr.unwrap_or(rn),
2256
- rm_fpr.unwrap_or(rm),
2257
- ra_fpr.unwrap_or(ra)
2258
- )
2259
- } else {
2260
- format!("{} {}, {}, {}, {}", op, rd, rn, rm, ra)
2261
- }
2262
- }
2263
- &Inst::FpuCmp32 { rn, rm } => {
2264
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2265
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2266
- if rn_fpr.is_some() && rm_fpr.is_some() {
2267
- format!("cebr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
2268
- } else {
2269
- format!("wfcsb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
2270
- }
2271
- }
2272
- &Inst::FpuCmp64 { rn, rm } => {
2273
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2274
- let (rm, rm_fpr) = pretty_print_fpr(rm);
2275
- if rn_fpr.is_some() && rm_fpr.is_some() {
2276
- format!("cdbr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
2277
- } else {
2278
- format!("wfcdb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
2279
- }
2280
- }
2281
- &Inst::LoadFpuConst32 { rd, const_data } => {
2282
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2283
- let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2284
- if rd_fpr.is_some() {
2285
- format!(
2286
- "bras {}, 8 ; data.f32 {} ; le {}, 0({})",
2287
- tmp,
2288
- f32::from_bits(const_data),
2289
- rd_fpr.unwrap(),
2290
- tmp
2291
- )
2292
- } else {
2293
- format!(
2294
- "bras {}, 8 ; data.f32 {} ; vlef {}, 0({}), 0",
2295
- tmp,
2296
- f32::from_bits(const_data),
2297
- rd,
2298
- tmp
2299
- )
2300
- }
2301
- }
2302
- &Inst::LoadFpuConst64 { rd, const_data } => {
2303
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2304
- let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2305
- if rd_fpr.is_some() {
2306
- format!(
2307
- "bras {}, 12 ; data.f64 {} ; ld {}, 0({})",
2308
- tmp,
2309
- f64::from_bits(const_data),
2310
- rd_fpr.unwrap(),
2311
- tmp
2312
- )
2313
- } else {
2314
- format!(
2315
- "bras {}, 12 ; data.f64 {} ; vleg {}, 0({}), 0",
2316
- tmp,
2317
- f64::from_bits(const_data),
2318
- rd,
2319
- tmp
2320
- )
2321
- }
2322
- }
2323
- &Inst::FpuRound { op, mode, rd, rn } => {
2324
- let mode = match mode {
2325
- FpuRoundMode::Current => 0,
2326
- FpuRoundMode::ToNearest => 1,
2327
- FpuRoundMode::ShorterPrecision => 3,
2328
- FpuRoundMode::ToNearestTiesToEven => 4,
2329
- FpuRoundMode::ToZero => 5,
2330
- FpuRoundMode::ToPosInfinity => 6,
2331
- FpuRoundMode::ToNegInfinity => 7,
2332
- };
2333
- let (opcode, opcode_fpr) = match op {
2334
- FpuRoundOp::Cvt64To32 => ("wledb", Some("ledbra")),
2335
- FpuRoundOp::Cvt64x2To32x4 => ("vledb", None),
2336
- FpuRoundOp::Round32 => ("wfisb", Some("fiebr")),
2337
- FpuRoundOp::Round64 => ("wfidb", Some("fidbr")),
2338
- FpuRoundOp::Round32x4 => ("vfisb", None),
2339
- FpuRoundOp::Round64x2 => ("vfidb", None),
2340
- FpuRoundOp::ToSInt32 => ("wcfeb", None),
2341
- FpuRoundOp::ToSInt64 => ("wcgdb", None),
2342
- FpuRoundOp::ToUInt32 => ("wclfeb", None),
2343
- FpuRoundOp::ToUInt64 => ("wclgdb", None),
2344
- FpuRoundOp::ToSInt32x4 => ("vcfeb", None),
2345
- FpuRoundOp::ToSInt64x2 => ("vcgdb", None),
2346
- FpuRoundOp::ToUInt32x4 => ("vclfeb", None),
2347
- FpuRoundOp::ToUInt64x2 => ("vclgdb", None),
2348
- FpuRoundOp::FromSInt32 => ("wcefb", None),
2349
- FpuRoundOp::FromSInt64 => ("wcdgb", None),
2350
- FpuRoundOp::FromUInt32 => ("wcelfb", None),
2351
- FpuRoundOp::FromUInt64 => ("wcdlgb", None),
2352
- FpuRoundOp::FromSInt32x4 => ("vcefb", None),
2353
- FpuRoundOp::FromSInt64x2 => ("vcdgb", None),
2354
- FpuRoundOp::FromUInt32x4 => ("vcelfb", None),
2355
- FpuRoundOp::FromUInt64x2 => ("vcdlgb", None),
2356
- };
2357
-
2358
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2359
- let (rn, rn_fpr) = pretty_print_fpr(rn);
2360
- if opcode_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
2361
- format!(
2362
- "{} {}, {}, {}{}",
2363
- opcode_fpr.unwrap(),
2364
- rd_fpr.unwrap(),
2365
- mode,
2366
- rn_fpr.unwrap(),
2367
- if opcode_fpr.unwrap().ends_with('a') {
2368
- ", 0"
2369
- } else {
2370
- ""
2371
- }
2372
- )
2373
- } else if opcode.starts_with('w') {
2374
- format!(
2375
- "{} {}, {}, 0, {}",
2376
- opcode,
2377
- rd_fpr.unwrap_or(rd),
2378
- rn_fpr.unwrap_or(rn),
2379
- mode
2380
- )
2381
- } else {
2382
- format!("{} {}, {}, 0, {}", opcode, rd, rn, mode)
2383
- }
2384
- }
2385
- &Inst::VecRRR { op, rd, rn, rm } => {
2386
- let op = match op {
2387
- VecBinaryOp::Add8x16 => "vab",
2388
- VecBinaryOp::Add16x8 => "vah",
2389
- VecBinaryOp::Add32x4 => "vaf",
2390
- VecBinaryOp::Add64x2 => "vag",
2391
- VecBinaryOp::Add128 => "vaq",
2392
- VecBinaryOp::Sub8x16 => "vsb",
2393
- VecBinaryOp::Sub16x8 => "vsh",
2394
- VecBinaryOp::Sub32x4 => "vsf",
2395
- VecBinaryOp::Sub64x2 => "vsg",
2396
- VecBinaryOp::Sub128 => "vsq",
2397
- VecBinaryOp::Mul8x16 => "vmlb",
2398
- VecBinaryOp::Mul16x8 => "vmlhw",
2399
- VecBinaryOp::Mul32x4 => "vmlf",
2400
- VecBinaryOp::UMulHi8x16 => "vmlhb",
2401
- VecBinaryOp::UMulHi16x8 => "vmlhh",
2402
- VecBinaryOp::UMulHi32x4 => "vmlhf",
2403
- VecBinaryOp::SMulHi8x16 => "vmhb",
2404
- VecBinaryOp::SMulHi16x8 => "vmhh",
2405
- VecBinaryOp::SMulHi32x4 => "vmhf",
2406
- VecBinaryOp::UMulEven8x16 => "vmleb",
2407
- VecBinaryOp::UMulEven16x8 => "vmleh",
2408
- VecBinaryOp::UMulEven32x4 => "vmlef",
2409
- VecBinaryOp::SMulEven8x16 => "vmeb",
2410
- VecBinaryOp::SMulEven16x8 => "vmeh",
2411
- VecBinaryOp::SMulEven32x4 => "vmef",
2412
- VecBinaryOp::UMulOdd8x16 => "vmlob",
2413
- VecBinaryOp::UMulOdd16x8 => "vmloh",
2414
- VecBinaryOp::UMulOdd32x4 => "vmlof",
2415
- VecBinaryOp::SMulOdd8x16 => "vmob",
2416
- VecBinaryOp::SMulOdd16x8 => "vmoh",
2417
- VecBinaryOp::SMulOdd32x4 => "vmof",
2418
- VecBinaryOp::UMax8x16 => "vmxlb",
2419
- VecBinaryOp::UMax16x8 => "vmxlh",
2420
- VecBinaryOp::UMax32x4 => "vmxlf",
2421
- VecBinaryOp::UMax64x2 => "vmxlg",
2422
- VecBinaryOp::SMax8x16 => "vmxb",
2423
- VecBinaryOp::SMax16x8 => "vmxh",
2424
- VecBinaryOp::SMax32x4 => "vmxf",
2425
- VecBinaryOp::SMax64x2 => "vmxg",
2426
- VecBinaryOp::UMin8x16 => "vmnlb",
2427
- VecBinaryOp::UMin16x8 => "vmnlh",
2428
- VecBinaryOp::UMin32x4 => "vmnlf",
2429
- VecBinaryOp::UMin64x2 => "vmnlg",
2430
- VecBinaryOp::SMin8x16 => "vmnb",
2431
- VecBinaryOp::SMin16x8 => "vmnh",
2432
- VecBinaryOp::SMin32x4 => "vmnf",
2433
- VecBinaryOp::SMin64x2 => "vmng",
2434
- VecBinaryOp::UAvg8x16 => "vavglb",
2435
- VecBinaryOp::UAvg16x8 => "vavglh",
2436
- VecBinaryOp::UAvg32x4 => "vavglf",
2437
- VecBinaryOp::UAvg64x2 => "vavglg",
2438
- VecBinaryOp::SAvg8x16 => "vavgb",
2439
- VecBinaryOp::SAvg16x8 => "vavgh",
2440
- VecBinaryOp::SAvg32x4 => "vavgf",
2441
- VecBinaryOp::SAvg64x2 => "vavgg",
2442
- VecBinaryOp::And128 => "vn",
2443
- VecBinaryOp::Orr128 => "vo",
2444
- VecBinaryOp::Xor128 => "vx",
2445
- VecBinaryOp::NotAnd128 => "vnn",
2446
- VecBinaryOp::NotOrr128 => "vno",
2447
- VecBinaryOp::NotXor128 => "vnx",
2448
- VecBinaryOp::AndNot128 => "vnc",
2449
- VecBinaryOp::OrrNot128 => "voc",
2450
- VecBinaryOp::BitPermute128 => "vbperm",
2451
- VecBinaryOp::LShLByByte128 => "vslb",
2452
- VecBinaryOp::LShRByByte128 => "vsrlb",
2453
- VecBinaryOp::AShRByByte128 => "vsrab",
2454
- VecBinaryOp::LShLByBit128 => "vsl",
2455
- VecBinaryOp::LShRByBit128 => "vsrl",
2456
- VecBinaryOp::AShRByBit128 => "vsra",
2457
- VecBinaryOp::Pack16x8 => "vpkh",
2458
- VecBinaryOp::Pack32x4 => "vpkf",
2459
- VecBinaryOp::Pack64x2 => "vpkg",
2460
- VecBinaryOp::PackUSat16x8 => "vpklsh",
2461
- VecBinaryOp::PackUSat32x4 => "vpklsf",
2462
- VecBinaryOp::PackUSat64x2 => "vpklsg",
2463
- VecBinaryOp::PackSSat16x8 => "vpksh",
2464
- VecBinaryOp::PackSSat32x4 => "vpksf",
2465
- VecBinaryOp::PackSSat64x2 => "vpksg",
2466
- VecBinaryOp::MergeLow8x16 => "vmrlb",
2467
- VecBinaryOp::MergeLow16x8 => "vmrlh",
2468
- VecBinaryOp::MergeLow32x4 => "vmrlf",
2469
- VecBinaryOp::MergeLow64x2 => "vmrlg",
2470
- VecBinaryOp::MergeHigh8x16 => "vmrhb",
2471
- VecBinaryOp::MergeHigh16x8 => "vmrhh",
2472
- VecBinaryOp::MergeHigh32x4 => "vmrhf",
2473
- VecBinaryOp::MergeHigh64x2 => "vmrhg",
2474
- };
2475
- let rd = pretty_print_reg(rd.to_reg());
2476
- let rn = pretty_print_reg(rn);
2477
- let rm = pretty_print_reg(rm);
2478
- format!("{} {}, {}, {}", op, rd, rn, rm)
2479
- }
2480
- &Inst::VecRR { op, rd, rn } => {
2481
- let op = match op {
2482
- VecUnaryOp::Abs8x16 => "vlpb",
2483
- VecUnaryOp::Abs16x8 => "vlph",
2484
- VecUnaryOp::Abs32x4 => "vlpf",
2485
- VecUnaryOp::Abs64x2 => "vlpg",
2486
- VecUnaryOp::Neg8x16 => "vlcb",
2487
- VecUnaryOp::Neg16x8 => "vlch",
2488
- VecUnaryOp::Neg32x4 => "vlcf",
2489
- VecUnaryOp::Neg64x2 => "vlcg",
2490
- VecUnaryOp::Popcnt8x16 => "vpopctb",
2491
- VecUnaryOp::Popcnt16x8 => "vpopcth",
2492
- VecUnaryOp::Popcnt32x4 => "vpopctf",
2493
- VecUnaryOp::Popcnt64x2 => "vpopctg",
2494
- VecUnaryOp::Clz8x16 => "vclzb",
2495
- VecUnaryOp::Clz16x8 => "vclzh",
2496
- VecUnaryOp::Clz32x4 => "vclzf",
2497
- VecUnaryOp::Clz64x2 => "vclzg",
2498
- VecUnaryOp::Ctz8x16 => "vctzb",
2499
- VecUnaryOp::Ctz16x8 => "vctzh",
2500
- VecUnaryOp::Ctz32x4 => "vctzf",
2501
- VecUnaryOp::Ctz64x2 => "vctzg",
2502
- VecUnaryOp::UnpackULow8x16 => "vupllb",
2503
- VecUnaryOp::UnpackULow16x8 => "vupllh",
2504
- VecUnaryOp::UnpackULow32x4 => "vupllf",
2505
- VecUnaryOp::UnpackUHigh8x16 => "vuplhb",
2506
- VecUnaryOp::UnpackUHigh16x8 => "vuplhh",
2507
- VecUnaryOp::UnpackUHigh32x4 => "vuplhf",
2508
- VecUnaryOp::UnpackSLow8x16 => "vuplb",
2509
- VecUnaryOp::UnpackSLow16x8 => "vuplh",
2510
- VecUnaryOp::UnpackSLow32x4 => "vuplf",
2511
- VecUnaryOp::UnpackSHigh8x16 => "vuphb",
2512
- VecUnaryOp::UnpackSHigh16x8 => "vuphh",
2513
- VecUnaryOp::UnpackSHigh32x4 => "vuphf",
2514
- };
2515
- let rd = pretty_print_reg(rd.to_reg());
2516
- let rn = pretty_print_reg(rn);
2517
- format!("{} {}, {}", op, rd, rn)
2518
- }
2519
- &Inst::VecShiftRR {
2520
- shift_op,
2521
- rd,
2522
- rn,
2523
- shift_imm,
2524
- shift_reg,
2525
- } => {
2526
- let op = match shift_op {
2527
- VecShiftOp::RotL8x16 => "verllb",
2528
- VecShiftOp::RotL16x8 => "verllh",
2529
- VecShiftOp::RotL32x4 => "verllf",
2530
- VecShiftOp::RotL64x2 => "verllg",
2531
- VecShiftOp::LShL8x16 => "veslb",
2532
- VecShiftOp::LShL16x8 => "veslh",
2533
- VecShiftOp::LShL32x4 => "veslf",
2534
- VecShiftOp::LShL64x2 => "veslg",
2535
- VecShiftOp::LShR8x16 => "vesrlb",
2536
- VecShiftOp::LShR16x8 => "vesrlh",
2537
- VecShiftOp::LShR32x4 => "vesrlf",
2538
- VecShiftOp::LShR64x2 => "vesrlg",
2539
- VecShiftOp::AShR8x16 => "vesrab",
2540
- VecShiftOp::AShR16x8 => "vesrah",
2541
- VecShiftOp::AShR32x4 => "vesraf",
2542
- VecShiftOp::AShR64x2 => "vesrag",
2543
- };
2544
- let rd = pretty_print_reg(rd.to_reg());
2545
- let rn = pretty_print_reg(rn);
2546
- let shift_reg = if shift_reg != zero_reg() {
2547
- format!("({})", pretty_print_reg(shift_reg))
2548
- } else {
2549
- "".to_string()
2550
- };
2551
- format!("{} {}, {}, {}{}", op, rd, rn, shift_imm, shift_reg)
2552
- }
2553
- &Inst::VecSelect { rd, rn, rm, ra } => {
2554
- let rd = pretty_print_reg(rd.to_reg());
2555
- let rn = pretty_print_reg(rn);
2556
- let rm = pretty_print_reg(rm);
2557
- let ra = pretty_print_reg(ra);
2558
- format!("vsel {}, {}, {}, {}", rd, rn, rm, ra)
2559
- }
2560
- &Inst::VecPermute { rd, rn, rm, ra } => {
2561
- let rd = pretty_print_reg(rd.to_reg());
2562
- let rn = pretty_print_reg(rn);
2563
- let rm = pretty_print_reg(rm);
2564
- let ra = pretty_print_reg(ra);
2565
- format!("vperm {}, {}, {}, {}", rd, rn, rm, ra)
2566
- }
2567
- &Inst::VecPermuteDWImm {
2568
- rd,
2569
- rn,
2570
- rm,
2571
- idx1,
2572
- idx2,
2573
- } => {
2574
- let rd = pretty_print_reg(rd.to_reg());
2575
- let rn = pretty_print_reg(rn);
2576
- let rm = pretty_print_reg(rm);
2577
- let m4 = (idx1 & 1) * 4 + (idx2 & 1);
2578
- format!("vpdi {}, {}, {}, {}", rd, rn, rm, m4)
2579
- }
2580
- &Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
2581
- let op = match op {
2582
- VecIntCmpOp::CmpEq8x16 => "vceqb",
2583
- VecIntCmpOp::CmpEq16x8 => "vceqh",
2584
- VecIntCmpOp::CmpEq32x4 => "vceqf",
2585
- VecIntCmpOp::CmpEq64x2 => "vceqg",
2586
- VecIntCmpOp::SCmpHi8x16 => "vchb",
2587
- VecIntCmpOp::SCmpHi16x8 => "vchh",
2588
- VecIntCmpOp::SCmpHi32x4 => "vchf",
2589
- VecIntCmpOp::SCmpHi64x2 => "vchg",
2590
- VecIntCmpOp::UCmpHi8x16 => "vchlb",
2591
- VecIntCmpOp::UCmpHi16x8 => "vchlh",
2592
- VecIntCmpOp::UCmpHi32x4 => "vchlf",
2593
- VecIntCmpOp::UCmpHi64x2 => "vchlg",
2594
- };
2595
- let s = match self {
2596
- &Inst::VecIntCmp { .. } => "",
2597
- &Inst::VecIntCmpS { .. } => "s",
2598
- _ => unreachable!(),
2599
- };
2600
- let rd = pretty_print_reg(rd.to_reg());
2601
- let rn = pretty_print_reg(rn);
2602
- let rm = pretty_print_reg(rm);
2603
- format!("{}{} {}, {}, {}", op, s, rd, rn, rm)
2604
- }
2605
- &Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
2606
- let op = match op {
2607
- VecFloatCmpOp::CmpEq32x4 => "vfcesb",
2608
- VecFloatCmpOp::CmpEq64x2 => "vfcedb",
2609
- VecFloatCmpOp::CmpHi32x4 => "vfchsb",
2610
- VecFloatCmpOp::CmpHi64x2 => "vfchdb",
2611
- VecFloatCmpOp::CmpHiEq32x4 => "vfchesb",
2612
- VecFloatCmpOp::CmpHiEq64x2 => "vfchedb",
2613
- };
2614
- let s = match self {
2615
- &Inst::VecFloatCmp { .. } => "",
2616
- &Inst::VecFloatCmpS { .. } => "s",
2617
- _ => unreachable!(),
2618
- };
2619
- let rd = pretty_print_reg(rd.to_reg());
2620
- let rn = pretty_print_reg(rn);
2621
- let rm = pretty_print_reg(rm);
2622
- format!("{}{} {}, {}, {}", op, s, rd, rn, rm)
2623
- }
2624
- &Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
2625
- let op = match self {
2626
- &Inst::VecInt128SCmpHi { .. } => "vecg",
2627
- &Inst::VecInt128UCmpHi { .. } => "veclg",
2628
- _ => unreachable!(),
2629
- };
2630
- let tmp = pretty_print_reg(tmp.to_reg());
2631
- let rn = pretty_print_reg(rn);
2632
- let rm = pretty_print_reg(rm);
2633
- format!(
2634
- "{} {}, {} ; jne 10 ; vchlgs {}, {}, {}",
2635
- op, rm, rn, tmp, rn, rm
2636
- )
2637
- }
2638
- &Inst::VecLoad { rd, ref mem }
2639
- | &Inst::VecLoadRev { rd, ref mem }
2640
- | &Inst::VecLoadByte16Rev { rd, ref mem }
2641
- | &Inst::VecLoadByte32Rev { rd, ref mem }
2642
- | &Inst::VecLoadByte64Rev { rd, ref mem }
2643
- | &Inst::VecLoadElt16Rev { rd, ref mem }
2644
- | &Inst::VecLoadElt32Rev { rd, ref mem }
2645
- | &Inst::VecLoadElt64Rev { rd, ref mem } => {
2646
- let opcode = match self {
2647
- &Inst::VecLoad { .. } => "vl",
2648
- &Inst::VecLoadRev { .. } => "vlbrq",
2649
- &Inst::VecLoadByte16Rev { .. } => "vlbrh",
2650
- &Inst::VecLoadByte32Rev { .. } => "vlbrf",
2651
- &Inst::VecLoadByte64Rev { .. } => "vlbrg",
2652
- &Inst::VecLoadElt16Rev { .. } => "vlerh",
2653
- &Inst::VecLoadElt32Rev { .. } => "vlerf",
2654
- &Inst::VecLoadElt64Rev { .. } => "vlerg",
2655
- _ => unreachable!(),
2656
- };
2657
-
2658
- let rd = pretty_print_reg(rd.to_reg());
2659
- let mem = mem.clone();
2660
- let (mem_str, mem) = mem_finalize_for_show(
2661
- &mem,
2662
- state,
2663
- MemInstType {
2664
- have_d12: true,
2665
- have_d20: false,
2666
- have_pcrel: false,
2667
- have_unaligned_pcrel: false,
2668
- have_index: true,
2669
- },
2670
- );
2671
- let mem = mem.pretty_print_default();
2672
- format!("{}{} {}, {}", mem_str, opcode, rd, mem)
2673
- }
2674
- &Inst::VecStore { rd, ref mem }
2675
- | &Inst::VecStoreRev { rd, ref mem }
2676
- | &Inst::VecStoreByte16Rev { rd, ref mem }
2677
- | &Inst::VecStoreByte32Rev { rd, ref mem }
2678
- | &Inst::VecStoreByte64Rev { rd, ref mem }
2679
- | &Inst::VecStoreElt16Rev { rd, ref mem }
2680
- | &Inst::VecStoreElt32Rev { rd, ref mem }
2681
- | &Inst::VecStoreElt64Rev { rd, ref mem } => {
2682
- let opcode = match self {
2683
- &Inst::VecStore { .. } => "vst",
2684
- &Inst::VecStoreRev { .. } => "vstbrq",
2685
- &Inst::VecStoreByte16Rev { .. } => "vstbrh",
2686
- &Inst::VecStoreByte32Rev { .. } => "vstbrf",
2687
- &Inst::VecStoreByte64Rev { .. } => "vstbrg",
2688
- &Inst::VecStoreElt16Rev { .. } => "vsterh",
2689
- &Inst::VecStoreElt32Rev { .. } => "vsterf",
2690
- &Inst::VecStoreElt64Rev { .. } => "vsterg",
2691
- _ => unreachable!(),
2692
- };
2693
-
2694
- let rd = pretty_print_reg(rd);
2695
- let mem = mem.clone();
2696
- let (mem_str, mem) = mem_finalize_for_show(
2697
- &mem,
2698
- state,
2699
- MemInstType {
2700
- have_d12: true,
2701
- have_d20: false,
2702
- have_pcrel: false,
2703
- have_unaligned_pcrel: false,
2704
- have_index: true,
2705
- },
2706
- );
2707
- let mem = mem.pretty_print_default();
2708
- format!("{}{} {}, {}", mem_str, opcode, rd, mem)
2709
- }
2710
- &Inst::VecLoadReplicate { size, rd, ref mem }
2711
- | &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
2712
- let opcode = match (self, size) {
2713
- (&Inst::VecLoadReplicate { .. }, 8) => "vlrepb",
2714
- (&Inst::VecLoadReplicate { .. }, 16) => "vlreph",
2715
- (&Inst::VecLoadReplicate { .. }, 32) => "vlrepf",
2716
- (&Inst::VecLoadReplicate { .. }, 64) => "vlrepg",
2717
- (&Inst::VecLoadReplicateRev { .. }, 16) => "vlbrreph",
2718
- (&Inst::VecLoadReplicateRev { .. }, 32) => "vlbrrepf",
2719
- (&Inst::VecLoadReplicateRev { .. }, 64) => "vlbrrepg",
2720
- _ => unreachable!(),
2721
- };
2722
-
2723
- let rd = pretty_print_reg(rd.to_reg());
2724
- let mem = mem.clone();
2725
- let (mem_str, mem) = mem_finalize_for_show(
2726
- &mem,
2727
- state,
2728
- MemInstType {
2729
- have_d12: true,
2730
- have_d20: false,
2731
- have_pcrel: false,
2732
- have_unaligned_pcrel: false,
2733
- have_index: true,
2734
- },
2735
- );
2736
- let mem = mem.pretty_print_default();
2737
- format!("{}{} {}, {}", mem_str, opcode, rd, mem)
2738
- }
2739
- &Inst::VecMov { rd, rn } => {
2740
- let rd = pretty_print_reg(rd.to_reg());
2741
- let rn = pretty_print_reg(rn);
2742
- format!("vlr {}, {}", rd, rn)
2743
- }
2744
- &Inst::VecCMov { rd, cond, ri, rm } => {
2745
- let rd = pretty_print_reg_mod(rd, ri);
2746
- let rm = pretty_print_reg(rm);
2747
- let cond = cond.invert().pretty_print_default();
2748
- format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
2749
- }
2750
- &Inst::MovToVec128 { rd, rn, rm } => {
2751
- let rd = pretty_print_reg(rd.to_reg());
2752
- let rn = pretty_print_reg(rn);
2753
- let rm = pretty_print_reg(rm);
2754
- format!("vlvgp {}, {}, {}", rd, rn, rm)
2755
- }
2756
- &Inst::VecLoadConst { rd, const_data } => {
2757
- let rd = pretty_print_reg(rd.to_reg());
2758
- let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2759
- format!(
2760
- "bras {}, 20 ; data.u128 0x{:032x} ; vl {}, 0({})",
2761
- tmp, const_data, rd, tmp
2762
- )
2763
- }
2764
- &Inst::VecLoadConstReplicate {
2765
- size,
2766
- rd,
2767
- const_data,
2768
- } => {
2769
- let rd = pretty_print_reg(rd.to_reg());
2770
- let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2771
- let (opcode, data) = match size {
2772
- 32 => ("vlrepf", format!("0x{:08x}", const_data as u32)),
2773
- 64 => ("vlrepg", format!("0x{:016x}", const_data)),
2774
- _ => unreachable!(),
2775
- };
2776
- format!(
2777
- "bras {}, {} ; data.u{} {} ; {} {}, 0({})",
2778
- tmp,
2779
- 4 + size / 8,
2780
- size,
2781
- data,
2782
- opcode,
2783
- rd,
2784
- tmp
2785
- )
2786
- }
2787
- &Inst::VecImmByteMask { rd, mask } => {
2788
- let rd = pretty_print_reg(rd.to_reg());
2789
- format!("vgbm {}, {}", rd, mask)
2790
- }
2791
- &Inst::VecImmBitMask {
2792
- size,
2793
- rd,
2794
- start_bit,
2795
- end_bit,
2796
- } => {
2797
- let rd = pretty_print_reg(rd.to_reg());
2798
- let op = match size {
2799
- 8 => "vgmb",
2800
- 16 => "vgmh",
2801
- 32 => "vgmf",
2802
- 64 => "vgmg",
2803
- _ => unreachable!(),
2804
- };
2805
- format!("{} {}, {}, {}", op, rd, start_bit, end_bit)
2806
- }
2807
- &Inst::VecImmReplicate { size, rd, imm } => {
2808
- let rd = pretty_print_reg(rd.to_reg());
2809
- let op = match size {
2810
- 8 => "vrepib",
2811
- 16 => "vrepih",
2812
- 32 => "vrepif",
2813
- 64 => "vrepig",
2814
- _ => unreachable!(),
2815
- };
2816
- format!("{} {}, {}", op, rd, imm)
2817
- }
2818
- &Inst::VecLoadLane {
2819
- size,
2820
- rd,
2821
- ref mem,
2822
- lane_imm,
2823
- ..
2824
- }
2825
- | &Inst::VecLoadLaneRev {
2826
- size,
2827
- rd,
2828
- ref mem,
2829
- lane_imm,
2830
- ..
2831
- } => {
2832
- let opcode_vrx = match (self, size) {
2833
- (&Inst::VecLoadLane { .. }, 8) => "vleb",
2834
- (&Inst::VecLoadLane { .. }, 16) => "vleh",
2835
- (&Inst::VecLoadLane { .. }, 32) => "vlef",
2836
- (&Inst::VecLoadLane { .. }, 64) => "vleg",
2837
- (&Inst::VecLoadLaneRev { .. }, 16) => "vlebrh",
2838
- (&Inst::VecLoadLaneRev { .. }, 32) => "vlebrf",
2839
- (&Inst::VecLoadLaneRev { .. }, 64) => "vlebrg",
2840
- _ => unreachable!(),
2841
- };
2842
-
2843
- let (rd, _) = pretty_print_fpr(rd.to_reg());
2844
- let mem = mem.clone();
2845
- let (mem_str, mem) = mem_finalize_for_show(
2846
- &mem,
2847
- state,
2848
- MemInstType {
2849
- have_d12: true,
2850
- have_d20: false,
2851
- have_pcrel: false,
2852
- have_unaligned_pcrel: false,
2853
- have_index: true,
2854
- },
2855
- );
2856
- let mem = mem.pretty_print_default();
2857
- format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm)
2858
- }
2859
- &Inst::VecLoadLaneUndef {
2860
- size,
2861
- rd,
2862
- ref mem,
2863
- lane_imm,
2864
- }
2865
- | &Inst::VecLoadLaneRevUndef {
2866
- size,
2867
- rd,
2868
- ref mem,
2869
- lane_imm,
2870
- } => {
2871
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
2872
- (&Inst::VecLoadLaneUndef { .. }, 8) => ("vleb", None, None),
2873
- (&Inst::VecLoadLaneUndef { .. }, 16) => ("vleh", None, None),
2874
- (&Inst::VecLoadLaneUndef { .. }, 32) => ("vlef", Some("le"), Some("ley")),
2875
- (&Inst::VecLoadLaneUndef { .. }, 64) => ("vleg", Some("ld"), Some("ldy")),
2876
- (&Inst::VecLoadLaneRevUndef { .. }, 16) => ("vlebrh", None, None),
2877
- (&Inst::VecLoadLaneRevUndef { .. }, 32) => ("vlebrf", None, None),
2878
- (&Inst::VecLoadLaneRevUndef { .. }, 64) => ("vlebrg", None, None),
2879
- _ => unreachable!(),
2880
- };
2881
-
2882
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2883
- let mem = mem.clone();
2884
- if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
2885
- let (mem_str, mem) = mem_finalize_for_show(
2886
- &mem,
2887
- state,
2888
- MemInstType {
2889
- have_d12: true,
2890
- have_d20: true,
2891
- have_pcrel: false,
2892
- have_unaligned_pcrel: false,
2893
- have_index: true,
2894
- },
2895
- );
2896
- let op = match &mem {
2897
- &MemArg::BXD12 { .. } => opcode_rx,
2898
- &MemArg::BXD20 { .. } => opcode_rxy,
2899
- _ => unreachable!(),
2900
- };
2901
- let mem = mem.pretty_print_default();
2902
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
2903
- } else {
2904
- let (mem_str, mem) = mem_finalize_for_show(
2905
- &mem,
2906
- state,
2907
- MemInstType {
2908
- have_d12: true,
2909
- have_d20: false,
2910
- have_pcrel: false,
2911
- have_unaligned_pcrel: false,
2912
- have_index: true,
2913
- },
2914
- );
2915
- let mem = mem.pretty_print_default();
2916
- format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm)
2917
- }
2918
- }
2919
- &Inst::VecStoreLane {
2920
- size,
2921
- rd,
2922
- ref mem,
2923
- lane_imm,
2924
- }
2925
- | &Inst::VecStoreLaneRev {
2926
- size,
2927
- rd,
2928
- ref mem,
2929
- lane_imm,
2930
- } => {
2931
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
2932
- (&Inst::VecStoreLane { .. }, 8) => ("vsteb", None, None),
2933
- (&Inst::VecStoreLane { .. }, 16) => ("vsteh", None, None),
2934
- (&Inst::VecStoreLane { .. }, 32) => ("vstef", Some("ste"), Some("stey")),
2935
- (&Inst::VecStoreLane { .. }, 64) => ("vsteg", Some("std"), Some("stdy")),
2936
- (&Inst::VecStoreLaneRev { .. }, 16) => ("vstebrh", None, None),
2937
- (&Inst::VecStoreLaneRev { .. }, 32) => ("vstebrf", None, None),
2938
- (&Inst::VecStoreLaneRev { .. }, 64) => ("vstebrg", None, None),
2939
- _ => unreachable!(),
2940
- };
2941
-
2942
- let (rd, rd_fpr) = pretty_print_fpr(rd);
2943
- let mem = mem.clone();
2944
- if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
2945
- let (mem_str, mem) = mem_finalize_for_show(
2946
- &mem,
2947
- state,
2948
- MemInstType {
2949
- have_d12: true,
2950
- have_d20: true,
2951
- have_pcrel: false,
2952
- have_unaligned_pcrel: false,
2953
- have_index: true,
2954
- },
2955
- );
2956
- let op = match &mem {
2957
- &MemArg::BXD12 { .. } => opcode_rx,
2958
- &MemArg::BXD20 { .. } => opcode_rxy,
2959
- _ => unreachable!(),
2960
- };
2961
- let mem = mem.pretty_print_default();
2962
- format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
2963
- } else {
2964
- let (mem_str, mem) = mem_finalize_for_show(
2965
- &mem,
2966
- state,
2967
- MemInstType {
2968
- have_d12: true,
2969
- have_d20: false,
2970
- have_pcrel: false,
2971
- have_unaligned_pcrel: false,
2972
- have_index: true,
2973
- },
2974
- );
2975
- let mem = mem.pretty_print_default();
2976
- format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm,)
2977
- }
2978
- }
2979
- &Inst::VecInsertLane {
2980
- size,
2981
- rd,
2982
- ri,
2983
- rn,
2984
- lane_imm,
2985
- lane_reg,
2986
- } => {
2987
- let op = match size {
2988
- 8 => "vlvgb",
2989
- 16 => "vlvgh",
2990
- 32 => "vlvgf",
2991
- 64 => "vlvgg",
2992
- _ => unreachable!(),
2993
- };
2994
- let rd = pretty_print_reg_mod(rd, ri);
2995
- let rn = pretty_print_reg(rn);
2996
- let lane_reg = if lane_reg != zero_reg() {
2997
- format!("({})", pretty_print_reg(lane_reg))
2998
- } else {
2999
- "".to_string()
3000
- };
3001
- format!("{} {}, {}, {}{}", op, rd, rn, lane_imm, lane_reg)
3002
- }
3003
- &Inst::VecInsertLaneUndef {
3004
- size,
3005
- rd,
3006
- rn,
3007
- lane_imm,
3008
- lane_reg,
3009
- } => {
3010
- let (opcode_vrs, opcode_rre) = match size {
3011
- 8 => ("vlvgb", None),
3012
- 16 => ("vlvgh", None),
3013
- 32 => ("vlvgf", None),
3014
- 64 => ("vlvgg", Some("ldgr")),
3015
- _ => unreachable!(),
3016
- };
3017
- let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
3018
- let rn = pretty_print_reg(rn);
3019
- let lane_reg = if lane_reg != zero_reg() {
3020
- format!("({})", pretty_print_reg(lane_reg))
3021
- } else {
3022
- "".to_string()
3023
- };
3024
- if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rd_fpr.is_some()
3025
- {
3026
- format!("{} {}, {}", opcode_rre.unwrap(), rd_fpr.unwrap(), rn)
3027
- } else {
3028
- format!("{} {}, {}, {}{}", opcode_vrs, rd, rn, lane_imm, lane_reg)
3029
- }
3030
- }
3031
- &Inst::VecExtractLane {
3032
- size,
3033
- rd,
3034
- rn,
3035
- lane_imm,
3036
- lane_reg,
3037
- } => {
3038
- let (opcode_vrs, opcode_rre) = match size {
3039
- 8 => ("vlgvb", None),
3040
- 16 => ("vlgvh", None),
3041
- 32 => ("vlgvf", None),
3042
- 64 => ("vlgvg", Some("lgdr")),
3043
- _ => unreachable!(),
3044
- };
3045
- let rd = pretty_print_reg(rd.to_reg());
3046
- let (rn, rn_fpr) = pretty_print_fpr(rn);
3047
- let lane_reg = if lane_reg != zero_reg() {
3048
- format!("({})", pretty_print_reg(lane_reg))
3049
- } else {
3050
- "".to_string()
3051
- };
3052
- if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rn_fpr.is_some()
3053
- {
3054
- format!("{} {}, {}", opcode_rre.unwrap(), rd, rn_fpr.unwrap())
3055
- } else {
3056
- format!("{} {}, {}, {}{}", opcode_vrs, rd, rn, lane_imm, lane_reg)
3057
- }
3058
- }
3059
- &Inst::VecInsertLaneImm {
3060
- size,
3061
- rd,
3062
- ri,
3063
- imm,
3064
- lane_imm,
3065
- } => {
3066
- let op = match size {
3067
- 8 => "vleib",
3068
- 16 => "vleih",
3069
- 32 => "vleif",
3070
- 64 => "vleig",
3071
- _ => unreachable!(),
3072
- };
3073
- let rd = pretty_print_reg_mod(rd, ri);
3074
- format!("{} {}, {}, {}", op, rd, imm, lane_imm)
3075
- }
3076
- &Inst::VecReplicateLane {
3077
- size,
3078
- rd,
3079
- rn,
3080
- lane_imm,
3081
- } => {
3082
- let op = match size {
3083
- 8 => "vrepb",
3084
- 16 => "vreph",
3085
- 32 => "vrepf",
3086
- 64 => "vrepg",
3087
- _ => unreachable!(),
3088
- };
3089
- let rd = pretty_print_reg(rd.to_reg());
3090
- let rn = pretty_print_reg(rn);
3091
- format!("{} {}, {}, {}", op, rd, rn, lane_imm)
3092
- }
3093
- &Inst::Extend {
3094
- rd,
3095
- rn,
3096
- signed,
3097
- from_bits,
3098
- to_bits,
3099
- } => {
3100
- let rd = pretty_print_reg(rd.to_reg());
3101
- let rn = pretty_print_reg(rn);
3102
- let op = match (signed, from_bits, to_bits) {
3103
- (_, 1, 32) => "llcr",
3104
- (_, 1, 64) => "llgcr",
3105
- (false, 8, 32) => "llcr",
3106
- (false, 8, 64) => "llgcr",
3107
- (true, 8, 32) => "lbr",
3108
- (true, 8, 64) => "lgbr",
3109
- (false, 16, 32) => "llhr",
3110
- (false, 16, 64) => "llghr",
3111
- (true, 16, 32) => "lhr",
3112
- (true, 16, 64) => "lghr",
3113
- (false, 32, 64) => "llgfr",
3114
- (true, 32, 64) => "lgfr",
3115
- _ => panic!("Unsupported Extend case: {:?}", self),
3116
- };
3117
- format!("{} {}, {}", op, rd, rn)
3118
- }
3119
- &Inst::Call { link, ref info, .. } => {
3120
- let link = link.to_reg();
3121
- let tls_symbol = match &info.tls_symbol {
3122
- None => "".to_string(),
3123
- Some(SymbolReloc::TlsGd { name }) => {
3124
- format!(":tls_gdcall:{}", name.display(None))
3125
- }
3126
- _ => unreachable!(),
3127
- };
3128
- debug_assert_eq!(link, gpr(14));
3129
- format!(
3130
- "brasl {}, {}{}",
3131
- show_reg(link),
3132
- info.dest.display(None),
3133
- tls_symbol
3134
- )
3135
- }
3136
- &Inst::CallInd { link, ref info, .. } => {
3137
- let link = link.to_reg();
3138
- let rn = pretty_print_reg(info.rn);
3139
- debug_assert_eq!(link, gpr(14));
3140
- format!("basr {}, {}", show_reg(link), rn)
3141
- }
3142
- &Inst::Args { ref args } => {
3143
- let mut s = "args".to_string();
3144
- for arg in args {
3145
- let preg = pretty_print_reg(arg.preg);
3146
- let def = pretty_print_reg(arg.vreg.to_reg());
3147
- write!(&mut s, " {}={}", def, preg).unwrap();
3148
- }
3149
- s
3150
- }
3151
- &Inst::Rets { ref rets } => {
3152
- let mut s = "rets".to_string();
3153
- for ret in rets {
3154
- let preg = pretty_print_reg(ret.preg);
3155
- let vreg = pretty_print_reg(ret.vreg);
3156
- write!(&mut s, " {}={}", vreg, preg).unwrap();
3157
- }
3158
- s
3159
- }
3160
- &Inst::Ret { link } => {
3161
- debug_assert_eq!(link, gpr(14));
3162
- let link = show_reg(link);
3163
- format!("br {link}")
3164
- }
3165
- &Inst::Jump { dest } => {
3166
- let dest = dest.to_string();
3167
- format!("jg {}", dest)
3168
- }
3169
- &Inst::IndirectBr { rn, .. } => {
3170
- let rn = pretty_print_reg(rn);
3171
- format!("br {}", rn)
3172
- }
3173
- &Inst::CondBr {
3174
- taken,
3175
- not_taken,
3176
- cond,
3177
- } => {
3178
- let taken = taken.to_string();
3179
- let not_taken = not_taken.to_string();
3180
- let cond = cond.pretty_print_default();
3181
- format!("jg{} {} ; jg {}", cond, taken, not_taken)
3182
- }
3183
- &Inst::OneWayCondBr { target, cond } => {
3184
- let target = target.to_string();
3185
- let cond = cond.pretty_print_default();
3186
- format!("jg{} {}", cond, target)
3187
- }
3188
- &Inst::Debugtrap => ".word 0x0001 # debugtrap".to_string(),
3189
- &Inst::Trap { trap_code } => {
3190
- format!(".word 0x0000 # trap={}", trap_code)
3191
- }
3192
- &Inst::TrapIf { cond, trap_code } => {
3193
- let cond = cond.pretty_print_default();
3194
- format!("jg{} .+2 # trap={}", cond, trap_code)
3195
- }
3196
- &Inst::JTSequence { ridx, ref targets } => {
3197
- let ridx = pretty_print_reg(ridx);
3198
- let rtmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
3199
- // The first entry is the default target, which is not emitted
3200
- // into the jump table, so we skip it here. It is only in the
3201
- // list so MachTerminator will see the potential target.
3202
- let jt_entries: String = targets
3203
- .iter()
3204
- .skip(1)
3205
- .map(|label| format!(" {}", label.to_string()))
3206
- .collect();
3207
- format!(
3208
- concat!(
3209
- "larl {}, 14 ; ",
3210
- "agf {}, 0({}, {}) ; ",
3211
- "br {} ; ",
3212
- "jt_entries{}"
3213
- ),
3214
- rtmp, rtmp, rtmp, ridx, rtmp, jt_entries,
3215
- )
3216
- }
3217
- &Inst::LoadSymbolReloc {
3218
- rd,
3219
- ref symbol_reloc,
3220
- } => {
3221
- let rd = pretty_print_reg(rd.to_reg());
3222
- let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
3223
- let symbol = match &**symbol_reloc {
3224
- SymbolReloc::Absolute { name, offset } => {
3225
- format!("{} + {}", name.display(None), offset)
3226
- }
3227
- SymbolReloc::TlsGd { name } => format!("{}@tlsgd", name.display(None)),
3228
- };
3229
- format!("bras {}, 12 ; data {} ; lg {}, 0({})", tmp, symbol, rd, tmp)
3230
- }
3231
- &Inst::LoadAddr { rd, ref mem } => {
3232
- let rd = pretty_print_reg(rd.to_reg());
3233
- let mem = mem.clone();
3234
- let (mem_str, mem) = mem_finalize_for_show(
3235
- &mem,
3236
- state,
3237
- MemInstType {
3238
- have_d12: true,
3239
- have_d20: true,
3240
- have_pcrel: true,
3241
- have_unaligned_pcrel: true,
3242
- have_index: true,
3243
- },
3244
- );
3245
- let op = match &mem {
3246
- &MemArg::BXD12 { .. } => "la",
3247
- &MemArg::BXD20 { .. } => "lay",
3248
- &MemArg::Label { .. } | &MemArg::Symbol { .. } => "larl",
3249
- _ => unreachable!(),
3250
- };
3251
- let mem = mem.pretty_print_default();
3252
-
3253
- format!("{}{} {}, {}", mem_str, op, rd, mem)
3254
- }
3255
- &Inst::Loop { ref body, cond } => {
3256
- let body = body
3257
- .into_iter()
3258
- .map(|inst| inst.print_with_state(state))
3259
- .collect::<Vec<_>>()
3260
- .join(" ; ");
3261
- let cond = cond.pretty_print_default();
3262
- format!("0: {} ; jg{} 0b ; 1:", body, cond)
3263
- }
3264
- &Inst::CondBreak { cond } => {
3265
- let cond = cond.pretty_print_default();
3266
- format!("jg{} 1f", cond)
3267
- }
3268
- &Inst::Unwind { ref inst } => {
3269
- format!("unwind {:?}", inst)
3270
- }
3271
- &Inst::DummyUse { reg } => {
3272
- let reg = pretty_print_reg(reg);
3273
- format!("dummy_use {}", reg)
3274
- }
3275
- }
3276
- }
3277
- }
3278
-
3279
- //=============================================================================
3280
- // Label fixups and jump veneers.
3281
-
3282
- /// Different forms of label references for different instruction formats.
3283
- #[derive(Clone, Copy, Debug, PartialEq, Eq)]
3284
- pub enum LabelUse {
3285
- #[allow(dead_code)]
3286
- /// RI-format branch. 16-bit signed offset. PC-relative, offset is imm << 1.
3287
- BranchRI,
3288
- /// RIL-format branch. 32-bit signed offset. PC-relative, offset is imm << 1.
3289
- BranchRIL,
3290
- /// 32-bit PC relative constant offset (from address of constant itself),
3291
- /// signed. Used in jump tables.
3292
- PCRel32,
3293
- /// 32-bit PC relative constant offset (from address of call instruction),
3294
- /// signed. Offset is imm << 1. Used for call relocations.
3295
- PCRel32Dbl,
3296
- }
3297
-
3298
- impl MachInstLabelUse for LabelUse {
3299
- /// Alignment for veneer code.
3300
- const ALIGN: CodeOffset = 2;
3301
-
3302
- /// Maximum PC-relative range (positive), inclusive.
3303
- fn max_pos_range(self) -> CodeOffset {
3304
- match self {
3305
- // 16-bit signed immediate, left-shifted by 1.
3306
- LabelUse::BranchRI => ((1 << 15) - 1) << 1,
3307
- // 32-bit signed immediate, left-shifted by 1.
3308
- LabelUse::BranchRIL => 0xffff_fffe,
3309
- // 32-bit signed immediate.
3310
- LabelUse::PCRel32 => 0x7fff_ffff,
3311
- // 32-bit signed immediate, left-shifted by 1, offset by 2.
3312
- LabelUse::PCRel32Dbl => 0xffff_fffc,
3313
- }
3314
- }
3315
-
3316
- /// Maximum PC-relative range (negative).
3317
- fn max_neg_range(self) -> CodeOffset {
3318
- match self {
3319
- // 16-bit signed immediate, left-shifted by 1.
3320
- LabelUse::BranchRI => (1 << 15) << 1,
3321
- // 32-bit signed immediate, left-shifted by 1.
3322
- // NOTE: This should be 4GB, but CodeOffset is only u32.
3323
- LabelUse::BranchRIL => 0xffff_ffff,
3324
- // 32-bit signed immediate.
3325
- LabelUse::PCRel32 => 0x8000_0000,
3326
- // 32-bit signed immediate, left-shifted by 1, offset by 2.
3327
- // NOTE: This should be 4GB + 2, but CodeOffset is only u32.
3328
- LabelUse::PCRel32Dbl => 0xffff_ffff,
3329
- }
3330
- }
3331
-
3332
- /// Size of window into code needed to do the patch.
3333
- fn patch_size(self) -> CodeOffset {
3334
- match self {
3335
- LabelUse::BranchRI => 4,
3336
- LabelUse::BranchRIL => 6,
3337
- LabelUse::PCRel32 => 4,
3338
- LabelUse::PCRel32Dbl => 4,
3339
- }
3340
- }
3341
-
3342
- /// Perform the patch.
3343
- fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
3344
- let pc_rel = (label_offset as i64) - (use_offset as i64);
3345
- debug_assert!(pc_rel <= self.max_pos_range() as i64);
3346
- debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
3347
- debug_assert!(pc_rel & 1 == 0);
3348
- let pc_rel_shifted = pc_rel >> 1;
3349
-
3350
- match self {
3351
- LabelUse::BranchRI => {
3352
- buffer[2..4].clone_from_slice(&u16::to_be_bytes(pc_rel_shifted as u16));
3353
- }
3354
- LabelUse::BranchRIL => {
3355
- buffer[2..6].clone_from_slice(&u32::to_be_bytes(pc_rel_shifted as u32));
3356
- }
3357
- LabelUse::PCRel32 => {
3358
- let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
3359
- let insn_word = insn_word.wrapping_add(pc_rel as u32);
3360
- buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
3361
- }
3362
- LabelUse::PCRel32Dbl => {
3363
- let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
3364
- let insn_word = insn_word.wrapping_add((pc_rel_shifted + 1) as u32);
3365
- buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
3366
- }
3367
- }
3368
- }
3369
-
3370
- /// Is a veneer supported for this label reference type?
3371
- fn supports_veneer(self) -> bool {
3372
- false
3373
- }
3374
-
3375
- /// How large is the veneer, if supported?
3376
- fn veneer_size(self) -> CodeOffset {
3377
- 0
3378
- }
3379
-
3380
- fn worst_case_veneer_size() -> CodeOffset {
3381
- 0
3382
- }
3383
-
3384
- /// Generate a veneer into the buffer, given that this veneer is at `veneer_offset`, and return
3385
- /// an offset and label-use for the veneer's use of the original label.
3386
- fn generate_veneer(
3387
- self,
3388
- _buffer: &mut [u8],
3389
- _veneer_offset: CodeOffset,
3390
- ) -> (CodeOffset, LabelUse) {
3391
- unreachable!();
3392
- }
3393
-
3394
- fn from_reloc(reloc: Reloc, addend: Addend) -> Option<Self> {
3395
- match (reloc, addend) {
3396
- (Reloc::S390xPCRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
3397
- (Reloc::S390xPLTRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
3398
- _ => None,
3399
- }
3400
- }
3401
- }