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
@@ -0,0 +1,3395 @@
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 { .. } | Inst::CallInd { .. } => true,
1077
+ _ => false,
1078
+ }
1079
+ }
1080
+
1081
+ fn gen_move(to_reg: Writable<Reg>, from_reg: Reg, ty: Type) -> Inst {
1082
+ assert!(ty.bits() <= 128);
1083
+ if ty.bits() <= 32 {
1084
+ Inst::mov32(to_reg, from_reg)
1085
+ } else if ty.bits() <= 64 {
1086
+ Inst::mov64(to_reg, from_reg)
1087
+ } else {
1088
+ Inst::mov128(to_reg, from_reg)
1089
+ }
1090
+ }
1091
+
1092
+ fn gen_nop(preferred_size: usize) -> Inst {
1093
+ if preferred_size == 0 {
1094
+ Inst::Nop0
1095
+ } else {
1096
+ // We can't give a NOP (or any insn) < 2 bytes.
1097
+ assert!(preferred_size >= 2);
1098
+ Inst::Nop2
1099
+ }
1100
+ }
1101
+
1102
+ fn rc_for_type(ty: Type) -> CodegenResult<(&'static [RegClass], &'static [Type])> {
1103
+ match ty {
1104
+ types::I8 => Ok((&[RegClass::Int], &[types::I8])),
1105
+ types::I16 => Ok((&[RegClass::Int], &[types::I16])),
1106
+ types::I32 => Ok((&[RegClass::Int], &[types::I32])),
1107
+ types::I64 => Ok((&[RegClass::Int], &[types::I64])),
1108
+ types::R32 => panic!("32-bit reftype pointer should never be seen on s390x"),
1109
+ types::R64 => Ok((&[RegClass::Int], &[types::R64])),
1110
+ types::F32 => Ok((&[RegClass::Float], &[types::F32])),
1111
+ types::F64 => Ok((&[RegClass::Float], &[types::F64])),
1112
+ types::I128 => Ok((&[RegClass::Float], &[types::I128])),
1113
+ _ if ty.is_vector() && ty.bits() == 128 => Ok((&[RegClass::Float], &[types::I8X16])),
1114
+ _ => Err(CodegenError::Unsupported(format!(
1115
+ "Unexpected SSA-value type: {}",
1116
+ ty
1117
+ ))),
1118
+ }
1119
+ }
1120
+
1121
+ fn canonical_type_for_rc(rc: RegClass) -> Type {
1122
+ match rc {
1123
+ RegClass::Int => types::I64,
1124
+ RegClass::Float => types::I8X16,
1125
+ RegClass::Vector => unreachable!(),
1126
+ }
1127
+ }
1128
+
1129
+ fn gen_jump(target: MachLabel) -> Inst {
1130
+ Inst::Jump { dest: target }
1131
+ }
1132
+
1133
+ fn worst_case_size() -> CodeOffset {
1134
+ // The maximum size, in bytes, of any `Inst`'s emitted code. We have at least one case of
1135
+ // an 8-instruction sequence (saturating int-to-float conversions) with three embedded
1136
+ // 64-bit f64 constants.
1137
+ //
1138
+ // Note that inline jump-tables handle island/pool insertion separately, so we do not need
1139
+ // to account for them here (otherwise the worst case would be 2^31 * 4, clearly not
1140
+ // feasible for other reasons).
1141
+ 44
1142
+ }
1143
+
1144
+ fn ref_type_regclass(_: &settings::Flags) -> RegClass {
1145
+ RegClass::Int
1146
+ }
1147
+
1148
+ fn gen_dummy_use(reg: Reg) -> Inst {
1149
+ Inst::DummyUse { reg }
1150
+ }
1151
+
1152
+ fn function_alignment() -> FunctionAlignment {
1153
+ FunctionAlignment {
1154
+ minimum: 4,
1155
+ preferred: 4,
1156
+ }
1157
+ }
1158
+ }
1159
+
1160
+ //=============================================================================
1161
+ // Pretty-printing of instructions.
1162
+
1163
+ fn mem_finalize_for_show(mem: &MemArg, state: &EmitState, mi: MemInstType) -> (String, MemArg) {
1164
+ let (mem_insts, mem) = mem_finalize(mem, state, mi);
1165
+ let mut mem_str = mem_insts
1166
+ .into_iter()
1167
+ .map(|inst| inst.print_with_state(&mut EmitState::default()))
1168
+ .collect::<Vec<_>>()
1169
+ .join(" ; ");
1170
+ if !mem_str.is_empty() {
1171
+ mem_str += " ; ";
1172
+ }
1173
+
1174
+ (mem_str, mem)
1175
+ }
1176
+
1177
+ impl Inst {
1178
+ fn print_with_state(&self, state: &mut EmitState) -> String {
1179
+ match self {
1180
+ &Inst::Nop0 => "nop-zero-len".to_string(),
1181
+ &Inst::Nop2 => "nop".to_string(),
1182
+ &Inst::AluRRR { alu_op, rd, rn, rm } => {
1183
+ let (op, have_rr) = match alu_op {
1184
+ ALUOp::Add32 => ("ark", true),
1185
+ ALUOp::Add64 => ("agrk", true),
1186
+ ALUOp::AddLogical32 => ("alrk", true),
1187
+ ALUOp::AddLogical64 => ("algrk", true),
1188
+ ALUOp::Sub32 => ("srk", true),
1189
+ ALUOp::Sub64 => ("sgrk", true),
1190
+ ALUOp::SubLogical32 => ("slrk", true),
1191
+ ALUOp::SubLogical64 => ("slgrk", true),
1192
+ ALUOp::Mul32 => ("msrkc", true),
1193
+ ALUOp::Mul64 => ("msgrkc", true),
1194
+ ALUOp::And32 => ("nrk", true),
1195
+ ALUOp::And64 => ("ngrk", true),
1196
+ ALUOp::Orr32 => ("ork", true),
1197
+ ALUOp::Orr64 => ("ogrk", true),
1198
+ ALUOp::Xor32 => ("xrk", true),
1199
+ ALUOp::Xor64 => ("xgrk", true),
1200
+ ALUOp::NotAnd32 => ("nnrk", false),
1201
+ ALUOp::NotAnd64 => ("nngrk", false),
1202
+ ALUOp::NotOrr32 => ("nork", false),
1203
+ ALUOp::NotOrr64 => ("nogrk", false),
1204
+ ALUOp::NotXor32 => ("nxrk", false),
1205
+ ALUOp::NotXor64 => ("nxgrk", false),
1206
+ ALUOp::AndNot32 => ("ncrk", false),
1207
+ ALUOp::AndNot64 => ("ncgrk", false),
1208
+ ALUOp::OrrNot32 => ("ocrk", false),
1209
+ ALUOp::OrrNot64 => ("ocgrk", false),
1210
+ _ => unreachable!(),
1211
+ };
1212
+ if have_rr && rd.to_reg() == rn {
1213
+ let inst = Inst::AluRR {
1214
+ alu_op,
1215
+ rd,
1216
+ ri: rd.to_reg(),
1217
+ rm,
1218
+ };
1219
+ return inst.print_with_state(state);
1220
+ }
1221
+ let rd = pretty_print_reg(rd.to_reg());
1222
+ let rn = pretty_print_reg(rn);
1223
+ let rm = pretty_print_reg(rm);
1224
+ format!("{} {}, {}, {}", op, rd, rn, rm)
1225
+ }
1226
+ &Inst::AluRRSImm16 {
1227
+ alu_op,
1228
+ rd,
1229
+ rn,
1230
+ imm,
1231
+ } => {
1232
+ if rd.to_reg() == rn {
1233
+ let inst = Inst::AluRSImm16 {
1234
+ alu_op,
1235
+ rd,
1236
+ ri: rd.to_reg(),
1237
+ imm,
1238
+ };
1239
+ return inst.print_with_state(state);
1240
+ }
1241
+ let op = match alu_op {
1242
+ ALUOp::Add32 => "ahik",
1243
+ ALUOp::Add64 => "aghik",
1244
+ _ => unreachable!(),
1245
+ };
1246
+ let rd = pretty_print_reg(rd.to_reg());
1247
+ let rn = pretty_print_reg(rn);
1248
+ format!("{} {}, {}, {}", op, rd, rn, imm)
1249
+ }
1250
+ &Inst::AluRR { alu_op, rd, ri, rm } => {
1251
+ let op = match alu_op {
1252
+ ALUOp::Add32 => "ar",
1253
+ ALUOp::Add64 => "agr",
1254
+ ALUOp::Add64Ext32 => "agfr",
1255
+ ALUOp::AddLogical32 => "alr",
1256
+ ALUOp::AddLogical64 => "algr",
1257
+ ALUOp::AddLogical64Ext32 => "algfr",
1258
+ ALUOp::Sub32 => "sr",
1259
+ ALUOp::Sub64 => "sgr",
1260
+ ALUOp::Sub64Ext32 => "sgfr",
1261
+ ALUOp::SubLogical32 => "slr",
1262
+ ALUOp::SubLogical64 => "slgr",
1263
+ ALUOp::SubLogical64Ext32 => "slgfr",
1264
+ ALUOp::Mul32 => "msr",
1265
+ ALUOp::Mul64 => "msgr",
1266
+ ALUOp::Mul64Ext32 => "msgfr",
1267
+ ALUOp::And32 => "nr",
1268
+ ALUOp::And64 => "ngr",
1269
+ ALUOp::Orr32 => "or",
1270
+ ALUOp::Orr64 => "ogr",
1271
+ ALUOp::Xor32 => "xr",
1272
+ ALUOp::Xor64 => "xgr",
1273
+ _ => unreachable!(),
1274
+ };
1275
+ let rd = pretty_print_reg_mod(rd, ri);
1276
+ let rm = pretty_print_reg(rm);
1277
+ format!("{} {}, {}", op, rd, rm)
1278
+ }
1279
+ &Inst::AluRX {
1280
+ alu_op,
1281
+ rd,
1282
+ ri,
1283
+ ref mem,
1284
+ } => {
1285
+ let (opcode_rx, opcode_rxy) = match alu_op {
1286
+ ALUOp::Add32 => (Some("a"), Some("ay")),
1287
+ ALUOp::Add32Ext16 => (Some("ah"), Some("ahy")),
1288
+ ALUOp::Add64 => (None, Some("ag")),
1289
+ ALUOp::Add64Ext16 => (None, Some("agh")),
1290
+ ALUOp::Add64Ext32 => (None, Some("agf")),
1291
+ ALUOp::AddLogical32 => (Some("al"), Some("aly")),
1292
+ ALUOp::AddLogical64 => (None, Some("alg")),
1293
+ ALUOp::AddLogical64Ext32 => (None, Some("algf")),
1294
+ ALUOp::Sub32 => (Some("s"), Some("sy")),
1295
+ ALUOp::Sub32Ext16 => (Some("sh"), Some("shy")),
1296
+ ALUOp::Sub64 => (None, Some("sg")),
1297
+ ALUOp::Sub64Ext16 => (None, Some("sgh")),
1298
+ ALUOp::Sub64Ext32 => (None, Some("sgf")),
1299
+ ALUOp::SubLogical32 => (Some("sl"), Some("sly")),
1300
+ ALUOp::SubLogical64 => (None, Some("slg")),
1301
+ ALUOp::SubLogical64Ext32 => (None, Some("slgf")),
1302
+ ALUOp::Mul32 => (Some("ms"), Some("msy")),
1303
+ ALUOp::Mul32Ext16 => (Some("mh"), Some("mhy")),
1304
+ ALUOp::Mul64 => (None, Some("msg")),
1305
+ ALUOp::Mul64Ext16 => (None, Some("mgh")),
1306
+ ALUOp::Mul64Ext32 => (None, Some("msgf")),
1307
+ ALUOp::And32 => (Some("n"), Some("ny")),
1308
+ ALUOp::And64 => (None, Some("ng")),
1309
+ ALUOp::Orr32 => (Some("o"), Some("oy")),
1310
+ ALUOp::Orr64 => (None, Some("og")),
1311
+ ALUOp::Xor32 => (Some("x"), Some("xy")),
1312
+ ALUOp::Xor64 => (None, Some("xg")),
1313
+ _ => unreachable!(),
1314
+ };
1315
+
1316
+ let rd = pretty_print_reg_mod(rd, ri);
1317
+ let mem = mem.clone();
1318
+ let (mem_str, mem) = mem_finalize_for_show(
1319
+ &mem,
1320
+ state,
1321
+ MemInstType {
1322
+ have_d12: opcode_rx.is_some(),
1323
+ have_d20: opcode_rxy.is_some(),
1324
+ have_pcrel: false,
1325
+ have_unaligned_pcrel: false,
1326
+ have_index: true,
1327
+ },
1328
+ );
1329
+ let op = match &mem {
1330
+ &MemArg::BXD12 { .. } => opcode_rx,
1331
+ &MemArg::BXD20 { .. } => opcode_rxy,
1332
+ _ => unreachable!(),
1333
+ };
1334
+ let mem = mem.pretty_print_default();
1335
+
1336
+ format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1337
+ }
1338
+ &Inst::AluRSImm16 {
1339
+ alu_op,
1340
+ rd,
1341
+ ri,
1342
+ imm,
1343
+ } => {
1344
+ let op = match alu_op {
1345
+ ALUOp::Add32 => "ahi",
1346
+ ALUOp::Add64 => "aghi",
1347
+ ALUOp::Mul32 => "mhi",
1348
+ ALUOp::Mul64 => "mghi",
1349
+ _ => unreachable!(),
1350
+ };
1351
+ let rd = pretty_print_reg_mod(rd, ri);
1352
+ format!("{} {}, {}", op, rd, imm)
1353
+ }
1354
+ &Inst::AluRSImm32 {
1355
+ alu_op,
1356
+ rd,
1357
+ ri,
1358
+ imm,
1359
+ } => {
1360
+ let op = match alu_op {
1361
+ ALUOp::Add32 => "afi",
1362
+ ALUOp::Add64 => "agfi",
1363
+ ALUOp::Mul32 => "msfi",
1364
+ ALUOp::Mul64 => "msgfi",
1365
+ _ => unreachable!(),
1366
+ };
1367
+ let rd = pretty_print_reg_mod(rd, ri);
1368
+ format!("{} {}, {}", op, rd, imm)
1369
+ }
1370
+ &Inst::AluRUImm32 {
1371
+ alu_op,
1372
+ rd,
1373
+ ri,
1374
+ imm,
1375
+ } => {
1376
+ let op = match alu_op {
1377
+ ALUOp::AddLogical32 => "alfi",
1378
+ ALUOp::AddLogical64 => "algfi",
1379
+ ALUOp::SubLogical32 => "slfi",
1380
+ ALUOp::SubLogical64 => "slgfi",
1381
+ _ => unreachable!(),
1382
+ };
1383
+ let rd = pretty_print_reg_mod(rd, ri);
1384
+ format!("{} {}, {}", op, rd, imm)
1385
+ }
1386
+ &Inst::AluRUImm16Shifted {
1387
+ alu_op,
1388
+ rd,
1389
+ ri,
1390
+ imm,
1391
+ } => {
1392
+ let op = match (alu_op, imm.shift) {
1393
+ (ALUOp::And32, 0) => "nill",
1394
+ (ALUOp::And32, 1) => "nilh",
1395
+ (ALUOp::And64, 0) => "nill",
1396
+ (ALUOp::And64, 1) => "nilh",
1397
+ (ALUOp::And64, 2) => "nihl",
1398
+ (ALUOp::And64, 3) => "nihh",
1399
+ (ALUOp::Orr32, 0) => "oill",
1400
+ (ALUOp::Orr32, 1) => "oilh",
1401
+ (ALUOp::Orr64, 0) => "oill",
1402
+ (ALUOp::Orr64, 1) => "oilh",
1403
+ (ALUOp::Orr64, 2) => "oihl",
1404
+ (ALUOp::Orr64, 3) => "oihh",
1405
+ _ => unreachable!(),
1406
+ };
1407
+ let rd = pretty_print_reg_mod(rd, ri);
1408
+ format!("{} {}, {}", op, rd, imm.bits)
1409
+ }
1410
+ &Inst::AluRUImm32Shifted {
1411
+ alu_op,
1412
+ rd,
1413
+ ri,
1414
+ imm,
1415
+ } => {
1416
+ let op = match (alu_op, imm.shift) {
1417
+ (ALUOp::And32, 0) => "nilf",
1418
+ (ALUOp::And64, 0) => "nilf",
1419
+ (ALUOp::And64, 1) => "nihf",
1420
+ (ALUOp::Orr32, 0) => "oilf",
1421
+ (ALUOp::Orr64, 0) => "oilf",
1422
+ (ALUOp::Orr64, 1) => "oihf",
1423
+ (ALUOp::Xor32, 0) => "xilf",
1424
+ (ALUOp::Xor64, 0) => "xilf",
1425
+ (ALUOp::Xor64, 1) => "xihf",
1426
+ _ => unreachable!(),
1427
+ };
1428
+ let rd = pretty_print_reg_mod(rd, ri);
1429
+ format!("{} {}, {}", op, rd, imm.bits)
1430
+ }
1431
+ &Inst::SMulWide { rd, rn, rm } => {
1432
+ let op = "mgrk";
1433
+ let rn = pretty_print_reg(rn);
1434
+ let rm = pretty_print_reg(rm);
1435
+ let rd = pretty_print_regpair(rd.to_regpair());
1436
+ format!("{} {}, {}, {}", op, rd, rn, rm)
1437
+ }
1438
+ &Inst::UMulWide { rd, ri, rn } => {
1439
+ let op = "mlgr";
1440
+ let rn = pretty_print_reg(rn);
1441
+ let rd = pretty_print_regpair_mod_lo(rd, ri);
1442
+ format!("{} {}, {}", op, rd, rn)
1443
+ }
1444
+ &Inst::SDivMod32 { rd, ri, rn } => {
1445
+ let op = "dsgfr";
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::SDivMod64 { rd, ri, rn } => {
1451
+ let op = "dsgr";
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::UDivMod32 { rd, ri, rn } => {
1457
+ let op = "dlr";
1458
+ let rn = pretty_print_reg(rn);
1459
+ let rd = pretty_print_regpair_mod(rd, ri);
1460
+ format!("{} {}, {}", op, rd, rn)
1461
+ }
1462
+ &Inst::UDivMod64 { rd, ri, rn } => {
1463
+ let op = "dlgr";
1464
+ let rn = pretty_print_reg(rn);
1465
+ let rd = pretty_print_regpair_mod(rd, ri);
1466
+ format!("{} {}, {}", op, rd, rn)
1467
+ }
1468
+ &Inst::Flogr { rd, rn } => {
1469
+ let op = "flogr";
1470
+ let rn = pretty_print_reg(rn);
1471
+ let rd = pretty_print_regpair(rd.to_regpair());
1472
+ format!("{} {}, {}", op, rd, rn)
1473
+ }
1474
+ &Inst::ShiftRR {
1475
+ shift_op,
1476
+ rd,
1477
+ rn,
1478
+ shift_imm,
1479
+ shift_reg,
1480
+ } => {
1481
+ let op = match shift_op {
1482
+ ShiftOp::RotL32 => "rll",
1483
+ ShiftOp::RotL64 => "rllg",
1484
+ ShiftOp::LShL32 => "sllk",
1485
+ ShiftOp::LShL64 => "sllg",
1486
+ ShiftOp::LShR32 => "srlk",
1487
+ ShiftOp::LShR64 => "srlg",
1488
+ ShiftOp::AShR32 => "srak",
1489
+ ShiftOp::AShR64 => "srag",
1490
+ };
1491
+ let rd = pretty_print_reg(rd.to_reg());
1492
+ let rn = pretty_print_reg(rn);
1493
+ let shift_reg = if shift_reg != zero_reg() {
1494
+ format!("({})", pretty_print_reg(shift_reg))
1495
+ } else {
1496
+ "".to_string()
1497
+ };
1498
+ format!("{} {}, {}, {}{}", op, rd, rn, shift_imm, shift_reg)
1499
+ }
1500
+ &Inst::RxSBG {
1501
+ op,
1502
+ rd,
1503
+ ri,
1504
+ rn,
1505
+ start_bit,
1506
+ end_bit,
1507
+ rotate_amt,
1508
+ } => {
1509
+ let op = match op {
1510
+ RxSBGOp::Insert => "risbgn",
1511
+ RxSBGOp::And => "rnsbg",
1512
+ RxSBGOp::Or => "rosbg",
1513
+ RxSBGOp::Xor => "rxsbg",
1514
+ };
1515
+ let rd = pretty_print_reg_mod(rd, ri);
1516
+ let rn = pretty_print_reg(rn);
1517
+ format!(
1518
+ "{} {}, {}, {}, {}, {}",
1519
+ op,
1520
+ rd,
1521
+ rn,
1522
+ start_bit,
1523
+ end_bit,
1524
+ (rotate_amt as u8) & 63
1525
+ )
1526
+ }
1527
+ &Inst::RxSBGTest {
1528
+ op,
1529
+ rd,
1530
+ rn,
1531
+ start_bit,
1532
+ end_bit,
1533
+ rotate_amt,
1534
+ } => {
1535
+ let op = match op {
1536
+ RxSBGOp::And => "rnsbg",
1537
+ RxSBGOp::Or => "rosbg",
1538
+ RxSBGOp::Xor => "rxsbg",
1539
+ _ => unreachable!(),
1540
+ };
1541
+ let rd = pretty_print_reg(rd);
1542
+ let rn = pretty_print_reg(rn);
1543
+ format!(
1544
+ "{} {}, {}, {}, {}, {}",
1545
+ op,
1546
+ rd,
1547
+ rn,
1548
+ start_bit | 0x80,
1549
+ end_bit,
1550
+ (rotate_amt as u8) & 63
1551
+ )
1552
+ }
1553
+ &Inst::UnaryRR { op, rd, rn } => {
1554
+ let (op, extra) = match op {
1555
+ UnaryOp::Abs32 => ("lpr", ""),
1556
+ UnaryOp::Abs64 => ("lpgr", ""),
1557
+ UnaryOp::Abs64Ext32 => ("lpgfr", ""),
1558
+ UnaryOp::Neg32 => ("lcr", ""),
1559
+ UnaryOp::Neg64 => ("lcgr", ""),
1560
+ UnaryOp::Neg64Ext32 => ("lcgfr", ""),
1561
+ UnaryOp::PopcntByte => ("popcnt", ""),
1562
+ UnaryOp::PopcntReg => ("popcnt", ", 8"),
1563
+ UnaryOp::BSwap32 => ("lrvr", ""),
1564
+ UnaryOp::BSwap64 => ("lrvgr", ""),
1565
+ };
1566
+ let rd = pretty_print_reg(rd.to_reg());
1567
+ let rn = pretty_print_reg(rn);
1568
+ format!("{} {}, {}{}", op, rd, rn, extra)
1569
+ }
1570
+ &Inst::CmpRR { op, rn, rm } => {
1571
+ let op = match op {
1572
+ CmpOp::CmpS32 => "cr",
1573
+ CmpOp::CmpS64 => "cgr",
1574
+ CmpOp::CmpS64Ext32 => "cgfr",
1575
+ CmpOp::CmpL32 => "clr",
1576
+ CmpOp::CmpL64 => "clgr",
1577
+ CmpOp::CmpL64Ext32 => "clgfr",
1578
+ _ => unreachable!(),
1579
+ };
1580
+ let rn = pretty_print_reg(rn);
1581
+ let rm = pretty_print_reg(rm);
1582
+ format!("{} {}, {}", op, rn, rm)
1583
+ }
1584
+ &Inst::CmpRX { op, rn, ref mem } => {
1585
+ let (opcode_rx, opcode_rxy, opcode_ril) = match op {
1586
+ CmpOp::CmpS32 => (Some("c"), Some("cy"), Some("crl")),
1587
+ CmpOp::CmpS32Ext16 => (Some("ch"), Some("chy"), Some("chrl")),
1588
+ CmpOp::CmpS64 => (None, Some("cg"), Some("cgrl")),
1589
+ CmpOp::CmpS64Ext16 => (None, Some("cgh"), Some("cghrl")),
1590
+ CmpOp::CmpS64Ext32 => (None, Some("cgf"), Some("cgfrl")),
1591
+ CmpOp::CmpL32 => (Some("cl"), Some("cly"), Some("clrl")),
1592
+ CmpOp::CmpL32Ext16 => (None, None, Some("clhrl")),
1593
+ CmpOp::CmpL64 => (None, Some("clg"), Some("clgrl")),
1594
+ CmpOp::CmpL64Ext16 => (None, None, Some("clghrl")),
1595
+ CmpOp::CmpL64Ext32 => (None, Some("clgf"), Some("clgfrl")),
1596
+ };
1597
+
1598
+ let rn = pretty_print_reg(rn);
1599
+ let mem = mem.clone();
1600
+ let (mem_str, mem) = mem_finalize_for_show(
1601
+ &mem,
1602
+ state,
1603
+ MemInstType {
1604
+ have_d12: opcode_rx.is_some(),
1605
+ have_d20: opcode_rxy.is_some(),
1606
+ have_pcrel: opcode_ril.is_some(),
1607
+ have_unaligned_pcrel: false,
1608
+ have_index: true,
1609
+ },
1610
+ );
1611
+ let op = match &mem {
1612
+ &MemArg::BXD12 { .. } => opcode_rx,
1613
+ &MemArg::BXD20 { .. } => opcode_rxy,
1614
+ &MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
1615
+ _ => unreachable!(),
1616
+ };
1617
+ let mem = mem.pretty_print_default();
1618
+
1619
+ format!("{}{} {}, {}", mem_str, op.unwrap(), rn, mem)
1620
+ }
1621
+ &Inst::CmpRSImm16 { op, rn, imm } => {
1622
+ let op = match op {
1623
+ CmpOp::CmpS32 => "chi",
1624
+ CmpOp::CmpS64 => "cghi",
1625
+ _ => unreachable!(),
1626
+ };
1627
+ let rn = pretty_print_reg(rn);
1628
+ format!("{} {}, {}", op, rn, imm)
1629
+ }
1630
+ &Inst::CmpRSImm32 { op, rn, imm } => {
1631
+ let op = match op {
1632
+ CmpOp::CmpS32 => "cfi",
1633
+ CmpOp::CmpS64 => "cgfi",
1634
+ _ => unreachable!(),
1635
+ };
1636
+ let rn = pretty_print_reg(rn);
1637
+ format!("{} {}, {}", op, rn, imm)
1638
+ }
1639
+ &Inst::CmpRUImm32 { op, rn, imm } => {
1640
+ let op = match op {
1641
+ CmpOp::CmpL32 => "clfi",
1642
+ CmpOp::CmpL64 => "clgfi",
1643
+ _ => unreachable!(),
1644
+ };
1645
+ let rn = pretty_print_reg(rn);
1646
+ format!("{} {}, {}", op, rn, imm)
1647
+ }
1648
+ &Inst::CmpTrapRR {
1649
+ op, rn, rm, cond, ..
1650
+ } => {
1651
+ let op = match op {
1652
+ CmpOp::CmpS32 => "crt",
1653
+ CmpOp::CmpS64 => "cgrt",
1654
+ CmpOp::CmpL32 => "clrt",
1655
+ CmpOp::CmpL64 => "clgrt",
1656
+ _ => unreachable!(),
1657
+ };
1658
+ let rn = pretty_print_reg(rn);
1659
+ let rm = pretty_print_reg(rm);
1660
+ let cond = cond.pretty_print_default();
1661
+ format!("{}{} {}, {}", op, cond, rn, rm)
1662
+ }
1663
+ &Inst::CmpTrapRSImm16 {
1664
+ op, rn, imm, cond, ..
1665
+ } => {
1666
+ let op = match op {
1667
+ CmpOp::CmpS32 => "cit",
1668
+ CmpOp::CmpS64 => "cgit",
1669
+ _ => unreachable!(),
1670
+ };
1671
+ let rn = pretty_print_reg(rn);
1672
+ let cond = cond.pretty_print_default();
1673
+ format!("{}{} {}, {}", op, cond, rn, imm)
1674
+ }
1675
+ &Inst::CmpTrapRUImm16 {
1676
+ op, rn, imm, cond, ..
1677
+ } => {
1678
+ let op = match op {
1679
+ CmpOp::CmpL32 => "clfit",
1680
+ CmpOp::CmpL64 => "clgit",
1681
+ _ => unreachable!(),
1682
+ };
1683
+ let rn = pretty_print_reg(rn);
1684
+ let cond = cond.pretty_print_default();
1685
+ format!("{}{} {}, {}", op, cond, rn, imm)
1686
+ }
1687
+ &Inst::AtomicRmw {
1688
+ alu_op,
1689
+ rd,
1690
+ rn,
1691
+ ref mem,
1692
+ } => {
1693
+ let op = match alu_op {
1694
+ ALUOp::Add32 => "laa",
1695
+ ALUOp::Add64 => "laag",
1696
+ ALUOp::AddLogical32 => "laal",
1697
+ ALUOp::AddLogical64 => "laalg",
1698
+ ALUOp::And32 => "lan",
1699
+ ALUOp::And64 => "lang",
1700
+ ALUOp::Orr32 => "lao",
1701
+ ALUOp::Orr64 => "laog",
1702
+ ALUOp::Xor32 => "lax",
1703
+ ALUOp::Xor64 => "laxg",
1704
+ _ => unreachable!(),
1705
+ };
1706
+
1707
+ let rd = pretty_print_reg(rd.to_reg());
1708
+ let rn = pretty_print_reg(rn);
1709
+ let mem = mem.clone();
1710
+ let (mem_str, mem) = mem_finalize_for_show(
1711
+ &mem,
1712
+ state,
1713
+ MemInstType {
1714
+ have_d12: false,
1715
+ have_d20: true,
1716
+ have_pcrel: false,
1717
+ have_unaligned_pcrel: false,
1718
+ have_index: false,
1719
+ },
1720
+ );
1721
+ let mem = mem.pretty_print_default();
1722
+ format!("{}{} {}, {}, {}", mem_str, op, rd, rn, mem)
1723
+ }
1724
+ &Inst::AtomicCas32 {
1725
+ rd,
1726
+ ri,
1727
+ rn,
1728
+ ref mem,
1729
+ }
1730
+ | &Inst::AtomicCas64 {
1731
+ rd,
1732
+ ri,
1733
+ rn,
1734
+ ref mem,
1735
+ } => {
1736
+ let (opcode_rs, opcode_rsy) = match self {
1737
+ &Inst::AtomicCas32 { .. } => (Some("cs"), Some("csy")),
1738
+ &Inst::AtomicCas64 { .. } => (None, Some("csg")),
1739
+ _ => unreachable!(),
1740
+ };
1741
+
1742
+ let rd = pretty_print_reg_mod(rd, ri);
1743
+ let rn = pretty_print_reg(rn);
1744
+ let mem = mem.clone();
1745
+ let (mem_str, mem) = mem_finalize_for_show(
1746
+ &mem,
1747
+ state,
1748
+ MemInstType {
1749
+ have_d12: opcode_rs.is_some(),
1750
+ have_d20: opcode_rsy.is_some(),
1751
+ have_pcrel: false,
1752
+ have_unaligned_pcrel: false,
1753
+ have_index: false,
1754
+ },
1755
+ );
1756
+ let op = match &mem {
1757
+ &MemArg::BXD12 { .. } => opcode_rs,
1758
+ &MemArg::BXD20 { .. } => opcode_rsy,
1759
+ _ => unreachable!(),
1760
+ };
1761
+ let mem = mem.pretty_print_default();
1762
+
1763
+ format!("{}{} {}, {}, {}", mem_str, op.unwrap(), rd, rn, mem)
1764
+ }
1765
+ &Inst::Fence => "bcr 14, 0".to_string(),
1766
+ &Inst::Load32 { rd, ref mem }
1767
+ | &Inst::Load32ZExt8 { rd, ref mem }
1768
+ | &Inst::Load32SExt8 { rd, ref mem }
1769
+ | &Inst::Load32ZExt16 { rd, ref mem }
1770
+ | &Inst::Load32SExt16 { rd, ref mem }
1771
+ | &Inst::Load64 { rd, ref mem }
1772
+ | &Inst::Load64ZExt8 { rd, ref mem }
1773
+ | &Inst::Load64SExt8 { rd, ref mem }
1774
+ | &Inst::Load64ZExt16 { rd, ref mem }
1775
+ | &Inst::Load64SExt16 { rd, ref mem }
1776
+ | &Inst::Load64ZExt32 { rd, ref mem }
1777
+ | &Inst::Load64SExt32 { rd, ref mem }
1778
+ | &Inst::LoadRev16 { rd, ref mem }
1779
+ | &Inst::LoadRev32 { rd, ref mem }
1780
+ | &Inst::LoadRev64 { rd, ref mem } => {
1781
+ let (opcode_rx, opcode_rxy, opcode_ril) = match self {
1782
+ &Inst::Load32 { .. } => (Some("l"), Some("ly"), Some("lrl")),
1783
+ &Inst::Load32ZExt8 { .. } => (None, Some("llc"), None),
1784
+ &Inst::Load32SExt8 { .. } => (None, Some("lb"), None),
1785
+ &Inst::Load32ZExt16 { .. } => (None, Some("llh"), Some("llhrl")),
1786
+ &Inst::Load32SExt16 { .. } => (Some("lh"), Some("lhy"), Some("lhrl")),
1787
+ &Inst::Load64 { .. } => (None, Some("lg"), Some("lgrl")),
1788
+ &Inst::Load64ZExt8 { .. } => (None, Some("llgc"), None),
1789
+ &Inst::Load64SExt8 { .. } => (None, Some("lgb"), None),
1790
+ &Inst::Load64ZExt16 { .. } => (None, Some("llgh"), Some("llghrl")),
1791
+ &Inst::Load64SExt16 { .. } => (None, Some("lgh"), Some("lghrl")),
1792
+ &Inst::Load64ZExt32 { .. } => (None, Some("llgf"), Some("llgfrl")),
1793
+ &Inst::Load64SExt32 { .. } => (None, Some("lgf"), Some("lgfrl")),
1794
+ &Inst::LoadRev16 { .. } => (None, Some("lrvh"), None),
1795
+ &Inst::LoadRev32 { .. } => (None, Some("lrv"), None),
1796
+ &Inst::LoadRev64 { .. } => (None, Some("lrvg"), None),
1797
+ _ => unreachable!(),
1798
+ };
1799
+
1800
+ let rd = pretty_print_reg(rd.to_reg());
1801
+ let mem = mem.clone();
1802
+ let (mem_str, mem) = mem_finalize_for_show(
1803
+ &mem,
1804
+ state,
1805
+ MemInstType {
1806
+ have_d12: opcode_rx.is_some(),
1807
+ have_d20: opcode_rxy.is_some(),
1808
+ have_pcrel: opcode_ril.is_some(),
1809
+ have_unaligned_pcrel: false,
1810
+ have_index: true,
1811
+ },
1812
+ );
1813
+ let op = match &mem {
1814
+ &MemArg::BXD12 { .. } => opcode_rx,
1815
+ &MemArg::BXD20 { .. } => opcode_rxy,
1816
+ &MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
1817
+ _ => unreachable!(),
1818
+ };
1819
+ let mem = mem.pretty_print_default();
1820
+ format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1821
+ }
1822
+ &Inst::Store8 { rd, ref mem }
1823
+ | &Inst::Store16 { rd, ref mem }
1824
+ | &Inst::Store32 { rd, ref mem }
1825
+ | &Inst::Store64 { rd, ref mem }
1826
+ | &Inst::StoreRev16 { rd, ref mem }
1827
+ | &Inst::StoreRev32 { rd, ref mem }
1828
+ | &Inst::StoreRev64 { rd, ref mem } => {
1829
+ let (opcode_rx, opcode_rxy, opcode_ril) = match self {
1830
+ &Inst::Store8 { .. } => (Some("stc"), Some("stcy"), None),
1831
+ &Inst::Store16 { .. } => (Some("sth"), Some("sthy"), Some("sthrl")),
1832
+ &Inst::Store32 { .. } => (Some("st"), Some("sty"), Some("strl")),
1833
+ &Inst::Store64 { .. } => (None, Some("stg"), Some("stgrl")),
1834
+ &Inst::StoreRev16 { .. } => (None, Some("strvh"), None),
1835
+ &Inst::StoreRev32 { .. } => (None, Some("strv"), None),
1836
+ &Inst::StoreRev64 { .. } => (None, Some("strvg"), None),
1837
+ _ => unreachable!(),
1838
+ };
1839
+
1840
+ let rd = pretty_print_reg(rd);
1841
+ let mem = mem.clone();
1842
+ let (mem_str, mem) = mem_finalize_for_show(
1843
+ &mem,
1844
+ state,
1845
+ MemInstType {
1846
+ have_d12: opcode_rx.is_some(),
1847
+ have_d20: opcode_rxy.is_some(),
1848
+ have_pcrel: opcode_ril.is_some(),
1849
+ have_unaligned_pcrel: false,
1850
+ have_index: true,
1851
+ },
1852
+ );
1853
+ let op = match &mem {
1854
+ &MemArg::BXD12 { .. } => opcode_rx,
1855
+ &MemArg::BXD20 { .. } => opcode_rxy,
1856
+ &MemArg::Label { .. } | &MemArg::Symbol { .. } => opcode_ril,
1857
+ _ => unreachable!(),
1858
+ };
1859
+ let mem = mem.pretty_print_default();
1860
+
1861
+ format!("{}{} {}, {}", mem_str, op.unwrap(), rd, mem)
1862
+ }
1863
+ &Inst::StoreImm8 { imm, ref mem } => {
1864
+ let mem = mem.clone();
1865
+ let (mem_str, mem) = mem_finalize_for_show(
1866
+ &mem,
1867
+ state,
1868
+ MemInstType {
1869
+ have_d12: true,
1870
+ have_d20: true,
1871
+ have_pcrel: false,
1872
+ have_unaligned_pcrel: false,
1873
+ have_index: false,
1874
+ },
1875
+ );
1876
+ let op = match &mem {
1877
+ &MemArg::BXD12 { .. } => "mvi",
1878
+ &MemArg::BXD20 { .. } => "mviy",
1879
+ _ => unreachable!(),
1880
+ };
1881
+ let mem = mem.pretty_print_default();
1882
+
1883
+ format!("{}{} {}, {}", mem_str, op, mem, imm)
1884
+ }
1885
+ &Inst::StoreImm16 { imm, ref mem }
1886
+ | &Inst::StoreImm32SExt16 { imm, ref mem }
1887
+ | &Inst::StoreImm64SExt16 { imm, ref mem } => {
1888
+ let mem = mem.clone();
1889
+ let (mem_str, mem) = mem_finalize_for_show(
1890
+ &mem,
1891
+ state,
1892
+ MemInstType {
1893
+ have_d12: false,
1894
+ have_d20: true,
1895
+ have_pcrel: false,
1896
+ have_unaligned_pcrel: false,
1897
+ have_index: false,
1898
+ },
1899
+ );
1900
+ let op = match self {
1901
+ &Inst::StoreImm16 { .. } => "mvhhi",
1902
+ &Inst::StoreImm32SExt16 { .. } => "mvhi",
1903
+ &Inst::StoreImm64SExt16 { .. } => "mvghi",
1904
+ _ => unreachable!(),
1905
+ };
1906
+ let mem = mem.pretty_print_default();
1907
+
1908
+ format!("{}{} {}, {}", mem_str, op, mem, imm)
1909
+ }
1910
+ &Inst::Mvc {
1911
+ ref dst,
1912
+ ref src,
1913
+ len_minus_one,
1914
+ } => {
1915
+ let dst = dst.clone();
1916
+ let src = src.clone();
1917
+ format!(
1918
+ "mvc {}({},{}), {}({})",
1919
+ dst.disp.pretty_print_default(),
1920
+ len_minus_one,
1921
+ show_reg(dst.base),
1922
+ src.disp.pretty_print_default(),
1923
+ show_reg(src.base)
1924
+ )
1925
+ }
1926
+ &Inst::LoadMultiple64 { rt, rt2, ref mem } => {
1927
+ let mem = mem.clone();
1928
+ let (mem_str, mem) = mem_finalize_for_show(
1929
+ &mem,
1930
+ state,
1931
+ MemInstType {
1932
+ have_d12: false,
1933
+ have_d20: true,
1934
+ have_pcrel: false,
1935
+ have_unaligned_pcrel: false,
1936
+ have_index: false,
1937
+ },
1938
+ );
1939
+ let rt = pretty_print_reg(rt.to_reg());
1940
+ let rt2 = pretty_print_reg(rt2.to_reg());
1941
+ let mem = mem.pretty_print_default();
1942
+ format!("{}lmg {}, {}, {}", mem_str, rt, rt2, mem)
1943
+ }
1944
+ &Inst::StoreMultiple64 { rt, rt2, ref mem } => {
1945
+ let mem = mem.clone();
1946
+ let (mem_str, mem) = mem_finalize_for_show(
1947
+ &mem,
1948
+ state,
1949
+ MemInstType {
1950
+ have_d12: false,
1951
+ have_d20: true,
1952
+ have_pcrel: false,
1953
+ have_unaligned_pcrel: false,
1954
+ have_index: false,
1955
+ },
1956
+ );
1957
+ let rt = pretty_print_reg(rt);
1958
+ let rt2 = pretty_print_reg(rt2);
1959
+ let mem = mem.pretty_print_default();
1960
+ format!("{}stmg {}, {}, {}", mem_str, rt, rt2, mem)
1961
+ }
1962
+ &Inst::Mov64 { rd, rm } => {
1963
+ let rd = pretty_print_reg(rd.to_reg());
1964
+ let rm = pretty_print_reg(rm);
1965
+ format!("lgr {}, {}", rd, rm)
1966
+ }
1967
+ &Inst::MovPReg { rd, rm } => {
1968
+ let rd = pretty_print_reg(rd.to_reg());
1969
+ let rm = show_reg(rm.into());
1970
+ format!("lgr {}, {}", rd, rm)
1971
+ }
1972
+ &Inst::Mov32 { rd, rm } => {
1973
+ let rd = pretty_print_reg(rd.to_reg());
1974
+ let rm = pretty_print_reg(rm);
1975
+ format!("lr {}, {}", rd, rm)
1976
+ }
1977
+ &Inst::Mov32Imm { rd, ref imm } => {
1978
+ let rd = pretty_print_reg(rd.to_reg());
1979
+ format!("iilf {}, {}", rd, imm)
1980
+ }
1981
+ &Inst::Mov32SImm16 { rd, ref imm } => {
1982
+ let rd = pretty_print_reg(rd.to_reg());
1983
+ format!("lhi {}, {}", rd, imm)
1984
+ }
1985
+ &Inst::Mov64SImm16 { rd, ref imm } => {
1986
+ let rd = pretty_print_reg(rd.to_reg());
1987
+ format!("lghi {}, {}", rd, imm)
1988
+ }
1989
+ &Inst::Mov64SImm32 { rd, ref imm } => {
1990
+ let rd = pretty_print_reg(rd.to_reg());
1991
+ format!("lgfi {}, {}", rd, imm)
1992
+ }
1993
+ &Inst::Mov64UImm16Shifted { rd, ref imm } => {
1994
+ let rd = pretty_print_reg(rd.to_reg());
1995
+ let op = match imm.shift {
1996
+ 0 => "llill",
1997
+ 1 => "llilh",
1998
+ 2 => "llihl",
1999
+ 3 => "llihh",
2000
+ _ => unreachable!(),
2001
+ };
2002
+ format!("{} {}, {}", op, rd, imm.bits)
2003
+ }
2004
+ &Inst::Mov64UImm32Shifted { rd, ref imm } => {
2005
+ let rd = pretty_print_reg(rd.to_reg());
2006
+ let op = match imm.shift {
2007
+ 0 => "llilf",
2008
+ 1 => "llihf",
2009
+ _ => unreachable!(),
2010
+ };
2011
+ format!("{} {}, {}", op, rd, imm.bits)
2012
+ }
2013
+ &Inst::Insert64UImm16Shifted { rd, ri, ref imm } => {
2014
+ let rd = pretty_print_reg_mod(rd, ri);
2015
+ let op = match imm.shift {
2016
+ 0 => "iill",
2017
+ 1 => "iilh",
2018
+ 2 => "iihl",
2019
+ 3 => "iihh",
2020
+ _ => unreachable!(),
2021
+ };
2022
+ format!("{} {}, {}", op, rd, imm.bits)
2023
+ }
2024
+ &Inst::Insert64UImm32Shifted { rd, ri, ref imm } => {
2025
+ let rd = pretty_print_reg_mod(rd, ri);
2026
+ let op = match imm.shift {
2027
+ 0 => "iilf",
2028
+ 1 => "iihf",
2029
+ _ => unreachable!(),
2030
+ };
2031
+ format!("{} {}, {}", op, rd, imm.bits)
2032
+ }
2033
+ &Inst::LoadAR { rd, ar } => {
2034
+ let rd = pretty_print_reg(rd.to_reg());
2035
+ format!("ear {}, %a{}", rd, ar)
2036
+ }
2037
+ &Inst::InsertAR { rd, ri, ar } => {
2038
+ let rd = pretty_print_reg_mod(rd, ri);
2039
+ format!("ear {}, %a{}", rd, ar)
2040
+ }
2041
+ &Inst::CMov32 { rd, cond, ri, rm } => {
2042
+ let rd = pretty_print_reg_mod(rd, ri);
2043
+ let rm = pretty_print_reg(rm);
2044
+ let cond = cond.pretty_print_default();
2045
+ format!("locr{} {}, {}", cond, rd, rm)
2046
+ }
2047
+ &Inst::CMov64 { 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!("locgr{} {}, {}", cond, rd, rm)
2052
+ }
2053
+ &Inst::CMov32SImm16 {
2054
+ rd,
2055
+ cond,
2056
+ ri,
2057
+ ref imm,
2058
+ } => {
2059
+ let rd = pretty_print_reg_mod(rd, ri);
2060
+ let cond = cond.pretty_print_default();
2061
+ format!("lochi{} {}, {}", cond, rd, imm)
2062
+ }
2063
+ &Inst::CMov64SImm16 {
2064
+ rd,
2065
+ cond,
2066
+ ri,
2067
+ ref imm,
2068
+ } => {
2069
+ let rd = pretty_print_reg_mod(rd, ri);
2070
+ let cond = cond.pretty_print_default();
2071
+ format!("locghi{} {}, {}", cond, rd, imm)
2072
+ }
2073
+ &Inst::FpuMove32 { rd, rn } => {
2074
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2075
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2076
+ if rd_fpr.is_some() && rn_fpr.is_some() {
2077
+ format!("ler {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
2078
+ } else {
2079
+ format!("vlr {}, {}", rd, rn)
2080
+ }
2081
+ }
2082
+ &Inst::FpuMove64 { rd, rn } => {
2083
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2084
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2085
+ if rd_fpr.is_some() && rn_fpr.is_some() {
2086
+ format!("ldr {}, {}", rd_fpr.unwrap(), rn_fpr.unwrap())
2087
+ } else {
2088
+ format!("vlr {}, {}", rd, rn)
2089
+ }
2090
+ }
2091
+ &Inst::FpuCMov32 { rd, cond, rm, .. } => {
2092
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2093
+ let (rm, rm_fpr) = pretty_print_fpr(rm);
2094
+ if rd_fpr.is_some() && rm_fpr.is_some() {
2095
+ let cond = cond.invert().pretty_print_default();
2096
+ format!("j{} 6 ; ler {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
2097
+ } else {
2098
+ let cond = cond.invert().pretty_print_default();
2099
+ format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
2100
+ }
2101
+ }
2102
+ &Inst::FpuCMov64 { rd, cond, rm, .. } => {
2103
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2104
+ let (rm, rm_fpr) = pretty_print_fpr(rm);
2105
+ if rd_fpr.is_some() && rm_fpr.is_some() {
2106
+ let cond = cond.invert().pretty_print_default();
2107
+ format!("j{} 6 ; ldr {}, {}", cond, rd_fpr.unwrap(), rm_fpr.unwrap())
2108
+ } else {
2109
+ let cond = cond.invert().pretty_print_default();
2110
+ format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
2111
+ }
2112
+ }
2113
+ &Inst::FpuRR { fpu_op, rd, rn } => {
2114
+ let (op, op_fpr) = match fpu_op {
2115
+ FPUOp1::Abs32 => ("wflpsb", Some("lpebr")),
2116
+ FPUOp1::Abs64 => ("wflpdb", Some("lpdbr")),
2117
+ FPUOp1::Abs32x4 => ("vflpsb", None),
2118
+ FPUOp1::Abs64x2 => ("vflpdb", None),
2119
+ FPUOp1::Neg32 => ("wflcsb", Some("lcebr")),
2120
+ FPUOp1::Neg64 => ("wflcdb", Some("lcdbr")),
2121
+ FPUOp1::Neg32x4 => ("vflcsb", None),
2122
+ FPUOp1::Neg64x2 => ("vflcdb", None),
2123
+ FPUOp1::NegAbs32 => ("wflnsb", Some("lnebr")),
2124
+ FPUOp1::NegAbs64 => ("wflndb", Some("lndbr")),
2125
+ FPUOp1::NegAbs32x4 => ("vflnsb", None),
2126
+ FPUOp1::NegAbs64x2 => ("vflndb", None),
2127
+ FPUOp1::Sqrt32 => ("wfsqsb", Some("sqebr")),
2128
+ FPUOp1::Sqrt64 => ("wfsqdb", Some("sqdbr")),
2129
+ FPUOp1::Sqrt32x4 => ("vfsqsb", None),
2130
+ FPUOp1::Sqrt64x2 => ("vfsqdb", None),
2131
+ FPUOp1::Cvt32To64 => ("wldeb", Some("ldebr")),
2132
+ FPUOp1::Cvt32x4To64x2 => ("vldeb", None),
2133
+ };
2134
+
2135
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2136
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2137
+ if op_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
2138
+ format!(
2139
+ "{} {}, {}",
2140
+ op_fpr.unwrap(),
2141
+ rd_fpr.unwrap(),
2142
+ rn_fpr.unwrap()
2143
+ )
2144
+ } else if op.starts_with('w') {
2145
+ format!("{} {}, {}", op, rd_fpr.unwrap_or(rd), rn_fpr.unwrap_or(rn))
2146
+ } else {
2147
+ format!("{} {}, {}", op, rd, rn)
2148
+ }
2149
+ }
2150
+ &Inst::FpuRRR { fpu_op, rd, rn, rm } => {
2151
+ let (op, opt_m6, op_fpr) = match fpu_op {
2152
+ FPUOp2::Add32 => ("wfasb", "", Some("aebr")),
2153
+ FPUOp2::Add64 => ("wfadb", "", Some("adbr")),
2154
+ FPUOp2::Add32x4 => ("vfasb", "", None),
2155
+ FPUOp2::Add64x2 => ("vfadb", "", None),
2156
+ FPUOp2::Sub32 => ("wfssb", "", Some("sebr")),
2157
+ FPUOp2::Sub64 => ("wfsdb", "", Some("sdbr")),
2158
+ FPUOp2::Sub32x4 => ("vfssb", "", None),
2159
+ FPUOp2::Sub64x2 => ("vfsdb", "", None),
2160
+ FPUOp2::Mul32 => ("wfmsb", "", Some("meebr")),
2161
+ FPUOp2::Mul64 => ("wfmdb", "", Some("mdbr")),
2162
+ FPUOp2::Mul32x4 => ("vfmsb", "", None),
2163
+ FPUOp2::Mul64x2 => ("vfmdb", "", None),
2164
+ FPUOp2::Div32 => ("wfdsb", "", Some("debr")),
2165
+ FPUOp2::Div64 => ("wfddb", "", Some("ddbr")),
2166
+ FPUOp2::Div32x4 => ("vfdsb", "", None),
2167
+ FPUOp2::Div64x2 => ("vfddb", "", None),
2168
+ FPUOp2::Max32 => ("wfmaxsb", ", 1", None),
2169
+ FPUOp2::Max64 => ("wfmaxdb", ", 1", None),
2170
+ FPUOp2::Max32x4 => ("vfmaxsb", ", 1", None),
2171
+ FPUOp2::Max64x2 => ("vfmaxdb", ", 1", None),
2172
+ FPUOp2::Min32 => ("wfminsb", ", 1", None),
2173
+ FPUOp2::Min64 => ("wfmindb", ", 1", None),
2174
+ FPUOp2::Min32x4 => ("vfminsb", ", 1", None),
2175
+ FPUOp2::Min64x2 => ("vfmindb", ", 1", None),
2176
+ FPUOp2::MaxPseudo32 => ("wfmaxsb", ", 3", None),
2177
+ FPUOp2::MaxPseudo64 => ("wfmaxdb", ", 3", None),
2178
+ FPUOp2::MaxPseudo32x4 => ("vfmaxsb", ", 3", None),
2179
+ FPUOp2::MaxPseudo64x2 => ("vfmaxdb", ", 3", None),
2180
+ FPUOp2::MinPseudo32 => ("wfminsb", ", 3", None),
2181
+ FPUOp2::MinPseudo64 => ("wfmindb", ", 3", None),
2182
+ FPUOp2::MinPseudo32x4 => ("vfminsb", ", 3", None),
2183
+ FPUOp2::MinPseudo64x2 => ("vfmindb", ", 3", None),
2184
+ };
2185
+
2186
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2187
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2188
+ let (rm, rm_fpr) = pretty_print_fpr(rm);
2189
+ if op_fpr.is_some() && rd == rn && rd_fpr.is_some() && rm_fpr.is_some() {
2190
+ format!(
2191
+ "{} {}, {}",
2192
+ op_fpr.unwrap(),
2193
+ rd_fpr.unwrap(),
2194
+ rm_fpr.unwrap()
2195
+ )
2196
+ } else if op.starts_with('w') {
2197
+ format!(
2198
+ "{} {}, {}, {}{}",
2199
+ op,
2200
+ rd_fpr.unwrap_or(rd),
2201
+ rn_fpr.unwrap_or(rn),
2202
+ rm_fpr.unwrap_or(rm),
2203
+ opt_m6
2204
+ )
2205
+ } else {
2206
+ format!("{} {}, {}, {}{}", op, rd, rn, rm, opt_m6)
2207
+ }
2208
+ }
2209
+ &Inst::FpuRRRR {
2210
+ fpu_op,
2211
+ rd,
2212
+ rn,
2213
+ rm,
2214
+ ra,
2215
+ } => {
2216
+ let (op, op_fpr) = match fpu_op {
2217
+ FPUOp3::MAdd32 => ("wfmasb", Some("maebr")),
2218
+ FPUOp3::MAdd64 => ("wfmadb", Some("madbr")),
2219
+ FPUOp3::MAdd32x4 => ("vfmasb", None),
2220
+ FPUOp3::MAdd64x2 => ("vfmadb", None),
2221
+ FPUOp3::MSub32 => ("wfmssb", Some("msebr")),
2222
+ FPUOp3::MSub64 => ("wfmsdb", Some("msdbr")),
2223
+ FPUOp3::MSub32x4 => ("vfmssb", None),
2224
+ FPUOp3::MSub64x2 => ("vfmsdb", None),
2225
+ };
2226
+
2227
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2228
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2229
+ let (rm, rm_fpr) = pretty_print_fpr(rm);
2230
+ let (ra, ra_fpr) = pretty_print_fpr(ra);
2231
+ if op_fpr.is_some()
2232
+ && rd == ra
2233
+ && rd_fpr.is_some()
2234
+ && rn_fpr.is_some()
2235
+ && rm_fpr.is_some()
2236
+ {
2237
+ format!(
2238
+ "{} {}, {}, {}",
2239
+ op_fpr.unwrap(),
2240
+ rd_fpr.unwrap(),
2241
+ rn_fpr.unwrap(),
2242
+ rm_fpr.unwrap()
2243
+ )
2244
+ } else if op.starts_with('w') {
2245
+ format!(
2246
+ "{} {}, {}, {}, {}",
2247
+ op,
2248
+ rd_fpr.unwrap_or(rd),
2249
+ rn_fpr.unwrap_or(rn),
2250
+ rm_fpr.unwrap_or(rm),
2251
+ ra_fpr.unwrap_or(ra)
2252
+ )
2253
+ } else {
2254
+ format!("{} {}, {}, {}, {}", op, rd, rn, rm, ra)
2255
+ }
2256
+ }
2257
+ &Inst::FpuCmp32 { rn, rm } => {
2258
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2259
+ let (rm, rm_fpr) = pretty_print_fpr(rm);
2260
+ if rn_fpr.is_some() && rm_fpr.is_some() {
2261
+ format!("cebr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
2262
+ } else {
2263
+ format!("wfcsb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
2264
+ }
2265
+ }
2266
+ &Inst::FpuCmp64 { rn, rm } => {
2267
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2268
+ let (rm, rm_fpr) = pretty_print_fpr(rm);
2269
+ if rn_fpr.is_some() && rm_fpr.is_some() {
2270
+ format!("cdbr {}, {}", rn_fpr.unwrap(), rm_fpr.unwrap())
2271
+ } else {
2272
+ format!("wfcdb {}, {}", rn_fpr.unwrap_or(rn), rm_fpr.unwrap_or(rm))
2273
+ }
2274
+ }
2275
+ &Inst::LoadFpuConst32 { rd, const_data } => {
2276
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2277
+ let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2278
+ if rd_fpr.is_some() {
2279
+ format!(
2280
+ "bras {}, 8 ; data.f32 {} ; le {}, 0({})",
2281
+ tmp,
2282
+ f32::from_bits(const_data),
2283
+ rd_fpr.unwrap(),
2284
+ tmp
2285
+ )
2286
+ } else {
2287
+ format!(
2288
+ "bras {}, 8 ; data.f32 {} ; vlef {}, 0({}), 0",
2289
+ tmp,
2290
+ f32::from_bits(const_data),
2291
+ rd,
2292
+ tmp
2293
+ )
2294
+ }
2295
+ }
2296
+ &Inst::LoadFpuConst64 { rd, const_data } => {
2297
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2298
+ let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2299
+ if rd_fpr.is_some() {
2300
+ format!(
2301
+ "bras {}, 12 ; data.f64 {} ; ld {}, 0({})",
2302
+ tmp,
2303
+ f64::from_bits(const_data),
2304
+ rd_fpr.unwrap(),
2305
+ tmp
2306
+ )
2307
+ } else {
2308
+ format!(
2309
+ "bras {}, 12 ; data.f64 {} ; vleg {}, 0({}), 0",
2310
+ tmp,
2311
+ f64::from_bits(const_data),
2312
+ rd,
2313
+ tmp
2314
+ )
2315
+ }
2316
+ }
2317
+ &Inst::FpuRound { op, mode, rd, rn } => {
2318
+ let mode = match mode {
2319
+ FpuRoundMode::Current => 0,
2320
+ FpuRoundMode::ToNearest => 1,
2321
+ FpuRoundMode::ShorterPrecision => 3,
2322
+ FpuRoundMode::ToNearestTiesToEven => 4,
2323
+ FpuRoundMode::ToZero => 5,
2324
+ FpuRoundMode::ToPosInfinity => 6,
2325
+ FpuRoundMode::ToNegInfinity => 7,
2326
+ };
2327
+ let (opcode, opcode_fpr) = match op {
2328
+ FpuRoundOp::Cvt64To32 => ("wledb", Some("ledbra")),
2329
+ FpuRoundOp::Cvt64x2To32x4 => ("vledb", None),
2330
+ FpuRoundOp::Round32 => ("wfisb", Some("fiebr")),
2331
+ FpuRoundOp::Round64 => ("wfidb", Some("fidbr")),
2332
+ FpuRoundOp::Round32x4 => ("vfisb", None),
2333
+ FpuRoundOp::Round64x2 => ("vfidb", None),
2334
+ FpuRoundOp::ToSInt32 => ("wcfeb", None),
2335
+ FpuRoundOp::ToSInt64 => ("wcgdb", None),
2336
+ FpuRoundOp::ToUInt32 => ("wclfeb", None),
2337
+ FpuRoundOp::ToUInt64 => ("wclgdb", None),
2338
+ FpuRoundOp::ToSInt32x4 => ("vcfeb", None),
2339
+ FpuRoundOp::ToSInt64x2 => ("vcgdb", None),
2340
+ FpuRoundOp::ToUInt32x4 => ("vclfeb", None),
2341
+ FpuRoundOp::ToUInt64x2 => ("vclgdb", None),
2342
+ FpuRoundOp::FromSInt32 => ("wcefb", None),
2343
+ FpuRoundOp::FromSInt64 => ("wcdgb", None),
2344
+ FpuRoundOp::FromUInt32 => ("wcelfb", None),
2345
+ FpuRoundOp::FromUInt64 => ("wcdlgb", None),
2346
+ FpuRoundOp::FromSInt32x4 => ("vcefb", None),
2347
+ FpuRoundOp::FromSInt64x2 => ("vcdgb", None),
2348
+ FpuRoundOp::FromUInt32x4 => ("vcelfb", None),
2349
+ FpuRoundOp::FromUInt64x2 => ("vcdlgb", None),
2350
+ };
2351
+
2352
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2353
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
2354
+ if opcode_fpr.is_some() && rd_fpr.is_some() && rn_fpr.is_some() {
2355
+ format!(
2356
+ "{} {}, {}, {}{}",
2357
+ opcode_fpr.unwrap(),
2358
+ rd_fpr.unwrap(),
2359
+ mode,
2360
+ rn_fpr.unwrap(),
2361
+ if opcode_fpr.unwrap().ends_with('a') {
2362
+ ", 0"
2363
+ } else {
2364
+ ""
2365
+ }
2366
+ )
2367
+ } else if opcode.starts_with('w') {
2368
+ format!(
2369
+ "{} {}, {}, 0, {}",
2370
+ opcode,
2371
+ rd_fpr.unwrap_or(rd),
2372
+ rn_fpr.unwrap_or(rn),
2373
+ mode
2374
+ )
2375
+ } else {
2376
+ format!("{} {}, {}, 0, {}", opcode, rd, rn, mode)
2377
+ }
2378
+ }
2379
+ &Inst::VecRRR { op, rd, rn, rm } => {
2380
+ let op = match op {
2381
+ VecBinaryOp::Add8x16 => "vab",
2382
+ VecBinaryOp::Add16x8 => "vah",
2383
+ VecBinaryOp::Add32x4 => "vaf",
2384
+ VecBinaryOp::Add64x2 => "vag",
2385
+ VecBinaryOp::Add128 => "vaq",
2386
+ VecBinaryOp::Sub8x16 => "vsb",
2387
+ VecBinaryOp::Sub16x8 => "vsh",
2388
+ VecBinaryOp::Sub32x4 => "vsf",
2389
+ VecBinaryOp::Sub64x2 => "vsg",
2390
+ VecBinaryOp::Sub128 => "vsq",
2391
+ VecBinaryOp::Mul8x16 => "vmlb",
2392
+ VecBinaryOp::Mul16x8 => "vmlhw",
2393
+ VecBinaryOp::Mul32x4 => "vmlf",
2394
+ VecBinaryOp::UMulHi8x16 => "vmlhb",
2395
+ VecBinaryOp::UMulHi16x8 => "vmlhh",
2396
+ VecBinaryOp::UMulHi32x4 => "vmlhf",
2397
+ VecBinaryOp::SMulHi8x16 => "vmhb",
2398
+ VecBinaryOp::SMulHi16x8 => "vmhh",
2399
+ VecBinaryOp::SMulHi32x4 => "vmhf",
2400
+ VecBinaryOp::UMulEven8x16 => "vmleb",
2401
+ VecBinaryOp::UMulEven16x8 => "vmleh",
2402
+ VecBinaryOp::UMulEven32x4 => "vmlef",
2403
+ VecBinaryOp::SMulEven8x16 => "vmeb",
2404
+ VecBinaryOp::SMulEven16x8 => "vmeh",
2405
+ VecBinaryOp::SMulEven32x4 => "vmef",
2406
+ VecBinaryOp::UMulOdd8x16 => "vmlob",
2407
+ VecBinaryOp::UMulOdd16x8 => "vmloh",
2408
+ VecBinaryOp::UMulOdd32x4 => "vmlof",
2409
+ VecBinaryOp::SMulOdd8x16 => "vmob",
2410
+ VecBinaryOp::SMulOdd16x8 => "vmoh",
2411
+ VecBinaryOp::SMulOdd32x4 => "vmof",
2412
+ VecBinaryOp::UMax8x16 => "vmxlb",
2413
+ VecBinaryOp::UMax16x8 => "vmxlh",
2414
+ VecBinaryOp::UMax32x4 => "vmxlf",
2415
+ VecBinaryOp::UMax64x2 => "vmxlg",
2416
+ VecBinaryOp::SMax8x16 => "vmxb",
2417
+ VecBinaryOp::SMax16x8 => "vmxh",
2418
+ VecBinaryOp::SMax32x4 => "vmxf",
2419
+ VecBinaryOp::SMax64x2 => "vmxg",
2420
+ VecBinaryOp::UMin8x16 => "vmnlb",
2421
+ VecBinaryOp::UMin16x8 => "vmnlh",
2422
+ VecBinaryOp::UMin32x4 => "vmnlf",
2423
+ VecBinaryOp::UMin64x2 => "vmnlg",
2424
+ VecBinaryOp::SMin8x16 => "vmnb",
2425
+ VecBinaryOp::SMin16x8 => "vmnh",
2426
+ VecBinaryOp::SMin32x4 => "vmnf",
2427
+ VecBinaryOp::SMin64x2 => "vmng",
2428
+ VecBinaryOp::UAvg8x16 => "vavglb",
2429
+ VecBinaryOp::UAvg16x8 => "vavglh",
2430
+ VecBinaryOp::UAvg32x4 => "vavglf",
2431
+ VecBinaryOp::UAvg64x2 => "vavglg",
2432
+ VecBinaryOp::SAvg8x16 => "vavgb",
2433
+ VecBinaryOp::SAvg16x8 => "vavgh",
2434
+ VecBinaryOp::SAvg32x4 => "vavgf",
2435
+ VecBinaryOp::SAvg64x2 => "vavgg",
2436
+ VecBinaryOp::And128 => "vn",
2437
+ VecBinaryOp::Orr128 => "vo",
2438
+ VecBinaryOp::Xor128 => "vx",
2439
+ VecBinaryOp::NotAnd128 => "vnn",
2440
+ VecBinaryOp::NotOrr128 => "vno",
2441
+ VecBinaryOp::NotXor128 => "vnx",
2442
+ VecBinaryOp::AndNot128 => "vnc",
2443
+ VecBinaryOp::OrrNot128 => "voc",
2444
+ VecBinaryOp::BitPermute128 => "vbperm",
2445
+ VecBinaryOp::LShLByByte128 => "vslb",
2446
+ VecBinaryOp::LShRByByte128 => "vsrlb",
2447
+ VecBinaryOp::AShRByByte128 => "vsrab",
2448
+ VecBinaryOp::LShLByBit128 => "vsl",
2449
+ VecBinaryOp::LShRByBit128 => "vsrl",
2450
+ VecBinaryOp::AShRByBit128 => "vsra",
2451
+ VecBinaryOp::Pack16x8 => "vpkh",
2452
+ VecBinaryOp::Pack32x4 => "vpkf",
2453
+ VecBinaryOp::Pack64x2 => "vpkg",
2454
+ VecBinaryOp::PackUSat16x8 => "vpklsh",
2455
+ VecBinaryOp::PackUSat32x4 => "vpklsf",
2456
+ VecBinaryOp::PackUSat64x2 => "vpklsg",
2457
+ VecBinaryOp::PackSSat16x8 => "vpksh",
2458
+ VecBinaryOp::PackSSat32x4 => "vpksf",
2459
+ VecBinaryOp::PackSSat64x2 => "vpksg",
2460
+ VecBinaryOp::MergeLow8x16 => "vmrlb",
2461
+ VecBinaryOp::MergeLow16x8 => "vmrlh",
2462
+ VecBinaryOp::MergeLow32x4 => "vmrlf",
2463
+ VecBinaryOp::MergeLow64x2 => "vmrlg",
2464
+ VecBinaryOp::MergeHigh8x16 => "vmrhb",
2465
+ VecBinaryOp::MergeHigh16x8 => "vmrhh",
2466
+ VecBinaryOp::MergeHigh32x4 => "vmrhf",
2467
+ VecBinaryOp::MergeHigh64x2 => "vmrhg",
2468
+ };
2469
+ let rd = pretty_print_reg(rd.to_reg());
2470
+ let rn = pretty_print_reg(rn);
2471
+ let rm = pretty_print_reg(rm);
2472
+ format!("{} {}, {}, {}", op, rd, rn, rm)
2473
+ }
2474
+ &Inst::VecRR { op, rd, rn } => {
2475
+ let op = match op {
2476
+ VecUnaryOp::Abs8x16 => "vlpb",
2477
+ VecUnaryOp::Abs16x8 => "vlph",
2478
+ VecUnaryOp::Abs32x4 => "vlpf",
2479
+ VecUnaryOp::Abs64x2 => "vlpg",
2480
+ VecUnaryOp::Neg8x16 => "vlcb",
2481
+ VecUnaryOp::Neg16x8 => "vlch",
2482
+ VecUnaryOp::Neg32x4 => "vlcf",
2483
+ VecUnaryOp::Neg64x2 => "vlcg",
2484
+ VecUnaryOp::Popcnt8x16 => "vpopctb",
2485
+ VecUnaryOp::Popcnt16x8 => "vpopcth",
2486
+ VecUnaryOp::Popcnt32x4 => "vpopctf",
2487
+ VecUnaryOp::Popcnt64x2 => "vpopctg",
2488
+ VecUnaryOp::Clz8x16 => "vclzb",
2489
+ VecUnaryOp::Clz16x8 => "vclzh",
2490
+ VecUnaryOp::Clz32x4 => "vclzf",
2491
+ VecUnaryOp::Clz64x2 => "vclzg",
2492
+ VecUnaryOp::Ctz8x16 => "vctzb",
2493
+ VecUnaryOp::Ctz16x8 => "vctzh",
2494
+ VecUnaryOp::Ctz32x4 => "vctzf",
2495
+ VecUnaryOp::Ctz64x2 => "vctzg",
2496
+ VecUnaryOp::UnpackULow8x16 => "vupllb",
2497
+ VecUnaryOp::UnpackULow16x8 => "vupllh",
2498
+ VecUnaryOp::UnpackULow32x4 => "vupllf",
2499
+ VecUnaryOp::UnpackUHigh8x16 => "vuplhb",
2500
+ VecUnaryOp::UnpackUHigh16x8 => "vuplhh",
2501
+ VecUnaryOp::UnpackUHigh32x4 => "vuplhf",
2502
+ VecUnaryOp::UnpackSLow8x16 => "vuplb",
2503
+ VecUnaryOp::UnpackSLow16x8 => "vuplh",
2504
+ VecUnaryOp::UnpackSLow32x4 => "vuplf",
2505
+ VecUnaryOp::UnpackSHigh8x16 => "vuphb",
2506
+ VecUnaryOp::UnpackSHigh16x8 => "vuphh",
2507
+ VecUnaryOp::UnpackSHigh32x4 => "vuphf",
2508
+ };
2509
+ let rd = pretty_print_reg(rd.to_reg());
2510
+ let rn = pretty_print_reg(rn);
2511
+ format!("{} {}, {}", op, rd, rn)
2512
+ }
2513
+ &Inst::VecShiftRR {
2514
+ shift_op,
2515
+ rd,
2516
+ rn,
2517
+ shift_imm,
2518
+ shift_reg,
2519
+ } => {
2520
+ let op = match shift_op {
2521
+ VecShiftOp::RotL8x16 => "verllb",
2522
+ VecShiftOp::RotL16x8 => "verllh",
2523
+ VecShiftOp::RotL32x4 => "verllf",
2524
+ VecShiftOp::RotL64x2 => "verllg",
2525
+ VecShiftOp::LShL8x16 => "veslb",
2526
+ VecShiftOp::LShL16x8 => "veslh",
2527
+ VecShiftOp::LShL32x4 => "veslf",
2528
+ VecShiftOp::LShL64x2 => "veslg",
2529
+ VecShiftOp::LShR8x16 => "vesrlb",
2530
+ VecShiftOp::LShR16x8 => "vesrlh",
2531
+ VecShiftOp::LShR32x4 => "vesrlf",
2532
+ VecShiftOp::LShR64x2 => "vesrlg",
2533
+ VecShiftOp::AShR8x16 => "vesrab",
2534
+ VecShiftOp::AShR16x8 => "vesrah",
2535
+ VecShiftOp::AShR32x4 => "vesraf",
2536
+ VecShiftOp::AShR64x2 => "vesrag",
2537
+ };
2538
+ let rd = pretty_print_reg(rd.to_reg());
2539
+ let rn = pretty_print_reg(rn);
2540
+ let shift_reg = if shift_reg != zero_reg() {
2541
+ format!("({})", pretty_print_reg(shift_reg))
2542
+ } else {
2543
+ "".to_string()
2544
+ };
2545
+ format!("{} {}, {}, {}{}", op, rd, rn, shift_imm, shift_reg)
2546
+ }
2547
+ &Inst::VecSelect { rd, rn, rm, ra } => {
2548
+ let rd = pretty_print_reg(rd.to_reg());
2549
+ let rn = pretty_print_reg(rn);
2550
+ let rm = pretty_print_reg(rm);
2551
+ let ra = pretty_print_reg(ra);
2552
+ format!("vsel {}, {}, {}, {}", rd, rn, rm, ra)
2553
+ }
2554
+ &Inst::VecPermute { rd, rn, rm, ra } => {
2555
+ let rd = pretty_print_reg(rd.to_reg());
2556
+ let rn = pretty_print_reg(rn);
2557
+ let rm = pretty_print_reg(rm);
2558
+ let ra = pretty_print_reg(ra);
2559
+ format!("vperm {}, {}, {}, {}", rd, rn, rm, ra)
2560
+ }
2561
+ &Inst::VecPermuteDWImm {
2562
+ rd,
2563
+ rn,
2564
+ rm,
2565
+ idx1,
2566
+ idx2,
2567
+ } => {
2568
+ let rd = pretty_print_reg(rd.to_reg());
2569
+ let rn = pretty_print_reg(rn);
2570
+ let rm = pretty_print_reg(rm);
2571
+ let m4 = (idx1 & 1) * 4 + (idx2 & 1);
2572
+ format!("vpdi {}, {}, {}, {}", rd, rn, rm, m4)
2573
+ }
2574
+ &Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
2575
+ let op = match op {
2576
+ VecIntCmpOp::CmpEq8x16 => "vceqb",
2577
+ VecIntCmpOp::CmpEq16x8 => "vceqh",
2578
+ VecIntCmpOp::CmpEq32x4 => "vceqf",
2579
+ VecIntCmpOp::CmpEq64x2 => "vceqg",
2580
+ VecIntCmpOp::SCmpHi8x16 => "vchb",
2581
+ VecIntCmpOp::SCmpHi16x8 => "vchh",
2582
+ VecIntCmpOp::SCmpHi32x4 => "vchf",
2583
+ VecIntCmpOp::SCmpHi64x2 => "vchg",
2584
+ VecIntCmpOp::UCmpHi8x16 => "vchlb",
2585
+ VecIntCmpOp::UCmpHi16x8 => "vchlh",
2586
+ VecIntCmpOp::UCmpHi32x4 => "vchlf",
2587
+ VecIntCmpOp::UCmpHi64x2 => "vchlg",
2588
+ };
2589
+ let s = match self {
2590
+ &Inst::VecIntCmp { .. } => "",
2591
+ &Inst::VecIntCmpS { .. } => "s",
2592
+ _ => unreachable!(),
2593
+ };
2594
+ let rd = pretty_print_reg(rd.to_reg());
2595
+ let rn = pretty_print_reg(rn);
2596
+ let rm = pretty_print_reg(rm);
2597
+ format!("{}{} {}, {}, {}", op, s, rd, rn, rm)
2598
+ }
2599
+ &Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
2600
+ let op = match op {
2601
+ VecFloatCmpOp::CmpEq32x4 => "vfcesb",
2602
+ VecFloatCmpOp::CmpEq64x2 => "vfcedb",
2603
+ VecFloatCmpOp::CmpHi32x4 => "vfchsb",
2604
+ VecFloatCmpOp::CmpHi64x2 => "vfchdb",
2605
+ VecFloatCmpOp::CmpHiEq32x4 => "vfchesb",
2606
+ VecFloatCmpOp::CmpHiEq64x2 => "vfchedb",
2607
+ };
2608
+ let s = match self {
2609
+ &Inst::VecFloatCmp { .. } => "",
2610
+ &Inst::VecFloatCmpS { .. } => "s",
2611
+ _ => unreachable!(),
2612
+ };
2613
+ let rd = pretty_print_reg(rd.to_reg());
2614
+ let rn = pretty_print_reg(rn);
2615
+ let rm = pretty_print_reg(rm);
2616
+ format!("{}{} {}, {}, {}", op, s, rd, rn, rm)
2617
+ }
2618
+ &Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
2619
+ let op = match self {
2620
+ &Inst::VecInt128SCmpHi { .. } => "vecg",
2621
+ &Inst::VecInt128UCmpHi { .. } => "veclg",
2622
+ _ => unreachable!(),
2623
+ };
2624
+ let tmp = pretty_print_reg(tmp.to_reg());
2625
+ let rn = pretty_print_reg(rn);
2626
+ let rm = pretty_print_reg(rm);
2627
+ format!(
2628
+ "{} {}, {} ; jne 10 ; vchlgs {}, {}, {}",
2629
+ op, rm, rn, tmp, rn, rm
2630
+ )
2631
+ }
2632
+ &Inst::VecLoad { rd, ref mem }
2633
+ | &Inst::VecLoadRev { rd, ref mem }
2634
+ | &Inst::VecLoadByte16Rev { rd, ref mem }
2635
+ | &Inst::VecLoadByte32Rev { rd, ref mem }
2636
+ | &Inst::VecLoadByte64Rev { rd, ref mem }
2637
+ | &Inst::VecLoadElt16Rev { rd, ref mem }
2638
+ | &Inst::VecLoadElt32Rev { rd, ref mem }
2639
+ | &Inst::VecLoadElt64Rev { rd, ref mem } => {
2640
+ let opcode = match self {
2641
+ &Inst::VecLoad { .. } => "vl",
2642
+ &Inst::VecLoadRev { .. } => "vlbrq",
2643
+ &Inst::VecLoadByte16Rev { .. } => "vlbrh",
2644
+ &Inst::VecLoadByte32Rev { .. } => "vlbrf",
2645
+ &Inst::VecLoadByte64Rev { .. } => "vlbrg",
2646
+ &Inst::VecLoadElt16Rev { .. } => "vlerh",
2647
+ &Inst::VecLoadElt32Rev { .. } => "vlerf",
2648
+ &Inst::VecLoadElt64Rev { .. } => "vlerg",
2649
+ _ => unreachable!(),
2650
+ };
2651
+
2652
+ let rd = pretty_print_reg(rd.to_reg());
2653
+ let mem = mem.clone();
2654
+ let (mem_str, mem) = mem_finalize_for_show(
2655
+ &mem,
2656
+ state,
2657
+ MemInstType {
2658
+ have_d12: true,
2659
+ have_d20: false,
2660
+ have_pcrel: false,
2661
+ have_unaligned_pcrel: false,
2662
+ have_index: true,
2663
+ },
2664
+ );
2665
+ let mem = mem.pretty_print_default();
2666
+ format!("{}{} {}, {}", mem_str, opcode, rd, mem)
2667
+ }
2668
+ &Inst::VecStore { rd, ref mem }
2669
+ | &Inst::VecStoreRev { rd, ref mem }
2670
+ | &Inst::VecStoreByte16Rev { rd, ref mem }
2671
+ | &Inst::VecStoreByte32Rev { rd, ref mem }
2672
+ | &Inst::VecStoreByte64Rev { rd, ref mem }
2673
+ | &Inst::VecStoreElt16Rev { rd, ref mem }
2674
+ | &Inst::VecStoreElt32Rev { rd, ref mem }
2675
+ | &Inst::VecStoreElt64Rev { rd, ref mem } => {
2676
+ let opcode = match self {
2677
+ &Inst::VecStore { .. } => "vst",
2678
+ &Inst::VecStoreRev { .. } => "vstbrq",
2679
+ &Inst::VecStoreByte16Rev { .. } => "vstbrh",
2680
+ &Inst::VecStoreByte32Rev { .. } => "vstbrf",
2681
+ &Inst::VecStoreByte64Rev { .. } => "vstbrg",
2682
+ &Inst::VecStoreElt16Rev { .. } => "vsterh",
2683
+ &Inst::VecStoreElt32Rev { .. } => "vsterf",
2684
+ &Inst::VecStoreElt64Rev { .. } => "vsterg",
2685
+ _ => unreachable!(),
2686
+ };
2687
+
2688
+ let rd = pretty_print_reg(rd);
2689
+ let mem = mem.clone();
2690
+ let (mem_str, mem) = mem_finalize_for_show(
2691
+ &mem,
2692
+ state,
2693
+ MemInstType {
2694
+ have_d12: true,
2695
+ have_d20: false,
2696
+ have_pcrel: false,
2697
+ have_unaligned_pcrel: false,
2698
+ have_index: true,
2699
+ },
2700
+ );
2701
+ let mem = mem.pretty_print_default();
2702
+ format!("{}{} {}, {}", mem_str, opcode, rd, mem)
2703
+ }
2704
+ &Inst::VecLoadReplicate { size, rd, ref mem }
2705
+ | &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
2706
+ let opcode = match (self, size) {
2707
+ (&Inst::VecLoadReplicate { .. }, 8) => "vlrepb",
2708
+ (&Inst::VecLoadReplicate { .. }, 16) => "vlreph",
2709
+ (&Inst::VecLoadReplicate { .. }, 32) => "vlrepf",
2710
+ (&Inst::VecLoadReplicate { .. }, 64) => "vlrepg",
2711
+ (&Inst::VecLoadReplicateRev { .. }, 16) => "vlbrreph",
2712
+ (&Inst::VecLoadReplicateRev { .. }, 32) => "vlbrrepf",
2713
+ (&Inst::VecLoadReplicateRev { .. }, 64) => "vlbrrepg",
2714
+ _ => unreachable!(),
2715
+ };
2716
+
2717
+ let rd = pretty_print_reg(rd.to_reg());
2718
+ let mem = mem.clone();
2719
+ let (mem_str, mem) = mem_finalize_for_show(
2720
+ &mem,
2721
+ state,
2722
+ MemInstType {
2723
+ have_d12: true,
2724
+ have_d20: false,
2725
+ have_pcrel: false,
2726
+ have_unaligned_pcrel: false,
2727
+ have_index: true,
2728
+ },
2729
+ );
2730
+ let mem = mem.pretty_print_default();
2731
+ format!("{}{} {}, {}", mem_str, opcode, rd, mem)
2732
+ }
2733
+ &Inst::VecMov { rd, rn } => {
2734
+ let rd = pretty_print_reg(rd.to_reg());
2735
+ let rn = pretty_print_reg(rn);
2736
+ format!("vlr {}, {}", rd, rn)
2737
+ }
2738
+ &Inst::VecCMov { rd, cond, ri, rm } => {
2739
+ let rd = pretty_print_reg_mod(rd, ri);
2740
+ let rm = pretty_print_reg(rm);
2741
+ let cond = cond.invert().pretty_print_default();
2742
+ format!("j{} 10 ; vlr {}, {}", cond, rd, rm)
2743
+ }
2744
+ &Inst::MovToVec128 { rd, rn, rm } => {
2745
+ let rd = pretty_print_reg(rd.to_reg());
2746
+ let rn = pretty_print_reg(rn);
2747
+ let rm = pretty_print_reg(rm);
2748
+ format!("vlvgp {}, {}, {}", rd, rn, rm)
2749
+ }
2750
+ &Inst::VecLoadConst { rd, const_data } => {
2751
+ let rd = pretty_print_reg(rd.to_reg());
2752
+ let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2753
+ format!(
2754
+ "bras {}, 20 ; data.u128 0x{:032x} ; vl {}, 0({})",
2755
+ tmp, const_data, rd, tmp
2756
+ )
2757
+ }
2758
+ &Inst::VecLoadConstReplicate {
2759
+ size,
2760
+ rd,
2761
+ const_data,
2762
+ } => {
2763
+ let rd = pretty_print_reg(rd.to_reg());
2764
+ let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
2765
+ let (opcode, data) = match size {
2766
+ 32 => ("vlrepf", format!("0x{:08x}", const_data as u32)),
2767
+ 64 => ("vlrepg", format!("0x{:016x}", const_data)),
2768
+ _ => unreachable!(),
2769
+ };
2770
+ format!(
2771
+ "bras {}, {} ; data.u{} {} ; {} {}, 0({})",
2772
+ tmp,
2773
+ 4 + size / 8,
2774
+ size,
2775
+ data,
2776
+ opcode,
2777
+ rd,
2778
+ tmp
2779
+ )
2780
+ }
2781
+ &Inst::VecImmByteMask { rd, mask } => {
2782
+ let rd = pretty_print_reg(rd.to_reg());
2783
+ format!("vgbm {}, {}", rd, mask)
2784
+ }
2785
+ &Inst::VecImmBitMask {
2786
+ size,
2787
+ rd,
2788
+ start_bit,
2789
+ end_bit,
2790
+ } => {
2791
+ let rd = pretty_print_reg(rd.to_reg());
2792
+ let op = match size {
2793
+ 8 => "vgmb",
2794
+ 16 => "vgmh",
2795
+ 32 => "vgmf",
2796
+ 64 => "vgmg",
2797
+ _ => unreachable!(),
2798
+ };
2799
+ format!("{} {}, {}, {}", op, rd, start_bit, end_bit)
2800
+ }
2801
+ &Inst::VecImmReplicate { size, rd, imm } => {
2802
+ let rd = pretty_print_reg(rd.to_reg());
2803
+ let op = match size {
2804
+ 8 => "vrepib",
2805
+ 16 => "vrepih",
2806
+ 32 => "vrepif",
2807
+ 64 => "vrepig",
2808
+ _ => unreachable!(),
2809
+ };
2810
+ format!("{} {}, {}", op, rd, imm)
2811
+ }
2812
+ &Inst::VecLoadLane {
2813
+ size,
2814
+ rd,
2815
+ ref mem,
2816
+ lane_imm,
2817
+ ..
2818
+ }
2819
+ | &Inst::VecLoadLaneRev {
2820
+ size,
2821
+ rd,
2822
+ ref mem,
2823
+ lane_imm,
2824
+ ..
2825
+ } => {
2826
+ let opcode_vrx = match (self, size) {
2827
+ (&Inst::VecLoadLane { .. }, 8) => "vleb",
2828
+ (&Inst::VecLoadLane { .. }, 16) => "vleh",
2829
+ (&Inst::VecLoadLane { .. }, 32) => "vlef",
2830
+ (&Inst::VecLoadLane { .. }, 64) => "vleg",
2831
+ (&Inst::VecLoadLaneRev { .. }, 16) => "vlebrh",
2832
+ (&Inst::VecLoadLaneRev { .. }, 32) => "vlebrf",
2833
+ (&Inst::VecLoadLaneRev { .. }, 64) => "vlebrg",
2834
+ _ => unreachable!(),
2835
+ };
2836
+
2837
+ let (rd, _) = pretty_print_fpr(rd.to_reg());
2838
+ let mem = mem.clone();
2839
+ let (mem_str, mem) = mem_finalize_for_show(
2840
+ &mem,
2841
+ state,
2842
+ MemInstType {
2843
+ have_d12: true,
2844
+ have_d20: false,
2845
+ have_pcrel: false,
2846
+ have_unaligned_pcrel: false,
2847
+ have_index: true,
2848
+ },
2849
+ );
2850
+ let mem = mem.pretty_print_default();
2851
+ format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm)
2852
+ }
2853
+ &Inst::VecLoadLaneUndef {
2854
+ size,
2855
+ rd,
2856
+ ref mem,
2857
+ lane_imm,
2858
+ }
2859
+ | &Inst::VecLoadLaneRevUndef {
2860
+ size,
2861
+ rd,
2862
+ ref mem,
2863
+ lane_imm,
2864
+ } => {
2865
+ let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
2866
+ (&Inst::VecLoadLaneUndef { .. }, 8) => ("vleb", None, None),
2867
+ (&Inst::VecLoadLaneUndef { .. }, 16) => ("vleh", None, None),
2868
+ (&Inst::VecLoadLaneUndef { .. }, 32) => ("vlef", Some("le"), Some("ley")),
2869
+ (&Inst::VecLoadLaneUndef { .. }, 64) => ("vleg", Some("ld"), Some("ldy")),
2870
+ (&Inst::VecLoadLaneRevUndef { .. }, 16) => ("vlebrh", None, None),
2871
+ (&Inst::VecLoadLaneRevUndef { .. }, 32) => ("vlebrf", None, None),
2872
+ (&Inst::VecLoadLaneRevUndef { .. }, 64) => ("vlebrg", None, None),
2873
+ _ => unreachable!(),
2874
+ };
2875
+
2876
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
2877
+ let mem = mem.clone();
2878
+ if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
2879
+ let (mem_str, mem) = mem_finalize_for_show(
2880
+ &mem,
2881
+ state,
2882
+ MemInstType {
2883
+ have_d12: true,
2884
+ have_d20: true,
2885
+ have_pcrel: false,
2886
+ have_unaligned_pcrel: false,
2887
+ have_index: true,
2888
+ },
2889
+ );
2890
+ let op = match &mem {
2891
+ &MemArg::BXD12 { .. } => opcode_rx,
2892
+ &MemArg::BXD20 { .. } => opcode_rxy,
2893
+ _ => unreachable!(),
2894
+ };
2895
+ let mem = mem.pretty_print_default();
2896
+ format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
2897
+ } else {
2898
+ let (mem_str, mem) = mem_finalize_for_show(
2899
+ &mem,
2900
+ state,
2901
+ MemInstType {
2902
+ have_d12: true,
2903
+ have_d20: false,
2904
+ have_pcrel: false,
2905
+ have_unaligned_pcrel: false,
2906
+ have_index: true,
2907
+ },
2908
+ );
2909
+ let mem = mem.pretty_print_default();
2910
+ format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm)
2911
+ }
2912
+ }
2913
+ &Inst::VecStoreLane {
2914
+ size,
2915
+ rd,
2916
+ ref mem,
2917
+ lane_imm,
2918
+ }
2919
+ | &Inst::VecStoreLaneRev {
2920
+ size,
2921
+ rd,
2922
+ ref mem,
2923
+ lane_imm,
2924
+ } => {
2925
+ let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
2926
+ (&Inst::VecStoreLane { .. }, 8) => ("vsteb", None, None),
2927
+ (&Inst::VecStoreLane { .. }, 16) => ("vsteh", None, None),
2928
+ (&Inst::VecStoreLane { .. }, 32) => ("vstef", Some("ste"), Some("stey")),
2929
+ (&Inst::VecStoreLane { .. }, 64) => ("vsteg", Some("std"), Some("stdy")),
2930
+ (&Inst::VecStoreLaneRev { .. }, 16) => ("vstebrh", None, None),
2931
+ (&Inst::VecStoreLaneRev { .. }, 32) => ("vstebrf", None, None),
2932
+ (&Inst::VecStoreLaneRev { .. }, 64) => ("vstebrg", None, None),
2933
+ _ => unreachable!(),
2934
+ };
2935
+
2936
+ let (rd, rd_fpr) = pretty_print_fpr(rd);
2937
+ let mem = mem.clone();
2938
+ if lane_imm == 0 && rd_fpr.is_some() && opcode_rx.is_some() {
2939
+ let (mem_str, mem) = mem_finalize_for_show(
2940
+ &mem,
2941
+ state,
2942
+ MemInstType {
2943
+ have_d12: true,
2944
+ have_d20: true,
2945
+ have_pcrel: false,
2946
+ have_unaligned_pcrel: false,
2947
+ have_index: true,
2948
+ },
2949
+ );
2950
+ let op = match &mem {
2951
+ &MemArg::BXD12 { .. } => opcode_rx,
2952
+ &MemArg::BXD20 { .. } => opcode_rxy,
2953
+ _ => unreachable!(),
2954
+ };
2955
+ let mem = mem.pretty_print_default();
2956
+ format!("{}{} {}, {}", mem_str, op.unwrap(), rd_fpr.unwrap(), mem)
2957
+ } else {
2958
+ let (mem_str, mem) = mem_finalize_for_show(
2959
+ &mem,
2960
+ state,
2961
+ MemInstType {
2962
+ have_d12: true,
2963
+ have_d20: false,
2964
+ have_pcrel: false,
2965
+ have_unaligned_pcrel: false,
2966
+ have_index: true,
2967
+ },
2968
+ );
2969
+ let mem = mem.pretty_print_default();
2970
+ format!("{}{} {}, {}, {}", mem_str, opcode_vrx, rd, mem, lane_imm,)
2971
+ }
2972
+ }
2973
+ &Inst::VecInsertLane {
2974
+ size,
2975
+ rd,
2976
+ ri,
2977
+ rn,
2978
+ lane_imm,
2979
+ lane_reg,
2980
+ } => {
2981
+ let op = match size {
2982
+ 8 => "vlvgb",
2983
+ 16 => "vlvgh",
2984
+ 32 => "vlvgf",
2985
+ 64 => "vlvgg",
2986
+ _ => unreachable!(),
2987
+ };
2988
+ let rd = pretty_print_reg_mod(rd, ri);
2989
+ let rn = pretty_print_reg(rn);
2990
+ let lane_reg = if lane_reg != zero_reg() {
2991
+ format!("({})", pretty_print_reg(lane_reg))
2992
+ } else {
2993
+ "".to_string()
2994
+ };
2995
+ format!("{} {}, {}, {}{}", op, rd, rn, lane_imm, lane_reg)
2996
+ }
2997
+ &Inst::VecInsertLaneUndef {
2998
+ size,
2999
+ rd,
3000
+ rn,
3001
+ lane_imm,
3002
+ lane_reg,
3003
+ } => {
3004
+ let (opcode_vrs, opcode_rre) = match size {
3005
+ 8 => ("vlvgb", None),
3006
+ 16 => ("vlvgh", None),
3007
+ 32 => ("vlvgf", None),
3008
+ 64 => ("vlvgg", Some("ldgr")),
3009
+ _ => unreachable!(),
3010
+ };
3011
+ let (rd, rd_fpr) = pretty_print_fpr(rd.to_reg());
3012
+ let rn = pretty_print_reg(rn);
3013
+ let lane_reg = if lane_reg != zero_reg() {
3014
+ format!("({})", pretty_print_reg(lane_reg))
3015
+ } else {
3016
+ "".to_string()
3017
+ };
3018
+ if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rd_fpr.is_some()
3019
+ {
3020
+ format!("{} {}, {}", opcode_rre.unwrap(), rd_fpr.unwrap(), rn)
3021
+ } else {
3022
+ format!("{} {}, {}, {}{}", opcode_vrs, rd, rn, lane_imm, lane_reg)
3023
+ }
3024
+ }
3025
+ &Inst::VecExtractLane {
3026
+ size,
3027
+ rd,
3028
+ rn,
3029
+ lane_imm,
3030
+ lane_reg,
3031
+ } => {
3032
+ let (opcode_vrs, opcode_rre) = match size {
3033
+ 8 => ("vlgvb", None),
3034
+ 16 => ("vlgvh", None),
3035
+ 32 => ("vlgvf", None),
3036
+ 64 => ("vlgvg", Some("lgdr")),
3037
+ _ => unreachable!(),
3038
+ };
3039
+ let rd = pretty_print_reg(rd.to_reg());
3040
+ let (rn, rn_fpr) = pretty_print_fpr(rn);
3041
+ let lane_reg = if lane_reg != zero_reg() {
3042
+ format!("({})", pretty_print_reg(lane_reg))
3043
+ } else {
3044
+ "".to_string()
3045
+ };
3046
+ if opcode_rre.is_some() && lane_imm == 0 && lane_reg.is_empty() && rn_fpr.is_some()
3047
+ {
3048
+ format!("{} {}, {}", opcode_rre.unwrap(), rd, rn_fpr.unwrap())
3049
+ } else {
3050
+ format!("{} {}, {}, {}{}", opcode_vrs, rd, rn, lane_imm, lane_reg)
3051
+ }
3052
+ }
3053
+ &Inst::VecInsertLaneImm {
3054
+ size,
3055
+ rd,
3056
+ ri,
3057
+ imm,
3058
+ lane_imm,
3059
+ } => {
3060
+ let op = match size {
3061
+ 8 => "vleib",
3062
+ 16 => "vleih",
3063
+ 32 => "vleif",
3064
+ 64 => "vleig",
3065
+ _ => unreachable!(),
3066
+ };
3067
+ let rd = pretty_print_reg_mod(rd, ri);
3068
+ format!("{} {}, {}, {}", op, rd, imm, lane_imm)
3069
+ }
3070
+ &Inst::VecReplicateLane {
3071
+ size,
3072
+ rd,
3073
+ rn,
3074
+ lane_imm,
3075
+ } => {
3076
+ let op = match size {
3077
+ 8 => "vrepb",
3078
+ 16 => "vreph",
3079
+ 32 => "vrepf",
3080
+ 64 => "vrepg",
3081
+ _ => unreachable!(),
3082
+ };
3083
+ let rd = pretty_print_reg(rd.to_reg());
3084
+ let rn = pretty_print_reg(rn);
3085
+ format!("{} {}, {}, {}", op, rd, rn, lane_imm)
3086
+ }
3087
+ &Inst::Extend {
3088
+ rd,
3089
+ rn,
3090
+ signed,
3091
+ from_bits,
3092
+ to_bits,
3093
+ } => {
3094
+ let rd = pretty_print_reg(rd.to_reg());
3095
+ let rn = pretty_print_reg(rn);
3096
+ let op = match (signed, from_bits, to_bits) {
3097
+ (_, 1, 32) => "llcr",
3098
+ (_, 1, 64) => "llgcr",
3099
+ (false, 8, 32) => "llcr",
3100
+ (false, 8, 64) => "llgcr",
3101
+ (true, 8, 32) => "lbr",
3102
+ (true, 8, 64) => "lgbr",
3103
+ (false, 16, 32) => "llhr",
3104
+ (false, 16, 64) => "llghr",
3105
+ (true, 16, 32) => "lhr",
3106
+ (true, 16, 64) => "lghr",
3107
+ (false, 32, 64) => "llgfr",
3108
+ (true, 32, 64) => "lgfr",
3109
+ _ => panic!("Unsupported Extend case: {:?}", self),
3110
+ };
3111
+ format!("{} {}, {}", op, rd, rn)
3112
+ }
3113
+ &Inst::Call { link, ref info, .. } => {
3114
+ let link = link.to_reg();
3115
+ let tls_symbol = match &info.tls_symbol {
3116
+ None => "".to_string(),
3117
+ Some(SymbolReloc::TlsGd { name }) => {
3118
+ format!(":tls_gdcall:{}", name.display(None))
3119
+ }
3120
+ _ => unreachable!(),
3121
+ };
3122
+ debug_assert_eq!(link, gpr(14));
3123
+ format!(
3124
+ "brasl {}, {}{}",
3125
+ show_reg(link),
3126
+ info.dest.display(None),
3127
+ tls_symbol
3128
+ )
3129
+ }
3130
+ &Inst::CallInd { link, ref info, .. } => {
3131
+ let link = link.to_reg();
3132
+ let rn = pretty_print_reg(info.rn);
3133
+ debug_assert_eq!(link, gpr(14));
3134
+ format!("basr {}, {}", show_reg(link), rn)
3135
+ }
3136
+ &Inst::Args { ref args } => {
3137
+ let mut s = "args".to_string();
3138
+ for arg in args {
3139
+ let preg = pretty_print_reg(arg.preg);
3140
+ let def = pretty_print_reg(arg.vreg.to_reg());
3141
+ write!(&mut s, " {}={}", def, preg).unwrap();
3142
+ }
3143
+ s
3144
+ }
3145
+ &Inst::Rets { ref rets } => {
3146
+ let mut s = "rets".to_string();
3147
+ for ret in rets {
3148
+ let preg = pretty_print_reg(ret.preg);
3149
+ let vreg = pretty_print_reg(ret.vreg);
3150
+ write!(&mut s, " {}={}", vreg, preg).unwrap();
3151
+ }
3152
+ s
3153
+ }
3154
+ &Inst::Ret { link } => {
3155
+ debug_assert_eq!(link, gpr(14));
3156
+ let link = show_reg(link);
3157
+ format!("br {link}")
3158
+ }
3159
+ &Inst::Jump { dest } => {
3160
+ let dest = dest.to_string();
3161
+ format!("jg {}", dest)
3162
+ }
3163
+ &Inst::IndirectBr { rn, .. } => {
3164
+ let rn = pretty_print_reg(rn);
3165
+ format!("br {}", rn)
3166
+ }
3167
+ &Inst::CondBr {
3168
+ taken,
3169
+ not_taken,
3170
+ cond,
3171
+ } => {
3172
+ let taken = taken.to_string();
3173
+ let not_taken = not_taken.to_string();
3174
+ let cond = cond.pretty_print_default();
3175
+ format!("jg{} {} ; jg {}", cond, taken, not_taken)
3176
+ }
3177
+ &Inst::OneWayCondBr { target, cond } => {
3178
+ let target = target.to_string();
3179
+ let cond = cond.pretty_print_default();
3180
+ format!("jg{} {}", cond, target)
3181
+ }
3182
+ &Inst::Debugtrap => ".word 0x0001 # debugtrap".to_string(),
3183
+ &Inst::Trap { trap_code } => {
3184
+ format!(".word 0x0000 # trap={}", trap_code)
3185
+ }
3186
+ &Inst::TrapIf { cond, trap_code } => {
3187
+ let cond = cond.pretty_print_default();
3188
+ format!("jg{} .+2 # trap={}", cond, trap_code)
3189
+ }
3190
+ &Inst::JTSequence { ridx, ref targets } => {
3191
+ let ridx = pretty_print_reg(ridx);
3192
+ let rtmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
3193
+ // The first entry is the default target, which is not emitted
3194
+ // into the jump table, so we skip it here. It is only in the
3195
+ // list so MachTerminator will see the potential target.
3196
+ let jt_entries: String = targets
3197
+ .iter()
3198
+ .skip(1)
3199
+ .map(|label| format!(" {}", label.to_string()))
3200
+ .collect();
3201
+ format!(
3202
+ concat!(
3203
+ "larl {}, 14 ; ",
3204
+ "agf {}, 0({}, {}) ; ",
3205
+ "br {} ; ",
3206
+ "jt_entries{}"
3207
+ ),
3208
+ rtmp, rtmp, rtmp, ridx, rtmp, jt_entries,
3209
+ )
3210
+ }
3211
+ &Inst::LoadSymbolReloc {
3212
+ rd,
3213
+ ref symbol_reloc,
3214
+ } => {
3215
+ let rd = pretty_print_reg(rd.to_reg());
3216
+ let tmp = pretty_print_reg(writable_spilltmp_reg().to_reg());
3217
+ let symbol = match &**symbol_reloc {
3218
+ SymbolReloc::Absolute { name, offset } => {
3219
+ format!("{} + {}", name.display(None), offset)
3220
+ }
3221
+ SymbolReloc::TlsGd { name } => format!("{}@tlsgd", name.display(None)),
3222
+ };
3223
+ format!("bras {}, 12 ; data {} ; lg {}, 0({})", tmp, symbol, rd, tmp)
3224
+ }
3225
+ &Inst::LoadAddr { rd, ref mem } => {
3226
+ let rd = pretty_print_reg(rd.to_reg());
3227
+ let mem = mem.clone();
3228
+ let (mem_str, mem) = mem_finalize_for_show(
3229
+ &mem,
3230
+ state,
3231
+ MemInstType {
3232
+ have_d12: true,
3233
+ have_d20: true,
3234
+ have_pcrel: true,
3235
+ have_unaligned_pcrel: true,
3236
+ have_index: true,
3237
+ },
3238
+ );
3239
+ let op = match &mem {
3240
+ &MemArg::BXD12 { .. } => "la",
3241
+ &MemArg::BXD20 { .. } => "lay",
3242
+ &MemArg::Label { .. } | &MemArg::Symbol { .. } => "larl",
3243
+ _ => unreachable!(),
3244
+ };
3245
+ let mem = mem.pretty_print_default();
3246
+
3247
+ format!("{}{} {}, {}", mem_str, op, rd, mem)
3248
+ }
3249
+ &Inst::Loop { ref body, cond } => {
3250
+ let body = body
3251
+ .into_iter()
3252
+ .map(|inst| inst.print_with_state(state))
3253
+ .collect::<Vec<_>>()
3254
+ .join(" ; ");
3255
+ let cond = cond.pretty_print_default();
3256
+ format!("0: {} ; jg{} 0b ; 1:", body, cond)
3257
+ }
3258
+ &Inst::CondBreak { cond } => {
3259
+ let cond = cond.pretty_print_default();
3260
+ format!("jg{} 1f", cond)
3261
+ }
3262
+ &Inst::Unwind { ref inst } => {
3263
+ format!("unwind {:?}", inst)
3264
+ }
3265
+ &Inst::DummyUse { reg } => {
3266
+ let reg = pretty_print_reg(reg);
3267
+ format!("dummy_use {}", reg)
3268
+ }
3269
+ }
3270
+ }
3271
+ }
3272
+
3273
+ //=============================================================================
3274
+ // Label fixups and jump veneers.
3275
+
3276
+ /// Different forms of label references for different instruction formats.
3277
+ #[derive(Clone, Copy, Debug, PartialEq, Eq)]
3278
+ pub enum LabelUse {
3279
+ #[allow(dead_code)]
3280
+ /// RI-format branch. 16-bit signed offset. PC-relative, offset is imm << 1.
3281
+ BranchRI,
3282
+ /// RIL-format branch. 32-bit signed offset. PC-relative, offset is imm << 1.
3283
+ BranchRIL,
3284
+ /// 32-bit PC relative constant offset (from address of constant itself),
3285
+ /// signed. Used in jump tables.
3286
+ PCRel32,
3287
+ /// 32-bit PC relative constant offset (from address of call instruction),
3288
+ /// signed. Offset is imm << 1. Used for call relocations.
3289
+ PCRel32Dbl,
3290
+ }
3291
+
3292
+ impl MachInstLabelUse for LabelUse {
3293
+ /// Alignment for veneer code.
3294
+ const ALIGN: CodeOffset = 2;
3295
+
3296
+ /// Maximum PC-relative range (positive), inclusive.
3297
+ fn max_pos_range(self) -> CodeOffset {
3298
+ match self {
3299
+ // 16-bit signed immediate, left-shifted by 1.
3300
+ LabelUse::BranchRI => ((1 << 15) - 1) << 1,
3301
+ // 32-bit signed immediate, left-shifted by 1.
3302
+ LabelUse::BranchRIL => 0xffff_fffe,
3303
+ // 32-bit signed immediate.
3304
+ LabelUse::PCRel32 => 0x7fff_ffff,
3305
+ // 32-bit signed immediate, left-shifted by 1, offset by 2.
3306
+ LabelUse::PCRel32Dbl => 0xffff_fffc,
3307
+ }
3308
+ }
3309
+
3310
+ /// Maximum PC-relative range (negative).
3311
+ fn max_neg_range(self) -> CodeOffset {
3312
+ match self {
3313
+ // 16-bit signed immediate, left-shifted by 1.
3314
+ LabelUse::BranchRI => (1 << 15) << 1,
3315
+ // 32-bit signed immediate, left-shifted by 1.
3316
+ // NOTE: This should be 4GB, but CodeOffset is only u32.
3317
+ LabelUse::BranchRIL => 0xffff_ffff,
3318
+ // 32-bit signed immediate.
3319
+ LabelUse::PCRel32 => 0x8000_0000,
3320
+ // 32-bit signed immediate, left-shifted by 1, offset by 2.
3321
+ // NOTE: This should be 4GB + 2, but CodeOffset is only u32.
3322
+ LabelUse::PCRel32Dbl => 0xffff_ffff,
3323
+ }
3324
+ }
3325
+
3326
+ /// Size of window into code needed to do the patch.
3327
+ fn patch_size(self) -> CodeOffset {
3328
+ match self {
3329
+ LabelUse::BranchRI => 4,
3330
+ LabelUse::BranchRIL => 6,
3331
+ LabelUse::PCRel32 => 4,
3332
+ LabelUse::PCRel32Dbl => 4,
3333
+ }
3334
+ }
3335
+
3336
+ /// Perform the patch.
3337
+ fn patch(self, buffer: &mut [u8], use_offset: CodeOffset, label_offset: CodeOffset) {
3338
+ let pc_rel = (label_offset as i64) - (use_offset as i64);
3339
+ debug_assert!(pc_rel <= self.max_pos_range() as i64);
3340
+ debug_assert!(pc_rel >= -(self.max_neg_range() as i64));
3341
+ debug_assert!(pc_rel & 1 == 0);
3342
+ let pc_rel_shifted = pc_rel >> 1;
3343
+
3344
+ match self {
3345
+ LabelUse::BranchRI => {
3346
+ buffer[2..4].clone_from_slice(&u16::to_be_bytes(pc_rel_shifted as u16));
3347
+ }
3348
+ LabelUse::BranchRIL => {
3349
+ buffer[2..6].clone_from_slice(&u32::to_be_bytes(pc_rel_shifted as u32));
3350
+ }
3351
+ LabelUse::PCRel32 => {
3352
+ let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
3353
+ let insn_word = insn_word.wrapping_add(pc_rel as u32);
3354
+ buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
3355
+ }
3356
+ LabelUse::PCRel32Dbl => {
3357
+ let insn_word = u32::from_be_bytes([buffer[0], buffer[1], buffer[2], buffer[3]]);
3358
+ let insn_word = insn_word.wrapping_add((pc_rel_shifted + 1) as u32);
3359
+ buffer[0..4].clone_from_slice(&u32::to_be_bytes(insn_word));
3360
+ }
3361
+ }
3362
+ }
3363
+
3364
+ /// Is a veneer supported for this label reference type?
3365
+ fn supports_veneer(self) -> bool {
3366
+ false
3367
+ }
3368
+
3369
+ /// How large is the veneer, if supported?
3370
+ fn veneer_size(self) -> CodeOffset {
3371
+ 0
3372
+ }
3373
+
3374
+ fn worst_case_veneer_size() -> CodeOffset {
3375
+ 0
3376
+ }
3377
+
3378
+ /// Generate a veneer into the buffer, given that this veneer is at `veneer_offset`, and return
3379
+ /// an offset and label-use for the veneer's use of the original label.
3380
+ fn generate_veneer(
3381
+ self,
3382
+ _buffer: &mut [u8],
3383
+ _veneer_offset: CodeOffset,
3384
+ ) -> (CodeOffset, LabelUse) {
3385
+ unreachable!();
3386
+ }
3387
+
3388
+ fn from_reloc(reloc: Reloc, addend: Addend) -> Option<Self> {
3389
+ match (reloc, addend) {
3390
+ (Reloc::S390xPCRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
3391
+ (Reloc::S390xPLTRel32Dbl, 2) => Some(LabelUse::PCRel32Dbl),
3392
+ _ => None,
3393
+ }
3394
+ }
3395
+ }