wasmtime 12.0.1 → 13.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2318) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +176 -221
  3. data/ext/Cargo.toml +6 -6
  4. data/ext/cargo-vendor/cap-net-ext-2.0.0/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/cap-net-ext-2.0.0/COPYRIGHT +29 -0
  6. data/ext/cargo-vendor/cap-net-ext-2.0.0/Cargo.toml +38 -0
  7. data/ext/cargo-vendor/cap-net-ext-2.0.0/README.md +24 -0
  8. data/ext/cargo-vendor/cap-net-ext-2.0.0/src/lib.rs +771 -0
  9. data/ext/cargo-vendor/cranelift-bforest-0.100.0/.cargo-checksum.json +1 -0
  10. data/ext/cargo-vendor/cranelift-bforest-0.100.0/Cargo.toml +31 -0
  11. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/lib.rs +184 -0
  12. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/map.rs +922 -0
  13. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/pool.rs +219 -0
  14. data/ext/cargo-vendor/cranelift-bforest-0.100.0/src/set.rs +597 -0
  15. data/ext/cargo-vendor/cranelift-codegen-0.100.0/.cargo-checksum.json +1 -0
  16. data/ext/cargo-vendor/cranelift-codegen-0.100.0/Cargo.toml +164 -0
  17. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/binemit/mod.rs +141 -0
  18. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/binemit/stack_map.rs +155 -0
  19. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/bitset.rs +166 -0
  20. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/context.rs +372 -0
  21. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/incremental_cache.rs +256 -0
  22. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/atomic_rmw_op.rs +104 -0
  23. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/condcodes.rs +404 -0
  24. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/constant.rs +463 -0
  25. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/dfg.rs +1686 -0
  26. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/dynamic_type.rs +55 -0
  27. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/entities.rs +567 -0
  28. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/extfunc.rs +411 -0
  29. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/extname.rs +333 -0
  30. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/function.rs +475 -0
  31. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/globalvalue.rs +155 -0
  32. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/immediates.rs +1615 -0
  33. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/instructions.rs +1000 -0
  34. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/jumptable.rs +168 -0
  35. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/known_symbol.rs +47 -0
  36. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/libcall.rs +232 -0
  37. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/memflags.rs +279 -0
  38. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/mod.rs +106 -0
  39. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/sourceloc.rs +117 -0
  40. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/stackslot.rs +216 -0
  41. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/table.rs +40 -0
  42. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/trapcode.rs +144 -0
  43. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/ir/types.rs +630 -0
  44. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/abi.rs +1573 -0
  45. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/args.rs +747 -0
  46. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/emit.rs +3911 -0
  47. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/emit_tests.rs +7951 -0
  48. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst/mod.rs +3049 -0
  49. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/inst.isle +4173 -0
  50. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower/isle.rs +871 -0
  51. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower.isle +2889 -0
  52. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower.rs +132 -0
  53. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/aarch64/lower_dynamic_neon.isle +98 -0
  54. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/call_conv.rs +119 -0
  55. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/abi.rs +981 -0
  56. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/args.rs +1900 -0
  57. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/emit.rs +3203 -0
  58. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/encode.rs +326 -0
  59. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/imms.rs +236 -0
  60. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/mod.rs +2162 -0
  61. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst/vector.rs +1059 -0
  62. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst.isle +3092 -0
  63. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/inst_vector.isle +1887 -0
  64. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/lower/isle.rs +620 -0
  65. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/riscv64/lower.isle +2119 -0
  66. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/abi.rs +949 -0
  67. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/inst/mod.rs +3430 -0
  68. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/inst.isle +5043 -0
  69. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/s390x/lower.isle +3982 -0
  70. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind/systemv.rs +272 -0
  71. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind/winx64.rs +334 -0
  72. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/unwind.rs +182 -0
  73. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/abi.rs +1200 -0
  74. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/encoding/evex.rs +749 -0
  75. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/encoding/rex.rs +589 -0
  76. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/args.rs +2188 -0
  77. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/emit.rs +4300 -0
  78. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/emit_tests.rs +5474 -0
  79. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst/mod.rs +2763 -0
  80. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/inst.isle +5110 -0
  81. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower/isle.rs +1096 -0
  82. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower.isle +4675 -0
  83. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isa/x64/lower.rs +340 -0
  84. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/isle_prelude.rs +899 -0
  85. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/legalizer/mod.rs +356 -0
  86. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/lib.rs +107 -0
  87. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/abi.rs +2644 -0
  88. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/buffer.rs +2362 -0
  89. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/isle.rs +846 -0
  90. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/mod.rs +553 -0
  91. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/reg.rs +556 -0
  92. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/machinst/vcode.rs +1646 -0
  93. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/bitops.isle +147 -0
  94. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/cprop.isle +200 -0
  95. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/extends.isle +34 -0
  96. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/icmp.isle +177 -0
  97. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/selects.isle +59 -0
  98. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/opts/vector.isle +88 -0
  99. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/prelude.isle +603 -0
  100. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/prelude_lower.isle +1029 -0
  101. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/value_label.rs +32 -0
  102. data/ext/cargo-vendor/cranelift-codegen-0.100.0/src/verifier/mod.rs +1986 -0
  103. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/.cargo-checksum.json +1 -0
  104. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/Cargo.toml +26 -0
  105. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/constant_hash.rs +63 -0
  106. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/gen_inst.rs +1784 -0
  107. data/ext/cargo-vendor/cranelift-codegen-meta-0.100.0/src/shared/instructions.rs +3810 -0
  108. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/.cargo-checksum.json +1 -0
  109. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/Cargo.toml +22 -0
  110. data/ext/cargo-vendor/cranelift-codegen-shared-0.100.0/src/lib.rs +12 -0
  111. data/ext/cargo-vendor/cranelift-control-0.100.0/.cargo-checksum.json +1 -0
  112. data/ext/cargo-vendor/cranelift-control-0.100.0/Cargo.toml +30 -0
  113. data/ext/cargo-vendor/cranelift-entity-0.100.0/.cargo-checksum.json +1 -0
  114. data/ext/cargo-vendor/cranelift-entity-0.100.0/Cargo.toml +41 -0
  115. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/lib.rs +316 -0
  116. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/list.rs +955 -0
  117. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/packed_option.rs +171 -0
  118. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/primary.rs +456 -0
  119. data/ext/cargo-vendor/cranelift-entity-0.100.0/src/sparse.rs +368 -0
  120. data/ext/cargo-vendor/cranelift-frontend-0.100.0/.cargo-checksum.json +1 -0
  121. data/ext/cargo-vendor/cranelift-frontend-0.100.0/Cargo.toml +54 -0
  122. data/ext/cargo-vendor/cranelift-frontend-0.100.0/src/lib.rs +191 -0
  123. data/ext/cargo-vendor/cranelift-isle-0.100.0/.cargo-checksum.json +1 -0
  124. data/ext/cargo-vendor/cranelift-isle-0.100.0/Cargo.toml +37 -0
  125. data/ext/cargo-vendor/cranelift-native-0.100.0/.cargo-checksum.json +1 -0
  126. data/ext/cargo-vendor/cranelift-native-0.100.0/Cargo.toml +38 -0
  127. data/ext/cargo-vendor/cranelift-native-0.100.0/src/lib.rs +190 -0
  128. data/ext/cargo-vendor/cranelift-wasm-0.100.0/.cargo-checksum.json +1 -0
  129. data/ext/cargo-vendor/cranelift-wasm-0.100.0/Cargo.toml +92 -0
  130. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/code_translator.rs +3641 -0
  131. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/environ/dummy.rs +942 -0
  132. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/environ/spec.rs +949 -0
  133. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/func_translator.rs +432 -0
  134. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/heap.rs +108 -0
  135. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/lib.rs +64 -0
  136. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/sections_translator.rs +408 -0
  137. data/ext/cargo-vendor/cranelift-wasm-0.100.0/src/translation_utils.rs +97 -0
  138. data/ext/cargo-vendor/fallible-iterator-0.3.0/.cargo-checksum.json +1 -0
  139. data/ext/cargo-vendor/fallible-iterator-0.3.0/CHANGELOG.md +39 -0
  140. data/ext/cargo-vendor/fallible-iterator-0.3.0/Cargo.toml +29 -0
  141. data/ext/cargo-vendor/fallible-iterator-0.3.0/README.md +16 -0
  142. data/ext/cargo-vendor/fallible-iterator-0.3.0/src/lib.rs +2808 -0
  143. data/ext/cargo-vendor/fallible-iterator-0.3.0/src/test.rs +477 -0
  144. data/ext/cargo-vendor/serde-1.0.188/.cargo-checksum.json +1 -0
  145. data/ext/cargo-vendor/serde-1.0.188/Cargo.toml +69 -0
  146. data/ext/cargo-vendor/serde-1.0.188/build.rs +90 -0
  147. data/ext/cargo-vendor/serde-1.0.188/src/de/ignored_any.rs +238 -0
  148. data/ext/cargo-vendor/serde-1.0.188/src/de/impls.rs +2966 -0
  149. data/ext/cargo-vendor/serde-1.0.188/src/de/mod.rs +2290 -0
  150. data/ext/cargo-vendor/serde-1.0.188/src/de/value.rs +1708 -0
  151. data/ext/cargo-vendor/serde-1.0.188/src/integer128.rs +9 -0
  152. data/ext/cargo-vendor/serde-1.0.188/src/lib.rs +327 -0
  153. data/ext/cargo-vendor/serde-1.0.188/src/macros.rs +231 -0
  154. data/ext/cargo-vendor/serde-1.0.188/src/ser/fmt.rs +170 -0
  155. data/ext/cargo-vendor/serde-1.0.188/src/ser/impls.rs +998 -0
  156. data/ext/cargo-vendor/serde-1.0.188/src/ser/mod.rs +1952 -0
  157. data/ext/cargo-vendor/serde_derive-1.0.188/.cargo-checksum.json +1 -0
  158. data/ext/cargo-vendor/serde_derive-1.0.188/Cargo.toml +59 -0
  159. data/ext/cargo-vendor/serde_derive-1.0.188/src/lib.rs +102 -0
  160. data/ext/cargo-vendor/serde_derive-1.0.188/src/ser.rs +1359 -0
  161. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/.cargo-checksum.json +1 -0
  162. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/Cargo.toml +96 -0
  163. data/ext/cargo-vendor/wasi-cap-std-sync-13.0.0/src/lib.rs +161 -0
  164. data/ext/cargo-vendor/wasi-common-13.0.0/.cargo-checksum.json +1 -0
  165. data/ext/cargo-vendor/wasi-common-13.0.0/Cargo.toml +87 -0
  166. data/ext/cargo-vendor/wasm-encoder-0.32.0/.cargo-checksum.json +1 -0
  167. data/ext/cargo-vendor/wasm-encoder-0.32.0/Cargo.toml +33 -0
  168. data/ext/cargo-vendor/wasm-encoder-0.32.0/src/component/types.rs +769 -0
  169. data/ext/cargo-vendor/wasm-encoder-0.33.1/.cargo-checksum.json +1 -0
  170. data/ext/cargo-vendor/wasm-encoder-0.33.1/Cargo.toml +33 -0
  171. data/ext/cargo-vendor/wasm-encoder-0.33.1/README.md +80 -0
  172. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/aliases.rs +160 -0
  173. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/builder.rs +449 -0
  174. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/canonicals.rs +159 -0
  175. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/components.rs +29 -0
  176. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/exports.rs +127 -0
  177. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/imports.rs +200 -0
  178. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/instances.rs +200 -0
  179. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/modules.rs +29 -0
  180. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/names.rs +149 -0
  181. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/start.rs +52 -0
  182. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component/types.rs +769 -0
  183. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/component.rs +168 -0
  184. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/code.rs +2913 -0
  185. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/custom.rs +73 -0
  186. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/data.rs +185 -0
  187. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/dump.rs +627 -0
  188. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/elements.rs +220 -0
  189. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/exports.rs +85 -0
  190. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/functions.rs +63 -0
  191. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/globals.rs +90 -0
  192. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/imports.rs +142 -0
  193. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/linking.rs +263 -0
  194. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/memories.rs +99 -0
  195. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/names.rs +265 -0
  196. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/producers.rs +180 -0
  197. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/start.rs +39 -0
  198. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/tables.rs +104 -0
  199. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/tags.rs +85 -0
  200. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core/types.rs +372 -0
  201. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/core.rs +168 -0
  202. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/lib.rs +215 -0
  203. data/ext/cargo-vendor/wasm-encoder-0.33.1/src/raw.rs +30 -0
  204. data/ext/cargo-vendor/wasmparser-0.112.0/.cargo-checksum.json +1 -0
  205. data/ext/cargo-vendor/wasmparser-0.112.0/Cargo.lock +644 -0
  206. data/ext/cargo-vendor/wasmparser-0.112.0/Cargo.toml +54 -0
  207. data/ext/cargo-vendor/wasmparser-0.112.0/src/limits.rs +58 -0
  208. data/ext/cargo-vendor/wasmparser-0.112.0/src/readers/component/types.rs +542 -0
  209. data/ext/cargo-vendor/wasmparser-0.112.0/src/readers/core/types.rs +1303 -0
  210. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/component.rs +3120 -0
  211. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/core.rs +1352 -0
  212. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator/types.rs +3239 -0
  213. data/ext/cargo-vendor/wasmparser-0.112.0/src/validator.rs +1569 -0
  214. data/ext/cargo-vendor/wasmparser-0.113.1/.cargo-checksum.json +1 -0
  215. data/ext/cargo-vendor/wasmparser-0.113.1/Cargo.lock +644 -0
  216. data/ext/cargo-vendor/wasmparser-0.113.1/Cargo.toml +54 -0
  217. data/ext/cargo-vendor/wasmparser-0.113.1/src/binary_reader.rs +1706 -0
  218. data/ext/cargo-vendor/wasmparser-0.113.1/src/lib.rs +726 -0
  219. data/ext/cargo-vendor/wasmparser-0.113.1/src/limits.rs +58 -0
  220. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/component/types.rs +542 -0
  221. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core/dylink0.rs +132 -0
  222. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core/types.rs +1303 -0
  223. data/ext/cargo-vendor/wasmparser-0.113.1/src/readers/core.rs +37 -0
  224. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/component.rs +3120 -0
  225. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/core.rs +1352 -0
  226. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/operators.rs +3466 -0
  227. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator/types.rs +3239 -0
  228. data/ext/cargo-vendor/wasmparser-0.113.1/src/validator.rs +1595 -0
  229. data/ext/cargo-vendor/wasmprinter-0.2.66/.cargo-checksum.json +1 -0
  230. data/ext/cargo-vendor/wasmprinter-0.2.66/Cargo.toml +39 -0
  231. data/ext/cargo-vendor/wasmprinter-0.2.66/src/lib.rs +2965 -0
  232. data/ext/cargo-vendor/wasmprinter-0.2.66/src/operator.rs +873 -0
  233. data/ext/cargo-vendor/wasmtime-13.0.0/.cargo-checksum.json +1 -0
  234. data/ext/cargo-vendor/wasmtime-13.0.0/Cargo.toml +191 -0
  235. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/component.rs +474 -0
  236. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/func/typed.rs +2297 -0
  237. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/instance.rs +793 -0
  238. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/linker.rs +483 -0
  239. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/mod.rs +344 -0
  240. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/types.rs +523 -0
  241. data/ext/cargo-vendor/wasmtime-13.0.0/src/component/values.rs +1272 -0
  242. data/ext/cargo-vendor/wasmtime-13.0.0/src/config.rs +2313 -0
  243. data/ext/cargo-vendor/wasmtime-13.0.0/src/engine/serialization.rs +657 -0
  244. data/ext/cargo-vendor/wasmtime-13.0.0/src/engine.rs +790 -0
  245. data/ext/cargo-vendor/wasmtime-13.0.0/src/instance.rs +884 -0
  246. data/ext/cargo-vendor/wasmtime-13.0.0/src/limits.rs +398 -0
  247. data/ext/cargo-vendor/wasmtime-13.0.0/src/module.rs +1349 -0
  248. data/ext/cargo-vendor/wasmtime-13.0.0/src/store.rs +2246 -0
  249. data/ext/cargo-vendor/wasmtime-13.0.0/src/trampoline/memory.rs +255 -0
  250. data/ext/cargo-vendor/wasmtime-13.0.0/src/trampoline.rs +76 -0
  251. data/ext/cargo-vendor/wasmtime-asm-macros-13.0.0/.cargo-checksum.json +1 -0
  252. data/ext/cargo-vendor/wasmtime-asm-macros-13.0.0/Cargo.toml +22 -0
  253. data/ext/cargo-vendor/wasmtime-cache-13.0.0/.cargo-checksum.json +1 -0
  254. data/ext/cargo-vendor/wasmtime-cache-13.0.0/Cargo.toml +72 -0
  255. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/config.rs +584 -0
  256. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/worker/tests.rs +758 -0
  257. data/ext/cargo-vendor/wasmtime-cache-13.0.0/src/worker.rs +894 -0
  258. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/.cargo-checksum.json +1 -0
  259. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/Cargo.toml +58 -0
  260. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/src/bindgen.rs +387 -0
  261. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/src/component.rs +1295 -0
  262. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/tests/codegen/resources-import.wit +87 -0
  263. data/ext/cargo-vendor/wasmtime-component-macro-13.0.0/tests/codegen/variants.wit +136 -0
  264. data/ext/cargo-vendor/wasmtime-component-util-13.0.0/.cargo-checksum.json +1 -0
  265. data/ext/cargo-vendor/wasmtime-component-util-13.0.0/Cargo.toml +25 -0
  266. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/.cargo-checksum.json +1 -0
  267. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/Cargo.toml +97 -0
  268. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/builder.rs +123 -0
  269. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/compiler.rs +1301 -0
  270. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/debug/transform/attr.rs +340 -0
  271. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/debug.rs +18 -0
  272. data/ext/cargo-vendor/wasmtime-cranelift-13.0.0/src/func_environ.rs +2589 -0
  273. data/ext/cargo-vendor/wasmtime-cranelift-shared-13.0.0/.cargo-checksum.json +1 -0
  274. data/ext/cargo-vendor/wasmtime-cranelift-shared-13.0.0/Cargo.toml +57 -0
  275. data/ext/cargo-vendor/wasmtime-environ-13.0.0/.cargo-checksum.json +1 -0
  276. data/ext/cargo-vendor/wasmtime-environ-13.0.0/Cargo.lock +711 -0
  277. data/ext/cargo-vendor/wasmtime-environ-13.0.0/Cargo.toml +118 -0
  278. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/address_map.rs +192 -0
  279. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/builtin.rs +143 -0
  280. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/compilation.rs +403 -0
  281. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/compiler.rs +47 -0
  282. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/info.rs +583 -0
  283. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/component/types.rs +1866 -0
  284. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/fact/trampoline.rs +3229 -0
  285. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/fact/transcode.rs +168 -0
  286. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/lib.rs +59 -0
  287. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module.rs +1083 -0
  288. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module_environ.rs +876 -0
  289. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/module_types.rs +78 -0
  290. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/stack_map.rs +36 -0
  291. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/tunables.rs +115 -0
  292. data/ext/cargo-vendor/wasmtime-environ-13.0.0/src/vmoffsets.rs +919 -0
  293. data/ext/cargo-vendor/wasmtime-fiber-13.0.0/.cargo-checksum.json +1 -0
  294. data/ext/cargo-vendor/wasmtime-fiber-13.0.0/Cargo.toml +51 -0
  295. data/ext/cargo-vendor/wasmtime-jit-13.0.0/.cargo-checksum.json +1 -0
  296. data/ext/cargo-vendor/wasmtime-jit-13.0.0/Cargo.toml +106 -0
  297. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/instantiate.rs +760 -0
  298. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/lib.rs +21 -0
  299. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/miri.rs +15 -0
  300. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/systemv.rs +90 -0
  301. data/ext/cargo-vendor/wasmtime-jit-13.0.0/src/unwind/winx64.rs +44 -0
  302. data/ext/cargo-vendor/wasmtime-jit-debug-13.0.0/.cargo-checksum.json +1 -0
  303. data/ext/cargo-vendor/wasmtime-jit-debug-13.0.0/Cargo.toml +58 -0
  304. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-13.0.0/.cargo-checksum.json +1 -0
  305. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-13.0.0/Cargo.toml +37 -0
  306. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/.cargo-checksum.json +1 -0
  307. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/Cargo.toml +122 -0
  308. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/on_demand.rs +154 -0
  309. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/index_allocator.rs +684 -0
  310. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/memory_pool.rs +460 -0
  311. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/stack_pool.rs +242 -0
  312. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling/table_pool.rs +221 -0
  313. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator/pooling.rs +633 -0
  314. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance/allocator.rs +686 -0
  315. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/instance.rs +1382 -0
  316. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/lib.rs +276 -0
  317. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/libcalls.rs +775 -0
  318. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/memory.rs +958 -0
  319. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/parking_spot.rs +520 -0
  320. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/table.rs +598 -0
  321. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/trampolines/s390x.S +70 -0
  322. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/traphandlers/macos.rs +486 -0
  323. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/traphandlers.rs +815 -0
  324. data/ext/cargo-vendor/wasmtime-runtime-13.0.0/src/vmcontext.rs +1197 -0
  325. data/ext/cargo-vendor/wasmtime-types-13.0.0/.cargo-checksum.json +1 -0
  326. data/ext/cargo-vendor/wasmtime-types-13.0.0/Cargo.toml +36 -0
  327. data/ext/cargo-vendor/wasmtime-types-13.0.0/src/lib.rs +504 -0
  328. data/ext/cargo-vendor/wasmtime-versioned-export-macros-13.0.0/.cargo-checksum.json +1 -0
  329. data/ext/cargo-vendor/wasmtime-versioned-export-macros-13.0.0/Cargo.toml +32 -0
  330. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/.cargo-checksum.json +1 -0
  331. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/Cargo.toml +232 -0
  332. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/lib.rs +135 -0
  333. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/command.rs +121 -0
  334. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/ctx.rs +351 -0
  335. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/filesystem.rs +277 -0
  336. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/clocks.rs +107 -0
  337. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/env.rs +15 -0
  338. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/exit.rs +11 -0
  339. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/filesystem/sync.rs +645 -0
  340. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/filesystem.rs +1167 -0
  341. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/instance_network.rs +11 -0
  342. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/io.rs +553 -0
  343. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/mod.rs +10 -0
  344. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/network.rs +186 -0
  345. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/tcp.rs +511 -0
  346. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/host/tcp_create_socket.rs +18 -0
  347. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/mod.rs +233 -0
  348. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/network.rs +32 -0
  349. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/pipe.rs +1067 -0
  350. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/preview1.rs +2078 -0
  351. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio/unix.rs +160 -0
  352. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio/worker_thread_stdin.rs +140 -0
  353. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stdio.rs +354 -0
  354. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/stream.rs +347 -0
  355. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/table.rs +293 -0
  356. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/src/preview2/tcp.rs +280 -0
  357. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/command-extended.wit +39 -0
  358. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/command.wit +33 -0
  359. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/environment.wit +18 -0
  360. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/exit.wit +4 -0
  361. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/run.wit +4 -0
  362. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/cli/terminal.wit +59 -0
  363. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/preopens.wit +6 -0
  364. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/types.wit +824 -0
  365. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/filesystem/world.wit +6 -0
  366. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/http/proxy.wit +34 -0
  367. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/http/types.wit +155 -0
  368. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/io/streams.wit +300 -0
  369. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/logging/logging.wit +37 -0
  370. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/ip-name-lookup.wit +69 -0
  371. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/network.wit +187 -0
  372. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/tcp-create-socket.wit +27 -0
  373. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/tcp.wit +268 -0
  374. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/udp-create-socket.wit +27 -0
  375. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/deps/sockets/udp.wit +220 -0
  376. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/main.wit +33 -0
  377. data/ext/cargo-vendor/wasmtime-wasi-13.0.0/wit/test.wit +41 -0
  378. data/ext/cargo-vendor/wasmtime-winch-13.0.0/.cargo-checksum.json +1 -0
  379. data/ext/cargo-vendor/wasmtime-winch-13.0.0/Cargo.toml +63 -0
  380. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/.cargo-checksum.json +1 -0
  381. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/Cargo.toml +32 -0
  382. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/lib.rs +1953 -0
  383. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/rust.rs +490 -0
  384. data/ext/cargo-vendor/wasmtime-wit-bindgen-13.0.0/src/types.rs +194 -0
  385. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/.cargo-checksum.json +1 -0
  386. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/Cargo.toml +22 -0
  387. data/ext/cargo-vendor/wasmtime-wmemcheck-13.0.0/src/lib.rs +404 -0
  388. data/ext/cargo-vendor/wast-65.0.1/.cargo-checksum.json +1 -0
  389. data/ext/cargo-vendor/wast-65.0.1/Cargo.toml +50 -0
  390. data/ext/cargo-vendor/wast-65.0.1/src/component/binary.rs +1021 -0
  391. data/ext/cargo-vendor/wast-65.0.1/src/component/expand.rs +875 -0
  392. data/ext/cargo-vendor/wast-65.0.1/src/component/resolve.rs +1005 -0
  393. data/ext/cargo-vendor/wast-65.0.1/src/component/types.rs +991 -0
  394. data/ext/cargo-vendor/wast-65.0.1/src/component/wast.rs +160 -0
  395. data/ext/cargo-vendor/wast-65.0.1/src/core/binary.rs +1241 -0
  396. data/ext/cargo-vendor/wast-65.0.1/src/core/expr.rs +2021 -0
  397. data/ext/cargo-vendor/wast-65.0.1/src/core/table.rs +288 -0
  398. data/ext/cargo-vendor/wast-65.0.1/src/core/types.rs +847 -0
  399. data/ext/cargo-vendor/wast-65.0.1/src/core/wast.rs +256 -0
  400. data/ext/cargo-vendor/wast-65.0.1/src/lib.rs +536 -0
  401. data/ext/cargo-vendor/wat-1.0.73/.cargo-checksum.json +1 -0
  402. data/ext/cargo-vendor/wat-1.0.73/Cargo.toml +27 -0
  403. data/ext/cargo-vendor/wiggle-13.0.0/.cargo-checksum.json +1 -0
  404. data/ext/cargo-vendor/wiggle-13.0.0/Cargo.toml +106 -0
  405. data/ext/cargo-vendor/wiggle-13.0.0/src/lib.rs +1198 -0
  406. data/ext/cargo-vendor/wiggle-generate-13.0.0/.cargo-checksum.json +1 -0
  407. data/ext/cargo-vendor/wiggle-generate-13.0.0/Cargo.toml +58 -0
  408. data/ext/cargo-vendor/wiggle-generate-13.0.0/LICENSE +220 -0
  409. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/config.rs +663 -0
  410. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/types/record.rs +132 -0
  411. data/ext/cargo-vendor/wiggle-generate-13.0.0/src/wasmtime.rs +170 -0
  412. data/ext/cargo-vendor/wiggle-macro-13.0.0/.cargo-checksum.json +1 -0
  413. data/ext/cargo-vendor/wiggle-macro-13.0.0/Cargo.toml +55 -0
  414. data/ext/cargo-vendor/wiggle-macro-13.0.0/LICENSE +220 -0
  415. data/ext/cargo-vendor/winch-codegen-0.11.0/.cargo-checksum.json +1 -0
  416. data/ext/cargo-vendor/winch-codegen-0.11.0/Cargo.toml +62 -0
  417. data/ext/cargo-vendor/winch-codegen-0.11.0/src/abi/mod.rs +269 -0
  418. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/call.rs +219 -0
  419. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/context.rs +423 -0
  420. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/control.rs +456 -0
  421. data/ext/cargo-vendor/winch-codegen-0.11.0/src/codegen/mod.rs +337 -0
  422. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/abi.rs +260 -0
  423. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/address.rs +144 -0
  424. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/asm.rs +250 -0
  425. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/masm.rs +357 -0
  426. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/aarch64/regs.rs +177 -0
  427. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/reg.rs +73 -0
  428. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/abi.rs +390 -0
  429. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/address.rs +34 -0
  430. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/asm.rs +847 -0
  431. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/masm.rs +659 -0
  432. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/mod.rs +148 -0
  433. data/ext/cargo-vendor/winch-codegen-0.11.0/src/isa/x64/regs.rs +233 -0
  434. data/ext/cargo-vendor/winch-codegen-0.11.0/src/masm.rs +465 -0
  435. data/ext/cargo-vendor/winch-codegen-0.11.0/src/regalloc.rs +73 -0
  436. data/ext/cargo-vendor/winch-codegen-0.11.0/src/regset.rs +118 -0
  437. data/ext/cargo-vendor/winch-codegen-0.11.0/src/stack.rs +338 -0
  438. data/ext/cargo-vendor/winch-codegen-0.11.0/src/trampoline.rs +489 -0
  439. data/ext/cargo-vendor/winch-codegen-0.11.0/src/visitor.rs +736 -0
  440. data/ext/cargo-vendor/wit-parser-0.11.1/.cargo-checksum.json +1 -0
  441. data/ext/cargo-vendor/wit-parser-0.11.1/Cargo.toml +70 -0
  442. data/ext/cargo-vendor/wit-parser-0.11.1/src/abi.rs +241 -0
  443. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast/lex.rs +714 -0
  444. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast/resolve.rs +1418 -0
  445. data/ext/cargo-vendor/wit-parser-0.11.1/src/ast.rs +1361 -0
  446. data/ext/cargo-vendor/wit-parser-0.11.1/src/lib.rs +711 -0
  447. data/ext/cargo-vendor/wit-parser-0.11.1/src/live.rs +111 -0
  448. data/ext/cargo-vendor/wit-parser-0.11.1/src/resolve.rs +1757 -0
  449. data/ext/cargo-vendor/wit-parser-0.11.1/src/serde_.rs +108 -0
  450. data/ext/cargo-vendor/wit-parser-0.11.1/src/sizealign.rs +144 -0
  451. data/ext/cargo-vendor/wit-parser-0.11.1/tests/all.rs +190 -0
  452. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/comments.wit.json +46 -0
  453. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/complex-include.wit.json +168 -0
  454. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/cross-package-resource.wit.json +67 -0
  455. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/diamond1.wit.json +55 -0
  456. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/disambiguate-diamond.wit.json +107 -0
  457. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/embedded.wit.md.json +40 -0
  458. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/empty.wit.json +12 -0
  459. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/foreign-deps-union.wit.json +380 -0
  460. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/foreign-deps.wit.json +344 -0
  461. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/functions.wit.json +166 -0
  462. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/ignore-files-deps.wit.json +39 -0
  463. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/include-reps.wit.json +60 -0
  464. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/kebab-name-include-with.wit.json +70 -0
  465. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/many-names.wit.json +40 -0
  466. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/multi-file.wit.json +298 -0
  467. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/name-both-resource-and-type.wit.json +89 -0
  468. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax1.wit.json +12 -0
  469. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax3.wit.json +12 -0
  470. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/package-syntax4.wit.json +12 -0
  471. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs/a.wit +2 -0
  472. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs/b.wit +2 -0
  473. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/parse-fail/multiple-package-docs.wit.result +8 -0
  474. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/random.wit +27 -0
  475. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/random.wit.json +64 -0
  476. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-empty.wit.json +72 -0
  477. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple-returns-borrow.wit.json +74 -0
  478. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple-returns-own.wit.json +83 -0
  479. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-multiple.wit.json +281 -0
  480. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-return-borrow.wit.json +69 -0
  481. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources-return-own.wit.json +78 -0
  482. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources.wit.json +340 -0
  483. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/resources1.wit.json +96 -0
  484. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/shared-types.wit.json +83 -0
  485. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/stress-export-elaborate.wit.json +1136 -0
  486. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/type-then-eof.wit.json +32 -0
  487. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/types.wit +58 -0
  488. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/types.wit.json +751 -0
  489. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/union-fuzz-1.wit.json +35 -0
  490. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/use-chain.wit.json +53 -0
  491. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/use.wit.json +172 -0
  492. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/versions.wit.json +91 -0
  493. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/wasi.wit.json +296 -0
  494. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-diamond.wit +23 -0
  495. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-diamond.wit.json +118 -0
  496. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-iface-no-collide.wit.json +66 -0
  497. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import1.wit.json +75 -0
  498. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import2.wit.json +70 -0
  499. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-implicit-import3.wit.json +71 -0
  500. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-same-fields4.wit.json +76 -0
  501. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-top-level-funcs.wit.json +86 -0
  502. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/world-top-level-resources.wit.json +240 -0
  503. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/worlds-union-dedup.wit.json +100 -0
  504. data/ext/cargo-vendor/wit-parser-0.11.1/tests/ui/worlds-with-types.wit.json +202 -0
  505. data/ext/src/ruby_api/wasi_ctx_builder.rs +8 -8
  506. data/lib/wasmtime/version.rb +1 -1
  507. metadata +1627 -1813
  508. data/ext/cargo-vendor/addr2line-0.20.0/.cargo-checksum.json +0 -1
  509. data/ext/cargo-vendor/addr2line-0.20.0/CHANGELOG.md +0 -321
  510. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.lock +0 -548
  511. data/ext/cargo-vendor/addr2line-0.20.0/Cargo.toml +0 -145
  512. data/ext/cargo-vendor/addr2line-0.20.0/LICENSE-MIT +0 -25
  513. data/ext/cargo-vendor/addr2line-0.20.0/README.md +0 -48
  514. data/ext/cargo-vendor/addr2line-0.20.0/bench.plot.r +0 -23
  515. data/ext/cargo-vendor/addr2line-0.20.0/benchmark.sh +0 -112
  516. data/ext/cargo-vendor/addr2line-0.20.0/coverage.sh +0 -5
  517. data/ext/cargo-vendor/addr2line-0.20.0/examples/addr2line.rs +0 -306
  518. data/ext/cargo-vendor/addr2line-0.20.0/rustfmt.toml +0 -1
  519. data/ext/cargo-vendor/addr2line-0.20.0/src/builtin_split_dwarf_loader.rs +0 -164
  520. data/ext/cargo-vendor/addr2line-0.20.0/src/function.rs +0 -555
  521. data/ext/cargo-vendor/addr2line-0.20.0/src/lazy.rs +0 -31
  522. data/ext/cargo-vendor/addr2line-0.20.0/src/lib.rs +0 -1729
  523. data/ext/cargo-vendor/addr2line-0.20.0/tests/correctness.rs +0 -126
  524. data/ext/cargo-vendor/addr2line-0.20.0/tests/output_equivalence.rs +0 -135
  525. data/ext/cargo-vendor/addr2line-0.20.0/tests/parse.rs +0 -114
  526. data/ext/cargo-vendor/cranelift-bforest-0.99.1/.cargo-checksum.json +0 -1
  527. data/ext/cargo-vendor/cranelift-bforest-0.99.1/Cargo.toml +0 -31
  528. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/lib.rs +0 -198
  529. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/map.rs +0 -923
  530. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/pool.rs +0 -220
  531. data/ext/cargo-vendor/cranelift-bforest-0.99.1/src/set.rs +0 -598
  532. data/ext/cargo-vendor/cranelift-codegen-0.99.1/.cargo-checksum.json +0 -1
  533. data/ext/cargo-vendor/cranelift-codegen-0.99.1/Cargo.toml +0 -159
  534. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/binemit/mod.rs +0 -141
  535. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/binemit/stack_map.rs +0 -152
  536. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/bitset.rs +0 -163
  537. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/context.rs +0 -368
  538. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/incremental_cache.rs +0 -256
  539. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/atomic_rmw_op.rs +0 -104
  540. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/condcodes.rs +0 -404
  541. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/constant.rs +0 -463
  542. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/dfg.rs +0 -1686
  543. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/dynamic_type.rs +0 -55
  544. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/entities.rs +0 -567
  545. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extfunc.rs +0 -411
  546. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/extname.rs +0 -333
  547. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/function.rs +0 -469
  548. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/globalvalue.rs +0 -155
  549. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/immediates.rs +0 -1615
  550. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/instructions.rs +0 -1000
  551. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/jumptable.rs +0 -168
  552. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/known_symbol.rs +0 -47
  553. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/libcall.rs +0 -232
  554. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/memflags.rs +0 -279
  555. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/mod.rs +0 -106
  556. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/sourceloc.rs +0 -117
  557. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/stackslot.rs +0 -216
  558. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/table.rs +0 -40
  559. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/trapcode.rs +0 -144
  560. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/ir/types.rs +0 -630
  561. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/abi.rs +0 -1543
  562. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/args.rs +0 -741
  563. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit.rs +0 -3919
  564. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/emit_tests.rs +0 -7897
  565. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst/mod.rs +0 -3039
  566. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/inst.isle +0 -4048
  567. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower/isle.rs +0 -873
  568. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.isle +0 -2907
  569. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower.rs +0 -702
  570. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/aarch64/lower_dynamic_neon.isle +0 -110
  571. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/call_conv.rs +0 -119
  572. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/abi.rs +0 -985
  573. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/args.rs +0 -1812
  574. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/emit.rs +0 -3254
  575. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/encode.rs +0 -281
  576. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/imms.rs +0 -250
  577. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/mod.rs +0 -2125
  578. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst/vector.rs +0 -939
  579. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst.isle +0 -2972
  580. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/inst_vector.isle +0 -1650
  581. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower/isle.rs +0 -620
  582. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/riscv64/lower.isle +0 -2002
  583. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/abi.rs +0 -948
  584. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst/mod.rs +0 -3426
  585. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/inst.isle +0 -5043
  586. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/s390x/lower.isle +0 -3983
  587. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind/systemv.rs +0 -272
  588. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind/winx64.rs +0 -334
  589. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/unwind.rs +0 -182
  590. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/abi.rs +0 -1204
  591. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/evex.rs +0 -749
  592. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/encoding/rex.rs +0 -588
  593. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/args.rs +0 -2193
  594. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit.rs +0 -4298
  595. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/emit_tests.rs +0 -5678
  596. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst/mod.rs +0 -2759
  597. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/inst.isle +0 -5079
  598. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower/isle.rs +0 -1096
  599. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.isle +0 -4651
  600. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isa/x64/lower.rs +0 -340
  601. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/isle_prelude.rs +0 -894
  602. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/legalizer/mod.rs +0 -346
  603. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/lib.rs +0 -140
  604. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/abi.rs +0 -2641
  605. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/buffer.rs +0 -2365
  606. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/isle.rs +0 -837
  607. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/mod.rs +0 -551
  608. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/reg.rs +0 -556
  609. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/machinst/vcode.rs +0 -1591
  610. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/bitops.isle +0 -106
  611. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/cprop.isle +0 -200
  612. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/extends.isle +0 -41
  613. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/icmp.isle +0 -177
  614. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/selects.isle +0 -63
  615. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/opts/vector.isle +0 -8
  616. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude.isle +0 -594
  617. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/prelude_lower.isle +0 -1024
  618. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/value_label.rs +0 -32
  619. data/ext/cargo-vendor/cranelift-codegen-0.99.1/src/verifier/mod.rs +0 -1884
  620. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/.cargo-checksum.json +0 -1
  621. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/Cargo.toml +0 -26
  622. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/constant_hash.rs +0 -64
  623. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/gen_inst.rs +0 -1785
  624. data/ext/cargo-vendor/cranelift-codegen-meta-0.99.1/src/shared/instructions.rs +0 -3847
  625. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/.cargo-checksum.json +0 -1
  626. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/Cargo.toml +0 -22
  627. data/ext/cargo-vendor/cranelift-codegen-shared-0.99.1/src/lib.rs +0 -26
  628. data/ext/cargo-vendor/cranelift-control-0.99.1/.cargo-checksum.json +0 -1
  629. data/ext/cargo-vendor/cranelift-control-0.99.1/Cargo.toml +0 -30
  630. data/ext/cargo-vendor/cranelift-entity-0.99.1/.cargo-checksum.json +0 -1
  631. data/ext/cargo-vendor/cranelift-entity-0.99.1/Cargo.toml +0 -35
  632. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/lib.rs +0 -330
  633. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/list.rs +0 -955
  634. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/packed_option.rs +0 -171
  635. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/primary.rs +0 -456
  636. data/ext/cargo-vendor/cranelift-entity-0.99.1/src/sparse.rs +0 -368
  637. data/ext/cargo-vendor/cranelift-frontend-0.99.1/.cargo-checksum.json +0 -1
  638. data/ext/cargo-vendor/cranelift-frontend-0.99.1/Cargo.toml +0 -53
  639. data/ext/cargo-vendor/cranelift-frontend-0.99.1/src/lib.rs +0 -204
  640. data/ext/cargo-vendor/cranelift-isle-0.99.1/.cargo-checksum.json +0 -1
  641. data/ext/cargo-vendor/cranelift-isle-0.99.1/Cargo.toml +0 -37
  642. data/ext/cargo-vendor/cranelift-native-0.99.1/.cargo-checksum.json +0 -1
  643. data/ext/cargo-vendor/cranelift-native-0.99.1/Cargo.toml +0 -38
  644. data/ext/cargo-vendor/cranelift-native-0.99.1/src/lib.rs +0 -204
  645. data/ext/cargo-vendor/cranelift-wasm-0.99.1/.cargo-checksum.json +0 -1
  646. data/ext/cargo-vendor/cranelift-wasm-0.99.1/Cargo.toml +0 -85
  647. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/code_translator.rs +0 -3608
  648. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/dummy.rs +0 -942
  649. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/environ/spec.rs +0 -913
  650. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/func_translator.rs +0 -431
  651. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/heap.rs +0 -99
  652. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/lib.rs +0 -78
  653. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/sections_translator.rs +0 -420
  654. data/ext/cargo-vendor/cranelift-wasm-0.99.1/src/translation_utils.rs +0 -99
  655. data/ext/cargo-vendor/env_logger-0.10.0/.cargo-checksum.json +0 -1
  656. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.lock +0 -254
  657. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.toml +0 -129
  658. data/ext/cargo-vendor/env_logger-0.10.0/LICENSE-APACHE +0 -201
  659. data/ext/cargo-vendor/env_logger-0.10.0/README.md +0 -183
  660. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_default_format.rs +0 -40
  661. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_format.rs +0 -54
  662. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_logger.rs +0 -62
  663. data/ext/cargo-vendor/env_logger-0.10.0/examples/default.rs +0 -38
  664. data/ext/cargo-vendor/env_logger-0.10.0/examples/direct_logger.rs +0 -39
  665. data/ext/cargo-vendor/env_logger-0.10.0/examples/filters_from_code.rs +0 -20
  666. data/ext/cargo-vendor/env_logger-0.10.0/examples/in_tests.rs +0 -54
  667. data/ext/cargo-vendor/env_logger-0.10.0/examples/syslog_friendly_format.rs +0 -24
  668. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/mod.rs +0 -868
  669. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/regex.rs +0 -29
  670. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/string.rs +0 -24
  671. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/extern_impl.rs +0 -118
  672. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/mod.rs +0 -11
  673. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/humantime/shim_impl.rs +0 -5
  674. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/mod.rs +0 -652
  675. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/atty.rs +0 -33
  676. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/mod.rs +0 -253
  677. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/extern_impl.rs +0 -532
  678. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/mod.rs +0 -12
  679. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/shim_impl.rs +0 -72
  680. data/ext/cargo-vendor/env_logger-0.10.0/src/lib.rs +0 -1311
  681. data/ext/cargo-vendor/env_logger-0.10.0/tests/init-twice-retains-filter.rs +0 -40
  682. data/ext/cargo-vendor/env_logger-0.10.0/tests/log-in-log.rs +0 -39
  683. data/ext/cargo-vendor/env_logger-0.10.0/tests/log_tls_dtors.rs +0 -66
  684. data/ext/cargo-vendor/env_logger-0.10.0/tests/regexp_filter.rs +0 -57
  685. data/ext/cargo-vendor/fallible-iterator-0.2.0/.cargo-checksum.json +0 -1
  686. data/ext/cargo-vendor/fallible-iterator-0.2.0/CHANGELOG.md +0 -26
  687. data/ext/cargo-vendor/fallible-iterator-0.2.0/Cargo.toml +0 -27
  688. data/ext/cargo-vendor/fallible-iterator-0.2.0/README.md +0 -15
  689. data/ext/cargo-vendor/fallible-iterator-0.2.0/src/lib.rs +0 -2606
  690. data/ext/cargo-vendor/fallible-iterator-0.2.0/src/test.rs +0 -455
  691. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/.cargo-checksum.json +0 -1
  692. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/Cargo.toml +0 -36
  693. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/README.md +0 -25
  694. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/run-tests.sh +0 -12
  695. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/src/lib.rs +0 -200
  696. data/ext/cargo-vendor/file-per-thread-logger-0.2.0/tests/test.rs +0 -323
  697. data/ext/cargo-vendor/gimli-0.27.3/.cargo-checksum.json +0 -1
  698. data/ext/cargo-vendor/gimli-0.27.3/CHANGELOG.md +0 -943
  699. data/ext/cargo-vendor/gimli-0.27.3/Cargo.lock +0 -345
  700. data/ext/cargo-vendor/gimli-0.27.3/Cargo.toml +0 -151
  701. data/ext/cargo-vendor/gimli-0.27.3/LICENSE-APACHE +0 -201
  702. data/ext/cargo-vendor/gimli-0.27.3/LICENSE-MIT +0 -25
  703. data/ext/cargo-vendor/gimli-0.27.3/README.md +0 -78
  704. data/ext/cargo-vendor/gimli-0.27.3/examples/dwarf-validate.rs +0 -267
  705. data/ext/cargo-vendor/gimli-0.27.3/examples/dwarfdump.rs +0 -2369
  706. data/ext/cargo-vendor/gimli-0.27.3/examples/simple.rs +0 -67
  707. data/ext/cargo-vendor/gimli-0.27.3/examples/simple_line.rs +0 -106
  708. data/ext/cargo-vendor/gimli-0.27.3/src/arch.rs +0 -751
  709. data/ext/cargo-vendor/gimli-0.27.3/src/common.rs +0 -381
  710. data/ext/cargo-vendor/gimli-0.27.3/src/constants.rs +0 -1426
  711. data/ext/cargo-vendor/gimli-0.27.3/src/endianity.rs +0 -256
  712. data/ext/cargo-vendor/gimli-0.27.3/src/leb128.rs +0 -612
  713. data/ext/cargo-vendor/gimli-0.27.3/src/lib.rs +0 -79
  714. data/ext/cargo-vendor/gimli-0.27.3/src/read/abbrev.rs +0 -1089
  715. data/ext/cargo-vendor/gimli-0.27.3/src/read/addr.rs +0 -128
  716. data/ext/cargo-vendor/gimli-0.27.3/src/read/aranges.rs +0 -660
  717. data/ext/cargo-vendor/gimli-0.27.3/src/read/cfi.rs +0 -7574
  718. data/ext/cargo-vendor/gimli-0.27.3/src/read/dwarf.rs +0 -1184
  719. data/ext/cargo-vendor/gimli-0.27.3/src/read/endian_reader.rs +0 -639
  720. data/ext/cargo-vendor/gimli-0.27.3/src/read/endian_slice.rs +0 -350
  721. data/ext/cargo-vendor/gimli-0.27.3/src/read/index.rs +0 -535
  722. data/ext/cargo-vendor/gimli-0.27.3/src/read/lazy.rs +0 -116
  723. data/ext/cargo-vendor/gimli-0.27.3/src/read/line.rs +0 -3130
  724. data/ext/cargo-vendor/gimli-0.27.3/src/read/lists.rs +0 -68
  725. data/ext/cargo-vendor/gimli-0.27.3/src/read/loclists.rs +0 -1627
  726. data/ext/cargo-vendor/gimli-0.27.3/src/read/lookup.rs +0 -202
  727. data/ext/cargo-vendor/gimli-0.27.3/src/read/mod.rs +0 -830
  728. data/ext/cargo-vendor/gimli-0.27.3/src/read/op.rs +0 -4119
  729. data/ext/cargo-vendor/gimli-0.27.3/src/read/pubnames.rs +0 -141
  730. data/ext/cargo-vendor/gimli-0.27.3/src/read/pubtypes.rs +0 -141
  731. data/ext/cargo-vendor/gimli-0.27.3/src/read/reader.rs +0 -502
  732. data/ext/cargo-vendor/gimli-0.27.3/src/read/rnglists.rs +0 -1458
  733. data/ext/cargo-vendor/gimli-0.27.3/src/read/str.rs +0 -321
  734. data/ext/cargo-vendor/gimli-0.27.3/src/read/unit.rs +0 -6139
  735. data/ext/cargo-vendor/gimli-0.27.3/src/read/util.rs +0 -251
  736. data/ext/cargo-vendor/gimli-0.27.3/src/read/value.rs +0 -1621
  737. data/ext/cargo-vendor/gimli-0.27.3/src/test_util.rs +0 -53
  738. data/ext/cargo-vendor/gimli-0.27.3/src/write/abbrev.rs +0 -188
  739. data/ext/cargo-vendor/gimli-0.27.3/src/write/cfi.rs +0 -1025
  740. data/ext/cargo-vendor/gimli-0.27.3/src/write/dwarf.rs +0 -138
  741. data/ext/cargo-vendor/gimli-0.27.3/src/write/endian_vec.rs +0 -117
  742. data/ext/cargo-vendor/gimli-0.27.3/src/write/line.rs +0 -1957
  743. data/ext/cargo-vendor/gimli-0.27.3/src/write/loc.rs +0 -550
  744. data/ext/cargo-vendor/gimli-0.27.3/src/write/mod.rs +0 -425
  745. data/ext/cargo-vendor/gimli-0.27.3/src/write/op.rs +0 -1618
  746. data/ext/cargo-vendor/gimli-0.27.3/src/write/range.rs +0 -416
  747. data/ext/cargo-vendor/gimli-0.27.3/src/write/section.rs +0 -172
  748. data/ext/cargo-vendor/gimli-0.27.3/src/write/str.rs +0 -172
  749. data/ext/cargo-vendor/gimli-0.27.3/src/write/unit.rs +0 -3152
  750. data/ext/cargo-vendor/gimli-0.27.3/src/write/writer.rs +0 -494
  751. data/ext/cargo-vendor/hashbrown-0.12.3/.cargo-checksum.json +0 -1
  752. data/ext/cargo-vendor/hashbrown-0.12.3/CHANGELOG.md +0 -402
  753. data/ext/cargo-vendor/hashbrown-0.12.3/Cargo.toml +0 -113
  754. data/ext/cargo-vendor/hashbrown-0.12.3/LICENSE-APACHE +0 -201
  755. data/ext/cargo-vendor/hashbrown-0.12.3/LICENSE-MIT +0 -25
  756. data/ext/cargo-vendor/hashbrown-0.12.3/README.md +0 -126
  757. data/ext/cargo-vendor/hashbrown-0.12.3/benches/bench.rs +0 -331
  758. data/ext/cargo-vendor/hashbrown-0.12.3/benches/insert_unique_unchecked.rs +0 -32
  759. data/ext/cargo-vendor/hashbrown-0.12.3/clippy.toml +0 -1
  760. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/mod.rs +0 -4
  761. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/helpers.rs +0 -27
  762. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/map.rs +0 -734
  763. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/mod.rs +0 -4
  764. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/raw.rs +0 -231
  765. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/rayon/set.rs +0 -659
  766. data/ext/cargo-vendor/hashbrown-0.12.3/src/external_trait_impls/serde.rs +0 -201
  767. data/ext/cargo-vendor/hashbrown-0.12.3/src/lib.rs +0 -150
  768. data/ext/cargo-vendor/hashbrown-0.12.3/src/macros.rs +0 -70
  769. data/ext/cargo-vendor/hashbrown-0.12.3/src/map.rs +0 -8408
  770. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/alloc.rs +0 -73
  771. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/bitmask.rs +0 -122
  772. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/generic.rs +0 -154
  773. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/mod.rs +0 -2460
  774. data/ext/cargo-vendor/hashbrown-0.12.3/src/raw/sse2.rs +0 -146
  775. data/ext/cargo-vendor/hashbrown-0.12.3/src/rustc_entry.rs +0 -630
  776. data/ext/cargo-vendor/hashbrown-0.12.3/src/scopeguard.rs +0 -74
  777. data/ext/cargo-vendor/hashbrown-0.12.3/src/set.rs +0 -2790
  778. data/ext/cargo-vendor/hashbrown-0.12.3/tests/hasher.rs +0 -65
  779. data/ext/cargo-vendor/hashbrown-0.12.3/tests/rayon.rs +0 -533
  780. data/ext/cargo-vendor/hashbrown-0.12.3/tests/serde.rs +0 -65
  781. data/ext/cargo-vendor/hashbrown-0.12.3/tests/set.rs +0 -34
  782. data/ext/cargo-vendor/humantime-2.1.0/.cargo-checksum.json +0 -1
  783. data/ext/cargo-vendor/humantime-2.1.0/Cargo.toml +0 -37
  784. data/ext/cargo-vendor/humantime-2.1.0/LICENSE-APACHE +0 -202
  785. data/ext/cargo-vendor/humantime-2.1.0/LICENSE-MIT +0 -26
  786. data/ext/cargo-vendor/humantime-2.1.0/README.md +0 -68
  787. data/ext/cargo-vendor/humantime-2.1.0/benches/datetime_format.rs +0 -56
  788. data/ext/cargo-vendor/humantime-2.1.0/benches/datetime_parse.rs +0 -47
  789. data/ext/cargo-vendor/humantime-2.1.0/bulk.yaml +0 -8
  790. data/ext/cargo-vendor/humantime-2.1.0/src/date.rs +0 -623
  791. data/ext/cargo-vendor/humantime-2.1.0/src/duration.rs +0 -456
  792. data/ext/cargo-vendor/humantime-2.1.0/src/lib.rs +0 -34
  793. data/ext/cargo-vendor/humantime-2.1.0/src/wrapper.rs +0 -107
  794. data/ext/cargo-vendor/humantime-2.1.0/vagga.yaml +0 -92
  795. data/ext/cargo-vendor/indexmap-1.9.3/.cargo-checksum.json +0 -1
  796. data/ext/cargo-vendor/indexmap-1.9.3/Cargo.toml +0 -108
  797. data/ext/cargo-vendor/indexmap-1.9.3/LICENSE-APACHE +0 -201
  798. data/ext/cargo-vendor/indexmap-1.9.3/LICENSE-MIT +0 -25
  799. data/ext/cargo-vendor/indexmap-1.9.3/README.md +0 -55
  800. data/ext/cargo-vendor/indexmap-1.9.3/RELEASES.md +0 -388
  801. data/ext/cargo-vendor/indexmap-1.9.3/benches/bench.rs +0 -763
  802. data/ext/cargo-vendor/indexmap-1.9.3/benches/faststring.rs +0 -185
  803. data/ext/cargo-vendor/indexmap-1.9.3/build.rs +0 -8
  804. data/ext/cargo-vendor/indexmap-1.9.3/src/arbitrary.rs +0 -75
  805. data/ext/cargo-vendor/indexmap-1.9.3/src/equivalent.rs +0 -27
  806. data/ext/cargo-vendor/indexmap-1.9.3/src/lib.rs +0 -194
  807. data/ext/cargo-vendor/indexmap-1.9.3/src/macros.rs +0 -178
  808. data/ext/cargo-vendor/indexmap-1.9.3/src/map/core/raw.rs +0 -191
  809. data/ext/cargo-vendor/indexmap-1.9.3/src/map/core.rs +0 -700
  810. data/ext/cargo-vendor/indexmap-1.9.3/src/map.rs +0 -1947
  811. data/ext/cargo-vendor/indexmap-1.9.3/src/mutable_keys.rs +0 -75
  812. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/map.rs +0 -583
  813. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/mod.rs +0 -27
  814. data/ext/cargo-vendor/indexmap-1.9.3/src/rayon/set.rs +0 -741
  815. data/ext/cargo-vendor/indexmap-1.9.3/src/rustc.rs +0 -158
  816. data/ext/cargo-vendor/indexmap-1.9.3/src/serde.rs +0 -155
  817. data/ext/cargo-vendor/indexmap-1.9.3/src/serde_seq.rs +0 -112
  818. data/ext/cargo-vendor/indexmap-1.9.3/src/set.rs +0 -1912
  819. data/ext/cargo-vendor/indexmap-1.9.3/src/util.rs +0 -31
  820. data/ext/cargo-vendor/indexmap-1.9.3/tests/equivalent_trait.rs +0 -53
  821. data/ext/cargo-vendor/indexmap-1.9.3/tests/macros_full_path.rs +0 -19
  822. data/ext/cargo-vendor/indexmap-1.9.3/tests/quick.rs +0 -573
  823. data/ext/cargo-vendor/indexmap-1.9.3/tests/tests.rs +0 -28
  824. data/ext/cargo-vendor/object-0.31.1/.cargo-checksum.json +0 -1
  825. data/ext/cargo-vendor/object-0.31.1/CHANGELOG.md +0 -621
  826. data/ext/cargo-vendor/object-0.31.1/Cargo.toml +0 -161
  827. data/ext/cargo-vendor/object-0.31.1/LICENSE-APACHE +0 -201
  828. data/ext/cargo-vendor/object-0.31.1/LICENSE-MIT +0 -25
  829. data/ext/cargo-vendor/object-0.31.1/README.md +0 -58
  830. data/ext/cargo-vendor/object-0.31.1/clippy.toml +0 -1
  831. data/ext/cargo-vendor/object-0.31.1/src/archive.rs +0 -91
  832. data/ext/cargo-vendor/object-0.31.1/src/common.rs +0 -499
  833. data/ext/cargo-vendor/object-0.31.1/src/elf.rs +0 -6146
  834. data/ext/cargo-vendor/object-0.31.1/src/endian.rs +0 -831
  835. data/ext/cargo-vendor/object-0.31.1/src/lib.rs +0 -116
  836. data/ext/cargo-vendor/object-0.31.1/src/macho.rs +0 -3307
  837. data/ext/cargo-vendor/object-0.31.1/src/pe.rs +0 -3050
  838. data/ext/cargo-vendor/object-0.31.1/src/pod.rs +0 -239
  839. data/ext/cargo-vendor/object-0.31.1/src/read/any.rs +0 -1323
  840. data/ext/cargo-vendor/object-0.31.1/src/read/archive.rs +0 -739
  841. data/ext/cargo-vendor/object-0.31.1/src/read/coff/comdat.rs +0 -207
  842. data/ext/cargo-vendor/object-0.31.1/src/read/coff/file.rs +0 -364
  843. data/ext/cargo-vendor/object-0.31.1/src/read/coff/mod.rs +0 -18
  844. data/ext/cargo-vendor/object-0.31.1/src/read/coff/relocation.rs +0 -104
  845. data/ext/cargo-vendor/object-0.31.1/src/read/coff/section.rs +0 -574
  846. data/ext/cargo-vendor/object-0.31.1/src/read/coff/symbol.rs +0 -626
  847. data/ext/cargo-vendor/object-0.31.1/src/read/elf/attributes.rs +0 -303
  848. data/ext/cargo-vendor/object-0.31.1/src/read/elf/comdat.rs +0 -160
  849. data/ext/cargo-vendor/object-0.31.1/src/read/elf/compression.rs +0 -56
  850. data/ext/cargo-vendor/object-0.31.1/src/read/elf/dynamic.rs +0 -117
  851. data/ext/cargo-vendor/object-0.31.1/src/read/elf/file.rs +0 -910
  852. data/ext/cargo-vendor/object-0.31.1/src/read/elf/hash.rs +0 -220
  853. data/ext/cargo-vendor/object-0.31.1/src/read/elf/mod.rs +0 -42
  854. data/ext/cargo-vendor/object-0.31.1/src/read/elf/note.rs +0 -263
  855. data/ext/cargo-vendor/object-0.31.1/src/read/elf/relocation.rs +0 -571
  856. data/ext/cargo-vendor/object-0.31.1/src/read/elf/section.rs +0 -1146
  857. data/ext/cargo-vendor/object-0.31.1/src/read/elf/segment.rs +0 -332
  858. data/ext/cargo-vendor/object-0.31.1/src/read/elf/symbol.rs +0 -577
  859. data/ext/cargo-vendor/object-0.31.1/src/read/elf/version.rs +0 -421
  860. data/ext/cargo-vendor/object-0.31.1/src/read/macho/dyld_cache.rs +0 -343
  861. data/ext/cargo-vendor/object-0.31.1/src/read/macho/fat.rs +0 -122
  862. data/ext/cargo-vendor/object-0.31.1/src/read/macho/file.rs +0 -731
  863. data/ext/cargo-vendor/object-0.31.1/src/read/macho/load_command.rs +0 -373
  864. data/ext/cargo-vendor/object-0.31.1/src/read/macho/mod.rs +0 -30
  865. data/ext/cargo-vendor/object-0.31.1/src/read/macho/relocation.rs +0 -127
  866. data/ext/cargo-vendor/object-0.31.1/src/read/macho/section.rs +0 -387
  867. data/ext/cargo-vendor/object-0.31.1/src/read/macho/segment.rs +0 -301
  868. data/ext/cargo-vendor/object-0.31.1/src/read/macho/symbol.rs +0 -488
  869. data/ext/cargo-vendor/object-0.31.1/src/read/mod.rs +0 -760
  870. data/ext/cargo-vendor/object-0.31.1/src/read/pe/data_directory.rs +0 -211
  871. data/ext/cargo-vendor/object-0.31.1/src/read/pe/export.rs +0 -331
  872. data/ext/cargo-vendor/object-0.31.1/src/read/pe/file.rs +0 -1029
  873. data/ext/cargo-vendor/object-0.31.1/src/read/pe/import.rs +0 -332
  874. data/ext/cargo-vendor/object-0.31.1/src/read/pe/mod.rs +0 -34
  875. data/ext/cargo-vendor/object-0.31.1/src/read/pe/relocation.rs +0 -90
  876. data/ext/cargo-vendor/object-0.31.1/src/read/pe/resource.rs +0 -207
  877. data/ext/cargo-vendor/object-0.31.1/src/read/pe/rich.rs +0 -91
  878. data/ext/cargo-vendor/object-0.31.1/src/read/pe/section.rs +0 -434
  879. data/ext/cargo-vendor/object-0.31.1/src/read/read_cache.rs +0 -182
  880. data/ext/cargo-vendor/object-0.31.1/src/read/read_ref.rs +0 -137
  881. data/ext/cargo-vendor/object-0.31.1/src/read/traits.rs +0 -469
  882. data/ext/cargo-vendor/object-0.31.1/src/read/util.rs +0 -425
  883. data/ext/cargo-vendor/object-0.31.1/src/read/wasm.rs +0 -951
  884. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/comdat.rs +0 -129
  885. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/file.rs +0 -629
  886. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/mod.rs +0 -21
  887. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/relocation.rs +0 -127
  888. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/section.rs +0 -427
  889. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/segment.rs +0 -113
  890. data/ext/cargo-vendor/object-0.31.1/src/read/xcoff/symbol.rs +0 -695
  891. data/ext/cargo-vendor/object-0.31.1/src/write/coff.rs +0 -725
  892. data/ext/cargo-vendor/object-0.31.1/src/write/elf/mod.rs +0 -9
  893. data/ext/cargo-vendor/object-0.31.1/src/write/elf/object.rs +0 -891
  894. data/ext/cargo-vendor/object-0.31.1/src/write/elf/writer.rs +0 -2143
  895. data/ext/cargo-vendor/object-0.31.1/src/write/macho.rs +0 -978
  896. data/ext/cargo-vendor/object-0.31.1/src/write/mod.rs +0 -943
  897. data/ext/cargo-vendor/object-0.31.1/src/write/pe.rs +0 -847
  898. data/ext/cargo-vendor/object-0.31.1/src/write/string.rs +0 -159
  899. data/ext/cargo-vendor/object-0.31.1/src/write/util.rs +0 -260
  900. data/ext/cargo-vendor/object-0.31.1/src/write/xcoff.rs +0 -556
  901. data/ext/cargo-vendor/object-0.31.1/src/xcoff.rs +0 -893
  902. data/ext/cargo-vendor/object-0.31.1/tests/integration.rs +0 -2
  903. data/ext/cargo-vendor/object-0.31.1/tests/parse_self.rs +0 -25
  904. data/ext/cargo-vendor/object-0.31.1/tests/read/coff.rs +0 -23
  905. data/ext/cargo-vendor/object-0.31.1/tests/read/mod.rs +0 -3
  906. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/bss.rs +0 -255
  907. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/coff.rs +0 -56
  908. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/comdat.rs +0 -225
  909. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/common.rs +0 -245
  910. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/elf.rs +0 -289
  911. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/macho.rs +0 -24
  912. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/mod.rs +0 -636
  913. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/section_flags.rs +0 -90
  914. data/ext/cargo-vendor/object-0.31.1/tests/round_trip/tls.rs +0 -316
  915. data/ext/cargo-vendor/serde-1.0.185/.cargo-checksum.json +0 -1
  916. data/ext/cargo-vendor/serde-1.0.185/Cargo.toml +0 -66
  917. data/ext/cargo-vendor/serde-1.0.185/build.rs +0 -97
  918. data/ext/cargo-vendor/serde-1.0.185/src/de/ignored_any.rs +0 -242
  919. data/ext/cargo-vendor/serde-1.0.185/src/de/impls.rs +0 -2968
  920. data/ext/cargo-vendor/serde-1.0.185/src/de/mod.rs +0 -2299
  921. data/ext/cargo-vendor/serde-1.0.185/src/de/utf8.rs +0 -46
  922. data/ext/cargo-vendor/serde-1.0.185/src/de/value.rs +0 -1711
  923. data/ext/cargo-vendor/serde-1.0.185/src/integer128.rs +0 -82
  924. data/ext/cargo-vendor/serde-1.0.185/src/lib.rs +0 -327
  925. data/ext/cargo-vendor/serde-1.0.185/src/macros.rs +0 -235
  926. data/ext/cargo-vendor/serde-1.0.185/src/ser/fmt.rs +0 -175
  927. data/ext/cargo-vendor/serde-1.0.185/src/ser/impls.rs +0 -1012
  928. data/ext/cargo-vendor/serde-1.0.185/src/ser/mod.rs +0 -1958
  929. data/ext/cargo-vendor/serde_derive-1.0.185/.cargo-checksum.json +0 -1
  930. data/ext/cargo-vendor/serde_derive-1.0.185/Cargo.toml +0 -59
  931. data/ext/cargo-vendor/serde_derive-1.0.185/src/lib.rs +0 -102
  932. data/ext/cargo-vendor/serde_derive-1.0.185/src/ser.rs +0 -1359
  933. data/ext/cargo-vendor/termcolor-1.2.0/.cargo-checksum.json +0 -1
  934. data/ext/cargo-vendor/termcolor-1.2.0/COPYING +0 -3
  935. data/ext/cargo-vendor/termcolor-1.2.0/Cargo.toml +0 -40
  936. data/ext/cargo-vendor/termcolor-1.2.0/LICENSE-MIT +0 -21
  937. data/ext/cargo-vendor/termcolor-1.2.0/README.md +0 -115
  938. data/ext/cargo-vendor/termcolor-1.2.0/UNLICENSE +0 -24
  939. data/ext/cargo-vendor/termcolor-1.2.0/rustfmt.toml +0 -2
  940. data/ext/cargo-vendor/termcolor-1.2.0/src/lib.rs +0 -2350
  941. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/.cargo-checksum.json +0 -1
  942. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/Cargo.toml +0 -96
  943. data/ext/cargo-vendor/wasi-cap-std-sync-12.0.1/src/lib.rs +0 -141
  944. data/ext/cargo-vendor/wasi-common-12.0.1/.cargo-checksum.json +0 -1
  945. data/ext/cargo-vendor/wasi-common-12.0.1/Cargo.toml +0 -87
  946. data/ext/cargo-vendor/wasm-encoder-0.31.1/.cargo-checksum.json +0 -1
  947. data/ext/cargo-vendor/wasm-encoder-0.31.1/Cargo.toml +0 -33
  948. data/ext/cargo-vendor/wasm-encoder-0.31.1/src/component/types.rs +0 -784
  949. data/ext/cargo-vendor/wasmparser-0.110.0/.cargo-checksum.json +0 -1
  950. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.lock +0 -644
  951. data/ext/cargo-vendor/wasmparser-0.110.0/Cargo.toml +0 -54
  952. data/ext/cargo-vendor/wasmparser-0.110.0/src/limits.rs +0 -59
  953. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/component/types.rs +0 -548
  954. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core/types.rs +0 -1141
  955. data/ext/cargo-vendor/wasmparser-0.110.0/src/readers/core.rs +0 -35
  956. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/component.rs +0 -3144
  957. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/core.rs +0 -1314
  958. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator/types.rs +0 -3197
  959. data/ext/cargo-vendor/wasmparser-0.110.0/src/validator.rs +0 -1568
  960. data/ext/cargo-vendor/wasmparser-0.111.0/.cargo-checksum.json +0 -1
  961. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.lock +0 -644
  962. data/ext/cargo-vendor/wasmparser-0.111.0/Cargo.toml +0 -54
  963. data/ext/cargo-vendor/wasmparser-0.111.0/src/binary_reader.rs +0 -1706
  964. data/ext/cargo-vendor/wasmparser-0.111.0/src/lib.rs +0 -726
  965. data/ext/cargo-vendor/wasmparser-0.111.0/src/limits.rs +0 -59
  966. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/component/types.rs +0 -548
  967. data/ext/cargo-vendor/wasmparser-0.111.0/src/readers/core/types.rs +0 -1141
  968. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/component.rs +0 -3148
  969. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/core.rs +0 -1314
  970. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/operators.rs +0 -3466
  971. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator/types.rs +0 -3283
  972. data/ext/cargo-vendor/wasmparser-0.111.0/src/validator.rs +0 -1568
  973. data/ext/cargo-vendor/wasmprinter-0.2.63/.cargo-checksum.json +0 -1
  974. data/ext/cargo-vendor/wasmprinter-0.2.63/Cargo.toml +0 -39
  975. data/ext/cargo-vendor/wasmprinter-0.2.63/src/lib.rs +0 -2962
  976. data/ext/cargo-vendor/wasmprinter-0.2.63/src/operator.rs +0 -873
  977. data/ext/cargo-vendor/wasmtime-12.0.1/.cargo-checksum.json +0 -1
  978. data/ext/cargo-vendor/wasmtime-12.0.1/Cargo.toml +0 -186
  979. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/component.rs +0 -466
  980. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/func/typed.rs +0 -2326
  981. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/instance.rs +0 -781
  982. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/linker.rs +0 -479
  983. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/mod.rs +0 -316
  984. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/types.rs +0 -562
  985. data/ext/cargo-vendor/wasmtime-12.0.1/src/component/values.rs +0 -1376
  986. data/ext/cargo-vendor/wasmtime-12.0.1/src/config.rs +0 -2096
  987. data/ext/cargo-vendor/wasmtime-12.0.1/src/engine/serialization.rs +0 -629
  988. data/ext/cargo-vendor/wasmtime-12.0.1/src/engine.rs +0 -756
  989. data/ext/cargo-vendor/wasmtime-12.0.1/src/instance.rs +0 -883
  990. data/ext/cargo-vendor/wasmtime-12.0.1/src/limits.rs +0 -357
  991. data/ext/cargo-vendor/wasmtime-12.0.1/src/module.rs +0 -1346
  992. data/ext/cargo-vendor/wasmtime-12.0.1/src/store.rs +0 -2212
  993. data/ext/cargo-vendor/wasmtime-12.0.1/src/trampoline/memory.rs +0 -202
  994. data/ext/cargo-vendor/wasmtime-12.0.1/src/trampoline.rs +0 -76
  995. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/.cargo-checksum.json +0 -1
  996. data/ext/cargo-vendor/wasmtime-asm-macros-12.0.1/Cargo.toml +0 -22
  997. data/ext/cargo-vendor/wasmtime-cache-12.0.1/.cargo-checksum.json +0 -1
  998. data/ext/cargo-vendor/wasmtime-cache-12.0.1/Cargo.toml +0 -73
  999. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/config.rs +0 -584
  1000. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/worker/tests.rs +0 -758
  1001. data/ext/cargo-vendor/wasmtime-cache-12.0.1/src/worker.rs +0 -903
  1002. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/.cargo-checksum.json +0 -1
  1003. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/Cargo.toml +0 -58
  1004. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/bindgen.rs +0 -343
  1005. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/src/component.rs +0 -1319
  1006. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/tests/codegen/unions.wit +0 -66
  1007. data/ext/cargo-vendor/wasmtime-component-macro-12.0.1/tests/codegen/variants.wit +0 -147
  1008. data/ext/cargo-vendor/wasmtime-component-util-12.0.1/.cargo-checksum.json +0 -1
  1009. data/ext/cargo-vendor/wasmtime-component-util-12.0.1/Cargo.toml +0 -25
  1010. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/.cargo-checksum.json +0 -1
  1011. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/Cargo.toml +0 -93
  1012. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/builder.rs +0 -116
  1013. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/compiler.rs +0 -1297
  1014. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug/transform/attr.rs +0 -339
  1015. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/debug.rs +0 -20
  1016. data/ext/cargo-vendor/wasmtime-cranelift-12.0.1/src/func_environ.rs +0 -2377
  1017. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/.cargo-checksum.json +0 -1
  1018. data/ext/cargo-vendor/wasmtime-cranelift-shared-12.0.1/Cargo.toml +0 -57
  1019. data/ext/cargo-vendor/wasmtime-environ-12.0.1/.cargo-checksum.json +0 -1
  1020. data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.lock +0 -736
  1021. data/ext/cargo-vendor/wasmtime-environ-12.0.1/Cargo.toml +0 -116
  1022. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/address_map.rs +0 -192
  1023. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/builtin.rs +0 -127
  1024. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/compilation.rs +0 -400
  1025. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/compiler.rs +0 -47
  1026. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/info.rs +0 -583
  1027. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/component/types.rs +0 -1920
  1028. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/trampoline.rs +0 -3269
  1029. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/fact/transcode.rs +0 -168
  1030. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/lib.rs +0 -76
  1031. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module.rs +0 -1083
  1032. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_environ.rs +0 -887
  1033. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/module_types.rs +0 -78
  1034. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/stack_map.rs +0 -36
  1035. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/tunables.rs +0 -115
  1036. data/ext/cargo-vendor/wasmtime-environ-12.0.1/src/vmoffsets.rs +0 -940
  1037. data/ext/cargo-vendor/wasmtime-fiber-12.0.1/.cargo-checksum.json +0 -1
  1038. data/ext/cargo-vendor/wasmtime-fiber-12.0.1/Cargo.toml +0 -51
  1039. data/ext/cargo-vendor/wasmtime-jit-12.0.1/.cargo-checksum.json +0 -1
  1040. data/ext/cargo-vendor/wasmtime-jit-12.0.1/Cargo.toml +0 -104
  1041. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/instantiate.rs +0 -760
  1042. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/lib.rs +0 -38
  1043. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/miri.rs +0 -15
  1044. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/systemv.rs +0 -90
  1045. data/ext/cargo-vendor/wasmtime-jit-12.0.1/src/unwind/winx64.rs +0 -44
  1046. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/.cargo-checksum.json +0 -1
  1047. data/ext/cargo-vendor/wasmtime-jit-debug-12.0.1/Cargo.toml +0 -58
  1048. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/.cargo-checksum.json +0 -1
  1049. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-12.0.1/Cargo.toml +0 -37
  1050. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/.cargo-checksum.json +0 -1
  1051. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/Cargo.toml +0 -119
  1052. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/on_demand.rs +0 -127
  1053. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/pooling/index_allocator.rs +0 -599
  1054. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator/pooling.rs +0 -1368
  1055. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance/allocator.rs +0 -414
  1056. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/instance.rs +0 -1345
  1057. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/lib.rs +0 -289
  1058. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/libcalls.rs +0 -627
  1059. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/memory.rs +0 -958
  1060. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/parking_spot.rs +0 -522
  1061. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/table.rs +0 -595
  1062. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/trampolines/s390x.S +0 -62
  1063. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers/macos.rs +0 -476
  1064. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/traphandlers.rs +0 -782
  1065. data/ext/cargo-vendor/wasmtime-runtime-12.0.1/src/vmcontext.rs +0 -1221
  1066. data/ext/cargo-vendor/wasmtime-types-12.0.1/.cargo-checksum.json +0 -1
  1067. data/ext/cargo-vendor/wasmtime-types-12.0.1/Cargo.toml +0 -34
  1068. data/ext/cargo-vendor/wasmtime-types-12.0.1/src/lib.rs +0 -504
  1069. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/.cargo-checksum.json +0 -1
  1070. data/ext/cargo-vendor/wasmtime-versioned-export-macros-12.0.1/Cargo.toml +0 -32
  1071. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/.cargo-checksum.json +0 -1
  1072. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/Cargo.toml +0 -191
  1073. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/lib.rs +0 -131
  1074. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/command.rs +0 -91
  1075. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/ctx.rs +0 -237
  1076. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/filesystem.rs +0 -216
  1077. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/mod.rs +0 -185
  1078. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/pipe.rs +0 -846
  1079. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview1/mod.rs +0 -1870
  1080. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/clocks.rs +0 -107
  1081. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/env.rs +0 -37
  1082. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/exit.rs +0 -11
  1083. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem/sync.rs +0 -613
  1084. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/filesystem.rs +0 -1096
  1085. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/io.rs +0 -494
  1086. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/preview2/mod.rs +0 -6
  1087. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/unix.rs +0 -133
  1088. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio/worker_thread_stdin.rs +0 -133
  1089. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stdio.rs +0 -218
  1090. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/stream.rs +0 -302
  1091. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/src/preview2/table.rs +0 -287
  1092. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/filesystem/filesystem.wit +0 -782
  1093. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/http/types.wit +0 -159
  1094. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/io/streams.wit +0 -254
  1095. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/logging/handler.wit +0 -34
  1096. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/command-extended.wit +0 -36
  1097. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/command.wit +0 -26
  1098. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/proxy.wit +0 -9
  1099. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/preview/reactor.wit +0 -24
  1100. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/ip-name-lookup.wit +0 -69
  1101. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/network.wit +0 -187
  1102. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/tcp-create-socket.wit +0 -27
  1103. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/tcp.wit +0 -255
  1104. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/udp-create-socket.wit +0 -27
  1105. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/sockets/udp.wit +0 -211
  1106. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/environment.wit +0 -16
  1107. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/exit.wit +0 -4
  1108. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base/preopens.wit +0 -7
  1109. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/main.wit +0 -1
  1110. data/ext/cargo-vendor/wasmtime-wasi-12.0.1/wit/test.wit +0 -28
  1111. data/ext/cargo-vendor/wasmtime-winch-12.0.1/.cargo-checksum.json +0 -1
  1112. data/ext/cargo-vendor/wasmtime-winch-12.0.1/Cargo.toml +0 -63
  1113. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/.cargo-checksum.json +0 -1
  1114. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/Cargo.toml +0 -32
  1115. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/lib.rs +0 -1705
  1116. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/rust.rs +0 -498
  1117. data/ext/cargo-vendor/wasmtime-wit-bindgen-12.0.1/src/types.rs +0 -185
  1118. data/ext/cargo-vendor/wast-63.0.0/.cargo-checksum.json +0 -1
  1119. data/ext/cargo-vendor/wast-63.0.0/Cargo.toml +0 -50
  1120. data/ext/cargo-vendor/wast-63.0.0/src/component/binary.rs +0 -1022
  1121. data/ext/cargo-vendor/wast-63.0.0/src/component/expand.rs +0 -880
  1122. data/ext/cargo-vendor/wast-63.0.0/src/component/resolve.rs +0 -1010
  1123. data/ext/cargo-vendor/wast-63.0.0/src/component/types.rs +0 -1013
  1124. data/ext/cargo-vendor/wast-63.0.0/src/component/wast.rs +0 -166
  1125. data/ext/cargo-vendor/wast-63.0.0/src/core/binary.rs +0 -1246
  1126. data/ext/cargo-vendor/wast-63.0.0/src/core/expr.rs +0 -1970
  1127. data/ext/cargo-vendor/wast-63.0.0/src/core/table.rs +0 -305
  1128. data/ext/cargo-vendor/wast-63.0.0/src/core/types.rs +0 -843
  1129. data/ext/cargo-vendor/wast-63.0.0/src/core/wast.rs +0 -236
  1130. data/ext/cargo-vendor/wast-63.0.0/src/lib.rs +0 -537
  1131. data/ext/cargo-vendor/wat-1.0.70/.cargo-checksum.json +0 -1
  1132. data/ext/cargo-vendor/wat-1.0.70/Cargo.toml +0 -27
  1133. data/ext/cargo-vendor/wiggle-12.0.1/.cargo-checksum.json +0 -1
  1134. data/ext/cargo-vendor/wiggle-12.0.1/Cargo.toml +0 -106
  1135. data/ext/cargo-vendor/wiggle-12.0.1/src/lib.rs +0 -1198
  1136. data/ext/cargo-vendor/wiggle-generate-12.0.1/.cargo-checksum.json +0 -1
  1137. data/ext/cargo-vendor/wiggle-generate-12.0.1/Cargo.toml +0 -58
  1138. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/config.rs +0 -697
  1139. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/types/record.rs +0 -117
  1140. data/ext/cargo-vendor/wiggle-generate-12.0.1/src/wasmtime.rs +0 -170
  1141. data/ext/cargo-vendor/wiggle-macro-12.0.1/.cargo-checksum.json +0 -1
  1142. data/ext/cargo-vendor/wiggle-macro-12.0.1/Cargo.toml +0 -55
  1143. data/ext/cargo-vendor/winapi-util-0.1.5/.cargo-checksum.json +0 -1
  1144. data/ext/cargo-vendor/winapi-util-0.1.5/COPYING +0 -3
  1145. data/ext/cargo-vendor/winapi-util-0.1.5/Cargo.toml +0 -30
  1146. data/ext/cargo-vendor/winapi-util-0.1.5/LICENSE-MIT +0 -21
  1147. data/ext/cargo-vendor/winapi-util-0.1.5/README.md +0 -58
  1148. data/ext/cargo-vendor/winapi-util-0.1.5/UNLICENSE +0 -24
  1149. data/ext/cargo-vendor/winapi-util-0.1.5/rustfmt.toml +0 -2
  1150. data/ext/cargo-vendor/winapi-util-0.1.5/src/console.rs +0 -402
  1151. data/ext/cargo-vendor/winapi-util-0.1.5/src/file.rs +0 -168
  1152. data/ext/cargo-vendor/winapi-util-0.1.5/src/lib.rs +0 -32
  1153. data/ext/cargo-vendor/winapi-util-0.1.5/src/win.rs +0 -246
  1154. data/ext/cargo-vendor/winch-codegen-0.10.1/.cargo-checksum.json +0 -1
  1155. data/ext/cargo-vendor/winch-codegen-0.10.1/Cargo.toml +0 -62
  1156. data/ext/cargo-vendor/winch-codegen-0.10.1/LICENSE +0 -219
  1157. data/ext/cargo-vendor/winch-codegen-0.10.1/src/abi/mod.rs +0 -251
  1158. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/call.rs +0 -199
  1159. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/context.rs +0 -368
  1160. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/control.rs +0 -437
  1161. data/ext/cargo-vendor/winch-codegen-0.10.1/src/codegen/mod.rs +0 -330
  1162. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/abi.rs +0 -250
  1163. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/address.rs +0 -144
  1164. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/asm.rs +0 -312
  1165. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/masm.rs +0 -293
  1166. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/aarch64/regs.rs +0 -166
  1167. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/reg.rs +0 -51
  1168. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/abi.rs +0 -375
  1169. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/address.rs +0 -17
  1170. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/asm.rs +0 -855
  1171. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/masm.rs +0 -516
  1172. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/mod.rs +0 -149
  1173. data/ext/cargo-vendor/winch-codegen-0.10.1/src/isa/x64/regs.rs +0 -192
  1174. data/ext/cargo-vendor/winch-codegen-0.10.1/src/masm.rs +0 -352
  1175. data/ext/cargo-vendor/winch-codegen-0.10.1/src/regalloc.rs +0 -70
  1176. data/ext/cargo-vendor/winch-codegen-0.10.1/src/regset.rs +0 -90
  1177. data/ext/cargo-vendor/winch-codegen-0.10.1/src/stack.rs +0 -235
  1178. data/ext/cargo-vendor/winch-codegen-0.10.1/src/trampoline.rs +0 -494
  1179. data/ext/cargo-vendor/winch-codegen-0.10.1/src/visitor.rs +0 -656
  1180. data/ext/cargo-vendor/wit-parser-0.9.2/.cargo-checksum.json +0 -1
  1181. data/ext/cargo-vendor/wit-parser-0.9.2/Cargo.toml +0 -62
  1182. data/ext/cargo-vendor/wit-parser-0.9.2/src/abi.rs +0 -2199
  1183. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/lex.rs +0 -717
  1184. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast/resolve.rs +0 -1437
  1185. data/ext/cargo-vendor/wit-parser-0.9.2/src/ast.rs +0 -1362
  1186. data/ext/cargo-vendor/wit-parser-0.9.2/src/lib.rs +0 -666
  1187. data/ext/cargo-vendor/wit-parser-0.9.2/src/live.rs +0 -116
  1188. data/ext/cargo-vendor/wit-parser-0.9.2/src/resolve.rs +0 -1749
  1189. data/ext/cargo-vendor/wit-parser-0.9.2/src/sizealign.rs +0 -145
  1190. data/ext/cargo-vendor/wit-parser-0.9.2/tests/all.rs +0 -168
  1191. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/empty-union.wit +0 -6
  1192. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/parse-fail/empty-union.wit.result +0 -5
  1193. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/types.wit +0 -61
  1194. data/ext/cargo-vendor/wit-parser-0.9.2/tests/ui/world-diamond.wit +0 -22
  1195. /data/ext/cargo-vendor/{addr2line-0.20.0 → cap-net-ext-2.0.0}/LICENSE-APACHE +0 -0
  1196. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1/LICENSE → cap-net-ext-2.0.0/LICENSE-Apache-2.0_WITH_LLVM-exception} +0 -0
  1197. /data/ext/cargo-vendor/{env_logger-0.10.0 → cap-net-ext-2.0.0}/LICENSE-MIT +0 -0
  1198. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-bforest-0.100.0}/LICENSE +0 -0
  1199. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/README.md +0 -0
  1200. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/src/node.rs +0 -0
  1201. /data/ext/cargo-vendor/{cranelift-bforest-0.99.1 → cranelift-bforest-0.100.0}/src/path.rs +0 -0
  1202. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-0.100.0}/LICENSE +0 -0
  1203. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/README.md +0 -0
  1204. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/benches/x64-evex-encoding.rs +0 -0
  1205. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/build.rs +0 -0
  1206. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/alias_analysis.rs +0 -0
  1207. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/cfg_printer.rs +0 -0
  1208. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/constant_hash.rs +0 -0
  1209. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ctxhash.rs +0 -0
  1210. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/cursor.rs +0 -0
  1211. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/data_value.rs +0 -0
  1212. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dbg.rs +0 -0
  1213. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dce.rs +0 -0
  1214. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/dominator_tree.rs +0 -0
  1215. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/cost.rs +0 -0
  1216. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/domtree.rs +0 -0
  1217. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph/elaborate.rs +0 -0
  1218. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/egraph.rs +0 -0
  1219. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/flowgraph.rs +0 -0
  1220. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/fx.rs +0 -0
  1221. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/inst_predicates.rs +0 -0
  1222. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/builder.rs +0 -0
  1223. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/layout.rs +0 -0
  1224. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/ir/progpoint.rs +0 -0
  1225. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/imms.rs +0 -0
  1226. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/regs.rs +0 -0
  1227. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  1228. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst/unwind.rs +0 -0
  1229. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/inst_neon.isle +0 -0
  1230. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  1231. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/mod.rs +0 -0
  1232. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/aarch64/settings.rs +0 -0
  1233. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/mod.rs +0 -0
  1234. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/emit_tests.rs +0 -0
  1235. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/regs.rs +0 -0
  1236. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  1237. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/inst/unwind.rs +0 -0
  1238. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  1239. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/lower.rs +0 -0
  1240. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/mod.rs +0 -0
  1241. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/riscv64/settings.rs +0 -0
  1242. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/args.rs +0 -0
  1243. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/emit.rs +0 -0
  1244. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/emit_tests.rs +0 -0
  1245. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/imms.rs +0 -0
  1246. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/regs.rs +0 -0
  1247. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  1248. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/inst/unwind.rs +0 -0
  1249. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  1250. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower/isle.rs +0 -0
  1251. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/lower.rs +0 -0
  1252. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/mod.rs +0 -0
  1253. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/s390x/settings.rs +0 -0
  1254. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/encoding/mod.rs +0 -0
  1255. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/encoding/vex.rs +0 -0
  1256. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/emit_state.rs +0 -0
  1257. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/regs.rs +0 -0
  1258. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  1259. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  1260. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/inst/unwind.rs +0 -0
  1261. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/lower/isle/generated_code.rs +0 -0
  1262. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/mod.rs +0 -0
  1263. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/isa/x64/settings.rs +0 -0
  1264. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/iterators.rs +0 -0
  1265. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/legalizer/globalvalue.rs +0 -0
  1266. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/legalizer/table.rs +0 -0
  1267. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/loop_analysis.rs +0 -0
  1268. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/blockorder.rs +0 -0
  1269. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/compile.rs +0 -0
  1270. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/helpers.rs +0 -0
  1271. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/inst_common.rs +0 -0
  1272. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/lower.rs +0 -0
  1273. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/machinst/valueregs.rs +0 -0
  1274. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/nan_canonicalization.rs +0 -0
  1275. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/README.md +0 -0
  1276. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/arithmetic.isle +0 -0
  1277. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/generated_code.rs +0 -0
  1278. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/remat.isle +0 -0
  1279. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts/shifts.isle +0 -0
  1280. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/opts.rs +0 -0
  1281. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/prelude_opt.isle +0 -0
  1282. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/print_errors.rs +0 -0
  1283. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/remove_constant_phis.rs +0 -0
  1284. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/result.rs +0 -0
  1285. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/scoped_hash_map.rs +0 -0
  1286. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/settings.rs +0 -0
  1287. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/souper_harvest.rs +0 -0
  1288. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/timing.rs +0 -0
  1289. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/unionfind.rs +0 -0
  1290. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/unreachable_code.rs +0 -0
  1291. /data/ext/cargo-vendor/{cranelift-codegen-0.99.1 → cranelift-codegen-0.100.0}/src/write.rs +0 -0
  1292. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-meta-0.100.0}/LICENSE +0 -0
  1293. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/README.md +0 -0
  1294. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/formats.rs +0 -0
  1295. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/instructions.rs +0 -0
  1296. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/isa.rs +0 -0
  1297. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/mod.rs +0 -0
  1298. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/operands.rs +0 -0
  1299. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/settings.rs +0 -0
  1300. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/types.rs +0 -0
  1301. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/cdsl/typevar.rs +0 -0
  1302. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/error.rs +0 -0
  1303. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/gen_settings.rs +0 -0
  1304. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/gen_types.rs +0 -0
  1305. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/arm64.rs +0 -0
  1306. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/mod.rs +0 -0
  1307. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/riscv64.rs +0 -0
  1308. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/s390x.rs +0 -0
  1309. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/isa/x86.rs +0 -0
  1310. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/lib.rs +0 -0
  1311. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/entities.rs +0 -0
  1312. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/formats.rs +0 -0
  1313. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/immediates.rs +0 -0
  1314. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/mod.rs +0 -0
  1315. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/settings.rs +0 -0
  1316. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/shared/types.rs +0 -0
  1317. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/srcgen.rs +0 -0
  1318. /data/ext/cargo-vendor/{cranelift-codegen-meta-0.99.1 → cranelift-codegen-meta-0.100.0}/src/unique_table.rs +0 -0
  1319. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-codegen-shared-0.100.0}/LICENSE +0 -0
  1320. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/README.md +0 -0
  1321. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/src/constant_hash.rs +0 -0
  1322. /data/ext/cargo-vendor/{cranelift-codegen-shared-0.99.1 → cranelift-codegen-shared-0.100.0}/src/constants.rs +0 -0
  1323. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-control-0.100.0}/LICENSE +0 -0
  1324. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/README.md +0 -0
  1325. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/chaos.rs +0 -0
  1326. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/lib.rs +0 -0
  1327. /data/ext/cargo-vendor/{cranelift-control-0.99.1 → cranelift-control-0.100.0}/src/zero_sized.rs +0 -0
  1328. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-entity-0.100.0}/LICENSE +0 -0
  1329. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/README.md +0 -0
  1330. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/boxed_slice.rs +0 -0
  1331. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/iter.rs +0 -0
  1332. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/keys.rs +0 -0
  1333. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/map.rs +0 -0
  1334. /data/ext/cargo-vendor/{cranelift-entity-0.99.1 → cranelift-entity-0.100.0}/src/set.rs +0 -0
  1335. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-frontend-0.100.0}/LICENSE +0 -0
  1336. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/README.md +0 -0
  1337. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/frontend.rs +0 -0
  1338. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/ssa.rs +0 -0
  1339. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/switch.rs +0 -0
  1340. /data/ext/cargo-vendor/{cranelift-frontend-0.99.1 → cranelift-frontend-0.100.0}/src/variable.rs +0 -0
  1341. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/README.md +0 -0
  1342. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/build.rs +0 -0
  1343. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/bad_converters.isle +0 -0
  1344. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  1345. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  1346. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/error1.isle +0 -0
  1347. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/extra_parens.isle +0 -0
  1348. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/impure_expression.isle +0 -0
  1349. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/impure_rhs.isle +0 -0
  1350. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
  1351. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/fail/multi_prio.isle +0 -0
  1352. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/borrows.isle +0 -0
  1353. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/borrows_main.rs +0 -0
  1354. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/iflets.isle +0 -0
  1355. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/iflets_main.rs +0 -0
  1356. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_constructor.isle +0 -0
  1357. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_constructor_main.rs +0 -0
  1358. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_extractor.isle +0 -0
  1359. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/multi_extractor_main.rs +0 -0
  1360. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/test.isle +0 -0
  1361. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/link/test_main.rs +0 -0
  1362. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/bound_var.isle +0 -0
  1363. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/construct_and_extract.isle +0 -0
  1364. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/conversions.isle +0 -0
  1365. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/conversions_extern.isle +0 -0
  1366. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/let.isle +0 -0
  1367. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/nodebug.isle +0 -0
  1368. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
  1369. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test2.isle +0 -0
  1370. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test3.isle +0 -0
  1371. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/test4.isle +0 -0
  1372. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/pass/tutorial.isle +0 -0
  1373. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/iconst.isle +0 -0
  1374. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/iconst_main.rs +0 -0
  1375. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/let_shadowing.isle +0 -0
  1376. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/isle_examples/run/let_shadowing_main.rs +0 -0
  1377. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/ast.rs +0 -0
  1378. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/codegen.rs +0 -0
  1379. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/compile.rs +0 -0
  1380. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/error.rs +0 -0
  1381. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/lexer.rs +0 -0
  1382. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/lib.rs +0 -0
  1383. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/log.rs +0 -0
  1384. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/overlap.rs +0 -0
  1385. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/parser.rs +0 -0
  1386. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/sema.rs +0 -0
  1387. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/serialize.rs +0 -0
  1388. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/src/trie_again.rs +0 -0
  1389. /data/ext/cargo-vendor/{cranelift-isle-0.99.1 → cranelift-isle-0.100.0}/tests/run_tests.rs +0 -0
  1390. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-native-0.100.0}/LICENSE +0 -0
  1391. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-native-0.100.0}/README.md +0 -0
  1392. /data/ext/cargo-vendor/{cranelift-native-0.99.1 → cranelift-native-0.100.0}/src/riscv.rs +0 -0
  1393. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → cranelift-wasm-0.100.0}/LICENSE +0 -0
  1394. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/README.md +0 -0
  1395. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/code_translator/bounds_checks.rs +0 -0
  1396. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/environ/mod.rs +0 -0
  1397. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/module_translator.rs +0 -0
  1398. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/src/state.rs +0 -0
  1399. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/tests/wasm_testsuite.rs +0 -0
  1400. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/arith.wat +0 -0
  1401. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/br_table.wat +0 -0
  1402. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/call-simd.wat +0 -0
  1403. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/call.wat +0 -0
  1404. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_fannkuch.wat +0 -0
  1405. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_fasta.wat +0 -0
  1406. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_ifs.wat +0 -0
  1407. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/embenchen_primes.wat +0 -0
  1408. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/fac-multi-value.wat +0 -0
  1409. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/fibonacci.wat +0 -0
  1410. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/globals.wat +0 -0
  1411. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/icall-simd.wat +0 -0
  1412. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/icall.wat +0 -0
  1413. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-0.wat +0 -0
  1414. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-1.wat +0 -0
  1415. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-2.wat +0 -0
  1416. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-3.wat +0 -0
  1417. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-4.wat +0 -0
  1418. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-5.wat +0 -0
  1419. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-reachability-translation-6.wat +0 -0
  1420. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  1421. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/if-unreachable-else-params.wat +0 -0
  1422. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  1423. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/memory.wat +0 -0
  1424. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-0.wat +0 -0
  1425. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-1.wat +0 -0
  1426. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-10.wat +0 -0
  1427. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-11.wat +0 -0
  1428. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-12.wat +0 -0
  1429. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-13.wat +0 -0
  1430. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-14.wat +0 -0
  1431. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-15.wat +0 -0
  1432. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-16.wat +0 -0
  1433. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-17.wat +0 -0
  1434. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-2.wat +0 -0
  1435. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-3.wat +0 -0
  1436. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-4.wat +0 -0
  1437. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-5.wat +0 -0
  1438. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-6.wat +0 -0
  1439. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-7.wat +0 -0
  1440. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-8.wat +0 -0
  1441. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/multi-9.wat +0 -0
  1442. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/nullref.wat +0 -0
  1443. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/passive-data.wat +0 -0
  1444. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/pr2303.wat +0 -0
  1445. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/pr2559.wat +0 -0
  1446. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/ref-func-0.wat +0 -0
  1447. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/rust_fannkuch.wat +0 -0
  1448. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/select.wat +0 -0
  1449. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/simd-store.wat +0 -0
  1450. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/simd.wat +0 -0
  1451. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/table-copy.wat +0 -0
  1452. /data/ext/cargo-vendor/{cranelift-wasm-0.99.1 → cranelift-wasm-0.100.0}/wasmtests/unreachable_code.wat +0 -0
  1453. /data/ext/cargo-vendor/{fallible-iterator-0.2.0 → fallible-iterator-0.3.0}/LICENSE-APACHE +0 -0
  1454. /data/ext/cargo-vendor/{fallible-iterator-0.2.0 → fallible-iterator-0.3.0}/LICENSE-MIT +0 -0
  1455. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/LICENSE-APACHE +0 -0
  1456. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/LICENSE-MIT +0 -0
  1457. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/README.md +0 -0
  1458. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/crates-io.md +0 -0
  1459. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/format.rs +0 -0
  1460. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/seed.rs +0 -0
  1461. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/de/size_hint.rs +0 -0
  1462. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/de.rs +0 -0
  1463. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/doc.rs +0 -0
  1464. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/mod.rs +0 -0
  1465. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/private/ser.rs +0 -0
  1466. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/ser/impossible.rs +0 -0
  1467. /data/ext/cargo-vendor/{serde-1.0.185 → serde-1.0.188}/src/std_error.rs +0 -0
  1468. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/LICENSE-APACHE +0 -0
  1469. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/LICENSE-MIT +0 -0
  1470. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/README.md +0 -0
  1471. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/crates-io.md +0 -0
  1472. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/bound.rs +0 -0
  1473. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/de.rs +0 -0
  1474. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/dummy.rs +0 -0
  1475. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/fragment.rs +0 -0
  1476. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/ast.rs +0 -0
  1477. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/attr.rs +0 -0
  1478. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/case.rs +0 -0
  1479. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/check.rs +0 -0
  1480. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/ctxt.rs +0 -0
  1481. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/mod.rs +0 -0
  1482. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/receiver.rs +0 -0
  1483. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/respan.rs +0 -0
  1484. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/internals/symbol.rs +0 -0
  1485. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/pretend.rs +0 -0
  1486. /data/ext/cargo-vendor/{serde_derive-1.0.185 → serde_derive-1.0.188}/src/this.rs +0 -0
  1487. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-cap-std-sync-13.0.0}/LICENSE +0 -0
  1488. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/README.md +0 -0
  1489. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/clocks.rs +0 -0
  1490. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/dir.rs +0 -0
  1491. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/file.rs +0 -0
  1492. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/net.rs +0 -0
  1493. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched/unix.rs +0 -0
  1494. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched/windows.rs +0 -0
  1495. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/sched.rs +0 -0
  1496. /data/ext/cargo-vendor/{wasi-cap-std-sync-12.0.1 → wasi-cap-std-sync-13.0.0}/src/stdio.rs +0 -0
  1497. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasi-common-13.0.0}/LICENSE +0 -0
  1498. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/README.md +0 -0
  1499. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/README.md +0 -0
  1500. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/docs/README.md +0 -0
  1501. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/README.md +0 -0
  1502. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/docs.md +0 -0
  1503. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  1504. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  1505. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  1506. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  1507. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  1508. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  1509. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  1510. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  1511. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  1512. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  1513. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  1514. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
  1515. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  1516. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  1517. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/docs.html +0 -0
  1518. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/docs.md +0 -0
  1519. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  1520. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  1521. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/proposal-template/README.md +0 -0
  1522. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/proposals/README.md +0 -0
  1523. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/snapshots/README.md +0 -0
  1524. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/WASI/standard/README.md +0 -0
  1525. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/build.rs +0 -0
  1526. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/clocks.rs +0 -0
  1527. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/ctx.rs +0 -0
  1528. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/dir.rs +0 -0
  1529. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/error.rs +0 -0
  1530. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/file.rs +0 -0
  1531. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/lib.rs +0 -0
  1532. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/pipe.rs +0 -0
  1533. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/random.rs +0 -0
  1534. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/sched/subscription.rs +0 -0
  1535. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/sched.rs +0 -0
  1536. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/mod.rs +0 -0
  1537. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_0.rs +0 -0
  1538. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_1/error.rs +0 -0
  1539. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/snapshots/preview_1.rs +0 -0
  1540. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/string_array.rs +0 -0
  1541. /data/ext/cargo-vendor/{wasi-common-12.0.1 → wasi-common-13.0.0}/src/table.rs +0 -0
  1542. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasm-encoder-0.32.0}/LICENSE +0 -0
  1543. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/README.md +0 -0
  1544. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/aliases.rs +0 -0
  1545. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/builder.rs +0 -0
  1546. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/canonicals.rs +0 -0
  1547. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/components.rs +0 -0
  1548. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/exports.rs +0 -0
  1549. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/imports.rs +0 -0
  1550. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/instances.rs +0 -0
  1551. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/modules.rs +0 -0
  1552. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/names.rs +0 -0
  1553. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component/start.rs +0 -0
  1554. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/component.rs +0 -0
  1555. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/code.rs +0 -0
  1556. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/custom.rs +0 -0
  1557. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/data.rs +0 -0
  1558. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/dump.rs +0 -0
  1559. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/elements.rs +0 -0
  1560. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/exports.rs +0 -0
  1561. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/functions.rs +0 -0
  1562. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/globals.rs +0 -0
  1563. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/imports.rs +0 -0
  1564. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/linking.rs +0 -0
  1565. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/memories.rs +0 -0
  1566. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/names.rs +0 -0
  1567. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/producers.rs +0 -0
  1568. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/start.rs +0 -0
  1569. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/tables.rs +0 -0
  1570. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/tags.rs +0 -0
  1571. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core/types.rs +0 -0
  1572. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/core.rs +0 -0
  1573. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/lib.rs +0 -0
  1574. /data/ext/cargo-vendor/{wasm-encoder-0.31.1 → wasm-encoder-0.32.0}/src/raw.rs +0 -0
  1575. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasm-encoder-0.33.1}/LICENSE +0 -0
  1576. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmparser-0.112.0}/LICENSE +0 -0
  1577. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/README.md +0 -0
  1578. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/benches/benchmark.rs +0 -0
  1579. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/examples/simple.rs +0 -0
  1580. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/binary_reader.rs +0 -0
  1581. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/lib.rs +0 -0
  1582. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/parser.rs +0 -0
  1583. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/aliases.rs +0 -0
  1584. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/canonicals.rs +0 -0
  1585. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/exports.rs +0 -0
  1586. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/imports.rs +0 -0
  1587. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/instances.rs +0 -0
  1588. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/names.rs +0 -0
  1589. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component/start.rs +0 -0
  1590. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/component.rs +0 -0
  1591. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/code.rs +0 -0
  1592. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/coredumps.rs +0 -0
  1593. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/custom.rs +0 -0
  1594. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/data.rs +0 -0
  1595. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.112.0}/src/readers/core/dylink0.rs +0 -0
  1596. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/elements.rs +0 -0
  1597. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/exports.rs +0 -0
  1598. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/functions.rs +0 -0
  1599. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/globals.rs +0 -0
  1600. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/imports.rs +0 -0
  1601. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/init.rs +0 -0
  1602. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/memories.rs +0 -0
  1603. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/names.rs +0 -0
  1604. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/operators.rs +0 -0
  1605. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/producers.rs +0 -0
  1606. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/tables.rs +0 -0
  1607. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers/core/tags.rs +0 -0
  1608. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.112.0}/src/readers/core.rs +0 -0
  1609. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/readers.rs +0 -0
  1610. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/resources.rs +0 -0
  1611. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/func.rs +0 -0
  1612. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/names.rs +0 -0
  1613. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/src/validator/operators.rs +0 -0
  1614. /data/ext/cargo-vendor/{wasmparser-0.110.0 → wasmparser-0.112.0}/tests/big-module.rs +0 -0
  1615. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmparser-0.113.1}/LICENSE +0 -0
  1616. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/README.md +0 -0
  1617. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/benches/benchmark.rs +0 -0
  1618. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/examples/simple.rs +0 -0
  1619. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/parser.rs +0 -0
  1620. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/aliases.rs +0 -0
  1621. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/canonicals.rs +0 -0
  1622. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/exports.rs +0 -0
  1623. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/imports.rs +0 -0
  1624. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/instances.rs +0 -0
  1625. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/names.rs +0 -0
  1626. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component/start.rs +0 -0
  1627. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/component.rs +0 -0
  1628. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/code.rs +0 -0
  1629. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/coredumps.rs +0 -0
  1630. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/custom.rs +0 -0
  1631. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/data.rs +0 -0
  1632. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/elements.rs +0 -0
  1633. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/exports.rs +0 -0
  1634. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/functions.rs +0 -0
  1635. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/globals.rs +0 -0
  1636. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/imports.rs +0 -0
  1637. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/init.rs +0 -0
  1638. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/memories.rs +0 -0
  1639. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/names.rs +0 -0
  1640. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/operators.rs +0 -0
  1641. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/producers.rs +0 -0
  1642. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/tables.rs +0 -0
  1643. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers/core/tags.rs +0 -0
  1644. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/readers.rs +0 -0
  1645. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/resources.rs +0 -0
  1646. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/validator/func.rs +0 -0
  1647. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/src/validator/names.rs +0 -0
  1648. /data/ext/cargo-vendor/{wasmparser-0.111.0 → wasmparser-0.113.1}/tests/big-module.rs +0 -0
  1649. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmprinter-0.2.66}/LICENSE +0 -0
  1650. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmprinter-0.2.66}/README.md +0 -0
  1651. /data/ext/cargo-vendor/{wasmprinter-0.2.63 → wasmprinter-0.2.66}/tests/all.rs +0 -0
  1652. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-13.0.0}/LICENSE +0 -0
  1653. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/README.md +0 -0
  1654. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/code.rs +0 -0
  1655. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/compiler.rs +0 -0
  1656. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func/host.rs +0 -0
  1657. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func/options.rs +0 -0
  1658. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/func.rs +0 -0
  1659. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/matching.rs +0 -0
  1660. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/resources.rs +0 -0
  1661. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/storage.rs +0 -0
  1662. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/component/store.rs +0 -0
  1663. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/coredump.rs +0 -0
  1664. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/externals.rs +0 -0
  1665. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/func/typed.rs +0 -0
  1666. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/func.rs +0 -0
  1667. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/lib.rs +0 -0
  1668. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/linker.rs +0 -0
  1669. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/memory.rs +0 -0
  1670. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/module/registry.rs +0 -0
  1671. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/profiling.rs +0 -0
  1672. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/ref.rs +0 -0
  1673. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/resources.rs +0 -0
  1674. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/signatures.rs +0 -0
  1675. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/context.rs +0 -0
  1676. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/data.rs +0 -0
  1677. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/store/func_refs.rs +0 -0
  1678. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/func.rs +0 -0
  1679. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/global.rs +0 -0
  1680. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trampoline/table.rs +0 -0
  1681. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/trap.rs +0 -0
  1682. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/types/matching.rs +0 -0
  1683. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/types.rs +0 -0
  1684. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/unix.rs +0 -0
  1685. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/values.rs +0 -0
  1686. /data/ext/cargo-vendor/{wasmtime-12.0.1 → wasmtime-13.0.0}/src/windows.rs +0 -0
  1687. /data/ext/cargo-vendor/{wasmtime-asm-macros-12.0.1 → wasmtime-asm-macros-13.0.0}/src/lib.rs +0 -0
  1688. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-cache-13.0.0}/LICENSE +0 -0
  1689. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/build.rs +0 -0
  1690. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/config/tests.rs +0 -0
  1691. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/lib.rs +0 -0
  1692. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/tests.rs +0 -0
  1693. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  1694. /data/ext/cargo-vendor/{wasmtime-cache-12.0.1 → wasmtime-cache-13.0.0}/tests/cache_write_default_config.rs +0 -0
  1695. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/src/lib.rs +0 -0
  1696. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/char.wit +0 -0
  1697. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/conventions.wit +0 -0
  1698. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/direct-import.wit +0 -0
  1699. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/empty.wit +0 -0
  1700. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/flags.wit +0 -0
  1701. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/floats.wit +0 -0
  1702. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/function-new.wit +0 -0
  1703. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/integers.wit +0 -0
  1704. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/lists.wit +0 -0
  1705. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/many-arguments.wit +0 -0
  1706. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/multi-return.wit +0 -0
  1707. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/records.wit +0 -0
  1708. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/rename.wit +0 -0
  1709. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/share-types.wit +0 -0
  1710. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-functions.wit +0 -0
  1711. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-lists.wit +0 -0
  1712. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/simple-wasi.wit +0 -0
  1713. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/small-anonymous.wit +0 -0
  1714. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke-default.wit +0 -0
  1715. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke-export.wit +0 -0
  1716. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/smoke.wit +0 -0
  1717. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/strings.wit +0 -0
  1718. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/use-paths.wit +0 -0
  1719. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen/worlds-with-types.wit +0 -0
  1720. /data/ext/cargo-vendor/{wasmtime-component-macro-12.0.1 → wasmtime-component-macro-13.0.0}/tests/codegen.rs +0 -0
  1721. /data/ext/cargo-vendor/{wasmtime-component-util-12.0.1 → wasmtime-component-util-13.0.0}/src/lib.rs +0 -0
  1722. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-cranelift-13.0.0}/LICENSE +0 -0
  1723. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/SECURITY.md +0 -0
  1724. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/compiler/component.rs +0 -0
  1725. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/gc.rs +0 -0
  1726. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/address_transform.rs +0 -0
  1727. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/expression.rs +0 -0
  1728. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/line_program.rs +0 -0
  1729. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/mod.rs +0 -0
  1730. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  1731. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/refs.rs +0 -0
  1732. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/simulate.rs +0 -0
  1733. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/unit.rs +0 -0
  1734. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/transform/utils.rs +0 -0
  1735. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/debug/write_debuginfo.rs +0 -0
  1736. /data/ext/cargo-vendor/{wasmtime-cranelift-12.0.1 → wasmtime-cranelift-13.0.0}/src/lib.rs +0 -0
  1737. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/compiled_function.rs +0 -0
  1738. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/isa_builder.rs +0 -0
  1739. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/lib.rs +0 -0
  1740. /data/ext/cargo-vendor/{wasmtime-cranelift-shared-12.0.1 → wasmtime-cranelift-shared-13.0.0}/src/obj.rs +0 -0
  1741. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-environ-13.0.0}/LICENSE +0 -0
  1742. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/examples/factc.rs +0 -0
  1743. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/dfg.rs +0 -0
  1744. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate/adapt.rs +0 -0
  1745. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate/inline.rs +0 -0
  1746. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/translate.rs +0 -0
  1747. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/types/resources.rs +0 -0
  1748. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  1749. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/component.rs +0 -0
  1750. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/core_types.rs +0 -0
  1751. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/signature.rs +0 -0
  1752. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact/traps.rs +0 -0
  1753. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/fact.rs +0 -0
  1754. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/obj.rs +0 -0
  1755. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/ref_bits.rs +0 -0
  1756. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/scopevec.rs +0 -0
  1757. /data/ext/cargo-vendor/{wasmtime-environ-12.0.1 → wasmtime-environ-13.0.0}/src/trap_encoding.rs +0 -0
  1758. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-fiber-13.0.0}/LICENSE +0 -0
  1759. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/build.rs +0 -0
  1760. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/lib.rs +0 -0
  1761. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/aarch64.rs +0 -0
  1762. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/arm.rs +0 -0
  1763. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/riscv64.rs +0 -0
  1764. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/s390x.S +0 -0
  1765. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/x86.rs +0 -0
  1766. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix/x86_64.rs +0 -0
  1767. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/unix.rs +0 -0
  1768. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/windows.c +0 -0
  1769. /data/ext/cargo-vendor/{wasmtime-fiber-12.0.1 → wasmtime-fiber-13.0.0}/src/windows.rs +0 -0
  1770. /data/ext/cargo-vendor/{wasmtime-types-12.0.1 → wasmtime-jit-13.0.0}/LICENSE +0 -0
  1771. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/code_memory.rs +0 -0
  1772. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/debug.rs +0 -0
  1773. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/demangling.rs +0 -0
  1774. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/jitdump.rs +0 -0
  1775. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/perfmap.rs +0 -0
  1776. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling/vtune.rs +0 -0
  1777. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/profiling.rs +0 -0
  1778. /data/ext/cargo-vendor/{wasmtime-jit-12.0.1 → wasmtime-jit-13.0.0}/src/unwind.rs +0 -0
  1779. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/README.md +0 -0
  1780. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/gdb_jit_int.rs +0 -0
  1781. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/lib.rs +0 -0
  1782. /data/ext/cargo-vendor/{wasmtime-jit-debug-12.0.1 → wasmtime-jit-debug-13.0.0}/src/perf_jitdump.rs +0 -0
  1783. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/lib.rs +0 -0
  1784. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/libc.rs +0 -0
  1785. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/miri.rs +0 -0
  1786. /data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-12.0.1 → wasmtime-jit-icache-coherence-13.0.0}/src/win.rs +0 -0
  1787. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-runtime-13.0.0}/LICENSE +0 -0
  1788. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/build.rs +0 -0
  1789. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component/libcalls.rs +0 -0
  1790. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component/resources.rs +0 -0
  1791. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/component.rs +0 -0
  1792. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/cow.rs +0 -0
  1793. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/debug_builtins.rs +0 -0
  1794. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/export.rs +0 -0
  1795. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/externref.rs +0 -0
  1796. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/helpers.c +0 -0
  1797. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/imports.rs +0 -0
  1798. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
  1799. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
  1800. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/miri.rs +0 -0
  1801. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/unix.rs +0 -0
  1802. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap/windows.rs +0 -0
  1803. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap.rs +0 -0
  1804. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/mmap_vec.rs +0 -0
  1805. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/module_id.rs +0 -0
  1806. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/send_sync_ptr.rs +0 -0
  1807. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/store_box.rs +0 -0
  1808. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/aarch64.rs +0 -0
  1809. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/riscv64.rs +0 -0
  1810. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/s390x.rs +0 -0
  1811. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines/x86_64.rs +0 -0
  1812. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/trampolines.rs +0 -0
  1813. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
  1814. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
  1815. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
  1816. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
  1817. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/backtrace.rs +0 -0
  1818. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/coredump.rs +0 -0
  1819. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/unix.rs +0 -0
  1820. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/traphandlers/windows.rs +0 -0
  1821. /data/ext/cargo-vendor/{wasmtime-runtime-12.0.1 → wasmtime-runtime-13.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
  1822. /data/ext/cargo-vendor/{wast-63.0.0 → wasmtime-types-13.0.0}/LICENSE +0 -0
  1823. /data/ext/cargo-vendor/{wasmtime-types-12.0.1 → wasmtime-types-13.0.0}/src/error.rs +0 -0
  1824. /data/ext/cargo-vendor/{wasmtime-versioned-export-macros-12.0.1 → wasmtime-versioned-export-macros-13.0.0}/src/lib.rs +0 -0
  1825. /data/ext/cargo-vendor/{wat-1.0.70 → wasmtime-wasi-13.0.0}/LICENSE +0 -0
  1826. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/README.md +0 -0
  1827. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/build.rs +0 -0
  1828. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/clocks/host.rs +0 -0
  1829. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/clocks.rs +0 -0
  1830. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/error.rs +0 -0
  1831. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1/src/preview2/preview2 → wasmtime-wasi-13.0.0/src/preview2/host}/random.rs +0 -0
  1832. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/poll.rs +0 -0
  1833. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/src/preview2/random.rs +0 -0
  1834. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1/wit/deps/wasi-cli-base → wasmtime-wasi-13.0.0/wit/deps/cli}/stdio.wit +0 -0
  1835. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/monotonic-clock.wit +0 -0
  1836. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/timezone.wit +0 -0
  1837. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/clocks/wall-clock.wit +0 -0
  1838. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/http/incoming-handler.wit +0 -0
  1839. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/http/outgoing-handler.wit +0 -0
  1840. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/poll/poll.wit +0 -0
  1841. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/insecure-seed.wit +0 -0
  1842. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/insecure.wit +0 -0
  1843. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/random/random.wit +0 -0
  1844. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/wit/deps/sockets/instance-network.wit +0 -0
  1845. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/witx/typenames.witx +0 -0
  1846. /data/ext/cargo-vendor/{wasmtime-wasi-12.0.1 → wasmtime-wasi-13.0.0}/witx/wasi_snapshot_preview1.witx +0 -0
  1847. /data/ext/cargo-vendor/{file-per-thread-logger-0.2.0 → wasmtime-winch-13.0.0}/LICENSE +0 -0
  1848. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/builder.rs +0 -0
  1849. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/compiler.rs +0 -0
  1850. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → wasmtime-winch-13.0.0}/src/lib.rs +0 -0
  1851. /data/ext/cargo-vendor/{wasmtime-wit-bindgen-12.0.1 → wasmtime-wit-bindgen-13.0.0}/src/source.rs +0 -0
  1852. /data/ext/cargo-vendor/{wiggle-12.0.1 → wast-65.0.1}/LICENSE +0 -0
  1853. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/README.md +0 -0
  1854. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/alias.rs +0 -0
  1855. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/component.rs +0 -0
  1856. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/custom.rs +0 -0
  1857. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/export.rs +0 -0
  1858. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/func.rs +0 -0
  1859. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/import.rs +0 -0
  1860. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/instance.rs +0 -0
  1861. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/item_ref.rs +0 -0
  1862. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component/module.rs +0 -0
  1863. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/component.rs +0 -0
  1864. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/custom.rs +0 -0
  1865. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/export.rs +0 -0
  1866. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/func.rs +0 -0
  1867. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/global.rs +0 -0
  1868. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/import.rs +0 -0
  1869. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/memory.rs +0 -0
  1870. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/module.rs +0 -0
  1871. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/deinline_import_export.rs +0 -0
  1872. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/mod.rs +0 -0
  1873. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/names.rs +0 -0
  1874. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/resolve/types.rs +0 -0
  1875. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core/tag.rs +0 -0
  1876. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/core.rs +0 -0
  1877. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/encode.rs +0 -0
  1878. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/error.rs +0 -0
  1879. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/gensym.rs +0 -0
  1880. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/lexer.rs +0 -0
  1881. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/names.rs +0 -0
  1882. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/parser.rs +0 -0
  1883. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/token.rs +0 -0
  1884. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/wast.rs +0 -0
  1885. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/src/wat.rs +0 -0
  1886. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/annotations.rs +0 -0
  1887. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/comments.rs +0 -0
  1888. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-core-func-alias.wat +0 -0
  1889. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-core-func-alias.wat.err +0 -0
  1890. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-func-alias.wat +0 -0
  1891. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-func-alias.wat.err +0 -0
  1892. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-index.wat +0 -0
  1893. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
  1894. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name.wat +0 -0
  1895. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
  1896. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name2.wat +0 -0
  1897. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
  1898. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name3.wat +0 -0
  1899. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
  1900. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block1.wat +0 -0
  1901. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block1.wat.err +0 -0
  1902. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block2.wat +0 -0
  1903. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block2.wat.err +0 -0
  1904. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block3.wat +0 -0
  1905. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/block3.wat.err +0 -0
  1906. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  1907. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  1908. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  1909. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  1910. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  1911. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  1912. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  1913. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  1914. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  1915. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  1916. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  1917. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  1918. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  1919. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  1920. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  1921. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  1922. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  1923. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  1924. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  1925. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  1926. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  1927. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  1928. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  1929. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  1930. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  1931. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  1932. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  1933. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  1934. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  1935. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  1936. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  1937. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  1938. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  1939. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  1940. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  1941. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  1942. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
  1943. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
  1944. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
  1945. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
  1946. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
  1947. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
  1948. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
  1949. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
  1950. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
  1951. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
  1952. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
  1953. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
  1954. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
  1955. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
  1956. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
  1957. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
  1958. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
  1959. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
  1960. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/inline1.wat +0 -0
  1961. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/inline1.wat.err +0 -0
  1962. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
  1963. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
  1964. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string1.wat +0 -0
  1965. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string1.wat.err +0 -0
  1966. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string10.wat +0 -0
  1967. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string10.wat.err +0 -0
  1968. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string11.wat +0 -0
  1969. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string11.wat.err +0 -0
  1970. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string12.wat +0 -0
  1971. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string12.wat.err +0 -0
  1972. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string13.wat +0 -0
  1973. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string13.wat.err +0 -0
  1974. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string14.wat +0 -0
  1975. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string14.wat.err +0 -0
  1976. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string15.wat +0 -0
  1977. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string15.wat.err +0 -0
  1978. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string16.wat +0 -0
  1979. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string16.wat.err +0 -0
  1980. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string2.wat +0 -0
  1981. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string2.wat.err +0 -0
  1982. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string3.wat +0 -0
  1983. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string3.wat.err +0 -0
  1984. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string4.wat +0 -0
  1985. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string4.wat.err +0 -0
  1986. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string5.wat +0 -0
  1987. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string5.wat.err +0 -0
  1988. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string6.wat +0 -0
  1989. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string6.wat.err +0 -0
  1990. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string7.wat +0 -0
  1991. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string7.wat.err +0 -0
  1992. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string8.wat +0 -0
  1993. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string8.wat.err +0 -0
  1994. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string9.wat +0 -0
  1995. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/string9.wat.err +0 -0
  1996. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/unbalanced.wat +0 -0
  1997. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
  1998. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/parse-fail.rs +0 -0
  1999. /data/ext/cargo-vendor/{wast-63.0.0 → wast-65.0.1}/tests/recursive.rs +0 -0
  2000. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wat-1.0.73}/LICENSE +0 -0
  2001. /data/ext/cargo-vendor/{wat-1.0.70 → wat-1.0.73}/README.md +0 -0
  2002. /data/ext/cargo-vendor/{wat-1.0.70 → wat-1.0.73}/src/lib.rs +0 -0
  2003. /data/ext/cargo-vendor/{wiggle-macro-12.0.1 → wiggle-13.0.0}/LICENSE +0 -0
  2004. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/README.md +0 -0
  2005. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/borrow.rs +0 -0
  2006. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/error.rs +0 -0
  2007. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/guest_type.rs +0 -0
  2008. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/region.rs +0 -0
  2009. /data/ext/cargo-vendor/{wiggle-12.0.1 → wiggle-13.0.0}/src/wasmtime.rs +0 -0
  2010. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/README.md +0 -0
  2011. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/codegen_settings.rs +0 -0
  2012. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/funcs.rs +0 -0
  2013. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/lib.rs +0 -0
  2014. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/lifetimes.rs +0 -0
  2015. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/module_trait.rs +0 -0
  2016. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/names.rs +0 -0
  2017. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/error.rs +0 -0
  2018. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/flags.rs +0 -0
  2019. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/handle.rs +0 -0
  2020. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/mod.rs +0 -0
  2021. /data/ext/cargo-vendor/{wiggle-generate-12.0.1 → wiggle-generate-13.0.0}/src/types/variant.rs +0 -0
  2022. /data/ext/cargo-vendor/{wiggle-macro-12.0.1 → wiggle-macro-13.0.0}/src/lib.rs +0 -0
  2023. /data/ext/cargo-vendor/{wasmtime-winch-12.0.1 → winch-codegen-0.11.0}/LICENSE +0 -0
  2024. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/build.rs +0 -0
  2025. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/abi/local.rs +0 -0
  2026. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/codegen/env.rs +0 -0
  2027. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/frame/mod.rs +0 -0
  2028. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/isa/aarch64/mod.rs +0 -0
  2029. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/isa/mod.rs +0 -0
  2030. /data/ext/cargo-vendor/{winch-codegen-0.10.1 → winch-codegen-0.11.0}/src/lib.rs +0 -0
  2031. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/README.md +0 -0
  2032. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/src/ast/toposort.rs +0 -0
  2033. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/comments.wit +0 -0
  2034. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/deps/bar/root.wit +0 -0
  2035. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/deps/baz/root.wit +0 -0
  2036. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/complex-include/root.wit +0 -0
  2037. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/cross-package-resource/deps/foo/foo.wit +0 -0
  2038. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/cross-package-resource/foo.wit +0 -0
  2039. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/deps/dep1/types.wit +0 -0
  2040. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/deps/dep2/types.wit +0 -0
  2041. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/diamond1/join.wit +0 -0
  2042. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/shared1.wit +0 -0
  2043. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/shared2.wit +0 -0
  2044. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/disambiguate-diamond/world.wit +0 -0
  2045. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/embedded.wit.md +0 -0
  2046. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/empty.wit +0 -0
  2047. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/another-pkg/other-doc.wit +0 -0
  2048. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/corp/saas.wit +0 -0
  2049. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/different-pkg/the-doc.wit +0 -0
  2050. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/foreign-pkg/the-doc.wit +0 -0
  2051. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/some-pkg/some-doc.wit +0 -0
  2052. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/wasi/clocks.wit +0 -0
  2053. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/deps/wasi/filesystem.wit +0 -0
  2054. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps/root.wit +0 -0
  2055. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/another-pkg/other-doc.wit +0 -0
  2056. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/corp/saas.wit +0 -0
  2057. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/different-pkg/the-doc.wit +0 -0
  2058. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/foreign-pkg/the-doc.wit +0 -0
  2059. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/some-pkg/some-doc.wit +0 -0
  2060. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/clocks.wit +0 -0
  2061. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/filesystem.wit +0 -0
  2062. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/deps/wasi/wasi.wit +0 -0
  2063. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/foreign-deps-union/root.wit +0 -0
  2064. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/functions.wit +0 -0
  2065. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/deps/bar/types.wit +0 -0
  2066. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/deps/ignore-me.txt +0 -0
  2067. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/ignore-files-deps/world.wit +0 -0
  2068. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/include-reps.wit +0 -0
  2069. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/kebab-name-include-with.wit +0 -0
  2070. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/many-names/a.wit +0 -0
  2071. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/many-names/b.wit +0 -0
  2072. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/bar.wit +0 -0
  2073. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/cycle-a.wit +0 -0
  2074. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/cycle-b.wit +0 -0
  2075. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/multi-file/foo.wit +0 -0
  2076. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/name-both-resource-and-type/deps/dep/foo.wit +0 -0
  2077. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/name-both-resource-and-type/foo.wit +0 -0
  2078. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax1.wit +0 -0
  2079. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax3.wit +0 -0
  2080. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/package-syntax4.wit +0 -0
  2081. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/alias-no-type.wit +0 -0
  2082. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/alias-no-type.wit.result +0 -0
  2083. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/async.wit.result +0 -0
  2084. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/async1.wit.result +0 -0
  2085. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function.wit +0 -0
  2086. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function.wit.result +0 -0
  2087. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function2.wit +0 -0
  2088. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-function2.wit.result +0 -0
  2089. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include1.wit +0 -0
  2090. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include1.wit.result +0 -0
  2091. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include2.wit +0 -0
  2092. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include2.wit.result +0 -0
  2093. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include3.wit +0 -0
  2094. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-include3.wit.result +0 -0
  2095. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-list.wit +0 -0
  2096. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-list.wit.result +0 -0
  2097. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg1/root.wit +0 -0
  2098. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg1.wit.result +0 -0
  2099. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2/deps/bar/empty.wit +0 -0
  2100. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2/root.wit +0 -0
  2101. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg2.wit.result +0 -0
  2102. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3/deps/bar/baz.wit +0 -0
  2103. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3/root.wit +0 -0
  2104. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg3.wit.result +0 -0
  2105. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4/deps/bar/baz.wit +0 -0
  2106. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4/root.wit +0 -0
  2107. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg4.wit.result +0 -0
  2108. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5/deps/bar/baz.wit +0 -0
  2109. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5/root.wit +0 -0
  2110. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg5.wit.result +0 -0
  2111. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6/deps/bar/baz.wit +0 -0
  2112. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6/root.wit +0 -0
  2113. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-pkg6.wit.result +0 -0
  2114. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource1.wit +0 -0
  2115. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource1.wit.result +0 -0
  2116. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource10.wit +0 -0
  2117. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource10.wit.result +0 -0
  2118. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource11.wit +0 -0
  2119. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource11.wit.result +0 -0
  2120. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource12.wit +0 -0
  2121. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource12.wit.result +0 -0
  2122. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource13.wit +0 -0
  2123. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource13.wit.result +0 -0
  2124. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource14.wit +0 -0
  2125. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource14.wit.result +0 -0
  2126. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15/deps/foo/foo.wit +0 -0
  2127. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15/foo.wit +0 -0
  2128. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource15.wit.result +0 -0
  2129. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource2.wit +0 -0
  2130. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource2.wit.result +0 -0
  2131. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource3.wit +0 -0
  2132. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource3.wit.result +0 -0
  2133. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource4.wit +0 -0
  2134. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource4.wit.result +0 -0
  2135. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource5.wit +0 -0
  2136. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource5.wit.result +0 -0
  2137. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource6.wit +0 -0
  2138. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource6.wit.result +0 -0
  2139. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource7.wit +0 -0
  2140. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource7.wit.result +0 -0
  2141. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource8.wit +0 -0
  2142. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource8.wit.result +0 -0
  2143. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource9.wit +0 -0
  2144. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-resource9.wit.result +0 -0
  2145. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-world-type1.wit +0 -0
  2146. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/bad-world-type1.wit.result +0 -0
  2147. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package/a.wit +0 -0
  2148. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package/b.wit +0 -0
  2149. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/conflicting-package.wit.result +0 -0
  2150. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle.wit +0 -0
  2151. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle.wit.result +0 -0
  2152. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle2.wit +0 -0
  2153. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle2.wit.result +0 -0
  2154. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle3.wit +0 -0
  2155. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle3.wit.result +0 -0
  2156. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle4.wit +0 -0
  2157. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle4.wit.result +0 -0
  2158. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle5.wit +0 -0
  2159. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/cycle5.wit.result +0 -0
  2160. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/dangling-type.wit +0 -0
  2161. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/dangling-type.wit.result +0 -0
  2162. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-functions.wit +0 -0
  2163. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-functions.wit.result +0 -0
  2164. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface.wit +0 -0
  2165. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface.wit.result +0 -0
  2166. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2/foo.wit +0 -0
  2167. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2/foo2.wit +0 -0
  2168. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-interface2.wit.result +0 -0
  2169. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-type.wit +0 -0
  2170. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/duplicate-type.wit.result +0 -0
  2171. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-enum.wit +0 -0
  2172. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-enum.wit.result +0 -0
  2173. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-variant1.wit +0 -0
  2174. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/empty-variant1.wit.result +0 -0
  2175. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/export-twice.wit +0 -0
  2176. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/export-twice.wit.result +0 -0
  2177. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export1.wit +0 -0
  2178. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export1.wit.result +0 -0
  2179. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export2.wit +0 -0
  2180. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export2.wit.result +0 -0
  2181. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export3.wit +0 -0
  2182. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export3.wit.result +0 -0
  2183. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export4.wit +0 -0
  2184. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export4.wit.result +0 -0
  2185. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export5.wit +0 -0
  2186. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-and-export5.wit.result +0 -0
  2187. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap1.wit +0 -0
  2188. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap1.wit.result +0 -0
  2189. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap2.wit +0 -0
  2190. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-export-overlap2.wit.result +0 -0
  2191. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-twice.wit +0 -0
  2192. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/import-twice.wit.result +0 -0
  2193. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-cycle.wit +0 -0
  2194. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-cycle.wit.result +0 -0
  2195. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign/deps/bar/empty.wit +0 -0
  2196. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign/root.wit +0 -0
  2197. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-foreign.wit.result +0 -0
  2198. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-id.wit +0 -0
  2199. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-id.wit.result +0 -0
  2200. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-on-id.wit +0 -0
  2201. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/include-with-on-id.wit.result +0 -0
  2202. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-md.md +0 -0
  2203. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-md.wit.result +0 -0
  2204. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-toplevel.wit +0 -0
  2205. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-toplevel.wit.result +0 -0
  2206. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference.wit +0 -0
  2207. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference.wit.result +0 -0
  2208. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference2.wit +0 -0
  2209. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/invalid-type-reference2.wit.result +0 -0
  2210. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit +0 -0
  2211. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include-not-found.wit.result +0 -0
  2212. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include.wit +0 -0
  2213. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/kebab-name-include.wit.result +0 -0
  2214. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/keyword.wit +0 -0
  2215. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/keyword.wit.result +0 -0
  2216. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/missing-package.wit +0 -0
  2217. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/missing-package.wit.result +0 -0
  2218. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use/bar.wit +0 -0
  2219. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use/foo.wit +0 -0
  2220. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/no-access-to-sibling-use.wit.result +0 -0
  2221. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include/deps/bar/baz.wit +0 -0
  2222. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include/root.wit +0 -0
  2223. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/non-existance-world-include.wit.result +0 -0
  2224. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle/deps/a1/root.wit +0 -0
  2225. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle/root.wit +0 -0
  2226. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle.wit.result +0 -0
  2227. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/deps/a1/root.wit +0 -0
  2228. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/deps/a2/root.wit +0 -0
  2229. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2/root.wit +0 -0
  2230. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/pkg-cycle2.wit.result +0 -0
  2231. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name/deps/dep/foo.wit +0 -0
  2232. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name/foo.wit +0 -0
  2233. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/type-and-resource-same-name.wit.result +0 -0
  2234. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/undefined-typed.wit +0 -0
  2235. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/undefined-typed.wit.result +0 -0
  2236. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/union-fuzz-2.wit +0 -0
  2237. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/union-fuzz-2.wit.result +0 -0
  2238. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unknown-interface.wit +0 -0
  2239. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unknown-interface.wit.result +0 -0
  2240. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface1.wit +0 -0
  2241. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface1.wit.result +0 -0
  2242. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface2.wit +0 -0
  2243. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface2.wit.result +0 -0
  2244. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface3.wit +0 -0
  2245. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface3.wit.result +0 -0
  2246. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface4.wit +0 -0
  2247. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-interface4.wit.result +0 -0
  2248. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use1.wit +0 -0
  2249. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use1.wit.result +0 -0
  2250. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10/bar.wit +0 -0
  2251. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10/foo.wit +0 -0
  2252. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use10.wit.result +0 -0
  2253. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use2.wit +0 -0
  2254. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use2.wit.result +0 -0
  2255. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use3.wit +0 -0
  2256. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use3.wit.result +0 -0
  2257. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use7.wit +0 -0
  2258. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use7.wit.result +0 -0
  2259. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use8.wit +0 -0
  2260. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use8.wit.result +0 -0
  2261. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use9.wit +0 -0
  2262. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unresolved-use9.wit.result +0 -0
  2263. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/unterminated-string.wit.result +0 -0
  2264. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world/deps/bar/baz.wit +0 -0
  2265. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world/root.wit +0 -0
  2266. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-and-include-world.wit.result +0 -0
  2267. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict.wit +0 -0
  2268. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict.wit.result +0 -0
  2269. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict2.wit +0 -0
  2270. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict2.wit.result +0 -0
  2271. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict3.wit +0 -0
  2272. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-conflict3.wit.result +0 -0
  2273. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle1.wit +0 -0
  2274. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle1.wit.result +0 -0
  2275. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle4.wit +0 -0
  2276. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-cycle4.wit.result +0 -0
  2277. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-shadow1.wit +0 -0
  2278. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-shadow1.wit.result +0 -0
  2279. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world/deps/bar/baz.wit +0 -0
  2280. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world/root.wit +0 -0
  2281. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/use-world.wit.result +0 -0
  2282. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-interface-clash.wit +0 -0
  2283. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-interface-clash.wit.result +0 -0
  2284. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields2.wit +0 -0
  2285. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields2.wit.result +0 -0
  2286. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields3.wit +0 -0
  2287. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-same-fields3.wit.result +0 -0
  2288. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func.wit +0 -0
  2289. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func.wit.result +0 -0
  2290. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func2.wit +0 -0
  2291. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/parse-fail/world-top-level-func2.wit.result +0 -0
  2292. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-empty.wit +0 -0
  2293. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple-returns-borrow.wit +0 -0
  2294. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple-returns-own.wit +0 -0
  2295. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-multiple.wit +0 -0
  2296. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-return-borrow.wit +0 -0
  2297. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources-return-own.wit +0 -0
  2298. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources.wit +0 -0
  2299. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/resources1.wit +0 -0
  2300. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/shared-types.wit +0 -0
  2301. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/stress-export-elaborate.wit +0 -0
  2302. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/type-then-eof.wit +0 -0
  2303. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/union-fuzz-1.wit +0 -0
  2304. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/use-chain.wit +0 -0
  2305. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/use.wit +0 -0
  2306. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/deps/a1/foo.wit +0 -0
  2307. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/deps/a2/foo.wit +0 -0
  2308. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/versions/foo.wit +0 -0
  2309. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/wasi.wit +0 -0
  2310. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-iface-no-collide.wit +0 -0
  2311. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import1.wit +0 -0
  2312. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import2.wit +0 -0
  2313. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-implicit-import3.wit +0 -0
  2314. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-same-fields4.wit +0 -0
  2315. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-top-level-funcs.wit +0 -0
  2316. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/world-top-level-resources.wit +0 -0
  2317. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/worlds-union-dedup.wit +0 -0
  2318. /data/ext/cargo-vendor/{wit-parser-0.9.2 → wit-parser-0.11.1}/tests/ui/worlds-with-types.wit +0 -0
@@ -1,3847 +0,0 @@
1
- #![allow(non_snake_case)]
2
-
3
- use crate::cdsl::instructions::{
4
- AllInstructions, InstructionBuilder as Inst, InstructionGroupBuilder,
5
- };
6
- use crate::cdsl::operands::Operand;
7
- use crate::cdsl::types::{LaneType, ValueType};
8
- use crate::cdsl::typevar::{Interval, TypeSetBuilder, TypeVar};
9
- use crate::shared::formats::Formats;
10
- use crate::shared::types;
11
- use crate::shared::{entities::EntityRefs, immediates::Immediates};
12
-
13
- #[inline(never)]
14
- fn define_control_flow(
15
- ig: &mut InstructionGroupBuilder,
16
- formats: &Formats,
17
- imm: &Immediates,
18
- entities: &EntityRefs,
19
- ) {
20
- ig.push(
21
- Inst::new(
22
- "jump",
23
- r#"
24
- Jump.
25
-
26
- Unconditionally jump to a basic block, passing the specified
27
- block arguments. The number and types of arguments must match the
28
- destination block.
29
- "#,
30
- &formats.jump,
31
- )
32
- .operands_in(vec![Operand::new("block_call", &entities.block_call)
33
- .with_doc("Destination basic block, with its arguments provided")])
34
- .branches(),
35
- );
36
-
37
- let ScalarTruthy = &TypeVar::new(
38
- "ScalarTruthy",
39
- "A scalar truthy type",
40
- TypeSetBuilder::new().ints(Interval::All).build(),
41
- );
42
-
43
- ig.push(
44
- Inst::new(
45
- "brif",
46
- r#"
47
- Conditional branch when cond is non-zero.
48
-
49
- Take the ``then`` branch when ``c != 0``, and the ``else`` branch otherwise.
50
- "#,
51
- &formats.brif,
52
- )
53
- .operands_in(vec![
54
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
55
- Operand::new("block_then", &entities.block_then).with_doc("Then block"),
56
- Operand::new("block_else", &entities.block_else).with_doc("Else block"),
57
- ])
58
- .branches(),
59
- );
60
-
61
- {
62
- let _i32 = &TypeVar::new(
63
- "i32",
64
- "A 32 bit scalar integer type",
65
- TypeSetBuilder::new().ints(32..32).build(),
66
- );
67
-
68
- ig.push(
69
- Inst::new(
70
- "br_table",
71
- r#"
72
- Indirect branch via jump table.
73
-
74
- Use ``x`` as an unsigned index into the jump table ``JT``. If a jump
75
- table entry is found, branch to the corresponding block. If no entry was
76
- found or the index is out-of-bounds, branch to the default block of the
77
- table.
78
-
79
- Note that this branch instruction can't pass arguments to the targeted
80
- blocks. Split critical edges as needed to work around this.
81
-
82
- Do not confuse this with "tables" in WebAssembly. ``br_table`` is for
83
- jump tables with destinations within the current function only -- think
84
- of a ``match`` in Rust or a ``switch`` in C. If you want to call a
85
- function in a dynamic library, that will typically use
86
- ``call_indirect``.
87
- "#,
88
- &formats.branch_table,
89
- )
90
- .operands_in(vec![
91
- Operand::new("x", _i32).with_doc("i32 index into jump table"),
92
- Operand::new("JT", &entities.jump_table),
93
- ])
94
- .branches(),
95
- );
96
- }
97
-
98
- let iAddr = &TypeVar::new(
99
- "iAddr",
100
- "An integer address type",
101
- TypeSetBuilder::new().ints(32..64).refs(32..64).build(),
102
- );
103
-
104
- ig.push(
105
- Inst::new(
106
- "debugtrap",
107
- r#"
108
- Encodes an assembly debug trap.
109
- "#,
110
- &formats.nullary,
111
- )
112
- .other_side_effects()
113
- .can_load()
114
- .can_store(),
115
- );
116
-
117
- ig.push(
118
- Inst::new(
119
- "trap",
120
- r#"
121
- Terminate execution unconditionally.
122
- "#,
123
- &formats.trap,
124
- )
125
- .operands_in(vec![Operand::new("code", &imm.trapcode)])
126
- .can_trap()
127
- .terminates_block(),
128
- );
129
-
130
- ig.push(
131
- Inst::new(
132
- "trapz",
133
- r#"
134
- Trap when zero.
135
-
136
- if ``c`` is non-zero, execution continues at the following instruction.
137
- "#,
138
- &formats.cond_trap,
139
- )
140
- .operands_in(vec![
141
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
142
- Operand::new("code", &imm.trapcode),
143
- ])
144
- .can_trap(),
145
- );
146
-
147
- ig.push(
148
- Inst::new(
149
- "resumable_trap",
150
- r#"
151
- A resumable trap.
152
-
153
- This instruction allows non-conditional traps to be used as non-terminal instructions.
154
- "#,
155
- &formats.trap,
156
- )
157
- .operands_in(vec![Operand::new("code", &imm.trapcode)])
158
- .can_trap(),
159
- );
160
-
161
- ig.push(
162
- Inst::new(
163
- "trapnz",
164
- r#"
165
- Trap when non-zero.
166
-
167
- If ``c`` is zero, execution continues at the following instruction.
168
- "#,
169
- &formats.cond_trap,
170
- )
171
- .operands_in(vec![
172
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
173
- Operand::new("code", &imm.trapcode),
174
- ])
175
- .can_trap(),
176
- );
177
-
178
- ig.push(
179
- Inst::new(
180
- "resumable_trapnz",
181
- r#"
182
- A resumable trap to be called when the passed condition is non-zero.
183
-
184
- If ``c`` is zero, execution continues at the following instruction.
185
- "#,
186
- &formats.cond_trap,
187
- )
188
- .operands_in(vec![
189
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
190
- Operand::new("code", &imm.trapcode),
191
- ])
192
- .can_trap(),
193
- );
194
-
195
- ig.push(
196
- Inst::new(
197
- "return",
198
- r#"
199
- Return from the function.
200
-
201
- Unconditionally transfer control to the calling function, passing the
202
- provided return values. The list of return values must match the
203
- function signature's return types.
204
- "#,
205
- &formats.multiary,
206
- )
207
- .operands_in(vec![
208
- Operand::new("rvals", &entities.varargs).with_doc("return values")
209
- ])
210
- .returns(),
211
- );
212
-
213
- ig.push(
214
- Inst::new(
215
- "call",
216
- r#"
217
- Direct function call.
218
-
219
- Call a function which has been declared in the preamble. The argument
220
- types must match the function's signature.
221
- "#,
222
- &formats.call,
223
- )
224
- .operands_in(vec![
225
- Operand::new("FN", &entities.func_ref)
226
- .with_doc("function to call, declared by `function`"),
227
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
228
- ])
229
- .operands_out(vec![
230
- Operand::new("rvals", &entities.varargs).with_doc("return values")
231
- ])
232
- .call(),
233
- );
234
-
235
- ig.push(
236
- Inst::new(
237
- "call_indirect",
238
- r#"
239
- Indirect function call.
240
-
241
- Call the function pointed to by `callee` with the given arguments. The
242
- called function must match the specified signature.
243
-
244
- Note that this is different from WebAssembly's ``call_indirect``; the
245
- callee is a native address, rather than a table index. For WebAssembly,
246
- `table_addr` and `load` are used to obtain a native address
247
- from a table.
248
- "#,
249
- &formats.call_indirect,
250
- )
251
- .operands_in(vec![
252
- Operand::new("SIG", &entities.sig_ref).with_doc("function signature"),
253
- Operand::new("callee", iAddr).with_doc("address of function to call"),
254
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
255
- ])
256
- .operands_out(vec![
257
- Operand::new("rvals", &entities.varargs).with_doc("return values")
258
- ])
259
- .call(),
260
- );
261
-
262
- ig.push(
263
- Inst::new(
264
- "return_call",
265
- r#"
266
- Direct tail call.
267
-
268
- Tail call a function which has been declared in the preamble. The
269
- argument types must match the function's signature, the caller and
270
- callee calling conventions must be the same, and must be a calling
271
- convention that supports tail calls.
272
-
273
- This instruction is a block terminator.
274
- "#,
275
- &formats.call,
276
- )
277
- .operands_in(vec![
278
- Operand::new("FN", &entities.func_ref)
279
- .with_doc("function to call, declared by `function`"),
280
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
281
- ])
282
- .returns()
283
- .call(),
284
- );
285
-
286
- ig.push(
287
- Inst::new(
288
- "return_call_indirect",
289
- r#"
290
- Indirect tail call.
291
-
292
- Call the function pointed to by `callee` with the given arguments. The
293
- argument types must match the function's signature, the caller and
294
- callee calling conventions must be the same, and must be a calling
295
- convention that supports tail calls.
296
-
297
- This instruction is a block terminator.
298
-
299
- Note that this is different from WebAssembly's ``tail_call_indirect``;
300
- the callee is a native address, rather than a table index. For
301
- WebAssembly, `table_addr` and `load` are used to obtain a native address
302
- from a table.
303
- "#,
304
- &formats.call_indirect,
305
- )
306
- .operands_in(vec![
307
- Operand::new("SIG", &entities.sig_ref).with_doc("function signature"),
308
- Operand::new("callee", iAddr).with_doc("address of function to call"),
309
- Operand::new("args", &entities.varargs).with_doc("call arguments"),
310
- ])
311
- .returns()
312
- .call(),
313
- );
314
-
315
- ig.push(
316
- Inst::new(
317
- "func_addr",
318
- r#"
319
- Get the address of a function.
320
-
321
- Compute the absolute address of a function declared in the preamble.
322
- The returned address can be used as a ``callee`` argument to
323
- `call_indirect`. This is also a method for calling functions that
324
- are too far away to be addressable by a direct `call`
325
- instruction.
326
- "#,
327
- &formats.func_addr,
328
- )
329
- .operands_in(vec![Operand::new("FN", &entities.func_ref)
330
- .with_doc("function to call, declared by `function`")])
331
- .operands_out(vec![Operand::new("addr", iAddr)]),
332
- );
333
- }
334
-
335
- #[inline(never)]
336
- fn define_simd_lane_access(
337
- ig: &mut InstructionGroupBuilder,
338
- formats: &Formats,
339
- imm: &Immediates,
340
- _: &EntityRefs,
341
- ) {
342
- let TxN = &TypeVar::new(
343
- "TxN",
344
- "A SIMD vector type",
345
- TypeSetBuilder::new()
346
- .ints(Interval::All)
347
- .floats(Interval::All)
348
- .simd_lanes(Interval::All)
349
- .dynamic_simd_lanes(Interval::All)
350
- .includes_scalars(false)
351
- .build(),
352
- );
353
-
354
- ig.push(
355
- Inst::new(
356
- "splat",
357
- r#"
358
- Vector splat.
359
-
360
- Return a vector whose lanes are all ``x``.
361
- "#,
362
- &formats.unary,
363
- )
364
- .operands_in(vec![
365
- Operand::new("x", &TxN.lane_of()).with_doc("Value to splat to all lanes")
366
- ])
367
- .operands_out(vec![Operand::new("a", TxN)]),
368
- );
369
-
370
- let I8x16 = &TypeVar::new(
371
- "I8x16",
372
- "A SIMD vector type consisting of 16 lanes of 8-bit integers",
373
- TypeSetBuilder::new()
374
- .ints(8..8)
375
- .simd_lanes(16..16)
376
- .includes_scalars(false)
377
- .build(),
378
- );
379
-
380
- ig.push(
381
- Inst::new(
382
- "swizzle",
383
- r#"
384
- Vector swizzle.
385
-
386
- Returns a new vector with byte-width lanes selected from the lanes of the first input
387
- vector ``x`` specified in the second input vector ``s``. The indices ``i`` in range
388
- ``[0, 15]`` select the ``i``-th element of ``x``. For indices outside of the range the
389
- resulting lane is 0. Note that this operates on byte-width lanes.
390
- "#,
391
- &formats.binary,
392
- )
393
- .operands_in(vec![
394
- Operand::new("x", I8x16).with_doc("Vector to modify by re-arranging lanes"),
395
- Operand::new("y", I8x16).with_doc("Mask for re-arranging lanes"),
396
- ])
397
- .operands_out(vec![Operand::new("a", I8x16)]),
398
- );
399
-
400
- ig.push(
401
- Inst::new(
402
- "x86_pshufb",
403
- r#"
404
- A vector swizzle lookalike which has the semantics of `pshufb` on x64.
405
-
406
- This instruction will permute the 8-bit lanes of `x` with the indices
407
- specified in `y`. Each lane in the mask, `y`, uses the bottom four
408
- bits for selecting the lane from `x` unless the most significant bit
409
- is set, in which case the lane is zeroed. The output vector will have
410
- the following contents when the element of `y` is in these ranges:
411
-
412
- * `[0, 127]` -> `x[y[i] % 16]`
413
- * `[128, 255]` -> 0
414
- "#,
415
- &formats.binary,
416
- )
417
- .operands_in(vec![
418
- Operand::new("x", I8x16).with_doc("Vector to modify by re-arranging lanes"),
419
- Operand::new("y", I8x16).with_doc("Mask for re-arranging lanes"),
420
- ])
421
- .operands_out(vec![Operand::new("a", I8x16)]),
422
- );
423
-
424
- ig.push(
425
- Inst::new(
426
- "insertlane",
427
- r#"
428
- Insert ``y`` as lane ``Idx`` in x.
429
-
430
- The lane index, ``Idx``, is an immediate value, not an SSA value. It
431
- must indicate a valid lane index for the type of ``x``.
432
- "#,
433
- &formats.ternary_imm8,
434
- )
435
- .operands_in(vec![
436
- Operand::new("x", TxN).with_doc("The vector to modify"),
437
- Operand::new("y", &TxN.lane_of()).with_doc("New lane value"),
438
- Operand::new("Idx", &imm.uimm8).with_doc("Lane index"),
439
- ])
440
- .operands_out(vec![Operand::new("a", TxN)]),
441
- );
442
-
443
- ig.push(
444
- Inst::new(
445
- "extractlane",
446
- r#"
447
- Extract lane ``Idx`` from ``x``.
448
-
449
- The lane index, ``Idx``, is an immediate value, not an SSA value. It
450
- must indicate a valid lane index for the type of ``x``. Note that the upper bits of ``a``
451
- may or may not be zeroed depending on the ISA but the type system should prevent using
452
- ``a`` as anything other than the extracted value.
453
- "#,
454
- &formats.binary_imm8,
455
- )
456
- .operands_in(vec![
457
- Operand::new("x", TxN),
458
- Operand::new("Idx", &imm.uimm8).with_doc("Lane index"),
459
- ])
460
- .operands_out(vec![Operand::new("a", &TxN.lane_of())]),
461
- );
462
- }
463
-
464
- #[inline(never)]
465
- fn define_simd_arithmetic(
466
- ig: &mut InstructionGroupBuilder,
467
- formats: &Formats,
468
- _: &Immediates,
469
- _: &EntityRefs,
470
- ) {
471
- let Int = &TypeVar::new(
472
- "Int",
473
- "A scalar or vector integer type",
474
- TypeSetBuilder::new()
475
- .ints(Interval::All)
476
- .simd_lanes(Interval::All)
477
- .build(),
478
- );
479
-
480
- ig.push(
481
- Inst::new(
482
- "smin",
483
- r#"
484
- Signed integer minimum.
485
- "#,
486
- &formats.binary,
487
- )
488
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
489
- .operands_out(vec![Operand::new("a", Int)]),
490
- );
491
-
492
- ig.push(
493
- Inst::new(
494
- "umin",
495
- r#"
496
- Unsigned integer minimum.
497
- "#,
498
- &formats.binary,
499
- )
500
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
501
- .operands_out(vec![Operand::new("a", Int)]),
502
- );
503
-
504
- ig.push(
505
- Inst::new(
506
- "smax",
507
- r#"
508
- Signed integer maximum.
509
- "#,
510
- &formats.binary,
511
- )
512
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
513
- .operands_out(vec![Operand::new("a", Int)]),
514
- );
515
-
516
- ig.push(
517
- Inst::new(
518
- "umax",
519
- r#"
520
- Unsigned integer maximum.
521
- "#,
522
- &formats.binary,
523
- )
524
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
525
- .operands_out(vec![Operand::new("a", Int)]),
526
- );
527
-
528
- let IxN = &TypeVar::new(
529
- "IxN",
530
- "A SIMD vector type containing integers",
531
- TypeSetBuilder::new()
532
- .ints(Interval::All)
533
- .simd_lanes(Interval::All)
534
- .includes_scalars(false)
535
- .build(),
536
- );
537
-
538
- ig.push(
539
- Inst::new(
540
- "avg_round",
541
- r#"
542
- Unsigned average with rounding: `a := (x + y + 1) // 2`
543
-
544
- The addition does not lose any information (such as from overflow).
545
- "#,
546
- &formats.binary,
547
- )
548
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
549
- .operands_out(vec![Operand::new("a", IxN)]),
550
- );
551
-
552
- ig.push(
553
- Inst::new(
554
- "uadd_sat",
555
- r#"
556
- Add with unsigned saturation.
557
-
558
- This is similar to `iadd` but the operands are interpreted as unsigned integers and their
559
- summed result, instead of wrapping, will be saturated to the highest unsigned integer for
560
- the controlling type (e.g. `0xFF` for i8).
561
- "#,
562
- &formats.binary,
563
- )
564
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
565
- .operands_out(vec![Operand::new("a", IxN)]),
566
- );
567
-
568
- ig.push(
569
- Inst::new(
570
- "sadd_sat",
571
- r#"
572
- Add with signed saturation.
573
-
574
- This is similar to `iadd` but the operands are interpreted as signed integers and their
575
- summed result, instead of wrapping, will be saturated to the lowest or highest
576
- signed integer for the controlling type (e.g. `0x80` or `0x7F` for i8). For example,
577
- since an `sadd_sat.i8` of `0x70` and `0x70` is greater than `0x7F`, the result will be
578
- clamped to `0x7F`.
579
- "#,
580
- &formats.binary,
581
- )
582
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
583
- .operands_out(vec![Operand::new("a", IxN)]),
584
- );
585
-
586
- ig.push(
587
- Inst::new(
588
- "usub_sat",
589
- r#"
590
- Subtract with unsigned saturation.
591
-
592
- This is similar to `isub` but the operands are interpreted as unsigned integers and their
593
- difference, instead of wrapping, will be saturated to the lowest unsigned integer for
594
- the controlling type (e.g. `0x00` for i8).
595
- "#,
596
- &formats.binary,
597
- )
598
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
599
- .operands_out(vec![Operand::new("a", IxN)]),
600
- );
601
-
602
- ig.push(
603
- Inst::new(
604
- "ssub_sat",
605
- r#"
606
- Subtract with signed saturation.
607
-
608
- This is similar to `isub` but the operands are interpreted as signed integers and their
609
- difference, instead of wrapping, will be saturated to the lowest or highest
610
- signed integer for the controlling type (e.g. `0x80` or `0x7F` for i8).
611
- "#,
612
- &formats.binary,
613
- )
614
- .operands_in(vec![Operand::new("x", IxN), Operand::new("y", IxN)])
615
- .operands_out(vec![Operand::new("a", IxN)]),
616
- );
617
- }
618
-
619
- #[allow(clippy::many_single_char_names)]
620
- pub(crate) fn define(
621
- all_instructions: &mut AllInstructions,
622
- formats: &Formats,
623
- imm: &Immediates,
624
- entities: &EntityRefs,
625
- ) {
626
- let mut ig = InstructionGroupBuilder::new(all_instructions);
627
-
628
- define_control_flow(&mut ig, formats, imm, entities);
629
- define_simd_lane_access(&mut ig, formats, imm, entities);
630
- define_simd_arithmetic(&mut ig, formats, imm, entities);
631
-
632
- // Operand kind shorthands.
633
- let i8: &TypeVar = &ValueType::from(LaneType::from(types::Int::I8)).into();
634
- let f32_: &TypeVar = &ValueType::from(LaneType::from(types::Float::F32)).into();
635
- let f64_: &TypeVar = &ValueType::from(LaneType::from(types::Float::F64)).into();
636
-
637
- // Starting definitions.
638
- let Int = &TypeVar::new(
639
- "Int",
640
- "A scalar or vector integer type",
641
- TypeSetBuilder::new()
642
- .ints(Interval::All)
643
- .simd_lanes(Interval::All)
644
- .dynamic_simd_lanes(Interval::All)
645
- .build(),
646
- );
647
-
648
- let NarrowInt = &TypeVar::new(
649
- "NarrowInt",
650
- "An integer type of width up to `i64`",
651
- TypeSetBuilder::new().ints(8..64).build(),
652
- );
653
-
654
- let ScalarTruthy = &TypeVar::new(
655
- "ScalarTruthy",
656
- "A scalar truthy type",
657
- TypeSetBuilder::new().ints(Interval::All).build(),
658
- );
659
-
660
- let iB = &TypeVar::new(
661
- "iB",
662
- "A scalar integer type",
663
- TypeSetBuilder::new().ints(Interval::All).build(),
664
- );
665
-
666
- let iSwappable = &TypeVar::new(
667
- "iSwappable",
668
- "A multi byte scalar integer type",
669
- TypeSetBuilder::new().ints(16..128).build(),
670
- );
671
-
672
- let iAddr = &TypeVar::new(
673
- "iAddr",
674
- "An integer address type",
675
- TypeSetBuilder::new().ints(32..64).refs(32..64).build(),
676
- );
677
-
678
- let Ref = &TypeVar::new(
679
- "Ref",
680
- "A scalar reference type",
681
- TypeSetBuilder::new().refs(Interval::All).build(),
682
- );
683
-
684
- let TxN = &TypeVar::new(
685
- "TxN",
686
- "A SIMD vector type",
687
- TypeSetBuilder::new()
688
- .ints(Interval::All)
689
- .floats(Interval::All)
690
- .simd_lanes(Interval::All)
691
- .includes_scalars(false)
692
- .build(),
693
- );
694
- let Any = &TypeVar::new(
695
- "Any",
696
- "Any integer, float, or reference scalar or vector type",
697
- TypeSetBuilder::new()
698
- .ints(Interval::All)
699
- .floats(Interval::All)
700
- .refs(Interval::All)
701
- .simd_lanes(Interval::All)
702
- .includes_scalars(true)
703
- .build(),
704
- );
705
-
706
- let Mem = &TypeVar::new(
707
- "Mem",
708
- "Any type that can be stored in memory",
709
- TypeSetBuilder::new()
710
- .ints(Interval::All)
711
- .floats(Interval::All)
712
- .simd_lanes(Interval::All)
713
- .refs(Interval::All)
714
- .dynamic_simd_lanes(Interval::All)
715
- .build(),
716
- );
717
-
718
- let MemTo = &TypeVar::copy_from(Mem, "MemTo".to_string());
719
-
720
- ig.push(
721
- Inst::new(
722
- "load",
723
- r#"
724
- Load from memory at ``p + Offset``.
725
-
726
- This is a polymorphic instruction that can load any value type which
727
- has a memory representation.
728
- "#,
729
- &formats.load,
730
- )
731
- .operands_in(vec![
732
- Operand::new("MemFlags", &imm.memflags),
733
- Operand::new("p", iAddr),
734
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
735
- ])
736
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")])
737
- .can_load(),
738
- );
739
-
740
- ig.push(
741
- Inst::new(
742
- "store",
743
- r#"
744
- Store ``x`` to memory at ``p + Offset``.
745
-
746
- This is a polymorphic instruction that can store any value type with a
747
- memory representation.
748
- "#,
749
- &formats.store,
750
- )
751
- .operands_in(vec![
752
- Operand::new("MemFlags", &imm.memflags),
753
- Operand::new("x", Mem).with_doc("Value to be stored"),
754
- Operand::new("p", iAddr),
755
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
756
- ])
757
- .can_store(),
758
- );
759
-
760
- let iExt8 = &TypeVar::new(
761
- "iExt8",
762
- "An integer type with more than 8 bits",
763
- TypeSetBuilder::new().ints(16..64).build(),
764
- );
765
-
766
- ig.push(
767
- Inst::new(
768
- "uload8",
769
- r#"
770
- Load 8 bits from memory at ``p + Offset`` and zero-extend.
771
-
772
- This is equivalent to ``load.i8`` followed by ``uextend``.
773
- "#,
774
- &formats.load,
775
- )
776
- .operands_in(vec![
777
- Operand::new("MemFlags", &imm.memflags),
778
- Operand::new("p", iAddr),
779
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
780
- ])
781
- .operands_out(vec![Operand::new("a", iExt8)])
782
- .can_load(),
783
- );
784
-
785
- ig.push(
786
- Inst::new(
787
- "sload8",
788
- r#"
789
- Load 8 bits from memory at ``p + Offset`` and sign-extend.
790
-
791
- This is equivalent to ``load.i8`` followed by ``sextend``.
792
- "#,
793
- &formats.load,
794
- )
795
- .operands_in(vec![
796
- Operand::new("MemFlags", &imm.memflags),
797
- Operand::new("p", iAddr),
798
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
799
- ])
800
- .operands_out(vec![Operand::new("a", iExt8)])
801
- .can_load(),
802
- );
803
-
804
- ig.push(
805
- Inst::new(
806
- "istore8",
807
- r#"
808
- Store the low 8 bits of ``x`` to memory at ``p + Offset``.
809
-
810
- This is equivalent to ``ireduce.i8`` followed by ``store.i8``.
811
- "#,
812
- &formats.store,
813
- )
814
- .operands_in(vec![
815
- Operand::new("MemFlags", &imm.memflags),
816
- Operand::new("x", iExt8),
817
- Operand::new("p", iAddr),
818
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
819
- ])
820
- .can_store(),
821
- );
822
-
823
- let iExt16 = &TypeVar::new(
824
- "iExt16",
825
- "An integer type with more than 16 bits",
826
- TypeSetBuilder::new().ints(32..64).build(),
827
- );
828
-
829
- ig.push(
830
- Inst::new(
831
- "uload16",
832
- r#"
833
- Load 16 bits from memory at ``p + Offset`` and zero-extend.
834
-
835
- This is equivalent to ``load.i16`` followed by ``uextend``.
836
- "#,
837
- &formats.load,
838
- )
839
- .operands_in(vec![
840
- Operand::new("MemFlags", &imm.memflags),
841
- Operand::new("p", iAddr),
842
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
843
- ])
844
- .operands_out(vec![Operand::new("a", iExt16)])
845
- .can_load(),
846
- );
847
-
848
- ig.push(
849
- Inst::new(
850
- "sload16",
851
- r#"
852
- Load 16 bits from memory at ``p + Offset`` and sign-extend.
853
-
854
- This is equivalent to ``load.i16`` followed by ``sextend``.
855
- "#,
856
- &formats.load,
857
- )
858
- .operands_in(vec![
859
- Operand::new("MemFlags", &imm.memflags),
860
- Operand::new("p", iAddr),
861
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
862
- ])
863
- .operands_out(vec![Operand::new("a", iExt16)])
864
- .can_load(),
865
- );
866
-
867
- ig.push(
868
- Inst::new(
869
- "istore16",
870
- r#"
871
- Store the low 16 bits of ``x`` to memory at ``p + Offset``.
872
-
873
- This is equivalent to ``ireduce.i16`` followed by ``store.i16``.
874
- "#,
875
- &formats.store,
876
- )
877
- .operands_in(vec![
878
- Operand::new("MemFlags", &imm.memflags),
879
- Operand::new("x", iExt16),
880
- Operand::new("p", iAddr),
881
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
882
- ])
883
- .can_store(),
884
- );
885
-
886
- let iExt32 = &TypeVar::new(
887
- "iExt32",
888
- "An integer type with more than 32 bits",
889
- TypeSetBuilder::new().ints(64..64).build(),
890
- );
891
-
892
- ig.push(
893
- Inst::new(
894
- "uload32",
895
- r#"
896
- Load 32 bits from memory at ``p + Offset`` and zero-extend.
897
-
898
- This is equivalent to ``load.i32`` followed by ``uextend``.
899
- "#,
900
- &formats.load,
901
- )
902
- .operands_in(vec![
903
- Operand::new("MemFlags", &imm.memflags),
904
- Operand::new("p", iAddr),
905
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
906
- ])
907
- .operands_out(vec![Operand::new("a", iExt32)])
908
- .can_load(),
909
- );
910
-
911
- ig.push(
912
- Inst::new(
913
- "sload32",
914
- r#"
915
- Load 32 bits from memory at ``p + Offset`` and sign-extend.
916
-
917
- This is equivalent to ``load.i32`` followed by ``sextend``.
918
- "#,
919
- &formats.load,
920
- )
921
- .operands_in(vec![
922
- Operand::new("MemFlags", &imm.memflags),
923
- Operand::new("p", iAddr),
924
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
925
- ])
926
- .operands_out(vec![Operand::new("a", iExt32)])
927
- .can_load(),
928
- );
929
-
930
- ig.push(
931
- Inst::new(
932
- "istore32",
933
- r#"
934
- Store the low 32 bits of ``x`` to memory at ``p + Offset``.
935
-
936
- This is equivalent to ``ireduce.i32`` followed by ``store.i32``.
937
- "#,
938
- &formats.store,
939
- )
940
- .operands_in(vec![
941
- Operand::new("MemFlags", &imm.memflags),
942
- Operand::new("x", iExt32),
943
- Operand::new("p", iAddr),
944
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
945
- ])
946
- .can_store(),
947
- );
948
-
949
- let I16x8 = &TypeVar::new(
950
- "I16x8",
951
- "A SIMD vector with exactly 8 lanes of 16-bit values",
952
- TypeSetBuilder::new()
953
- .ints(16..16)
954
- .simd_lanes(8..8)
955
- .includes_scalars(false)
956
- .build(),
957
- );
958
-
959
- ig.push(
960
- Inst::new(
961
- "uload8x8",
962
- r#"
963
- Load an 8x8 vector (64 bits) from memory at ``p + Offset`` and zero-extend into an i16x8
964
- vector.
965
- "#,
966
- &formats.load,
967
- )
968
- .operands_in(vec![
969
- Operand::new("MemFlags", &imm.memflags),
970
- Operand::new("p", iAddr),
971
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
972
- ])
973
- .operands_out(vec![Operand::new("a", I16x8).with_doc("Value loaded")])
974
- .can_load(),
975
- );
976
-
977
- ig.push(
978
- Inst::new(
979
- "sload8x8",
980
- r#"
981
- Load an 8x8 vector (64 bits) from memory at ``p + Offset`` and sign-extend into an i16x8
982
- vector.
983
- "#,
984
- &formats.load,
985
- )
986
- .operands_in(vec![
987
- Operand::new("MemFlags", &imm.memflags),
988
- Operand::new("p", iAddr),
989
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
990
- ])
991
- .operands_out(vec![Operand::new("a", I16x8).with_doc("Value loaded")])
992
- .can_load(),
993
- );
994
-
995
- let I32x4 = &TypeVar::new(
996
- "I32x4",
997
- "A SIMD vector with exactly 4 lanes of 32-bit values",
998
- TypeSetBuilder::new()
999
- .ints(32..32)
1000
- .simd_lanes(4..4)
1001
- .includes_scalars(false)
1002
- .build(),
1003
- );
1004
-
1005
- ig.push(
1006
- Inst::new(
1007
- "uload16x4",
1008
- r#"
1009
- Load a 16x4 vector (64 bits) from memory at ``p + Offset`` and zero-extend into an i32x4
1010
- vector.
1011
- "#,
1012
- &formats.load,
1013
- )
1014
- .operands_in(vec![
1015
- Operand::new("MemFlags", &imm.memflags),
1016
- Operand::new("p", iAddr),
1017
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1018
- ])
1019
- .operands_out(vec![Operand::new("a", I32x4).with_doc("Value loaded")])
1020
- .can_load(),
1021
- );
1022
-
1023
- ig.push(
1024
- Inst::new(
1025
- "sload16x4",
1026
- r#"
1027
- Load a 16x4 vector (64 bits) from memory at ``p + Offset`` and sign-extend into an i32x4
1028
- vector.
1029
- "#,
1030
- &formats.load,
1031
- )
1032
- .operands_in(vec![
1033
- Operand::new("MemFlags", &imm.memflags),
1034
- Operand::new("p", iAddr),
1035
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1036
- ])
1037
- .operands_out(vec![Operand::new("a", I32x4).with_doc("Value loaded")])
1038
- .can_load(),
1039
- );
1040
-
1041
- let I64x2 = &TypeVar::new(
1042
- "I64x2",
1043
- "A SIMD vector with exactly 2 lanes of 64-bit values",
1044
- TypeSetBuilder::new()
1045
- .ints(64..64)
1046
- .simd_lanes(2..2)
1047
- .includes_scalars(false)
1048
- .build(),
1049
- );
1050
-
1051
- ig.push(
1052
- Inst::new(
1053
- "uload32x2",
1054
- r#"
1055
- Load an 32x2 vector (64 bits) from memory at ``p + Offset`` and zero-extend into an i64x2
1056
- vector.
1057
- "#,
1058
- &formats.load,
1059
- )
1060
- .operands_in(vec![
1061
- Operand::new("MemFlags", &imm.memflags),
1062
- Operand::new("p", iAddr),
1063
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1064
- ])
1065
- .operands_out(vec![Operand::new("a", I64x2).with_doc("Value loaded")])
1066
- .can_load(),
1067
- );
1068
-
1069
- ig.push(
1070
- Inst::new(
1071
- "sload32x2",
1072
- r#"
1073
- Load a 32x2 vector (64 bits) from memory at ``p + Offset`` and sign-extend into an i64x2
1074
- vector.
1075
- "#,
1076
- &formats.load,
1077
- )
1078
- .operands_in(vec![
1079
- Operand::new("MemFlags", &imm.memflags),
1080
- Operand::new("p", iAddr),
1081
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from base address"),
1082
- ])
1083
- .operands_out(vec![Operand::new("a", I64x2).with_doc("Value loaded")])
1084
- .can_load(),
1085
- );
1086
-
1087
- ig.push(
1088
- Inst::new(
1089
- "stack_load",
1090
- r#"
1091
- Load a value from a stack slot at the constant offset.
1092
-
1093
- This is a polymorphic instruction that can load any value type which
1094
- has a memory representation.
1095
-
1096
- The offset is an immediate constant, not an SSA value. The memory
1097
- access cannot go out of bounds, i.e.
1098
- `sizeof(a) + Offset <= sizeof(SS)`.
1099
- "#,
1100
- &formats.stack_load,
1101
- )
1102
- .operands_in(vec![
1103
- Operand::new("SS", &entities.stack_slot),
1104
- Operand::new("Offset", &imm.offset32).with_doc("In-bounds offset into stack slot"),
1105
- ])
1106
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")])
1107
- .can_load(),
1108
- );
1109
-
1110
- ig.push(
1111
- Inst::new(
1112
- "stack_store",
1113
- r#"
1114
- Store a value to a stack slot at a constant offset.
1115
-
1116
- This is a polymorphic instruction that can store any value type with a
1117
- memory representation.
1118
-
1119
- The offset is an immediate constant, not an SSA value. The memory
1120
- access cannot go out of bounds, i.e.
1121
- `sizeof(a) + Offset <= sizeof(SS)`.
1122
- "#,
1123
- &formats.stack_store,
1124
- )
1125
- .operands_in(vec![
1126
- Operand::new("x", Mem).with_doc("Value to be stored"),
1127
- Operand::new("SS", &entities.stack_slot),
1128
- Operand::new("Offset", &imm.offset32).with_doc("In-bounds offset into stack slot"),
1129
- ])
1130
- .can_store(),
1131
- );
1132
-
1133
- ig.push(
1134
- Inst::new(
1135
- "stack_addr",
1136
- r#"
1137
- Get the address of a stack slot.
1138
-
1139
- Compute the absolute address of a byte in a stack slot. The offset must
1140
- refer to a byte inside the stack slot:
1141
- `0 <= Offset < sizeof(SS)`.
1142
- "#,
1143
- &formats.stack_load,
1144
- )
1145
- .operands_in(vec![
1146
- Operand::new("SS", &entities.stack_slot),
1147
- Operand::new("Offset", &imm.offset32).with_doc("In-bounds offset into stack slot"),
1148
- ])
1149
- .operands_out(vec![Operand::new("addr", iAddr)]),
1150
- );
1151
-
1152
- ig.push(
1153
- Inst::new(
1154
- "dynamic_stack_load",
1155
- r#"
1156
- Load a value from a dynamic stack slot.
1157
-
1158
- This is a polymorphic instruction that can load any value type which
1159
- has a memory representation.
1160
- "#,
1161
- &formats.dynamic_stack_load,
1162
- )
1163
- .operands_in(vec![Operand::new("DSS", &entities.dynamic_stack_slot)])
1164
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")])
1165
- .can_load(),
1166
- );
1167
-
1168
- ig.push(
1169
- Inst::new(
1170
- "dynamic_stack_store",
1171
- r#"
1172
- Store a value to a dynamic stack slot.
1173
-
1174
- This is a polymorphic instruction that can store any dynamic value type with a
1175
- memory representation.
1176
- "#,
1177
- &formats.dynamic_stack_store,
1178
- )
1179
- .operands_in(vec![
1180
- Operand::new("x", Mem).with_doc("Value to be stored"),
1181
- Operand::new("DSS", &entities.dynamic_stack_slot),
1182
- ])
1183
- .can_store(),
1184
- );
1185
-
1186
- ig.push(
1187
- Inst::new(
1188
- "dynamic_stack_addr",
1189
- r#"
1190
- Get the address of a dynamic stack slot.
1191
-
1192
- Compute the absolute address of the first byte of a dynamic stack slot.
1193
- "#,
1194
- &formats.dynamic_stack_load,
1195
- )
1196
- .operands_in(vec![Operand::new("DSS", &entities.dynamic_stack_slot)])
1197
- .operands_out(vec![Operand::new("addr", iAddr)]),
1198
- );
1199
-
1200
- ig.push(
1201
- Inst::new(
1202
- "global_value",
1203
- r#"
1204
- Compute the value of global GV.
1205
- "#,
1206
- &formats.unary_global_value,
1207
- )
1208
- .operands_in(vec![Operand::new("GV", &entities.global_value)])
1209
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")]),
1210
- );
1211
-
1212
- ig.push(
1213
- Inst::new(
1214
- "symbol_value",
1215
- r#"
1216
- Compute the value of global GV, which is a symbolic value.
1217
- "#,
1218
- &formats.unary_global_value,
1219
- )
1220
- .operands_in(vec![Operand::new("GV", &entities.global_value)])
1221
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")]),
1222
- );
1223
-
1224
- ig.push(
1225
- Inst::new(
1226
- "tls_value",
1227
- r#"
1228
- Compute the value of global GV, which is a TLS (thread local storage) value.
1229
- "#,
1230
- &formats.unary_global_value,
1231
- )
1232
- .operands_in(vec![Operand::new("GV", &entities.global_value)])
1233
- .operands_out(vec![Operand::new("a", Mem).with_doc("Value loaded")]),
1234
- );
1235
-
1236
- // Note this instruction is marked as having other side-effects, so GVN won't try to hoist it,
1237
- // which would result in it being subject to spilling. While not hoisting would generally hurt
1238
- // performance, since a computed value used many times may need to be regenerated before each
1239
- // use, it is not the case here: this instruction doesn't generate any code. That's because,
1240
- // by definition the pinned register is never used by the register allocator, but is written to
1241
- // and read explicitly and exclusively by set_pinned_reg and get_pinned_reg.
1242
- ig.push(
1243
- Inst::new(
1244
- "get_pinned_reg",
1245
- r#"
1246
- Gets the content of the pinned register, when it's enabled.
1247
- "#,
1248
- &formats.nullary,
1249
- )
1250
- .operands_out(vec![Operand::new("addr", iAddr)])
1251
- .other_side_effects(),
1252
- );
1253
-
1254
- ig.push(
1255
- Inst::new(
1256
- "set_pinned_reg",
1257
- r#"
1258
- Sets the content of the pinned register, when it's enabled.
1259
- "#,
1260
- &formats.unary,
1261
- )
1262
- .operands_in(vec![Operand::new("addr", iAddr)])
1263
- .other_side_effects(),
1264
- );
1265
-
1266
- ig.push(
1267
- Inst::new(
1268
- "get_frame_pointer",
1269
- r#"
1270
- Get the address in the frame pointer register.
1271
-
1272
- Usage of this instruction requires setting `preserve_frame_pointers` to `true`.
1273
- "#,
1274
- &formats.nullary,
1275
- )
1276
- .operands_out(vec![Operand::new("addr", iAddr)]),
1277
- );
1278
-
1279
- ig.push(
1280
- Inst::new(
1281
- "get_stack_pointer",
1282
- r#"
1283
- Get the address in the stack pointer register.
1284
- "#,
1285
- &formats.nullary,
1286
- )
1287
- .operands_out(vec![Operand::new("addr", iAddr)]),
1288
- );
1289
-
1290
- ig.push(
1291
- Inst::new(
1292
- "get_return_address",
1293
- r#"
1294
- Get the PC where this function will transfer control to when it returns.
1295
-
1296
- Usage of this instruction requires setting `preserve_frame_pointers` to `true`.
1297
- "#,
1298
- &formats.nullary,
1299
- )
1300
- .operands_out(vec![Operand::new("addr", iAddr)]),
1301
- );
1302
-
1303
- let TableOffset = &TypeVar::new(
1304
- "TableOffset",
1305
- "An unsigned table offset",
1306
- TypeSetBuilder::new().ints(32..64).build(),
1307
- );
1308
-
1309
- ig.push(
1310
- Inst::new(
1311
- "table_addr",
1312
- r#"
1313
- Bounds check and compute absolute address of a table entry.
1314
-
1315
- Verify that the offset ``p`` is in bounds for the table T, and generate
1316
- an absolute address that is safe to dereference.
1317
-
1318
- ``Offset`` must be less than the size of a table element.
1319
-
1320
- 1. If ``p`` is not greater than the table bound, return an absolute
1321
- address corresponding to a byte offset of ``p`` from the table's
1322
- base address.
1323
- 2. If ``p`` is greater than the table bound, generate a trap.
1324
- "#,
1325
- &formats.table_addr,
1326
- )
1327
- .operands_in(vec![
1328
- Operand::new("T", &entities.table),
1329
- Operand::new("p", TableOffset),
1330
- Operand::new("Offset", &imm.offset32).with_doc("Byte offset from element address"),
1331
- ])
1332
- .operands_out(vec![Operand::new("addr", iAddr)]),
1333
- );
1334
-
1335
- ig.push(
1336
- Inst::new(
1337
- "iconst",
1338
- r#"
1339
- Integer constant.
1340
-
1341
- Create a scalar integer SSA value with an immediate constant value, or
1342
- an integer vector where all the lanes have the same value.
1343
- "#,
1344
- &formats.unary_imm,
1345
- )
1346
- .operands_in(vec![Operand::new("N", &imm.imm64)])
1347
- .operands_out(vec![
1348
- Operand::new("a", NarrowInt).with_doc("A constant integer scalar or vector value")
1349
- ]),
1350
- );
1351
-
1352
- ig.push(
1353
- Inst::new(
1354
- "f32const",
1355
- r#"
1356
- Floating point constant.
1357
-
1358
- Create a `f32` SSA value with an immediate constant value.
1359
- "#,
1360
- &formats.unary_ieee32,
1361
- )
1362
- .operands_in(vec![Operand::new("N", &imm.ieee32)])
1363
- .operands_out(vec![
1364
- Operand::new("a", f32_).with_doc("A constant f32 scalar value")
1365
- ]),
1366
- );
1367
-
1368
- ig.push(
1369
- Inst::new(
1370
- "f64const",
1371
- r#"
1372
- Floating point constant.
1373
-
1374
- Create a `f64` SSA value with an immediate constant value.
1375
- "#,
1376
- &formats.unary_ieee64,
1377
- )
1378
- .operands_in(vec![Operand::new("N", &imm.ieee64)])
1379
- .operands_out(vec![
1380
- Operand::new("a", f64_).with_doc("A constant f64 scalar value")
1381
- ]),
1382
- );
1383
-
1384
- ig.push(
1385
- Inst::new(
1386
- "vconst",
1387
- r#"
1388
- SIMD vector constant.
1389
-
1390
- Construct a vector with the given immediate bytes.
1391
- "#,
1392
- &formats.unary_const,
1393
- )
1394
- .operands_in(vec![Operand::new("N", &imm.pool_constant)
1395
- .with_doc("The 16 immediate bytes of a 128-bit vector")])
1396
- .operands_out(vec![
1397
- Operand::new("a", TxN).with_doc("A constant vector value")
1398
- ]),
1399
- );
1400
-
1401
- let Tx16 = &TypeVar::new(
1402
- "Tx16",
1403
- "A SIMD vector with exactly 16 lanes of 8-bit values; eventually this may support other \
1404
- lane counts and widths",
1405
- TypeSetBuilder::new()
1406
- .ints(8..8)
1407
- .simd_lanes(16..16)
1408
- .includes_scalars(false)
1409
- .build(),
1410
- );
1411
-
1412
- ig.push(
1413
- Inst::new(
1414
- "shuffle",
1415
- r#"
1416
- SIMD vector shuffle.
1417
-
1418
- Shuffle two vectors using the given immediate bytes. For each of the 16 bytes of the
1419
- immediate, a value i of 0-15 selects the i-th element of the first vector and a value i of
1420
- 16-31 selects the (i-16)th element of the second vector. Immediate values outside of the
1421
- 0-31 range are not valid.
1422
- "#,
1423
- &formats.shuffle,
1424
- )
1425
- .operands_in(vec![
1426
- Operand::new("a", Tx16).with_doc("A vector value"),
1427
- Operand::new("b", Tx16).with_doc("A vector value"),
1428
- Operand::new("mask", &imm.uimm128)
1429
- .with_doc("The 16 immediate bytes used for selecting the elements to shuffle"),
1430
- ])
1431
- .operands_out(vec![Operand::new("a", Tx16).with_doc("A vector value")]),
1432
- );
1433
-
1434
- ig.push(
1435
- Inst::new(
1436
- "null",
1437
- r#"
1438
- Null constant value for reference types.
1439
-
1440
- Create a scalar reference SSA value with a constant null value.
1441
- "#,
1442
- &formats.nullary,
1443
- )
1444
- .operands_out(vec![
1445
- Operand::new("a", Ref).with_doc("A constant reference null value")
1446
- ]),
1447
- );
1448
-
1449
- ig.push(Inst::new(
1450
- "nop",
1451
- r#"
1452
- Just a dummy instruction.
1453
-
1454
- Note: this doesn't compile to a machine code nop.
1455
- "#,
1456
- &formats.nullary,
1457
- ));
1458
-
1459
- ig.push(
1460
- Inst::new(
1461
- "select",
1462
- r#"
1463
- Conditional select.
1464
-
1465
- This instruction selects whole values. Use `bitselect` to choose each
1466
- bit according to a mask.
1467
- "#,
1468
- &formats.ternary,
1469
- )
1470
- .operands_in(vec![
1471
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
1472
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1473
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1474
- ])
1475
- .operands_out(vec![Operand::new("a", Any)]),
1476
- );
1477
-
1478
- ig.push(
1479
- Inst::new(
1480
- "select_spectre_guard",
1481
- r#"
1482
- Conditional select intended for Spectre guards.
1483
-
1484
- This operation is semantically equivalent to a select instruction.
1485
- However, it is guaranteed to not be removed or otherwise altered by any
1486
- optimization pass, and is guaranteed to result in a conditional-move
1487
- instruction, not a branch-based lowering. As such, it is suitable
1488
- for use when producing Spectre guards. For example, a bounds-check
1489
- may guard against unsafe speculation past a bounds-check conditional
1490
- branch by passing the address or index to be accessed through a
1491
- conditional move, also gated on the same condition. Because no
1492
- Spectre-vulnerable processors are known to perform speculation on
1493
- conditional move instructions, this is guaranteed to pick the
1494
- correct input. If the selected input in case of overflow is a "safe"
1495
- value, for example a null pointer that causes an exception in the
1496
- speculative path, this ensures that no Spectre vulnerability will
1497
- exist.
1498
- "#,
1499
- &formats.ternary,
1500
- )
1501
- .operands_in(vec![
1502
- Operand::new("c", ScalarTruthy).with_doc("Controlling value to test"),
1503
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1504
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1505
- ])
1506
- .operands_out(vec![Operand::new("a", Any)])
1507
- .other_side_effects()
1508
- // We can de-duplicate spectre selects since the side effect is
1509
- // idempotent.
1510
- .side_effects_idempotent(),
1511
- );
1512
-
1513
- ig.push(
1514
- Inst::new(
1515
- "bitselect",
1516
- r#"
1517
- Conditional select of bits.
1518
-
1519
- For each bit in `c`, this instruction selects the corresponding bit from `x` if the bit
1520
- in `x` is 1 and the corresponding bit from `y` if the bit in `c` is 0. See also:
1521
- `select`.
1522
- "#,
1523
- &formats.ternary,
1524
- )
1525
- .operands_in(vec![
1526
- Operand::new("c", Any).with_doc("Controlling value to test"),
1527
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1528
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1529
- ])
1530
- .operands_out(vec![Operand::new("a", Any)]),
1531
- );
1532
-
1533
- ig.push(
1534
- Inst::new(
1535
- "x86_blendv",
1536
- r#"
1537
- A bitselect-lookalike instruction except with the semantics of
1538
- `blendv`-related instructions on x86.
1539
-
1540
- This instruction will use the top bit of each lane in `c`, the condition
1541
- mask. If the bit is 1 then the corresponding lane from `x` is chosen.
1542
- Otherwise the corresponding lane from `y` is chosen.
1543
-
1544
- "#,
1545
- &formats.ternary,
1546
- )
1547
- .operands_in(vec![
1548
- Operand::new("c", Any).with_doc("Controlling value to test"),
1549
- Operand::new("x", Any).with_doc("Value to use when `c` is true"),
1550
- Operand::new("y", Any).with_doc("Value to use when `c` is false"),
1551
- ])
1552
- .operands_out(vec![Operand::new("a", Any)]),
1553
- );
1554
-
1555
- ig.push(
1556
- Inst::new(
1557
- "vany_true",
1558
- r#"
1559
- Reduce a vector to a scalar boolean.
1560
-
1561
- Return a scalar boolean true if any lane in ``a`` is non-zero, false otherwise.
1562
- "#,
1563
- &formats.unary,
1564
- )
1565
- .operands_in(vec![Operand::new("a", TxN)])
1566
- .operands_out(vec![Operand::new("s", i8)]),
1567
- );
1568
-
1569
- ig.push(
1570
- Inst::new(
1571
- "vall_true",
1572
- r#"
1573
- Reduce a vector to a scalar boolean.
1574
-
1575
- Return a scalar boolean true if all lanes in ``i`` are non-zero, false otherwise.
1576
- "#,
1577
- &formats.unary,
1578
- )
1579
- .operands_in(vec![Operand::new("a", TxN)])
1580
- .operands_out(vec![Operand::new("s", i8)]),
1581
- );
1582
-
1583
- ig.push(
1584
- Inst::new(
1585
- "vhigh_bits",
1586
- r#"
1587
- Reduce a vector to a scalar integer.
1588
-
1589
- Return a scalar integer, consisting of the concatenation of the most significant bit
1590
- of each lane of ``a``.
1591
- "#,
1592
- &formats.unary,
1593
- )
1594
- .operands_in(vec![Operand::new("a", TxN)])
1595
- .operands_out(vec![Operand::new("x", Int)]),
1596
- );
1597
-
1598
- ig.push(
1599
- Inst::new(
1600
- "icmp",
1601
- r#"
1602
- Integer comparison.
1603
-
1604
- The condition code determines if the operands are interpreted as signed
1605
- or unsigned integers.
1606
-
1607
- | Signed | Unsigned | Condition |
1608
- |--------|----------|-----------------------|
1609
- | eq | eq | Equal |
1610
- | ne | ne | Not equal |
1611
- | slt | ult | Less than |
1612
- | sge | uge | Greater than or equal |
1613
- | sgt | ugt | Greater than |
1614
- | sle | ule | Less than or equal |
1615
-
1616
- When this instruction compares integer vectors, it returns a vector of
1617
- lane-wise comparisons.
1618
-
1619
- When comparing scalars, the result is:
1620
- - `1` if the condition holds.
1621
- - `0` if the condition does not hold.
1622
-
1623
- When comparing vectors, the result is:
1624
- - `-1` (i.e. all ones) in each lane where the condition holds.
1625
- - `0` in each lane where the condition does not hold.
1626
- "#,
1627
- &formats.int_compare,
1628
- )
1629
- .operands_in(vec![
1630
- Operand::new("Cond", &imm.intcc),
1631
- Operand::new("x", Int),
1632
- Operand::new("y", Int),
1633
- ])
1634
- .operands_out(vec![Operand::new("a", &Int.as_truthy())]),
1635
- );
1636
-
1637
- ig.push(
1638
- Inst::new(
1639
- "icmp_imm",
1640
- r#"
1641
- Compare scalar integer to a constant.
1642
-
1643
- This is the same as the `icmp` instruction, except one operand is
1644
- a sign extended 64 bit immediate constant.
1645
-
1646
- This instruction can only compare scalars. Use `icmp` for
1647
- lane-wise vector comparisons.
1648
- "#,
1649
- &formats.int_compare_imm,
1650
- )
1651
- .operands_in(vec![
1652
- Operand::new("Cond", &imm.intcc),
1653
- Operand::new("x", iB),
1654
- Operand::new("Y", &imm.imm64),
1655
- ])
1656
- .operands_out(vec![Operand::new("a", i8)]),
1657
- );
1658
-
1659
- ig.push(
1660
- Inst::new(
1661
- "iadd",
1662
- r#"
1663
- Wrapping integer addition: `a := x + y \pmod{2^B}`.
1664
-
1665
- This instruction does not depend on the signed/unsigned interpretation
1666
- of the operands.
1667
- "#,
1668
- &formats.binary,
1669
- )
1670
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1671
- .operands_out(vec![Operand::new("a", Int)]),
1672
- );
1673
-
1674
- ig.push(
1675
- Inst::new(
1676
- "isub",
1677
- r#"
1678
- Wrapping integer subtraction: `a := x - y \pmod{2^B}`.
1679
-
1680
- This instruction does not depend on the signed/unsigned interpretation
1681
- of the operands.
1682
- "#,
1683
- &formats.binary,
1684
- )
1685
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1686
- .operands_out(vec![Operand::new("a", Int)]),
1687
- );
1688
-
1689
- ig.push(
1690
- Inst::new(
1691
- "ineg",
1692
- r#"
1693
- Integer negation: `a := -x \pmod{2^B}`.
1694
- "#,
1695
- &formats.unary,
1696
- )
1697
- .operands_in(vec![Operand::new("x", Int)])
1698
- .operands_out(vec![Operand::new("a", Int)]),
1699
- );
1700
-
1701
- ig.push(
1702
- Inst::new(
1703
- "iabs",
1704
- r#"
1705
- Integer absolute value with wrapping: `a := |x|`.
1706
- "#,
1707
- &formats.unary,
1708
- )
1709
- .operands_in(vec![Operand::new("x", Int)])
1710
- .operands_out(vec![Operand::new("a", Int)]),
1711
- );
1712
-
1713
- ig.push(
1714
- Inst::new(
1715
- "imul",
1716
- r#"
1717
- Wrapping integer multiplication: `a := x y \pmod{2^B}`.
1718
-
1719
- This instruction does not depend on the signed/unsigned interpretation
1720
- of the operands.
1721
-
1722
- Polymorphic over all integer types (vector and scalar).
1723
- "#,
1724
- &formats.binary,
1725
- )
1726
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1727
- .operands_out(vec![Operand::new("a", Int)]),
1728
- );
1729
-
1730
- ig.push(
1731
- Inst::new(
1732
- "umulhi",
1733
- r#"
1734
- Unsigned integer multiplication, producing the high half of a
1735
- double-length result.
1736
-
1737
- Polymorphic over all integer types (vector and scalar).
1738
- "#,
1739
- &formats.binary,
1740
- )
1741
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1742
- .operands_out(vec![Operand::new("a", Int)]),
1743
- );
1744
-
1745
- ig.push(
1746
- Inst::new(
1747
- "smulhi",
1748
- r#"
1749
- Signed integer multiplication, producing the high half of a
1750
- double-length result.
1751
-
1752
- Polymorphic over all integer types (vector and scalar).
1753
- "#,
1754
- &formats.binary,
1755
- )
1756
- .operands_in(vec![Operand::new("x", Int), Operand::new("y", Int)])
1757
- .operands_out(vec![Operand::new("a", Int)]),
1758
- );
1759
-
1760
- let I16or32 = &TypeVar::new(
1761
- "I16or32",
1762
- "A vector integer type with 16- or 32-bit numbers",
1763
- TypeSetBuilder::new().ints(16..32).simd_lanes(4..8).build(),
1764
- );
1765
-
1766
- ig.push(
1767
- Inst::new(
1768
- "sqmul_round_sat",
1769
- r#"
1770
- Fixed-point multiplication of numbers in the QN format, where N + 1
1771
- is the number bitwidth:
1772
- `a := signed_saturate((x * y + 1 << (Q - 1)) >> Q)`
1773
-
1774
- Polymorphic over all integer vector types with 16- or 32-bit numbers.
1775
- "#,
1776
- &formats.binary,
1777
- )
1778
- .operands_in(vec![Operand::new("x", I16or32), Operand::new("y", I16or32)])
1779
- .operands_out(vec![Operand::new("a", I16or32)]),
1780
- );
1781
-
1782
- ig.push(
1783
- Inst::new(
1784
- "x86_pmulhrsw",
1785
- r#"
1786
- A similar instruction to `sqmul_round_sat` except with the semantics
1787
- of x86's `pmulhrsw` instruction.
1788
-
1789
- This is the same as `sqmul_round_sat` except when both input lanes are
1790
- `i16::MIN`.
1791
- "#,
1792
- &formats.binary,
1793
- )
1794
- .operands_in(vec![Operand::new("x", I16or32), Operand::new("y", I16or32)])
1795
- .operands_out(vec![Operand::new("a", I16or32)]),
1796
- );
1797
-
1798
- // Integer division and remainder are scalar-only; most
1799
- // hardware does not directly support vector integer division.
1800
-
1801
- ig.push(
1802
- Inst::new(
1803
- "udiv",
1804
- r#"
1805
- Unsigned integer division: `a := \lfloor {x \over y} \rfloor`.
1806
-
1807
- This operation traps if the divisor is zero.
1808
- "#,
1809
- &formats.binary,
1810
- )
1811
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1812
- .operands_out(vec![Operand::new("a", iB)])
1813
- .can_trap()
1814
- .side_effects_idempotent(),
1815
- );
1816
-
1817
- ig.push(
1818
- Inst::new(
1819
- "sdiv",
1820
- r#"
1821
- Signed integer division rounded toward zero: `a := sign(xy)
1822
- \lfloor {|x| \over |y|}\rfloor`.
1823
-
1824
- This operation traps if the divisor is zero, or if the result is not
1825
- representable in `B` bits two's complement. This only happens
1826
- when `x = -2^{B-1}, y = -1`.
1827
- "#,
1828
- &formats.binary,
1829
- )
1830
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1831
- .operands_out(vec![Operand::new("a", iB)])
1832
- .can_trap()
1833
- .side_effects_idempotent(),
1834
- );
1835
-
1836
- ig.push(
1837
- Inst::new(
1838
- "urem",
1839
- r#"
1840
- Unsigned integer remainder.
1841
-
1842
- This operation traps if the divisor is zero.
1843
- "#,
1844
- &formats.binary,
1845
- )
1846
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1847
- .operands_out(vec![Operand::new("a", iB)])
1848
- .can_trap()
1849
- .side_effects_idempotent(),
1850
- );
1851
-
1852
- ig.push(
1853
- Inst::new(
1854
- "srem",
1855
- r#"
1856
- Signed integer remainder. The result has the sign of the dividend.
1857
-
1858
- This operation traps if the divisor is zero.
1859
- "#,
1860
- &formats.binary,
1861
- )
1862
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
1863
- .operands_out(vec![Operand::new("a", iB)])
1864
- .can_trap()
1865
- .side_effects_idempotent(),
1866
- );
1867
-
1868
- ig.push(
1869
- Inst::new(
1870
- "iadd_imm",
1871
- r#"
1872
- Add immediate integer.
1873
-
1874
- Same as `iadd`, but one operand is a sign extended 64 bit immediate constant.
1875
-
1876
- Polymorphic over all scalar integer types, but does not support vector
1877
- types.
1878
- "#,
1879
- &formats.binary_imm64,
1880
- )
1881
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1882
- .operands_out(vec![Operand::new("a", iB)]),
1883
- );
1884
-
1885
- ig.push(
1886
- Inst::new(
1887
- "imul_imm",
1888
- r#"
1889
- Integer multiplication by immediate constant.
1890
-
1891
- Same as `imul`, but one operand is a sign extended 64 bit immediate constant.
1892
-
1893
- Polymorphic over all scalar integer types, but does not support vector
1894
- types.
1895
- "#,
1896
- &formats.binary_imm64,
1897
- )
1898
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1899
- .operands_out(vec![Operand::new("a", iB)]),
1900
- );
1901
-
1902
- ig.push(
1903
- Inst::new(
1904
- "udiv_imm",
1905
- r#"
1906
- Unsigned integer division by an immediate constant.
1907
-
1908
- Same as `udiv`, but one operand is a zero extended 64 bit immediate constant.
1909
-
1910
- This operation traps if the divisor is zero.
1911
- "#,
1912
- &formats.binary_imm64,
1913
- )
1914
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1915
- .operands_out(vec![Operand::new("a", iB)]),
1916
- );
1917
-
1918
- ig.push(
1919
- Inst::new(
1920
- "sdiv_imm",
1921
- r#"
1922
- Signed integer division by an immediate constant.
1923
-
1924
- Same as `sdiv`, but one operand is a sign extended 64 bit immediate constant.
1925
-
1926
- This operation traps if the divisor is zero, or if the result is not
1927
- representable in `B` bits two's complement. This only happens
1928
- when `x = -2^{B-1}, Y = -1`.
1929
- "#,
1930
- &formats.binary_imm64,
1931
- )
1932
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1933
- .operands_out(vec![Operand::new("a", iB)]),
1934
- );
1935
-
1936
- ig.push(
1937
- Inst::new(
1938
- "urem_imm",
1939
- r#"
1940
- Unsigned integer remainder with immediate divisor.
1941
-
1942
- Same as `urem`, but one operand is a zero extended 64 bit immediate constant.
1943
-
1944
- This operation traps if the divisor is zero.
1945
- "#,
1946
- &formats.binary_imm64,
1947
- )
1948
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1949
- .operands_out(vec![Operand::new("a", iB)]),
1950
- );
1951
-
1952
- ig.push(
1953
- Inst::new(
1954
- "srem_imm",
1955
- r#"
1956
- Signed integer remainder with immediate divisor.
1957
-
1958
- Same as `srem`, but one operand is a sign extended 64 bit immediate constant.
1959
-
1960
- This operation traps if the divisor is zero.
1961
- "#,
1962
- &formats.binary_imm64,
1963
- )
1964
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1965
- .operands_out(vec![Operand::new("a", iB)]),
1966
- );
1967
-
1968
- ig.push(
1969
- Inst::new(
1970
- "irsub_imm",
1971
- r#"
1972
- Immediate reverse wrapping subtraction: `a := Y - x \pmod{2^B}`.
1973
-
1974
- The immediate operand is a sign extended 64 bit constant.
1975
-
1976
- Also works as integer negation when `Y = 0`. Use `iadd_imm`
1977
- with a negative immediate operand for the reverse immediate
1978
- subtraction.
1979
-
1980
- Polymorphic over all scalar integer types, but does not support vector
1981
- types.
1982
- "#,
1983
- &formats.binary_imm64,
1984
- )
1985
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
1986
- .operands_out(vec![Operand::new("a", iB)]),
1987
- );
1988
-
1989
- ig.push(
1990
- Inst::new(
1991
- "iadd_cin",
1992
- r#"
1993
- Add integers with carry in.
1994
-
1995
- Same as `iadd` with an additional carry input. Computes:
1996
-
1997
- ```text
1998
- a = x + y + c_{in} \pmod 2^B
1999
- ```
2000
-
2001
- Polymorphic over all scalar integer types, but does not support vector
2002
- types.
2003
- "#,
2004
- &formats.ternary,
2005
- )
2006
- .operands_in(vec![
2007
- Operand::new("x", iB),
2008
- Operand::new("y", iB),
2009
- Operand::new("c_in", i8).with_doc("Input carry flag"),
2010
- ])
2011
- .operands_out(vec![Operand::new("a", iB)]),
2012
- );
2013
-
2014
- ig.push(
2015
- Inst::new(
2016
- "iadd_carry",
2017
- r#"
2018
- Add integers with carry in and out.
2019
-
2020
- Same as `iadd` with an additional carry input and output.
2021
-
2022
- ```text
2023
- a &= x + y + c_{in} \pmod 2^B \\
2024
- c_{out} &= x + y + c_{in} >= 2^B
2025
- ```
2026
-
2027
- Polymorphic over all scalar integer types, but does not support vector
2028
- types.
2029
- "#,
2030
- &formats.ternary,
2031
- )
2032
- .operands_in(vec![
2033
- Operand::new("x", iB),
2034
- Operand::new("y", iB),
2035
- Operand::new("c_in", i8).with_doc("Input carry flag"),
2036
- ])
2037
- .operands_out(vec![
2038
- Operand::new("a", iB),
2039
- Operand::new("c_out", i8).with_doc("Output carry flag"),
2040
- ]),
2041
- );
2042
-
2043
- {
2044
- let of_out = Operand::new("of", i8).with_doc("Overflow flag");
2045
- ig.push(
2046
- Inst::new(
2047
- "uadd_overflow",
2048
- r#"
2049
- Add integers unsigned with overflow out.
2050
- ``of`` is set when the addition overflowed.
2051
- ```text
2052
- a &= x + y \pmod 2^B \\
2053
- of &= x+y >= 2^B
2054
- ```
2055
- Polymorphic over all scalar integer types, but does not support vector
2056
- types.
2057
- "#,
2058
- &formats.binary,
2059
- )
2060
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2061
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2062
- );
2063
-
2064
- ig.push(
2065
- Inst::new(
2066
- "sadd_overflow",
2067
- r#"
2068
- Add integers signed with overflow out.
2069
- ``of`` is set when the addition over- or underflowed.
2070
- Polymorphic over all scalar integer types, but does not support vector
2071
- types.
2072
- "#,
2073
- &formats.binary,
2074
- )
2075
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2076
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2077
- );
2078
-
2079
- ig.push(
2080
- Inst::new(
2081
- "usub_overflow",
2082
- r#"
2083
- Subtract integers unsigned with overflow out.
2084
- ``of`` is set when the subtraction underflowed.
2085
- ```text
2086
- a &= x - y \pmod 2^B \\
2087
- of &= x - y < 0
2088
- ```
2089
- Polymorphic over all scalar integer types, but does not support vector
2090
- types.
2091
- "#,
2092
- &formats.binary,
2093
- )
2094
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2095
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2096
- );
2097
-
2098
- ig.push(
2099
- Inst::new(
2100
- "ssub_overflow",
2101
- r#"
2102
- Subtract integers signed with overflow out.
2103
- ``of`` is set when the subtraction over- or underflowed.
2104
- Polymorphic over all scalar integer types, but does not support vector
2105
- types.
2106
- "#,
2107
- &formats.binary,
2108
- )
2109
- .operands_in(vec![Operand::new("x", iB), Operand::new("y", iB)])
2110
- .operands_out(vec![Operand::new("a", iB), of_out.clone()]),
2111
- );
2112
-
2113
- {
2114
- let NarrowScalar = &TypeVar::new(
2115
- "NarrowScalar",
2116
- "A scalar integer type up to 64 bits",
2117
- TypeSetBuilder::new().ints(8..64).build(),
2118
- );
2119
-
2120
- ig.push(
2121
- Inst::new(
2122
- "umul_overflow",
2123
- r#"
2124
- Multiply integers unsigned with overflow out.
2125
- ``of`` is set when the multiplication overflowed.
2126
- ```text
2127
- a &= x * y \pmod 2^B \\
2128
- of &= x * y > 2^B
2129
- ```
2130
- Polymorphic over all scalar integer types except i128, but does not support vector
2131
- types.
2132
- "#,
2133
- &formats.binary,
2134
- )
2135
- .operands_in(vec![
2136
- Operand::new("x", NarrowScalar),
2137
- Operand::new("y", NarrowScalar),
2138
- ])
2139
- .operands_out(vec![Operand::new("a", NarrowScalar), of_out.clone()]),
2140
- );
2141
-
2142
- ig.push(
2143
- Inst::new(
2144
- "smul_overflow",
2145
- r#"
2146
- Multiply integers signed with overflow out.
2147
- ``of`` is set when the multiplication over- or underflowed.
2148
- Polymorphic over all scalar integer types except i128, but does not support vector
2149
- types.
2150
- "#,
2151
- &formats.binary,
2152
- )
2153
- .operands_in(vec![
2154
- Operand::new("x", NarrowScalar),
2155
- Operand::new("y", NarrowScalar),
2156
- ])
2157
- .operands_out(vec![Operand::new("a", NarrowScalar), of_out.clone()]),
2158
- );
2159
- }
2160
- }
2161
-
2162
- let i32_64 = &TypeVar::new(
2163
- "i32_64",
2164
- "A 32 or 64-bit scalar integer type",
2165
- TypeSetBuilder::new().ints(32..64).build(),
2166
- );
2167
-
2168
- ig.push(
2169
- Inst::new(
2170
- "uadd_overflow_trap",
2171
- r#"
2172
- Unsigned addition of x and y, trapping if the result overflows.
2173
-
2174
- Accepts 32 or 64-bit integers, and does not support vector types.
2175
- "#,
2176
- &formats.int_add_trap,
2177
- )
2178
- .operands_in(vec![
2179
- Operand::new("x", i32_64),
2180
- Operand::new("y", i32_64),
2181
- Operand::new("code", &imm.trapcode),
2182
- ])
2183
- .operands_out(vec![Operand::new("a", i32_64)])
2184
- .can_trap()
2185
- .side_effects_idempotent(),
2186
- );
2187
-
2188
- ig.push(
2189
- Inst::new(
2190
- "isub_bin",
2191
- r#"
2192
- Subtract integers with borrow in.
2193
-
2194
- Same as `isub` with an additional borrow flag input. Computes:
2195
-
2196
- ```text
2197
- a = x - (y + b_{in}) \pmod 2^B
2198
- ```
2199
-
2200
- Polymorphic over all scalar integer types, but does not support vector
2201
- types.
2202
- "#,
2203
- &formats.ternary,
2204
- )
2205
- .operands_in(vec![
2206
- Operand::new("x", iB),
2207
- Operand::new("y", iB),
2208
- Operand::new("b_in", i8).with_doc("Input borrow flag"),
2209
- ])
2210
- .operands_out(vec![Operand::new("a", iB)]),
2211
- );
2212
-
2213
- ig.push(
2214
- Inst::new(
2215
- "isub_borrow",
2216
- r#"
2217
- Subtract integers with borrow in and out.
2218
-
2219
- Same as `isub` with an additional borrow flag input and output.
2220
-
2221
- ```text
2222
- a &= x - (y + b_{in}) \pmod 2^B \\
2223
- b_{out} &= x < y + b_{in}
2224
- ```
2225
-
2226
- Polymorphic over all scalar integer types, but does not support vector
2227
- types.
2228
- "#,
2229
- &formats.ternary,
2230
- )
2231
- .operands_in(vec![
2232
- Operand::new("x", iB),
2233
- Operand::new("y", iB),
2234
- Operand::new("b_in", i8).with_doc("Input borrow flag"),
2235
- ])
2236
- .operands_out(vec![
2237
- Operand::new("a", iB),
2238
- Operand::new("b_out", i8).with_doc("Output borrow flag"),
2239
- ]),
2240
- );
2241
-
2242
- let bits = &TypeVar::new(
2243
- "bits",
2244
- "Any integer, float, or vector type",
2245
- TypeSetBuilder::new()
2246
- .ints(Interval::All)
2247
- .floats(Interval::All)
2248
- .simd_lanes(Interval::All)
2249
- .includes_scalars(true)
2250
- .build(),
2251
- );
2252
-
2253
- ig.push(
2254
- Inst::new(
2255
- "band",
2256
- r#"
2257
- Bitwise and.
2258
- "#,
2259
- &formats.binary,
2260
- )
2261
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2262
- .operands_out(vec![Operand::new("a", bits)]),
2263
- );
2264
-
2265
- ig.push(
2266
- Inst::new(
2267
- "bor",
2268
- r#"
2269
- Bitwise or.
2270
- "#,
2271
- &formats.binary,
2272
- )
2273
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2274
- .operands_out(vec![Operand::new("a", bits)]),
2275
- );
2276
-
2277
- ig.push(
2278
- Inst::new(
2279
- "bxor",
2280
- r#"
2281
- Bitwise xor.
2282
- "#,
2283
- &formats.binary,
2284
- )
2285
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2286
- .operands_out(vec![Operand::new("a", bits)]),
2287
- );
2288
-
2289
- ig.push(
2290
- Inst::new(
2291
- "bnot",
2292
- r#"
2293
- Bitwise not.
2294
- "#,
2295
- &formats.unary,
2296
- )
2297
- .operands_in(vec![Operand::new("x", bits)])
2298
- .operands_out(vec![Operand::new("a", bits)]),
2299
- );
2300
-
2301
- ig.push(
2302
- Inst::new(
2303
- "band_not",
2304
- r#"
2305
- Bitwise and not.
2306
-
2307
- Computes `x & ~y`.
2308
- "#,
2309
- &formats.binary,
2310
- )
2311
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2312
- .operands_out(vec![Operand::new("a", bits)]),
2313
- );
2314
-
2315
- ig.push(
2316
- Inst::new(
2317
- "bor_not",
2318
- r#"
2319
- Bitwise or not.
2320
-
2321
- Computes `x | ~y`.
2322
- "#,
2323
- &formats.binary,
2324
- )
2325
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2326
- .operands_out(vec![Operand::new("a", bits)]),
2327
- );
2328
-
2329
- ig.push(
2330
- Inst::new(
2331
- "bxor_not",
2332
- r#"
2333
- Bitwise xor not.
2334
-
2335
- Computes `x ^ ~y`.
2336
- "#,
2337
- &formats.binary,
2338
- )
2339
- .operands_in(vec![Operand::new("x", bits), Operand::new("y", bits)])
2340
- .operands_out(vec![Operand::new("a", bits)]),
2341
- );
2342
-
2343
- ig.push(
2344
- Inst::new(
2345
- "band_imm",
2346
- r#"
2347
- Bitwise and with immediate.
2348
-
2349
- Same as `band`, but one operand is a zero extended 64 bit immediate constant.
2350
-
2351
- Polymorphic over all scalar integer types, but does not support vector
2352
- types.
2353
- "#,
2354
- &formats.binary_imm64,
2355
- )
2356
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2357
- .operands_out(vec![Operand::new("a", iB)]),
2358
- );
2359
-
2360
- ig.push(
2361
- Inst::new(
2362
- "bor_imm",
2363
- r#"
2364
- Bitwise or with immediate.
2365
-
2366
- Same as `bor`, but one operand is a zero extended 64 bit immediate constant.
2367
-
2368
- Polymorphic over all scalar integer types, but does not support vector
2369
- types.
2370
- "#,
2371
- &formats.binary_imm64,
2372
- )
2373
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2374
- .operands_out(vec![Operand::new("a", iB)]),
2375
- );
2376
-
2377
- ig.push(
2378
- Inst::new(
2379
- "bxor_imm",
2380
- r#"
2381
- Bitwise xor with immediate.
2382
-
2383
- Same as `bxor`, but one operand is a zero extended 64 bit immediate constant.
2384
-
2385
- Polymorphic over all scalar integer types, but does not support vector
2386
- types.
2387
- "#,
2388
- &formats.binary_imm64,
2389
- )
2390
- .operands_in(vec![Operand::new("x", iB), Operand::new("Y", &imm.imm64)])
2391
- .operands_out(vec![Operand::new("a", iB)]),
2392
- );
2393
-
2394
- ig.push(
2395
- Inst::new(
2396
- "rotl",
2397
- r#"
2398
- Rotate left.
2399
-
2400
- Rotate the bits in ``x`` by ``y`` places.
2401
- "#,
2402
- &formats.binary,
2403
- )
2404
- .operands_in(vec![
2405
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2406
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2407
- ])
2408
- .operands_out(vec![Operand::new("a", Int)]),
2409
- );
2410
-
2411
- ig.push(
2412
- Inst::new(
2413
- "rotr",
2414
- r#"
2415
- Rotate right.
2416
-
2417
- Rotate the bits in ``x`` by ``y`` places.
2418
- "#,
2419
- &formats.binary,
2420
- )
2421
- .operands_in(vec![
2422
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2423
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2424
- ])
2425
- .operands_out(vec![Operand::new("a", Int)]),
2426
- );
2427
-
2428
- ig.push(
2429
- Inst::new(
2430
- "rotl_imm",
2431
- r#"
2432
- Rotate left by immediate.
2433
-
2434
- Same as `rotl`, but one operand is a zero extended 64 bit immediate constant.
2435
- "#,
2436
- &formats.binary_imm64,
2437
- )
2438
- .operands_in(vec![
2439
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2440
- Operand::new("Y", &imm.imm64),
2441
- ])
2442
- .operands_out(vec![Operand::new("a", Int)]),
2443
- );
2444
-
2445
- ig.push(
2446
- Inst::new(
2447
- "rotr_imm",
2448
- r#"
2449
- Rotate right by immediate.
2450
-
2451
- Same as `rotr`, but one operand is a zero extended 64 bit immediate constant.
2452
- "#,
2453
- &formats.binary_imm64,
2454
- )
2455
- .operands_in(vec![
2456
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2457
- Operand::new("Y", &imm.imm64),
2458
- ])
2459
- .operands_out(vec![Operand::new("a", Int)]),
2460
- );
2461
-
2462
- ig.push(
2463
- Inst::new(
2464
- "ishl",
2465
- r#"
2466
- Integer shift left. Shift the bits in ``x`` towards the MSB by ``y``
2467
- places. Shift in zero bits to the LSB.
2468
-
2469
- The shift amount is masked to the size of ``x``.
2470
-
2471
- When shifting a B-bits integer type, this instruction computes:
2472
-
2473
- ```text
2474
- s &:= y \pmod B,
2475
- a &:= x \cdot 2^s \pmod{2^B}.
2476
- ```
2477
- "#,
2478
- &formats.binary,
2479
- )
2480
- .operands_in(vec![
2481
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2482
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2483
- ])
2484
- .operands_out(vec![Operand::new("a", Int)]),
2485
- );
2486
-
2487
- ig.push(
2488
- Inst::new(
2489
- "ushr",
2490
- r#"
2491
- Unsigned shift right. Shift bits in ``x`` towards the LSB by ``y``
2492
- places, shifting in zero bits to the MSB. Also called a *logical
2493
- shift*.
2494
-
2495
- The shift amount is masked to the size of ``x``.
2496
-
2497
- When shifting a B-bits integer type, this instruction computes:
2498
-
2499
- ```text
2500
- s &:= y \pmod B,
2501
- a &:= \lfloor x \cdot 2^{-s} \rfloor.
2502
- ```
2503
- "#,
2504
- &formats.binary,
2505
- )
2506
- .operands_in(vec![
2507
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2508
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2509
- ])
2510
- .operands_out(vec![Operand::new("a", Int)]),
2511
- );
2512
-
2513
- ig.push(
2514
- Inst::new(
2515
- "sshr",
2516
- r#"
2517
- Signed shift right. Shift bits in ``x`` towards the LSB by ``y``
2518
- places, shifting in sign bits to the MSB. Also called an *arithmetic
2519
- shift*.
2520
-
2521
- The shift amount is masked to the size of ``x``.
2522
- "#,
2523
- &formats.binary,
2524
- )
2525
- .operands_in(vec![
2526
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2527
- Operand::new("y", iB).with_doc("Number of bits to shift"),
2528
- ])
2529
- .operands_out(vec![Operand::new("a", Int)]),
2530
- );
2531
-
2532
- ig.push(
2533
- Inst::new(
2534
- "ishl_imm",
2535
- r#"
2536
- Integer shift left by immediate.
2537
-
2538
- The shift amount is masked to the size of ``x``.
2539
- "#,
2540
- &formats.binary_imm64,
2541
- )
2542
- .operands_in(vec![
2543
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2544
- Operand::new("Y", &imm.imm64),
2545
- ])
2546
- .operands_out(vec![Operand::new("a", Int)]),
2547
- );
2548
-
2549
- ig.push(
2550
- Inst::new(
2551
- "ushr_imm",
2552
- r#"
2553
- Unsigned shift right by immediate.
2554
-
2555
- The shift amount is masked to the size of ``x``.
2556
- "#,
2557
- &formats.binary_imm64,
2558
- )
2559
- .operands_in(vec![
2560
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2561
- Operand::new("Y", &imm.imm64),
2562
- ])
2563
- .operands_out(vec![Operand::new("a", Int)]),
2564
- );
2565
-
2566
- ig.push(
2567
- Inst::new(
2568
- "sshr_imm",
2569
- r#"
2570
- Signed shift right by immediate.
2571
-
2572
- The shift amount is masked to the size of ``x``.
2573
- "#,
2574
- &formats.binary_imm64,
2575
- )
2576
- .operands_in(vec![
2577
- Operand::new("x", Int).with_doc("Scalar or vector value to shift"),
2578
- Operand::new("Y", &imm.imm64),
2579
- ])
2580
- .operands_out(vec![Operand::new("a", Int)]),
2581
- );
2582
-
2583
- ig.push(
2584
- Inst::new(
2585
- "bitrev",
2586
- r#"
2587
- Reverse the bits of a integer.
2588
-
2589
- Reverses the bits in ``x``.
2590
- "#,
2591
- &formats.unary,
2592
- )
2593
- .operands_in(vec![Operand::new("x", iB)])
2594
- .operands_out(vec![Operand::new("a", iB)]),
2595
- );
2596
-
2597
- ig.push(
2598
- Inst::new(
2599
- "clz",
2600
- r#"
2601
- Count leading zero bits.
2602
-
2603
- Starting from the MSB in ``x``, count the number of zero bits before
2604
- reaching the first one bit. When ``x`` is zero, returns the size of x
2605
- in bits.
2606
- "#,
2607
- &formats.unary,
2608
- )
2609
- .operands_in(vec![Operand::new("x", iB)])
2610
- .operands_out(vec![Operand::new("a", iB)]),
2611
- );
2612
-
2613
- ig.push(
2614
- Inst::new(
2615
- "cls",
2616
- r#"
2617
- Count leading sign bits.
2618
-
2619
- Starting from the MSB after the sign bit in ``x``, count the number of
2620
- consecutive bits identical to the sign bit. When ``x`` is 0 or -1,
2621
- returns one less than the size of x in bits.
2622
- "#,
2623
- &formats.unary,
2624
- )
2625
- .operands_in(vec![Operand::new("x", iB)])
2626
- .operands_out(vec![Operand::new("a", iB)]),
2627
- );
2628
-
2629
- ig.push(
2630
- Inst::new(
2631
- "ctz",
2632
- r#"
2633
- Count trailing zeros.
2634
-
2635
- Starting from the LSB in ``x``, count the number of zero bits before
2636
- reaching the first one bit. When ``x`` is zero, returns the size of x
2637
- in bits.
2638
- "#,
2639
- &formats.unary,
2640
- )
2641
- .operands_in(vec![Operand::new("x", iB)])
2642
- .operands_out(vec![Operand::new("a", iB)]),
2643
- );
2644
-
2645
- ig.push(
2646
- Inst::new(
2647
- "bswap",
2648
- r#"
2649
- Reverse the byte order of an integer.
2650
-
2651
- Reverses the bytes in ``x``.
2652
- "#,
2653
- &formats.unary,
2654
- )
2655
- .operands_in(vec![Operand::new("x", iSwappable)])
2656
- .operands_out(vec![Operand::new("a", iSwappable)]),
2657
- );
2658
-
2659
- ig.push(
2660
- Inst::new(
2661
- "popcnt",
2662
- r#"
2663
- Population count
2664
-
2665
- Count the number of one bits in ``x``.
2666
- "#,
2667
- &formats.unary,
2668
- )
2669
- .operands_in(vec![Operand::new("x", Int)])
2670
- .operands_out(vec![Operand::new("a", Int)]),
2671
- );
2672
-
2673
- let Float = &TypeVar::new(
2674
- "Float",
2675
- "A scalar or vector floating point number",
2676
- TypeSetBuilder::new()
2677
- .floats(Interval::All)
2678
- .simd_lanes(Interval::All)
2679
- .dynamic_simd_lanes(Interval::All)
2680
- .build(),
2681
- );
2682
-
2683
- ig.push(
2684
- Inst::new(
2685
- "fcmp",
2686
- r#"
2687
- Floating point comparison.
2688
-
2689
- Two IEEE 754-2008 floating point numbers, `x` and `y`, relate to each
2690
- other in exactly one of four ways:
2691
-
2692
- ```text
2693
- == ==========================================
2694
- UN Unordered when one or both numbers is NaN.
2695
- EQ When `x = y`. (And `0.0 = -0.0`).
2696
- LT When `x < y`.
2697
- GT When `x > y`.
2698
- == ==========================================
2699
- ```
2700
-
2701
- The 14 `floatcc` condition codes each correspond to a subset of
2702
- the four relations, except for the empty set which would always be
2703
- false, and the full set which would always be true.
2704
-
2705
- The condition codes are divided into 7 'ordered' conditions which don't
2706
- include UN, and 7 unordered conditions which all include UN.
2707
-
2708
- ```text
2709
- +-------+------------+---------+------------+-------------------------+
2710
- |Ordered |Unordered |Condition |
2711
- +=======+============+=========+============+=========================+
2712
- |ord |EQ | LT | GT|uno |UN |NaNs absent / present. |
2713
- +-------+------------+---------+------------+-------------------------+
2714
- |eq |EQ |ueq |UN | EQ |Equal |
2715
- +-------+------------+---------+------------+-------------------------+
2716
- |one |LT | GT |ne |UN | LT | GT|Not equal |
2717
- +-------+------------+---------+------------+-------------------------+
2718
- |lt |LT |ult |UN | LT |Less than |
2719
- +-------+------------+---------+------------+-------------------------+
2720
- |le |LT | EQ |ule |UN | LT | EQ|Less than or equal |
2721
- +-------+------------+---------+------------+-------------------------+
2722
- |gt |GT |ugt |UN | GT |Greater than |
2723
- +-------+------------+---------+------------+-------------------------+
2724
- |ge |GT | EQ |uge |UN | GT | EQ|Greater than or equal |
2725
- +-------+------------+---------+------------+-------------------------+
2726
- ```
2727
-
2728
- The standard C comparison operators, `<, <=, >, >=`, are all ordered,
2729
- so they are false if either operand is NaN. The C equality operator,
2730
- `==`, is ordered, and since inequality is defined as the logical
2731
- inverse it is *unordered*. They map to the `floatcc` condition
2732
- codes as follows:
2733
-
2734
- ```text
2735
- ==== ====== ============
2736
- C `Cond` Subset
2737
- ==== ====== ============
2738
- `==` eq EQ
2739
- `!=` ne UN | LT | GT
2740
- `<` lt LT
2741
- `<=` le LT | EQ
2742
- `>` gt GT
2743
- `>=` ge GT | EQ
2744
- ==== ====== ============
2745
- ```
2746
-
2747
- This subset of condition codes also corresponds to the WebAssembly
2748
- floating point comparisons of the same name.
2749
-
2750
- When this instruction compares floating point vectors, it returns a
2751
- vector with the results of lane-wise comparisons.
2752
-
2753
- When comparing scalars, the result is:
2754
- - `1` if the condition holds.
2755
- - `0` if the condition does not hold.
2756
-
2757
- When comparing vectors, the result is:
2758
- - `-1` (i.e. all ones) in each lane where the condition holds.
2759
- - `0` in each lane where the condition does not hold.
2760
- "#,
2761
- &formats.float_compare,
2762
- )
2763
- .operands_in(vec![
2764
- Operand::new("Cond", &imm.floatcc),
2765
- Operand::new("x", Float),
2766
- Operand::new("y", Float),
2767
- ])
2768
- .operands_out(vec![Operand::new("a", &Float.as_truthy())]),
2769
- );
2770
-
2771
- ig.push(
2772
- Inst::new(
2773
- "fadd",
2774
- r#"
2775
- Floating point addition.
2776
- "#,
2777
- &formats.binary,
2778
- )
2779
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2780
- .operands_out(vec![
2781
- Operand::new("a", Float).with_doc("Result of applying operator to each lane")
2782
- ]),
2783
- );
2784
-
2785
- ig.push(
2786
- Inst::new(
2787
- "fsub",
2788
- r#"
2789
- Floating point subtraction.
2790
- "#,
2791
- &formats.binary,
2792
- )
2793
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2794
- .operands_out(vec![
2795
- Operand::new("a", Float).with_doc("Result of applying operator to each lane")
2796
- ]),
2797
- );
2798
-
2799
- ig.push(
2800
- Inst::new(
2801
- "fmul",
2802
- r#"
2803
- Floating point multiplication.
2804
- "#,
2805
- &formats.binary,
2806
- )
2807
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2808
- .operands_out(vec![
2809
- Operand::new("a", Float).with_doc("Result of applying operator to each lane")
2810
- ]),
2811
- );
2812
-
2813
- ig.push(
2814
- Inst::new(
2815
- "fdiv",
2816
- r#"
2817
- Floating point division.
2818
-
2819
- Unlike the integer division instructions ` and
2820
- `udiv`, this can't trap. Division by zero is infinity or
2821
- NaN, depending on the dividend.
2822
- "#,
2823
- &formats.binary,
2824
- )
2825
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2826
- .operands_out(vec![
2827
- Operand::new("a", Float).with_doc("Result of applying operator to each lane")
2828
- ]),
2829
- );
2830
-
2831
- ig.push(
2832
- Inst::new(
2833
- "sqrt",
2834
- r#"
2835
- Floating point square root.
2836
- "#,
2837
- &formats.unary,
2838
- )
2839
- .operands_in(vec![Operand::new("x", Float)])
2840
- .operands_out(vec![
2841
- Operand::new("a", Float).with_doc("Result of applying operator to each lane")
2842
- ]),
2843
- );
2844
-
2845
- ig.push(
2846
- Inst::new(
2847
- "fma",
2848
- r#"
2849
- Floating point fused multiply-and-add.
2850
-
2851
- Computes `a := xy+z` without any intermediate rounding of the
2852
- product.
2853
- "#,
2854
- &formats.ternary,
2855
- )
2856
- .operands_in(vec![
2857
- Operand::new("x", Float),
2858
- Operand::new("y", Float),
2859
- Operand::new("z", Float),
2860
- ])
2861
- .operands_out(vec![
2862
- Operand::new("a", Float).with_doc("Result of applying operator to each lane")
2863
- ]),
2864
- );
2865
-
2866
- ig.push(
2867
- Inst::new(
2868
- "fneg",
2869
- r#"
2870
- Floating point negation.
2871
-
2872
- Note that this is a pure bitwise operation.
2873
- "#,
2874
- &formats.unary,
2875
- )
2876
- .operands_in(vec![Operand::new("x", Float)])
2877
- .operands_out(vec![
2878
- Operand::new("a", Float).with_doc("``x`` with its sign bit inverted")
2879
- ]),
2880
- );
2881
-
2882
- ig.push(
2883
- Inst::new(
2884
- "fabs",
2885
- r#"
2886
- Floating point absolute value.
2887
-
2888
- Note that this is a pure bitwise operation.
2889
- "#,
2890
- &formats.unary,
2891
- )
2892
- .operands_in(vec![Operand::new("x", Float)])
2893
- .operands_out(vec![
2894
- Operand::new("a", Float).with_doc("``x`` with its sign bit cleared")
2895
- ]),
2896
- );
2897
-
2898
- ig.push(
2899
- Inst::new(
2900
- "fcopysign",
2901
- r#"
2902
- Floating point copy sign.
2903
-
2904
- Note that this is a pure bitwise operation. The sign bit from ``y`` is
2905
- copied to the sign bit of ``x``.
2906
- "#,
2907
- &formats.binary,
2908
- )
2909
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2910
- .operands_out(vec![
2911
- Operand::new("a", Float).with_doc("``x`` with its sign bit changed to that of ``y``")
2912
- ]),
2913
- );
2914
-
2915
- ig.push(
2916
- Inst::new(
2917
- "fmin",
2918
- r#"
2919
- Floating point minimum, propagating NaNs using the WebAssembly rules.
2920
-
2921
- If either operand is NaN, this returns NaN with an unspecified sign. Furthermore, if
2922
- each input NaN consists of a mantissa whose most significant bit is 1 and the rest is
2923
- 0, then the output has the same form. Otherwise, the output mantissa's most significant
2924
- bit is 1 and the rest is unspecified.
2925
- "#,
2926
- &formats.binary,
2927
- )
2928
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2929
- .operands_out(vec![
2930
- Operand::new("a", Float).with_doc("The smaller of ``x`` and ``y``")
2931
- ]),
2932
- );
2933
-
2934
- ig.push(
2935
- Inst::new(
2936
- "fmin_pseudo",
2937
- r#"
2938
- Floating point pseudo-minimum, propagating NaNs. This behaves differently from ``fmin``.
2939
- See <https://github.com/WebAssembly/simd/pull/122> for background.
2940
-
2941
- The behaviour is defined as ``fmin_pseudo(a, b) = (b < a) ? b : a``, and the behaviour
2942
- for zero or NaN inputs follows from the behaviour of ``<`` with such inputs.
2943
- "#,
2944
- &formats.binary,
2945
- )
2946
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2947
- .operands_out(vec![
2948
- Operand::new("a", Float).with_doc("The smaller of ``x`` and ``y``")
2949
- ]),
2950
- );
2951
-
2952
- ig.push(
2953
- Inst::new(
2954
- "fmax",
2955
- r#"
2956
- Floating point maximum, propagating NaNs using the WebAssembly rules.
2957
-
2958
- If either operand is NaN, this returns NaN with an unspecified sign. Furthermore, if
2959
- each input NaN consists of a mantissa whose most significant bit is 1 and the rest is
2960
- 0, then the output has the same form. Otherwise, the output mantissa's most significant
2961
- bit is 1 and the rest is unspecified.
2962
- "#,
2963
- &formats.binary,
2964
- )
2965
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2966
- .operands_out(vec![
2967
- Operand::new("a", Float).with_doc("The larger of ``x`` and ``y``")
2968
- ]),
2969
- );
2970
-
2971
- ig.push(
2972
- Inst::new(
2973
- "fmax_pseudo",
2974
- r#"
2975
- Floating point pseudo-maximum, propagating NaNs. This behaves differently from ``fmax``.
2976
- See <https://github.com/WebAssembly/simd/pull/122> for background.
2977
-
2978
- The behaviour is defined as ``fmax_pseudo(a, b) = (a < b) ? b : a``, and the behaviour
2979
- for zero or NaN inputs follows from the behaviour of ``<`` with such inputs.
2980
- "#,
2981
- &formats.binary,
2982
- )
2983
- .operands_in(vec![Operand::new("x", Float), Operand::new("y", Float)])
2984
- .operands_out(vec![
2985
- Operand::new("a", Float).with_doc("The larger of ``x`` and ``y``")
2986
- ]),
2987
- );
2988
-
2989
- ig.push(
2990
- Inst::new(
2991
- "ceil",
2992
- r#"
2993
- Round floating point round to integral, towards positive infinity.
2994
- "#,
2995
- &formats.unary,
2996
- )
2997
- .operands_in(vec![Operand::new("x", Float)])
2998
- .operands_out(vec![
2999
- Operand::new("a", Float).with_doc("``x`` rounded to integral value")
3000
- ]),
3001
- );
3002
-
3003
- ig.push(
3004
- Inst::new(
3005
- "floor",
3006
- r#"
3007
- Round floating point round to integral, towards negative infinity.
3008
- "#,
3009
- &formats.unary,
3010
- )
3011
- .operands_in(vec![Operand::new("x", Float)])
3012
- .operands_out(vec![
3013
- Operand::new("a", Float).with_doc("``x`` rounded to integral value")
3014
- ]),
3015
- );
3016
-
3017
- ig.push(
3018
- Inst::new(
3019
- "trunc",
3020
- r#"
3021
- Round floating point round to integral, towards zero.
3022
- "#,
3023
- &formats.unary,
3024
- )
3025
- .operands_in(vec![Operand::new("x", Float)])
3026
- .operands_out(vec![
3027
- Operand::new("a", Float).with_doc("``x`` rounded to integral value")
3028
- ]),
3029
- );
3030
-
3031
- ig.push(
3032
- Inst::new(
3033
- "nearest",
3034
- r#"
3035
- Round floating point round to integral, towards nearest with ties to
3036
- even.
3037
- "#,
3038
- &formats.unary,
3039
- )
3040
- .operands_in(vec![Operand::new("x", Float)])
3041
- .operands_out(vec![
3042
- Operand::new("a", Float).with_doc("``x`` rounded to integral value")
3043
- ]),
3044
- );
3045
-
3046
- ig.push(
3047
- Inst::new(
3048
- "is_null",
3049
- r#"
3050
- Reference verification.
3051
-
3052
- The condition code determines if the reference type in question is
3053
- null or not.
3054
- "#,
3055
- &formats.unary,
3056
- )
3057
- .operands_in(vec![Operand::new("x", Ref)])
3058
- .operands_out(vec![Operand::new("a", i8)]),
3059
- );
3060
-
3061
- ig.push(
3062
- Inst::new(
3063
- "is_invalid",
3064
- r#"
3065
- Reference verification.
3066
-
3067
- The condition code determines if the reference type in question is
3068
- invalid or not.
3069
- "#,
3070
- &formats.unary,
3071
- )
3072
- .operands_in(vec![Operand::new("x", Ref)])
3073
- .operands_out(vec![Operand::new("a", i8)]),
3074
- );
3075
-
3076
- ig.push(
3077
- Inst::new(
3078
- "bitcast",
3079
- r#"
3080
- Reinterpret the bits in `x` as a different type.
3081
-
3082
- The input and output types must be storable to memory and of the same
3083
- size. A bitcast is equivalent to storing one type and loading the other
3084
- type from the same address, both using the specified MemFlags.
3085
-
3086
- Note that this operation only supports the `big` or `little` MemFlags.
3087
- The specified byte order only affects the result in the case where
3088
- input and output types differ in lane count/size. In this case, the
3089
- operation is only valid if a byte order specifier is provided.
3090
- "#,
3091
- &formats.load_no_offset,
3092
- )
3093
- .operands_in(vec![
3094
- Operand::new("MemFlags", &imm.memflags),
3095
- Operand::new("x", Mem),
3096
- ])
3097
- .operands_out(vec![
3098
- Operand::new("a", MemTo).with_doc("Bits of `x` reinterpreted")
3099
- ]),
3100
- );
3101
-
3102
- ig.push(
3103
- Inst::new(
3104
- "scalar_to_vector",
3105
- r#"
3106
- Copies a scalar value to a vector value. The scalar is copied into the
3107
- least significant lane of the vector, and all other lanes will be zero.
3108
- "#,
3109
- &formats.unary,
3110
- )
3111
- .operands_in(vec![
3112
- Operand::new("s", &TxN.lane_of()).with_doc("A scalar value")
3113
- ])
3114
- .operands_out(vec![Operand::new("a", TxN).with_doc("A vector value")]),
3115
- );
3116
-
3117
- let Truthy = &TypeVar::new(
3118
- "Truthy",
3119
- "A scalar whose values are truthy",
3120
- TypeSetBuilder::new().ints(Interval::All).build(),
3121
- );
3122
- let IntTo = &TypeVar::new(
3123
- "IntTo",
3124
- "An integer type",
3125
- TypeSetBuilder::new().ints(Interval::All).build(),
3126
- );
3127
-
3128
- ig.push(
3129
- Inst::new(
3130
- "bmask",
3131
- r#"
3132
- Convert `x` to an integer mask.
3133
-
3134
- Non-zero maps to all 1s and zero maps to all 0s.
3135
- "#,
3136
- &formats.unary,
3137
- )
3138
- .operands_in(vec![Operand::new("x", Truthy)])
3139
- .operands_out(vec![Operand::new("a", IntTo)]),
3140
- );
3141
-
3142
- let Int = &TypeVar::new(
3143
- "Int",
3144
- "A scalar integer type",
3145
- TypeSetBuilder::new().ints(Interval::All).build(),
3146
- );
3147
-
3148
- ig.push(
3149
- Inst::new(
3150
- "ireduce",
3151
- r#"
3152
- Convert `x` to a smaller integer type by discarding
3153
- the most significant bits.
3154
-
3155
- This is the same as reducing modulo `2^n`.
3156
- "#,
3157
- &formats.unary,
3158
- )
3159
- .operands_in(vec![Operand::new("x", &Int.wider())
3160
- .with_doc("A scalar integer type, wider than the controlling type")])
3161
- .operands_out(vec![Operand::new("a", Int)]),
3162
- );
3163
-
3164
- let I16or32or64xN = &TypeVar::new(
3165
- "I16or32or64xN",
3166
- "A SIMD vector type containing integer lanes 16, 32, or 64 bits wide",
3167
- TypeSetBuilder::new()
3168
- .ints(16..64)
3169
- .simd_lanes(2..8)
3170
- .dynamic_simd_lanes(2..8)
3171
- .includes_scalars(false)
3172
- .build(),
3173
- );
3174
-
3175
- ig.push(
3176
- Inst::new(
3177
- "snarrow",
3178
- r#"
3179
- Combine `x` and `y` into a vector with twice the lanes but half the integer width while
3180
- saturating overflowing values to the signed maximum and minimum.
3181
-
3182
- The lanes will be concatenated after narrowing. For example, when `x` and `y` are `i32x4`
3183
- and `x = [x3, x2, x1, x0]` and `y = [y3, y2, y1, y0]`, then after narrowing the value
3184
- returned is an `i16x8`: `a = [y3', y2', y1', y0', x3', x2', x1', x0']`.
3185
- "#,
3186
- &formats.binary,
3187
- )
3188
- .operands_in(vec![
3189
- Operand::new("x", I16or32or64xN),
3190
- Operand::new("y", I16or32or64xN),
3191
- ])
3192
- .operands_out(vec![Operand::new("a", &I16or32or64xN.split_lanes())]),
3193
- );
3194
-
3195
- ig.push(
3196
- Inst::new(
3197
- "unarrow",
3198
- r#"
3199
- Combine `x` and `y` into a vector with twice the lanes but half the integer width while
3200
- saturating overflowing values to the unsigned maximum and minimum.
3201
-
3202
- Note that all input lanes are considered signed: any negative lanes will overflow and be
3203
- replaced with the unsigned minimum, `0x00`.
3204
-
3205
- The lanes will be concatenated after narrowing. For example, when `x` and `y` are `i32x4`
3206
- and `x = [x3, x2, x1, x0]` and `y = [y3, y2, y1, y0]`, then after narrowing the value
3207
- returned is an `i16x8`: `a = [y3', y2', y1', y0', x3', x2', x1', x0']`.
3208
- "#,
3209
- &formats.binary,
3210
- )
3211
- .operands_in(vec![
3212
- Operand::new("x", I16or32or64xN),
3213
- Operand::new("y", I16or32or64xN),
3214
- ])
3215
- .operands_out(vec![Operand::new("a", &I16or32or64xN.split_lanes())]),
3216
- );
3217
-
3218
- ig.push(
3219
- Inst::new(
3220
- "uunarrow",
3221
- r#"
3222
- Combine `x` and `y` into a vector with twice the lanes but half the integer width while
3223
- saturating overflowing values to the unsigned maximum and minimum.
3224
-
3225
- Note that all input lanes are considered unsigned: any negative values will be interpreted as unsigned, overflowing and being replaced with the unsigned maximum.
3226
-
3227
- The lanes will be concatenated after narrowing. For example, when `x` and `y` are `i32x4`
3228
- and `x = [x3, x2, x1, x0]` and `y = [y3, y2, y1, y0]`, then after narrowing the value
3229
- returned is an `i16x8`: `a = [y3', y2', y1', y0', x3', x2', x1', x0']`.
3230
- "#,
3231
- &formats.binary,
3232
- )
3233
- .operands_in(vec![Operand::new("x", I16or32or64xN), Operand::new("y", I16or32or64xN)])
3234
- .operands_out(vec![Operand::new("a", &I16or32or64xN.split_lanes())]),
3235
- );
3236
-
3237
- let I8or16or32xN = &TypeVar::new(
3238
- "I8or16or32xN",
3239
- "A SIMD vector type containing integer lanes 8, 16, or 32 bits wide.",
3240
- TypeSetBuilder::new()
3241
- .ints(8..32)
3242
- .simd_lanes(2..16)
3243
- .dynamic_simd_lanes(2..16)
3244
- .includes_scalars(false)
3245
- .build(),
3246
- );
3247
-
3248
- ig.push(
3249
- Inst::new(
3250
- "swiden_low",
3251
- r#"
3252
- Widen the low lanes of `x` using signed extension.
3253
-
3254
- This will double the lane width and halve the number of lanes.
3255
- "#,
3256
- &formats.unary,
3257
- )
3258
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3259
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3260
- );
3261
-
3262
- ig.push(
3263
- Inst::new(
3264
- "swiden_high",
3265
- r#"
3266
- Widen the high lanes of `x` using signed extension.
3267
-
3268
- This will double the lane width and halve the number of lanes.
3269
- "#,
3270
- &formats.unary,
3271
- )
3272
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3273
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3274
- );
3275
-
3276
- ig.push(
3277
- Inst::new(
3278
- "uwiden_low",
3279
- r#"
3280
- Widen the low lanes of `x` using unsigned extension.
3281
-
3282
- This will double the lane width and halve the number of lanes.
3283
- "#,
3284
- &formats.unary,
3285
- )
3286
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3287
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3288
- );
3289
-
3290
- ig.push(
3291
- Inst::new(
3292
- "uwiden_high",
3293
- r#"
3294
- Widen the high lanes of `x` using unsigned extension.
3295
-
3296
- This will double the lane width and halve the number of lanes.
3297
- "#,
3298
- &formats.unary,
3299
- )
3300
- .operands_in(vec![Operand::new("x", I8or16or32xN)])
3301
- .operands_out(vec![Operand::new("a", &I8or16or32xN.merge_lanes())]),
3302
- );
3303
-
3304
- ig.push(
3305
- Inst::new(
3306
- "iadd_pairwise",
3307
- r#"
3308
- Does lane-wise integer pairwise addition on two operands, putting the
3309
- combined results into a single vector result. Here a pair refers to adjacent
3310
- lanes in a vector, i.e. i*2 + (i*2+1) for i == num_lanes/2. The first operand
3311
- pairwise add results will make up the low half of the resulting vector while
3312
- the second operand pairwise add results will make up the upper half of the
3313
- resulting vector.
3314
- "#,
3315
- &formats.binary,
3316
- )
3317
- .operands_in(vec![
3318
- Operand::new("x", I8or16or32xN),
3319
- Operand::new("y", I8or16or32xN),
3320
- ])
3321
- .operands_out(vec![Operand::new("a", I8or16or32xN)]),
3322
- );
3323
-
3324
- let I8x16 = &TypeVar::new(
3325
- "I8x16",
3326
- "A SIMD vector type consisting of 16 lanes of 8-bit integers",
3327
- TypeSetBuilder::new()
3328
- .ints(8..8)
3329
- .simd_lanes(16..16)
3330
- .includes_scalars(false)
3331
- .build(),
3332
- );
3333
-
3334
- ig.push(
3335
- Inst::new(
3336
- "x86_pmaddubsw",
3337
- r#"
3338
- An instruction with equivalent semantics to `pmaddubsw` on x86.
3339
-
3340
- This instruction will take signed bytes from the first argument and
3341
- multiply them against unsigned bytes in the second argument. Adjacent
3342
- pairs are then added, with saturating, to a 16-bit value and are packed
3343
- into the result.
3344
- "#,
3345
- &formats.binary,
3346
- )
3347
- .operands_in(vec![Operand::new("x", I8x16), Operand::new("y", I8x16)])
3348
- .operands_out(vec![Operand::new("a", I16x8)]),
3349
- );
3350
-
3351
- ig.push(
3352
- Inst::new(
3353
- "uextend",
3354
- r#"
3355
- Convert `x` to a larger integer type by zero-extending.
3356
-
3357
- Each lane in `x` is converted to a larger integer type by adding
3358
- zeroes. The result has the same numerical value as `x` when both are
3359
- interpreted as unsigned integers.
3360
-
3361
- The result type must have the same number of vector lanes as the input,
3362
- and each lane must not have fewer bits that the input lanes. If the
3363
- input and output types are the same, this is a no-op.
3364
- "#,
3365
- &formats.unary,
3366
- )
3367
- .operands_in(vec![Operand::new("x", &Int.narrower()).with_doc(
3368
- "A scalar integer type, narrower than the controlling type",
3369
- )])
3370
- .operands_out(vec![Operand::new("a", Int)]),
3371
- );
3372
-
3373
- ig.push(
3374
- Inst::new(
3375
- "sextend",
3376
- r#"
3377
- Convert `x` to a larger integer type by sign-extending.
3378
-
3379
- Each lane in `x` is converted to a larger integer type by replicating
3380
- the sign bit. The result has the same numerical value as `x` when both
3381
- are interpreted as signed integers.
3382
-
3383
- The result type must have the same number of vector lanes as the input,
3384
- and each lane must not have fewer bits that the input lanes. If the
3385
- input and output types are the same, this is a no-op.
3386
- "#,
3387
- &formats.unary,
3388
- )
3389
- .operands_in(vec![Operand::new("x", &Int.narrower()).with_doc(
3390
- "A scalar integer type, narrower than the controlling type",
3391
- )])
3392
- .operands_out(vec![Operand::new("a", Int)]),
3393
- );
3394
-
3395
- let FloatScalar = &TypeVar::new(
3396
- "FloatScalar",
3397
- "A scalar only floating point number",
3398
- TypeSetBuilder::new().floats(Interval::All).build(),
3399
- );
3400
-
3401
- ig.push(
3402
- Inst::new(
3403
- "fpromote",
3404
- r#"
3405
- Convert `x` to a larger floating point format.
3406
-
3407
- Each lane in `x` is converted to the destination floating point format.
3408
- This is an exact operation.
3409
-
3410
- Cranelift currently only supports two floating point formats
3411
- - `f32` and `f64`. This may change in the future.
3412
-
3413
- The result type must have the same number of vector lanes as the input,
3414
- and the result lanes must not have fewer bits than the input lanes.
3415
- "#,
3416
- &formats.unary,
3417
- )
3418
- .operands_in(vec![Operand::new("x", &FloatScalar.narrower()).with_doc(
3419
- "A scalar only floating point number, narrower than the controlling type",
3420
- )])
3421
- .operands_out(vec![Operand::new("a", FloatScalar)]),
3422
- );
3423
-
3424
- ig.push(
3425
- Inst::new(
3426
- "fdemote",
3427
- r#"
3428
- Convert `x` to a smaller floating point format.
3429
-
3430
- Each lane in `x` is converted to the destination floating point format
3431
- by rounding to nearest, ties to even.
3432
-
3433
- Cranelift currently only supports two floating point formats
3434
- - `f32` and `f64`. This may change in the future.
3435
-
3436
- The result type must have the same number of vector lanes as the input,
3437
- and the result lanes must not have more bits than the input lanes.
3438
- "#,
3439
- &formats.unary,
3440
- )
3441
- .operands_in(vec![Operand::new("x", &FloatScalar.wider()).with_doc(
3442
- "A scalar only floating point number, wider than the controlling type",
3443
- )])
3444
- .operands_out(vec![Operand::new("a", FloatScalar)]),
3445
- );
3446
-
3447
- let F64x2 = &TypeVar::new(
3448
- "F64x2",
3449
- "A SIMD vector type consisting of 2 lanes of 64-bit floats",
3450
- TypeSetBuilder::new()
3451
- .floats(64..64)
3452
- .simd_lanes(2..2)
3453
- .includes_scalars(false)
3454
- .build(),
3455
- );
3456
- let F32x4 = &TypeVar::new(
3457
- "F32x4",
3458
- "A SIMD vector type consisting of 4 lanes of 32-bit floats",
3459
- TypeSetBuilder::new()
3460
- .floats(32..32)
3461
- .simd_lanes(4..4)
3462
- .includes_scalars(false)
3463
- .build(),
3464
- );
3465
-
3466
- ig.push(
3467
- Inst::new(
3468
- "fvdemote",
3469
- r#"
3470
- Convert `x` to a smaller floating point format.
3471
-
3472
- Each lane in `x` is converted to the destination floating point format
3473
- by rounding to nearest, ties to even.
3474
-
3475
- Cranelift currently only supports two floating point formats
3476
- - `f32` and `f64`. This may change in the future.
3477
-
3478
- Fvdemote differs from fdemote in that with fvdemote it targets vectors.
3479
- Fvdemote is constrained to having the input type being F64x2 and the result
3480
- type being F32x4. The result lane that was the upper half of the input lane
3481
- is initialized to zero.
3482
- "#,
3483
- &formats.unary,
3484
- )
3485
- .operands_in(vec![Operand::new("x", F64x2)])
3486
- .operands_out(vec![Operand::new("a", F32x4)]),
3487
- );
3488
-
3489
- ig.push(
3490
- Inst::new(
3491
- "fvpromote_low",
3492
- r#"
3493
- Converts packed single precision floating point to packed double precision floating point.
3494
-
3495
- Considering only the lower half of the register, the low lanes in `x` are interpreted as
3496
- single precision floats that are then converted to a double precision floats.
3497
-
3498
- The result type will have half the number of vector lanes as the input. Fvpromote_low is
3499
- constrained to input F32x4 with a result type of F64x2.
3500
- "#,
3501
- &formats.unary,
3502
- )
3503
- .operands_in(vec![Operand::new("a", F32x4)])
3504
- .operands_out(vec![Operand::new("x", F64x2)]),
3505
- );
3506
-
3507
- let IntTo = &TypeVar::new(
3508
- "IntTo",
3509
- "An scalar only integer type",
3510
- TypeSetBuilder::new().ints(Interval::All).build(),
3511
- );
3512
-
3513
- ig.push(
3514
- Inst::new(
3515
- "fcvt_to_uint",
3516
- r#"
3517
- Converts floating point scalars to unsigned integer.
3518
-
3519
- Only operates on `x` if it is a scalar. If `x` is NaN or if
3520
- the unsigned integral value cannot be represented in the result
3521
- type, this instruction traps.
3522
-
3523
- "#,
3524
- &formats.unary,
3525
- )
3526
- .operands_in(vec![Operand::new("x", FloatScalar)])
3527
- .operands_out(vec![Operand::new("a", IntTo)])
3528
- .can_trap()
3529
- .side_effects_idempotent(),
3530
- );
3531
-
3532
- ig.push(
3533
- Inst::new(
3534
- "fcvt_to_sint",
3535
- r#"
3536
- Converts floating point scalars to signed integer.
3537
-
3538
- Only operates on `x` if it is a scalar. If `x` is NaN or if
3539
- the unsigned integral value cannot be represented in the result
3540
- type, this instruction traps.
3541
-
3542
- "#,
3543
- &formats.unary,
3544
- )
3545
- .operands_in(vec![Operand::new("x", FloatScalar)])
3546
- .operands_out(vec![Operand::new("a", IntTo)])
3547
- .can_trap()
3548
- .side_effects_idempotent(),
3549
- );
3550
-
3551
- let IntTo = &TypeVar::new(
3552
- "IntTo",
3553
- "A larger integer type with the same number of lanes",
3554
- TypeSetBuilder::new()
3555
- .ints(Interval::All)
3556
- .simd_lanes(Interval::All)
3557
- .build(),
3558
- );
3559
-
3560
- ig.push(
3561
- Inst::new(
3562
- "fcvt_to_uint_sat",
3563
- r#"
3564
- Convert floating point to unsigned integer as fcvt_to_uint does, but
3565
- saturates the input instead of trapping. NaN and negative values are
3566
- converted to 0.
3567
- "#,
3568
- &formats.unary,
3569
- )
3570
- .operands_in(vec![Operand::new("x", Float)])
3571
- .operands_out(vec![Operand::new("a", IntTo)]),
3572
- );
3573
-
3574
- ig.push(
3575
- Inst::new(
3576
- "fcvt_to_sint_sat",
3577
- r#"
3578
- Convert floating point to signed integer as fcvt_to_sint does, but
3579
- saturates the input instead of trapping. NaN values are converted to 0.
3580
- "#,
3581
- &formats.unary,
3582
- )
3583
- .operands_in(vec![Operand::new("x", Float)])
3584
- .operands_out(vec![Operand::new("a", IntTo)]),
3585
- );
3586
-
3587
- ig.push(
3588
- Inst::new(
3589
- "x86_cvtt2dq",
3590
- r#"
3591
- A float-to-integer conversion instruction for vectors-of-floats which
3592
- has the same semantics as `cvttp{s,d}2dq` on x86. This specifically
3593
- returns `INT_MIN` for NaN or out-of-bounds lanes.
3594
- "#,
3595
- &formats.unary,
3596
- )
3597
- .operands_in(vec![Operand::new("x", Float)])
3598
- .operands_out(vec![Operand::new("a", IntTo)]),
3599
- );
3600
-
3601
- let Int = &TypeVar::new(
3602
- "Int",
3603
- "A scalar or vector integer type",
3604
- TypeSetBuilder::new()
3605
- .ints(Interval::All)
3606
- .simd_lanes(Interval::All)
3607
- .build(),
3608
- );
3609
-
3610
- let FloatTo = &TypeVar::new(
3611
- "FloatTo",
3612
- "A scalar or vector floating point number",
3613
- TypeSetBuilder::new()
3614
- .floats(Interval::All)
3615
- .simd_lanes(Interval::All)
3616
- .build(),
3617
- );
3618
-
3619
- ig.push(
3620
- Inst::new(
3621
- "fcvt_from_uint",
3622
- r#"
3623
- Convert unsigned integer to floating point.
3624
-
3625
- Each lane in `x` is interpreted as an unsigned integer and converted to
3626
- floating point using round to nearest, ties to even.
3627
-
3628
- The result type must have the same number of vector lanes as the input.
3629
- "#,
3630
- &formats.unary,
3631
- )
3632
- .operands_in(vec![Operand::new("x", Int)])
3633
- .operands_out(vec![Operand::new("a", FloatTo)]),
3634
- );
3635
-
3636
- ig.push(
3637
- Inst::new(
3638
- "fcvt_from_sint",
3639
- r#"
3640
- Convert signed integer to floating point.
3641
-
3642
- Each lane in `x` is interpreted as a signed integer and converted to
3643
- floating point using round to nearest, ties to even.
3644
-
3645
- The result type must have the same number of vector lanes as the input.
3646
- "#,
3647
- &formats.unary,
3648
- )
3649
- .operands_in(vec![Operand::new("x", Int)])
3650
- .operands_out(vec![Operand::new("a", FloatTo)]),
3651
- );
3652
-
3653
- let WideInt = &TypeVar::new(
3654
- "WideInt",
3655
- "An integer type of width `i16` upwards",
3656
- TypeSetBuilder::new().ints(16..128).build(),
3657
- );
3658
-
3659
- ig.push(
3660
- Inst::new(
3661
- "isplit",
3662
- r#"
3663
- Split an integer into low and high parts.
3664
-
3665
- Vectors of integers are split lane-wise, so the results have the same
3666
- number of lanes as the input, but the lanes are half the size.
3667
-
3668
- Returns the low half of `x` and the high half of `x` as two independent
3669
- values.
3670
- "#,
3671
- &formats.unary,
3672
- )
3673
- .operands_in(vec![Operand::new("x", WideInt)])
3674
- .operands_out(vec![
3675
- Operand::new("lo", &WideInt.half_width()).with_doc("The low bits of `x`"),
3676
- Operand::new("hi", &WideInt.half_width()).with_doc("The high bits of `x`"),
3677
- ]),
3678
- );
3679
-
3680
- ig.push(
3681
- Inst::new(
3682
- "iconcat",
3683
- r#"
3684
- Concatenate low and high bits to form a larger integer type.
3685
-
3686
- Vectors of integers are concatenated lane-wise such that the result has
3687
- the same number of lanes as the inputs, but the lanes are twice the
3688
- size.
3689
- "#,
3690
- &formats.binary,
3691
- )
3692
- .operands_in(vec![
3693
- Operand::new("lo", NarrowInt),
3694
- Operand::new("hi", NarrowInt),
3695
- ])
3696
- .operands_out(vec![Operand::new("a", &NarrowInt.double_width())
3697
- .with_doc("The concatenation of `lo` and `hi`")]),
3698
- );
3699
-
3700
- // Instructions relating to atomic memory accesses and fences
3701
- let AtomicMem = &TypeVar::new(
3702
- "AtomicMem",
3703
- "Any type that can be stored in memory, which can be used in an atomic operation",
3704
- TypeSetBuilder::new().ints(8..64).build(),
3705
- );
3706
-
3707
- ig.push(
3708
- Inst::new(
3709
- "atomic_rmw",
3710
- r#"
3711
- Atomically read-modify-write memory at `p`, with second operand `x`. The old value is
3712
- returned. `p` has the type of the target word size, and `x` may be an integer type of
3713
- 8, 16, 32 or 64 bits, even on a 32-bit target. The type of the returned value is the
3714
- same as the type of `x`. This operation is sequentially consistent and creates
3715
- happens-before edges that order normal (non-atomic) loads and stores.
3716
- "#,
3717
- &formats.atomic_rmw,
3718
- )
3719
- .operands_in(vec![
3720
- Operand::new("MemFlags", &imm.memflags),
3721
- Operand::new("AtomicRmwOp", &imm.atomic_rmw_op),
3722
- Operand::new("p", iAddr),
3723
- Operand::new("x", AtomicMem).with_doc("Value to be atomically stored"),
3724
- ])
3725
- .operands_out(vec![
3726
- Operand::new("a", AtomicMem).with_doc("Value atomically loaded")
3727
- ])
3728
- .can_load()
3729
- .can_store()
3730
- .other_side_effects(),
3731
- );
3732
-
3733
- ig.push(
3734
- Inst::new(
3735
- "atomic_cas",
3736
- r#"
3737
- Perform an atomic compare-and-swap operation on memory at `p`, with expected value `e`,
3738
- storing `x` if the value at `p` equals `e`. The old value at `p` is returned,
3739
- regardless of whether the operation succeeds or fails. `p` has the type of the target
3740
- word size, and `x` and `e` must have the same type and the same size, which may be an
3741
- integer type of 8, 16, 32 or 64 bits, even on a 32-bit target. The type of the returned
3742
- value is the same as the type of `x` and `e`. This operation is sequentially
3743
- consistent and creates happens-before edges that order normal (non-atomic) loads and
3744
- stores.
3745
- "#,
3746
- &formats.atomic_cas,
3747
- )
3748
- .operands_in(vec![
3749
- Operand::new("MemFlags", &imm.memflags),
3750
- Operand::new("p", iAddr),
3751
- Operand::new("e", AtomicMem).with_doc("Expected value in CAS"),
3752
- Operand::new("x", AtomicMem).with_doc("Value to be atomically stored"),
3753
- ])
3754
- .operands_out(vec![
3755
- Operand::new("a", AtomicMem).with_doc("Value atomically loaded")
3756
- ])
3757
- .can_load()
3758
- .can_store()
3759
- .other_side_effects(),
3760
- );
3761
-
3762
- ig.push(
3763
- Inst::new(
3764
- "atomic_load",
3765
- r#"
3766
- Atomically load from memory at `p`.
3767
-
3768
- This is a polymorphic instruction that can load any value type which has a memory
3769
- representation. It should only be used for integer types with 8, 16, 32 or 64 bits.
3770
- This operation is sequentially consistent and creates happens-before edges that order
3771
- normal (non-atomic) loads and stores.
3772
- "#,
3773
- &formats.load_no_offset,
3774
- )
3775
- .operands_in(vec![
3776
- Operand::new("MemFlags", &imm.memflags),
3777
- Operand::new("p", iAddr),
3778
- ])
3779
- .operands_out(vec![
3780
- Operand::new("a", AtomicMem).with_doc("Value atomically loaded")
3781
- ])
3782
- .can_load()
3783
- .other_side_effects(),
3784
- );
3785
-
3786
- ig.push(
3787
- Inst::new(
3788
- "atomic_store",
3789
- r#"
3790
- Atomically store `x` to memory at `p`.
3791
-
3792
- This is a polymorphic instruction that can store any value type with a memory
3793
- representation. It should only be used for integer types with 8, 16, 32 or 64 bits.
3794
- This operation is sequentially consistent and creates happens-before edges that order
3795
- normal (non-atomic) loads and stores.
3796
- "#,
3797
- &formats.store_no_offset,
3798
- )
3799
- .operands_in(vec![
3800
- Operand::new("MemFlags", &imm.memflags),
3801
- Operand::new("x", AtomicMem).with_doc("Value to be atomically stored"),
3802
- Operand::new("p", iAddr),
3803
- ])
3804
- .can_store()
3805
- .other_side_effects(),
3806
- );
3807
-
3808
- ig.push(
3809
- Inst::new(
3810
- "fence",
3811
- r#"
3812
- A memory fence. This must provide ordering to ensure that, at a minimum, neither loads
3813
- nor stores of any kind may move forwards or backwards across the fence. This operation
3814
- is sequentially consistent.
3815
- "#,
3816
- &formats.nullary,
3817
- )
3818
- .other_side_effects(),
3819
- );
3820
-
3821
- let TxN = &TypeVar::new(
3822
- "TxN",
3823
- "A dynamic vector type",
3824
- TypeSetBuilder::new()
3825
- .ints(Interval::All)
3826
- .floats(Interval::All)
3827
- .dynamic_simd_lanes(Interval::All)
3828
- .build(),
3829
- );
3830
-
3831
- ig.push(
3832
- Inst::new(
3833
- "extract_vector",
3834
- r#"
3835
- Return a fixed length sub vector, extracted from a dynamic vector.
3836
- "#,
3837
- &formats.binary_imm8,
3838
- )
3839
- .operands_in(vec![
3840
- Operand::new("x", TxN).with_doc("The dynamic vector to extract from"),
3841
- Operand::new("y", &imm.uimm8).with_doc("128-bit vector index"),
3842
- ])
3843
- .operands_out(vec![
3844
- Operand::new("a", &TxN.dynamic_to_vector()).with_doc("New fixed vector")
3845
- ]),
3846
- );
3847
- }