wasmtime 22.0.0 → 23.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2164) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +127 -90
  3. data/ext/Cargo.toml +5 -5
  4. data/ext/cargo-vendor/cranelift-bforest-0.110.2/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cranelift-bforest-0.110.2/Cargo.toml +50 -0
  6. data/ext/cargo-vendor/cranelift-bitset-0.110.2/.cargo-checksum.json +1 -0
  7. data/ext/cargo-vendor/cranelift-bitset-0.110.2/Cargo.toml +60 -0
  8. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/compound.rs +508 -0
  9. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/lib.rs +19 -0
  10. data/ext/cargo-vendor/cranelift-bitset-0.110.2/src/scalar.rs +575 -0
  11. data/ext/cargo-vendor/cranelift-bitset-0.110.2/tests/bitset.rs +78 -0
  12. data/ext/cargo-vendor/cranelift-codegen-0.110.2/.cargo-checksum.json +1 -0
  13. data/ext/cargo-vendor/cranelift-codegen-0.110.2/Cargo.toml +206 -0
  14. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/binemit/stack_map.rs +141 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/context.rs +390 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/data_value.rs +410 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/dfg.rs +1806 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/globalvalue.rs +147 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/immediates.rs +2109 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/instructions.rs +1015 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/jumptable.rs +168 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/mod.rs +110 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/trapcode.rs +148 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/types.rs +643 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/ir/user_stack_maps.rs +101 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit.rs +3605 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/emit_tests.rs +7927 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst/mod.rs +3058 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/inst.isle +4221 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/lower.isle +2969 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/aarch64/mod.rs +259 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/mod.rs +462 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit.rs +2741 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/emit_tests.rs +2219 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst/mod.rs +1935 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/inst.isle +3153 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower/isle.rs +654 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/lower.isle +2953 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/riscv64/mod.rs +265 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/emit.rs +3421 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/inst/mod.rs +3395 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/lower.isle +3983 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/s390x/mod.rs +220 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit.rs +4297 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/emit_state.rs +65 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst/mod.rs +2818 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/inst.isle +5299 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/lower.isle +4819 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isa/x64/mod.rs +239 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/isle_prelude.rs +965 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/legalizer/mod.rs +343 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/lib.rs +106 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/abi.rs +2427 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/buffer.rs +2544 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/helpers.rs +23 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/isle.rs +908 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/lower.rs +1462 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/mod.rs +564 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/machinst/vcode.rs +1840 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude.isle +654 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/prelude_lower.isle +1070 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.110.2/src/write.rs +660 -0
  63. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/.cargo-checksum.json +1 -0
  64. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/Cargo.toml +45 -0
  65. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/types.rs +512 -0
  66. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/cdsl/typevar.rs +980 -0
  67. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/gen_inst.rs +1278 -0
  68. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/instructions.rs +3760 -0
  69. data/ext/cargo-vendor/cranelift-codegen-meta-0.110.2/src/shared/types.rs +143 -0
  70. data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/.cargo-checksum.json +1 -0
  71. data/ext/cargo-vendor/cranelift-codegen-shared-0.110.2/Cargo.toml +31 -0
  72. data/ext/cargo-vendor/cranelift-control-0.110.2/.cargo-checksum.json +1 -0
  73. data/ext/cargo-vendor/cranelift-control-0.110.2/Cargo.toml +39 -0
  74. data/ext/cargo-vendor/cranelift-entity-0.110.2/.cargo-checksum.json +1 -0
  75. data/ext/cargo-vendor/cranelift-entity-0.110.2/Cargo.toml +66 -0
  76. data/ext/cargo-vendor/cranelift-entity-0.110.2/src/set.rs +193 -0
  77. data/ext/cargo-vendor/cranelift-frontend-0.110.2/.cargo-checksum.json +1 -0
  78. data/ext/cargo-vendor/cranelift-frontend-0.110.2/Cargo.toml +87 -0
  79. data/ext/cargo-vendor/cranelift-frontend-0.110.2/src/frontend.rs +2867 -0
  80. data/ext/cargo-vendor/cranelift-isle-0.110.2/.cargo-checksum.json +1 -0
  81. data/ext/cargo-vendor/cranelift-isle-0.110.2/Cargo.toml +60 -0
  82. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/codegen.rs +920 -0
  83. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/parser.rs +562 -0
  84. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/sema.rs +2503 -0
  85. data/ext/cargo-vendor/cranelift-isle-0.110.2/src/trie_again.rs +695 -0
  86. data/ext/cargo-vendor/cranelift-native-0.110.2/.cargo-checksum.json +1 -0
  87. data/ext/cargo-vendor/cranelift-native-0.110.2/Cargo.toml +52 -0
  88. data/ext/cargo-vendor/cranelift-native-0.110.2/src/lib.rs +188 -0
  89. data/ext/cargo-vendor/cranelift-wasm-0.110.2/.cargo-checksum.json +1 -0
  90. data/ext/cargo-vendor/cranelift-wasm-0.110.2/Cargo.toml +119 -0
  91. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator/bounds_checks.rs +731 -0
  92. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/code_translator.rs +3694 -0
  93. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/heap.rs +119 -0
  94. data/ext/cargo-vendor/cranelift-wasm-0.110.2/src/sections_translator.rs +333 -0
  95. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/.cargo-checksum.json +1 -0
  96. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.23/Cargo.toml +69 -0
  97. data/ext/cargo-vendor/termcolor-1.4.1/.cargo-checksum.json +1 -0
  98. data/ext/cargo-vendor/termcolor-1.4.1/COPYING +3 -0
  99. data/ext/cargo-vendor/termcolor-1.4.1/Cargo.toml +40 -0
  100. data/ext/cargo-vendor/termcolor-1.4.1/LICENSE-MIT +21 -0
  101. data/ext/cargo-vendor/termcolor-1.4.1/README.md +110 -0
  102. data/ext/cargo-vendor/termcolor-1.4.1/UNLICENSE +24 -0
  103. data/ext/cargo-vendor/termcolor-1.4.1/rustfmt.toml +2 -0
  104. data/ext/cargo-vendor/termcolor-1.4.1/src/lib.rs +2572 -0
  105. data/ext/cargo-vendor/wasi-common-23.0.2/.cargo-checksum.json +1 -0
  106. data/ext/cargo-vendor/wasi-common-23.0.2/Cargo.toml +234 -0
  107. data/ext/cargo-vendor/wasi-common-23.0.2/src/tokio/mod.rs +135 -0
  108. data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/async_.rs +295 -0
  109. data/ext/cargo-vendor/wasi-common-23.0.2/tests/all/sync.rs +284 -0
  110. data/ext/cargo-vendor/wasm-encoder-0.212.0/.cargo-checksum.json +1 -0
  111. data/ext/cargo-vendor/wasm-encoder-0.212.0/Cargo.toml +49 -0
  112. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/component/types.rs +771 -0
  113. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/code.rs +3571 -0
  114. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/exports.rs +85 -0
  115. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/globals.rs +100 -0
  116. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/imports.rs +143 -0
  117. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/memories.rs +115 -0
  118. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tables.rs +121 -0
  119. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/tags.rs +85 -0
  120. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/core/types.rs +663 -0
  121. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/lib.rs +218 -0
  122. data/ext/cargo-vendor/wasm-encoder-0.212.0/src/reencode.rs +1804 -0
  123. data/ext/cargo-vendor/wasm-encoder-0.215.0/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/wasm-encoder-0.215.0/Cargo.toml +65 -0
  125. data/ext/cargo-vendor/wasm-encoder-0.215.0/README.md +80 -0
  126. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/aliases.rs +160 -0
  127. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/builder.rs +455 -0
  128. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/canonicals.rs +159 -0
  129. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/components.rs +29 -0
  130. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/exports.rs +124 -0
  131. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/imports.rs +175 -0
  132. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/instances.rs +200 -0
  133. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/modules.rs +29 -0
  134. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/names.rs +149 -0
  135. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/start.rs +52 -0
  136. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component/types.rs +802 -0
  137. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/component.rs +168 -0
  138. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/code.rs +3947 -0
  139. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/custom.rs +73 -0
  140. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/data.rs +186 -0
  141. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/dump.rs +627 -0
  142. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/elements.rs +222 -0
  143. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/exports.rs +85 -0
  144. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/functions.rs +63 -0
  145. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/globals.rs +100 -0
  146. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/imports.rs +143 -0
  147. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/linking.rs +263 -0
  148. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/memories.rs +115 -0
  149. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/names.rs +298 -0
  150. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/producers.rs +181 -0
  151. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/start.rs +39 -0
  152. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tables.rs +129 -0
  153. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/tags.rs +85 -0
  154. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core/types.rs +678 -0
  155. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/core.rs +168 -0
  156. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/lib.rs +218 -0
  157. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/raw.rs +30 -0
  158. data/ext/cargo-vendor/wasm-encoder-0.215.0/src/reencode.rs +2002 -0
  159. data/ext/cargo-vendor/wasmparser-0.212.0/.cargo-checksum.json +1 -0
  160. data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.lock +669 -0
  161. data/ext/cargo-vendor/wasmparser-0.212.0/Cargo.toml +112 -0
  162. data/ext/cargo-vendor/wasmparser-0.212.0/src/binary_reader.rs +1968 -0
  163. data/ext/cargo-vendor/wasmparser-0.212.0/src/features.rs +166 -0
  164. data/ext/cargo-vendor/wasmparser-0.212.0/src/lib.rs +814 -0
  165. data/ext/cargo-vendor/wasmparser-0.212.0/src/parser.rs +1682 -0
  166. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/operators.rs +453 -0
  167. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/tables.rs +93 -0
  168. data/ext/cargo-vendor/wasmparser-0.212.0/src/readers/core/types.rs +1941 -0
  169. data/ext/cargo-vendor/wasmparser-0.212.0/src/resources.rs +234 -0
  170. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/component.rs +3252 -0
  171. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/core.rs +1454 -0
  172. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/operators.rs +4230 -0
  173. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator/types.rs +4598 -0
  174. data/ext/cargo-vendor/wasmparser-0.212.0/src/validator.rs +1632 -0
  175. data/ext/cargo-vendor/wasmprinter-0.212.0/.cargo-checksum.json +1 -0
  176. data/ext/cargo-vendor/wasmprinter-0.212.0/Cargo.toml +54 -0
  177. data/ext/cargo-vendor/wasmprinter-0.212.0/src/lib.rs +3221 -0
  178. data/ext/cargo-vendor/wasmprinter-0.212.0/src/operator.rs +1189 -0
  179. data/ext/cargo-vendor/wasmprinter-0.212.0/src/print.rs +190 -0
  180. data/ext/cargo-vendor/wasmprinter-0.212.0/tests/all.rs +48 -0
  181. data/ext/cargo-vendor/wasmtime-23.0.2/.cargo-checksum.json +1 -0
  182. data/ext/cargo-vendor/wasmtime-23.0.2/Cargo.toml +399 -0
  183. data/ext/cargo-vendor/wasmtime-23.0.2/build.rs +38 -0
  184. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/code_builder.rs +274 -0
  185. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile/runtime.rs +167 -0
  186. data/ext/cargo-vendor/wasmtime-23.0.2/src/compile.rs +881 -0
  187. data/ext/cargo-vendor/wasmtime-23.0.2/src/config.rs +2902 -0
  188. data/ext/cargo-vendor/wasmtime-23.0.2/src/engine/serialization.rs +893 -0
  189. data/ext/cargo-vendor/wasmtime-23.0.2/src/engine.rs +719 -0
  190. data/ext/cargo-vendor/wasmtime-23.0.2/src/lib.rs +406 -0
  191. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/jitdump.rs +65 -0
  192. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/perfmap.rs +47 -0
  193. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent/vtune.rs +80 -0
  194. data/ext/cargo-vendor/wasmtime-23.0.2/src/profiling_agent.rs +104 -0
  195. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/code_memory.rs +337 -0
  196. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/bindgen_examples/mod.rs +488 -0
  197. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/component.rs +811 -0
  198. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/host.rs +439 -0
  199. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/options.rs +552 -0
  200. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func/typed.rs +2497 -0
  201. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/func.rs +688 -0
  202. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/instance.rs +846 -0
  203. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/linker.rs +673 -0
  204. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/matching.rs +216 -0
  205. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/mod.rs +663 -0
  206. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/resources.rs +1132 -0
  207. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/component/values.rs +979 -0
  208. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/coredump.rs +339 -0
  209. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/debug.rs +165 -0
  210. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/global.rs +310 -0
  211. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/externals/table.rs +480 -0
  212. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func/typed.rs +788 -0
  213. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/func.rs +2593 -0
  214. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/disabled/rooting.rs +224 -0
  215. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/externref.rs +591 -0
  216. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/gc/enabled/rooting.rs +1590 -0
  217. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instance.rs +989 -0
  218. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/instantiate.rs +332 -0
  219. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/limits.rs +398 -0
  220. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/linker.rs +1498 -0
  221. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/memory.rs +1101 -0
  222. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module/registry.rs +353 -0
  223. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/module.rs +1179 -0
  224. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/profiling.rs +280 -0
  225. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/stack.rs +72 -0
  226. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store/data.rs +301 -0
  227. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/store.rs +2873 -0
  228. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/func.rs +93 -0
  229. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/memory.rs +295 -0
  230. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline/table.rs +28 -0
  231. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trampoline.rs +75 -0
  232. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/trap.rs +642 -0
  233. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types/matching.rs +428 -0
  234. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/types.rs +2771 -0
  235. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/values.rs +966 -0
  236. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/arch/riscv64.rs +41 -0
  237. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/libcalls.rs +571 -0
  238. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component/resources.rs +351 -0
  239. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/component.rs +857 -0
  240. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/const_expr.rs +102 -0
  241. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/cow.rs +988 -0
  242. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/disabled.rs +23 -0
  243. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/drc.rs +964 -0
  244. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/enabled/free_list.rs +770 -0
  245. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_ref.rs +490 -0
  246. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc/gc_runtime.rs +505 -0
  247. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/gc.rs +244 -0
  248. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/on_demand.rs +219 -0
  249. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +199 -0
  250. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +93 -0
  251. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +78 -0
  252. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +703 -0
  253. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +990 -0
  254. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/table_pool.rs +245 -0
  255. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +279 -0
  256. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator/pooling.rs +793 -0
  257. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance/allocator.rs +808 -0
  258. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/instance.rs +1518 -0
  259. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/libcalls.rs +832 -0
  260. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/memory.rs +815 -0
  261. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap.rs +217 -0
  262. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mmap_vec.rs +159 -0
  263. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/module_id.rs +19 -0
  264. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/disabled.rs +43 -0
  265. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/enabled.rs +213 -0
  266. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/mod.rs +59 -0
  267. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/mpk/sys.rs +113 -0
  268. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mmap.rs +112 -0
  269. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/mod.rs +34 -0
  270. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/unwind.rs +17 -0
  271. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/custom/vm.rs +105 -0
  272. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/mmap.rs +98 -0
  273. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/miri/unwind.rs +17 -0
  274. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/mmap.rs +159 -0
  275. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/signals.rs +407 -0
  276. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/unix/unwind.rs +149 -0
  277. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/mmap.rs +220 -0
  278. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/sys/windows/unwind.rs +46 -0
  279. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/table.rs +898 -0
  280. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory.rs +235 -0
  281. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/threads/shared_memory_disabled.rs +104 -0
  282. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/traphandlers.rs +767 -0
  283. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext/vm_host_func_context.rs +79 -0
  284. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm/vmcontext.rs +1246 -0
  285. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime/vm.rs +403 -0
  286. data/ext/cargo-vendor/wasmtime-23.0.2/src/runtime.rs +113 -0
  287. data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/.cargo-checksum.json +1 -0
  288. data/ext/cargo-vendor/wasmtime-asm-macros-23.0.2/Cargo.toml +32 -0
  289. data/ext/cargo-vendor/wasmtime-cache-23.0.2/.cargo-checksum.json +1 -0
  290. data/ext/cargo-vendor/wasmtime-cache-23.0.2/Cargo.toml +103 -0
  291. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/.cargo-checksum.json +1 -0
  292. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/Cargo.toml +106 -0
  293. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/src/bindgen.rs +500 -0
  294. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/codegen.rs +698 -0
  295. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char.rs +268 -0
  296. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/char_async.rs +291 -0
  297. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions.rs +706 -0
  298. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/conventions_async.rs +757 -0
  299. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code.rs +194 -0
  300. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/dead-code_async.rs +213 -0
  301. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import.rs +120 -0
  302. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/direct-import_async.rs +132 -0
  303. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty.rs +74 -0
  304. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/empty_async.rs +80 -0
  305. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags.rs +743 -0
  306. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/flags_async.rs +791 -0
  307. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats.rs +343 -0
  308. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/floats_async.rs +376 -0
  309. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new.rs +94 -0
  310. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/function-new_async.rs +103 -0
  311. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers.rs +873 -0
  312. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/integers_async.rs +976 -0
  313. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists.rs +1924 -0
  314. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/lists_async.rs +2114 -0
  315. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments.rs +614 -0
  316. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/many-arguments_async.rs +638 -0
  317. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return.rs +357 -0
  318. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multi-return_async.rs +391 -0
  319. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion.rs +354 -0
  320. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/multiversion_async.rs +379 -0
  321. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records.rs +940 -0
  322. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/records_async.rs +1008 -0
  323. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename.rs +183 -0
  324. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/rename_async.rs +202 -0
  325. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export.rs +657 -0
  326. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-export_async.rs +712 -0
  327. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import.rs +1088 -0
  328. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/resources-import_async.rs +1166 -0
  329. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types.rs +315 -0
  330. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/share-types_async.rs +337 -0
  331. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions.rs +399 -0
  332. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-functions_async.rs +439 -0
  333. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists.rs +427 -0
  334. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-lists_async.rs +464 -0
  335. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi.rs +245 -0
  336. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/simple-wasi_async.rs +264 -0
  337. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous.rs +338 -0
  338. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/small-anonymous_async.rs +356 -0
  339. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default.rs +94 -0
  340. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-default_async.rs +103 -0
  341. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export.rs +149 -0
  342. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke-export_async.rs +158 -0
  343. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke.rs +133 -0
  344. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/smoke_async.rs +146 -0
  345. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings.rs +316 -0
  346. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/strings_async.rs +344 -0
  347. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo.rs +165 -0
  348. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/unversioned-foo_async.rs +178 -0
  349. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths.rs +317 -0
  350. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/use-paths_async.rs +349 -0
  351. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants.rs +1896 -0
  352. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/variants_async.rs +2019 -0
  353. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat.rs +145 -0
  354. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/wat_async.rs +151 -0
  355. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types.rs +175 -0
  356. data/ext/cargo-vendor/wasmtime-component-macro-23.0.2/tests/expanded/worlds-with-types_async.rs +191 -0
  357. data/ext/cargo-vendor/wasmtime-component-util-23.0.2/.cargo-checksum.json +1 -0
  358. data/ext/cargo-vendor/wasmtime-component-util-23.0.2/Cargo.toml +35 -0
  359. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/.cargo-checksum.json +1 -0
  360. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/Cargo.toml +125 -0
  361. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/compiler.rs +1029 -0
  362. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/gc.rs +257 -0
  363. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/address_transform.rs +841 -0
  364. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/attr.rs +328 -0
  365. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/expression.rs +1264 -0
  366. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/line_program.rs +287 -0
  367. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/mod.rs +273 -0
  368. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/range_info_builder.rs +234 -0
  369. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/simulate.rs +423 -0
  370. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/unit.rs +520 -0
  371. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/transform/utils.rs +165 -0
  372. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug/write_debuginfo.rs +176 -0
  373. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/debug.rs +178 -0
  374. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/func_environ.rs +2721 -0
  375. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/gc/enabled.rs +648 -0
  376. data/ext/cargo-vendor/wasmtime-cranelift-23.0.2/src/lib.rs +458 -0
  377. data/ext/cargo-vendor/wasmtime-environ-23.0.2/.cargo-checksum.json +1 -0
  378. data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.lock +792 -0
  379. data/ext/cargo-vendor/wasmtime-environ-23.0.2/Cargo.toml +185 -0
  380. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/mod.rs +379 -0
  381. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/compile/module_environ.rs +1264 -0
  382. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/dfg.rs +718 -0
  383. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/info.rs +683 -0
  384. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/names.rs +275 -0
  385. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate/inline.rs +1333 -0
  386. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/translate.rs +993 -0
  387. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types.rs +1041 -0
  388. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component/types_builder.rs +976 -0
  389. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/component.rs +109 -0
  390. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/lib.rs +64 -0
  391. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/module.rs +702 -0
  392. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/stack_map.rs +31 -0
  393. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/tunables.rs +165 -0
  394. data/ext/cargo-vendor/wasmtime-environ-23.0.2/src/vmoffsets.rs +897 -0
  395. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/.cargo-checksum.json +1 -0
  396. data/ext/cargo-vendor/wasmtime-fiber-23.0.2/Cargo.toml +75 -0
  397. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/.cargo-checksum.json +1 -0
  398. data/ext/cargo-vendor/wasmtime-jit-debug-23.0.2/Cargo.toml +77 -0
  399. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/.cargo-checksum.json +1 -0
  400. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-23.0.2/Cargo.toml +62 -0
  401. data/ext/cargo-vendor/wasmtime-slab-23.0.2/.cargo-checksum.json +1 -0
  402. data/ext/cargo-vendor/wasmtime-slab-23.0.2/Cargo.toml +31 -0
  403. data/ext/cargo-vendor/wasmtime-types-23.0.2/.cargo-checksum.json +1 -0
  404. data/ext/cargo-vendor/wasmtime-types-23.0.2/Cargo.toml +71 -0
  405. data/ext/cargo-vendor/wasmtime-types-23.0.2/src/lib.rs +1760 -0
  406. data/ext/cargo-vendor/wasmtime-types-23.0.2/src/prelude.rs +86 -0
  407. data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/.cargo-checksum.json +1 -0
  408. data/ext/cargo-vendor/wasmtime-versioned-export-macros-23.0.2/Cargo.toml +40 -0
  409. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/.cargo-checksum.json +1 -0
  410. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/Cargo.toml +215 -0
  411. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/bindings.rs +561 -0
  412. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/filesystem.rs +448 -0
  413. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/filesystem.rs +1091 -0
  414. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/host/io.rs +391 -0
  415. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/lib.rs +419 -0
  416. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/preview1.rs +2801 -0
  417. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/src/stdio.rs +596 -0
  418. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/api.rs +197 -0
  419. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/async_.rs +397 -0
  420. data/ext/cargo-vendor/wasmtime-wasi-23.0.2/tests/all/sync.rs +331 -0
  421. data/ext/cargo-vendor/wasmtime-winch-23.0.2/.cargo-checksum.json +1 -0
  422. data/ext/cargo-vendor/wasmtime-winch-23.0.2/Cargo.toml +92 -0
  423. data/ext/cargo-vendor/wasmtime-winch-23.0.2/src/compiler.rs +242 -0
  424. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/.cargo-checksum.json +1 -0
  425. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/Cargo.toml +57 -0
  426. data/ext/cargo-vendor/wasmtime-wit-bindgen-23.0.2/src/lib.rs +2777 -0
  427. data/ext/cargo-vendor/wast-215.0.0/.cargo-checksum.json +1 -0
  428. data/ext/cargo-vendor/wast-215.0.0/Cargo.toml +101 -0
  429. data/ext/cargo-vendor/wast-215.0.0/src/component/binary.rs +1014 -0
  430. data/ext/cargo-vendor/wast-215.0.0/src/component/component.rs +320 -0
  431. data/ext/cargo-vendor/wast-215.0.0/src/component/expand.rs +875 -0
  432. data/ext/cargo-vendor/wast-215.0.0/src/component/resolve.rs +988 -0
  433. data/ext/cargo-vendor/wast-215.0.0/src/component.rs +28 -0
  434. data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf.rs +610 -0
  435. data/ext/cargo-vendor/wast-215.0.0/src/core/binary/dwarf_disabled.rs +41 -0
  436. data/ext/cargo-vendor/wast-215.0.0/src/core/binary.rs +1542 -0
  437. data/ext/cargo-vendor/wast-215.0.0/src/core/expr.rs +2110 -0
  438. data/ext/cargo-vendor/wast-215.0.0/src/core/memory.rs +279 -0
  439. data/ext/cargo-vendor/wast-215.0.0/src/core/module.rs +215 -0
  440. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/deinline_import_export.rs +232 -0
  441. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/names.rs +791 -0
  442. data/ext/cargo-vendor/wast-215.0.0/src/core/resolve/types.rs +270 -0
  443. data/ext/cargo-vendor/wast-215.0.0/src/core/table.rs +308 -0
  444. data/ext/cargo-vendor/wast-215.0.0/src/core/types.rs +1057 -0
  445. data/ext/cargo-vendor/wast-215.0.0/src/core.rs +30 -0
  446. data/ext/cargo-vendor/wast-215.0.0/src/lib.rs +556 -0
  447. data/ext/cargo-vendor/wast-215.0.0/src/parser.rs +1434 -0
  448. data/ext/cargo-vendor/wast-215.0.0/src/wat.rs +68 -0
  449. data/ext/cargo-vendor/wat-1.215.0/.cargo-checksum.json +1 -0
  450. data/ext/cargo-vendor/wat-1.215.0/Cargo.toml +56 -0
  451. data/ext/cargo-vendor/wat-1.215.0/src/lib.rs +469 -0
  452. data/ext/cargo-vendor/wiggle-23.0.2/.cargo-checksum.json +1 -0
  453. data/ext/cargo-vendor/wiggle-23.0.2/Cargo.toml +110 -0
  454. data/ext/cargo-vendor/wiggle-generate-23.0.2/.cargo-checksum.json +1 -0
  455. data/ext/cargo-vendor/wiggle-generate-23.0.2/Cargo.toml +76 -0
  456. data/ext/cargo-vendor/wiggle-macro-23.0.2/.cargo-checksum.json +1 -0
  457. data/ext/cargo-vendor/wiggle-macro-23.0.2/Cargo.toml +59 -0
  458. data/ext/cargo-vendor/winapi-util-0.1.9/.cargo-checksum.json +1 -0
  459. data/ext/cargo-vendor/winapi-util-0.1.9/COPYING +3 -0
  460. data/ext/cargo-vendor/winapi-util-0.1.9/Cargo.toml +53 -0
  461. data/ext/cargo-vendor/winapi-util-0.1.9/LICENSE-MIT +21 -0
  462. data/ext/cargo-vendor/winapi-util-0.1.9/README.md +64 -0
  463. data/ext/cargo-vendor/winapi-util-0.1.9/UNLICENSE +24 -0
  464. data/ext/cargo-vendor/winapi-util-0.1.9/rustfmt.toml +2 -0
  465. data/ext/cargo-vendor/winapi-util-0.1.9/src/console.rs +407 -0
  466. data/ext/cargo-vendor/winapi-util-0.1.9/src/file.rs +166 -0
  467. data/ext/cargo-vendor/winapi-util-0.1.9/src/lib.rs +35 -0
  468. data/ext/cargo-vendor/winapi-util-0.1.9/src/sysinfo.rs +161 -0
  469. data/ext/cargo-vendor/winapi-util-0.1.9/src/win.rs +246 -0
  470. data/ext/cargo-vendor/winch-codegen-0.21.2/.cargo-checksum.json +1 -0
  471. data/ext/cargo-vendor/winch-codegen-0.21.2/Cargo.toml +87 -0
  472. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/env.rs +449 -0
  473. data/ext/cargo-vendor/winch-codegen-0.21.2/src/codegen/mod.rs +878 -0
  474. data/ext/cargo-vendor/winch-codegen-0.21.2/src/visitor.rs +2154 -0
  475. data/ext/cargo-vendor/wit-parser-0.212.0/.cargo-checksum.json +1 -0
  476. data/ext/cargo-vendor/wit-parser-0.212.0/Cargo.toml +112 -0
  477. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/lex.rs +751 -0
  478. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast/resolve.rs +1539 -0
  479. data/ext/cargo-vendor/wit-parser-0.212.0/src/ast.rs +1851 -0
  480. data/ext/cargo-vendor/wit-parser-0.212.0/src/decoding.rs +1798 -0
  481. data/ext/cargo-vendor/wit-parser-0.212.0/src/lib.rs +888 -0
  482. data/ext/cargo-vendor/wit-parser-0.212.0/src/resolve.rs +2740 -0
  483. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/feature-gates.wit.json +308 -0
  484. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/a.wit +23 -0
  485. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package/b.wit +23 -0
  486. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-file-multi-package.wit.json +250 -0
  487. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep1/types.wit +2 -0
  488. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/deps/dep2/types.wit +2 -0
  489. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps/packages.wit +13 -0
  490. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-shared-deps.wit.json +83 -0
  491. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep1/types.wit +9 -0
  492. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/deps/dep2/types.wit +5 -0
  493. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps/packages.wit +11 -0
  494. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/multi-package-transitive-deps.wit.json +116 -0
  495. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit +23 -0
  496. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-colliding-decl-names.wit.json +130 -0
  497. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit +15 -0
  498. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-internal-references.wit.json +87 -0
  499. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit +23 -0
  500. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-explicit-with-semver.wit.json +130 -0
  501. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit +23 -0
  502. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-multiple-explicit.wit.json +130 -0
  503. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit +11 -0
  504. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/packages-single-explicit.wit.json +70 -0
  505. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit +3 -0
  506. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-colliding-names.wit.result +1 -0
  507. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit +13 -0
  508. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/explicit-packages-with-error.wit.result +8 -0
  509. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit +23 -0
  510. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-explicit-then-implicit-package.wit.result +1 -0
  511. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit +23 -0
  512. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/mix-implicit-then-explicit-package.wit.result +5 -0
  513. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/observe.wit +5 -0
  514. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter/world.wit +5 -0
  515. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multi-file-missing-delimiter.wit.result +9 -0
  516. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit +11 -0
  517. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-package-inline-cycle.wit.result +5 -0
  518. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit +15 -0
  519. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/parse-fail/multiple-packages-no-scope-blocks.wit.result +5 -0
  520. data/ext/cargo-vendor/wit-parser-0.212.0/tests/ui/since-and-unstable.wit.json +583 -0
  521. data/ext/src/ruby_api/memory.rs +2 -1
  522. data/lib/wasmtime/version.rb +1 -1
  523. metadata +1736 -1643
  524. data/ext/cargo-vendor/cranelift-bforest-0.109.0/.cargo-checksum.json +0 -1
  525. data/ext/cargo-vendor/cranelift-bforest-0.109.0/Cargo.toml +0 -41
  526. data/ext/cargo-vendor/cranelift-codegen-0.109.0/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-codegen-0.109.0/Cargo.toml +0 -193
  528. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/binemit/stack_map.rs +0 -155
  529. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/bitset.rs +0 -187
  530. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/context.rs +0 -384
  531. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/data_value.rs +0 -385
  532. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/dfg.rs +0 -1777
  533. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/globalvalue.rs +0 -147
  534. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/immediates.rs +0 -1612
  535. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/instructions.rs +0 -1020
  536. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/jumptable.rs +0 -168
  537. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/mod.rs +0 -108
  538. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/trapcode.rs +0 -149
  539. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/ir/types.rs +0 -627
  540. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit.rs +0 -3584
  541. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/emit_tests.rs +0 -7901
  542. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst/mod.rs +0 -3060
  543. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/inst.isle +0 -4218
  544. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/lower.isle +0 -2933
  545. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/aarch64/mod.rs +0 -242
  546. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/mod.rs +0 -449
  547. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit.rs +0 -2682
  548. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/emit_tests.rs +0 -2215
  549. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst/mod.rs +0 -1938
  550. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/inst.isle +0 -3127
  551. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower/isle.rs +0 -649
  552. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/lower.isle +0 -2923
  553. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/riscv64/mod.rs +0 -260
  554. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/emit.rs +0 -3401
  555. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/inst/mod.rs +0 -3401
  556. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/lower.isle +0 -3995
  557. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/s390x/mod.rs +0 -215
  558. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit.rs +0 -4287
  559. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/emit_state.rs +0 -52
  560. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst/mod.rs +0 -2821
  561. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/inst.isle +0 -5289
  562. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/lower.isle +0 -4810
  563. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isa/x64/mod.rs +0 -234
  564. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/isle_prelude.rs +0 -986
  565. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/legalizer/mod.rs +0 -348
  566. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/lib.rs +0 -106
  567. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/abi.rs +0 -2419
  568. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/buffer.rs +0 -2508
  569. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/helpers.rs +0 -33
  570. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/isle.rs +0 -909
  571. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/lower.rs +0 -1432
  572. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/mod.rs +0 -551
  573. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/machinst/vcode.rs +0 -1741
  574. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude.isle +0 -664
  575. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/prelude_lower.isle +0 -1073
  576. data/ext/cargo-vendor/cranelift-codegen-0.109.0/src/write.rs +0 -638
  577. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/.cargo-checksum.json +0 -1
  578. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/Cargo.toml +0 -36
  579. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/cdsl/types.rs +0 -496
  580. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/cdsl/typevar.rs +0 -980
  581. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/gen_inst.rs +0 -1278
  582. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/shared/instructions.rs +0 -3791
  583. data/ext/cargo-vendor/cranelift-codegen-meta-0.109.0/src/shared/types.rs +0 -137
  584. data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/.cargo-checksum.json +0 -1
  585. data/ext/cargo-vendor/cranelift-codegen-shared-0.109.0/Cargo.toml +0 -22
  586. data/ext/cargo-vendor/cranelift-control-0.109.0/.cargo-checksum.json +0 -1
  587. data/ext/cargo-vendor/cranelift-control-0.109.0/Cargo.toml +0 -30
  588. data/ext/cargo-vendor/cranelift-entity-0.109.0/.cargo-checksum.json +0 -1
  589. data/ext/cargo-vendor/cranelift-entity-0.109.0/Cargo.toml +0 -53
  590. data/ext/cargo-vendor/cranelift-entity-0.109.0/src/set.rs +0 -290
  591. data/ext/cargo-vendor/cranelift-frontend-0.109.0/.cargo-checksum.json +0 -1
  592. data/ext/cargo-vendor/cranelift-frontend-0.109.0/Cargo.toml +0 -68
  593. data/ext/cargo-vendor/cranelift-frontend-0.109.0/src/frontend.rs +0 -1857
  594. data/ext/cargo-vendor/cranelift-isle-0.109.0/.cargo-checksum.json +0 -1
  595. data/ext/cargo-vendor/cranelift-isle-0.109.0/Cargo.toml +0 -47
  596. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/codegen.rs +0 -886
  597. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/parser.rs +0 -562
  598. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/sema.rs +0 -2492
  599. data/ext/cargo-vendor/cranelift-isle-0.109.0/src/trie_again.rs +0 -684
  600. data/ext/cargo-vendor/cranelift-native-0.109.0/.cargo-checksum.json +0 -1
  601. data/ext/cargo-vendor/cranelift-native-0.109.0/Cargo.toml +0 -43
  602. data/ext/cargo-vendor/cranelift-native-0.109.0/src/lib.rs +0 -188
  603. data/ext/cargo-vendor/cranelift-wasm-0.109.0/.cargo-checksum.json +0 -1
  604. data/ext/cargo-vendor/cranelift-wasm-0.109.0/Cargo.toml +0 -110
  605. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/code_translator/bounds_checks.rs +0 -713
  606. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/code_translator.rs +0 -3695
  607. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/heap.rs +0 -116
  608. data/ext/cargo-vendor/cranelift-wasm-0.109.0/src/sections_translator.rs +0 -343
  609. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/.cargo-checksum.json +0 -1
  610. data/ext/cargo-vendor/deterministic-wasi-ctx-0.1.22/Cargo.toml +0 -48
  611. data/ext/cargo-vendor/memoffset-0.9.0/.cargo-checksum.json +0 -1
  612. data/ext/cargo-vendor/memoffset-0.9.0/Cargo.toml +0 -37
  613. data/ext/cargo-vendor/memoffset-0.9.0/LICENSE +0 -19
  614. data/ext/cargo-vendor/memoffset-0.9.0/README.md +0 -85
  615. data/ext/cargo-vendor/memoffset-0.9.0/build.rs +0 -25
  616. data/ext/cargo-vendor/memoffset-0.9.0/src/lib.rs +0 -94
  617. data/ext/cargo-vendor/memoffset-0.9.0/src/offset_of.rs +0 -400
  618. data/ext/cargo-vendor/memoffset-0.9.0/src/raw_field.rs +0 -226
  619. data/ext/cargo-vendor/memoffset-0.9.0/src/span_of.rs +0 -263
  620. data/ext/cargo-vendor/wasi-common-22.0.0/.cargo-checksum.json +0 -1
  621. data/ext/cargo-vendor/wasi-common-22.0.0/Cargo.toml +0 -224
  622. data/ext/cargo-vendor/wasi-common-22.0.0/src/tokio/mod.rs +0 -137
  623. data/ext/cargo-vendor/wasi-common-22.0.0/tests/all/async_.rs +0 -293
  624. data/ext/cargo-vendor/wasi-common-22.0.0/tests/all/sync.rs +0 -279
  625. data/ext/cargo-vendor/wasm-encoder-0.209.1/.cargo-checksum.json +0 -1
  626. data/ext/cargo-vendor/wasm-encoder-0.209.1/Cargo.toml +0 -46
  627. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/component/types.rs +0 -792
  628. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/code.rs +0 -3595
  629. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/exports.rs +0 -98
  630. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/globals.rs +0 -112
  631. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/imports.rs +0 -157
  632. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/memories.rs +0 -128
  633. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tables.rs +0 -134
  634. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/tags.rs +0 -104
  635. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/core/types.rs +0 -678
  636. data/ext/cargo-vendor/wasm-encoder-0.209.1/src/lib.rs +0 -215
  637. data/ext/cargo-vendor/wasmparser-0.209.1/.cargo-checksum.json +0 -1
  638. data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.lock +0 -662
  639. data/ext/cargo-vendor/wasmparser-0.209.1/Cargo.toml +0 -109
  640. data/ext/cargo-vendor/wasmparser-0.209.1/src/binary_reader.rs +0 -1929
  641. data/ext/cargo-vendor/wasmparser-0.209.1/src/features.rs +0 -164
  642. data/ext/cargo-vendor/wasmparser-0.209.1/src/lib.rs +0 -814
  643. data/ext/cargo-vendor/wasmparser-0.209.1/src/parser.rs +0 -1682
  644. data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/operators.rs +0 -423
  645. data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/tables.rs +0 -93
  646. data/ext/cargo-vendor/wasmparser-0.209.1/src/readers/core/types.rs +0 -1788
  647. data/ext/cargo-vendor/wasmparser-0.209.1/src/resources.rs +0 -235
  648. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/component.rs +0 -3236
  649. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/core.rs +0 -1464
  650. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/operators.rs +0 -4231
  651. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator/types.rs +0 -4550
  652. data/ext/cargo-vendor/wasmparser-0.209.1/src/validator.rs +0 -1633
  653. data/ext/cargo-vendor/wasmprinter-0.209.1/.cargo-checksum.json +0 -1
  654. data/ext/cargo-vendor/wasmprinter-0.209.1/Cargo.toml +0 -51
  655. data/ext/cargo-vendor/wasmprinter-0.209.1/src/lib.rs +0 -3225
  656. data/ext/cargo-vendor/wasmprinter-0.209.1/src/operator.rs +0 -1171
  657. data/ext/cargo-vendor/wasmprinter-0.209.1/tests/all.rs +0 -293
  658. data/ext/cargo-vendor/wasmtime-22.0.0/.cargo-checksum.json +0 -1
  659. data/ext/cargo-vendor/wasmtime-22.0.0/Cargo.toml +0 -387
  660. data/ext/cargo-vendor/wasmtime-22.0.0/build.rs +0 -42
  661. data/ext/cargo-vendor/wasmtime-22.0.0/src/compile/code_builder.rs +0 -275
  662. data/ext/cargo-vendor/wasmtime-22.0.0/src/compile/runtime.rs +0 -167
  663. data/ext/cargo-vendor/wasmtime-22.0.0/src/compile.rs +0 -917
  664. data/ext/cargo-vendor/wasmtime-22.0.0/src/config.rs +0 -2943
  665. data/ext/cargo-vendor/wasmtime-22.0.0/src/engine/serialization.rs +0 -890
  666. data/ext/cargo-vendor/wasmtime-22.0.0/src/engine.rs +0 -728
  667. data/ext/cargo-vendor/wasmtime-22.0.0/src/lib.rs +0 -389
  668. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/jitdump.rs +0 -67
  669. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/perfmap.rs +0 -48
  670. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent/vtune.rs +0 -81
  671. data/ext/cargo-vendor/wasmtime-22.0.0/src/profiling_agent.rs +0 -106
  672. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/code_memory.rs +0 -338
  673. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/bindgen_examples/mod.rs +0 -489
  674. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/component.rs +0 -656
  675. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/host.rs +0 -440
  676. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/options.rs +0 -555
  677. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func/typed.rs +0 -2498
  678. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/func.rs +0 -689
  679. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/instance.rs +0 -810
  680. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/linker.rs +0 -854
  681. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/matching.rs +0 -217
  682. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/mod.rs +0 -657
  683. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/resources.rs +0 -1133
  684. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/component/values.rs +0 -980
  685. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/coredump.rs +0 -342
  686. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/debug.rs +0 -166
  687. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/global.rs +0 -310
  688. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/externals/table.rs +0 -481
  689. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func/typed.rs +0 -780
  690. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/func.rs +0 -2564
  691. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/disabled/rooting.rs +0 -224
  692. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/externref.rs +0 -592
  693. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/gc/enabled/rooting.rs +0 -1588
  694. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instance.rs +0 -992
  695. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/instantiate.rs +0 -337
  696. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/limits.rs +0 -399
  697. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/linker.rs +0 -1499
  698. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/memory.rs +0 -998
  699. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module/registry.rs +0 -353
  700. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/module.rs +0 -1322
  701. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/profiling.rs +0 -221
  702. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/stack.rs +0 -73
  703. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store/data.rs +0 -301
  704. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/store.rs +0 -2824
  705. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/func.rs +0 -94
  706. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/memory.rs +0 -287
  707. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline/table.rs +0 -29
  708. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trampoline.rs +0 -78
  709. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/trap.rs +0 -642
  710. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/types/matching.rs +0 -421
  711. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/types.rs +0 -2580
  712. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/values.rs +0 -966
  713. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/arch/riscv64.rs +0 -41
  714. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component/libcalls.rs +0 -571
  715. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component/resources.rs +0 -352
  716. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/component.rs +0 -857
  717. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/const_expr.rs +0 -102
  718. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/cow.rs +0 -972
  719. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/disabled.rs +0 -24
  720. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/enabled/drc.rs +0 -968
  721. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/enabled/free_list.rs +0 -771
  722. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/gc_ref.rs +0 -491
  723. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc/gc_runtime.rs +0 -506
  724. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/gc.rs +0 -245
  725. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/on_demand.rs +0 -220
  726. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/decommit_queue.rs +0 -194
  727. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/gc_heap_pool.rs +0 -94
  728. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/generic_stack_pool.rs +0 -78
  729. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/index_allocator.rs +0 -707
  730. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/memory_pool.rs +0 -975
  731. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/table_pool.rs +0 -245
  732. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling/unix_stack_pool.rs +0 -278
  733. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator/pooling.rs +0 -794
  734. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance/allocator.rs +0 -801
  735. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/instance.rs +0 -1514
  736. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/libcalls.rs +0 -834
  737. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/memory.rs +0 -736
  738. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mmap.rs +0 -220
  739. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mmap_vec.rs +0 -162
  740. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/module_id.rs +0 -43
  741. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/disabled.rs +0 -43
  742. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/enabled.rs +0 -214
  743. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/mod.rs +0 -54
  744. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/mpk/sys.rs +0 -114
  745. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/mmap.rs +0 -112
  746. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/mod.rs +0 -34
  747. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/unwind.rs +0 -17
  748. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/custom/vm.rs +0 -105
  749. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/miri/mmap.rs +0 -95
  750. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/miri/unwind.rs +0 -17
  751. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/mmap.rs +0 -162
  752. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/signals.rs +0 -407
  753. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/unix/unwind.rs +0 -150
  754. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/windows/mmap.rs +0 -221
  755. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/sys/windows/unwind.rs +0 -46
  756. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/table.rs +0 -899
  757. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/threads/shared_memory.rs +0 -233
  758. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/threads/shared_memory_disabled.rs +0 -101
  759. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/traphandlers.rs +0 -768
  760. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext/vm_host_func_context.rs +0 -79
  761. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm/vmcontext.rs +0 -1302
  762. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime/vm.rs +0 -277
  763. data/ext/cargo-vendor/wasmtime-22.0.0/src/runtime.rs +0 -113
  764. data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/.cargo-checksum.json +0 -1
  765. data/ext/cargo-vendor/wasmtime-asm-macros-22.0.0/Cargo.toml +0 -22
  766. data/ext/cargo-vendor/wasmtime-cache-22.0.0/.cargo-checksum.json +0 -1
  767. data/ext/cargo-vendor/wasmtime-cache-22.0.0/Cargo.toml +0 -89
  768. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/.cargo-checksum.json +0 -1
  769. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/Cargo.toml +0 -86
  770. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/src/bindgen.rs +0 -493
  771. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/codegen.rs +0 -651
  772. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char.rs +0 -198
  773. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/char_async.rs +0 -215
  774. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions.rs +0 -586
  775. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/conventions_async.rs +0 -631
  776. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code.rs +0 -165
  777. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/dead-code_async.rs +0 -178
  778. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import.rs +0 -91
  779. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/direct-import_async.rs +0 -97
  780. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty.rs +0 -45
  781. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/empty_async.rs +0 -45
  782. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags.rs +0 -637
  783. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/flags_async.rs +0 -679
  784. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats.rs +0 -255
  785. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/floats_async.rs +0 -282
  786. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new.rs +0 -59
  787. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/function-new_async.rs +0 -62
  788. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers.rs +0 -722
  789. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/integers_async.rs +0 -819
  790. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists.rs +0 -1743
  791. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/lists_async.rs +0 -1927
  792. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments.rs +0 -543
  793. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/many-arguments_async.rs +0 -561
  794. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return.rs +0 -270
  795. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multi-return_async.rs +0 -298
  796. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion.rs +0 -251
  797. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/multiversion_async.rs +0 -270
  798. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records.rs +0 -815
  799. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/records_async.rs +0 -877
  800. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename.rs +0 -154
  801. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/rename_async.rs +0 -167
  802. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export.rs +0 -467
  803. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-export_async.rs +0 -516
  804. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import.rs +0 -1014
  805. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/resources-import_async.rs +0 -1086
  806. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types.rs +0 -249
  807. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/share-types_async.rs +0 -265
  808. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions.rs +0 -313
  809. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-functions_async.rs +0 -347
  810. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists.rs +0 -350
  811. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-lists_async.rs +0 -381
  812. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi.rs +0 -216
  813. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/simple-wasi_async.rs +0 -229
  814. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous.rs +0 -275
  815. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/small-anonymous_async.rs +0 -287
  816. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default.rs +0 -59
  817. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-default_async.rs +0 -62
  818. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export.rs +0 -86
  819. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke-export_async.rs +0 -89
  820. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke.rs +0 -104
  821. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/smoke_async.rs +0 -111
  822. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings.rs +0 -247
  823. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/strings_async.rs +0 -269
  824. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo.rs +0 -136
  825. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/unversioned-foo_async.rs +0 -143
  826. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths.rs +0 -288
  827. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/use-paths_async.rs +0 -314
  828. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants.rs +0 -1750
  829. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/variants_async.rs +0 -1867
  830. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat.rs +0 -84
  831. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/wat_async.rs +0 -84
  832. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types.rs +0 -138
  833. data/ext/cargo-vendor/wasmtime-component-macro-22.0.0/tests/expanded/worlds-with-types_async.rs +0 -148
  834. data/ext/cargo-vendor/wasmtime-component-util-22.0.0/.cargo-checksum.json +0 -1
  835. data/ext/cargo-vendor/wasmtime-component-util-22.0.0/Cargo.toml +0 -25
  836. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/.cargo-checksum.json +0 -1
  837. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/Cargo.toml +0 -115
  838. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/compiler.rs +0 -1067
  839. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/gc.rs +0 -252
  840. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/address_transform.rs +0 -783
  841. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/attr.rs +0 -320
  842. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/expression.rs +0 -1248
  843. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/line_program.rs +0 -287
  844. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/mod.rs +0 -256
  845. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/range_info_builder.rs +0 -221
  846. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/simulate.rs +0 -411
  847. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/unit.rs +0 -529
  848. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/transform/utils.rs +0 -186
  849. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug/write_debuginfo.rs +0 -196
  850. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/debug.rs +0 -18
  851. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/func_environ.rs +0 -2910
  852. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/gc/enabled.rs +0 -648
  853. data/ext/cargo-vendor/wasmtime-cranelift-22.0.0/src/lib.rs +0 -462
  854. data/ext/cargo-vendor/wasmtime-environ-22.0.0/.cargo-checksum.json +0 -1
  855. data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.lock +0 -774
  856. data/ext/cargo-vendor/wasmtime-environ-22.0.0/Cargo.toml +0 -161
  857. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/mod.rs +0 -374
  858. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/compile/module_environ.rs +0 -1348
  859. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/dfg.rs +0 -691
  860. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/info.rs +0 -672
  861. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate/inline.rs +0 -1332
  862. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/translate.rs +0 -985
  863. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types.rs +0 -1038
  864. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component/types_builder.rs +0 -1004
  865. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/component.rs +0 -107
  866. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/lib.rs +0 -151
  867. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/module.rs +0 -704
  868. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/stack_map.rs +0 -37
  869. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/tunables.rs +0 -175
  870. data/ext/cargo-vendor/wasmtime-environ-22.0.0/src/vmoffsets.rs +0 -989
  871. data/ext/cargo-vendor/wasmtime-fiber-22.0.0/.cargo-checksum.json +0 -1
  872. data/ext/cargo-vendor/wasmtime-fiber-22.0.0/Cargo.toml +0 -65
  873. data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/.cargo-checksum.json +0 -1
  874. data/ext/cargo-vendor/wasmtime-jit-debug-22.0.0/Cargo.toml +0 -68
  875. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/.cargo-checksum.json +0 -1
  876. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-22.0.0/Cargo.toml +0 -52
  877. data/ext/cargo-vendor/wasmtime-slab-22.0.0/.cargo-checksum.json +0 -1
  878. data/ext/cargo-vendor/wasmtime-slab-22.0.0/Cargo.toml +0 -21
  879. data/ext/cargo-vendor/wasmtime-types-22.0.0/.cargo-checksum.json +0 -1
  880. data/ext/cargo-vendor/wasmtime-types-22.0.0/Cargo.toml +0 -56
  881. data/ext/cargo-vendor/wasmtime-types-22.0.0/src/lib.rs +0 -1737
  882. data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/.cargo-checksum.json +0 -1
  883. data/ext/cargo-vendor/wasmtime-versioned-export-macros-22.0.0/Cargo.toml +0 -32
  884. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/.cargo-checksum.json +0 -1
  885. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/Cargo.toml +0 -201
  886. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/bindings.rs +0 -289
  887. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/filesystem.rs +0 -446
  888. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/filesystem.rs +0 -1091
  889. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/host/io.rs +0 -388
  890. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/lib.rs +0 -417
  891. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/preview1.rs +0 -2801
  892. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/src/stdio.rs +0 -533
  893. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/api.rs +0 -198
  894. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/async_.rs +0 -397
  895. data/ext/cargo-vendor/wasmtime-wasi-22.0.0/tests/all/sync.rs +0 -331
  896. data/ext/cargo-vendor/wasmtime-winch-22.0.0/.cargo-checksum.json +0 -1
  897. data/ext/cargo-vendor/wasmtime-winch-22.0.0/Cargo.toml +0 -82
  898. data/ext/cargo-vendor/wasmtime-winch-22.0.0/src/compiler.rs +0 -239
  899. data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/.cargo-checksum.json +0 -1
  900. data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/Cargo.toml +0 -47
  901. data/ext/cargo-vendor/wasmtime-wit-bindgen-22.0.0/src/lib.rs +0 -2639
  902. data/ext/cargo-vendor/wast-209.0.1/.cargo-checksum.json +0 -1
  903. data/ext/cargo-vendor/wast-209.0.1/Cargo.toml +0 -60
  904. data/ext/cargo-vendor/wast-209.0.1/src/component/binary.rs +0 -1000
  905. data/ext/cargo-vendor/wast-209.0.1/src/component/component.rs +0 -321
  906. data/ext/cargo-vendor/wast-209.0.1/src/component/expand.rs +0 -875
  907. data/ext/cargo-vendor/wast-209.0.1/src/component/resolve.rs +0 -999
  908. data/ext/cargo-vendor/wast-209.0.1/src/component.rs +0 -28
  909. data/ext/cargo-vendor/wast-209.0.1/src/core/binary.rs +0 -1396
  910. data/ext/cargo-vendor/wast-209.0.1/src/core/expr.rs +0 -2016
  911. data/ext/cargo-vendor/wast-209.0.1/src/core/memory.rs +0 -284
  912. data/ext/cargo-vendor/wast-209.0.1/src/core/module.rs +0 -218
  913. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/deinline_import_export.rs +0 -235
  914. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/names.rs +0 -751
  915. data/ext/cargo-vendor/wast-209.0.1/src/core/resolve/types.rs +0 -267
  916. data/ext/cargo-vendor/wast-209.0.1/src/core/table.rs +0 -302
  917. data/ext/cargo-vendor/wast-209.0.1/src/core/types.rs +0 -901
  918. data/ext/cargo-vendor/wast-209.0.1/src/core.rs +0 -29
  919. data/ext/cargo-vendor/wast-209.0.1/src/lib.rs +0 -551
  920. data/ext/cargo-vendor/wast-209.0.1/src/parser.rs +0 -1414
  921. data/ext/cargo-vendor/wast-209.0.1/src/wat.rs +0 -71
  922. data/ext/cargo-vendor/wat-1.209.1/.cargo-checksum.json +0 -1
  923. data/ext/cargo-vendor/wat-1.209.1/Cargo.toml +0 -34
  924. data/ext/cargo-vendor/wat-1.209.1/src/lib.rs +0 -401
  925. data/ext/cargo-vendor/wiggle-22.0.0/.cargo-checksum.json +0 -1
  926. data/ext/cargo-vendor/wiggle-22.0.0/Cargo.toml +0 -124
  927. data/ext/cargo-vendor/wiggle-generate-22.0.0/.cargo-checksum.json +0 -1
  928. data/ext/cargo-vendor/wiggle-generate-22.0.0/Cargo.toml +0 -67
  929. data/ext/cargo-vendor/wiggle-generate-22.0.0/LICENSE +0 -220
  930. data/ext/cargo-vendor/wiggle-macro-22.0.0/.cargo-checksum.json +0 -1
  931. data/ext/cargo-vendor/wiggle-macro-22.0.0/Cargo.toml +0 -51
  932. data/ext/cargo-vendor/wiggle-macro-22.0.0/LICENSE +0 -220
  933. data/ext/cargo-vendor/winch-codegen-0.20.0/.cargo-checksum.json +0 -1
  934. data/ext/cargo-vendor/winch-codegen-0.20.0/Cargo.toml +0 -77
  935. data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/env.rs +0 -448
  936. data/ext/cargo-vendor/winch-codegen-0.20.0/src/codegen/mod.rs +0 -882
  937. data/ext/cargo-vendor/winch-codegen-0.20.0/src/visitor.rs +0 -2149
  938. data/ext/cargo-vendor/wit-parser-0.209.1/.cargo-checksum.json +0 -1
  939. data/ext/cargo-vendor/wit-parser-0.209.1/Cargo.toml +0 -112
  940. data/ext/cargo-vendor/wit-parser-0.209.1/src/ast/lex.rs +0 -747
  941. data/ext/cargo-vendor/wit-parser-0.209.1/src/ast/resolve.rs +0 -1524
  942. data/ext/cargo-vendor/wit-parser-0.209.1/src/ast.rs +0 -1668
  943. data/ext/cargo-vendor/wit-parser-0.209.1/src/decoding.rs +0 -1795
  944. data/ext/cargo-vendor/wit-parser-0.209.1/src/lib.rs +0 -873
  945. data/ext/cargo-vendor/wit-parser-0.209.1/src/resolve.rs +0 -2498
  946. data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/feature-gates.wit.json +0 -288
  947. data/ext/cargo-vendor/wit-parser-0.209.1/tests/ui/since-and-unstable.wit.json +0 -549
  948. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/LICENSE +0 -0
  949. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/README.md +0 -0
  950. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/lib.rs +0 -0
  951. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/map.rs +0 -0
  952. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/node.rs +0 -0
  953. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/path.rs +0 -0
  954. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/pool.rs +0 -0
  955. /data/ext/cargo-vendor/{cranelift-bforest-0.109.0 → cranelift-bforest-0.110.2}/src/set.rs +0 -0
  956. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/LICENSE +0 -0
  957. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/README.md +0 -0
  958. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/benches/x64-evex-encoding.rs +0 -0
  959. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/build.rs +0 -0
  960. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/alias_analysis.rs +0 -0
  961. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/binemit/mod.rs +0 -0
  962. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/cfg_printer.rs +0 -0
  963. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/constant_hash.rs +0 -0
  964. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ctxhash.rs +0 -0
  965. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/cursor.rs +0 -0
  966. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/dbg.rs +0 -0
  967. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/dominator_tree.rs +0 -0
  968. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph/cost.rs +0 -0
  969. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph/elaborate.rs +0 -0
  970. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/egraph.rs +0 -0
  971. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/flowgraph.rs +0 -0
  972. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/incremental_cache.rs +0 -0
  973. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/inst_predicates.rs +0 -0
  974. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/atomic_rmw_op.rs +0 -0
  975. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/builder.rs +0 -0
  976. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/condcodes.rs +0 -0
  977. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/constant.rs +0 -0
  978. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/dynamic_type.rs +0 -0
  979. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/entities.rs +0 -0
  980. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/extfunc.rs +0 -0
  981. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/extname.rs +0 -0
  982. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/function.rs +0 -0
  983. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/known_symbol.rs +0 -0
  984. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/layout.rs +0 -0
  985. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/libcall.rs +0 -0
  986. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/memflags.rs +0 -0
  987. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/memtype.rs +0 -0
  988. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/pcc.rs +0 -0
  989. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/progpoint.rs +0 -0
  990. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/sourceloc.rs +0 -0
  991. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ir/stackslot.rs +0 -0
  992. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/abi.rs +0 -0
  993. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/args.rs +0 -0
  994. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/imms.rs +0 -0
  995. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/regs.rs +0 -0
  996. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  997. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst/unwind.rs +0 -0
  998. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/inst_neon.isle +0 -0
  999. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1000. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower/isle.rs +0 -0
  1001. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower.rs +0 -0
  1002. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  1003. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/pcc.rs +0 -0
  1004. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/aarch64/settings.rs +0 -0
  1005. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/call_conv.rs +0 -0
  1006. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/abi.rs +0 -0
  1007. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/args.rs +0 -0
  1008. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/encode.rs +0 -0
  1009. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/imms.rs +0 -0
  1010. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/regs.rs +0 -0
  1011. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1012. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/unwind.rs +0 -0
  1013. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst/vector.rs +0 -0
  1014. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/inst_vector.isle +0 -0
  1015. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1016. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/lower.rs +0 -0
  1017. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/riscv64/settings.rs +0 -0
  1018. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/abi.rs +0 -0
  1019. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/args.rs +0 -0
  1020. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1021. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/imms.rs +0 -0
  1022. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/regs.rs +0 -0
  1023. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1024. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst/unwind.rs +0 -0
  1025. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/inst.isle +0 -0
  1026. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1027. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower/isle.rs +0 -0
  1028. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/lower.rs +0 -0
  1029. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/s390x/settings.rs +0 -0
  1030. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind/systemv.rs +0 -0
  1031. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind/winx64.rs +0 -0
  1032. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/unwind.rs +0 -0
  1033. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/abi.rs +0 -0
  1034. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/evex.rs +0 -0
  1035. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/mod.rs +0 -0
  1036. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/rex.rs +0 -0
  1037. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/encoding/vex.rs +0 -0
  1038. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/args.rs +0 -0
  1039. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/emit_tests.rs +0 -0
  1040. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/regs.rs +0 -0
  1041. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1042. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1043. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/inst/unwind.rs +0 -0
  1044. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1045. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower/isle.rs +0 -0
  1046. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/lower.rs +0 -0
  1047. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/pcc.rs +0 -0
  1048. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/isa/x64/settings.rs +0 -0
  1049. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/iterators.rs +0 -0
  1050. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/legalizer/globalvalue.rs +0 -0
  1051. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/loop_analysis.rs +0 -0
  1052. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/blockorder.rs +0 -0
  1053. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/compile.rs +0 -0
  1054. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/inst_common.rs +0 -0
  1055. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/pcc.rs +0 -0
  1056. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/reg.rs +0 -0
  1057. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/machinst/valueregs.rs +0 -0
  1058. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/nan_canonicalization.rs +0 -0
  1059. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/README.md +0 -0
  1060. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/arithmetic.isle +0 -0
  1061. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/bitops.isle +0 -0
  1062. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/cprop.isle +0 -0
  1063. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/extends.isle +0 -0
  1064. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/generated_code.rs +0 -0
  1065. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/icmp.isle +0 -0
  1066. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/remat.isle +0 -0
  1067. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/selects.isle +0 -0
  1068. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/shifts.isle +0 -0
  1069. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/spaceship.isle +0 -0
  1070. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/spectre.isle +0 -0
  1071. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts/vector.isle +0 -0
  1072. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/opts.rs +0 -0
  1073. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/prelude_opt.isle +0 -0
  1074. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/print_errors.rs +0 -0
  1075. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/ranges.rs +0 -0
  1076. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/remove_constant_phis.rs +0 -0
  1077. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/result.rs +0 -0
  1078. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/scoped_hash_map.rs +0 -0
  1079. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/settings.rs +0 -0
  1080. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/souper_harvest.rs +0 -0
  1081. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/timing.rs +0 -0
  1082. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/traversals.rs +0 -0
  1083. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/unionfind.rs +0 -0
  1084. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/unreachable_code.rs +0 -0
  1085. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/value_label.rs +0 -0
  1086. /data/ext/cargo-vendor/{cranelift-codegen-0.109.0 → cranelift-codegen-0.110.2}/src/verifier/mod.rs +0 -0
  1087. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/LICENSE +0 -0
  1088. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/README.md +0 -0
  1089. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/formats.rs +0 -0
  1090. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/instructions.rs +0 -0
  1091. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/isa.rs +0 -0
  1092. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/mod.rs +0 -0
  1093. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/operands.rs +0 -0
  1094. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/cdsl/settings.rs +0 -0
  1095. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/constant_hash.rs +0 -0
  1096. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/error.rs +0 -0
  1097. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_isle.rs +0 -0
  1098. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_settings.rs +0 -0
  1099. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/gen_types.rs +0 -0
  1100. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/arm64.rs +0 -0
  1101. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/mod.rs +0 -0
  1102. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/riscv64.rs +0 -0
  1103. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/s390x.rs +0 -0
  1104. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isa/x86.rs +0 -0
  1105. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/isle.rs +0 -0
  1106. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/lib.rs +0 -0
  1107. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/entities.rs +0 -0
  1108. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/formats.rs +0 -0
  1109. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/immediates.rs +0 -0
  1110. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/mod.rs +0 -0
  1111. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/shared/settings.rs +0 -0
  1112. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/srcgen.rs +0 -0
  1113. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.109.0 → cranelift-codegen-meta-0.110.2}/src/unique_table.rs +0 -0
  1114. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/LICENSE +0 -0
  1115. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/README.md +0 -0
  1116. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/constant_hash.rs +0 -0
  1117. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/constants.rs +0 -0
  1118. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.109.0 → cranelift-codegen-shared-0.110.2}/src/lib.rs +0 -0
  1119. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/LICENSE +0 -0
  1120. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/README.md +0 -0
  1121. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/chaos.rs +0 -0
  1122. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/lib.rs +0 -0
  1123. /data/ext/cargo-vendor/{cranelift-control-0.109.0 → cranelift-control-0.110.2}/src/zero_sized.rs +0 -0
  1124. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/LICENSE +0 -0
  1125. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/README.md +0 -0
  1126. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/boxed_slice.rs +0 -0
  1127. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/iter.rs +0 -0
  1128. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/keys.rs +0 -0
  1129. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/lib.rs +0 -0
  1130. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/list.rs +0 -0
  1131. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/map.rs +0 -0
  1132. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/packed_option.rs +0 -0
  1133. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/primary.rs +0 -0
  1134. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/sparse.rs +0 -0
  1135. /data/ext/cargo-vendor/{cranelift-entity-0.109.0 → cranelift-entity-0.110.2}/src/unsigned.rs +0 -0
  1136. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/LICENSE +0 -0
  1137. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/README.md +0 -0
  1138. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/lib.rs +0 -0
  1139. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/ssa.rs +0 -0
  1140. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/switch.rs +0 -0
  1141. /data/ext/cargo-vendor/{cranelift-frontend-0.109.0 → cranelift-frontend-0.110.2}/src/variable.rs +0 -0
  1142. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/README.md +0 -0
  1143. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/build.rs +0 -0
  1144. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/bad_converters.isle +0 -0
  1145. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1146. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1147. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/error1.isle +0 -0
  1148. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/extra_parens.isle +0 -0
  1149. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/impure_expression.isle +0 -0
  1150. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/impure_rhs.isle +0 -0
  1151. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1152. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/fail/multi_prio.isle +0 -0
  1153. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/borrows.isle +0 -0
  1154. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/borrows_main.rs +0 -0
  1155. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/iflets.isle +0 -0
  1156. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/iflets_main.rs +0 -0
  1157. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor.isle +0 -0
  1158. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_constructor_main.rs +0 -0
  1159. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor.isle +0 -0
  1160. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/multi_extractor_main.rs +0 -0
  1161. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/test.isle +0 -0
  1162. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/link/test_main.rs +0 -0
  1163. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/bound_var.isle +0 -0
  1164. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/construct_and_extract.isle +0 -0
  1165. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/conversions.isle +0 -0
  1166. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/conversions_extern.isle +0 -0
  1167. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/let.isle +0 -0
  1168. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/nodebug.isle +0 -0
  1169. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1170. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test2.isle +0 -0
  1171. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test3.isle +0 -0
  1172. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/test4.isle +0 -0
  1173. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/pass/tutorial.isle +0 -0
  1174. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/iconst.isle +0 -0
  1175. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/iconst_main.rs +0 -0
  1176. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing.isle +0 -0
  1177. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/isle_examples/run/let_shadowing_main.rs +0 -0
  1178. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/ast.rs +0 -0
  1179. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/compile.rs +0 -0
  1180. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/disjointsets.rs +0 -0
  1181. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/error.rs +0 -0
  1182. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/lexer.rs +0 -0
  1183. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/lib.rs +0 -0
  1184. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/log.rs +0 -0
  1185. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/overlap.rs +0 -0
  1186. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/serialize.rs +0 -0
  1187. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/src/stablemapset.rs +0 -0
  1188. /data/ext/cargo-vendor/{cranelift-isle-0.109.0 → cranelift-isle-0.110.2}/tests/run_tests.rs +0 -0
  1189. /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/LICENSE +0 -0
  1190. /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/README.md +0 -0
  1191. /data/ext/cargo-vendor/{cranelift-native-0.109.0 → cranelift-native-0.110.2}/src/riscv.rs +0 -0
  1192. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/LICENSE +0 -0
  1193. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/README.md +0 -0
  1194. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/dummy.rs +0 -0
  1195. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/mod.rs +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/environ/spec.rs +0 -0
  1197. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/func_translator.rs +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/lib.rs +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/module_translator.rs +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/state.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/table.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-wasm-0.109.0 → cranelift-wasm-0.110.2}/src/translation_utils.rs +0 -0
  1203. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/README.md +0 -0
  1204. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/clocks.rs +0 -0
  1205. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/lib.rs +0 -0
  1206. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/src/noop_scheduler.rs +0 -0
  1207. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/clocks.rs +0 -0
  1208. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/common/mod.rs +0 -0
  1209. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/random.rs +0 -0
  1210. /data/ext/cargo-vendor/{deterministic-wasi-ctx-0.1.22 → deterministic-wasi-ctx-0.1.23}/tests/scheduler.rs +0 -0
  1211. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/LICENSE +0 -0
  1212. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/README.md +0 -0
  1213. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/clocks.rs +0 -0
  1214. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/ctx.rs +0 -0
  1215. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/dir.rs +0 -0
  1216. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/error.rs +0 -0
  1217. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/file.rs +0 -0
  1218. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/lib.rs +0 -0
  1219. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/pipe.rs +0 -0
  1220. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/random.rs +0 -0
  1221. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sched/subscription.rs +0 -0
  1222. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sched.rs +0 -0
  1223. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/mod.rs +0 -0
  1224. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_0.rs +0 -0
  1225. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_1/error.rs +0 -0
  1226. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/snapshots/preview_1.rs +0 -0
  1227. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/string_array.rs +0 -0
  1228. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/clocks.rs +0 -0
  1229. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/dir.rs +0 -0
  1230. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/file.rs +0 -0
  1231. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/mod.rs +0 -0
  1232. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/net.rs +0 -0
  1233. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched/unix.rs +0 -0
  1234. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched/windows.rs +0 -0
  1235. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/sched.rs +0 -0
  1236. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/sync/stdio.rs +0 -0
  1237. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/table.rs +0 -0
  1238. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/dir.rs +0 -0
  1239. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/file.rs +0 -0
  1240. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/net.rs +0 -0
  1241. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched/unix.rs +0 -0
  1242. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched/windows.rs +0 -0
  1243. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/sched.rs +0 -0
  1244. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/src/tokio/stdio.rs +0 -0
  1245. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/tests/all/main.rs +0 -0
  1246. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview0/typenames.witx +0 -0
  1247. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1248. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview1/typenames.witx +0 -0
  1249. /data/ext/cargo-vendor/{wasi-common-22.0.0 → wasi-common-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1250. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/LICENSE +0 -0
  1251. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/README.md +0 -0
  1252. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/aliases.rs +0 -0
  1253. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/builder.rs +0 -0
  1254. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/canonicals.rs +0 -0
  1255. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/components.rs +0 -0
  1256. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/exports.rs +0 -0
  1257. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/imports.rs +0 -0
  1258. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/instances.rs +0 -0
  1259. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/modules.rs +0 -0
  1260. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/names.rs +0 -0
  1261. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component/start.rs +0 -0
  1262. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/component.rs +0 -0
  1263. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/custom.rs +0 -0
  1264. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/data.rs +0 -0
  1265. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/dump.rs +0 -0
  1266. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/elements.rs +0 -0
  1267. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/functions.rs +0 -0
  1268. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/linking.rs +0 -0
  1269. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/names.rs +0 -0
  1270. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/producers.rs +0 -0
  1271. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core/start.rs +0 -0
  1272. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/core.rs +0 -0
  1273. /data/ext/cargo-vendor/{wasm-encoder-0.209.1 → wasm-encoder-0.212.0}/src/raw.rs +0 -0
  1274. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/README.md +0 -0
  1275. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/benches/benchmark.rs +0 -0
  1276. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/examples/simple.rs +0 -0
  1277. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/hash.rs +0 -0
  1278. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map/detail.rs +0 -0
  1279. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map/tests.rs +0 -0
  1280. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_map.rs +0 -0
  1281. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/index_set.rs +0 -0
  1282. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/map.rs +0 -0
  1283. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/mod.rs +0 -0
  1284. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/collections/set.rs +0 -0
  1285. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/limits.rs +0 -0
  1286. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/aliases.rs +0 -0
  1287. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/canonicals.rs +0 -0
  1288. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/exports.rs +0 -0
  1289. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/imports.rs +0 -0
  1290. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/instances.rs +0 -0
  1291. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/names.rs +0 -0
  1292. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/start.rs +0 -0
  1293. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component/types.rs +0 -0
  1294. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/component.rs +0 -0
  1295. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/branch_hinting.rs +0 -0
  1296. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/code.rs +0 -0
  1297. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/coredumps.rs +0 -0
  1298. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/custom.rs +0 -0
  1299. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/data.rs +0 -0
  1300. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/dylink0.rs +0 -0
  1301. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/elements.rs +0 -0
  1302. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/exports.rs +0 -0
  1303. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/functions.rs +0 -0
  1304. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/globals.rs +0 -0
  1305. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/imports.rs +0 -0
  1306. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/init.rs +0 -0
  1307. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/linking.rs +0 -0
  1308. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/memories.rs +0 -0
  1309. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/names.rs +0 -0
  1310. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/producers.rs +0 -0
  1311. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/reloc.rs +0 -0
  1312. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/tags.rs +0 -0
  1313. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core/types/matches.rs +0 -0
  1314. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers/core.rs +0 -0
  1315. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/readers.rs +0 -0
  1316. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/core/canonical.rs +0 -0
  1317. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/func.rs +0 -0
  1318. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/src/validator/names.rs +0 -0
  1319. /data/ext/cargo-vendor/{wasmparser-0.209.1 → wasmparser-0.212.0}/tests/big-module.rs +0 -0
  1320. /data/ext/cargo-vendor/{wasmprinter-0.209.1 → wasmprinter-0.212.0}/LICENSE +0 -0
  1321. /data/ext/cargo-vendor/{wasmprinter-0.209.1 → wasmprinter-0.212.0}/README.md +0 -0
  1322. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/LICENSE +0 -0
  1323. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/README.md +0 -0
  1324. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/proptest-regressions/runtime/vm/instance/allocator/pooling/memory_pool.txt +0 -0
  1325. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/code.rs +0 -0
  1326. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_0_hello_world.rs +0 -0
  1327. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_1_world_imports.rs +0 -0
  1328. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_2_world_exports.rs +0 -0
  1329. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_3_interface_imports.rs +0 -0
  1330. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_4_imported_resources.rs +0 -0
  1331. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_5_all_world_export_kinds.rs +0 -0
  1332. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/bindgen_examples/_6_exported_resources.rs +0 -0
  1333. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/resource_table.rs +0 -0
  1334. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/storage.rs +0 -0
  1335. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/store.rs +0 -0
  1336. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/component/types.rs +0 -0
  1337. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/externals.rs +0 -0
  1338. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/anyref.rs +0 -0
  1339. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/externref.rs +0 -0
  1340. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled/i31.rs +0 -0
  1341. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/disabled.rs +0 -0
  1342. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled/anyref.rs +0 -0
  1343. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled/i31.rs +0 -0
  1344. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/enabled.rs +0 -0
  1345. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc/noextern.rs +0 -0
  1346. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/gc.rs +0 -0
  1347. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/resources.rs +0 -0
  1348. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/signatures.rs +0 -0
  1349. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/store/context.rs +0 -0
  1350. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/store/func_refs.rs +0 -0
  1351. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/trampoline/global.rs +0 -0
  1352. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/type_registry.rs +0 -0
  1353. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/uninhabited.rs +0 -0
  1354. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/unix.rs +0 -0
  1355. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/v128.rs +0 -0
  1356. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/aarch64.rs +0 -0
  1357. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/mod.rs +0 -0
  1358. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.S +0 -0
  1359. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/s390x.rs +0 -0
  1360. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/arch/x86_64.rs +0 -0
  1361. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/async_yield.rs +0 -0
  1362. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/debug_builtins.rs +0 -0
  1363. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/export.rs +0 -0
  1364. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled/externref.rs +0 -0
  1365. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/enabled.rs +0 -0
  1366. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/host_data.rs +0 -0
  1367. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/gc/i31.rs +0 -0
  1368. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/helpers.c +0 -0
  1369. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/imports.rs +0 -0
  1370. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/mpk/pkru.rs +0 -0
  1371. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/send_sync_ptr.rs +0 -0
  1372. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/store_box.rs +0 -0
  1373. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/custom/capi.rs +0 -0
  1374. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/custom/traphandlers.rs +0 -0
  1375. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/mod.rs +0 -0
  1376. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/traphandlers.rs +0 -0
  1377. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/miri/vm.rs +0 -0
  1378. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/mod.rs +0 -0
  1379. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/machports.rs +0 -0
  1380. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/macos_traphandlers.rs +0 -0
  1381. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/mod.rs +0 -0
  1382. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/unix/vm.rs +0 -0
  1383. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/mod.rs +0 -0
  1384. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/traphandlers.rs +0 -0
  1385. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/sys/windows/vm.rs +0 -0
  1386. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/threads/mod.rs +0 -0
  1387. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/threads/parking_spot.rs +0 -0
  1388. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/backtrace.rs +0 -0
  1389. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_disabled.rs +0 -0
  1390. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/vm/traphandlers/coredump_enabled.rs +0 -0
  1391. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/runtime/windows.rs +0 -0
  1392. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/sync_nostd.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasmtime-22.0.0 → wasmtime-23.0.2}/src/sync_std.rs +0 -0
  1394. /data/ext/cargo-vendor/{wasmtime-asm-macros-22.0.0 → wasmtime-asm-macros-23.0.2}/src/lib.rs +0 -0
  1395. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/LICENSE +0 -0
  1396. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/build.rs +0 -0
  1397. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/config/tests.rs +0 -0
  1398. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/config.rs +0 -0
  1399. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/lib.rs +0 -0
  1400. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/tests.rs +0 -0
  1401. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker/tests/system_time_stub.rs +0 -0
  1402. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker/tests.rs +0 -0
  1403. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/src/worker.rs +0 -0
  1404. /data/ext/cargo-vendor/{wasmtime-cache-22.0.0 → wasmtime-cache-23.0.2}/tests/cache_write_default_config.rs +0 -0
  1405. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/build.rs +0 -0
  1406. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/src/component.rs +0 -0
  1407. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/src/lib.rs +0 -0
  1408. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/char.wit +0 -0
  1409. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/conventions.wit +0 -0
  1410. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/dead-code.wit +0 -0
  1411. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/direct-import.wit +0 -0
  1412. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/empty.wit +0 -0
  1413. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/flags.wit +0 -0
  1414. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/floats.wit +0 -0
  1415. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/function-new.wit +0 -0
  1416. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/integers.wit +0 -0
  1417. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/lists.wit +0 -0
  1418. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/many-arguments.wit +0 -0
  1419. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multi-return.wit +0 -0
  1420. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v1/root.wit +0 -0
  1421. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/deps/v2/root.wit +0 -0
  1422. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/multiversion/root.wit +0 -0
  1423. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/records.wit +0 -0
  1424. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/rename.wit +0 -0
  1425. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-export.wit +0 -0
  1426. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/resources-import.wit +0 -0
  1427. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/share-types.wit +0 -0
  1428. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-functions.wit +0 -0
  1429. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-lists.wit +0 -0
  1430. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/simple-wasi.wit +0 -0
  1431. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/small-anonymous.wit +0 -0
  1432. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-default.wit +0 -0
  1433. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke-export.wit +0 -0
  1434. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/smoke.wit +0 -0
  1435. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/strings.wit +0 -0
  1436. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/unversioned-foo.wit +0 -0
  1437. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/use-paths.wit +0 -0
  1438. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/variants.wit +0 -0
  1439. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/wat.wit +0 -0
  1440. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen/worlds-with-types.wit +0 -0
  1441. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/codegen_no_std.rs +0 -0
  1442. /data/ext/cargo-vendor/{wasmtime-component-macro-22.0.0 → wasmtime-component-macro-23.0.2}/tests/expanded.rs +0 -0
  1443. /data/ext/cargo-vendor/{wasmtime-component-util-22.0.0 → wasmtime-component-util-23.0.2}/src/lib.rs +0 -0
  1444. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/LICENSE +0 -0
  1445. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/SECURITY.md +0 -0
  1446. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/builder.rs +0 -0
  1447. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/compiled_function.rs +0 -0
  1448. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/compiler/component.rs +0 -0
  1449. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/debug/transform/refs.rs +0 -0
  1450. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/gc/disabled.rs +0 -0
  1451. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/gc.rs +0 -0
  1452. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/isa_builder.rs +0 -0
  1453. /data/ext/cargo-vendor/{wasmtime-cranelift-22.0.0 → wasmtime-cranelift-23.0.2}/src/obj.rs +0 -0
  1454. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/LICENSE +0 -0
  1455. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/examples/factc.rs +0 -0
  1456. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/address_map.rs +0 -0
  1457. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/builtin.rs +0 -0
  1458. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/address_map.rs +0 -0
  1459. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/module_artifacts.rs +0 -0
  1460. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/module_types.rs +0 -0
  1461. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/compile/trap_encoding.rs +0 -0
  1462. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/artifacts.rs +0 -0
  1463. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/compiler.rs +0 -0
  1464. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/translate/adapt.rs +0 -0
  1465. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/types_builder/resources.rs +0 -0
  1466. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/component/vmcomponent_offsets.rs +0 -0
  1467. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/demangling.rs +0 -0
  1468. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/core_types.rs +0 -0
  1469. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/signature.rs +0 -0
  1470. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/trampoline.rs +0 -0
  1471. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/transcode.rs +0 -0
  1472. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact/traps.rs +0 -0
  1473. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/fact.rs +0 -0
  1474. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/gc.rs +0 -0
  1475. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/module_artifacts.rs +0 -0
  1476. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/module_types.rs +0 -0
  1477. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/obj.rs +0 -0
  1478. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/ref_bits.rs +0 -0
  1479. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/scopevec.rs +0 -0
  1480. /data/ext/cargo-vendor/{wasmtime-environ-22.0.0 → wasmtime-environ-23.0.2}/src/trap_encoding.rs +0 -0
  1481. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/LICENSE +0 -0
  1482. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/build.rs +0 -0
  1483. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/lib.rs +0 -0
  1484. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/aarch64.rs +0 -0
  1485. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/arm.rs +0 -0
  1486. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/riscv64.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/s390x.S +0 -0
  1488. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/x86.rs +0 -0
  1489. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix/x86_64.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/unix.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/windows.c +0 -0
  1492. /data/ext/cargo-vendor/{wasmtime-fiber-22.0.0 → wasmtime-fiber-23.0.2}/src/windows.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/README.md +0 -0
  1494. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/gdb_jit_int.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/lib.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasmtime-jit-debug-22.0.0 → wasmtime-jit-debug-23.0.2}/src/perf_jitdump.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/lib.rs +0 -0
  1498. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/libc.rs +0 -0
  1499. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/miri.rs +0 -0
  1500. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-22.0.0 → wasmtime-jit-icache-coherence-23.0.2}/src/win.rs +0 -0
  1501. /data/ext/cargo-vendor/{wasmtime-slab-22.0.0 → wasmtime-slab-23.0.2}/src/lib.rs +0 -0
  1502. /data/ext/cargo-vendor/{wasmtime-types-22.0.0 → wasmtime-types-23.0.2}/LICENSE +0 -0
  1503. /data/ext/cargo-vendor/{wasmtime-types-22.0.0 → wasmtime-types-23.0.2}/src/error.rs +0 -0
  1504. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-22.0.0 → wasmtime-versioned-export-macros-23.0.2}/src/lib.rs +0 -0
  1505. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/LICENSE +0 -0
  1506. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/README.md +0 -0
  1507. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/clocks/host.rs +0 -0
  1508. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/clocks.rs +0 -0
  1509. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/ctx.rs +0 -0
  1510. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/error.rs +0 -0
  1511. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/clocks.rs +0 -0
  1512. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/env.rs +0 -0
  1513. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/exit.rs +0 -0
  1514. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/filesystem/sync.rs +0 -0
  1515. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/instance_network.rs +0 -0
  1516. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/mod.rs +0 -0
  1517. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/network.rs +0 -0
  1518. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/random.rs +0 -0
  1519. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/tcp.rs +0 -0
  1520. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/tcp_create_socket.rs +0 -0
  1521. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/udp.rs +0 -0
  1522. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/host/udp_create_socket.rs +0 -0
  1523. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/ip_name_lookup.rs +0 -0
  1524. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/network.rs +0 -0
  1525. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/pipe.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/poll.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/preview0.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/random.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/runtime.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/stdio/worker_thread_stdin.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/stream.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/tcp.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/udp.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/src/write_stream.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/all/main.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/all/preview1.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/tests/process_stdin.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/command-extended.wit +0 -0
  1539. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/command.wit +0 -0
  1540. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/environment.wit +0 -0
  1541. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/exit.wit +0 -0
  1542. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/imports.wit +0 -0
  1543. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/run.wit +0 -0
  1544. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/stdio.wit +0 -0
  1545. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/cli/terminal.wit +0 -0
  1546. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1547. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/wall-clock.wit +0 -0
  1548. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/clocks/world.wit +0 -0
  1549. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/preopens.wit +0 -0
  1550. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/types.wit +0 -0
  1551. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/filesystem/world.wit +0 -0
  1552. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/handler.wit +0 -0
  1553. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/proxy.wit +0 -0
  1554. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/http/types.wit +0 -0
  1555. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/error.wit +0 -0
  1556. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/poll.wit +0 -0
  1557. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/streams.wit +0 -0
  1558. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/io/world.wit +0 -0
  1559. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure-seed.wit +0 -0
  1560. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/insecure.wit +0 -0
  1561. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/random.wit +0 -0
  1562. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/random/world.wit +0 -0
  1563. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/instance-network.wit +0 -0
  1564. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/ip-name-lookup.wit +0 -0
  1565. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/network.wit +0 -0
  1566. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp-create-socket.wit +0 -0
  1567. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/tcp.wit +0 -0
  1568. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp-create-socket.wit +0 -0
  1569. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/udp.wit +0 -0
  1570. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/deps/sockets/world.wit +0 -0
  1571. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/wit/test.wit +0 -0
  1572. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview0/typenames.witx +0 -0
  1573. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview0/wasi_unstable.witx +0 -0
  1574. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview1/typenames.witx +0 -0
  1575. /data/ext/cargo-vendor/{wasmtime-wasi-22.0.0 → wasmtime-wasi-23.0.2}/witx/preview1/wasi_snapshot_preview1.witx +0 -0
  1576. /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/LICENSE +0 -0
  1577. /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/src/builder.rs +0 -0
  1578. /data/ext/cargo-vendor/{wasmtime-winch-22.0.0 → wasmtime-winch-23.0.2}/src/lib.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/rust.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/source.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-22.0.0 → wasmtime-wit-bindgen-23.0.2}/src/types.rs +0 -0
  1582. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/README.md +0 -0
  1583. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/alias.rs +0 -0
  1584. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/custom.rs +0 -0
  1585. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/export.rs +0 -0
  1586. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/func.rs +0 -0
  1587. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/import.rs +0 -0
  1588. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/instance.rs +0 -0
  1589. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/item_ref.rs +0 -0
  1590. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/module.rs +0 -0
  1591. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/types.rs +0 -0
  1592. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/component/wast.rs +0 -0
  1593. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/custom.rs +0 -0
  1594. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/export.rs +0 -0
  1595. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/func.rs +0 -0
  1596. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/global.rs +0 -0
  1597. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/import.rs +0 -0
  1598. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/resolve/mod.rs +0 -0
  1599. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/tag.rs +0 -0
  1600. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/core/wast.rs +0 -0
  1601. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/encode.rs +0 -0
  1602. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/error.rs +0 -0
  1603. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/gensym.rs +0 -0
  1604. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/lexer.rs +0 -0
  1605. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/names.rs +0 -0
  1606. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/token.rs +0 -0
  1607. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/src/wast.rs +0 -0
  1608. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/annotations.rs +0 -0
  1609. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/comments.rs +0 -0
  1610. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1611. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1612. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat +0 -0
  1613. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1614. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat +0 -0
  1615. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-index.wat.err +0 -0
  1616. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat +0 -0
  1617. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name.wat.err +0 -0
  1618. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat +0 -0
  1619. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name2.wat.err +0 -0
  1620. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat +0 -0
  1621. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/bad-name3.wat.err +0 -0
  1622. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat +0 -0
  1623. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block1.wat.err +0 -0
  1624. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat +0 -0
  1625. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block2.wat.err +0 -0
  1626. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat +0 -0
  1627. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/block3.wat.err +0 -0
  1628. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1629. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1630. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1631. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1632. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1633. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1634. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1635. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1636. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1637. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1638. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1639. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1640. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1641. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1642. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1643. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1644. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1645. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1646. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1647. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1648. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1649. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1650. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1651. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1652. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1653. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1654. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1655. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1656. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1657. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1658. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1659. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1660. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1661. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1662. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1663. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1664. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat +0 -0
  1665. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1666. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat +0 -0
  1667. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1668. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat +0 -0
  1669. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1670. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat +0 -0
  1671. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1672. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat +0 -0
  1673. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1674. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat +0 -0
  1675. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1676. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat +0 -0
  1677. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1678. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat +0 -0
  1679. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1680. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat +0 -0
  1681. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1682. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat +0 -0
  1683. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/inline1.wat.err +0 -0
  1684. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat +0 -0
  1685. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1686. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat +0 -0
  1687. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string1.wat.err +0 -0
  1688. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat +0 -0
  1689. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string10.wat.err +0 -0
  1690. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat +0 -0
  1691. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string11.wat.err +0 -0
  1692. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat +0 -0
  1693. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string12.wat.err +0 -0
  1694. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat +0 -0
  1695. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string13.wat.err +0 -0
  1696. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat +0 -0
  1697. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string14.wat.err +0 -0
  1698. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat +0 -0
  1699. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string15.wat.err +0 -0
  1700. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat +0 -0
  1701. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string16.wat.err +0 -0
  1702. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat +0 -0
  1703. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string2.wat.err +0 -0
  1704. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat +0 -0
  1705. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string3.wat.err +0 -0
  1706. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat +0 -0
  1707. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string4.wat.err +0 -0
  1708. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat +0 -0
  1709. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string5.wat.err +0 -0
  1710. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat +0 -0
  1711. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string6.wat.err +0 -0
  1712. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat +0 -0
  1713. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string7.wat.err +0 -0
  1714. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat +0 -0
  1715. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string8.wat.err +0 -0
  1716. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat +0 -0
  1717. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/string9.wat.err +0 -0
  1718. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat +0 -0
  1719. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail/unbalanced.wat.err +0 -0
  1720. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/parse-fail.rs +0 -0
  1721. /data/ext/cargo-vendor/{wast-209.0.1 → wast-215.0.0}/tests/recursive.rs +0 -0
  1722. /data/ext/cargo-vendor/{wat-1.209.1 → wat-1.215.0}/README.md +0 -0
  1723. /data/ext/cargo-vendor/{wast-209.0.1 → wiggle-23.0.2}/LICENSE +0 -0
  1724. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/README.md +0 -0
  1725. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/error.rs +0 -0
  1726. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/guest_type.rs +0 -0
  1727. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/lib.rs +0 -0
  1728. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-23.0.2}/src/region.rs +0 -0
  1729. /data/ext/cargo-vendor/{wat-1.209.1 → wiggle-generate-23.0.2}/LICENSE +0 -0
  1730. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/README.md +0 -0
  1731. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/codegen_settings.rs +0 -0
  1732. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/config.rs +0 -0
  1733. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/funcs.rs +0 -0
  1734. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/lib.rs +0 -0
  1735. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/lifetimes.rs +0 -0
  1736. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/module_trait.rs +0 -0
  1737. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/names.rs +0 -0
  1738. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/error.rs +0 -0
  1739. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/flags.rs +0 -0
  1740. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/handle.rs +0 -0
  1741. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/mod.rs +0 -0
  1742. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/record.rs +0 -0
  1743. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/types/variant.rs +0 -0
  1744. /data/ext/cargo-vendor/{wiggle-generate-22.0.0 → wiggle-generate-23.0.2}/src/wasmtime.rs +0 -0
  1745. /data/ext/cargo-vendor/{wiggle-22.0.0 → wiggle-macro-23.0.2}/LICENSE +0 -0
  1746. /data/ext/cargo-vendor/{wiggle-macro-22.0.0 → wiggle-macro-23.0.2}/build.rs +0 -0
  1747. /data/ext/cargo-vendor/{wiggle-macro-22.0.0 → wiggle-macro-23.0.2}/src/lib.rs +0 -0
  1748. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/LICENSE +0 -0
  1749. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/build.rs +0 -0
  1750. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/abi/local.rs +0 -0
  1751. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/abi/mod.rs +0 -0
  1752. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/bounds.rs +0 -0
  1753. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/builtin.rs +0 -0
  1754. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/call.rs +0 -0
  1755. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/context.rs +0 -0
  1756. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/codegen/control.rs +0 -0
  1757. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/frame/mod.rs +0 -0
  1758. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/abi.rs +0 -0
  1759. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/address.rs +0 -0
  1760. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/asm.rs +0 -0
  1761. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/masm.rs +0 -0
  1762. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/mod.rs +0 -0
  1763. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/aarch64/regs.rs +0 -0
  1764. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/mod.rs +0 -0
  1765. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/reg.rs +0 -0
  1766. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/abi.rs +0 -0
  1767. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/address.rs +0 -0
  1768. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/asm.rs +0 -0
  1769. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/masm.rs +0 -0
  1770. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/mod.rs +0 -0
  1771. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/isa/x64/regs.rs +0 -0
  1772. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/lib.rs +0 -0
  1773. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/masm.rs +0 -0
  1774. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/regalloc.rs +0 -0
  1775. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/regset.rs +0 -0
  1776. /data/ext/cargo-vendor/{winch-codegen-0.20.0 → winch-codegen-0.21.2}/src/stack.rs +0 -0
  1777. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/README.md +0 -0
  1778. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/abi.rs +0 -0
  1779. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/ast/toposort.rs +0 -0
  1780. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/live.rs +0 -0
  1781. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/metadata.rs +0 -0
  1782. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/serde_.rs +0 -0
  1783. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/src/sizealign.rs +0 -0
  1784. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/all.rs +0 -0
  1785. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/comments.wit +0 -0
  1786. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/comments.wit.json +0 -0
  1787. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  1788. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  1789. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include/root.wit +0 -0
  1790. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/complex-include.wit.json +0 -0
  1791. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  1792. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource/foo.wit +0 -0
  1793. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/cross-package-resource.wit.json +0 -0
  1794. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  1795. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  1796. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1/join.wit +0 -0
  1797. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/diamond1.wit.json +0 -0
  1798. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  1799. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  1800. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond/world.wit +0 -0
  1801. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/disambiguate-diamond.wit.json +0 -0
  1802. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/empty.wit +0 -0
  1803. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/empty.wit.json +0 -0
  1804. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/feature-gates.wit +0 -0
  1805. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  1806. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  1807. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  1808. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  1809. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  1810. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  1811. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  1812. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps/root.wit +0 -0
  1813. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  1814. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  1815. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  1816. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  1817. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  1818. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  1819. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  1820. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  1821. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union/root.wit +0 -0
  1822. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps-union.wit.json +0 -0
  1823. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/foreign-deps.wit.json +0 -0
  1824. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/functions.wit +0 -0
  1825. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/functions.wit.json +0 -0
  1826. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  1827. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  1828. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps/world.wit +0 -0
  1829. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/ignore-files-deps.wit.json +0 -0
  1830. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit +0 -0
  1831. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap1.wit.json +0 -0
  1832. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap2.wit +0 -0
  1833. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/import-export-overlap2.wit.json +0 -0
  1834. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/include-reps.wit +0 -0
  1835. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/include-reps.wit.json +0 -0
  1836. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit +0 -0
  1837. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kebab-name-include-with.wit.json +0 -0
  1838. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/a.wit +0 -0
  1839. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/b/root.wit +0 -0
  1840. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/c.wit +0 -0
  1841. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/d.wat +0 -0
  1842. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps/deps/e.wasm +0 -0
  1843. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/kinds-of-deps.wit.json +0 -0
  1844. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names/a.wit +0 -0
  1845. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names/b.wit +0 -0
  1846. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/many-names.wit.json +0 -0
  1847. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/bar.wit +0 -0
  1848. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-a.wit +0 -0
  1849. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/cycle-b.wit +0 -0
  1850. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file/foo.wit +0 -0
  1851. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/multi-file.wit.json +0 -0
  1852. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  1853. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  1854. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/name-both-resource-and-type.wit.json +0 -0
  1855. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit +0 -0
  1856. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax1.wit.json +0 -0
  1857. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit +0 -0
  1858. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax3.wit.json +0 -0
  1859. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit +0 -0
  1860. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/package-syntax4.wit.json +0 -0
  1861. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  1862. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  1863. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/async.wit.result +0 -0
  1864. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/async1.wit.result +0 -0
  1865. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit +0 -0
  1866. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  1867. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit +0 -0
  1868. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  1869. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate1.wit +0 -0
  1870. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate1.wit.result +0 -0
  1871. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate2.wit +0 -0
  1872. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate2.wit.result +0 -0
  1873. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate3.wit +0 -0
  1874. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate3.wit.result +0 -0
  1875. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate4.wit +0 -0
  1876. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate4.wit.result +0 -0
  1877. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate5.wit +0 -0
  1878. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-gate5.wit.result +0 -0
  1879. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit +0 -0
  1880. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  1881. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit +0 -0
  1882. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  1883. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit +0 -0
  1884. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  1885. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit +0 -0
  1886. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  1887. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  1888. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  1889. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  1890. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  1891. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  1892. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  1893. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  1894. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  1895. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  1896. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  1897. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  1898. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  1899. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  1900. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  1901. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  1902. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  1903. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  1904. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  1905. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  1906. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  1907. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  1908. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  1909. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  1910. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  1911. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  1912. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  1913. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  1914. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  1915. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  1916. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  1917. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  1918. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  1919. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  1920. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  1921. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  1922. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  1923. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  1924. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  1925. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  1926. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  1927. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  1928. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  1929. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  1930. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  1931. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  1932. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  1933. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  1934. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  1935. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since1.wit +0 -0
  1936. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since1.wit.result +0 -0
  1937. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since3.wit +0 -0
  1938. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-since3.wit.result +0 -0
  1939. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  1940. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  1941. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  1942. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  1943. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  1944. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit +0 -0
  1945. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle.wit.result +0 -0
  1946. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit +0 -0
  1947. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  1948. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit +0 -0
  1949. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  1950. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit +0 -0
  1951. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  1952. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit +0 -0
  1953. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  1954. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit +0 -0
  1955. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  1956. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit +0 -0
  1957. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-function-params.wit.result +0 -0
  1958. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  1959. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  1960. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  1961. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  1962. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  1963. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  1964. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  1965. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  1966. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  1967. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit +0 -0
  1968. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  1969. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  1970. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  1971. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit +0 -0
  1972. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  1973. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  1974. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  1975. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  1976. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  1977. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  1978. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  1979. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  1980. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  1981. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  1982. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  1983. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit +0 -0
  1984. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  1985. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit +0 -0
  1986. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  1987. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  1988. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  1989. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  1990. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit +0 -0
  1991. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  1992. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  1993. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  1994. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  1995. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  1996. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  1997. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  1998. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  1999. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2000. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2001. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2002. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2003. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2004. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit +0 -0
  2005. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2006. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit +0 -0
  2007. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2008. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/a.wit +0 -0
  2009. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs/b.wit +0 -0
  2010. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/multiple-package-docs.wit.result +0 -0
  2011. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2012. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2013. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2014. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2015. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2016. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2017. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2018. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2019. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2020. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2021. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2022. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2023. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2024. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit +0 -0
  2025. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-multiple-returns-borrow.wit.result +0 -0
  2026. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-return-borrow.wit +0 -0
  2027. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/resources-return-borrow.wit.result +0 -0
  2028. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow1.wit +0 -0
  2029. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow1.wit.result +0 -0
  2030. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow2.wit +0 -0
  2031. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow2.wit.result +0 -0
  2032. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit +0 -0
  2033. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow3.wit.result +0 -0
  2034. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit +0 -0
  2035. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow4.wit.result +0 -0
  2036. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit +0 -0
  2037. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow5.wit.result +0 -0
  2038. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow6.wit +0 -0
  2039. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow6.wit.result +0 -0
  2040. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow7.wit +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow7.wit.result +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/deps/baz.wit +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8/foo.wit +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/return-borrow8.wit.result +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2090. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2091. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2092. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2093. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2094. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2095. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2096. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2097. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2098. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2099. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2100. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2101. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2102. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2103. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2104. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/random.wit +0 -0
  2105. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/random.wit.json +0 -0
  2106. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-empty.wit +0 -0
  2107. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-empty.wit.json +0 -0
  2108. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2109. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple-returns-own.wit.json +0 -0
  2110. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit +0 -0
  2111. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-multiple.wit.json +0 -0
  2112. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit +0 -0
  2113. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources-return-own.wit.json +0 -0
  2114. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources.wit +0 -0
  2115. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources.wit.json +0 -0
  2116. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources1.wit +0 -0
  2117. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/resources1.wit.json +0 -0
  2118. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit +0 -0
  2119. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/same-name-import-export.wit.json +0 -0
  2120. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/shared-types.wit +0 -0
  2121. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/shared-types.wit.json +0 -0
  2122. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wat +0 -0
  2123. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/simple-wasm-text.wit.json +0 -0
  2124. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/since-and-unstable.wit +0 -0
  2125. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/stress-export-elaborate.wit +0 -0
  2126. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/stress-export-elaborate.wit.json +0 -0
  2127. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit +0 -0
  2128. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/type-then-eof.wit.json +0 -0
  2129. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/types.wit +0 -0
  2130. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/types.wit.json +0 -0
  2131. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit +0 -0
  2132. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-1.wit.json +0 -0
  2133. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit +0 -0
  2134. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/union-fuzz-2.wit.json +0 -0
  2135. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use-chain.wit +0 -0
  2136. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use-chain.wit.json +0 -0
  2137. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use.wit +0 -0
  2138. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/use.wit.json +0 -0
  2139. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2140. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions/foo.wit +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/versions.wit.json +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/wasi.wit +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/wasi.wit.json +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-diamond.wit +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-diamond.wit.json +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-iface-no-collide.wit +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-iface-no-collide.wit.json +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import1.wit +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import1.wit.json +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import2.wit +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import2.wit.json +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import3.wit +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-implicit-import3.wit.json +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-same-fields4.wit +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-same-fields4.wit.json +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-funcs.wit.json +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-resources.wit +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/world-top-level-resources.wit.json +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-union-dedup.wit +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-union-dedup.wit.json +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-with-types.wit +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.209.1 → wit-parser-0.212.0}/tests/ui/worlds-with-types.wit.json +0 -0
@@ -1,3401 +0,0 @@
1
- //! S390x ISA: binary code emission.
2
-
3
- use crate::binemit::StackMap;
4
- use crate::ir::{MemFlags, TrapCode};
5
- use crate::isa::s390x::inst::*;
6
- use crate::isa::s390x::settings as s390x_settings;
7
- use cranelift_control::ControlPlane;
8
-
9
- /// Debug macro for testing that a regpair is valid: that the high register is even, and the low
10
- /// register is one higher than the high register.
11
- macro_rules! debug_assert_valid_regpair {
12
- ($hi:expr, $lo:expr) => {
13
- if cfg!(debug_assertions) {
14
- match ($hi.to_real_reg(), $lo.to_real_reg()) {
15
- (Some(hi), Some(lo)) => {
16
- assert!(
17
- hi.hw_enc() % 2 == 0,
18
- "High register is not even: {}",
19
- show_reg($hi)
20
- );
21
- assert_eq!(
22
- hi.hw_enc() + 1,
23
- lo.hw_enc(),
24
- "Low register is not valid: {}, {}",
25
- show_reg($hi),
26
- show_reg($lo)
27
- );
28
- }
29
-
30
- _ => {
31
- panic!(
32
- "Expected real registers for {} {}",
33
- show_reg($hi),
34
- show_reg($lo)
35
- );
36
- }
37
- }
38
- }
39
- };
40
- }
41
-
42
- /// Type(s) of memory instructions available for mem_finalize.
43
- pub struct MemInstType {
44
- /// True if 12-bit unsigned displacement is supported.
45
- pub have_d12: bool,
46
- /// True if 20-bit signed displacement is supported.
47
- pub have_d20: bool,
48
- /// True if PC-relative addressing is supported (memory access).
49
- pub have_pcrel: bool,
50
- /// True if PC-relative addressing is supported (load address).
51
- pub have_unaligned_pcrel: bool,
52
- /// True if an index register is supported.
53
- pub have_index: bool,
54
- }
55
-
56
- /// Memory addressing mode finalization: convert "special" modes (e.g.,
57
- /// generic arbitrary stack offset) into real addressing modes, possibly by
58
- /// emitting some helper instructions that come immediately before the use
59
- /// of this amode.
60
- pub fn mem_finalize(
61
- mem: &MemArg,
62
- state: &EmitState,
63
- mi: MemInstType,
64
- ) -> (SmallVec<[Inst; 4]>, MemArg) {
65
- let mut insts = SmallVec::new();
66
-
67
- // Resolve virtual addressing modes.
68
- let mem = match mem {
69
- &MemArg::RegOffset { off, .. }
70
- | &MemArg::InitialSPOffset { off }
71
- | &MemArg::SlotOffset { off } => {
72
- let base = match mem {
73
- &MemArg::RegOffset { reg, .. } => reg,
74
- &MemArg::InitialSPOffset { .. } | &MemArg::SlotOffset { .. } => stack_reg(),
75
- _ => unreachable!(),
76
- };
77
- let adj = match mem {
78
- &MemArg::InitialSPOffset { .. } => {
79
- state.initial_sp_offset + i64::from(state.frame_layout().outgoing_args_size)
80
- }
81
- &MemArg::SlotOffset { .. } => i64::from(state.frame_layout().outgoing_args_size),
82
- _ => 0,
83
- };
84
- let off = off + adj;
85
-
86
- if let Some(disp) = UImm12::maybe_from_u64(off as u64) {
87
- MemArg::BXD12 {
88
- base,
89
- index: zero_reg(),
90
- disp,
91
- flags: mem.get_flags(),
92
- }
93
- } else if let Some(disp) = SImm20::maybe_from_i64(off) {
94
- MemArg::BXD20 {
95
- base,
96
- index: zero_reg(),
97
- disp,
98
- flags: mem.get_flags(),
99
- }
100
- } else {
101
- let tmp = writable_spilltmp_reg();
102
- assert!(base != tmp.to_reg());
103
- if let Ok(imm) = i16::try_from(off) {
104
- insts.push(Inst::Mov64SImm16 { rd: tmp, imm });
105
- } else if let Ok(imm) = i32::try_from(off) {
106
- insts.push(Inst::Mov64SImm32 { rd: tmp, imm });
107
- } else {
108
- // The offset must be smaller than the stack frame size,
109
- // which the ABI code limits to 128 MB.
110
- unreachable!();
111
- }
112
- MemArg::reg_plus_reg(base, tmp.to_reg(), mem.get_flags())
113
- }
114
- }
115
- _ => mem.clone(),
116
- };
117
-
118
- // If this addressing mode cannot be handled by the instruction, use load-address.
119
- let need_load_address = match &mem {
120
- &MemArg::Label { .. } | &MemArg::Symbol { .. } if !mi.have_pcrel => true,
121
- &MemArg::Symbol { flags, .. } if !mi.have_unaligned_pcrel && !flags.aligned() => true,
122
- &MemArg::BXD20 { .. } if !mi.have_d20 => true,
123
- &MemArg::BXD12 { index, .. } | &MemArg::BXD20 { index, .. } if !mi.have_index => {
124
- index != zero_reg()
125
- }
126
- _ => false,
127
- };
128
- let mem = if need_load_address {
129
- let flags = mem.get_flags();
130
- let tmp = writable_spilltmp_reg();
131
- insts.push(Inst::LoadAddr { rd: tmp, mem });
132
- MemArg::reg(tmp.to_reg(), flags)
133
- } else {
134
- mem
135
- };
136
-
137
- // Convert 12-bit displacement to 20-bit if required.
138
- let mem = match &mem {
139
- &MemArg::BXD12 {
140
- base,
141
- index,
142
- disp,
143
- flags,
144
- } if !mi.have_d12 => {
145
- assert!(mi.have_d20);
146
- MemArg::BXD20 {
147
- base,
148
- index,
149
- disp: SImm20::from_uimm12(disp),
150
- flags,
151
- }
152
- }
153
- _ => mem,
154
- };
155
-
156
- (insts, mem)
157
- }
158
-
159
- pub fn mem_emit(
160
- rd: Reg,
161
- mem: &MemArg,
162
- opcode_rx: Option<u16>,
163
- opcode_rxy: Option<u16>,
164
- opcode_ril: Option<u16>,
165
- add_trap: bool,
166
- sink: &mut MachBuffer<Inst>,
167
- emit_info: &EmitInfo,
168
- state: &mut EmitState,
169
- ) {
170
- let (mem_insts, mem) = mem_finalize(
171
- mem,
172
- state,
173
- MemInstType {
174
- have_d12: opcode_rx.is_some(),
175
- have_d20: opcode_rxy.is_some(),
176
- have_pcrel: opcode_ril.is_some(),
177
- have_unaligned_pcrel: opcode_ril.is_some() && !add_trap,
178
- have_index: true,
179
- },
180
- );
181
- for inst in mem_insts.into_iter() {
182
- inst.emit(sink, emit_info, state);
183
- }
184
-
185
- if add_trap {
186
- if let Some(trap_code) = mem.get_flags().trap_code() {
187
- sink.add_trap(trap_code);
188
- }
189
- }
190
-
191
- match &mem {
192
- &MemArg::BXD12 {
193
- base, index, disp, ..
194
- } => {
195
- put(
196
- sink,
197
- &enc_rx(opcode_rx.unwrap(), rd, base, index, disp.bits()),
198
- );
199
- }
200
- &MemArg::BXD20 {
201
- base, index, disp, ..
202
- } => {
203
- put(
204
- sink,
205
- &enc_rxy(opcode_rxy.unwrap(), rd, base, index, disp.bits()),
206
- );
207
- }
208
- &MemArg::Label { target } => {
209
- sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
210
- put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
211
- }
212
- &MemArg::Symbol {
213
- ref name, offset, ..
214
- } => {
215
- sink.add_reloc_at_offset(2, Reloc::S390xPCRel32Dbl, &**name, (offset + 2).into());
216
- put(sink, &enc_ril_b(opcode_ril.unwrap(), rd, 0));
217
- }
218
- _ => unreachable!(),
219
- }
220
- }
221
-
222
- pub fn mem_rs_emit(
223
- rd: Reg,
224
- rn: Reg,
225
- mem: &MemArg,
226
- opcode_rs: Option<u16>,
227
- opcode_rsy: Option<u16>,
228
- add_trap: bool,
229
- sink: &mut MachBuffer<Inst>,
230
- emit_info: &EmitInfo,
231
- state: &mut EmitState,
232
- ) {
233
- let (mem_insts, mem) = mem_finalize(
234
- mem,
235
- state,
236
- MemInstType {
237
- have_d12: opcode_rs.is_some(),
238
- have_d20: opcode_rsy.is_some(),
239
- have_pcrel: false,
240
- have_unaligned_pcrel: false,
241
- have_index: false,
242
- },
243
- );
244
- for inst in mem_insts.into_iter() {
245
- inst.emit(sink, emit_info, state);
246
- }
247
-
248
- if add_trap {
249
- if let Some(trap_code) = mem.get_flags().trap_code() {
250
- sink.add_trap(trap_code);
251
- }
252
- }
253
-
254
- match &mem {
255
- &MemArg::BXD12 {
256
- base, index, disp, ..
257
- } => {
258
- assert!(index == zero_reg());
259
- put(sink, &enc_rs(opcode_rs.unwrap(), rd, rn, base, disp.bits()));
260
- }
261
- &MemArg::BXD20 {
262
- base, index, disp, ..
263
- } => {
264
- assert!(index == zero_reg());
265
- put(
266
- sink,
267
- &enc_rsy(opcode_rsy.unwrap(), rd, rn, base, disp.bits()),
268
- );
269
- }
270
- _ => unreachable!(),
271
- }
272
- }
273
-
274
- pub fn mem_imm8_emit(
275
- imm: u8,
276
- mem: &MemArg,
277
- opcode_si: u16,
278
- opcode_siy: u16,
279
- add_trap: bool,
280
- sink: &mut MachBuffer<Inst>,
281
- emit_info: &EmitInfo,
282
- state: &mut EmitState,
283
- ) {
284
- let (mem_insts, mem) = mem_finalize(
285
- mem,
286
- state,
287
- MemInstType {
288
- have_d12: true,
289
- have_d20: true,
290
- have_pcrel: false,
291
- have_unaligned_pcrel: false,
292
- have_index: false,
293
- },
294
- );
295
- for inst in mem_insts.into_iter() {
296
- inst.emit(sink, emit_info, state);
297
- }
298
-
299
- if add_trap {
300
- if let Some(trap_code) = mem.get_flags().trap_code() {
301
- sink.add_trap(trap_code);
302
- }
303
- }
304
-
305
- match &mem {
306
- &MemArg::BXD12 {
307
- base, index, disp, ..
308
- } => {
309
- assert!(index == zero_reg());
310
- put(sink, &enc_si(opcode_si, base, disp.bits(), imm));
311
- }
312
- &MemArg::BXD20 {
313
- base, index, disp, ..
314
- } => {
315
- assert!(index == zero_reg());
316
- put(sink, &enc_siy(opcode_siy, base, disp.bits(), imm));
317
- }
318
- _ => unreachable!(),
319
- }
320
- }
321
-
322
- pub fn mem_imm16_emit(
323
- imm: i16,
324
- mem: &MemArg,
325
- opcode_sil: u16,
326
- add_trap: bool,
327
- sink: &mut MachBuffer<Inst>,
328
- emit_info: &EmitInfo,
329
- state: &mut EmitState,
330
- ) {
331
- let (mem_insts, mem) = mem_finalize(
332
- mem,
333
- state,
334
- MemInstType {
335
- have_d12: true,
336
- have_d20: false,
337
- have_pcrel: false,
338
- have_unaligned_pcrel: false,
339
- have_index: false,
340
- },
341
- );
342
- for inst in mem_insts.into_iter() {
343
- inst.emit(sink, emit_info, state);
344
- }
345
-
346
- if add_trap {
347
- if let Some(trap_code) = mem.get_flags().trap_code() {
348
- sink.add_trap(trap_code);
349
- }
350
- }
351
-
352
- match &mem {
353
- &MemArg::BXD12 {
354
- base, index, disp, ..
355
- } => {
356
- assert!(index == zero_reg());
357
- put(sink, &enc_sil(opcode_sil, base, disp.bits(), imm));
358
- }
359
- _ => unreachable!(),
360
- }
361
- }
362
-
363
- pub fn mem_mem_emit(
364
- dst: &MemArgPair,
365
- src: &MemArgPair,
366
- len_minus_one: u8,
367
- opcode_ss: u8,
368
- add_trap: bool,
369
- sink: &mut MachBuffer<Inst>,
370
- _state: &mut EmitState,
371
- ) {
372
- if add_trap {
373
- if let Some(trap_code) = dst.flags.trap_code().or(src.flags.trap_code()) {
374
- sink.add_trap(trap_code);
375
- }
376
- }
377
-
378
- put(
379
- sink,
380
- &enc_ss_a(
381
- opcode_ss,
382
- dst.base,
383
- dst.disp.bits(),
384
- src.base,
385
- src.disp.bits(),
386
- len_minus_one,
387
- ),
388
- );
389
- }
390
-
391
- pub fn mem_vrx_emit(
392
- rd: Reg,
393
- mem: &MemArg,
394
- opcode: u16,
395
- m3: u8,
396
- add_trap: bool,
397
- sink: &mut MachBuffer<Inst>,
398
- emit_info: &EmitInfo,
399
- state: &mut EmitState,
400
- ) {
401
- let (mem_insts, mem) = mem_finalize(
402
- mem,
403
- state,
404
- MemInstType {
405
- have_d12: true,
406
- have_d20: false,
407
- have_pcrel: false,
408
- have_unaligned_pcrel: false,
409
- have_index: true,
410
- },
411
- );
412
- for inst in mem_insts.into_iter() {
413
- inst.emit(sink, emit_info, state);
414
- }
415
-
416
- if add_trap {
417
- if let Some(trap_code) = mem.get_flags().trap_code() {
418
- sink.add_trap(trap_code);
419
- }
420
- }
421
-
422
- match &mem {
423
- &MemArg::BXD12 {
424
- base, index, disp, ..
425
- } => {
426
- put(sink, &enc_vrx(opcode, rd, base, index, disp.bits(), m3));
427
- }
428
- _ => unreachable!(),
429
- }
430
- }
431
-
432
- //=============================================================================
433
- // Instructions and subcomponents: emission
434
-
435
- fn machreg_to_gpr(m: Reg) -> u8 {
436
- assert_eq!(m.class(), RegClass::Int);
437
- u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
438
- }
439
-
440
- fn machreg_to_vr(m: Reg) -> u8 {
441
- assert_eq!(m.class(), RegClass::Float);
442
- u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
443
- }
444
-
445
- fn machreg_to_fpr(m: Reg) -> u8 {
446
- assert!(is_fpr(m));
447
- u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap()
448
- }
449
-
450
- fn machreg_to_gpr_or_fpr(m: Reg) -> u8 {
451
- let reg = u8::try_from(m.to_real_reg().unwrap().hw_enc()).unwrap();
452
- assert!(reg < 16);
453
- reg
454
- }
455
-
456
- fn rxb(v1: Option<Reg>, v2: Option<Reg>, v3: Option<Reg>, v4: Option<Reg>) -> u8 {
457
- let mut rxb = 0;
458
-
459
- let is_high_vr = |reg| -> bool {
460
- if let Some(reg) = reg {
461
- if !is_fpr(reg) {
462
- return true;
463
- }
464
- }
465
- false
466
- };
467
-
468
- if is_high_vr(v1) {
469
- rxb = rxb | 8;
470
- }
471
- if is_high_vr(v2) {
472
- rxb = rxb | 4;
473
- }
474
- if is_high_vr(v3) {
475
- rxb = rxb | 2;
476
- }
477
- if is_high_vr(v4) {
478
- rxb = rxb | 1;
479
- }
480
-
481
- rxb
482
- }
483
-
484
- /// E-type instructions.
485
- ///
486
- /// 15
487
- /// opcode
488
- /// 0
489
- ///
490
- fn enc_e(opcode: u16) -> [u8; 2] {
491
- let mut enc: [u8; 2] = [0; 2];
492
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
493
- let opcode2 = (opcode & 0xff) as u8;
494
-
495
- enc[0] = opcode1;
496
- enc[1] = opcode2;
497
- enc
498
- }
499
-
500
- /// RIa-type instructions.
501
- ///
502
- /// 31 23 19 15
503
- /// opcode1 r1 opcode2 i2
504
- /// 24 20 16 0
505
- ///
506
- fn enc_ri_a(opcode: u16, r1: Reg, i2: u16) -> [u8; 4] {
507
- let mut enc: [u8; 4] = [0; 4];
508
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
509
- let opcode2 = (opcode & 0xf) as u8;
510
- let r1 = machreg_to_gpr(r1) & 0x0f;
511
-
512
- enc[0] = opcode1;
513
- enc[1] = r1 << 4 | opcode2;
514
- enc[2..].copy_from_slice(&i2.to_be_bytes());
515
- enc
516
- }
517
-
518
- /// RIb-type instructions.
519
- ///
520
- /// 31 23 19 15
521
- /// opcode1 r1 opcode2 ri2
522
- /// 24 20 16 0
523
- ///
524
- fn enc_ri_b(opcode: u16, r1: Reg, ri2: i32) -> [u8; 4] {
525
- let mut enc: [u8; 4] = [0; 4];
526
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
527
- let opcode2 = (opcode & 0xf) as u8;
528
- let r1 = machreg_to_gpr(r1) & 0x0f;
529
- let ri2 = ((ri2 >> 1) & 0xffff) as u16;
530
-
531
- enc[0] = opcode1;
532
- enc[1] = r1 << 4 | opcode2;
533
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
534
- enc
535
- }
536
-
537
- /// RIc-type instructions.
538
- ///
539
- /// 31 23 19 15
540
- /// opcode1 m1 opcode2 ri2
541
- /// 24 20 16 0
542
- ///
543
- fn enc_ri_c(opcode: u16, m1: u8, ri2: i32) -> [u8; 4] {
544
- let mut enc: [u8; 4] = [0; 4];
545
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
546
- let opcode2 = (opcode & 0xf) as u8;
547
- let m1 = m1 & 0x0f;
548
- let ri2 = ((ri2 >> 1) & 0xffff) as u16;
549
-
550
- enc[0] = opcode1;
551
- enc[1] = m1 << 4 | opcode2;
552
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
553
- enc
554
- }
555
-
556
- /// RIEa-type instructions.
557
- ///
558
- /// 47 39 35 31 15 11 7
559
- /// opcode1 r1 -- i2 m3 -- opcode2
560
- /// 40 36 32 16 12 8 0
561
- ///
562
- fn enc_rie_a(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
563
- let mut enc: [u8; 6] = [0; 6];
564
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
565
- let opcode2 = (opcode & 0xff) as u8;
566
- let r1 = machreg_to_gpr(r1) & 0x0f;
567
- let m3 = m3 & 0x0f;
568
-
569
- enc[0] = opcode1;
570
- enc[1] = r1 << 4;
571
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
572
- enc[4] = m3 << 4;
573
- enc[5] = opcode2;
574
- enc
575
- }
576
-
577
- /// RIEd-type instructions.
578
- ///
579
- /// 47 39 35 31 15 7
580
- /// opcode1 r1 r3 i2 -- opcode2
581
- /// 40 36 32 16 8 0
582
- ///
583
- fn enc_rie_d(opcode: u16, r1: Reg, r3: Reg, i2: u16) -> [u8; 6] {
584
- let mut enc: [u8; 6] = [0; 6];
585
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
586
- let opcode2 = (opcode & 0xff) as u8;
587
- let r1 = machreg_to_gpr(r1) & 0x0f;
588
- let r3 = machreg_to_gpr(r3) & 0x0f;
589
-
590
- enc[0] = opcode1;
591
- enc[1] = r1 << 4 | r3;
592
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
593
- enc[5] = opcode2;
594
- enc
595
- }
596
-
597
- /// RIEf-type instructions.
598
- ///
599
- /// 47 39 35 31 23 15 7
600
- /// opcode1 r1 r2 i3 i4 i5 opcode2
601
- /// 40 36 32 24 16 8 0
602
- ///
603
- fn enc_rie_f(opcode: u16, r1: Reg, r2: Reg, i3: u8, i4: u8, i5: u8) -> [u8; 6] {
604
- let mut enc: [u8; 6] = [0; 6];
605
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
606
- let opcode2 = (opcode & 0xff) as u8;
607
- let r1 = machreg_to_gpr(r1) & 0x0f;
608
- let r2 = machreg_to_gpr(r2) & 0x0f;
609
-
610
- enc[0] = opcode1;
611
- enc[1] = r1 << 4 | r2;
612
- enc[2] = i3;
613
- enc[3] = i4;
614
- enc[4] = i5;
615
- enc[5] = opcode2;
616
- enc
617
- }
618
-
619
- /// RIEg-type instructions.
620
- ///
621
- /// 47 39 35 31 15 7
622
- /// opcode1 r1 m3 i2 -- opcode2
623
- /// 40 36 32 16 8 0
624
- ///
625
- fn enc_rie_g(opcode: u16, r1: Reg, i2: u16, m3: u8) -> [u8; 6] {
626
- let mut enc: [u8; 6] = [0; 6];
627
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
628
- let opcode2 = (opcode & 0xff) as u8;
629
- let r1 = machreg_to_gpr(r1) & 0x0f;
630
- let m3 = m3 & 0x0f;
631
-
632
- enc[0] = opcode1;
633
- enc[1] = r1 << 4 | m3;
634
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
635
- enc[5] = opcode2;
636
- enc
637
- }
638
-
639
- /// RILa-type instructions.
640
- ///
641
- /// 47 39 35 31
642
- /// opcode1 r1 opcode2 i2
643
- /// 40 36 32 0
644
- ///
645
- fn enc_ril_a(opcode: u16, r1: Reg, i2: u32) -> [u8; 6] {
646
- let mut enc: [u8; 6] = [0; 6];
647
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
648
- let opcode2 = (opcode & 0xf) as u8;
649
- let r1 = machreg_to_gpr(r1) & 0x0f;
650
-
651
- enc[0] = opcode1;
652
- enc[1] = r1 << 4 | opcode2;
653
- enc[2..].copy_from_slice(&i2.to_be_bytes());
654
- enc
655
- }
656
-
657
- /// RILb-type instructions.
658
- ///
659
- /// 47 39 35 31
660
- /// opcode1 r1 opcode2 ri2
661
- /// 40 36 32 0
662
- ///
663
- fn enc_ril_b(opcode: u16, r1: Reg, ri2: u32) -> [u8; 6] {
664
- let mut enc: [u8; 6] = [0; 6];
665
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
666
- let opcode2 = (opcode & 0xf) as u8;
667
- let r1 = machreg_to_gpr(r1) & 0x0f;
668
- let ri2 = ri2 >> 1;
669
-
670
- enc[0] = opcode1;
671
- enc[1] = r1 << 4 | opcode2;
672
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
673
- enc
674
- }
675
-
676
- /// RILc-type instructions.
677
- ///
678
- /// 47 39 35 31
679
- /// opcode1 m1 opcode2 i2
680
- /// 40 36 32 0
681
- ///
682
- fn enc_ril_c(opcode: u16, m1: u8, ri2: u32) -> [u8; 6] {
683
- let mut enc: [u8; 6] = [0; 6];
684
- let opcode1 = ((opcode >> 4) & 0xff) as u8;
685
- let opcode2 = (opcode & 0xf) as u8;
686
- let m1 = m1 & 0x0f;
687
- let ri2 = ri2 >> 1;
688
-
689
- enc[0] = opcode1;
690
- enc[1] = m1 << 4 | opcode2;
691
- enc[2..].copy_from_slice(&ri2.to_be_bytes());
692
- enc
693
- }
694
-
695
- /// RR-type instructions.
696
- ///
697
- /// 15 7 3
698
- /// opcode r1 r2
699
- /// 8 4 0
700
- ///
701
- fn enc_rr(opcode: u16, r1: Reg, r2: Reg) -> [u8; 2] {
702
- let mut enc: [u8; 2] = [0; 2];
703
- let opcode = (opcode & 0xff) as u8;
704
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
705
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
706
-
707
- enc[0] = opcode;
708
- enc[1] = r1 << 4 | r2;
709
- enc
710
- }
711
-
712
- /// RRD-type instructions.
713
- ///
714
- /// 31 15 11 7 3
715
- /// opcode r1 -- r3 r2
716
- /// 16 12 8 4 0
717
- ///
718
- fn enc_rrd(opcode: u16, r1: Reg, r2: Reg, r3: Reg) -> [u8; 4] {
719
- let mut enc: [u8; 4] = [0; 4];
720
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
721
- let opcode2 = (opcode & 0xff) as u8;
722
- let r1 = machreg_to_fpr(r1) & 0x0f;
723
- let r2 = machreg_to_fpr(r2) & 0x0f;
724
- let r3 = machreg_to_fpr(r3) & 0x0f;
725
-
726
- enc[0] = opcode1;
727
- enc[1] = opcode2;
728
- enc[2] = r1 << 4;
729
- enc[3] = r3 << 4 | r2;
730
- enc
731
- }
732
-
733
- /// RRE-type instructions.
734
- ///
735
- /// 31 15 7 3
736
- /// opcode -- r1 r2
737
- /// 16 8 4 0
738
- ///
739
- fn enc_rre(opcode: u16, r1: Reg, r2: Reg) -> [u8; 4] {
740
- let mut enc: [u8; 4] = [0; 4];
741
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
742
- let opcode2 = (opcode & 0xff) as u8;
743
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
744
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
745
-
746
- enc[0] = opcode1;
747
- enc[1] = opcode2;
748
- enc[3] = r1 << 4 | r2;
749
- enc
750
- }
751
-
752
- /// RRFa/b-type instructions.
753
- ///
754
- /// 31 15 11 7 3
755
- /// opcode r3 m4 r1 r2
756
- /// 16 12 8 4 0
757
- ///
758
- fn enc_rrf_ab(opcode: u16, r1: Reg, r2: Reg, r3: Reg, m4: u8) -> [u8; 4] {
759
- let mut enc: [u8; 4] = [0; 4];
760
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
761
- let opcode2 = (opcode & 0xff) as u8;
762
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
763
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
764
- let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
765
- let m4 = m4 & 0x0f;
766
-
767
- enc[0] = opcode1;
768
- enc[1] = opcode2;
769
- enc[2] = r3 << 4 | m4;
770
- enc[3] = r1 << 4 | r2;
771
- enc
772
- }
773
-
774
- /// RRFc/d/e-type instructions.
775
- ///
776
- /// 31 15 11 7 3
777
- /// opcode m3 m4 r1 r2
778
- /// 16 12 8 4 0
779
- ///
780
- fn enc_rrf_cde(opcode: u16, r1: Reg, r2: Reg, m3: u8, m4: u8) -> [u8; 4] {
781
- let mut enc: [u8; 4] = [0; 4];
782
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
783
- let opcode2 = (opcode & 0xff) as u8;
784
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
785
- let r2 = machreg_to_gpr_or_fpr(r2) & 0x0f;
786
- let m3 = m3 & 0x0f;
787
- let m4 = m4 & 0x0f;
788
-
789
- enc[0] = opcode1;
790
- enc[1] = opcode2;
791
- enc[2] = m3 << 4 | m4;
792
- enc[3] = r1 << 4 | r2;
793
- enc
794
- }
795
-
796
- /// RS-type instructions.
797
- ///
798
- /// 31 23 19 15 11
799
- /// opcode r1 r3 b2 d2
800
- /// 24 20 16 12 0
801
- ///
802
- fn enc_rs(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 4] {
803
- let opcode = (opcode & 0xff) as u8;
804
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
805
- let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
806
- let b2 = machreg_to_gpr(b2) & 0x0f;
807
- let d2_lo = (d2 & 0xff) as u8;
808
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
809
-
810
- let mut enc: [u8; 4] = [0; 4];
811
- enc[0] = opcode;
812
- enc[1] = r1 << 4 | r3;
813
- enc[2] = b2 << 4 | d2_hi;
814
- enc[3] = d2_lo;
815
- enc
816
- }
817
-
818
- /// RSY-type instructions.
819
- ///
820
- /// 47 39 35 31 27 15 7
821
- /// opcode1 r1 r3 b2 dl2 dh2 opcode2
822
- /// 40 36 32 28 16 8 0
823
- ///
824
- fn enc_rsy(opcode: u16, r1: Reg, r3: Reg, b2: Reg, d2: u32) -> [u8; 6] {
825
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
826
- let opcode2 = (opcode & 0xff) as u8;
827
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
828
- let r3 = machreg_to_gpr_or_fpr(r3) & 0x0f;
829
- let b2 = machreg_to_gpr(b2) & 0x0f;
830
- let dl2_lo = (d2 & 0xff) as u8;
831
- let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
832
- let dh2 = ((d2 >> 12) & 0xff) as u8;
833
-
834
- let mut enc: [u8; 6] = [0; 6];
835
- enc[0] = opcode1;
836
- enc[1] = r1 << 4 | r3;
837
- enc[2] = b2 << 4 | dl2_hi;
838
- enc[3] = dl2_lo;
839
- enc[4] = dh2;
840
- enc[5] = opcode2;
841
- enc
842
- }
843
-
844
- /// RX-type instructions.
845
- ///
846
- /// 31 23 19 15 11
847
- /// opcode r1 x2 b2 d2
848
- /// 24 20 16 12 0
849
- ///
850
- fn enc_rx(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 4] {
851
- let opcode = (opcode & 0xff) as u8;
852
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
853
- let b2 = machreg_to_gpr(b2) & 0x0f;
854
- let x2 = machreg_to_gpr(x2) & 0x0f;
855
- let d2_lo = (d2 & 0xff) as u8;
856
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
857
-
858
- let mut enc: [u8; 4] = [0; 4];
859
- enc[0] = opcode;
860
- enc[1] = r1 << 4 | x2;
861
- enc[2] = b2 << 4 | d2_hi;
862
- enc[3] = d2_lo;
863
- enc
864
- }
865
-
866
- /// RXY-type instructions.
867
- ///
868
- /// 47 39 35 31 27 15 7
869
- /// opcode1 r1 x2 b2 dl2 dh2 opcode2
870
- /// 40 36 32 28 16 8 0
871
- ///
872
- fn enc_rxy(opcode: u16, r1: Reg, b2: Reg, x2: Reg, d2: u32) -> [u8; 6] {
873
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
874
- let opcode2 = (opcode & 0xff) as u8;
875
- let r1 = machreg_to_gpr_or_fpr(r1) & 0x0f;
876
- let b2 = machreg_to_gpr(b2) & 0x0f;
877
- let x2 = machreg_to_gpr(x2) & 0x0f;
878
- let dl2_lo = (d2 & 0xff) as u8;
879
- let dl2_hi = ((d2 >> 8) & 0x0f) as u8;
880
- let dh2 = ((d2 >> 12) & 0xff) as u8;
881
-
882
- let mut enc: [u8; 6] = [0; 6];
883
- enc[0] = opcode1;
884
- enc[1] = r1 << 4 | x2;
885
- enc[2] = b2 << 4 | dl2_hi;
886
- enc[3] = dl2_lo;
887
- enc[4] = dh2;
888
- enc[5] = opcode2;
889
- enc
890
- }
891
-
892
- /// SI-type instructions.
893
- ///
894
- /// 31 23 15 11
895
- /// opcode i2 b1 d1
896
- /// 24 16 12 0
897
- ///
898
- fn enc_si(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 4] {
899
- let opcode = (opcode & 0xff) as u8;
900
- let b1 = machreg_to_gpr(b1) & 0x0f;
901
- let d1_lo = (d1 & 0xff) as u8;
902
- let d1_hi = ((d1 >> 8) & 0x0f) as u8;
903
-
904
- let mut enc: [u8; 4] = [0; 4];
905
- enc[0] = opcode;
906
- enc[1] = i2;
907
- enc[2] = b1 << 4 | d1_hi;
908
- enc[3] = d1_lo;
909
- enc
910
- }
911
-
912
- /// SIL-type instructions.
913
- ///
914
- /// 47 31 27 15
915
- /// opcode b1 d1 i2
916
- /// 32 28 16 0
917
- ///
918
- fn enc_sil(opcode: u16, b1: Reg, d1: u32, i2: i16) -> [u8; 6] {
919
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
920
- let opcode2 = (opcode & 0xff) as u8;
921
- let b1 = machreg_to_gpr(b1) & 0x0f;
922
- let d1_lo = (d1 & 0xff) as u8;
923
- let d1_hi = ((d1 >> 8) & 0x0f) as u8;
924
-
925
- let mut enc: [u8; 6] = [0; 6];
926
- enc[0] = opcode1;
927
- enc[1] = opcode2;
928
- enc[2] = b1 << 4 | d1_hi;
929
- enc[3] = d1_lo;
930
- enc[4..].copy_from_slice(&i2.to_be_bytes());
931
- enc
932
- }
933
-
934
- /// SIY-type instructions.
935
- ///
936
- /// 47 39 31 27 15 7
937
- /// opcode1 i2 b1 dl1 dh1 opcode2
938
- /// 40 32 28 16 8 0
939
- ///
940
- fn enc_siy(opcode: u16, b1: Reg, d1: u32, i2: u8) -> [u8; 6] {
941
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
942
- let opcode2 = (opcode & 0xff) as u8;
943
- let b1 = machreg_to_gpr(b1) & 0x0f;
944
- let dl1_lo = (d1 & 0xff) as u8;
945
- let dl1_hi = ((d1 >> 8) & 0x0f) as u8;
946
- let dh1 = ((d1 >> 12) & 0xff) as u8;
947
-
948
- let mut enc: [u8; 6] = [0; 6];
949
- enc[0] = opcode1;
950
- enc[1] = i2;
951
- enc[2] = b1 << 4 | dl1_hi;
952
- enc[3] = dl1_lo;
953
- enc[4] = dh1;
954
- enc[5] = opcode2;
955
- enc
956
- }
957
-
958
- /// SSa-type instructions.
959
- ///
960
- /// 47 39 31 27 15 11
961
- /// opcode l b1 d1 b2 d2
962
- /// 40 32 28 16 12 0
963
- ///
964
- ///
965
- fn enc_ss_a(opcode: u8, b1: Reg, d1: u32, b2: Reg, d2: u32, l: u8) -> [u8; 6] {
966
- let b1 = machreg_to_gpr(b1) & 0x0f;
967
- let d1_lo = (d1 & 0xff) as u8;
968
- let d1_hi = ((d1 >> 8) & 0x0f) as u8;
969
- let b2 = machreg_to_gpr(b2) & 0x0f;
970
- let d2_lo = (d2 & 0xff) as u8;
971
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
972
-
973
- let mut enc: [u8; 6] = [0; 6];
974
- enc[0] = opcode;
975
- enc[1] = l;
976
- enc[2] = b1 << 4 | d1_hi;
977
- enc[3] = d1_lo;
978
- enc[4] = b2 << 4 | d2_hi;
979
- enc[5] = d2_lo;
980
- enc
981
- }
982
-
983
- /// VRIa-type instructions.
984
- ///
985
- /// 47 39 35 31 15 11 7
986
- /// opcode1 v1 - i2 m3 rxb opcode2
987
- /// 40 36 32 16 12 8 0
988
- ///
989
- fn enc_vri_a(opcode: u16, v1: Reg, i2: u16, m3: u8) -> [u8; 6] {
990
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
991
- let opcode2 = (opcode & 0xff) as u8;
992
- let rxb = rxb(Some(v1), None, None, None);
993
- let v1 = machreg_to_vr(v1) & 0x0f;
994
- let m3 = m3 & 0x0f;
995
-
996
- let mut enc: [u8; 6] = [0; 6];
997
- enc[0] = opcode1;
998
- enc[1] = v1 << 4;
999
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
1000
- enc[4] = m3 << 4 | rxb;
1001
- enc[5] = opcode2;
1002
- enc
1003
- }
1004
-
1005
- /// VRIb-type instructions.
1006
- ///
1007
- /// 47 39 35 31 23 15 11 7
1008
- /// opcode1 v1 - i2 i3 m4 rxb opcode2
1009
- /// 40 36 32 24 16 12 8 0
1010
- ///
1011
- fn enc_vri_b(opcode: u16, v1: Reg, i2: u8, i3: u8, m4: u8) -> [u8; 6] {
1012
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1013
- let opcode2 = (opcode & 0xff) as u8;
1014
- let rxb = rxb(Some(v1), None, None, None);
1015
- let v1 = machreg_to_vr(v1) & 0x0f;
1016
- let m4 = m4 & 0x0f;
1017
-
1018
- let mut enc: [u8; 6] = [0; 6];
1019
- enc[0] = opcode1;
1020
- enc[1] = v1 << 4;
1021
- enc[2] = i2;
1022
- enc[3] = i3;
1023
- enc[4] = m4 << 4 | rxb;
1024
- enc[5] = opcode2;
1025
- enc
1026
- }
1027
-
1028
- /// VRIc-type instructions.
1029
- ///
1030
- /// 47 39 35 31 15 11 7
1031
- /// opcode1 v1 v3 i2 m4 rxb opcode2
1032
- /// 40 36 32 16 12 8 0
1033
- ///
1034
- fn enc_vri_c(opcode: u16, v1: Reg, i2: u16, v3: Reg, m4: u8) -> [u8; 6] {
1035
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1036
- let opcode2 = (opcode & 0xff) as u8;
1037
- let rxb = rxb(Some(v1), Some(v3), None, None);
1038
- let v1 = machreg_to_vr(v1) & 0x0f;
1039
- let v3 = machreg_to_vr(v3) & 0x0f;
1040
- let m4 = m4 & 0x0f;
1041
-
1042
- let mut enc: [u8; 6] = [0; 6];
1043
- enc[0] = opcode1;
1044
- enc[1] = v1 << 4 | v3;
1045
- enc[2..4].copy_from_slice(&i2.to_be_bytes());
1046
- enc[4] = m4 << 4 | rxb;
1047
- enc[5] = opcode2;
1048
- enc
1049
- }
1050
-
1051
- /// VRRa-type instructions.
1052
- ///
1053
- /// 47 39 35 31 23 19 15 11 7
1054
- /// opcode1 v1 v2 - m5 m3 m2 rxb opcode2
1055
- /// 40 36 32 24 20 16 12 8 0
1056
- ///
1057
- fn enc_vrr_a(opcode: u16, v1: Reg, v2: Reg, m3: u8, m4: u8, m5: u8) -> [u8; 6] {
1058
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1059
- let opcode2 = (opcode & 0xff) as u8;
1060
- let rxb = rxb(Some(v1), Some(v2), None, None);
1061
- let v1 = machreg_to_vr(v1) & 0x0f;
1062
- let v2 = machreg_to_vr(v2) & 0x0f;
1063
- let m3 = m3 & 0x0f;
1064
- let m4 = m4 & 0x0f;
1065
- let m5 = m5 & 0x0f;
1066
-
1067
- let mut enc: [u8; 6] = [0; 6];
1068
- enc[0] = opcode1;
1069
- enc[1] = v1 << 4 | v2;
1070
- enc[2] = 0;
1071
- enc[3] = m5 << 4 | m4;
1072
- enc[4] = m3 << 4 | rxb;
1073
- enc[5] = opcode2;
1074
- enc
1075
- }
1076
-
1077
- /// VRRb-type instructions.
1078
- ///
1079
- /// 47 39 35 31 27 23 19 15 11 7
1080
- /// opcode1 v1 v2 v3 - m5 - m4 rxb opcode2
1081
- /// 40 36 32 28 24 20 16 12 8 0
1082
- ///
1083
- fn enc_vrr_b(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8) -> [u8; 6] {
1084
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1085
- let opcode2 = (opcode & 0xff) as u8;
1086
- let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
1087
- let v1 = machreg_to_vr(v1) & 0x0f;
1088
- let v2 = machreg_to_vr(v2) & 0x0f;
1089
- let v3 = machreg_to_vr(v3) & 0x0f;
1090
- let m4 = m4 & 0x0f;
1091
- let m5 = m5 & 0x0f;
1092
-
1093
- let mut enc: [u8; 6] = [0; 6];
1094
- enc[0] = opcode1;
1095
- enc[1] = v1 << 4 | v2;
1096
- enc[2] = v3 << 4;
1097
- enc[3] = m5 << 4;
1098
- enc[4] = m4 << 4 | rxb;
1099
- enc[5] = opcode2;
1100
- enc
1101
- }
1102
-
1103
- /// VRRc-type instructions.
1104
- ///
1105
- /// 47 39 35 31 27 23 19 15 11 7
1106
- /// opcode1 v1 v2 v3 - m6 m5 m4 rxb opcode2
1107
- /// 40 36 32 28 24 20 16 12 8 0
1108
- ///
1109
- fn enc_vrr_c(opcode: u16, v1: Reg, v2: Reg, v3: Reg, m4: u8, m5: u8, m6: u8) -> [u8; 6] {
1110
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1111
- let opcode2 = (opcode & 0xff) as u8;
1112
- let rxb = rxb(Some(v1), Some(v2), Some(v3), None);
1113
- let v1 = machreg_to_vr(v1) & 0x0f;
1114
- let v2 = machreg_to_vr(v2) & 0x0f;
1115
- let v3 = machreg_to_vr(v3) & 0x0f;
1116
- let m4 = m4 & 0x0f;
1117
- let m5 = m5 & 0x0f;
1118
- let m6 = m6 & 0x0f;
1119
-
1120
- let mut enc: [u8; 6] = [0; 6];
1121
- enc[0] = opcode1;
1122
- enc[1] = v1 << 4 | v2;
1123
- enc[2] = v3 << 4;
1124
- enc[3] = m6 << 4 | m5;
1125
- enc[4] = m4 << 4 | rxb;
1126
- enc[5] = opcode2;
1127
- enc
1128
- }
1129
-
1130
- /// VRRe-type instructions.
1131
- ///
1132
- /// 47 39 35 31 27 23 19 15 11 7
1133
- /// opcode1 v1 v2 v3 m6 - m5 v4 rxb opcode2
1134
- /// 40 36 32 28 24 20 16 12 8 0
1135
- ///
1136
- fn enc_vrr_e(opcode: u16, v1: Reg, v2: Reg, v3: Reg, v4: Reg, m5: u8, m6: u8) -> [u8; 6] {
1137
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1138
- let opcode2 = (opcode & 0xff) as u8;
1139
- let rxb = rxb(Some(v1), Some(v2), Some(v3), Some(v4));
1140
- let v1 = machreg_to_vr(v1) & 0x0f;
1141
- let v2 = machreg_to_vr(v2) & 0x0f;
1142
- let v3 = machreg_to_vr(v3) & 0x0f;
1143
- let v4 = machreg_to_vr(v4) & 0x0f;
1144
- let m5 = m5 & 0x0f;
1145
- let m6 = m6 & 0x0f;
1146
-
1147
- let mut enc: [u8; 6] = [0; 6];
1148
- enc[0] = opcode1;
1149
- enc[1] = v1 << 4 | v2;
1150
- enc[2] = v3 << 4 | m6;
1151
- enc[3] = m5;
1152
- enc[4] = v4 << 4 | rxb;
1153
- enc[5] = opcode2;
1154
- enc
1155
- }
1156
-
1157
- /// VRRf-type instructions.
1158
- ///
1159
- /// 47 39 35 31 27 11 7
1160
- /// opcode1 v1 r2 r3 - rxb opcode2
1161
- /// 40 36 32 28 12 8 0
1162
- ///
1163
- fn enc_vrr_f(opcode: u16, v1: Reg, r2: Reg, r3: Reg) -> [u8; 6] {
1164
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1165
- let opcode2 = (opcode & 0xff) as u8;
1166
- let rxb = rxb(Some(v1), None, None, None);
1167
- let v1 = machreg_to_vr(v1) & 0x0f;
1168
- let r2 = machreg_to_gpr(r2) & 0x0f;
1169
- let r3 = machreg_to_gpr(r3) & 0x0f;
1170
-
1171
- let mut enc: [u8; 6] = [0; 6];
1172
- enc[0] = opcode1;
1173
- enc[1] = v1 << 4 | r2;
1174
- enc[2] = r3 << 4;
1175
- enc[4] = rxb;
1176
- enc[5] = opcode2;
1177
- enc
1178
- }
1179
-
1180
- /// VRSa-type instructions.
1181
- ///
1182
- /// 47 39 35 31 27 15 11 7
1183
- /// opcode1 v1 v3 b2 d2 m4 rxb opcode2
1184
- /// 40 36 32 28 16 12 8 0
1185
- ///
1186
- fn enc_vrs_a(opcode: u16, v1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
1187
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1188
- let opcode2 = (opcode & 0xff) as u8;
1189
- let rxb = rxb(Some(v1), Some(v3), None, None);
1190
- let v1 = machreg_to_vr(v1) & 0x0f;
1191
- let b2 = machreg_to_gpr(b2) & 0x0f;
1192
- let v3 = machreg_to_vr(v3) & 0x0f;
1193
- let d2_lo = (d2 & 0xff) as u8;
1194
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1195
- let m4 = m4 & 0x0f;
1196
-
1197
- let mut enc: [u8; 6] = [0; 6];
1198
- enc[0] = opcode1;
1199
- enc[1] = v1 << 4 | v3;
1200
- enc[2] = b2 << 4 | d2_hi;
1201
- enc[3] = d2_lo;
1202
- enc[4] = m4 << 4 | rxb;
1203
- enc[5] = opcode2;
1204
- enc
1205
- }
1206
-
1207
- /// VRSb-type instructions.
1208
- ///
1209
- /// 47 39 35 31 27 15 11 7
1210
- /// opcode1 v1 r3 b2 d2 m4 rxb opcode2
1211
- /// 40 36 32 28 16 12 8 0
1212
- ///
1213
- fn enc_vrs_b(opcode: u16, v1: Reg, b2: Reg, d2: u32, r3: Reg, m4: u8) -> [u8; 6] {
1214
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1215
- let opcode2 = (opcode & 0xff) as u8;
1216
- let rxb = rxb(Some(v1), None, None, None);
1217
- let v1 = machreg_to_vr(v1) & 0x0f;
1218
- let b2 = machreg_to_gpr(b2) & 0x0f;
1219
- let r3 = machreg_to_gpr(r3) & 0x0f;
1220
- let d2_lo = (d2 & 0xff) as u8;
1221
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1222
- let m4 = m4 & 0x0f;
1223
-
1224
- let mut enc: [u8; 6] = [0; 6];
1225
- enc[0] = opcode1;
1226
- enc[1] = v1 << 4 | r3;
1227
- enc[2] = b2 << 4 | d2_hi;
1228
- enc[3] = d2_lo;
1229
- enc[4] = m4 << 4 | rxb;
1230
- enc[5] = opcode2;
1231
- enc
1232
- }
1233
-
1234
- /// VRSc-type instructions.
1235
- ///
1236
- /// 47 39 35 31 27 15 11 7
1237
- /// opcode1 r1 v3 b2 d2 m4 rxb opcode2
1238
- /// 40 36 32 28 16 12 8 0
1239
- ///
1240
- fn enc_vrs_c(opcode: u16, r1: Reg, b2: Reg, d2: u32, v3: Reg, m4: u8) -> [u8; 6] {
1241
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1242
- let opcode2 = (opcode & 0xff) as u8;
1243
- let rxb = rxb(None, Some(v3), None, None);
1244
- let r1 = machreg_to_gpr(r1) & 0x0f;
1245
- let b2 = machreg_to_gpr(b2) & 0x0f;
1246
- let v3 = machreg_to_vr(v3) & 0x0f;
1247
- let d2_lo = (d2 & 0xff) as u8;
1248
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1249
- let m4 = m4 & 0x0f;
1250
-
1251
- let mut enc: [u8; 6] = [0; 6];
1252
- enc[0] = opcode1;
1253
- enc[1] = r1 << 4 | v3;
1254
- enc[2] = b2 << 4 | d2_hi;
1255
- enc[3] = d2_lo;
1256
- enc[4] = m4 << 4 | rxb;
1257
- enc[5] = opcode2;
1258
- enc
1259
- }
1260
-
1261
- /// VRX-type instructions.
1262
- ///
1263
- /// 47 39 35 31 27 15 11 7
1264
- /// opcode1 v1 x2 b2 d2 m3 rxb opcode2
1265
- /// 40 36 32 28 16 12 8 0
1266
- ///
1267
- fn enc_vrx(opcode: u16, v1: Reg, b2: Reg, x2: Reg, d2: u32, m3: u8) -> [u8; 6] {
1268
- let opcode1 = ((opcode >> 8) & 0xff) as u8;
1269
- let opcode2 = (opcode & 0xff) as u8;
1270
- let rxb = rxb(Some(v1), None, None, None);
1271
- let v1 = machreg_to_vr(v1) & 0x0f;
1272
- let b2 = machreg_to_gpr(b2) & 0x0f;
1273
- let x2 = machreg_to_gpr(x2) & 0x0f;
1274
- let d2_lo = (d2 & 0xff) as u8;
1275
- let d2_hi = ((d2 >> 8) & 0x0f) as u8;
1276
- let m3 = m3 & 0x0f;
1277
-
1278
- let mut enc: [u8; 6] = [0; 6];
1279
- enc[0] = opcode1;
1280
- enc[1] = v1 << 4 | x2;
1281
- enc[2] = b2 << 4 | d2_hi;
1282
- enc[3] = d2_lo;
1283
- enc[4] = m3 << 4 | rxb;
1284
- enc[5] = opcode2;
1285
- enc
1286
- }
1287
-
1288
- /// Emit encoding to sink.
1289
- fn put(sink: &mut MachBuffer<Inst>, enc: &[u8]) {
1290
- for byte in enc {
1291
- sink.put1(*byte);
1292
- }
1293
- }
1294
-
1295
- /// Emit encoding to sink, adding a trap on the last byte.
1296
- fn put_with_trap(sink: &mut MachBuffer<Inst>, enc: &[u8], trap_code: TrapCode) {
1297
- let len = enc.len();
1298
- for i in 0..len - 1 {
1299
- sink.put1(enc[i]);
1300
- }
1301
- sink.add_trap(trap_code);
1302
- sink.put1(enc[len - 1]);
1303
- }
1304
-
1305
- /// State carried between emissions of a sequence of instructions.
1306
- #[derive(Default, Clone, Debug)]
1307
- pub struct EmitState {
1308
- pub(crate) initial_sp_offset: i64,
1309
- /// Safepoint stack map for upcoming instruction, as provided to `pre_safepoint()`.
1310
- stack_map: Option<StackMap>,
1311
- /// Only used during fuzz-testing. Otherwise, it is a zero-sized struct and
1312
- /// optimized away at compiletime. See [cranelift_control].
1313
- ctrl_plane: ControlPlane,
1314
- frame_layout: FrameLayout,
1315
- }
1316
-
1317
- impl MachInstEmitState<Inst> for EmitState {
1318
- fn new(abi: &Callee<S390xMachineDeps>, ctrl_plane: ControlPlane) -> Self {
1319
- EmitState {
1320
- initial_sp_offset: abi.frame_size() as i64,
1321
- stack_map: None,
1322
- ctrl_plane,
1323
- frame_layout: abi.frame_layout().clone(),
1324
- }
1325
- }
1326
-
1327
- fn pre_safepoint(&mut self, stack_map: StackMap) {
1328
- self.stack_map = Some(stack_map);
1329
- }
1330
-
1331
- fn ctrl_plane_mut(&mut self) -> &mut ControlPlane {
1332
- &mut self.ctrl_plane
1333
- }
1334
-
1335
- fn take_ctrl_plane(self) -> ControlPlane {
1336
- self.ctrl_plane
1337
- }
1338
-
1339
- fn frame_layout(&self) -> &FrameLayout {
1340
- &self.frame_layout
1341
- }
1342
- }
1343
-
1344
- impl EmitState {
1345
- fn take_stack_map(&mut self) -> Option<StackMap> {
1346
- self.stack_map.take()
1347
- }
1348
-
1349
- fn clear_post_insn(&mut self) {
1350
- self.stack_map = None;
1351
- }
1352
- }
1353
-
1354
- /// Constant state used during function compilation.
1355
- pub struct EmitInfo {
1356
- isa_flags: s390x_settings::Flags,
1357
- }
1358
-
1359
- impl EmitInfo {
1360
- pub(crate) fn new(isa_flags: s390x_settings::Flags) -> Self {
1361
- Self { isa_flags }
1362
- }
1363
- }
1364
-
1365
- impl MachInstEmit for Inst {
1366
- type State = EmitState;
1367
- type Info = EmitInfo;
1368
-
1369
- fn emit(&self, sink: &mut MachBuffer<Inst>, emit_info: &Self::Info, state: &mut EmitState) {
1370
- self.emit_with_alloc_consumer(sink, emit_info, state)
1371
- }
1372
-
1373
- fn pretty_print_inst(&self, state: &mut EmitState) -> String {
1374
- self.print_with_state(state)
1375
- }
1376
- }
1377
-
1378
- impl Inst {
1379
- fn emit_with_alloc_consumer(
1380
- &self,
1381
- sink: &mut MachBuffer<Inst>,
1382
- emit_info: &EmitInfo,
1383
- state: &mut EmitState,
1384
- ) {
1385
- // Verify that we can emit this Inst in the current ISA
1386
- let matches_isa_flags = |iset_requirement: &InstructionSet| -> bool {
1387
- match iset_requirement {
1388
- // Baseline ISA is z14
1389
- InstructionSet::Base => true,
1390
- // Miscellaneous-Instruction-Extensions Facility 2 (z15)
1391
- InstructionSet::MIE2 => emit_info.isa_flags.has_mie2(),
1392
- // Vector-Enhancements Facility 2 (z15)
1393
- InstructionSet::VXRS_EXT2 => emit_info.isa_flags.has_vxrs_ext2(),
1394
- }
1395
- };
1396
- let isa_requirements = self.available_in_isa();
1397
- if !matches_isa_flags(&isa_requirements) {
1398
- panic!(
1399
- "Cannot emit inst '{:?}' for target; failed to match ISA requirements: {:?}",
1400
- self, isa_requirements
1401
- )
1402
- }
1403
-
1404
- // N.B.: we *must* not exceed the "worst-case size" used to compute
1405
- // where to insert islands, except when islands are explicitly triggered
1406
- // (with an `EmitIsland`). We check this in debug builds. This is `mut`
1407
- // to allow disabling the check for `JTSequence`, which is always
1408
- // emitted following an `EmitIsland`.
1409
- let mut start_off = sink.cur_offset();
1410
-
1411
- match self {
1412
- &Inst::AluRRR { alu_op, rd, rn, rm } => {
1413
- let (opcode, have_rr) = match alu_op {
1414
- ALUOp::Add32 => (0xb9f8, true), // ARK
1415
- ALUOp::Add64 => (0xb9e8, true), // AGRK
1416
- ALUOp::AddLogical32 => (0xb9fa, true), // ALRK
1417
- ALUOp::AddLogical64 => (0xb9ea, true), // ALGRK
1418
- ALUOp::Sub32 => (0xb9f9, true), // SRK
1419
- ALUOp::Sub64 => (0xb9e9, true), // SGRK
1420
- ALUOp::SubLogical32 => (0xb9fb, true), // SLRK
1421
- ALUOp::SubLogical64 => (0xb9eb, true), // SLGRK
1422
- ALUOp::Mul32 => (0xb9fd, true), // MSRKC
1423
- ALUOp::Mul64 => (0xb9ed, true), // MSGRKC
1424
- ALUOp::And32 => (0xb9f4, true), // NRK
1425
- ALUOp::And64 => (0xb9e4, true), // NGRK
1426
- ALUOp::Orr32 => (0xb9f6, true), // ORK
1427
- ALUOp::Orr64 => (0xb9e6, true), // OGRK
1428
- ALUOp::Xor32 => (0xb9f7, true), // XRK
1429
- ALUOp::Xor64 => (0xb9e7, true), // XGRK
1430
- ALUOp::NotAnd32 => (0xb974, false), // NNRK
1431
- ALUOp::NotAnd64 => (0xb964, false), // NNGRK
1432
- ALUOp::NotOrr32 => (0xb976, false), // NORK
1433
- ALUOp::NotOrr64 => (0xb966, false), // NOGRK
1434
- ALUOp::NotXor32 => (0xb977, false), // NXRK
1435
- ALUOp::NotXor64 => (0xb967, false), // NXGRK
1436
- ALUOp::AndNot32 => (0xb9f5, false), // NCRK
1437
- ALUOp::AndNot64 => (0xb9e5, false), // NCGRK
1438
- ALUOp::OrrNot32 => (0xb975, false), // OCRK
1439
- ALUOp::OrrNot64 => (0xb965, false), // OCGRK
1440
- _ => unreachable!(),
1441
- };
1442
- if have_rr && rd.to_reg() == rn {
1443
- let inst = Inst::AluRR {
1444
- alu_op,
1445
- rd,
1446
- ri: rn,
1447
- rm,
1448
- };
1449
- inst.emit(sink, emit_info, state);
1450
- } else {
1451
- put(sink, &enc_rrf_ab(opcode, rd.to_reg(), rn, rm, 0));
1452
- }
1453
- }
1454
- &Inst::AluRRSImm16 {
1455
- alu_op,
1456
- rd,
1457
- rn,
1458
- imm,
1459
- } => {
1460
- if rd.to_reg() == rn {
1461
- let inst = Inst::AluRSImm16 {
1462
- alu_op,
1463
- rd,
1464
- ri: rn,
1465
- imm,
1466
- };
1467
- inst.emit(sink, emit_info, state);
1468
- } else {
1469
- let opcode = match alu_op {
1470
- ALUOp::Add32 => 0xecd8, // AHIK
1471
- ALUOp::Add64 => 0xecd9, // AGHIK
1472
- _ => unreachable!(),
1473
- };
1474
- put(sink, &enc_rie_d(opcode, rd.to_reg(), rn, imm as u16));
1475
- }
1476
- }
1477
- &Inst::AluRR { alu_op, rd, ri, rm } => {
1478
- debug_assert_eq!(rd.to_reg(), ri);
1479
-
1480
- let (opcode, is_rre) = match alu_op {
1481
- ALUOp::Add32 => (0x1a, false), // AR
1482
- ALUOp::Add64 => (0xb908, true), // AGR
1483
- ALUOp::Add64Ext32 => (0xb918, true), // AGFR
1484
- ALUOp::AddLogical32 => (0x1e, false), // ALR
1485
- ALUOp::AddLogical64 => (0xb90a, true), // ALGR
1486
- ALUOp::AddLogical64Ext32 => (0xb91a, true), // ALGFR
1487
- ALUOp::Sub32 => (0x1b, false), // SR
1488
- ALUOp::Sub64 => (0xb909, true), // SGR
1489
- ALUOp::Sub64Ext32 => (0xb919, true), // SGFR
1490
- ALUOp::SubLogical32 => (0x1f, false), // SLR
1491
- ALUOp::SubLogical64 => (0xb90b, true), // SLGR
1492
- ALUOp::SubLogical64Ext32 => (0xb91b, true), // SLGFR
1493
- ALUOp::Mul32 => (0xb252, true), // MSR
1494
- ALUOp::Mul64 => (0xb90c, true), // MSGR
1495
- ALUOp::Mul64Ext32 => (0xb91c, true), // MSGFR
1496
- ALUOp::And32 => (0x14, false), // NR
1497
- ALUOp::And64 => (0xb980, true), // NGR
1498
- ALUOp::Orr32 => (0x16, false), // OR
1499
- ALUOp::Orr64 => (0xb981, true), // OGR
1500
- ALUOp::Xor32 => (0x17, false), // XR
1501
- ALUOp::Xor64 => (0xb982, true), // XGR
1502
- _ => unreachable!(),
1503
- };
1504
- if is_rre {
1505
- put(sink, &enc_rre(opcode, rd.to_reg(), rm));
1506
- } else {
1507
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
1508
- }
1509
- }
1510
- &Inst::AluRX {
1511
- alu_op,
1512
- rd,
1513
- ri,
1514
- ref mem,
1515
- } => {
1516
- debug_assert_eq!(rd.to_reg(), ri);
1517
- let mem = mem.clone();
1518
-
1519
- let (opcode_rx, opcode_rxy) = match alu_op {
1520
- ALUOp::Add32 => (Some(0x5a), Some(0xe35a)), // A(Y)
1521
- ALUOp::Add32Ext16 => (Some(0x4a), Some(0xe37a)), // AH(Y)
1522
- ALUOp::Add64 => (None, Some(0xe308)), // AG
1523
- ALUOp::Add64Ext16 => (None, Some(0xe338)), // AGH
1524
- ALUOp::Add64Ext32 => (None, Some(0xe318)), // AGF
1525
- ALUOp::AddLogical32 => (Some(0x5e), Some(0xe35e)), // AL(Y)
1526
- ALUOp::AddLogical64 => (None, Some(0xe30a)), // ALG
1527
- ALUOp::AddLogical64Ext32 => (None, Some(0xe31a)), // ALGF
1528
- ALUOp::Sub32 => (Some(0x5b), Some(0xe35b)), // S(Y)
1529
- ALUOp::Sub32Ext16 => (Some(0x4b), Some(0xe37b)), // SH(Y)
1530
- ALUOp::Sub64 => (None, Some(0xe309)), // SG
1531
- ALUOp::Sub64Ext16 => (None, Some(0xe339)), // SGH
1532
- ALUOp::Sub64Ext32 => (None, Some(0xe319)), // SGF
1533
- ALUOp::SubLogical32 => (Some(0x5f), Some(0xe35f)), // SL(Y)
1534
- ALUOp::SubLogical64 => (None, Some(0xe30b)), // SLG
1535
- ALUOp::SubLogical64Ext32 => (None, Some(0xe31b)), // SLGF
1536
- ALUOp::Mul32 => (Some(0x71), Some(0xe351)), // MS(Y)
1537
- ALUOp::Mul32Ext16 => (Some(0x4c), Some(0xe37c)), // MH(Y)
1538
- ALUOp::Mul64 => (None, Some(0xe30c)), // MSG
1539
- ALUOp::Mul64Ext16 => (None, Some(0xe33c)), // MSH
1540
- ALUOp::Mul64Ext32 => (None, Some(0xe31c)), // MSGF
1541
- ALUOp::And32 => (Some(0x54), Some(0xe354)), // N(Y)
1542
- ALUOp::And64 => (None, Some(0xe380)), // NG
1543
- ALUOp::Orr32 => (Some(0x56), Some(0xe356)), // O(Y)
1544
- ALUOp::Orr64 => (None, Some(0xe381)), // OG
1545
- ALUOp::Xor32 => (Some(0x57), Some(0xe357)), // X(Y)
1546
- ALUOp::Xor64 => (None, Some(0xe382)), // XG
1547
- _ => unreachable!(),
1548
- };
1549
- let rd = rd.to_reg();
1550
- mem_emit(
1551
- rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
1552
- );
1553
- }
1554
- &Inst::AluRSImm16 {
1555
- alu_op,
1556
- rd,
1557
- ri,
1558
- imm,
1559
- } => {
1560
- debug_assert_eq!(rd.to_reg(), ri);
1561
-
1562
- let opcode = match alu_op {
1563
- ALUOp::Add32 => 0xa7a, // AHI
1564
- ALUOp::Add64 => 0xa7b, // AGHI
1565
- ALUOp::Mul32 => 0xa7c, // MHI
1566
- ALUOp::Mul64 => 0xa7d, // MGHI
1567
- _ => unreachable!(),
1568
- };
1569
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
1570
- }
1571
- &Inst::AluRSImm32 {
1572
- alu_op,
1573
- rd,
1574
- ri,
1575
- imm,
1576
- } => {
1577
- debug_assert_eq!(rd.to_reg(), ri);
1578
-
1579
- let opcode = match alu_op {
1580
- ALUOp::Add32 => 0xc29, // AFI
1581
- ALUOp::Add64 => 0xc28, // AGFI
1582
- ALUOp::Mul32 => 0xc21, // MSFI
1583
- ALUOp::Mul64 => 0xc20, // MSGFI
1584
- _ => unreachable!(),
1585
- };
1586
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
1587
- }
1588
- &Inst::AluRUImm32 {
1589
- alu_op,
1590
- rd,
1591
- ri,
1592
- imm,
1593
- } => {
1594
- debug_assert_eq!(rd.to_reg(), ri);
1595
-
1596
- let opcode = match alu_op {
1597
- ALUOp::AddLogical32 => 0xc2b, // ALFI
1598
- ALUOp::AddLogical64 => 0xc2a, // ALGFI
1599
- ALUOp::SubLogical32 => 0xc25, // SLFI
1600
- ALUOp::SubLogical64 => 0xc24, // SLGFI
1601
- _ => unreachable!(),
1602
- };
1603
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
1604
- }
1605
- &Inst::AluRUImm16Shifted {
1606
- alu_op,
1607
- rd,
1608
- ri,
1609
- imm,
1610
- } => {
1611
- debug_assert_eq!(rd.to_reg(), ri);
1612
-
1613
- let opcode = match (alu_op, imm.shift) {
1614
- (ALUOp::And32, 0) => 0xa57, // NILL
1615
- (ALUOp::And32, 1) => 0xa56, // NILH
1616
- (ALUOp::And64, 0) => 0xa57, // NILL
1617
- (ALUOp::And64, 1) => 0xa56, // NILH
1618
- (ALUOp::And64, 2) => 0xa55, // NIHL
1619
- (ALUOp::And64, 3) => 0xa54, // NIHL
1620
- (ALUOp::Orr32, 0) => 0xa5b, // OILL
1621
- (ALUOp::Orr32, 1) => 0xa5a, // OILH
1622
- (ALUOp::Orr64, 0) => 0xa5b, // OILL
1623
- (ALUOp::Orr64, 1) => 0xa5a, // OILH
1624
- (ALUOp::Orr64, 2) => 0xa59, // OIHL
1625
- (ALUOp::Orr64, 3) => 0xa58, // OIHH
1626
- _ => unreachable!(),
1627
- };
1628
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
1629
- }
1630
- &Inst::AluRUImm32Shifted {
1631
- alu_op,
1632
- rd,
1633
- ri,
1634
- imm,
1635
- } => {
1636
- debug_assert_eq!(rd.to_reg(), ri);
1637
-
1638
- let opcode = match (alu_op, imm.shift) {
1639
- (ALUOp::And32, 0) => 0xc0b, // NILF
1640
- (ALUOp::And64, 0) => 0xc0b, // NILF
1641
- (ALUOp::And64, 1) => 0xc0a, // NIHF
1642
- (ALUOp::Orr32, 0) => 0xc0d, // OILF
1643
- (ALUOp::Orr64, 0) => 0xc0d, // OILF
1644
- (ALUOp::Orr64, 1) => 0xc0c, // OILF
1645
- (ALUOp::Xor32, 0) => 0xc07, // XILF
1646
- (ALUOp::Xor64, 0) => 0xc07, // XILF
1647
- (ALUOp::Xor64, 1) => 0xc06, // XILH
1648
- _ => unreachable!(),
1649
- };
1650
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
1651
- }
1652
-
1653
- &Inst::SMulWide { rd, rn, rm } => {
1654
- let rd1 = rd.hi;
1655
- let rd2 = rd.lo;
1656
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1657
-
1658
- let opcode = 0xb9ec; // MGRK
1659
- put(sink, &enc_rrf_ab(opcode, rd1.to_reg(), rn, rm, 0));
1660
- }
1661
- &Inst::UMulWide { rd, ri, rn } => {
1662
- let rd1 = rd.hi;
1663
- let rd2 = rd.lo;
1664
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1665
- debug_assert_eq!(rd2.to_reg(), ri);
1666
-
1667
- let opcode = 0xb986; // MLGR
1668
- put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
1669
- }
1670
- &Inst::SDivMod32 { rd, ri, rn } => {
1671
- let rd1 = rd.hi;
1672
- let rd2 = rd.lo;
1673
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1674
- debug_assert_eq!(rd2.to_reg(), ri);
1675
-
1676
- let opcode = 0xb91d; // DSGFR
1677
- let trap_code = TrapCode::IntegerDivisionByZero;
1678
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1679
- }
1680
- &Inst::SDivMod64 { rd, ri, rn } => {
1681
- let rd1 = rd.hi;
1682
- let rd2 = rd.lo;
1683
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1684
- debug_assert_eq!(rd2.to_reg(), ri);
1685
-
1686
- let opcode = 0xb90d; // DSGR
1687
- let trap_code = TrapCode::IntegerDivisionByZero;
1688
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1689
- }
1690
- &Inst::UDivMod32 { rd, ri, rn } => {
1691
- let rd1 = rd.hi;
1692
- let rd2 = rd.lo;
1693
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1694
- let ri1 = ri.hi;
1695
- let ri2 = ri.lo;
1696
- debug_assert_eq!(rd1.to_reg(), ri1);
1697
- debug_assert_eq!(rd2.to_reg(), ri2);
1698
-
1699
- let opcode = 0xb997; // DLR
1700
- let trap_code = TrapCode::IntegerDivisionByZero;
1701
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1702
- }
1703
- &Inst::UDivMod64 { rd, ri, rn } => {
1704
- let rd1 = rd.hi;
1705
- let rd2 = rd.lo;
1706
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1707
- let ri1 = ri.hi;
1708
- let ri2 = ri.lo;
1709
- debug_assert_eq!(rd1.to_reg(), ri1);
1710
- debug_assert_eq!(rd2.to_reg(), ri2);
1711
-
1712
- let opcode = 0xb987; // DLGR
1713
- let trap_code = TrapCode::IntegerDivisionByZero;
1714
- put_with_trap(sink, &enc_rre(opcode, rd1.to_reg(), rn), trap_code);
1715
- }
1716
- &Inst::Flogr { rd, rn } => {
1717
- let rd1 = rd.hi;
1718
- let rd2 = rd.lo;
1719
- debug_assert_valid_regpair!(rd1.to_reg(), rd2.to_reg());
1720
-
1721
- let opcode = 0xb983; // FLOGR
1722
- put(sink, &enc_rre(opcode, rd1.to_reg(), rn));
1723
- }
1724
-
1725
- &Inst::ShiftRR {
1726
- shift_op,
1727
- rd,
1728
- rn,
1729
- shift_imm,
1730
- shift_reg,
1731
- } => {
1732
- let opcode = match shift_op {
1733
- ShiftOp::RotL32 => 0xeb1d, // RLL
1734
- ShiftOp::RotL64 => 0xeb1c, // RLLG
1735
- ShiftOp::LShL32 => 0xebdf, // SLLK (SLL ?)
1736
- ShiftOp::LShL64 => 0xeb0d, // SLLG
1737
- ShiftOp::LShR32 => 0xebde, // SRLK (SRL ?)
1738
- ShiftOp::LShR64 => 0xeb0c, // SRLG
1739
- ShiftOp::AShR32 => 0xebdc, // SRAK (SRA ?)
1740
- ShiftOp::AShR64 => 0xeb0a, // SRAG
1741
- };
1742
- put(
1743
- sink,
1744
- &enc_rsy(opcode, rd.to_reg(), rn, shift_reg, shift_imm.into()),
1745
- );
1746
- }
1747
-
1748
- &Inst::RxSBG {
1749
- op,
1750
- rd,
1751
- ri,
1752
- rn,
1753
- start_bit,
1754
- end_bit,
1755
- rotate_amt,
1756
- } => {
1757
- debug_assert_eq!(rd.to_reg(), ri);
1758
-
1759
- let opcode = match op {
1760
- RxSBGOp::Insert => 0xec59, // RISBGN
1761
- RxSBGOp::And => 0xec54, // RNSBG
1762
- RxSBGOp::Or => 0xec56, // ROSBG
1763
- RxSBGOp::Xor => 0xec57, // RXSBG
1764
- };
1765
- put(
1766
- sink,
1767
- &enc_rie_f(
1768
- opcode,
1769
- rd.to_reg(),
1770
- rn,
1771
- start_bit,
1772
- end_bit,
1773
- (rotate_amt as u8) & 63,
1774
- ),
1775
- );
1776
- }
1777
-
1778
- &Inst::RxSBGTest {
1779
- op,
1780
- rd,
1781
- rn,
1782
- start_bit,
1783
- end_bit,
1784
- rotate_amt,
1785
- } => {
1786
- let opcode = match op {
1787
- RxSBGOp::And => 0xec54, // RNSBG
1788
- RxSBGOp::Or => 0xec56, // ROSBG
1789
- RxSBGOp::Xor => 0xec57, // RXSBG
1790
- _ => unreachable!(),
1791
- };
1792
- put(
1793
- sink,
1794
- &enc_rie_f(
1795
- opcode,
1796
- rd,
1797
- rn,
1798
- start_bit | 0x80,
1799
- end_bit,
1800
- (rotate_amt as u8) & 63,
1801
- ),
1802
- );
1803
- }
1804
-
1805
- &Inst::UnaryRR { op, rd, rn } => {
1806
- match op {
1807
- UnaryOp::Abs32 => {
1808
- let opcode = 0x10; // LPR
1809
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
1810
- }
1811
- UnaryOp::Abs64 => {
1812
- let opcode = 0xb900; // LPGR
1813
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1814
- }
1815
- UnaryOp::Abs64Ext32 => {
1816
- let opcode = 0xb910; // LPGFR
1817
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1818
- }
1819
- UnaryOp::Neg32 => {
1820
- let opcode = 0x13; // LCR
1821
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
1822
- }
1823
- UnaryOp::Neg64 => {
1824
- let opcode = 0xb903; // LCGR
1825
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1826
- }
1827
- UnaryOp::Neg64Ext32 => {
1828
- let opcode = 0xb913; // LCGFR
1829
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1830
- }
1831
- UnaryOp::PopcntByte => {
1832
- let opcode = 0xb9e1; // POPCNT
1833
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 0, 0));
1834
- }
1835
- UnaryOp::PopcntReg => {
1836
- let opcode = 0xb9e1; // POPCNT
1837
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rn, 8, 0));
1838
- }
1839
- UnaryOp::BSwap32 => {
1840
- let opcode = 0xb91f; // LRVR
1841
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1842
- }
1843
- UnaryOp::BSwap64 => {
1844
- let opcode = 0xb90f; // LRVRG
1845
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1846
- }
1847
- }
1848
- }
1849
-
1850
- &Inst::Extend {
1851
- rd,
1852
- rn,
1853
- signed,
1854
- from_bits,
1855
- to_bits,
1856
- } => {
1857
- let opcode = match (signed, from_bits, to_bits) {
1858
- (_, 1, 32) => 0xb926, // LBR
1859
- (_, 1, 64) => 0xb906, // LGBR
1860
- (false, 8, 32) => 0xb994, // LLCR
1861
- (false, 8, 64) => 0xb984, // LLGCR
1862
- (true, 8, 32) => 0xb926, // LBR
1863
- (true, 8, 64) => 0xb906, // LGBR
1864
- (false, 16, 32) => 0xb995, // LLHR
1865
- (false, 16, 64) => 0xb985, // LLGHR
1866
- (true, 16, 32) => 0xb927, // LHR
1867
- (true, 16, 64) => 0xb907, // LGHR
1868
- (false, 32, 64) => 0xb916, // LLGFR
1869
- (true, 32, 64) => 0xb914, // LGFR
1870
- _ => panic!(
1871
- "Unsupported extend combination: signed = {}, from_bits = {}, to_bits = {}",
1872
- signed, from_bits, to_bits
1873
- ),
1874
- };
1875
- put(sink, &enc_rre(opcode, rd.to_reg(), rn));
1876
- }
1877
-
1878
- &Inst::CmpRR { op, rn, rm } => {
1879
- let (opcode, is_rre) = match op {
1880
- CmpOp::CmpS32 => (0x19, false), // CR
1881
- CmpOp::CmpS64 => (0xb920, true), // CGR
1882
- CmpOp::CmpS64Ext32 => (0xb930, true), // CGFR
1883
- CmpOp::CmpL32 => (0x15, false), // CLR
1884
- CmpOp::CmpL64 => (0xb921, true), // CLGR
1885
- CmpOp::CmpL64Ext32 => (0xb931, true), // CLGFR
1886
- _ => unreachable!(),
1887
- };
1888
- if is_rre {
1889
- put(sink, &enc_rre(opcode, rn, rm));
1890
- } else {
1891
- put(sink, &enc_rr(opcode, rn, rm));
1892
- }
1893
- }
1894
- &Inst::CmpRX { op, rn, ref mem } => {
1895
- let mem = mem.clone();
1896
-
1897
- let (opcode_rx, opcode_rxy, opcode_ril) = match op {
1898
- CmpOp::CmpS32 => (Some(0x59), Some(0xe359), Some(0xc6d)), // C(Y), CRL
1899
- CmpOp::CmpS32Ext16 => (Some(0x49), Some(0xe379), Some(0xc65)), // CH(Y), CHRL
1900
- CmpOp::CmpS64 => (None, Some(0xe320), Some(0xc68)), // CG, CGRL
1901
- CmpOp::CmpS64Ext16 => (None, Some(0xe334), Some(0xc64)), // CGH, CGHRL
1902
- CmpOp::CmpS64Ext32 => (None, Some(0xe330), Some(0xc6c)), // CGF, CGFRL
1903
- CmpOp::CmpL32 => (Some(0x55), Some(0xe355), Some(0xc6f)), // CL(Y), CLRL
1904
- CmpOp::CmpL32Ext16 => (None, None, Some(0xc67)), // CLHRL
1905
- CmpOp::CmpL64 => (None, Some(0xe321), Some(0xc6a)), // CLG, CLGRL
1906
- CmpOp::CmpL64Ext16 => (None, None, Some(0xc66)), // CLGHRL
1907
- CmpOp::CmpL64Ext32 => (None, Some(0xe331), Some(0xc6e)), // CLGF, CLGFRL
1908
- };
1909
- mem_emit(
1910
- rn, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
1911
- );
1912
- }
1913
- &Inst::CmpRSImm16 { op, rn, imm } => {
1914
- let opcode = match op {
1915
- CmpOp::CmpS32 => 0xa7e, // CHI
1916
- CmpOp::CmpS64 => 0xa7f, // CGHI
1917
- _ => unreachable!(),
1918
- };
1919
- put(sink, &enc_ri_a(opcode, rn, imm as u16));
1920
- }
1921
- &Inst::CmpRSImm32 { op, rn, imm } => {
1922
- let opcode = match op {
1923
- CmpOp::CmpS32 => 0xc2d, // CFI
1924
- CmpOp::CmpS64 => 0xc2c, // CGFI
1925
- _ => unreachable!(),
1926
- };
1927
- put(sink, &enc_ril_a(opcode, rn, imm as u32));
1928
- }
1929
- &Inst::CmpRUImm32 { op, rn, imm } => {
1930
- let opcode = match op {
1931
- CmpOp::CmpL32 => 0xc2f, // CLFI
1932
- CmpOp::CmpL64 => 0xc2e, // CLGFI
1933
- _ => unreachable!(),
1934
- };
1935
- put(sink, &enc_ril_a(opcode, rn, imm));
1936
- }
1937
- &Inst::CmpTrapRR {
1938
- op,
1939
- rn,
1940
- rm,
1941
- cond,
1942
- trap_code,
1943
- } => {
1944
- let opcode = match op {
1945
- CmpOp::CmpS32 => 0xb972, // CRT
1946
- CmpOp::CmpS64 => 0xb960, // CGRT
1947
- CmpOp::CmpL32 => 0xb973, // CLRT
1948
- CmpOp::CmpL64 => 0xb961, // CLGRT
1949
- _ => unreachable!(),
1950
- };
1951
- put_with_trap(
1952
- sink,
1953
- &enc_rrf_cde(opcode, rn, rm, cond.bits(), 0),
1954
- trap_code,
1955
- );
1956
- }
1957
- &Inst::CmpTrapRSImm16 {
1958
- op,
1959
- rn,
1960
- imm,
1961
- cond,
1962
- trap_code,
1963
- } => {
1964
- let opcode = match op {
1965
- CmpOp::CmpS32 => 0xec72, // CIT
1966
- CmpOp::CmpS64 => 0xec70, // CGIT
1967
- _ => unreachable!(),
1968
- };
1969
- put_with_trap(
1970
- sink,
1971
- &enc_rie_a(opcode, rn, imm as u16, cond.bits()),
1972
- trap_code,
1973
- );
1974
- }
1975
- &Inst::CmpTrapRUImm16 {
1976
- op,
1977
- rn,
1978
- imm,
1979
- cond,
1980
- trap_code,
1981
- } => {
1982
- let opcode = match op {
1983
- CmpOp::CmpL32 => 0xec73, // CLFIT
1984
- CmpOp::CmpL64 => 0xec71, // CLGIT
1985
- _ => unreachable!(),
1986
- };
1987
- put_with_trap(sink, &enc_rie_a(opcode, rn, imm, cond.bits()), trap_code);
1988
- }
1989
-
1990
- &Inst::AtomicRmw {
1991
- alu_op,
1992
- rd,
1993
- rn,
1994
- ref mem,
1995
- } => {
1996
- let mem = mem.clone();
1997
-
1998
- let opcode = match alu_op {
1999
- ALUOp::Add32 => 0xebf8, // LAA
2000
- ALUOp::Add64 => 0xebe8, // LAAG
2001
- ALUOp::AddLogical32 => 0xebfa, // LAAL
2002
- ALUOp::AddLogical64 => 0xebea, // LAALG
2003
- ALUOp::And32 => 0xebf4, // LAN
2004
- ALUOp::And64 => 0xebe4, // LANG
2005
- ALUOp::Orr32 => 0xebf6, // LAO
2006
- ALUOp::Orr64 => 0xebe6, // LAOG
2007
- ALUOp::Xor32 => 0xebf7, // LAX
2008
- ALUOp::Xor64 => 0xebe7, // LAXG
2009
- _ => unreachable!(),
2010
- };
2011
-
2012
- let rd = rd.to_reg();
2013
- mem_rs_emit(
2014
- rd,
2015
- rn,
2016
- &mem,
2017
- None,
2018
- Some(opcode),
2019
- true,
2020
- sink,
2021
- emit_info,
2022
- state,
2023
- );
2024
- }
2025
- &Inst::Loop { ref body, cond } => {
2026
- // This sequence is *one* instruction in the vcode, and is expanded only here at
2027
- // emission time, because it requires branching to internal labels.
2028
- let loop_label = sink.get_label();
2029
- let done_label = sink.get_label();
2030
-
2031
- // Emit label at the start of the loop.
2032
- sink.bind_label(loop_label, &mut state.ctrl_plane);
2033
-
2034
- for inst in (&body).into_iter() {
2035
- match &inst {
2036
- // Replace a CondBreak with a branch to done_label.
2037
- &Inst::CondBreak { cond } => {
2038
- let inst = Inst::OneWayCondBr {
2039
- target: done_label,
2040
- cond: *cond,
2041
- };
2042
- inst.emit_with_alloc_consumer(sink, emit_info, state);
2043
- }
2044
- _ => inst.emit_with_alloc_consumer(sink, emit_info, state),
2045
- };
2046
- }
2047
-
2048
- let inst = Inst::OneWayCondBr {
2049
- target: loop_label,
2050
- cond,
2051
- };
2052
- inst.emit(sink, emit_info, state);
2053
-
2054
- // Emit label at the end of the loop.
2055
- sink.bind_label(done_label, &mut state.ctrl_plane);
2056
- }
2057
- &Inst::CondBreak { .. } => unreachable!(), // Only valid inside a Loop.
2058
- &Inst::AtomicCas32 {
2059
- rd,
2060
- ri,
2061
- rn,
2062
- ref mem,
2063
- }
2064
- | &Inst::AtomicCas64 {
2065
- rd,
2066
- ri,
2067
- rn,
2068
- ref mem,
2069
- } => {
2070
- debug_assert_eq!(rd.to_reg(), ri);
2071
- let mem = mem.clone();
2072
-
2073
- let (opcode_rs, opcode_rsy) = match self {
2074
- &Inst::AtomicCas32 { .. } => (Some(0xba), Some(0xeb14)), // CS(Y)
2075
- &Inst::AtomicCas64 { .. } => (None, Some(0xeb30)), // CSG
2076
- _ => unreachable!(),
2077
- };
2078
-
2079
- let rd = rd.to_reg();
2080
- mem_rs_emit(
2081
- rd, rn, &mem, opcode_rs, opcode_rsy, true, sink, emit_info, state,
2082
- );
2083
- }
2084
- &Inst::Fence => {
2085
- put(sink, &enc_e(0x07e0));
2086
- }
2087
-
2088
- &Inst::Load32 { rd, ref mem }
2089
- | &Inst::Load32ZExt8 { rd, ref mem }
2090
- | &Inst::Load32SExt8 { rd, ref mem }
2091
- | &Inst::Load32ZExt16 { rd, ref mem }
2092
- | &Inst::Load32SExt16 { rd, ref mem }
2093
- | &Inst::Load64 { rd, ref mem }
2094
- | &Inst::Load64ZExt8 { rd, ref mem }
2095
- | &Inst::Load64SExt8 { rd, ref mem }
2096
- | &Inst::Load64ZExt16 { rd, ref mem }
2097
- | &Inst::Load64SExt16 { rd, ref mem }
2098
- | &Inst::Load64ZExt32 { rd, ref mem }
2099
- | &Inst::Load64SExt32 { rd, ref mem }
2100
- | &Inst::LoadRev16 { rd, ref mem }
2101
- | &Inst::LoadRev32 { rd, ref mem }
2102
- | &Inst::LoadRev64 { rd, ref mem } => {
2103
- let mem = mem.clone();
2104
-
2105
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
2106
- &Inst::Load32 { .. } => (Some(0x58), Some(0xe358), Some(0xc4d)), // L(Y), LRL
2107
- &Inst::Load32ZExt8 { .. } => (None, Some(0xe394), None), // LLC
2108
- &Inst::Load32SExt8 { .. } => (None, Some(0xe376), None), // LB
2109
- &Inst::Load32ZExt16 { .. } => (None, Some(0xe395), Some(0xc42)), // LLH, LLHRL
2110
- &Inst::Load32SExt16 { .. } => (Some(0x48), Some(0xe378), Some(0xc45)), // LH(Y), LHRL
2111
- &Inst::Load64 { .. } => (None, Some(0xe304), Some(0xc48)), // LG, LGRL
2112
- &Inst::Load64ZExt8 { .. } => (None, Some(0xe390), None), // LLGC
2113
- &Inst::Load64SExt8 { .. } => (None, Some(0xe377), None), // LGB
2114
- &Inst::Load64ZExt16 { .. } => (None, Some(0xe391), Some(0xc46)), // LLGH, LLGHRL
2115
- &Inst::Load64SExt16 { .. } => (None, Some(0xe315), Some(0xc44)), // LGH, LGHRL
2116
- &Inst::Load64ZExt32 { .. } => (None, Some(0xe316), Some(0xc4e)), // LLGF, LLGFRL
2117
- &Inst::Load64SExt32 { .. } => (None, Some(0xe314), Some(0xc4c)), // LGF, LGFRL
2118
- &Inst::LoadRev16 { .. } => (None, Some(0xe31f), None), // LRVH
2119
- &Inst::LoadRev32 { .. } => (None, Some(0xe31e), None), // LRV
2120
- &Inst::LoadRev64 { .. } => (None, Some(0xe30f), None), // LRVG
2121
- _ => unreachable!(),
2122
- };
2123
- let rd = rd.to_reg();
2124
- mem_emit(
2125
- rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
2126
- );
2127
- }
2128
-
2129
- &Inst::Store8 { rd, ref mem }
2130
- | &Inst::Store16 { rd, ref mem }
2131
- | &Inst::Store32 { rd, ref mem }
2132
- | &Inst::Store64 { rd, ref mem }
2133
- | &Inst::StoreRev16 { rd, ref mem }
2134
- | &Inst::StoreRev32 { rd, ref mem }
2135
- | &Inst::StoreRev64 { rd, ref mem } => {
2136
- let mem = mem.clone();
2137
-
2138
- let (opcode_rx, opcode_rxy, opcode_ril) = match self {
2139
- &Inst::Store8 { .. } => (Some(0x42), Some(0xe372), None), // STC(Y)
2140
- &Inst::Store16 { .. } => (Some(0x40), Some(0xe370), Some(0xc47)), // STH(Y), STHRL
2141
- &Inst::Store32 { .. } => (Some(0x50), Some(0xe350), Some(0xc4f)), // ST(Y), STRL
2142
- &Inst::Store64 { .. } => (None, Some(0xe324), Some(0xc4b)), // STG, STGRL
2143
- &Inst::StoreRev16 { .. } => (None, Some(0xe33f), None), // STRVH
2144
- &Inst::StoreRev32 { .. } => (None, Some(0xe33e), None), // STRV
2145
- &Inst::StoreRev64 { .. } => (None, Some(0xe32f), None), // STRVG
2146
- _ => unreachable!(),
2147
- };
2148
- mem_emit(
2149
- rd, &mem, opcode_rx, opcode_rxy, opcode_ril, true, sink, emit_info, state,
2150
- );
2151
- }
2152
- &Inst::StoreImm8 { imm, ref mem } => {
2153
- let mem = mem.clone();
2154
-
2155
- let opcode_si = 0x92; // MVI
2156
- let opcode_siy = 0xeb52; // MVIY
2157
- mem_imm8_emit(
2158
- imm, &mem, opcode_si, opcode_siy, true, sink, emit_info, state,
2159
- );
2160
- }
2161
- &Inst::StoreImm16 { imm, ref mem }
2162
- | &Inst::StoreImm32SExt16 { imm, ref mem }
2163
- | &Inst::StoreImm64SExt16 { imm, ref mem } => {
2164
- let mem = mem.clone();
2165
-
2166
- let opcode = match self {
2167
- &Inst::StoreImm16 { .. } => 0xe544, // MVHHI
2168
- &Inst::StoreImm32SExt16 { .. } => 0xe54c, // MVHI
2169
- &Inst::StoreImm64SExt16 { .. } => 0xe548, // MVGHI
2170
- _ => unreachable!(),
2171
- };
2172
- mem_imm16_emit(imm, &mem, opcode, true, sink, emit_info, state);
2173
- }
2174
- &Inst::Mvc {
2175
- ref dst,
2176
- ref src,
2177
- len_minus_one,
2178
- } => {
2179
- let dst = dst.clone();
2180
- let src = src.clone();
2181
- let opcode = 0xd2; // MVC
2182
- mem_mem_emit(&dst, &src, len_minus_one, opcode, true, sink, state);
2183
- }
2184
-
2185
- &Inst::LoadMultiple64 { rt, rt2, ref mem } => {
2186
- let mem = mem.clone();
2187
-
2188
- let opcode = 0xeb04; // LMG
2189
- let rt = rt.to_reg();
2190
- let rt2 = rt2.to_reg();
2191
- mem_rs_emit(
2192
- rt,
2193
- rt2,
2194
- &mem,
2195
- None,
2196
- Some(opcode),
2197
- true,
2198
- sink,
2199
- emit_info,
2200
- state,
2201
- );
2202
- }
2203
- &Inst::StoreMultiple64 { rt, rt2, ref mem } => {
2204
- let mem = mem.clone();
2205
-
2206
- let opcode = 0xeb24; // STMG
2207
- mem_rs_emit(
2208
- rt,
2209
- rt2,
2210
- &mem,
2211
- None,
2212
- Some(opcode),
2213
- true,
2214
- sink,
2215
- emit_info,
2216
- state,
2217
- );
2218
- }
2219
-
2220
- &Inst::LoadAddr { rd, ref mem } => {
2221
- let mem = mem.clone();
2222
-
2223
- let opcode_rx = Some(0x41); // LA
2224
- let opcode_rxy = Some(0xe371); // LAY
2225
- let opcode_ril = Some(0xc00); // LARL
2226
- let rd = rd.to_reg();
2227
- mem_emit(
2228
- rd, &mem, opcode_rx, opcode_rxy, opcode_ril, false, sink, emit_info, state,
2229
- );
2230
- }
2231
-
2232
- &Inst::Mov64 { rd, rm } => {
2233
- let opcode = 0xb904; // LGR
2234
- put(sink, &enc_rre(opcode, rd.to_reg(), rm));
2235
- }
2236
- &Inst::MovPReg { rd, rm } => {
2237
- let rm: Reg = rm.into();
2238
- debug_assert!([regs::gpr(0), regs::gpr(14), regs::gpr(15)].contains(&rm));
2239
- Inst::Mov64 { rd, rm }.emit(sink, emit_info, state);
2240
- }
2241
- &Inst::Mov32 { rd, rm } => {
2242
- let opcode = 0x18; // LR
2243
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2244
- }
2245
- &Inst::Mov32Imm { rd, imm } => {
2246
- let opcode = 0xc09; // IILF
2247
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm));
2248
- }
2249
- &Inst::Mov32SImm16 { rd, imm } => {
2250
- let opcode = 0xa78; // LHI
2251
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
2252
- }
2253
- &Inst::Mov64SImm16 { rd, imm } => {
2254
- let opcode = 0xa79; // LGHI
2255
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm as u16));
2256
- }
2257
- &Inst::Mov64SImm32 { rd, imm } => {
2258
- let opcode = 0xc01; // LGFI
2259
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm as u32));
2260
- }
2261
- &Inst::CMov32 { rd, cond, ri, rm } => {
2262
- debug_assert_eq!(rd.to_reg(), ri);
2263
-
2264
- let opcode = 0xb9f2; // LOCR
2265
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
2266
- }
2267
- &Inst::CMov64 { rd, cond, ri, rm } => {
2268
- debug_assert_eq!(rd.to_reg(), ri);
2269
-
2270
- let opcode = 0xb9e2; // LOCGR
2271
- put(sink, &enc_rrf_cde(opcode, rd.to_reg(), rm, cond.bits(), 0));
2272
- }
2273
- &Inst::CMov32SImm16 { rd, cond, ri, imm } => {
2274
- debug_assert_eq!(rd.to_reg(), ri);
2275
-
2276
- let opcode = 0xec42; // LOCHI
2277
- put(
2278
- sink,
2279
- &enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
2280
- );
2281
- }
2282
- &Inst::CMov64SImm16 { rd, cond, ri, imm } => {
2283
- debug_assert_eq!(rd.to_reg(), ri);
2284
-
2285
- let opcode = 0xec46; // LOCGHI
2286
- put(
2287
- sink,
2288
- &enc_rie_g(opcode, rd.to_reg(), imm as u16, cond.bits()),
2289
- );
2290
- }
2291
- &Inst::Mov64UImm16Shifted { rd, imm } => {
2292
- let opcode = match imm.shift {
2293
- 0 => 0xa5f, // LLILL
2294
- 1 => 0xa5e, // LLILH
2295
- 2 => 0xa5d, // LLIHL
2296
- 3 => 0xa5c, // LLIHH
2297
- _ => unreachable!(),
2298
- };
2299
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
2300
- }
2301
- &Inst::Mov64UImm32Shifted { rd, imm } => {
2302
- let opcode = match imm.shift {
2303
- 0 => 0xc0f, // LLILF
2304
- 1 => 0xc0e, // LLIHF
2305
- _ => unreachable!(),
2306
- };
2307
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
2308
- }
2309
- &Inst::Insert64UImm16Shifted { rd, ri, imm } => {
2310
- debug_assert_eq!(rd.to_reg(), ri);
2311
-
2312
- let opcode = match imm.shift {
2313
- 0 => 0xa53, // IILL
2314
- 1 => 0xa52, // IILH
2315
- 2 => 0xa51, // IIHL
2316
- 3 => 0xa50, // IIHH
2317
- _ => unreachable!(),
2318
- };
2319
- put(sink, &enc_ri_a(opcode, rd.to_reg(), imm.bits));
2320
- }
2321
- &Inst::Insert64UImm32Shifted { rd, ri, imm } => {
2322
- debug_assert_eq!(rd.to_reg(), ri);
2323
-
2324
- let opcode = match imm.shift {
2325
- 0 => 0xc09, // IILF
2326
- 1 => 0xc08, // IIHF
2327
- _ => unreachable!(),
2328
- };
2329
- put(sink, &enc_ril_a(opcode, rd.to_reg(), imm.bits));
2330
- }
2331
- &Inst::LoadAR { rd, ar } => {
2332
- let opcode = 0xb24f; // EAR
2333
- put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
2334
- }
2335
-
2336
- &Inst::InsertAR { rd, ri, ar } => {
2337
- debug_assert_eq!(rd.to_reg(), ri);
2338
-
2339
- let opcode = 0xb24f; // EAR
2340
- put(sink, &enc_rre(opcode, rd.to_reg(), gpr(ar)));
2341
- }
2342
- &Inst::LoadSymbolReloc {
2343
- rd,
2344
- ref symbol_reloc,
2345
- } => {
2346
- let opcode = 0xa75; // BRAS
2347
- let reg = writable_spilltmp_reg().to_reg();
2348
- put(sink, &enc_ri_b(opcode, reg, 12));
2349
- let (reloc, name, offset) = match &**symbol_reloc {
2350
- SymbolReloc::Absolute { name, offset } => (Reloc::Abs8, name, *offset),
2351
- SymbolReloc::TlsGd { name } => (Reloc::S390xTlsGd64, name, 0),
2352
- };
2353
- sink.add_reloc(reloc, name, offset);
2354
- sink.put8(0);
2355
- let inst = Inst::Load64 {
2356
- rd,
2357
- mem: MemArg::reg(reg, MemFlags::trusted()),
2358
- };
2359
- inst.emit(sink, emit_info, state);
2360
- }
2361
-
2362
- &Inst::FpuMove32 { rd, rn } => {
2363
- if is_fpr(rd.to_reg()) && is_fpr(rn) {
2364
- let opcode = 0x38; // LER
2365
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
2366
- } else {
2367
- let opcode = 0xe756; // VLR
2368
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2369
- }
2370
- }
2371
- &Inst::FpuMove64 { rd, rn } => {
2372
- if is_fpr(rd.to_reg()) && is_fpr(rn) {
2373
- let opcode = 0x28; // LDR
2374
- put(sink, &enc_rr(opcode, rd.to_reg(), rn));
2375
- } else {
2376
- let opcode = 0xe756; // VLR
2377
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2378
- }
2379
- }
2380
- &Inst::FpuCMov32 { rd, cond, ri, rm } => {
2381
- debug_assert_eq!(rd.to_reg(), ri);
2382
-
2383
- if is_fpr(rd.to_reg()) && is_fpr(rm) {
2384
- let opcode = 0xa74; // BCR
2385
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
2386
- let opcode = 0x38; // LER
2387
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2388
- } else {
2389
- let opcode = 0xa74; // BCR
2390
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2391
- let opcode = 0xe756; // VLR
2392
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2393
- }
2394
- }
2395
- &Inst::FpuCMov64 { rd, cond, ri, rm } => {
2396
- debug_assert_eq!(rd.to_reg(), ri);
2397
-
2398
- if is_fpr(rd.to_reg()) && is_fpr(rm) {
2399
- let opcode = 0xa74; // BCR
2400
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 2));
2401
- let opcode = 0x28; // LDR
2402
- put(sink, &enc_rr(opcode, rd.to_reg(), rm));
2403
- } else {
2404
- let opcode = 0xa74; // BCR
2405
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2406
- let opcode = 0xe756; // VLR
2407
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2408
- }
2409
- }
2410
- &Inst::LoadFpuConst32 { rd, const_data } => {
2411
- let opcode = 0xa75; // BRAS
2412
- let reg = writable_spilltmp_reg().to_reg();
2413
- put(sink, &enc_ri_b(opcode, reg, 8));
2414
- sink.put4(const_data.swap_bytes());
2415
- let inst = Inst::VecLoadLaneUndef {
2416
- size: 32,
2417
- rd,
2418
- mem: MemArg::reg(reg, MemFlags::trusted()),
2419
- lane_imm: 0,
2420
- };
2421
- inst.emit(sink, emit_info, state);
2422
- }
2423
- &Inst::LoadFpuConst64 { rd, const_data } => {
2424
- let opcode = 0xa75; // BRAS
2425
- let reg = writable_spilltmp_reg().to_reg();
2426
- put(sink, &enc_ri_b(opcode, reg, 12));
2427
- sink.put8(const_data.swap_bytes());
2428
- let inst = Inst::VecLoadLaneUndef {
2429
- size: 64,
2430
- rd,
2431
- mem: MemArg::reg(reg, MemFlags::trusted()),
2432
- lane_imm: 0,
2433
- };
2434
- inst.emit(sink, emit_info, state);
2435
- }
2436
- &Inst::FpuRR { fpu_op, rd, rn } => {
2437
- let (opcode, m3, m4, m5, opcode_fpr) = match fpu_op {
2438
- FPUOp1::Abs32 => (0xe7cc, 2, 8, 2, Some(0xb300)), // WFPSO, LPEBR
2439
- FPUOp1::Abs64 => (0xe7cc, 3, 8, 2, Some(0xb310)), // WFPSO, LPDBR
2440
- FPUOp1::Abs32x4 => (0xe7cc, 2, 0, 2, None), // VFPSO
2441
- FPUOp1::Abs64x2 => (0xe7cc, 3, 0, 2, None), // VFPSO
2442
- FPUOp1::Neg32 => (0xe7cc, 2, 8, 0, Some(0xb303)), // WFPSO, LCEBR
2443
- FPUOp1::Neg64 => (0xe7cc, 3, 8, 0, Some(0xb313)), // WFPSO, LCDBR
2444
- FPUOp1::Neg32x4 => (0xe7cc, 2, 0, 0, None), // VFPSO
2445
- FPUOp1::Neg64x2 => (0xe7cc, 3, 0, 0, None), // VFPSO
2446
- FPUOp1::NegAbs32 => (0xe7cc, 2, 8, 1, Some(0xb301)), // WFPSO, LNEBR
2447
- FPUOp1::NegAbs64 => (0xe7cc, 3, 8, 1, Some(0xb311)), // WFPSO, LNDBR
2448
- FPUOp1::NegAbs32x4 => (0xe7cc, 2, 0, 1, None), // VFPSO
2449
- FPUOp1::NegAbs64x2 => (0xe7cc, 3, 0, 1, None), // VFPSO
2450
- FPUOp1::Sqrt32 => (0xe7ce, 2, 8, 0, Some(0xb314)), // WFSQ, SQEBR
2451
- FPUOp1::Sqrt64 => (0xe7ce, 3, 8, 0, Some(0xb315)), // WFSQ, SQDBR
2452
- FPUOp1::Sqrt32x4 => (0xe7ce, 2, 0, 0, None), // VFSQ
2453
- FPUOp1::Sqrt64x2 => (0xe7ce, 3, 0, 0, None), // VFSQ
2454
- FPUOp1::Cvt32To64 => (0xe7c4, 2, 8, 0, Some(0xb304)), // WFLL, LDEBR
2455
- FPUOp1::Cvt32x4To64x2 => (0xe7c4, 2, 0, 0, None), // VFLL
2456
- };
2457
- if m4 == 8 && is_fpr(rd.to_reg()) && is_fpr(rn) {
2458
- put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rn));
2459
- } else {
2460
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, m5));
2461
- }
2462
- }
2463
- &Inst::FpuRRR { fpu_op, rd, rn, rm } => {
2464
- let (opcode, m4, m5, m6, opcode_fpr) = match fpu_op {
2465
- FPUOp2::Add32 => (0xe7e3, 2, 8, 0, Some(0xb30a)), // WFA, AEBR
2466
- FPUOp2::Add64 => (0xe7e3, 3, 8, 0, Some(0xb31a)), // WFA, ADBR
2467
- FPUOp2::Add32x4 => (0xe7e3, 2, 0, 0, None), // VFA
2468
- FPUOp2::Add64x2 => (0xe7e3, 3, 0, 0, None), // VFA
2469
- FPUOp2::Sub32 => (0xe7e2, 2, 8, 0, Some(0xb30b)), // WFS, SEBR
2470
- FPUOp2::Sub64 => (0xe7e2, 3, 8, 0, Some(0xb31b)), // WFS, SDBR
2471
- FPUOp2::Sub32x4 => (0xe7e2, 2, 0, 0, None), // VFS
2472
- FPUOp2::Sub64x2 => (0xe7e2, 3, 0, 0, None), // VFS
2473
- FPUOp2::Mul32 => (0xe7e7, 2, 8, 0, Some(0xb317)), // WFM, MEEBR
2474
- FPUOp2::Mul64 => (0xe7e7, 3, 8, 0, Some(0xb31c)), // WFM, MDBR
2475
- FPUOp2::Mul32x4 => (0xe7e7, 2, 0, 0, None), // VFM
2476
- FPUOp2::Mul64x2 => (0xe7e7, 3, 0, 0, None), // VFM
2477
- FPUOp2::Div32 => (0xe7e5, 2, 8, 0, Some(0xb30d)), // WFD, DEBR
2478
- FPUOp2::Div64 => (0xe7e5, 3, 8, 0, Some(0xb31d)), // WFD, DDBR
2479
- FPUOp2::Div32x4 => (0xe7e5, 2, 0, 0, None), // VFD
2480
- FPUOp2::Div64x2 => (0xe7e5, 3, 0, 0, None), // VFD
2481
- FPUOp2::Max32 => (0xe7ef, 2, 8, 1, None), // WFMAX
2482
- FPUOp2::Max64 => (0xe7ef, 3, 8, 1, None), // WFMAX
2483
- FPUOp2::Max32x4 => (0xe7ef, 2, 0, 1, None), // VFMAX
2484
- FPUOp2::Max64x2 => (0xe7ef, 3, 0, 1, None), // VFMAX
2485
- FPUOp2::Min32 => (0xe7ee, 2, 8, 1, None), // WFMIN
2486
- FPUOp2::Min64 => (0xe7ee, 3, 8, 1, None), // WFMIN
2487
- FPUOp2::Min32x4 => (0xe7ee, 2, 0, 1, None), // VFMIN
2488
- FPUOp2::Min64x2 => (0xe7ee, 3, 0, 1, None), // VFMIN
2489
- FPUOp2::MaxPseudo32 => (0xe7ef, 2, 8, 3, None), // WFMAX
2490
- FPUOp2::MaxPseudo64 => (0xe7ef, 3, 8, 3, None), // WFMAX
2491
- FPUOp2::MaxPseudo32x4 => (0xe7ef, 2, 0, 3, None), // VFMAX
2492
- FPUOp2::MaxPseudo64x2 => (0xe7ef, 3, 0, 3, None), // VFMAX
2493
- FPUOp2::MinPseudo32 => (0xe7ee, 2, 8, 3, None), // WFMIN
2494
- FPUOp2::MinPseudo64 => (0xe7ee, 3, 8, 3, None), // WFMIN
2495
- FPUOp2::MinPseudo32x4 => (0xe7ee, 2, 0, 3, None), // VFMIN
2496
- FPUOp2::MinPseudo64x2 => (0xe7ee, 3, 0, 3, None), // VFMIN
2497
- };
2498
- if m5 == 8 && opcode_fpr.is_some() && rd.to_reg() == rn && is_fpr(rn) && is_fpr(rm)
2499
- {
2500
- put(sink, &enc_rre(opcode_fpr.unwrap(), rd.to_reg(), rm));
2501
- } else {
2502
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, m5, m6));
2503
- }
2504
- }
2505
- &Inst::FpuRRRR {
2506
- fpu_op,
2507
- rd,
2508
- rn,
2509
- rm,
2510
- ra,
2511
- } => {
2512
- let (opcode, m5, m6, opcode_fpr) = match fpu_op {
2513
- FPUOp3::MAdd32 => (0xe78f, 8, 2, Some(0xb30e)), // WFMA, MAEBR
2514
- FPUOp3::MAdd64 => (0xe78f, 8, 3, Some(0xb31e)), // WFMA, MADBR
2515
- FPUOp3::MAdd32x4 => (0xe78f, 0, 2, None), // VFMA
2516
- FPUOp3::MAdd64x2 => (0xe78f, 0, 3, None), // VFMA
2517
- FPUOp3::MSub32 => (0xe78e, 8, 2, Some(0xb30f)), // WFMS, MSEBR
2518
- FPUOp3::MSub64 => (0xe78e, 8, 3, Some(0xb31f)), // WFMS, MSDBR
2519
- FPUOp3::MSub32x4 => (0xe78e, 0, 2, None), // VFMS
2520
- FPUOp3::MSub64x2 => (0xe78e, 0, 3, None), // VFMS
2521
- };
2522
- if m5 == 8 && rd.to_reg() == ra && is_fpr(rn) && is_fpr(rm) && is_fpr(ra) {
2523
- put(sink, &enc_rrd(opcode_fpr.unwrap(), rd.to_reg(), rm, rn));
2524
- } else {
2525
- put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, m5, m6));
2526
- }
2527
- }
2528
- &Inst::FpuRound { op, mode, rd, rn } => {
2529
- let mode = match mode {
2530
- FpuRoundMode::Current => 0,
2531
- FpuRoundMode::ToNearest => 1,
2532
- FpuRoundMode::ShorterPrecision => 3,
2533
- FpuRoundMode::ToNearestTiesToEven => 4,
2534
- FpuRoundMode::ToZero => 5,
2535
- FpuRoundMode::ToPosInfinity => 6,
2536
- FpuRoundMode::ToNegInfinity => 7,
2537
- };
2538
- let (opcode, m3, m4, opcode_fpr) = match op {
2539
- FpuRoundOp::Cvt64To32 => (0xe7c5, 3, 8, Some(0xb344)), // WFLR, LEDBR(A)
2540
- FpuRoundOp::Cvt64x2To32x4 => (0xe7c5, 3, 0, None), // VFLR
2541
- FpuRoundOp::Round32 => (0xe7c7, 2, 8, Some(0xb357)), // WFI, FIEBR
2542
- FpuRoundOp::Round64 => (0xe7c7, 3, 8, Some(0xb35f)), // WFI, FIDBR
2543
- FpuRoundOp::Round32x4 => (0xe7c7, 2, 0, None), // VFI
2544
- FpuRoundOp::Round64x2 => (0xe7c7, 3, 0, None), // VFI
2545
- FpuRoundOp::ToSInt32 => (0xe7c2, 2, 8, None), // WCSFP
2546
- FpuRoundOp::ToSInt64 => (0xe7c2, 3, 8, None), // WCSFP
2547
- FpuRoundOp::ToUInt32 => (0xe7c0, 2, 8, None), // WCLFP
2548
- FpuRoundOp::ToUInt64 => (0xe7c0, 3, 8, None), // WCLFP
2549
- FpuRoundOp::ToSInt32x4 => (0xe7c2, 2, 0, None), // VCSFP
2550
- FpuRoundOp::ToSInt64x2 => (0xe7c2, 3, 0, None), // VCSFP
2551
- FpuRoundOp::ToUInt32x4 => (0xe7c0, 2, 0, None), // VCLFP
2552
- FpuRoundOp::ToUInt64x2 => (0xe7c0, 3, 0, None), // VCLFP
2553
- FpuRoundOp::FromSInt32 => (0xe7c3, 2, 8, None), // WCFPS
2554
- FpuRoundOp::FromSInt64 => (0xe7c3, 3, 8, None), // WCFPS
2555
- FpuRoundOp::FromUInt32 => (0xe7c1, 2, 8, None), // WCFPL
2556
- FpuRoundOp::FromUInt64 => (0xe7c1, 3, 8, None), // WCFPL
2557
- FpuRoundOp::FromSInt32x4 => (0xe7c3, 2, 0, None), // VCFPS
2558
- FpuRoundOp::FromSInt64x2 => (0xe7c3, 3, 0, None), // VCFPS
2559
- FpuRoundOp::FromUInt32x4 => (0xe7c1, 2, 0, None), // VCFPL
2560
- FpuRoundOp::FromUInt64x2 => (0xe7c1, 3, 0, None), // VCFPL
2561
- };
2562
- if m4 == 8 && opcode_fpr.is_some() && is_fpr(rd.to_reg()) && is_fpr(rn) {
2563
- put(
2564
- sink,
2565
- &enc_rrf_cde(opcode_fpr.unwrap(), rd.to_reg(), rn, mode, 0),
2566
- );
2567
- } else {
2568
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, m4, mode));
2569
- }
2570
- }
2571
- &Inst::FpuCmp32 { rn, rm } => {
2572
- if is_fpr(rn) && is_fpr(rm) {
2573
- let opcode = 0xb309; // CEBR
2574
- put(sink, &enc_rre(opcode, rn, rm));
2575
- } else {
2576
- let opcode = 0xe7cb; // WFC
2577
- put(sink, &enc_vrr_a(opcode, rn, rm, 2, 0, 0));
2578
- }
2579
- }
2580
- &Inst::FpuCmp64 { rn, rm } => {
2581
- if is_fpr(rn) && is_fpr(rm) {
2582
- let opcode = 0xb319; // CDBR
2583
- put(sink, &enc_rre(opcode, rn, rm));
2584
- } else {
2585
- let opcode = 0xe7cb; // WFC
2586
- put(sink, &enc_vrr_a(opcode, rn, rm, 3, 0, 0));
2587
- }
2588
- }
2589
-
2590
- &Inst::VecRRR { op, rd, rn, rm } => {
2591
- let (opcode, m4) = match op {
2592
- VecBinaryOp::Add8x16 => (0xe7f3, 0), // VAB
2593
- VecBinaryOp::Add16x8 => (0xe7f3, 1), // VAH
2594
- VecBinaryOp::Add32x4 => (0xe7f3, 2), // VAF
2595
- VecBinaryOp::Add64x2 => (0xe7f3, 3), // VAG
2596
- VecBinaryOp::Add128 => (0xe7f3, 4), // VAQ
2597
- VecBinaryOp::Sub8x16 => (0xe7f7, 0), // VSB
2598
- VecBinaryOp::Sub16x8 => (0xe7f7, 1), // VSH
2599
- VecBinaryOp::Sub32x4 => (0xe7f7, 2), // VSF
2600
- VecBinaryOp::Sub64x2 => (0xe7f7, 3), // VSG
2601
- VecBinaryOp::Sub128 => (0xe7f7, 4), // VSQ
2602
- VecBinaryOp::Mul8x16 => (0xe7a2, 0), // VMLB
2603
- VecBinaryOp::Mul16x8 => (0xe7a2, 1), // VMLHW
2604
- VecBinaryOp::Mul32x4 => (0xe7a2, 2), // VMLF
2605
- VecBinaryOp::UMulHi8x16 => (0xe7a1, 0), // VMLHB
2606
- VecBinaryOp::UMulHi16x8 => (0xe7a1, 1), // VMLHH
2607
- VecBinaryOp::UMulHi32x4 => (0xe7a1, 2), // VMLHF
2608
- VecBinaryOp::SMulHi8x16 => (0xe7a3, 0), // VMHB
2609
- VecBinaryOp::SMulHi16x8 => (0xe7a3, 1), // VMHH
2610
- VecBinaryOp::SMulHi32x4 => (0xe7a3, 2), // VMHF
2611
- VecBinaryOp::UMulEven8x16 => (0xe7a4, 0), // VMLEB
2612
- VecBinaryOp::UMulEven16x8 => (0xe7a4, 1), // VMLEH
2613
- VecBinaryOp::UMulEven32x4 => (0xe7a4, 2), // VMLEF
2614
- VecBinaryOp::SMulEven8x16 => (0xe7a6, 0), // VMEB
2615
- VecBinaryOp::SMulEven16x8 => (0xe7a6, 1), // VMEH
2616
- VecBinaryOp::SMulEven32x4 => (0xe7a6, 2), // VMEF
2617
- VecBinaryOp::UMulOdd8x16 => (0xe7a5, 0), // VMLOB
2618
- VecBinaryOp::UMulOdd16x8 => (0xe7a5, 1), // VMLOH
2619
- VecBinaryOp::UMulOdd32x4 => (0xe7a5, 2), // VMLOF
2620
- VecBinaryOp::SMulOdd8x16 => (0xe7a7, 0), // VMOB
2621
- VecBinaryOp::SMulOdd16x8 => (0xe7a7, 1), // VMOH
2622
- VecBinaryOp::SMulOdd32x4 => (0xe7a7, 2), // VMOF
2623
- VecBinaryOp::UMax8x16 => (0xe7fd, 0), // VMXLB
2624
- VecBinaryOp::UMax16x8 => (0xe7fd, 1), // VMXLH
2625
- VecBinaryOp::UMax32x4 => (0xe7fd, 2), // VMXLF
2626
- VecBinaryOp::UMax64x2 => (0xe7fd, 3), // VMXLG
2627
- VecBinaryOp::SMax8x16 => (0xe7ff, 0), // VMXB
2628
- VecBinaryOp::SMax16x8 => (0xe7ff, 1), // VMXH
2629
- VecBinaryOp::SMax32x4 => (0xe7ff, 2), // VMXF
2630
- VecBinaryOp::SMax64x2 => (0xe7ff, 3), // VMXG
2631
- VecBinaryOp::UMin8x16 => (0xe7fc, 0), // VMNLB
2632
- VecBinaryOp::UMin16x8 => (0xe7fc, 1), // VMNLH
2633
- VecBinaryOp::UMin32x4 => (0xe7fc, 2), // VMNLF
2634
- VecBinaryOp::UMin64x2 => (0xe7fc, 3), // VMNLG
2635
- VecBinaryOp::SMin8x16 => (0xe7fe, 0), // VMNB
2636
- VecBinaryOp::SMin16x8 => (0xe7fe, 1), // VMNH
2637
- VecBinaryOp::SMin32x4 => (0xe7fe, 2), // VMNF
2638
- VecBinaryOp::SMin64x2 => (0xe7fe, 3), // VMNG
2639
- VecBinaryOp::UAvg8x16 => (0xe7f0, 0), // VAVGLB
2640
- VecBinaryOp::UAvg16x8 => (0xe7f0, 1), // VAVGLH
2641
- VecBinaryOp::UAvg32x4 => (0xe7f0, 2), // VAVGLF
2642
- VecBinaryOp::UAvg64x2 => (0xe7f0, 3), // VAVGLG
2643
- VecBinaryOp::SAvg8x16 => (0xe7f2, 0), // VAVGB
2644
- VecBinaryOp::SAvg16x8 => (0xe7f2, 1), // VAVGH
2645
- VecBinaryOp::SAvg32x4 => (0xe7f2, 2), // VAVGF
2646
- VecBinaryOp::SAvg64x2 => (0xe7f2, 3), // VAVGG
2647
- VecBinaryOp::And128 => (0xe768, 0), // VN
2648
- VecBinaryOp::Orr128 => (0xe76a, 0), // VO
2649
- VecBinaryOp::Xor128 => (0xe76d, 0), // VX
2650
- VecBinaryOp::NotAnd128 => (0xe76e, 0), // VNN
2651
- VecBinaryOp::NotOrr128 => (0xe76b, 0), // VNO
2652
- VecBinaryOp::NotXor128 => (0xe76c, 0), // VNX
2653
- VecBinaryOp::AndNot128 => (0xe769, 0), // VNC
2654
- VecBinaryOp::OrrNot128 => (0xe76f, 0), // VOC
2655
- VecBinaryOp::BitPermute128 => (0xe785, 0), // VBPERM
2656
- VecBinaryOp::LShLByByte128 => (0xe775, 0), // VSLB
2657
- VecBinaryOp::LShRByByte128 => (0xe77d, 0), // VSRLB
2658
- VecBinaryOp::AShRByByte128 => (0xe77f, 0), // VSRAB
2659
- VecBinaryOp::LShLByBit128 => (0xe774, 0), // VSL
2660
- VecBinaryOp::LShRByBit128 => (0xe77c, 0), // VSRL
2661
- VecBinaryOp::AShRByBit128 => (0xe77e, 0), // VSRA
2662
- VecBinaryOp::Pack16x8 => (0xe794, 1), // VPKH
2663
- VecBinaryOp::Pack32x4 => (0xe794, 2), // VPKF
2664
- VecBinaryOp::Pack64x2 => (0xe794, 3), // VPKG
2665
- VecBinaryOp::PackUSat16x8 => (0xe795, 1), // VPKLSH
2666
- VecBinaryOp::PackUSat32x4 => (0xe795, 2), // VPKLSF
2667
- VecBinaryOp::PackUSat64x2 => (0xe795, 3), // VPKLSG
2668
- VecBinaryOp::PackSSat16x8 => (0xe797, 1), // VPKSH
2669
- VecBinaryOp::PackSSat32x4 => (0xe797, 2), // VPKSF
2670
- VecBinaryOp::PackSSat64x2 => (0xe797, 3), // VPKSG
2671
- VecBinaryOp::MergeLow8x16 => (0xe760, 0), // VMRLB
2672
- VecBinaryOp::MergeLow16x8 => (0xe760, 1), // VMRLH
2673
- VecBinaryOp::MergeLow32x4 => (0xe760, 2), // VMRLF
2674
- VecBinaryOp::MergeLow64x2 => (0xe760, 3), // VMRLG
2675
- VecBinaryOp::MergeHigh8x16 => (0xe761, 0), // VMRHB
2676
- VecBinaryOp::MergeHigh16x8 => (0xe761, 1), // VMRHH
2677
- VecBinaryOp::MergeHigh32x4 => (0xe761, 2), // VMRHF
2678
- VecBinaryOp::MergeHigh64x2 => (0xe761, 3), // VMRHG
2679
- };
2680
-
2681
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
2682
- }
2683
- &Inst::VecRR { op, rd, rn } => {
2684
- let (opcode, m3) = match op {
2685
- VecUnaryOp::Abs8x16 => (0xe7df, 0), // VLPB
2686
- VecUnaryOp::Abs16x8 => (0xe7df, 1), // VLPH
2687
- VecUnaryOp::Abs32x4 => (0xe7df, 2), // VLPF
2688
- VecUnaryOp::Abs64x2 => (0xe7df, 3), // VLPG
2689
- VecUnaryOp::Neg8x16 => (0xe7de, 0), // VLCB
2690
- VecUnaryOp::Neg16x8 => (0xe7de, 1), // VLCH
2691
- VecUnaryOp::Neg32x4 => (0xe7de, 2), // VLCF
2692
- VecUnaryOp::Neg64x2 => (0xe7de, 3), // VLCG
2693
- VecUnaryOp::Popcnt8x16 => (0xe750, 0), // VPOPCTB
2694
- VecUnaryOp::Popcnt16x8 => (0xe750, 1), // VPOPCTH
2695
- VecUnaryOp::Popcnt32x4 => (0xe750, 2), // VPOPCTF
2696
- VecUnaryOp::Popcnt64x2 => (0xe750, 3), // VPOPCTG
2697
- VecUnaryOp::Clz8x16 => (0xe753, 0), // VCLZB
2698
- VecUnaryOp::Clz16x8 => (0xe753, 1), // VCLZH
2699
- VecUnaryOp::Clz32x4 => (0xe753, 2), // VCLZF
2700
- VecUnaryOp::Clz64x2 => (0xe753, 3), // VCLZG
2701
- VecUnaryOp::Ctz8x16 => (0xe752, 0), // VCTZB
2702
- VecUnaryOp::Ctz16x8 => (0xe752, 1), // VCTZH
2703
- VecUnaryOp::Ctz32x4 => (0xe752, 2), // VCTZF
2704
- VecUnaryOp::Ctz64x2 => (0xe752, 3), // VCTZG
2705
- VecUnaryOp::UnpackULow8x16 => (0xe7d4, 0), // VUPLLB
2706
- VecUnaryOp::UnpackULow16x8 => (0xe7d4, 1), // VUPLLH
2707
- VecUnaryOp::UnpackULow32x4 => (0xe7d4, 2), // VUPLLF
2708
- VecUnaryOp::UnpackUHigh8x16 => (0xe7d5, 0), // VUPLHB
2709
- VecUnaryOp::UnpackUHigh16x8 => (0xe7d5, 1), // VUPLHH
2710
- VecUnaryOp::UnpackUHigh32x4 => (0xe7d5, 2), // VUPLHF
2711
- VecUnaryOp::UnpackSLow8x16 => (0xe7d6, 0), // VUPLB
2712
- VecUnaryOp::UnpackSLow16x8 => (0xe7d6, 1), // VUPLH
2713
- VecUnaryOp::UnpackSLow32x4 => (0xe7d6, 2), // VUPLF
2714
- VecUnaryOp::UnpackSHigh8x16 => (0xe7d7, 0), // VUPHB
2715
- VecUnaryOp::UnpackSHigh16x8 => (0xe7d7, 1), // VUPHH
2716
- VecUnaryOp::UnpackSHigh32x4 => (0xe7d7, 2), // VUPHF
2717
- };
2718
-
2719
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, m3, 0, 0));
2720
- }
2721
- &Inst::VecShiftRR {
2722
- shift_op,
2723
- rd,
2724
- rn,
2725
- shift_imm,
2726
- shift_reg,
2727
- } => {
2728
- let (opcode, m4) = match shift_op {
2729
- VecShiftOp::RotL8x16 => (0xe733, 0), // VERLLB
2730
- VecShiftOp::RotL16x8 => (0xe733, 1), // VERLLH
2731
- VecShiftOp::RotL32x4 => (0xe733, 2), // VERLLF
2732
- VecShiftOp::RotL64x2 => (0xe733, 3), // VERLLG
2733
- VecShiftOp::LShL8x16 => (0xe730, 0), // VESLB
2734
- VecShiftOp::LShL16x8 => (0xe730, 1), // VESLH
2735
- VecShiftOp::LShL32x4 => (0xe730, 2), // VESLF
2736
- VecShiftOp::LShL64x2 => (0xe730, 3), // VESLG
2737
- VecShiftOp::LShR8x16 => (0xe738, 0), // VESRLB
2738
- VecShiftOp::LShR16x8 => (0xe738, 1), // VESRLH
2739
- VecShiftOp::LShR32x4 => (0xe738, 2), // VESRLF
2740
- VecShiftOp::LShR64x2 => (0xe738, 3), // VESRLG
2741
- VecShiftOp::AShR8x16 => (0xe73a, 0), // VESRAB
2742
- VecShiftOp::AShR16x8 => (0xe73a, 1), // VESRAH
2743
- VecShiftOp::AShR32x4 => (0xe73a, 2), // VESRAF
2744
- VecShiftOp::AShR64x2 => (0xe73a, 3), // VESRAG
2745
- };
2746
- put(
2747
- sink,
2748
- &enc_vrs_a(opcode, rd.to_reg(), shift_reg, shift_imm.into(), rn, m4),
2749
- );
2750
- }
2751
- &Inst::VecSelect { rd, rn, rm, ra } => {
2752
- let opcode = 0xe78d; // VSEL
2753
- put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
2754
- }
2755
- &Inst::VecPermute { rd, rn, rm, ra } => {
2756
- let opcode = 0xe78c; // VPERM
2757
- put(sink, &enc_vrr_e(opcode, rd.to_reg(), rn, rm, ra, 0, 0));
2758
- }
2759
- &Inst::VecPermuteDWImm {
2760
- rd,
2761
- rn,
2762
- rm,
2763
- idx1,
2764
- idx2,
2765
- } => {
2766
- let m4 = (idx1 & 1) * 4 + (idx2 & 1);
2767
-
2768
- let opcode = 0xe784; // VPDI
2769
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, 0));
2770
- }
2771
- &Inst::VecIntCmp { op, rd, rn, rm } | &Inst::VecIntCmpS { op, rd, rn, rm } => {
2772
- let (opcode, m4) = match op {
2773
- VecIntCmpOp::CmpEq8x16 => (0xe7f8, 0), // VCEQB
2774
- VecIntCmpOp::CmpEq16x8 => (0xe7f8, 1), // VCEQH
2775
- VecIntCmpOp::CmpEq32x4 => (0xe7f8, 2), // VCEQF
2776
- VecIntCmpOp::CmpEq64x2 => (0xe7f8, 3), // VCEQG
2777
- VecIntCmpOp::SCmpHi8x16 => (0xe7fb, 0), // VCHB
2778
- VecIntCmpOp::SCmpHi16x8 => (0xe7fb, 1), // VCHH
2779
- VecIntCmpOp::SCmpHi32x4 => (0xe7fb, 2), // VCHG
2780
- VecIntCmpOp::SCmpHi64x2 => (0xe7fb, 3), // VCHG
2781
- VecIntCmpOp::UCmpHi8x16 => (0xe7f9, 0), // VCHLB
2782
- VecIntCmpOp::UCmpHi16x8 => (0xe7f9, 1), // VCHLH
2783
- VecIntCmpOp::UCmpHi32x4 => (0xe7f9, 2), // VCHLG
2784
- VecIntCmpOp::UCmpHi64x2 => (0xe7f9, 3), // VCHLG
2785
- };
2786
- let m5 = match self {
2787
- &Inst::VecIntCmp { .. } => 0,
2788
- &Inst::VecIntCmpS { .. } => 1,
2789
- _ => unreachable!(),
2790
- };
2791
-
2792
- put(sink, &enc_vrr_b(opcode, rd.to_reg(), rn, rm, m4, m5));
2793
- }
2794
- &Inst::VecFloatCmp { op, rd, rn, rm } | &Inst::VecFloatCmpS { op, rd, rn, rm } => {
2795
- let (opcode, m4) = match op {
2796
- VecFloatCmpOp::CmpEq32x4 => (0xe7e8, 2), // VFCESB
2797
- VecFloatCmpOp::CmpEq64x2 => (0xe7e8, 3), // VFCEDB
2798
- VecFloatCmpOp::CmpHi32x4 => (0xe7eb, 2), // VFCHSB
2799
- VecFloatCmpOp::CmpHi64x2 => (0xe7eb, 3), // VFCHDB
2800
- VecFloatCmpOp::CmpHiEq32x4 => (0xe7ea, 2), // VFCHESB
2801
- VecFloatCmpOp::CmpHiEq64x2 => (0xe7ea, 3), // VFCHEDB
2802
- };
2803
- let m6 = match self {
2804
- &Inst::VecFloatCmp { .. } => 0,
2805
- &Inst::VecFloatCmpS { .. } => 1,
2806
- _ => unreachable!(),
2807
- };
2808
-
2809
- put(sink, &enc_vrr_c(opcode, rd.to_reg(), rn, rm, m4, 0, m6));
2810
- }
2811
- &Inst::VecInt128SCmpHi { tmp, rn, rm } | &Inst::VecInt128UCmpHi { tmp, rn, rm } => {
2812
- // Synthetic instruction to compare 128-bit values.
2813
- // Sets CC 1 if rn > rm, sets a different CC otherwise.
2814
-
2815
- // Use VECTOR ELEMENT COMPARE to compare the high parts.
2816
- // Swap the inputs to get:
2817
- // CC 1 if high(rn) > high(rm)
2818
- // CC 2 if high(rn) < high(rm)
2819
- // CC 0 if high(rn) == high(rm)
2820
- let (opcode, m3) = match self {
2821
- &Inst::VecInt128SCmpHi { .. } => (0xe7db, 3), // VECG
2822
- &Inst::VecInt128UCmpHi { .. } => (0xe7d9, 3), // VECLG
2823
- _ => unreachable!(),
2824
- };
2825
- put(sink, &enc_vrr_a(opcode, rm, rn, m3, 0, 0));
2826
-
2827
- // If CC != 0, we'd done, so jump over the next instruction.
2828
- let opcode = 0xa74; // BCR
2829
- put(sink, &enc_ri_c(opcode, 7, 4 + 6));
2830
-
2831
- // Otherwise, use VECTOR COMPARE HIGH LOGICAL.
2832
- // Since we already know the high parts are equal, the CC
2833
- // result will only depend on the low parts:
2834
- // CC 1 if low(rn) > low(rm)
2835
- // CC 3 if low(rn) <= low(rm)
2836
- let inst = Inst::VecIntCmpS {
2837
- op: VecIntCmpOp::UCmpHi64x2,
2838
- // N.B.: This is the first write to tmp, and it happens
2839
- // after all uses of rn and rm. If this were to ever
2840
- // change, tmp would have to become an early-def.
2841
- rd: tmp,
2842
- rn,
2843
- rm,
2844
- };
2845
- inst.emit(sink, emit_info, state);
2846
- }
2847
-
2848
- &Inst::VecLoad { rd, ref mem }
2849
- | &Inst::VecLoadRev { rd, ref mem }
2850
- | &Inst::VecLoadByte16Rev { rd, ref mem }
2851
- | &Inst::VecLoadByte32Rev { rd, ref mem }
2852
- | &Inst::VecLoadByte64Rev { rd, ref mem }
2853
- | &Inst::VecLoadElt16Rev { rd, ref mem }
2854
- | &Inst::VecLoadElt32Rev { rd, ref mem }
2855
- | &Inst::VecLoadElt64Rev { rd, ref mem } => {
2856
- let mem = mem.clone();
2857
-
2858
- let (opcode, m3) = match self {
2859
- &Inst::VecLoad { .. } => (0xe706, 0), // VL
2860
- &Inst::VecLoadRev { .. } => (0xe606, 4), // VLBRQ
2861
- &Inst::VecLoadByte16Rev { .. } => (0xe606, 1), // VLBRH
2862
- &Inst::VecLoadByte32Rev { .. } => (0xe606, 2), // VLBRF
2863
- &Inst::VecLoadByte64Rev { .. } => (0xe606, 3), // VLBRG
2864
- &Inst::VecLoadElt16Rev { .. } => (0xe607, 1), // VLERH
2865
- &Inst::VecLoadElt32Rev { .. } => (0xe607, 2), // VLERF
2866
- &Inst::VecLoadElt64Rev { .. } => (0xe607, 3), // VLERG
2867
- _ => unreachable!(),
2868
- };
2869
- mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
2870
- }
2871
- &Inst::VecStore { rd, ref mem }
2872
- | &Inst::VecStoreRev { rd, ref mem }
2873
- | &Inst::VecStoreByte16Rev { rd, ref mem }
2874
- | &Inst::VecStoreByte32Rev { rd, ref mem }
2875
- | &Inst::VecStoreByte64Rev { rd, ref mem }
2876
- | &Inst::VecStoreElt16Rev { rd, ref mem }
2877
- | &Inst::VecStoreElt32Rev { rd, ref mem }
2878
- | &Inst::VecStoreElt64Rev { rd, ref mem } => {
2879
- let mem = mem.clone();
2880
-
2881
- let (opcode, m3) = match self {
2882
- &Inst::VecStore { .. } => (0xe70e, 0), // VST
2883
- &Inst::VecStoreRev { .. } => (0xe60e, 4), // VSTBRQ
2884
- &Inst::VecStoreByte16Rev { .. } => (0xe60e, 1), // VSTBRH
2885
- &Inst::VecStoreByte32Rev { .. } => (0xe60e, 2), // VSTBRF
2886
- &Inst::VecStoreByte64Rev { .. } => (0xe60e, 3), // VSTBRG
2887
- &Inst::VecStoreElt16Rev { .. } => (0xe60f, 1), // VSTERH
2888
- &Inst::VecStoreElt32Rev { .. } => (0xe60f, 2), // VSTERF
2889
- &Inst::VecStoreElt64Rev { .. } => (0xe60f, 3), // VSTERG
2890
- _ => unreachable!(),
2891
- };
2892
- mem_vrx_emit(rd, &mem, opcode, m3, true, sink, emit_info, state);
2893
- }
2894
- &Inst::VecLoadReplicate { size, rd, ref mem }
2895
- | &Inst::VecLoadReplicateRev { size, rd, ref mem } => {
2896
- let mem = mem.clone();
2897
-
2898
- let (opcode, m3) = match (self, size) {
2899
- (&Inst::VecLoadReplicate { .. }, 8) => (0xe705, 0), // VLREPB
2900
- (&Inst::VecLoadReplicate { .. }, 16) => (0xe705, 1), // VLREPH
2901
- (&Inst::VecLoadReplicate { .. }, 32) => (0xe705, 2), // VLREPF
2902
- (&Inst::VecLoadReplicate { .. }, 64) => (0xe705, 3), // VLREPG
2903
- (&Inst::VecLoadReplicateRev { .. }, 16) => (0xe605, 1), // VLREPBRH
2904
- (&Inst::VecLoadReplicateRev { .. }, 32) => (0xe605, 2), // VLREPBRF
2905
- (&Inst::VecLoadReplicateRev { .. }, 64) => (0xe605, 3), // VLREPBRG
2906
- _ => unreachable!(),
2907
- };
2908
- mem_vrx_emit(rd.to_reg(), &mem, opcode, m3, true, sink, emit_info, state);
2909
- }
2910
-
2911
- &Inst::VecMov { rd, rn } => {
2912
- let opcode = 0xe756; // VLR
2913
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rn, 0, 0, 0));
2914
- }
2915
- &Inst::VecCMov { rd, cond, ri, rm } => {
2916
- debug_assert_eq!(rd.to_reg(), ri);
2917
-
2918
- let opcode = 0xa74; // BCR
2919
- put(sink, &enc_ri_c(opcode, cond.invert().bits(), 4 + 6));
2920
- let opcode = 0xe756; // VLR
2921
- put(sink, &enc_vrr_a(opcode, rd.to_reg(), rm, 0, 0, 0));
2922
- }
2923
- &Inst::MovToVec128 { rd, rn, rm } => {
2924
- let opcode = 0xe762; // VLVGP
2925
- put(sink, &enc_vrr_f(opcode, rd.to_reg(), rn, rm));
2926
- }
2927
- &Inst::VecLoadConst { rd, const_data } => {
2928
- let opcode = 0xa75; // BRAS
2929
- let reg = writable_spilltmp_reg().to_reg();
2930
- put(sink, &enc_ri_b(opcode, reg, 20));
2931
- for i in const_data.to_be_bytes().iter() {
2932
- sink.put1(*i);
2933
- }
2934
- let inst = Inst::VecLoad {
2935
- rd,
2936
- mem: MemArg::reg(reg, MemFlags::trusted()),
2937
- };
2938
- inst.emit(sink, emit_info, state);
2939
- }
2940
- &Inst::VecLoadConstReplicate {
2941
- size,
2942
- rd,
2943
- const_data,
2944
- } => {
2945
- let opcode = 0xa75; // BRAS
2946
- let reg = writable_spilltmp_reg().to_reg();
2947
- put(sink, &enc_ri_b(opcode, reg, (4 + size / 8) as i32));
2948
- for i in 0..size / 8 {
2949
- sink.put1((const_data >> (size - 8 - 8 * i)) as u8);
2950
- }
2951
- let inst = Inst::VecLoadReplicate {
2952
- size,
2953
- rd,
2954
- mem: MemArg::reg(reg, MemFlags::trusted()),
2955
- };
2956
- inst.emit(sink, emit_info, state);
2957
- }
2958
- &Inst::VecImmByteMask { rd, mask } => {
2959
- let opcode = 0xe744; // VGBM
2960
- put(sink, &enc_vri_a(opcode, rd.to_reg(), mask, 0));
2961
- }
2962
- &Inst::VecImmBitMask {
2963
- size,
2964
- rd,
2965
- start_bit,
2966
- end_bit,
2967
- } => {
2968
- let (opcode, m4) = match size {
2969
- 8 => (0xe746, 0), // VGMB
2970
- 16 => (0xe746, 1), // VGMH
2971
- 32 => (0xe746, 2), // VGMF
2972
- 64 => (0xe746, 3), // VGMG
2973
- _ => unreachable!(),
2974
- };
2975
- put(
2976
- sink,
2977
- &enc_vri_b(opcode, rd.to_reg(), start_bit, end_bit, m4),
2978
- );
2979
- }
2980
- &Inst::VecImmReplicate { size, rd, imm } => {
2981
- let (opcode, m3) = match size {
2982
- 8 => (0xe745, 0), // VREPIB
2983
- 16 => (0xe745, 1), // VREPIH
2984
- 32 => (0xe745, 2), // VREPIF
2985
- 64 => (0xe745, 3), // VREPIG
2986
- _ => unreachable!(),
2987
- };
2988
- put(sink, &enc_vri_a(opcode, rd.to_reg(), imm as u16, m3));
2989
- }
2990
- &Inst::VecLoadLane {
2991
- size,
2992
- rd,
2993
- ri,
2994
- ref mem,
2995
- lane_imm,
2996
- }
2997
- | &Inst::VecLoadLaneRev {
2998
- size,
2999
- rd,
3000
- ri,
3001
- ref mem,
3002
- lane_imm,
3003
- } => {
3004
- debug_assert_eq!(rd.to_reg(), ri);
3005
- let mem = mem.clone();
3006
-
3007
- let opcode_vrx = match (self, size) {
3008
- (&Inst::VecLoadLane { .. }, 8) => 0xe700, // VLEB
3009
- (&Inst::VecLoadLane { .. }, 16) => 0xe701, // VLEH
3010
- (&Inst::VecLoadLane { .. }, 32) => 0xe703, // VLEF
3011
- (&Inst::VecLoadLane { .. }, 64) => 0xe702, // VLEG
3012
- (&Inst::VecLoadLaneRev { .. }, 16) => 0xe601, // VLEBRH
3013
- (&Inst::VecLoadLaneRev { .. }, 32) => 0xe603, // VLEBRF
3014
- (&Inst::VecLoadLaneRev { .. }, 64) => 0xe602, // VLEBRG
3015
- _ => unreachable!(),
3016
- };
3017
-
3018
- let rd = rd.to_reg();
3019
- mem_vrx_emit(
3020
- rd,
3021
- &mem,
3022
- opcode_vrx,
3023
- lane_imm.into(),
3024
- true,
3025
- sink,
3026
- emit_info,
3027
- state,
3028
- );
3029
- }
3030
- &Inst::VecLoadLaneUndef {
3031
- size,
3032
- rd,
3033
- ref mem,
3034
- lane_imm,
3035
- }
3036
- | &Inst::VecLoadLaneRevUndef {
3037
- size,
3038
- rd,
3039
- ref mem,
3040
- lane_imm,
3041
- } => {
3042
- let mem = mem.clone();
3043
-
3044
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
3045
- (&Inst::VecLoadLaneUndef { .. }, 8) => (0xe700, None, None), // VLEB
3046
- (&Inst::VecLoadLaneUndef { .. }, 16) => (0xe701, None, None), // VLEH
3047
- (&Inst::VecLoadLaneUndef { .. }, 32) => (0xe703, Some(0x78), Some(0xed64)), // VLEF, LE(Y)
3048
- (&Inst::VecLoadLaneUndef { .. }, 64) => (0xe702, Some(0x68), Some(0xed65)), // VLEG, LD(Y)
3049
- (&Inst::VecLoadLaneRevUndef { .. }, 16) => (0xe601, None, None), // VLEBRH
3050
- (&Inst::VecLoadLaneRevUndef { .. }, 32) => (0xe603, None, None), // VLEBRF
3051
- (&Inst::VecLoadLaneRevUndef { .. }, 64) => (0xe602, None, None), // VLEBRG
3052
- _ => unreachable!(),
3053
- };
3054
-
3055
- let rd = rd.to_reg();
3056
- if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
3057
- mem_emit(
3058
- rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
3059
- );
3060
- } else {
3061
- mem_vrx_emit(
3062
- rd,
3063
- &mem,
3064
- opcode_vrx,
3065
- lane_imm.into(),
3066
- true,
3067
- sink,
3068
- emit_info,
3069
- state,
3070
- );
3071
- }
3072
- }
3073
- &Inst::VecStoreLane {
3074
- size,
3075
- rd,
3076
- ref mem,
3077
- lane_imm,
3078
- }
3079
- | &Inst::VecStoreLaneRev {
3080
- size,
3081
- rd,
3082
- ref mem,
3083
- lane_imm,
3084
- } => {
3085
- let mem = mem.clone();
3086
-
3087
- let (opcode_vrx, opcode_rx, opcode_rxy) = match (self, size) {
3088
- (&Inst::VecStoreLane { .. }, 8) => (0xe708, None, None), // VSTEB
3089
- (&Inst::VecStoreLane { .. }, 16) => (0xe709, None, None), // VSTEH
3090
- (&Inst::VecStoreLane { .. }, 32) => (0xe70b, Some(0x70), Some(0xed66)), // VSTEF, STE(Y)
3091
- (&Inst::VecStoreLane { .. }, 64) => (0xe70a, Some(0x60), Some(0xed67)), // VSTEG, STD(Y)
3092
- (&Inst::VecStoreLaneRev { .. }, 16) => (0xe609, None, None), // VSTEBRH
3093
- (&Inst::VecStoreLaneRev { .. }, 32) => (0xe60b, None, None), // VSTEBRF
3094
- (&Inst::VecStoreLaneRev { .. }, 64) => (0xe60a, None, None), // VSTEBRG
3095
- _ => unreachable!(),
3096
- };
3097
-
3098
- if lane_imm == 0 && is_fpr(rd) && opcode_rx.is_some() {
3099
- mem_emit(
3100
- rd, &mem, opcode_rx, opcode_rxy, None, true, sink, emit_info, state,
3101
- );
3102
- } else {
3103
- mem_vrx_emit(
3104
- rd,
3105
- &mem,
3106
- opcode_vrx,
3107
- lane_imm.into(),
3108
- true,
3109
- sink,
3110
- emit_info,
3111
- state,
3112
- );
3113
- }
3114
- }
3115
- &Inst::VecInsertLane {
3116
- size,
3117
- rd,
3118
- ri,
3119
- rn,
3120
- lane_imm,
3121
- lane_reg,
3122
- } => {
3123
- debug_assert_eq!(rd.to_reg(), ri);
3124
-
3125
- let (opcode_vrs, m4) = match size {
3126
- 8 => (0xe722, 0), // VLVGB
3127
- 16 => (0xe722, 1), // VLVGH
3128
- 32 => (0xe722, 2), // VLVGF
3129
- 64 => (0xe722, 3), // VLVGG
3130
- _ => unreachable!(),
3131
- };
3132
- put(
3133
- sink,
3134
- &enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3135
- );
3136
- }
3137
- &Inst::VecInsertLaneUndef {
3138
- size,
3139
- rd,
3140
- rn,
3141
- lane_imm,
3142
- lane_reg,
3143
- } => {
3144
- let (opcode_vrs, m4, opcode_rre) = match size {
3145
- 8 => (0xe722, 0, None), // VLVGB
3146
- 16 => (0xe722, 1, None), // VLVGH
3147
- 32 => (0xe722, 2, None), // VLVGF
3148
- 64 => (0xe722, 3, Some(0xb3c1)), // VLVGG, LDGR
3149
- _ => unreachable!(),
3150
- };
3151
- if opcode_rre.is_some()
3152
- && lane_imm == 0
3153
- && lane_reg == zero_reg()
3154
- && is_fpr(rd.to_reg())
3155
- {
3156
- put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
3157
- } else {
3158
- put(
3159
- sink,
3160
- &enc_vrs_b(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3161
- );
3162
- }
3163
- }
3164
- &Inst::VecExtractLane {
3165
- size,
3166
- rd,
3167
- rn,
3168
- lane_imm,
3169
- lane_reg,
3170
- } => {
3171
- let (opcode_vrs, m4, opcode_rre) = match size {
3172
- 8 => (0xe721, 0, None), // VLGVB
3173
- 16 => (0xe721, 1, None), // VLGVH
3174
- 32 => (0xe721, 2, None), // VLGVF
3175
- 64 => (0xe721, 3, Some(0xb3cd)), // VLGVG, LGDR
3176
- _ => unreachable!(),
3177
- };
3178
- if opcode_rre.is_some() && lane_imm == 0 && lane_reg == zero_reg() && is_fpr(rn) {
3179
- put(sink, &enc_rre(opcode_rre.unwrap(), rd.to_reg(), rn));
3180
- } else {
3181
- put(
3182
- sink,
3183
- &enc_vrs_c(opcode_vrs, rd.to_reg(), lane_reg, lane_imm.into(), rn, m4),
3184
- );
3185
- }
3186
- }
3187
- &Inst::VecInsertLaneImm {
3188
- size,
3189
- rd,
3190
- ri,
3191
- imm,
3192
- lane_imm,
3193
- } => {
3194
- debug_assert_eq!(rd.to_reg(), ri);
3195
-
3196
- let opcode = match size {
3197
- 8 => 0xe740, // VLEIB
3198
- 16 => 0xe741, // LEIVH
3199
- 32 => 0xe743, // VLEIF
3200
- 64 => 0xe742, // VLEIG
3201
- _ => unreachable!(),
3202
- };
3203
- put(
3204
- sink,
3205
- &enc_vri_a(opcode, rd.to_reg(), imm as u16, lane_imm.into()),
3206
- );
3207
- }
3208
- &Inst::VecReplicateLane {
3209
- size,
3210
- rd,
3211
- rn,
3212
- lane_imm,
3213
- } => {
3214
- let (opcode, m4) = match size {
3215
- 8 => (0xe74d, 0), // VREPB
3216
- 16 => (0xe74d, 1), // VREPH
3217
- 32 => (0xe74d, 2), // VREPF
3218
- 64 => (0xe74d, 3), // VREPG
3219
- _ => unreachable!(),
3220
- };
3221
- put(
3222
- sink,
3223
- &enc_vri_c(opcode, rd.to_reg(), lane_imm.into(), rn, m4),
3224
- );
3225
- }
3226
-
3227
- &Inst::Call { link, ref info } => {
3228
- debug_assert_eq!(link.to_reg(), gpr(14));
3229
-
3230
- let opcode = 0xc05; // BRASL
3231
-
3232
- // Add relocation for target function. This has to be done *before*
3233
- // the S390xTlsGdCall relocation if any, to ensure linker relaxation
3234
- // works correctly.
3235
- sink.add_reloc_at_offset(2, Reloc::S390xPLTRel32Dbl, &info.dest, 2);
3236
-
3237
- // Add relocation for TLS libcalls to enable linker optimizations.
3238
- match &info.tls_symbol {
3239
- None => {}
3240
- Some(SymbolReloc::TlsGd { name }) => {
3241
- sink.add_reloc(Reloc::S390xTlsGdCall, name, 0)
3242
- }
3243
- _ => unreachable!(),
3244
- }
3245
-
3246
- if let Some(s) = state.take_stack_map() {
3247
- sink.add_stack_map(StackMapExtent::UpcomingBytes(6), s);
3248
- }
3249
- put(sink, &enc_ril_b(opcode, link.to_reg(), 0));
3250
- if info.opcode.is_call() {
3251
- sink.add_call_site(info.opcode);
3252
- }
3253
- }
3254
- &Inst::CallInd { link, ref info } => {
3255
- debug_assert_eq!(link.to_reg(), gpr(14));
3256
- let rn = info.rn;
3257
-
3258
- let opcode = 0x0d; // BASR
3259
- if let Some(s) = state.take_stack_map() {
3260
- sink.add_stack_map(StackMapExtent::UpcomingBytes(2), s);
3261
- }
3262
- put(sink, &enc_rr(opcode, link.to_reg(), rn));
3263
- if info.opcode.is_call() {
3264
- sink.add_call_site(info.opcode);
3265
- }
3266
- }
3267
- &Inst::Args { .. } => {}
3268
- &Inst::Rets { .. } => {}
3269
- &Inst::Ret { link } => {
3270
- debug_assert_eq!(link, gpr(14));
3271
- let opcode = 0x07; // BCR
3272
- put(sink, &enc_rr(opcode, gpr(15), link));
3273
- }
3274
- &Inst::Jump { dest } => {
3275
- let off = sink.cur_offset();
3276
- // Indicate that the jump uses a label, if so, so that a fixup can occur later.
3277
- sink.use_label_at_offset(off, dest, LabelUse::BranchRIL);
3278
- sink.add_uncond_branch(off, off + 6, dest);
3279
- // Emit the jump itself.
3280
- let opcode = 0xc04; // BCRL
3281
- put(sink, &enc_ril_c(opcode, 15, 0));
3282
- }
3283
- &Inst::IndirectBr { rn, .. } => {
3284
- let opcode = 0x07; // BCR
3285
- put(sink, &enc_rr(opcode, gpr(15), rn));
3286
- }
3287
- &Inst::CondBr {
3288
- taken,
3289
- not_taken,
3290
- cond,
3291
- } => {
3292
- let opcode = 0xc04; // BCRL
3293
-
3294
- // Conditional part first.
3295
- let cond_off = sink.cur_offset();
3296
- sink.use_label_at_offset(cond_off, taken, LabelUse::BranchRIL);
3297
- let inverted = &enc_ril_c(opcode, cond.invert().bits(), 0);
3298
- sink.add_cond_branch(cond_off, cond_off + 6, taken, inverted);
3299
- put(sink, &enc_ril_c(opcode, cond.bits(), 0));
3300
-
3301
- // Unconditional part next.
3302
- let uncond_off = sink.cur_offset();
3303
- sink.use_label_at_offset(uncond_off, not_taken, LabelUse::BranchRIL);
3304
- sink.add_uncond_branch(uncond_off, uncond_off + 6, not_taken);
3305
- put(sink, &enc_ril_c(opcode, 15, 0));
3306
- }
3307
- &Inst::OneWayCondBr { target, cond } => {
3308
- let opcode = 0xc04; // BCRL
3309
- sink.use_label_at_offset(sink.cur_offset(), target, LabelUse::BranchRIL);
3310
- put(sink, &enc_ril_c(opcode, cond.bits(), 0));
3311
- }
3312
- &Inst::Nop0 => {}
3313
- &Inst::Nop2 => {
3314
- put(sink, &enc_e(0x0707));
3315
- }
3316
- &Inst::Debugtrap => {
3317
- put(sink, &enc_e(0x0001));
3318
- }
3319
- &Inst::Trap { trap_code } => {
3320
- if let Some(s) = state.take_stack_map() {
3321
- sink.add_stack_map(StackMapExtent::UpcomingBytes(2), s);
3322
- }
3323
- put_with_trap(sink, &enc_e(0x0000), trap_code);
3324
- }
3325
- &Inst::TrapIf { cond, trap_code } => {
3326
- if let Some(s) = state.take_stack_map() {
3327
- sink.add_stack_map(StackMapExtent::UpcomingBytes(6), s);
3328
- }
3329
- // We implement a TrapIf as a conditional branch into the middle
3330
- // of the branch (BRCL) instruction itself - those middle two bytes
3331
- // are zero, which matches the trap instruction itself.
3332
- let opcode = 0xc04; // BCRL
3333
- let enc = &enc_ril_c(opcode, cond.bits(), 2);
3334
- debug_assert!(enc.len() == 6 && enc[2] == 0 && enc[3] == 0);
3335
- // The trap must be placed on the last byte of the embedded trap
3336
- // instruction, so we need to emit the encoding in two parts.
3337
- put_with_trap(sink, &enc[0..4], trap_code);
3338
- put(sink, &enc[4..6]);
3339
- }
3340
- &Inst::JTSequence { ridx, ref targets } => {
3341
- let table_label = sink.get_label();
3342
-
3343
- // This sequence is *one* instruction in the vcode, and is expanded only here at
3344
- // emission time, because we cannot allow the regalloc to insert spills/reloads in
3345
- // the middle; we depend on hardcoded PC-rel addressing below.
3346
-
3347
- // Set temp register to address of jump table.
3348
- let rtmp = writable_spilltmp_reg();
3349
- let inst = Inst::LoadAddr {
3350
- rd: rtmp,
3351
- mem: MemArg::Label {
3352
- target: table_label,
3353
- },
3354
- };
3355
- inst.emit(sink, emit_info, state);
3356
-
3357
- // Set temp to target address by adding the value of the jump table entry.
3358
- let inst = Inst::AluRX {
3359
- alu_op: ALUOp::Add64Ext32,
3360
- rd: rtmp,
3361
- ri: rtmp.to_reg(),
3362
- mem: MemArg::reg_plus_reg(rtmp.to_reg(), ridx, MemFlags::trusted()),
3363
- };
3364
- inst.emit(sink, emit_info, state);
3365
-
3366
- // Branch to computed address. (`targets` here is only used for successor queries
3367
- // and is not needed for emission.)
3368
- let inst = Inst::IndirectBr {
3369
- rn: rtmp.to_reg(),
3370
- targets: vec![],
3371
- };
3372
- inst.emit(sink, emit_info, state);
3373
-
3374
- // Emit jump table (table of 32-bit offsets).
3375
- sink.bind_label(table_label, &mut state.ctrl_plane);
3376
- let jt_off = sink.cur_offset();
3377
- for &target in targets.iter() {
3378
- let word_off = sink.cur_offset();
3379
- let off_into_table = word_off - jt_off;
3380
- sink.use_label_at_offset(word_off, target, LabelUse::PCRel32);
3381
- sink.put4(off_into_table.swap_bytes());
3382
- }
3383
-
3384
- // Lowering produces an EmitIsland before using a JTSequence, so we can safely
3385
- // disable the worst-case-size check in this case.
3386
- start_off = sink.cur_offset();
3387
- }
3388
-
3389
- &Inst::Unwind { ref inst } => {
3390
- sink.add_unwind(inst.clone());
3391
- }
3392
-
3393
- &Inst::DummyUse { .. } => {}
3394
- }
3395
-
3396
- let end_off = sink.cur_offset();
3397
- debug_assert!((end_off - start_off) <= Inst::worst_case_size());
3398
-
3399
- state.clear_post_insn();
3400
- }
3401
- }