wasmtime 0.4.0 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (4300) hide show
  1. checksums.yaml +4 -4
  2. data/Cargo.lock +265 -204
  3. data/ext/Cargo.toml +8 -8
  4. data/ext/cargo-vendor/async-trait-0.1.62/.cargo-checksum.json +1 -0
  5. data/ext/cargo-vendor/async-trait-0.1.62/Cargo.toml +62 -0
  6. data/ext/cargo-vendor/{libc-0.2.138 → async-trait-0.1.62}/LICENSE-APACHE +0 -0
  7. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/LICENSE-MIT +0 -0
  8. data/ext/cargo-vendor/async-trait-0.1.62/README.md +262 -0
  9. data/ext/cargo-vendor/async-trait-0.1.62/build.rs +31 -0
  10. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/src/args.rs +0 -0
  11. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/src/bound.rs +0 -0
  12. data/ext/cargo-vendor/async-trait-0.1.62/src/expand.rs +488 -0
  13. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/src/lib.rs +0 -0
  14. data/ext/cargo-vendor/async-trait-0.1.62/src/lifetime.rs +112 -0
  15. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/src/parse.rs +0 -0
  16. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/src/receiver.rs +0 -0
  17. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/compiletest.rs +0 -0
  18. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/executor/mod.rs +0 -0
  19. data/ext/cargo-vendor/async-trait-0.1.62/tests/test.rs +1491 -0
  20. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/arg-implementation-detail.rs +0 -0
  21. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/arg-implementation-detail.stderr +0 -0
  22. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/bare-trait-object.rs +0 -0
  23. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/bare-trait-object.stderr +0 -0
  24. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/consider-restricting.rs +0 -0
  25. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/consider-restricting.stderr +0 -0
  26. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/delimiter-span.rs +0 -0
  27. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/delimiter-span.stderr +0 -0
  28. data/ext/cargo-vendor/async-trait-0.1.62/tests/ui/lifetime-defined-here.rs +23 -0
  29. data/ext/cargo-vendor/async-trait-0.1.62/tests/ui/lifetime-defined-here.stderr +29 -0
  30. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/lifetime-span.rs +0 -0
  31. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/lifetime-span.stderr +0 -0
  32. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/missing-async-in-impl.rs +0 -0
  33. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/missing-async-in-impl.stderr +0 -0
  34. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/missing-async-in-trait.rs +0 -0
  35. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/missing-async-in-trait.stderr +0 -0
  36. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/missing-body.rs +0 -0
  37. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/missing-body.stderr +0 -0
  38. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/must-use.rs +0 -0
  39. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/must-use.stderr +0 -0
  40. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/self-span.rs +0 -0
  41. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/self-span.stderr +0 -0
  42. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/send-not-implemented.rs +0 -0
  43. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/send-not-implemented.stderr +0 -0
  44. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/unreachable.rs +0 -0
  45. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/unreachable.stderr +0 -0
  46. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/unsupported-self.rs +0 -0
  47. data/ext/cargo-vendor/{async-trait-0.1.59 → async-trait-0.1.62}/tests/ui/unsupported-self.stderr +0 -0
  48. data/ext/cargo-vendor/bumpalo-3.12.0/.cargo-checksum.json +1 -0
  49. data/ext/cargo-vendor/bumpalo-3.12.0/CHANGELOG.md +654 -0
  50. data/ext/cargo-vendor/bumpalo-3.12.0/Cargo.toml +66 -0
  51. data/ext/cargo-vendor/{async-trait-0.1.59 → bumpalo-3.12.0}/LICENSE-APACHE +0 -0
  52. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/LICENSE-MIT +0 -0
  53. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/README.md +0 -0
  54. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/src/alloc.rs +0 -0
  55. data/ext/cargo-vendor/bumpalo-3.12.0/src/boxed.rs +683 -0
  56. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/src/collections/collect_in.rs +0 -0
  57. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/src/collections/mod.rs +0 -0
  58. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/src/collections/raw_vec.rs +0 -0
  59. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/src/collections/str/lossy.rs +0 -0
  60. data/ext/cargo-vendor/{bumpalo-3.11.1 → bumpalo-3.12.0}/src/collections/str/mod.rs +0 -0
  61. data/ext/cargo-vendor/bumpalo-3.12.0/src/collections/string.rs +2141 -0
  62. data/ext/cargo-vendor/bumpalo-3.12.0/src/collections/vec.rs +2614 -0
  63. data/ext/cargo-vendor/bumpalo-3.12.0/src/lib.rs +2023 -0
  64. data/ext/cargo-vendor/cap-fs-ext-1.0.4/.cargo-checksum.json +1 -0
  65. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/COPYRIGHT +0 -0
  66. data/ext/cargo-vendor/cap-fs-ext-1.0.4/Cargo.toml +63 -0
  67. data/ext/cargo-vendor/{bumpalo-3.11.1 → cap-fs-ext-1.0.4}/LICENSE-APACHE +0 -0
  68. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  69. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/LICENSE-MIT +0 -0
  70. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/README.md +0 -0
  71. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/build.rs +0 -0
  72. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/dir_entry_ext.rs +0 -0
  73. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/dir_ext.rs +0 -0
  74. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/file_type_ext.rs +0 -0
  75. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/is_file_read_write.rs +0 -0
  76. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/lib.rs +0 -0
  77. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/metadata_ext.rs +0 -0
  78. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/open_options_follow_ext.rs +0 -0
  79. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/open_options_maybe_dir_ext.rs +0 -0
  80. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-fs-ext-1.0.4}/src/reopen.rs +0 -0
  81. data/ext/cargo-vendor/cap-primitives-1.0.4/.cargo-checksum.json +1 -0
  82. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/COPYRIGHT +0 -0
  83. data/ext/cargo-vendor/cap-primitives-1.0.4/Cargo.toml +79 -0
  84. data/ext/cargo-vendor/{cap-fs-ext-1.0.2 → cap-primitives-1.0.4}/LICENSE-APACHE +0 -0
  85. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  86. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/LICENSE-MIT +0 -0
  87. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/README.md +0 -0
  88. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/build.rs +0 -0
  89. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/assert_same_file.rs +0 -0
  90. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/canonicalize.rs +0 -0
  91. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/copy.rs +0 -0
  92. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/create_dir.rs +0 -0
  93. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/dir_builder.rs +0 -0
  94. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/dir_entry.rs +0 -0
  95. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/dir_options.rs +0 -0
  96. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/errors.rs +0 -0
  97. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/file_path_by_searching.rs +0 -0
  98. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/file_type.rs +0 -0
  99. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/follow_symlinks.rs +0 -0
  100. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/hard_link.rs +0 -0
  101. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/is_file_read_write.rs +0 -0
  102. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/manually/canonical_path.rs +0 -0
  103. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/manually/canonicalize.rs +0 -0
  104. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/manually/cow_component.rs +0 -0
  105. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/manually/mod.rs +0 -0
  106. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/manually/open.rs +0 -0
  107. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/manually/open_entry.rs +0 -0
  108. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/manually/read_link_one.rs +0 -0
  109. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/maybe_owned_file.rs +0 -0
  110. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/metadata.rs +0 -0
  111. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/mod.rs +0 -0
  112. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/open.rs +0 -0
  113. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/open_ambient.rs +0 -0
  114. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/open_dir.rs +0 -0
  115. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/open_options.rs +0 -0
  116. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/open_unchecked_error.rs +0 -0
  117. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/permissions.rs +0 -0
  118. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/read_dir.rs +0 -0
  119. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/read_link.rs +0 -0
  120. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/remove_dir.rs +0 -0
  121. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/remove_dir_all.rs +0 -0
  122. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/remove_file.rs +0 -0
  123. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/remove_open_dir.rs +0 -0
  124. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/rename.rs +0 -0
  125. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/reopen.rs +0 -0
  126. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/set_permissions.rs +0 -0
  127. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/set_times.rs +0 -0
  128. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/stat.rs +0 -0
  129. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/symlink.rs +0 -0
  130. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/system_time_spec.rs +0 -0
  131. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/create_dir.rs +0 -0
  132. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/hard_link.rs +0 -0
  133. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/mod.rs +0 -0
  134. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/open_parent.rs +0 -0
  135. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/read_link.rs +0 -0
  136. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/remove_dir.rs +0 -0
  137. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/remove_file.rs +0 -0
  138. data/ext/cargo-vendor/cap-primitives-1.0.4/src/fs/via_parent/rename.rs +50 -0
  139. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/set_permissions.rs +0 -0
  140. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/set_times_nofollow.rs +0 -0
  141. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/fs/via_parent/symlink.rs +0 -0
  142. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/lib.rs +0 -0
  143. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/net/mod.rs +0 -0
  144. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/net/pool.rs +0 -0
  145. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/darwin/fs/file_path.rs +0 -0
  146. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/darwin/fs/mod.rs +0 -0
  147. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/darwin/mod.rs +0 -0
  148. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/copy_impl.rs +0 -0
  149. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/create_dir_unchecked.rs +0 -0
  150. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/cvt.rs +0 -0
  151. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/dir_entry_inner.rs +0 -0
  152. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/dir_options_ext.rs +0 -0
  153. data/ext/cargo-vendor/cap-primitives-1.0.4/src/rustix/fs/dir_utils.rs +225 -0
  154. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/errors.rs +0 -0
  155. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/file_path.rs +0 -0
  156. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/file_type_ext.rs +0 -0
  157. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/hard_link_unchecked.rs +0 -0
  158. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/is_file_read_write_impl.rs +0 -0
  159. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/is_root_dir.rs +0 -0
  160. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/is_same_file.rs +0 -0
  161. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/metadata_ext.rs +0 -0
  162. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/mod.rs +0 -0
  163. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/oflags.rs +0 -0
  164. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/open_options_ext.rs +0 -0
  165. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/open_unchecked.rs +0 -0
  166. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/permissions_ext.rs +0 -0
  167. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/read_dir_inner.rs +0 -0
  168. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/read_link_unchecked.rs +0 -0
  169. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/remove_dir_all_impl.rs +0 -0
  170. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/remove_dir_unchecked.rs +0 -0
  171. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/remove_file_unchecked.rs +0 -0
  172. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/remove_open_dir_by_searching.rs +0 -0
  173. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/rename_unchecked.rs +0 -0
  174. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/reopen_impl.rs +0 -0
  175. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/set_permissions_impl.rs +0 -0
  176. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/set_times_impl.rs +0 -0
  177. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/stat_unchecked.rs +0 -0
  178. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/symlink_unchecked.rs +0 -0
  179. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/fs/times.rs +0 -0
  180. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/canonicalize_impl.rs +0 -0
  181. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/file_metadata.rs +0 -0
  182. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/file_path.rs +0 -0
  183. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/mod.rs +0 -0
  184. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/open_entry_impl.rs +0 -0
  185. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/open_impl.rs +0 -0
  186. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/procfs.rs +0 -0
  187. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/set_permissions_impl.rs +0 -0
  188. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/set_times_impl.rs +0 -0
  189. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/fs/stat_impl.rs +0 -0
  190. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/linux/mod.rs +0 -0
  191. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/rustix/mod.rs +0 -0
  192. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/time/instant.rs +0 -0
  193. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/time/mod.rs +0 -0
  194. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/time/monotonic_clock.rs +0 -0
  195. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/time/system_clock.rs +0 -0
  196. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/time/system_time.rs +0 -0
  197. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/copy.rs +0 -0
  198. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/create_dir_unchecked.rs +0 -0
  199. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/dir_entry_inner.rs +0 -0
  200. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/dir_options_ext.rs +0 -0
  201. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/dir_utils.rs +0 -0
  202. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/errors.rs +0 -0
  203. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/file_type_ext.rs +0 -0
  204. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/get_path.rs +0 -0
  205. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/hard_link_unchecked.rs +0 -0
  206. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/is_file_read_write_impl.rs +0 -0
  207. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/is_same_file.rs +0 -0
  208. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/metadata_ext.rs +0 -0
  209. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/mod.rs +0 -0
  210. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/oflags.rs +0 -0
  211. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/open_impl.rs +0 -0
  212. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/open_options_ext.rs +0 -0
  213. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/open_unchecked.rs +0 -0
  214. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/read_dir_inner.rs +0 -0
  215. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/read_link_impl.rs +0 -0
  216. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/read_link_unchecked.rs +0 -0
  217. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/remove_dir_all_impl.rs +0 -0
  218. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/remove_dir_unchecked.rs +0 -0
  219. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/remove_file_unchecked.rs +0 -0
  220. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/remove_open_dir_impl.rs +0 -0
  221. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/rename_unchecked.rs +0 -0
  222. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/reopen_impl.rs +0 -0
  223. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/set_permissions_unchecked.rs +0 -0
  224. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/set_times_impl.rs +0 -0
  225. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/stat_unchecked.rs +0 -0
  226. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/fs/symlink_unchecked.rs +0 -0
  227. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-primitives-1.0.4}/src/windows/mod.rs +0 -0
  228. data/ext/cargo-vendor/cap-rand-1.0.4/.cargo-checksum.json +1 -0
  229. data/ext/cargo-vendor/{cap-rand-1.0.2 → cap-rand-1.0.4}/COPYRIGHT +0 -0
  230. data/ext/cargo-vendor/cap-rand-1.0.4/Cargo.toml +38 -0
  231. data/ext/cargo-vendor/{cap-primitives-1.0.2 → cap-rand-1.0.4}/LICENSE-APACHE +0 -0
  232. data/ext/cargo-vendor/{cap-rand-1.0.2 → cap-rand-1.0.4}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  233. data/ext/cargo-vendor/{cap-rand-1.0.2 → cap-rand-1.0.4}/LICENSE-MIT +0 -0
  234. data/ext/cargo-vendor/{cap-rand-1.0.2 → cap-rand-1.0.4}/README.md +0 -0
  235. data/ext/cargo-vendor/{cap-rand-1.0.2 → cap-rand-1.0.4}/src/lib.rs +0 -0
  236. data/ext/cargo-vendor/cap-std-1.0.4/.cargo-checksum.json +1 -0
  237. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/COPYRIGHT +0 -0
  238. data/ext/cargo-vendor/cap-std-1.0.4/Cargo.toml +70 -0
  239. data/ext/cargo-vendor/{cap-rand-1.0.2 → cap-std-1.0.4}/LICENSE-APACHE +0 -0
  240. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  241. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/LICENSE-MIT +0 -0
  242. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/README.md +0 -0
  243. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/build.rs +0 -0
  244. data/ext/cargo-vendor/cap-std-1.0.4/src/fs/dir.rs +843 -0
  245. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/fs/dir_entry.rs +0 -0
  246. data/ext/cargo-vendor/cap-std-1.0.4/src/fs/file.rs +595 -0
  247. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/fs/mod.rs +0 -0
  248. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/fs/read_dir.rs +0 -0
  249. data/ext/cargo-vendor/cap-std-1.0.4/src/fs_utf8/dir.rs +785 -0
  250. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/fs_utf8/dir_entry.rs +0 -0
  251. data/ext/cargo-vendor/cap-std-1.0.4/src/fs_utf8/file.rs +590 -0
  252. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/fs_utf8/mod.rs +0 -0
  253. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/fs_utf8/read_dir.rs +0 -0
  254. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/lib.rs +0 -0
  255. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/net/incoming.rs +0 -0
  256. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/net/mod.rs +0 -0
  257. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/net/pool.rs +0 -0
  258. data/ext/cargo-vendor/cap-std-1.0.4/src/net/tcp_listener.rs +248 -0
  259. data/ext/cargo-vendor/cap-std-1.0.4/src/net/tcp_stream.rs +437 -0
  260. data/ext/cargo-vendor/cap-std-1.0.4/src/net/udp_socket.rs +418 -0
  261. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/os/mod.rs +0 -0
  262. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/os/unix/mod.rs +0 -0
  263. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/os/unix/net/incoming.rs +0 -0
  264. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/os/unix/net/mod.rs +0 -0
  265. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/os/unix/net/unix_datagram.rs +0 -0
  266. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/os/unix/net/unix_listener.rs +0 -0
  267. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/os/unix/net/unix_stream.rs +0 -0
  268. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-std-1.0.4}/src/time/mod.rs +0 -0
  269. data/ext/cargo-vendor/cap-time-ext-1.0.4/.cargo-checksum.json +1 -0
  270. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cap-time-ext-1.0.4}/COPYRIGHT +0 -0
  271. data/ext/cargo-vendor/cap-time-ext-1.0.4/Cargo.toml +42 -0
  272. data/ext/cargo-vendor/{cap-std-1.0.2 → cap-time-ext-1.0.4}/LICENSE-APACHE +0 -0
  273. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cap-time-ext-1.0.4}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  274. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cap-time-ext-1.0.4}/LICENSE-MIT +0 -0
  275. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cap-time-ext-1.0.4}/README.md +0 -0
  276. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cap-time-ext-1.0.4}/src/lib.rs +0 -0
  277. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cap-time-ext-1.0.4}/src/monotonic_clock.rs +0 -0
  278. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cap-time-ext-1.0.4}/src/system_clock.rs +0 -0
  279. data/ext/cargo-vendor/cc-1.0.78/.cargo-checksum.json +1 -0
  280. data/ext/cargo-vendor/cc-1.0.78/Cargo.lock +110 -0
  281. data/ext/cargo-vendor/cc-1.0.78/Cargo.toml +39 -0
  282. data/ext/cargo-vendor/{cap-time-ext-1.0.2 → cc-1.0.78}/LICENSE-APACHE +0 -0
  283. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/LICENSE-MIT +0 -0
  284. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/README.md +0 -0
  285. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/src/bin/gcc-shim.rs +0 -0
  286. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/src/com.rs +0 -0
  287. data/ext/cargo-vendor/cc-1.0.78/src/lib.rs +3568 -0
  288. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/src/registry.rs +0 -0
  289. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/src/setup_config.rs +0 -0
  290. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/src/vs_instances.rs +0 -0
  291. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/src/winapi.rs +0 -0
  292. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/src/windows_registry.rs +0 -0
  293. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/tests/cc_env.rs +0 -0
  294. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/tests/cflags.rs +0 -0
  295. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/tests/cxxflags.rs +0 -0
  296. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/tests/support/mod.rs +0 -0
  297. data/ext/cargo-vendor/{cc-1.0.77 → cc-1.0.78}/tests/test.rs +0 -0
  298. data/ext/cargo-vendor/cranelift-bforest-0.92.0/.cargo-checksum.json +1 -0
  299. data/ext/cargo-vendor/cranelift-bforest-0.92.0/Cargo.toml +34 -0
  300. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/LICENSE +0 -0
  301. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/README.md +0 -0
  302. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/src/lib.rs +0 -0
  303. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/src/map.rs +0 -0
  304. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/src/node.rs +0 -0
  305. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/src/path.rs +0 -0
  306. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/src/pool.rs +0 -0
  307. data/ext/cargo-vendor/{cranelift-bforest-0.91.0 → cranelift-bforest-0.92.0}/src/set.rs +0 -0
  308. data/ext/cargo-vendor/cranelift-codegen-0.92.0/.cargo-checksum.json +1 -0
  309. data/ext/cargo-vendor/cranelift-codegen-0.92.0/Cargo.toml +149 -0
  310. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/LICENSE +0 -0
  311. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/README.md +0 -0
  312. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/benches/x64-evex-encoding.rs +0 -0
  313. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/build.rs +0 -0
  314. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/alias_analysis.rs +409 -0
  315. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/binemit/mod.rs +0 -0
  316. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/binemit/stack_map.rs +0 -0
  317. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/bitset.rs +0 -0
  318. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/cfg_printer.rs +0 -0
  319. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/constant_hash.rs +0 -0
  320. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/context.rs +397 -0
  321. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ctxhash.rs +168 -0
  322. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/cursor.rs +666 -0
  323. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/data_value.rs +0 -0
  324. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/dbg.rs +0 -0
  325. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/dce.rs +36 -0
  326. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/divconst_magic_numbers.rs +0 -0
  327. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/dominator_tree.rs +0 -0
  328. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/egraph/cost.rs +97 -0
  329. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/egraph/domtree.rs +0 -0
  330. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/egraph/elaborate.rs +686 -0
  331. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/egraph.rs +569 -0
  332. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/flowgraph.rs +0 -0
  333. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/fx.rs +0 -0
  334. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/incremental_cache.rs +0 -0
  335. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/inst_predicates.rs +183 -0
  336. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/atomic_rmw_op.rs +0 -0
  337. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/builder.rs +279 -0
  338. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/condcodes.rs +0 -0
  339. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/constant.rs +0 -0
  340. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/dfg.rs +1546 -0
  341. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/dynamic_type.rs +0 -0
  342. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/entities.rs +562 -0
  343. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/extfunc.rs +0 -0
  344. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/extname.rs +0 -0
  345. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/function.rs +531 -0
  346. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/globalvalue.rs +0 -0
  347. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/immediates.rs +1615 -0
  348. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/instructions.rs +853 -0
  349. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/jumptable.rs +0 -0
  350. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/known_symbol.rs +0 -0
  351. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/layout.rs +1333 -0
  352. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/libcall.rs +0 -0
  353. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/memflags.rs +0 -0
  354. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/mod.rs +107 -0
  355. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/progpoint.rs +166 -0
  356. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/sourceloc.rs +117 -0
  357. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/stackslot.rs +0 -0
  358. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/table.rs +0 -0
  359. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/ir/trapcode.rs +0 -0
  360. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/ir/types.rs +631 -0
  361. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/aarch64/abi.rs +1275 -0
  362. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst/args.rs +0 -0
  363. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst/emit.rs +0 -0
  364. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst/emit_tests.rs +0 -0
  365. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst/imms.rs +0 -0
  366. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/aarch64/inst/mod.rs +3072 -0
  367. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst/regs.rs +0 -0
  368. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst/unwind/systemv.rs +0 -0
  369. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst/unwind.rs +0 -0
  370. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/aarch64/inst.isle +3762 -0
  371. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/inst_neon.isle +0 -0
  372. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/lower/isle/generated_code.rs +0 -0
  373. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/aarch64/lower/isle.rs +741 -0
  374. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/aarch64/lower.isle +2565 -0
  375. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/aarch64/lower.rs +763 -0
  376. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/lower_dynamic_neon.isle +0 -0
  377. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/aarch64/mod.rs +429 -0
  378. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/aarch64/settings.rs +0 -0
  379. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/call_conv.rs +0 -0
  380. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/mod.rs +0 -0
  381. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/abi.rs +722 -0
  382. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/riscv64/inst/args.rs +0 -0
  383. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/inst/emit.rs +2789 -0
  384. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/inst/emit_tests.rs +2240 -0
  385. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/riscv64/inst/imms.rs +0 -0
  386. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/inst/mod.rs +1722 -0
  387. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/riscv64/inst/regs.rs +0 -0
  388. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/riscv64/inst/unwind/systemv.rs +0 -0
  389. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/riscv64/inst/unwind.rs +0 -0
  390. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/inst.isle +2328 -0
  391. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/riscv64/lower/isle/generated_code.rs +0 -0
  392. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/lower/isle.rs +464 -0
  393. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/lower.isle +871 -0
  394. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/lower.rs +33 -0
  395. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/riscv64/mod.rs +256 -0
  396. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/riscv64/settings.rs +0 -0
  397. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/abi.rs +945 -0
  398. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/inst/args.rs +0 -0
  399. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/inst/emit.rs +3677 -0
  400. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/inst/emit_tests.rs +13396 -0
  401. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/inst/imms.rs +0 -0
  402. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/inst/mod.rs +3393 -0
  403. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/inst/regs.rs +0 -0
  404. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/inst/unwind/systemv.rs +0 -0
  405. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/inst/unwind.rs +0 -0
  406. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/inst.isle +5049 -0
  407. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/lower/isle/generated_code.rs +0 -0
  408. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/lower/isle.rs +1027 -0
  409. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/lower.isle +3973 -0
  410. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/s390x/lower.rs +28 -0
  411. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/mod.rs +0 -0
  412. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/s390x/settings.rs +0 -0
  413. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/unwind/systemv.rs +0 -0
  414. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/unwind/winx64.rs +0 -0
  415. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/unwind.rs +0 -0
  416. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/abi.rs +969 -0
  417. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/encoding/evex.rs +0 -0
  418. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/encoding/mod.rs +0 -0
  419. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/encoding/rex.rs +0 -0
  420. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/encoding/vex.rs +0 -0
  421. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/inst/args.rs +1934 -0
  422. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/inst/emit.rs +3257 -0
  423. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/inst/emit_tests.rs +5162 -0
  424. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/inst/mod.rs +2553 -0
  425. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/inst/regs.rs +0 -0
  426. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/inst/unwind/systemv.rs +0 -0
  427. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/inst/unwind/winx64.rs +0 -0
  428. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/inst/unwind.rs +0 -0
  429. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/inst.isle +3928 -0
  430. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/lower/isle/generated_code.rs +14 -0
  431. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/lower/isle.rs +1070 -0
  432. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/lower.isle +3775 -0
  433. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/lower.rs +318 -0
  434. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isa/x64/mod.rs +488 -0
  435. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/isa/x64/settings.rs +0 -0
  436. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/isle_prelude.rs +641 -0
  437. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/iterators.rs +0 -0
  438. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/legalizer/globalvalue.rs +0 -0
  439. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/legalizer/mod.rs +319 -0
  440. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/legalizer/table.rs +0 -0
  441. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/lib.rs +141 -0
  442. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/licm.rs +242 -0
  443. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/loop_analysis.rs +443 -0
  444. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/abi.rs +2410 -0
  445. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/blockorder.rs +704 -0
  446. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/buffer.rs +2104 -0
  447. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/compile.rs +89 -0
  448. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/helpers.rs +33 -0
  449. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/inst_common.rs +74 -0
  450. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/isle.rs +753 -0
  451. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/lower.rs +1384 -0
  452. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/mod.rs +438 -0
  453. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/machinst/reg.rs +0 -0
  454. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/machinst/valueregs.rs +0 -0
  455. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/machinst/vcode.rs +1593 -0
  456. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/nan_canonicalization.rs +104 -0
  457. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/opts/algebraic.isle +242 -0
  458. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/opts/cprop.isle +140 -0
  459. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/opts/generated_code.rs +0 -0
  460. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/opts.rs +131 -0
  461. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/prelude.isle +450 -0
  462. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/prelude_lower.isle +723 -0
  463. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/prelude_opt.isle +34 -0
  464. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/print_errors.rs +0 -0
  465. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/remove_constant_phis.rs +425 -0
  466. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/result.rs +0 -0
  467. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/scoped_hash_map.rs +0 -0
  468. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/settings.rs +601 -0
  469. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/simple_gvn.rs +149 -0
  470. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/simple_preopt.rs +932 -0
  471. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/souper_harvest.rs +576 -0
  472. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/timing.rs +263 -0
  473. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/unionfind.rs +74 -0
  474. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/unreachable_code.rs +0 -0
  475. data/ext/cargo-vendor/{cranelift-codegen-0.91.0 → cranelift-codegen-0.92.0}/src/value_label.rs +0 -0
  476. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/verifier/mod.rs +1862 -0
  477. data/ext/cargo-vendor/cranelift-codegen-0.92.0/src/write.rs +654 -0
  478. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/.cargo-checksum.json +1 -0
  479. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/Cargo.toml +26 -0
  480. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/LICENSE +0 -0
  481. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/README.md +0 -0
  482. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/cdsl/formats.rs +134 -0
  483. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/cdsl/instructions.rs +477 -0
  484. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/cdsl/isa.rs +0 -0
  485. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/cdsl/mod.rs +0 -0
  486. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/cdsl/operands.rs +171 -0
  487. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/cdsl/settings.rs +0 -0
  488. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/cdsl/types.rs +500 -0
  489. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/cdsl/typevar.rs +928 -0
  490. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/constant_hash.rs +0 -0
  491. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/error.rs +0 -0
  492. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/gen_inst.rs +1555 -0
  493. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/gen_settings.rs +0 -0
  494. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/gen_types.rs +75 -0
  495. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/isa/arm64.rs +0 -0
  496. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/isa/mod.rs +0 -0
  497. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/isa/riscv64.rs +28 -0
  498. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/isa/s390x.rs +0 -0
  499. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/isa/x86.rs +0 -0
  500. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/lib.rs +0 -0
  501. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/shared/entities.rs +85 -0
  502. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/shared/formats.rs +218 -0
  503. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/shared/immediates.rs +213 -0
  504. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/shared/instructions.rs +3621 -0
  505. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/shared/mod.rs +0 -0
  506. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/shared/settings.rs +355 -0
  507. data/ext/cargo-vendor/cranelift-codegen-meta-0.92.0/src/shared/types.rs +137 -0
  508. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/srcgen.rs +0 -0
  509. data/ext/cargo-vendor/{cranelift-codegen-meta-0.91.0 → cranelift-codegen-meta-0.92.0}/src/unique_table.rs +0 -0
  510. data/ext/cargo-vendor/cranelift-codegen-shared-0.92.0/.cargo-checksum.json +1 -0
  511. data/ext/cargo-vendor/cranelift-codegen-shared-0.92.0/Cargo.toml +22 -0
  512. data/ext/cargo-vendor/{cranelift-codegen-shared-0.91.0 → cranelift-codegen-shared-0.92.0}/LICENSE +0 -0
  513. data/ext/cargo-vendor/{cranelift-codegen-shared-0.91.0 → cranelift-codegen-shared-0.92.0}/README.md +0 -0
  514. data/ext/cargo-vendor/{cranelift-codegen-shared-0.91.0 → cranelift-codegen-shared-0.92.0}/src/constant_hash.rs +0 -0
  515. data/ext/cargo-vendor/{cranelift-codegen-shared-0.91.0 → cranelift-codegen-shared-0.92.0}/src/constants.rs +0 -0
  516. data/ext/cargo-vendor/{cranelift-codegen-shared-0.91.0 → cranelift-codegen-shared-0.92.0}/src/lib.rs +0 -0
  517. data/ext/cargo-vendor/cranelift-entity-0.92.0/.cargo-checksum.json +1 -0
  518. data/ext/cargo-vendor/cranelift-entity-0.92.0/Cargo.toml +38 -0
  519. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/LICENSE +0 -0
  520. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/README.md +0 -0
  521. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/boxed_slice.rs +0 -0
  522. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/iter.rs +0 -0
  523. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/keys.rs +0 -0
  524. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/lib.rs +0 -0
  525. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/list.rs +0 -0
  526. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/map.rs +0 -0
  527. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/packed_option.rs +0 -0
  528. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/primary.rs +0 -0
  529. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/set.rs +0 -0
  530. data/ext/cargo-vendor/{cranelift-entity-0.91.0 → cranelift-entity-0.92.0}/src/sparse.rs +0 -0
  531. data/ext/cargo-vendor/cranelift-frontend-0.92.0/.cargo-checksum.json +1 -0
  532. data/ext/cargo-vendor/cranelift-frontend-0.92.0/Cargo.toml +53 -0
  533. data/ext/cargo-vendor/{cranelift-frontend-0.91.0 → cranelift-frontend-0.92.0}/LICENSE +0 -0
  534. data/ext/cargo-vendor/{cranelift-frontend-0.91.0 → cranelift-frontend-0.92.0}/README.md +0 -0
  535. data/ext/cargo-vendor/cranelift-frontend-0.92.0/src/frontend.rs +1836 -0
  536. data/ext/cargo-vendor/{cranelift-frontend-0.91.0 → cranelift-frontend-0.92.0}/src/lib.rs +0 -0
  537. data/ext/cargo-vendor/cranelift-frontend-0.92.0/src/ssa.rs +1399 -0
  538. data/ext/cargo-vendor/{cranelift-frontend-0.91.0 → cranelift-frontend-0.92.0}/src/switch.rs +0 -0
  539. data/ext/cargo-vendor/{cranelift-frontend-0.91.0 → cranelift-frontend-0.92.0}/src/variable.rs +0 -0
  540. data/ext/cargo-vendor/cranelift-isle-0.92.0/.cargo-checksum.json +1 -0
  541. data/ext/cargo-vendor/cranelift-isle-0.92.0/Cargo.toml +37 -0
  542. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/README.md +0 -0
  543. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/build.rs +0 -0
  544. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/bad_converters.isle +0 -0
  545. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/bound_var_type_mismatch.isle +0 -0
  546. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/converter_extractor_constructor.isle +0 -0
  547. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/error1.isle +0 -0
  548. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/extra_parens.isle +0 -0
  549. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/impure_expression.isle +0 -0
  550. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/impure_rhs.isle +0 -0
  551. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/fail/multi_internal_etor.isle +0 -0
  552. data/ext/cargo-vendor/cranelift-isle-0.92.0/isle_examples/link/borrows.isle +15 -0
  553. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/link/borrows_main.rs +0 -0
  554. data/ext/cargo-vendor/cranelift-isle-0.92.0/isle_examples/link/iflets.isle +29 -0
  555. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/link/iflets_main.rs +0 -0
  556. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/link/multi_constructor.isle +0 -0
  557. data/ext/cargo-vendor/cranelift-isle-0.92.0/isle_examples/link/multi_constructor_main.rs +71 -0
  558. data/ext/cargo-vendor/cranelift-isle-0.92.0/isle_examples/link/multi_extractor.isle +14 -0
  559. data/ext/cargo-vendor/cranelift-isle-0.92.0/isle_examples/link/multi_extractor_main.rs +50 -0
  560. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/link/test.isle +0 -0
  561. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/link/test_main.rs +0 -0
  562. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/bound_var.isle +0 -0
  563. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/construct_and_extract.isle +0 -0
  564. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/conversions.isle +0 -0
  565. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/conversions_extern.isle +0 -0
  566. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/let.isle +0 -0
  567. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/nodebug.isle +0 -0
  568. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/prio_trie_bug.isle +0 -0
  569. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/test2.isle +0 -0
  570. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/test3.isle +0 -0
  571. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/test4.isle +0 -0
  572. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/pass/tutorial.isle +0 -0
  573. data/ext/cargo-vendor/cranelift-isle-0.92.0/isle_examples/run/iconst.isle +17 -0
  574. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/run/iconst_main.rs +0 -0
  575. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/isle_examples/run/let_shadowing.isle +0 -0
  576. data/ext/cargo-vendor/cranelift-isle-0.92.0/isle_examples/run/let_shadowing_main.rs +27 -0
  577. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/ast.rs +421 -0
  578. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/codegen.rs +1046 -0
  579. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/src/compile.rs +0 -0
  580. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/src/error.rs +0 -0
  581. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/ir.rs +425 -0
  582. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/src/lexer.rs +0 -0
  583. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/lib.rs +252 -0
  584. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/src/log.rs +0 -0
  585. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/overlap.rs +137 -0
  586. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/parser.rs +586 -0
  587. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/sema.rs +2488 -0
  588. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/src/trie.rs +0 -0
  589. data/ext/cargo-vendor/cranelift-isle-0.92.0/src/trie_again.rs +683 -0
  590. data/ext/cargo-vendor/{cranelift-isle-0.91.0 → cranelift-isle-0.92.0}/tests/run_tests.rs +0 -0
  591. data/ext/cargo-vendor/cranelift-native-0.92.0/.cargo-checksum.json +1 -0
  592. data/ext/cargo-vendor/cranelift-native-0.92.0/Cargo.toml +41 -0
  593. data/ext/cargo-vendor/{cranelift-native-0.91.0 → cranelift-native-0.92.0}/LICENSE +0 -0
  594. data/ext/cargo-vendor/{cranelift-native-0.91.0 → cranelift-native-0.92.0}/README.md +0 -0
  595. data/ext/cargo-vendor/{cranelift-native-0.91.0 → cranelift-native-0.92.0}/src/lib.rs +0 -0
  596. data/ext/cargo-vendor/cranelift-wasm-0.92.0/.cargo-checksum.json +1 -0
  597. data/ext/cargo-vendor/cranelift-wasm-0.92.0/Cargo.toml +88 -0
  598. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/LICENSE +0 -0
  599. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/README.md +0 -0
  600. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/code_translator/bounds_checks.rs +413 -0
  601. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/code_translator.rs +3241 -0
  602. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/environ/dummy.rs +905 -0
  603. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/environ/mod.rs +12 -0
  604. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/environ/spec.rs +790 -0
  605. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/func_translator.rs +417 -0
  606. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/heap.rs +99 -0
  607. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/lib.rs +78 -0
  608. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/module_translator.rs +128 -0
  609. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/sections_translator.rs +429 -0
  610. data/ext/cargo-vendor/cranelift-wasm-0.92.0/src/state.rs +540 -0
  611. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/src/translation_utils.rs +0 -0
  612. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/tests/wasm_testsuite.rs +0 -0
  613. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/arith.wat +0 -0
  614. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/br_table.wat +0 -0
  615. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/call-simd.wat +0 -0
  616. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/call.wat +0 -0
  617. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/embenchen_fannkuch.wat +0 -0
  618. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/embenchen_fasta.wat +0 -0
  619. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/embenchen_ifs.wat +0 -0
  620. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/embenchen_primes.wat +0 -0
  621. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/fac-multi-value.wat +0 -0
  622. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/fibonacci.wat +0 -0
  623. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/globals.wat +0 -0
  624. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/icall-simd.wat +0 -0
  625. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/icall.wat +0 -0
  626. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-reachability-translation-0.wat +0 -0
  627. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-reachability-translation-1.wat +0 -0
  628. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-reachability-translation-2.wat +0 -0
  629. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-reachability-translation-3.wat +0 -0
  630. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-reachability-translation-4.wat +0 -0
  631. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-reachability-translation-5.wat +0 -0
  632. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-reachability-translation-6.wat +0 -0
  633. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-unreachable-else-params-2.wat +0 -0
  634. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/if-unreachable-else-params.wat +0 -0
  635. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/issue-1306-name-section-with-u32-max-function-index.wasm +0 -0
  636. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/memory.wat +0 -0
  637. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-0.wat +0 -0
  638. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-1.wat +0 -0
  639. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-10.wat +0 -0
  640. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-11.wat +0 -0
  641. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-12.wat +0 -0
  642. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-13.wat +0 -0
  643. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-14.wat +0 -0
  644. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-15.wat +0 -0
  645. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-16.wat +0 -0
  646. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-17.wat +0 -0
  647. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-2.wat +0 -0
  648. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-3.wat +0 -0
  649. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-4.wat +0 -0
  650. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-5.wat +0 -0
  651. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-6.wat +0 -0
  652. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-7.wat +0 -0
  653. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-8.wat +0 -0
  654. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/multi-9.wat +0 -0
  655. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/nullref.wat +0 -0
  656. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/passive-data.wat +0 -0
  657. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/pr2303.wat +0 -0
  658. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/pr2559.wat +0 -0
  659. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/ref-func-0.wat +0 -0
  660. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/rust_fannkuch.wat +0 -0
  661. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/select.wat +0 -0
  662. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/simd-store.wat +0 -0
  663. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/simd.wat +0 -0
  664. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/table-copy.wat +0 -0
  665. data/ext/cargo-vendor/{cranelift-wasm-0.91.0 → cranelift-wasm-0.92.0}/wasmtests/unreachable_code.wat +0 -0
  666. data/ext/cargo-vendor/env_logger-0.10.0/.cargo-checksum.json +1 -0
  667. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.lock +254 -0
  668. data/ext/cargo-vendor/env_logger-0.10.0/Cargo.toml +129 -0
  669. data/ext/cargo-vendor/{cc-1.0.77 → env_logger-0.10.0}/LICENSE-APACHE +0 -0
  670. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/LICENSE-MIT +0 -0
  671. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/README.md +0 -0
  672. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_default_format.rs +40 -0
  673. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_format.rs +54 -0
  674. data/ext/cargo-vendor/env_logger-0.10.0/examples/custom_logger.rs +62 -0
  675. data/ext/cargo-vendor/env_logger-0.10.0/examples/default.rs +38 -0
  676. data/ext/cargo-vendor/env_logger-0.10.0/examples/direct_logger.rs +39 -0
  677. data/ext/cargo-vendor/env_logger-0.10.0/examples/filters_from_code.rs +20 -0
  678. data/ext/cargo-vendor/env_logger-0.10.0/examples/in_tests.rs +54 -0
  679. data/ext/cargo-vendor/env_logger-0.10.0/examples/syslog_friendly_format.rs +24 -0
  680. data/ext/cargo-vendor/env_logger-0.10.0/src/filter/mod.rs +868 -0
  681. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/src/filter/regex.rs +0 -0
  682. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/src/filter/string.rs +0 -0
  683. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/src/fmt/humantime/extern_impl.rs +0 -0
  684. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/src/fmt/humantime/mod.rs +0 -0
  685. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/src/fmt/humantime/shim_impl.rs +0 -0
  686. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/mod.rs +652 -0
  687. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/atty.rs +33 -0
  688. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/mod.rs +253 -0
  689. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/extern_impl.rs +532 -0
  690. data/ext/cargo-vendor/env_logger-0.10.0/src/fmt/writer/termcolor/mod.rs +12 -0
  691. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/src/fmt/writer/termcolor/shim_impl.rs +0 -0
  692. data/ext/cargo-vendor/env_logger-0.10.0/src/lib.rs +1311 -0
  693. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/tests/init-twice-retains-filter.rs +0 -0
  694. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/tests/log-in-log.rs +0 -0
  695. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/tests/log_tls_dtors.rs +0 -0
  696. data/ext/cargo-vendor/{env_logger-0.9.3 → env_logger-0.10.0}/tests/regexp_filter.rs +0 -0
  697. data/ext/cargo-vendor/fd-lock-3.0.8/.cargo-checksum.json +1 -0
  698. data/ext/cargo-vendor/fd-lock-3.0.8/Cargo.toml +53 -0
  699. data/ext/cargo-vendor/fd-lock-3.0.8/LICENSE-APACHE +190 -0
  700. data/ext/cargo-vendor/fd-lock-3.0.8/LICENSE-MIT +21 -0
  701. data/ext/cargo-vendor/fd-lock-3.0.8/README.md +72 -0
  702. data/ext/cargo-vendor/fd-lock-3.0.8/src/lib.rs +43 -0
  703. data/ext/cargo-vendor/fd-lock-3.0.8/src/read_guard.rs +43 -0
  704. data/ext/cargo-vendor/fd-lock-3.0.8/src/rw_lock.rs +126 -0
  705. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/mod.rs +17 -0
  706. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unix/mod.rs +7 -0
  707. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unix/read_guard.rs +32 -0
  708. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unix/rw_lock.rs +70 -0
  709. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unix/write_guard.rs +39 -0
  710. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unsupported/mod.rs +9 -0
  711. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unsupported/read_guard.rs +31 -0
  712. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unsupported/rw_lock.rs +44 -0
  713. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unsupported/utils.rs +9 -0
  714. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/unsupported/write_guard.rs +38 -0
  715. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/windows/mod.rs +8 -0
  716. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/windows/read_guard.rs +31 -0
  717. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/windows/rw_lock.rs +72 -0
  718. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/windows/utils.rs +33 -0
  719. data/ext/cargo-vendor/fd-lock-3.0.8/src/sys/windows/write_guard.rs +38 -0
  720. data/ext/cargo-vendor/fd-lock-3.0.8/src/write_guard.rs +50 -0
  721. data/ext/cargo-vendor/fd-lock-3.0.8/tests/test.rs +33 -0
  722. data/ext/cargo-vendor/file-per-thread-logger-0.1.6/.cargo-checksum.json +1 -0
  723. data/ext/cargo-vendor/file-per-thread-logger-0.1.6/Cargo.toml +36 -0
  724. data/ext/cargo-vendor/{file-per-thread-logger-0.1.5 → file-per-thread-logger-0.1.6}/LICENSE +0 -0
  725. data/ext/cargo-vendor/{file-per-thread-logger-0.1.5 → file-per-thread-logger-0.1.6}/README.md +0 -0
  726. data/ext/cargo-vendor/{file-per-thread-logger-0.1.5 → file-per-thread-logger-0.1.6}/run-tests.sh +0 -0
  727. data/ext/cargo-vendor/{file-per-thread-logger-0.1.5 → file-per-thread-logger-0.1.6}/src/lib.rs +0 -0
  728. data/ext/cargo-vendor/{file-per-thread-logger-0.1.5 → file-per-thread-logger-0.1.6}/tests/test.rs +0 -0
  729. data/ext/cargo-vendor/glob-0.3.1/.cargo-checksum.json +1 -0
  730. data/ext/cargo-vendor/glob-0.3.1/Cargo.toml +30 -0
  731. data/ext/cargo-vendor/{env_logger-0.9.3 → glob-0.3.1}/LICENSE-APACHE +0 -0
  732. data/ext/cargo-vendor/{glob-0.3.0 → glob-0.3.1}/LICENSE-MIT +0 -0
  733. data/ext/cargo-vendor/glob-0.3.1/README.md +38 -0
  734. data/ext/cargo-vendor/glob-0.3.1/src/lib.rs +1434 -0
  735. data/ext/cargo-vendor/{glob-0.3.0 → glob-0.3.1}/tests/glob-std.rs +0 -0
  736. data/ext/cargo-vendor/glob-0.3.1/triagebot.toml +1 -0
  737. data/ext/cargo-vendor/id-arena-2.2.1/.cargo-checksum.json +1 -0
  738. data/ext/cargo-vendor/id-arena-2.2.1/CHANGELOG.md +65 -0
  739. data/ext/cargo-vendor/id-arena-2.2.1/Cargo.toml +31 -0
  740. data/ext/cargo-vendor/{glob-0.3.0 → id-arena-2.2.1}/LICENSE-APACHE +0 -0
  741. data/ext/cargo-vendor/{proc-macro2-1.0.47 → id-arena-2.2.1}/LICENSE-MIT +0 -0
  742. data/ext/cargo-vendor/id-arena-2.2.1/README.md +100 -0
  743. data/ext/cargo-vendor/id-arena-2.2.1/README.tpl +3 -0
  744. data/ext/cargo-vendor/id-arena-2.2.1/src/lib.rs +726 -0
  745. data/ext/cargo-vendor/id-arena-2.2.1/src/rayon.rs +282 -0
  746. data/ext/cargo-vendor/id-arena-2.2.1/tests/readme_up_to_date.rs +22 -0
  747. data/ext/cargo-vendor/io-extras-0.17.1/.cargo-checksum.json +1 -0
  748. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/CODE_OF_CONDUCT.md +0 -0
  749. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/COPYRIGHT +0 -0
  750. data/ext/cargo-vendor/io-extras-0.17.1/Cargo.toml +109 -0
  751. data/ext/cargo-vendor/{hermit-abi-0.1.19 → io-extras-0.17.1}/LICENSE-APACHE +0 -0
  752. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  753. data/ext/cargo-vendor/{hermit-abi-0.1.19 → io-extras-0.17.1}/LICENSE-MIT +0 -0
  754. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/ORG_CODE_OF_CONDUCT.md +0 -0
  755. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/README.md +0 -0
  756. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/SECURITY.md +0 -0
  757. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/build.rs +0 -0
  758. data/ext/cargo-vendor/io-extras-0.17.1/src/borrowed.rs +301 -0
  759. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/grip.rs +0 -0
  760. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/lib.rs +0 -0
  761. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/os/mod.rs +0 -0
  762. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/os/rustix.rs +0 -0
  763. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/os/windows/mod.rs +0 -0
  764. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/os/windows/stdio.rs +0 -0
  765. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/os/windows/traits.rs +0 -0
  766. data/ext/cargo-vendor/io-extras-0.17.1/src/os/windows/types.rs +229 -0
  767. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/owned.rs +0 -0
  768. data/ext/cargo-vendor/{io-extras-0.17.0 → io-extras-0.17.1}/src/raw.rs +0 -0
  769. data/ext/cargo-vendor/io-extras-0.17.1/src/read_write.rs +802 -0
  770. data/ext/cargo-vendor/io-lifetimes-1.0.4/.cargo-checksum.json +1 -0
  771. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/CODE_OF_CONDUCT.md +0 -0
  772. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/COPYRIGHT +0 -0
  773. data/ext/cargo-vendor/io-lifetimes-1.0.4/Cargo.toml +94 -0
  774. data/ext/cargo-vendor/{io-extras-0.17.0 → io-lifetimes-1.0.4}/LICENSE-APACHE +0 -0
  775. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  776. data/ext/cargo-vendor/{io-extras-0.17.0 → io-lifetimes-1.0.4}/LICENSE-MIT +0 -0
  777. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/ORG_CODE_OF_CONDUCT.md +0 -0
  778. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/README.md +0 -0
  779. data/ext/cargo-vendor/io-lifetimes-1.0.4/build.rs +106 -0
  780. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/example_ffi.rs +0 -0
  781. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/impls_async_std.rs +0 -0
  782. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/impls_fs_err.rs +0 -0
  783. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/impls_mio.rs +0 -0
  784. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/impls_os_pipe.rs +0 -0
  785. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/impls_socket2.rs +0 -0
  786. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/impls_std.rs +0 -0
  787. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/impls_tokio.rs +0 -0
  788. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/lib.rs +0 -0
  789. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/portability.rs +0 -0
  790. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/raw.rs +0 -0
  791. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/traits.rs +0 -0
  792. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/types.rs +0 -0
  793. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → io-lifetimes-1.0.4}/src/views.rs +0 -0
  794. data/ext/cargo-vendor/ipnet-2.7.1/.cargo-checksum.json +1 -0
  795. data/ext/cargo-vendor/ipnet-2.7.1/Cargo.toml +52 -0
  796. data/ext/cargo-vendor/{ipnet-2.5.1 → ipnet-2.7.1}/LICENSE-APACHE +0 -0
  797. data/ext/cargo-vendor/{ipnet-2.5.1 → ipnet-2.7.1}/LICENSE-MIT +0 -0
  798. data/ext/cargo-vendor/{ipnet-2.5.1 → ipnet-2.7.1}/README.md +0 -0
  799. data/ext/cargo-vendor/ipnet-2.7.1/RELEASES.md +77 -0
  800. data/ext/cargo-vendor/{ipnet-2.5.1 → ipnet-2.7.1}/src/ipext.rs +0 -0
  801. data/ext/cargo-vendor/ipnet-2.7.1/src/ipnet.rs +1864 -0
  802. data/ext/cargo-vendor/{ipnet-2.5.1 → ipnet-2.7.1}/src/ipnet_schemars.rs +0 -0
  803. data/ext/cargo-vendor/{ipnet-2.5.1 → ipnet-2.7.1}/src/ipnet_serde.rs +0 -0
  804. data/ext/cargo-vendor/ipnet-2.7.1/src/lib.rs +98 -0
  805. data/ext/cargo-vendor/ipnet-2.7.1/src/mask.rs +128 -0
  806. data/ext/cargo-vendor/{ipnet-2.5.1 → ipnet-2.7.1}/src/parser.rs +0 -0
  807. data/ext/cargo-vendor/itoa-1.0.5/.cargo-checksum.json +1 -0
  808. data/ext/cargo-vendor/itoa-1.0.5/Cargo.toml +38 -0
  809. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → itoa-1.0.5}/LICENSE-APACHE +0 -0
  810. data/ext/cargo-vendor/{io-lifetimes-1.0.3 → itoa-1.0.5}/LICENSE-MIT +0 -0
  811. data/ext/cargo-vendor/itoa-1.0.5/README.md +59 -0
  812. data/ext/cargo-vendor/{itoa-1.0.4 → itoa-1.0.5}/benches/bench.rs +0 -0
  813. data/ext/cargo-vendor/itoa-1.0.5/src/lib.rs +290 -0
  814. data/ext/cargo-vendor/{itoa-1.0.4 → itoa-1.0.5}/src/udiv128.rs +0 -0
  815. data/ext/cargo-vendor/{itoa-1.0.4 → itoa-1.0.5}/tests/test.rs +0 -0
  816. data/ext/cargo-vendor/ittapi-0.3.3/.cargo-checksum.json +1 -0
  817. data/ext/cargo-vendor/ittapi-0.3.3/Cargo.toml +44 -0
  818. data/ext/cargo-vendor/ittapi-0.3.3/README.md +49 -0
  819. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/collection_control.rs +0 -0
  820. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/domain.rs +0 -0
  821. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/event.rs +0 -0
  822. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/jit.rs +0 -0
  823. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/lib.rs +0 -0
  824. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/string.rs +0 -0
  825. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/task.rs +0 -0
  826. data/ext/cargo-vendor/{ittapi-0.3.2 → ittapi-0.3.3}/src/util.rs +0 -0
  827. data/ext/cargo-vendor/ittapi-sys-0.3.3/.cargo-checksum.json +1 -0
  828. data/ext/cargo-vendor/ittapi-sys-0.3.3/Cargo.toml +42 -0
  829. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/LICENSES/BSD-3-Clause.txt +0 -0
  830. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/LICENSES/GPL-2.0-only.txt +0 -0
  831. data/ext/cargo-vendor/ittapi-sys-0.3.3/README.md +75 -0
  832. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/build.rs +0 -0
  833. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/CMakeLists.txt +127 -0
  834. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/LICENSES/BSD-3-Clause.txt +0 -0
  835. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/LICENSES/GPL-2.0-only.txt +0 -0
  836. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/README.md +0 -0
  837. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeCache.txt +0 -0
  838. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CMakeCCompiler.cmake +0 -0
  839. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CMakeCXXCompiler.cmake +0 -0
  840. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CMakeDetermineCompilerABI_C.bin +0 -0
  841. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CMakeDetermineCompilerABI_CXX.bin +0 -0
  842. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CMakeSystem.cmake +0 -0
  843. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CompilerIdC/CMakeCCompilerId.c +0 -0
  844. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CompilerIdC/a.out +0 -0
  845. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CompilerIdCXX/CMakeCXXCompilerId.cpp +0 -0
  846. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/3.22.2/CompilerIdCXX/a.out +0 -0
  847. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/CMakeOutput.log +0 -0
  848. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/TargetDirectories.txt +0 -0
  849. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/cmake.check_cache +0 -0
  850. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/CMakeFiles/rules.ninja +0 -0
  851. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/build.ninja +0 -0
  852. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/cmake_install.cmake +0 -0
  853. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/build/compile_commands.json +0 -0
  854. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/buildall.py +171 -0
  855. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/advisor-annotate.h +520 -0
  856. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/advisor_annotate.f90 +712 -0
  857. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/fortran/posix/ittnotify.f90 +0 -0
  858. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/posix/x86/advisor_annotate.mod +0 -0
  859. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/posix/x86/advisor_annotate.o +0 -0
  860. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/posix/x86/ittfortran.o +0 -0
  861. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/fortran/posix/x86/ittnotify.mod +0 -0
  862. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/posix/x86_64/advisor_annotate.mod +0 -0
  863. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/posix/x86_64/advisor_annotate.o +0 -0
  864. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/posix/x86_64/ittfortran.o +0 -0
  865. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/fortran/posix/x86_64/ittnotify.mod +0 -0
  866. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/fortran/win32/ittnotify.f90 +0 -0
  867. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/win32/x86/advisor_annotate.mod +0 -0
  868. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/win32/x86/advisor_annotate.obj +0 -0
  869. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/win32/x86/ittfortran.obj +0 -0
  870. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/fortran/win32/x86/ittnotify.mod +0 -0
  871. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/win32/x86_64/advisor_annotate.mod +0 -0
  872. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/win32/x86_64/advisor_annotate.obj +0 -0
  873. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/fortran/win32/x86_64/ittfortran.obj +0 -0
  874. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/fortran/win32/x86_64/ittnotify.mod +0 -0
  875. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/ittnotify-zca.h +0 -0
  876. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/include/ittnotify.h +4486 -0
  877. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/jitprofiling.h +0 -0
  878. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/legacy/ittnotify.h +0 -0
  879. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/include/libittnotify.h +0 -0
  880. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify/disable_warnings.h +0 -0
  881. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify/ittnotify_config.h +0 -0
  882. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/src/ittnotify/ittnotify_static.c +1619 -0
  883. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/src/ittnotify/ittnotify_static.h +357 -0
  884. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify/ittnotify_types.h +0 -0
  885. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify/ittptmark32.S +0 -0
  886. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify/ittptmark32.asm +0 -0
  887. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify/ittptmark64.S +0 -0
  888. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify/ittptmark64.asm +0 -0
  889. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/src/ittnotify/jitprofiling.c +230 -0
  890. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify_refcol/Makefile +0 -0
  891. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/c-library/src/ittnotify_refcol/README.md +0 -0
  892. data/ext/cargo-vendor/ittapi-sys-0.3.3/c-library/src/ittnotify_refcol/itt_refcol_impl.c +319 -0
  893. data/ext/cargo-vendor/ittapi-sys-0.3.3/src/freebsd/ittnotify_bindings.rs +1891 -0
  894. data/ext/cargo-vendor/{ittapi-sys-0.3.2/src/linux → ittapi-sys-0.3.3/src/freebsd}/jitprofiling_bindings.rs +0 -0
  895. data/ext/cargo-vendor/ittapi-sys-0.3.3/src/lib.rs +38 -0
  896. data/ext/cargo-vendor/ittapi-sys-0.3.3/src/linux/ittnotify_bindings.rs +1889 -0
  897. data/ext/cargo-vendor/{ittapi-sys-0.3.2/src/macos → ittapi-sys-0.3.3/src/linux}/jitprofiling_bindings.rs +0 -0
  898. data/ext/cargo-vendor/ittapi-sys-0.3.3/src/macos/ittnotify_bindings.rs +1889 -0
  899. data/ext/cargo-vendor/ittapi-sys-0.3.3/src/macos/jitprofiling_bindings.rs +1160 -0
  900. data/ext/cargo-vendor/ittapi-sys-0.3.3/src/windows/ittnotify_bindings.rs +2029 -0
  901. data/ext/cargo-vendor/{ittapi-sys-0.3.2 → ittapi-sys-0.3.3}/src/windows/jitprofiling_bindings.rs +0 -0
  902. data/ext/cargo-vendor/ittapi-sys-0.3.3/tests/bindgen-up-to-date.rs +103 -0
  903. data/ext/cargo-vendor/libc-0.2.139/.cargo-checksum.json +1 -0
  904. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/CONTRIBUTING.md +0 -0
  905. data/ext/cargo-vendor/libc-0.2.139/Cargo.toml +64 -0
  906. data/ext/cargo-vendor/libc-0.2.139/LICENSE-APACHE +176 -0
  907. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/LICENSE-MIT +0 -0
  908. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/README.md +0 -0
  909. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/build.rs +0 -0
  910. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/rustfmt.toml +0 -0
  911. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/fixed_width_ints.rs +0 -0
  912. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/fuchsia/aarch64.rs +0 -0
  913. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/fuchsia/align.rs +0 -0
  914. data/ext/cargo-vendor/libc-0.2.139/src/fuchsia/mod.rs +4296 -0
  915. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/fuchsia/no_align.rs +0 -0
  916. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/fuchsia/x86_64.rs +0 -0
  917. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/hermit/aarch64.rs +0 -0
  918. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/hermit/mod.rs +0 -0
  919. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/hermit/x86_64.rs +0 -0
  920. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/lib.rs +0 -0
  921. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/macros.rs +0 -0
  922. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/psp.rs +0 -0
  923. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/sgx.rs +0 -0
  924. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/solid/aarch64.rs +0 -0
  925. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/solid/arm.rs +0 -0
  926. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/solid/mod.rs +0 -0
  927. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/switch.rs +0 -0
  928. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/align.rs +0 -0
  929. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b32/align.rs +0 -0
  930. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b32/mod.rs +0 -0
  931. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b64/aarch64/align.rs +0 -0
  932. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b64/aarch64/mod.rs +0 -0
  933. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b64/align.rs +0 -0
  934. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b64/mod.rs +0 -0
  935. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b64/x86_64/align.rs +0 -0
  936. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/b64/x86_64/mod.rs +0 -0
  937. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/apple/mod.rs +0 -0
  938. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/dragonfly/errno.rs +0 -0
  939. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/dragonfly/mod.rs +0 -0
  940. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/aarch64.rs +0 -0
  941. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/arm.rs +0 -0
  942. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd11/b64.rs +0 -0
  943. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd11/mod.rs +0 -0
  944. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd12/b64.rs +0 -0
  945. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd12/mod.rs +0 -0
  946. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd12/x86_64.rs +0 -0
  947. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd13/b64.rs +0 -0
  948. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd13/mod.rs +0 -0
  949. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd13/x86_64.rs +0 -0
  950. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd14/b64.rs +0 -0
  951. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd14/mod.rs +0 -0
  952. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/freebsd14/x86_64.rs +0 -0
  953. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/mod.rs +0 -0
  954. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/powerpc.rs +0 -0
  955. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/powerpc64.rs +0 -0
  956. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/riscv64.rs +0 -0
  957. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/x86.rs +0 -0
  958. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/x86_64/align.rs +0 -0
  959. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/freebsd/x86_64/mod.rs +0 -0
  960. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/freebsdlike/mod.rs +0 -0
  961. data/ext/cargo-vendor/libc-0.2.139/src/unix/bsd/mod.rs +916 -0
  962. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/mod.rs +0 -0
  963. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/netbsd/aarch64.rs +0 -0
  964. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/netbsd/arm.rs +0 -0
  965. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/netbsd/mod.rs +0 -0
  966. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/netbsd/powerpc.rs +0 -0
  967. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/netbsd/sparc64.rs +0 -0
  968. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/netbsd/x86.rs +0 -0
  969. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/netbsd/x86_64.rs +0 -0
  970. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/aarch64.rs +0 -0
  971. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/arm.rs +0 -0
  972. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/mips64.rs +0 -0
  973. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/mod.rs +0 -0
  974. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/powerpc.rs +0 -0
  975. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/powerpc64.rs +0 -0
  976. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/riscv64.rs +0 -0
  977. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/sparc64.rs +0 -0
  978. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/x86.rs +0 -0
  979. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/bsd/netbsdlike/openbsd/x86_64.rs +0 -0
  980. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/haiku/b32.rs +0 -0
  981. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/haiku/b64.rs +0 -0
  982. data/ext/cargo-vendor/libc-0.2.139/src/unix/haiku/mod.rs +2037 -0
  983. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/haiku/native.rs +0 -0
  984. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/haiku/x86_64.rs +0 -0
  985. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/hermit/aarch64.rs +0 -0
  986. data/ext/cargo-vendor/libc-0.2.139/src/unix/hermit/mod.rs +1023 -0
  987. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/hermit/x86_64.rs +0 -0
  988. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/android/b32/arm.rs +542 -0
  989. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b32/mod.rs +0 -0
  990. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b32/x86/align.rs +0 -0
  991. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/android/b32/x86/mod.rs +614 -0
  992. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b64/aarch64/align.rs +0 -0
  993. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b64/aarch64/int128.rs +0 -0
  994. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/android/b64/aarch64/mod.rs +394 -0
  995. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b64/mod.rs +0 -0
  996. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b64/riscv64/align.rs +0 -0
  997. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b64/riscv64/mod.rs +0 -0
  998. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/android/b64/x86_64/align.rs +0 -0
  999. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/android/b64/x86_64/mod.rs +794 -0
  1000. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/android/mod.rs +3609 -0
  1001. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/emscripten/align.rs +0 -0
  1002. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/emscripten/mod.rs +1896 -0
  1003. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/emscripten/no_align.rs +0 -0
  1004. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/align.rs +0 -0
  1005. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/arch/generic/mod.rs +0 -0
  1006. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/arch/mips/mod.rs +0 -0
  1007. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/arch/mod.rs +0 -0
  1008. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/arch/powerpc/mod.rs +0 -0
  1009. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/arch/sparc/mod.rs +0 -0
  1010. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/align.rs +0 -0
  1011. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/arm/align.rs +0 -0
  1012. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/arm/mod.rs +0 -0
  1013. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/m68k/align.rs +0 -0
  1014. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/m68k/mod.rs +0 -0
  1015. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/mips/align.rs +0 -0
  1016. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/mips/mod.rs +0 -0
  1017. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/mod.rs +0 -0
  1018. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/powerpc.rs +0 -0
  1019. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/riscv32/align.rs +0 -0
  1020. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/riscv32/mod.rs +0 -0
  1021. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/sparc/align.rs +0 -0
  1022. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/sparc/mod.rs +0 -0
  1023. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/x86/align.rs +0 -0
  1024. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b32/x86/mod.rs +0 -0
  1025. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/aarch64/align.rs +0 -0
  1026. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/aarch64/ilp32.rs +0 -0
  1027. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/aarch64/int128.rs +0 -0
  1028. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/aarch64/lp64.rs +0 -0
  1029. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/aarch64/mod.rs +0 -0
  1030. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/loongarch64/align.rs +0 -0
  1031. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/loongarch64/mod.rs +0 -0
  1032. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/mips64/align.rs +0 -0
  1033. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/mips64/mod.rs +0 -0
  1034. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/mod.rs +0 -0
  1035. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/powerpc64/align.rs +0 -0
  1036. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/powerpc64/mod.rs +0 -0
  1037. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/riscv64/align.rs +0 -0
  1038. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/riscv64/mod.rs +0 -0
  1039. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/s390x.rs +0 -0
  1040. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/sparc64/align.rs +0 -0
  1041. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/sparc64/mod.rs +0 -0
  1042. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/x86_64/align.rs +0 -0
  1043. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/x86_64/mod.rs +0 -0
  1044. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/x86_64/not_x32.rs +0 -0
  1045. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/b64/x86_64/x32.rs +0 -0
  1046. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/mod.rs +0 -0
  1047. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/gnu/no_align.rs +0 -0
  1048. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/linux/mod.rs +4495 -0
  1049. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/arm/align.rs +0 -0
  1050. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/arm/mod.rs +0 -0
  1051. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/hexagon.rs +0 -0
  1052. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/mips/align.rs +0 -0
  1053. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/mips/mod.rs +0 -0
  1054. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/mod.rs +0 -0
  1055. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/powerpc.rs +0 -0
  1056. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/riscv32/align.rs +0 -0
  1057. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/riscv32/mod.rs +0 -0
  1058. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/x86/align.rs +0 -0
  1059. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b32/x86/mod.rs +0 -0
  1060. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/aarch64/align.rs +0 -0
  1061. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/aarch64/int128.rs +0 -0
  1062. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/aarch64/mod.rs +0 -0
  1063. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/mips64.rs +0 -0
  1064. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/mod.rs +0 -0
  1065. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/powerpc64.rs +0 -0
  1066. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/riscv64/align.rs +0 -0
  1067. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/riscv64/mod.rs +0 -0
  1068. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/s390x.rs +0 -0
  1069. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/x86_64/align.rs +0 -0
  1070. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/b64/x86_64/mod.rs +0 -0
  1071. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/musl/mod.rs +0 -0
  1072. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/no_align.rs +0 -0
  1073. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/non_exhaustive.rs +0 -0
  1074. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/align.rs +0 -0
  1075. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/arm/align.rs +0 -0
  1076. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/arm/mod.rs +0 -0
  1077. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/arm/no_align.rs +0 -0
  1078. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mips/mips32/align.rs +0 -0
  1079. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mips/mips32/mod.rs +0 -0
  1080. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mips/mips32/no_align.rs +0 -0
  1081. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mips/mips64/align.rs +0 -0
  1082. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mips/mips64/mod.rs +0 -0
  1083. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mips/mips64/no_align.rs +0 -0
  1084. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mips/mod.rs +0 -0
  1085. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/mod.rs +0 -0
  1086. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/no_align.rs +0 -0
  1087. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/x86_64/l4re.rs +0 -0
  1088. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/x86_64/mod.rs +0 -0
  1089. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/linux_like/linux/uclibc/x86_64/other.rs +0 -0
  1090. data/ext/cargo-vendor/libc-0.2.139/src/unix/linux_like/mod.rs +1837 -0
  1091. data/ext/cargo-vendor/libc-0.2.139/src/unix/mod.rs +1606 -0
  1092. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/aarch64/mod.rs +0 -0
  1093. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/align.rs +0 -0
  1094. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/arm/mod.rs +0 -0
  1095. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/espidf/mod.rs +0 -0
  1096. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/generic.rs +0 -0
  1097. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/horizon/mod.rs +0 -0
  1098. data/ext/cargo-vendor/libc-0.2.139/src/unix/newlib/mod.rs +758 -0
  1099. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/no_align.rs +0 -0
  1100. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/newlib/powerpc/mod.rs +0 -0
  1101. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/no_align.rs +0 -0
  1102. data/ext/cargo-vendor/libc-0.2.139/src/unix/nto/aarch64.rs +36 -0
  1103. data/ext/cargo-vendor/libc-0.2.139/src/unix/nto/mod.rs +3286 -0
  1104. data/ext/cargo-vendor/libc-0.2.139/src/unix/nto/neutrino.rs +1288 -0
  1105. data/ext/cargo-vendor/libc-0.2.139/src/unix/nto/x86_64.rs +132 -0
  1106. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/redox/mod.rs +0 -0
  1107. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/solarish/compat.rs +0 -0
  1108. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/solarish/illumos.rs +0 -0
  1109. data/ext/cargo-vendor/libc-0.2.139/src/unix/solarish/mod.rs +3282 -0
  1110. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/solarish/solaris.rs +0 -0
  1111. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/solarish/x86.rs +0 -0
  1112. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/solarish/x86_64.rs +0 -0
  1113. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/unix/solarish/x86_common.rs +0 -0
  1114. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/vxworks/aarch64.rs +0 -0
  1115. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/vxworks/arm.rs +0 -0
  1116. data/ext/cargo-vendor/libc-0.2.139/src/vxworks/mod.rs +1930 -0
  1117. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/vxworks/powerpc.rs +0 -0
  1118. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/vxworks/powerpc64.rs +0 -0
  1119. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/vxworks/x86.rs +0 -0
  1120. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/vxworks/x86_64.rs +0 -0
  1121. data/ext/cargo-vendor/libc-0.2.139/src/wasi.rs +825 -0
  1122. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/windows/gnu/align.rs +0 -0
  1123. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/windows/gnu/mod.rs +0 -0
  1124. data/ext/cargo-vendor/libc-0.2.139/src/windows/mod.rs +596 -0
  1125. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/src/windows/msvc/mod.rs +0 -0
  1126. data/ext/cargo-vendor/{libc-0.2.138 → libc-0.2.139}/tests/const_fn.rs +0 -0
  1127. data/ext/cargo-vendor/linux-raw-sys-0.1.4/.cargo-checksum.json +1 -0
  1128. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/CODE_OF_CONDUCT.md +0 -0
  1129. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/COPYRIGHT +0 -0
  1130. data/ext/cargo-vendor/linux-raw-sys-0.1.4/Cargo.toml +76 -0
  1131. data/ext/cargo-vendor/{itoa-1.0.4 → linux-raw-sys-0.1.4}/LICENSE-APACHE +0 -0
  1132. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  1133. data/ext/cargo-vendor/{itoa-1.0.4 → linux-raw-sys-0.1.4}/LICENSE-MIT +0 -0
  1134. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/ORG_CODE_OF_CONDUCT.md +0 -0
  1135. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/README.md +0 -0
  1136. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/aarch64/errno.rs +0 -0
  1137. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/aarch64/general.rs +0 -0
  1138. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/aarch64/ioctl.rs +0 -0
  1139. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/aarch64/netlink.rs +0 -0
  1140. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/arm/errno.rs +0 -0
  1141. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/arm/general.rs +0 -0
  1142. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/arm/ioctl.rs +0 -0
  1143. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/arm/netlink.rs +0 -0
  1144. data/ext/cargo-vendor/linux-raw-sys-0.1.4/src/lib.rs +358 -0
  1145. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips/errno.rs +0 -0
  1146. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips/general.rs +0 -0
  1147. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips/ioctl.rs +0 -0
  1148. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips/netlink.rs +0 -0
  1149. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips64/errno.rs +0 -0
  1150. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips64/general.rs +0 -0
  1151. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips64/ioctl.rs +0 -0
  1152. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/mips64/netlink.rs +0 -0
  1153. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc/errno.rs +0 -0
  1154. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc/general.rs +0 -0
  1155. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc/ioctl.rs +0 -0
  1156. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc/netlink.rs +0 -0
  1157. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc64/errno.rs +0 -0
  1158. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc64/general.rs +0 -0
  1159. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc64/ioctl.rs +0 -0
  1160. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/powerpc64/netlink.rs +0 -0
  1161. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv32/errno.rs +0 -0
  1162. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv32/general.rs +0 -0
  1163. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv32/ioctl.rs +0 -0
  1164. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv32/netlink.rs +0 -0
  1165. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv64/errno.rs +0 -0
  1166. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv64/general.rs +0 -0
  1167. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv64/ioctl.rs +0 -0
  1168. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/riscv64/netlink.rs +0 -0
  1169. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/s390x/errno.rs +0 -0
  1170. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/s390x/general.rs +0 -0
  1171. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/s390x/ioctl.rs +0 -0
  1172. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/s390x/netlink.rs +0 -0
  1173. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc/errno.rs +0 -0
  1174. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc/general.rs +0 -0
  1175. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc/ioctl.rs +0 -0
  1176. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc/netlink.rs +0 -0
  1177. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc64/errno.rs +0 -0
  1178. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc64/general.rs +0 -0
  1179. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc64/ioctl.rs +0 -0
  1180. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/sparc64/netlink.rs +0 -0
  1181. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x32/errno.rs +0 -0
  1182. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x32/general.rs +0 -0
  1183. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x32/ioctl.rs +0 -0
  1184. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x32/netlink.rs +0 -0
  1185. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86/errno.rs +0 -0
  1186. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86/general.rs +0 -0
  1187. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86/ioctl.rs +0 -0
  1188. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86/netlink.rs +0 -0
  1189. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86_64/errno.rs +0 -0
  1190. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86_64/general.rs +0 -0
  1191. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86_64/ioctl.rs +0 -0
  1192. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → linux-raw-sys-0.1.4}/src/x86_64/netlink.rs +0 -0
  1193. data/ext/cargo-vendor/magnus-0.4.4/.cargo-checksum.json +1 -0
  1194. data/ext/cargo-vendor/magnus-0.4.4/CHANGELOG.md +233 -0
  1195. data/ext/cargo-vendor/magnus-0.4.4/Cargo.lock +263 -0
  1196. data/ext/cargo-vendor/magnus-0.4.4/Cargo.toml +60 -0
  1197. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/Gemfile +0 -0
  1198. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/LICENSE +0 -0
  1199. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/README.md +0 -0
  1200. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/build.rs +0 -0
  1201. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/custom_exception_ruby/Rakefile +0 -0
  1202. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/custom_exception_ruby/lib/ahriman/error.rb +0 -0
  1203. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/custom_exception_ruby/lib/ahriman.rb +0 -0
  1204. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/custom_exception_ruby/test/error_test.rb +0 -0
  1205. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/custom_exception_rust/Rakefile +0 -0
  1206. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/custom_exception_rust/lib/ahriman.rb +0 -0
  1207. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/custom_exception_rust/test/error_test.rb +0 -0
  1208. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/fibonacci.rs +0 -0
  1209. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/hello_world.rs +0 -0
  1210. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/mut_point.rs +0 -0
  1211. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/point.rs +0 -0
  1212. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/rust_blank/Rakefile +0 -0
  1213. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/rust_blank/lib/rust_blank.rb +0 -0
  1214. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/rust_blank/test/bench.rb +0 -0
  1215. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/examples/rust_blank/test/blank_test.rb +0 -0
  1216. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/binding.rs +0 -0
  1217. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/block.rs +0 -0
  1218. data/ext/cargo-vendor/magnus-0.4.4/src/class.rs +565 -0
  1219. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/embed.rs +0 -0
  1220. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/encoding.rs +0 -0
  1221. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/enumerator.rs +0 -0
  1222. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/error.rs +0 -0
  1223. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/exception.rs +0 -0
  1224. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/float.rs +0 -0
  1225. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/gc.rs +0 -0
  1226. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/integer.rs +0 -0
  1227. data/ext/cargo-vendor/magnus-0.4.4/src/lib.rs +2091 -0
  1228. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/method.rs +0 -0
  1229. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/module.rs +0 -0
  1230. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/object.rs +0 -0
  1231. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_array.rs +0 -0
  1232. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_bignum.rs +0 -0
  1233. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_complex.rs +0 -0
  1234. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_file.rs +0 -0
  1235. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_float.rs +0 -0
  1236. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_hash.rs +0 -0
  1237. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_match.rs +0 -0
  1238. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_object.rs +0 -0
  1239. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_rational.rs +0 -0
  1240. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_regexp.rs +0 -0
  1241. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_string.rs +0 -0
  1242. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/r_struct.rs +0 -0
  1243. data/ext/cargo-vendor/magnus-0.4.4/src/r_typed_data.rs +534 -0
  1244. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/range.rs +0 -0
  1245. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/rb_sys.rs +0 -0
  1246. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/scan_args.rs +0 -0
  1247. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/symbol.rs +0 -0
  1248. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/try_convert.rs +0 -0
  1249. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/value/flonum.rs +0 -0
  1250. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/src/value.rs +0 -0
  1251. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/test +0 -0
  1252. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/allocate_before_init.rs +0 -0
  1253. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/array_slice.rs +0 -0
  1254. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/block_call.rs +0 -0
  1255. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/call_proc.rs +0 -0
  1256. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/classname.rs +0 -0
  1257. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/codepoints.rs +0 -0
  1258. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/debug_exception.rs +0 -0
  1259. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/encoding_capable.rs +0 -0
  1260. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/enumerator.rs +0 -0
  1261. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/enumeratorize.rs +0 -0
  1262. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/float_convert_from_value.rs +0 -0
  1263. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/float_convert_to_value.rs +0 -0
  1264. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/fmt.rs +0 -0
  1265. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/freeze.rs +0 -0
  1266. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/hash.rs +0 -0
  1267. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/integer_convert_to_value.rs +0 -0
  1268. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/ivar.rs +0 -0
  1269. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/make_proc.rs +0 -0
  1270. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/proc_new.rs +0 -0
  1271. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/range.rs +0 -0
  1272. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/return_iter.rs +0 -0
  1273. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/scan_args.rs +0 -0
  1274. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/str.rs +0 -0
  1275. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/string.rs +0 -0
  1276. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/struct.rs +0 -0
  1277. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/symbol.rs +0 -0
  1278. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/tuple_to_array.rs +0 -0
  1279. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/typed_data.rs +0 -0
  1280. data/ext/cargo-vendor/{magnus-0.4.3 → magnus-0.4.4}/tests/yield.rs +0 -0
  1281. data/ext/cargo-vendor/magnus-macros-0.3.0/.cargo-checksum.json +1 -0
  1282. data/ext/cargo-vendor/magnus-macros-0.3.0/Cargo.toml +36 -0
  1283. data/ext/cargo-vendor/magnus-macros-0.3.0/LICENSE +21 -0
  1284. data/ext/cargo-vendor/{magnus-macros-0.2.0 → magnus-macros-0.3.0}/src/init.rs +0 -0
  1285. data/ext/cargo-vendor/{magnus-macros-0.2.0 → magnus-macros-0.3.0}/src/lib.rs +0 -0
  1286. data/ext/cargo-vendor/magnus-macros-0.3.0/src/typed_data.rs +151 -0
  1287. data/ext/cargo-vendor/{magnus-macros-0.2.0 → magnus-macros-0.3.0}/src/util.rs +0 -0
  1288. data/ext/cargo-vendor/nom-7.1.3/.cargo-checksum.json +1 -0
  1289. data/ext/cargo-vendor/nom-7.1.3/CHANGELOG.md +1551 -0
  1290. data/ext/cargo-vendor/nom-7.1.3/Cargo.lock +282 -0
  1291. data/ext/cargo-vendor/nom-7.1.3/Cargo.toml +168 -0
  1292. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/LICENSE +0 -0
  1293. data/ext/cargo-vendor/nom-7.1.3/README.md +331 -0
  1294. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/doc/nom_recipes.md +0 -0
  1295. data/ext/cargo-vendor/nom-7.1.3/src/bits/complete.rs +197 -0
  1296. data/ext/cargo-vendor/nom-7.1.3/src/bits/mod.rs +179 -0
  1297. data/ext/cargo-vendor/nom-7.1.3/src/bits/streaming.rs +170 -0
  1298. data/ext/cargo-vendor/nom-7.1.3/src/branch/mod.rs +267 -0
  1299. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/branch/tests.rs +0 -0
  1300. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/bytes/complete.rs +0 -0
  1301. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/bytes/mod.rs +0 -0
  1302. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/bytes/streaming.rs +0 -0
  1303. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/bytes/tests.rs +0 -0
  1304. data/ext/cargo-vendor/nom-7.1.3/src/character/complete.rs +1227 -0
  1305. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/character/mod.rs +0 -0
  1306. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/character/streaming.rs +0 -0
  1307. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/character/tests.rs +0 -0
  1308. data/ext/cargo-vendor/nom-7.1.3/src/combinator/mod.rs +809 -0
  1309. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/combinator/tests.rs +0 -0
  1310. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/error.rs +0 -0
  1311. data/ext/cargo-vendor/nom-7.1.3/src/internal.rs +489 -0
  1312. data/ext/cargo-vendor/nom-7.1.3/src/lib.rs +464 -0
  1313. data/ext/cargo-vendor/nom-7.1.3/src/macros.rs +23 -0
  1314. data/ext/cargo-vendor/nom-7.1.3/src/multi/mod.rs +1049 -0
  1315. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/multi/tests.rs +0 -0
  1316. data/ext/cargo-vendor/nom-7.1.3/src/number/complete.rs +2126 -0
  1317. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/number/mod.rs +0 -0
  1318. data/ext/cargo-vendor/nom-7.1.3/src/number/streaming.rs +2206 -0
  1319. data/ext/cargo-vendor/nom-7.1.3/src/sequence/mod.rs +279 -0
  1320. data/ext/cargo-vendor/nom-7.1.3/src/sequence/tests.rs +290 -0
  1321. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/src/str.rs +0 -0
  1322. data/ext/cargo-vendor/nom-7.1.3/src/traits.rs +1441 -0
  1323. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/arithmetic.rs +0 -0
  1324. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/arithmetic_ast.rs +0 -0
  1325. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/css.rs +0 -0
  1326. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/custom_errors.rs +0 -0
  1327. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/escaped.rs +0 -0
  1328. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/float.rs +0 -0
  1329. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/fnmut.rs +0 -0
  1330. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/ini.rs +0 -0
  1331. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/ini_str.rs +0 -0
  1332. data/ext/cargo-vendor/nom-7.1.3/tests/issues.rs +242 -0
  1333. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/json.rs +0 -0
  1334. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/mp4.rs +0 -0
  1335. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/multiline.rs +0 -0
  1336. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/overflow.rs +0 -0
  1337. data/ext/cargo-vendor/{nom-7.1.1 → nom-7.1.3}/tests/reborrow_fold.rs +0 -0
  1338. data/ext/cargo-vendor/num_cpus-1.15.0/.cargo-checksum.json +1 -0
  1339. data/ext/cargo-vendor/num_cpus-1.15.0/CHANGELOG.md +150 -0
  1340. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/CONTRIBUTING.md +0 -0
  1341. data/ext/cargo-vendor/num_cpus-1.15.0/Cargo.lock +26 -0
  1342. data/ext/cargo-vendor/num_cpus-1.15.0/Cargo.toml +32 -0
  1343. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → num_cpus-1.15.0}/LICENSE-APACHE +0 -0
  1344. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/LICENSE-MIT +0 -0
  1345. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/README.md +0 -0
  1346. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/ci/cgroups/Dockerfile +0 -0
  1347. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/examples/values.rs +0 -0
  1348. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/cgroups/ceil/cpu.cfs_period_us +0 -0
  1349. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/cgroups/ceil/cpu.cfs_quota_us +0 -0
  1350. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/cgroups/good/cpu.cfs_period_us +0 -0
  1351. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/cgroups/good/cpu.cfs_quota_us +0 -0
  1352. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/cgroups/zero-period/cpu.cfs_period_us +0 -0
  1353. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/cgroups/zero-period/cpu.cfs_quota_us +0 -0
  1354. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/proc/cgroups/cgroup +0 -0
  1355. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/proc/cgroups/mountinfo +0 -0
  1356. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/proc/cgroups/mountinfo_multi_opt +0 -0
  1357. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups/proc/cgroups/mountinfo_zero_opt +0 -0
  1358. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups2/cgroups/ceil/cpu.max +0 -0
  1359. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups2/cgroups/good/cpu.max +0 -0
  1360. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups2/cgroups/zero-period/cpu.max +0 -0
  1361. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups2/proc/cgroups/cgroup +0 -0
  1362. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups2/proc/cgroups/cgroup_multi +0 -0
  1363. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/fixtures/cgroups2/proc/cgroups/mountinfo +0 -0
  1364. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/src/lib.rs +0 -0
  1365. data/ext/cargo-vendor/{num_cpus-1.14.0 → num_cpus-1.15.0}/src/linux.rs +0 -0
  1366. data/ext/cargo-vendor/once_cell-1.17.0/.cargo-checksum.json +1 -0
  1367. data/ext/cargo-vendor/once_cell-1.17.0/CHANGELOG.md +212 -0
  1368. data/ext/cargo-vendor/once_cell-1.17.0/Cargo.lock +173 -0
  1369. data/ext/cargo-vendor/once_cell-1.17.0/Cargo.toml +109 -0
  1370. data/ext/cargo-vendor/{num_cpus-1.14.0 → once_cell-1.17.0}/LICENSE-APACHE +0 -0
  1371. data/ext/cargo-vendor/{linux-raw-sys-0.1.3 → once_cell-1.17.0}/LICENSE-MIT +0 -0
  1372. data/ext/cargo-vendor/once_cell-1.17.0/README.md +58 -0
  1373. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/bors.toml +0 -0
  1374. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/examples/bench.rs +0 -0
  1375. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/examples/bench_acquire.rs +0 -0
  1376. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/examples/bench_vs_lazy_static.rs +0 -0
  1377. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/examples/lazy_static.rs +0 -0
  1378. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/examples/reentrant_init_deadlocks.rs +0 -0
  1379. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/examples/regex.rs +0 -0
  1380. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/examples/test_synchronization.rs +0 -0
  1381. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/src/imp_cs.rs +0 -0
  1382. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/src/imp_pl.rs +0 -0
  1383. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/src/imp_std.rs +0 -0
  1384. data/ext/cargo-vendor/once_cell-1.17.0/src/lib.rs +1384 -0
  1385. data/ext/cargo-vendor/once_cell-1.17.0/src/race.rs +396 -0
  1386. data/ext/cargo-vendor/{once_cell-1.16.0 → once_cell-1.17.0}/tests/it.rs +0 -0
  1387. data/ext/cargo-vendor/paste-1.0.11/.cargo-checksum.json +1 -0
  1388. data/ext/cargo-vendor/paste-1.0.11/Cargo.toml +42 -0
  1389. data/ext/cargo-vendor/{once_cell-1.16.0 → paste-1.0.11}/LICENSE-APACHE +0 -0
  1390. data/ext/cargo-vendor/{once_cell-1.16.0 → paste-1.0.11}/LICENSE-MIT +0 -0
  1391. data/ext/cargo-vendor/paste-1.0.11/README.md +157 -0
  1392. data/ext/cargo-vendor/paste-1.0.11/build.rs +33 -0
  1393. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/src/attr.rs +0 -0
  1394. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/src/error.rs +0 -0
  1395. data/ext/cargo-vendor/paste-1.0.11/src/lib.rs +453 -0
  1396. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/src/segment.rs +0 -0
  1397. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/compiletest.rs +0 -0
  1398. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/test_attr.rs +0 -0
  1399. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/test_doc.rs +0 -0
  1400. data/ext/cargo-vendor/paste-1.0.11/tests/test_expr.rs +283 -0
  1401. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/test_item.rs +0 -0
  1402. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/case-warning.rs +0 -0
  1403. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/case-warning.stderr +0 -0
  1404. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-empty.rs +0 -0
  1405. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-empty.stderr +0 -0
  1406. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-non-string.rs +0 -0
  1407. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-non-string.stderr +0 -0
  1408. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-suffix.rs +0 -0
  1409. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-suffix.stderr +0 -0
  1410. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-unexpected.rs +0 -0
  1411. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/env-unexpected.stderr +0 -0
  1412. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/invalid-ident.rs +0 -0
  1413. data/ext/cargo-vendor/paste-1.0.11/tests/ui/invalid-ident.stderr +21 -0
  1414. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/missing-paren-on-env.rs +0 -0
  1415. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/missing-paren-on-env.stderr +0 -0
  1416. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/no-env-var.rs +0 -0
  1417. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/no-env-var.stderr +0 -0
  1418. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/no-ident-after-colon.rs +0 -0
  1419. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/no-ident-after-colon.stderr +0 -0
  1420. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unexpected-group.rs +0 -0
  1421. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unexpected-group.stderr +0 -0
  1422. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unexpected-modifier.rs +0 -0
  1423. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unexpected-modifier.stderr +0 -0
  1424. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unexpected-punct.rs +0 -0
  1425. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unexpected-punct.stderr +0 -0
  1426. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unsupported-literal.rs +0 -0
  1427. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unsupported-literal.stderr +0 -0
  1428. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unsupported-modifier.rs +0 -0
  1429. data/ext/cargo-vendor/{paste-1.0.9 → paste-1.0.11}/tests/ui/unsupported-modifier.stderr +0 -0
  1430. data/ext/cargo-vendor/pkg-config-0.3.26/.cargo-checksum.json +1 -0
  1431. data/ext/cargo-vendor/pkg-config-0.3.26/CHANGELOG.md +163 -0
  1432. data/ext/cargo-vendor/pkg-config-0.3.26/Cargo.toml +27 -0
  1433. data/ext/cargo-vendor/{paste-1.0.9 → pkg-config-0.3.26}/LICENSE-APACHE +0 -0
  1434. data/ext/cargo-vendor/{toml-0.5.9 → pkg-config-0.3.26}/LICENSE-MIT +0 -0
  1435. data/ext/cargo-vendor/pkg-config-0.3.26/README.md +79 -0
  1436. data/ext/cargo-vendor/pkg-config-0.3.26/src/lib.rs +972 -0
  1437. data/ext/cargo-vendor/pkg-config-0.3.26/tests/escape.pc +5 -0
  1438. data/ext/cargo-vendor/pkg-config-0.3.26/tests/foo.pc +16 -0
  1439. data/ext/cargo-vendor/pkg-config-0.3.26/tests/framework.pc +16 -0
  1440. data/ext/cargo-vendor/pkg-config-0.3.26/tests/rpath.pc +7 -0
  1441. data/ext/cargo-vendor/pkg-config-0.3.26/tests/test.rs +323 -0
  1442. data/ext/cargo-vendor/proc-macro2-1.0.50/.cargo-checksum.json +1 -0
  1443. data/ext/cargo-vendor/proc-macro2-1.0.50/Cargo.toml +63 -0
  1444. data/ext/cargo-vendor/proc-macro2-1.0.50/LICENSE-APACHE +176 -0
  1445. data/ext/cargo-vendor/{rustix-0.36.5 → proc-macro2-1.0.50}/LICENSE-MIT +0 -0
  1446. data/ext/cargo-vendor/proc-macro2-1.0.50/README.md +94 -0
  1447. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/build.rs +0 -0
  1448. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/src/detection.rs +0 -0
  1449. data/ext/cargo-vendor/proc-macro2-1.0.50/src/fallback.rs +998 -0
  1450. data/ext/cargo-vendor/proc-macro2-1.0.50/src/lib.rs +1312 -0
  1451. data/ext/cargo-vendor/proc-macro2-1.0.50/src/location.rs +29 -0
  1452. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/src/marker.rs +0 -0
  1453. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/src/parse.rs +0 -0
  1454. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/src/rcvec.rs +0 -0
  1455. data/ext/cargo-vendor/proc-macro2-1.0.50/src/wrapper.rs +984 -0
  1456. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/tests/comments.rs +0 -0
  1457. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/tests/features.rs +0 -0
  1458. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/tests/marker.rs +0 -0
  1459. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/tests/test.rs +0 -0
  1460. data/ext/cargo-vendor/{proc-macro2-1.0.47 → proc-macro2-1.0.50}/tests/test_fmt.rs +0 -0
  1461. data/ext/cargo-vendor/pulldown-cmark-0.8.0/.cargo-checksum.json +1 -0
  1462. data/ext/cargo-vendor/pulldown-cmark-0.8.0/CONTRIBUTING.md +21 -0
  1463. data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.lock +924 -0
  1464. data/ext/cargo-vendor/pulldown-cmark-0.8.0/Cargo.toml +68 -0
  1465. data/ext/cargo-vendor/pulldown-cmark-0.8.0/LICENSE +21 -0
  1466. data/ext/cargo-vendor/pulldown-cmark-0.8.0/README.md +152 -0
  1467. data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/html_rendering.rs +101 -0
  1468. data/ext/cargo-vendor/pulldown-cmark-0.8.0/benches/lib.rs +49 -0
  1469. data/ext/cargo-vendor/pulldown-cmark-0.8.0/build.rs +186 -0
  1470. data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/broken-link-callbacks.rs +37 -0
  1471. data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/event-filter.rs +29 -0
  1472. data/ext/cargo-vendor/pulldown-cmark-0.8.0/examples/string-to-string.rs +26 -0
  1473. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/entities.rs +2158 -0
  1474. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/escape.rs +356 -0
  1475. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/html.rs +461 -0
  1476. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/lib.rs +76 -0
  1477. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/linklabel.rs +135 -0
  1478. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/main.rs +109 -0
  1479. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/parse.rs +3374 -0
  1480. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/puncttable.rs +351 -0
  1481. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/scanners.rs +1308 -0
  1482. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/simd.rs +248 -0
  1483. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/strings.rs +243 -0
  1484. data/ext/cargo-vendor/pulldown-cmark-0.8.0/src/tree.rs +216 -0
  1485. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/errors.rs +44 -0
  1486. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/html.rs +252 -0
  1487. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/lib.rs +425 -0
  1488. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/footnotes.rs +165 -0
  1489. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_strikethrough.rs +27 -0
  1490. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_table.rs +205 -0
  1491. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/gfm_tasklist.rs +39 -0
  1492. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/mod.rs +13 -0
  1493. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/regression.rs +953 -0
  1494. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/smart_punct.rs +201 -0
  1495. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/spec.rs +8447 -0
  1496. data/ext/cargo-vendor/pulldown-cmark-0.8.0/tests/suite/table.rs +205 -0
  1497. data/ext/cargo-vendor/quote-1.0.23/.cargo-checksum.json +1 -0
  1498. data/ext/cargo-vendor/quote-1.0.23/Cargo.toml +49 -0
  1499. data/ext/cargo-vendor/{proc-macro2-1.0.47 → quote-1.0.23}/LICENSE-APACHE +0 -0
  1500. data/ext/cargo-vendor/{serde-1.0.149 → quote-1.0.23}/LICENSE-MIT +0 -0
  1501. data/ext/cargo-vendor/quote-1.0.23/README.md +261 -0
  1502. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/build.rs +0 -0
  1503. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/rust-toolchain.toml +0 -0
  1504. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/src/ext.rs +0 -0
  1505. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/src/format.rs +0 -0
  1506. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/src/ident_fragment.rs +0 -0
  1507. data/ext/cargo-vendor/quote-1.0.23/src/lib.rs +1434 -0
  1508. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/src/runtime.rs +0 -0
  1509. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/src/spanned.rs +0 -0
  1510. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/src/to_tokens.rs +0 -0
  1511. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/compiletest.rs +0 -0
  1512. data/ext/cargo-vendor/quote-1.0.23/tests/test.rs +519 -0
  1513. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter-interpolated-dup.rs +0 -0
  1514. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter-interpolated-dup.stderr +0 -0
  1515. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter-interpolated.rs +0 -0
  1516. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter-interpolated.stderr +0 -0
  1517. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter-separated.rs +0 -0
  1518. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter-separated.stderr +0 -0
  1519. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter.rs +0 -0
  1520. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/does-not-have-iter.stderr +0 -0
  1521. data/ext/cargo-vendor/quote-1.0.23/tests/ui/not-quotable.rs +7 -0
  1522. data/ext/cargo-vendor/quote-1.0.23/tests/ui/not-quotable.stderr +20 -0
  1523. data/ext/cargo-vendor/quote-1.0.23/tests/ui/not-repeatable.rs +8 -0
  1524. data/ext/cargo-vendor/quote-1.0.23/tests/ui/not-repeatable.stderr +35 -0
  1525. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/wrong-type-span.rs +0 -0
  1526. data/ext/cargo-vendor/{quote-1.0.21 → quote-1.0.23}/tests/ui/wrong-type-span.stderr +0 -0
  1527. data/ext/cargo-vendor/rayon-1.6.1/.cargo-checksum.json +1 -0
  1528. data/ext/cargo-vendor/rayon-1.6.1/Cargo.toml +55 -0
  1529. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/FAQ.md +0 -0
  1530. data/ext/cargo-vendor/{quote-1.0.21 → rayon-1.6.1}/LICENSE-APACHE +0 -0
  1531. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/LICENSE-MIT +0 -0
  1532. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/README.md +0 -0
  1533. data/ext/cargo-vendor/rayon-1.6.1/RELEASES.md +843 -0
  1534. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/array.rs +0 -0
  1535. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/binary_heap.rs +0 -0
  1536. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/btree_map.rs +0 -0
  1537. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/btree_set.rs +0 -0
  1538. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/hash_map.rs +0 -0
  1539. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/hash_set.rs +0 -0
  1540. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/linked_list.rs +0 -0
  1541. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/mod.rs +0 -0
  1542. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/collections/vec_deque.rs +0 -0
  1543. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/compile_fail/cannot_collect_filtermap_data.rs +0 -0
  1544. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/compile_fail/cannot_zip_filtered_data.rs +0 -0
  1545. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/compile_fail/cell_par_iter.rs +0 -0
  1546. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/compile_fail/mod.rs +0 -0
  1547. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/compile_fail/must_use.rs +0 -0
  1548. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/compile_fail/no_send_par_iter.rs +0 -0
  1549. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/compile_fail/rc_par_iter.rs +0 -0
  1550. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/delegate.rs +0 -0
  1551. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/chain.rs +0 -0
  1552. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/chunks.rs +0 -0
  1553. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/cloned.rs +0 -0
  1554. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/collect/consumer.rs +0 -0
  1555. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/collect/mod.rs +0 -0
  1556. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/collect/test.rs +0 -0
  1557. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/copied.rs +0 -0
  1558. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/empty.rs +0 -0
  1559. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/enumerate.rs +0 -0
  1560. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/extend.rs +0 -0
  1561. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/filter.rs +0 -0
  1562. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/filter_map.rs +0 -0
  1563. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/find.rs +0 -0
  1564. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/find_first_last/mod.rs +0 -0
  1565. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/find_first_last/test.rs +0 -0
  1566. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/flat_map.rs +0 -0
  1567. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/flat_map_iter.rs +0 -0
  1568. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/flatten.rs +0 -0
  1569. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/flatten_iter.rs +0 -0
  1570. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/fold.rs +0 -0
  1571. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/fold_chunks.rs +0 -0
  1572. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/fold_chunks_with.rs +0 -0
  1573. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/for_each.rs +0 -0
  1574. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/from_par_iter.rs +0 -0
  1575. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/inspect.rs +0 -0
  1576. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/interleave.rs +0 -0
  1577. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/interleave_shortest.rs +0 -0
  1578. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/intersperse.rs +0 -0
  1579. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/len.rs +0 -0
  1580. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/map.rs +0 -0
  1581. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/map_with.rs +0 -0
  1582. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/mod.rs +0 -0
  1583. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/multizip.rs +0 -0
  1584. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/noop.rs +0 -0
  1585. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/once.rs +0 -0
  1586. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/panic_fuse.rs +0 -0
  1587. data/ext/cargo-vendor/rayon-1.6.1/src/iter/par_bridge.rs +162 -0
  1588. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/plumbing/README.md +0 -0
  1589. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/plumbing/mod.rs +0 -0
  1590. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/positions.rs +0 -0
  1591. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/product.rs +0 -0
  1592. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/reduce.rs +0 -0
  1593. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/repeat.rs +0 -0
  1594. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/rev.rs +0 -0
  1595. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/skip.rs +0 -0
  1596. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/splitter.rs +0 -0
  1597. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/step_by.rs +0 -0
  1598. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/sum.rs +0 -0
  1599. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/take.rs +0 -0
  1600. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/test.rs +0 -0
  1601. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/try_fold.rs +0 -0
  1602. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/try_reduce.rs +0 -0
  1603. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/try_reduce_with.rs +0 -0
  1604. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/unzip.rs +0 -0
  1605. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/update.rs +0 -0
  1606. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/while_some.rs +0 -0
  1607. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/zip.rs +0 -0
  1608. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/iter/zip_eq.rs +0 -0
  1609. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/lib.rs +0 -0
  1610. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/math.rs +0 -0
  1611. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/option.rs +0 -0
  1612. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/par_either.rs +0 -0
  1613. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/prelude.rs +0 -0
  1614. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/private.rs +0 -0
  1615. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/range.rs +0 -0
  1616. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/range_inclusive.rs +0 -0
  1617. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/result.rs +0 -0
  1618. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/slice/chunks.rs +0 -0
  1619. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/slice/mergesort.rs +0 -0
  1620. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/slice/mod.rs +0 -0
  1621. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/slice/quicksort.rs +0 -0
  1622. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/slice/rchunks.rs +0 -0
  1623. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/slice/test.rs +0 -0
  1624. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/split_producer.rs +0 -0
  1625. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/str.rs +0 -0
  1626. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/string.rs +0 -0
  1627. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/src/vec.rs +0 -0
  1628. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/chars.rs +0 -0
  1629. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/clones.rs +0 -0
  1630. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/collect.rs +0 -0
  1631. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/cross-pool.rs +0 -0
  1632. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/debug.rs +0 -0
  1633. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/drain_vec.rs +0 -0
  1634. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/intersperse.rs +0 -0
  1635. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/issue671-unzip.rs +0 -0
  1636. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/issue671.rs +0 -0
  1637. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/iter_panic.rs +0 -0
  1638. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/named-threads.rs +0 -0
  1639. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/octillion.rs +0 -0
  1640. data/ext/cargo-vendor/rayon-1.6.1/tests/par_bridge_recursion.rs +30 -0
  1641. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/producer_split_at.rs +0 -0
  1642. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/sort-panic-safe.rs +0 -0
  1643. data/ext/cargo-vendor/{rayon-1.6.0 → rayon-1.6.1}/tests/str.rs +0 -0
  1644. data/ext/cargo-vendor/rb-sys-0.9.57/.cargo-checksum.json +1 -0
  1645. data/ext/cargo-vendor/rb-sys-0.9.57/Cargo.toml +42 -0
  1646. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/LICENSE-APACHE +0 -0
  1647. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/LICENSE-MIT +0 -0
  1648. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/bin/release.sh +0 -0
  1649. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/build/features.rs +0 -0
  1650. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/build/main.rs +0 -0
  1651. data/ext/cargo-vendor/rb-sys-0.9.57/build/ruby_macros.rs +14 -0
  1652. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/build/version.rs +0 -0
  1653. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/readme.md +0 -0
  1654. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/src/allocator.rs +0 -0
  1655. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/src/bindings.rs +0 -0
  1656. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/src/lib.rs +0 -0
  1657. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/src/macros/mod.rs +0 -0
  1658. data/ext/cargo-vendor/rb-sys-0.9.57/src/macros/ruby_macros.c +35 -0
  1659. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/src/ruby_abi_version.rs +0 -0
  1660. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/src/special_consts.rs +0 -0
  1661. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/src/value_type.rs +0 -0
  1662. data/ext/cargo-vendor/{rb-sys-0.9.52 → rb-sys-0.9.57}/wrapper.h +0 -0
  1663. data/ext/cargo-vendor/rb-sys-build-0.9.57/.cargo-checksum.json +1 -0
  1664. data/ext/cargo-vendor/rb-sys-build-0.9.57/Cargo.toml +47 -0
  1665. data/ext/cargo-vendor/{rb-sys-build-0.9.52 → rb-sys-build-0.9.57}/LICENSE-APACHE +0 -0
  1666. data/ext/cargo-vendor/{rb-sys-build-0.9.52 → rb-sys-build-0.9.57}/LICENSE-MIT +0 -0
  1667. data/ext/cargo-vendor/rb-sys-build-0.9.57/src/bindings.rs +254 -0
  1668. data/ext/cargo-vendor/rb-sys-build-0.9.57/src/cc.rs +35 -0
  1669. data/ext/cargo-vendor/rb-sys-build-0.9.57/src/lib.rs +14 -0
  1670. data/ext/cargo-vendor/{rb-sys-build-0.9.52 → rb-sys-build-0.9.57}/src/rb_config/flags.rs +0 -0
  1671. data/ext/cargo-vendor/{rb-sys-build-0.9.52 → rb-sys-build-0.9.57}/src/rb_config/library.rs +0 -0
  1672. data/ext/cargo-vendor/{rb-sys-build-0.9.52 → rb-sys-build-0.9.57}/src/rb_config/search_path.rs +0 -0
  1673. data/ext/cargo-vendor/rb-sys-build-0.9.57/src/rb_config.rs +758 -0
  1674. data/ext/cargo-vendor/rb-sys-build-0.9.57/src/utils.rs +42 -0
  1675. data/ext/cargo-vendor/rb-sys-env-0.1.2/.cargo-checksum.json +1 -0
  1676. data/ext/cargo-vendor/rb-sys-env-0.1.2/Cargo.toml +25 -0
  1677. data/ext/cargo-vendor/rb-sys-env-0.1.2/LICENSE-APACHE +190 -0
  1678. data/ext/cargo-vendor/rb-sys-env-0.1.2/LICENSE-MIT +21 -0
  1679. data/ext/cargo-vendor/{rb-sys-env-0.1.1 → rb-sys-env-0.1.2}/readme.md +0 -0
  1680. data/ext/cargo-vendor/{rb-sys-env-0.1.1 → rb-sys-env-0.1.2}/src/defines.rs +0 -0
  1681. data/ext/cargo-vendor/rb-sys-env-0.1.2/src/lib.rs +180 -0
  1682. data/ext/cargo-vendor/{rb-sys-env-0.1.1 → rb-sys-env-0.1.2}/src/rb_env.rs +0 -0
  1683. data/ext/cargo-vendor/rb-sys-env-0.1.2/src/ruby_version.rs +163 -0
  1684. data/ext/cargo-vendor/{rb-sys-env-0.1.1 → rb-sys-env-0.1.2}/src/utils.rs +0 -0
  1685. data/ext/cargo-vendor/regex-1.7.1/.cargo-checksum.json +1 -0
  1686. data/ext/cargo-vendor/regex-1.7.1/CHANGELOG.md +1095 -0
  1687. data/ext/cargo-vendor/regex-1.7.1/Cargo.lock +98 -0
  1688. data/ext/cargo-vendor/regex-1.7.1/Cargo.toml +149 -0
  1689. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/HACKING.md +0 -0
  1690. data/ext/cargo-vendor/{rayon-1.6.0 → regex-1.7.1}/LICENSE-APACHE +0 -0
  1691. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/LICENSE-MIT +0 -0
  1692. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/PERFORMANCE.md +0 -0
  1693. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/README.md +0 -0
  1694. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/UNICODE.md +0 -0
  1695. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/regexdna-input.txt +0 -0
  1696. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/regexdna-output.txt +0 -0
  1697. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/shootout-regex-dna-bytes.rs +0 -0
  1698. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/shootout-regex-dna-cheat.rs +0 -0
  1699. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/shootout-regex-dna-replace.rs +0 -0
  1700. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/shootout-regex-dna-single-cheat.rs +0 -0
  1701. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/shootout-regex-dna-single.rs +0 -0
  1702. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/examples/shootout-regex-dna.rs +0 -0
  1703. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/rustfmt.toml +0 -0
  1704. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/backtrack.rs +0 -0
  1705. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/compile.rs +0 -0
  1706. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/dfa.rs +0 -0
  1707. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/error.rs +0 -0
  1708. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/exec.rs +0 -0
  1709. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/expand.rs +0 -0
  1710. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/find_byte.rs +0 -0
  1711. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/freqs.rs +0 -0
  1712. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/input.rs +0 -0
  1713. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/lib.rs +0 -0
  1714. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/literal/imp.rs +0 -0
  1715. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/literal/mod.rs +0 -0
  1716. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/pattern.rs +0 -0
  1717. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/pikevm.rs +0 -0
  1718. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/pool.rs +0 -0
  1719. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/prog.rs +0 -0
  1720. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/re_builder.rs +0 -0
  1721. data/ext/cargo-vendor/regex-1.7.1/src/re_bytes.rs +1260 -0
  1722. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/re_set.rs +0 -0
  1723. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/re_trait.rs +0 -0
  1724. data/ext/cargo-vendor/regex-1.7.1/src/re_unicode.rs +1311 -0
  1725. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/sparse.rs +0 -0
  1726. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/testdata/LICENSE +0 -0
  1727. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/testdata/README +0 -0
  1728. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/testdata/basic.dat +0 -0
  1729. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/testdata/nullsubexpr.dat +0 -0
  1730. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/testdata/repetition.dat +0 -0
  1731. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/src/utf8.rs +0 -0
  1732. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/test +0 -0
  1733. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/api.rs +0 -0
  1734. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/api_str.rs +0 -0
  1735. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/bytes.rs +0 -0
  1736. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/consistent.rs +0 -0
  1737. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/crates_regex.rs +0 -0
  1738. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/crazy.rs +0 -0
  1739. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/flags.rs +0 -0
  1740. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/fowler.rs +0 -0
  1741. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/macros.rs +0 -0
  1742. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/macros_bytes.rs +0 -0
  1743. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/macros_str.rs +0 -0
  1744. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/misc.rs +0 -0
  1745. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/multiline.rs +0 -0
  1746. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/noparse.rs +0 -0
  1747. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/regression.rs +0 -0
  1748. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/regression_fuzz.rs +0 -0
  1749. data/ext/cargo-vendor/regex-1.7.1/tests/replace.rs +248 -0
  1750. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/searcher.rs +0 -0
  1751. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/set.rs +0 -0
  1752. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/shortest_match.rs +0 -0
  1753. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/suffix_reverse.rs +0 -0
  1754. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_backtrack.rs +0 -0
  1755. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_backtrack_bytes.rs +0 -0
  1756. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_backtrack_utf8bytes.rs +0 -0
  1757. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_crates_regex.rs +0 -0
  1758. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_default.rs +0 -0
  1759. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_default_bytes.rs +0 -0
  1760. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_nfa.rs +0 -0
  1761. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_nfa_bytes.rs +0 -0
  1762. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/test_nfa_utf8bytes.rs +0 -0
  1763. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/unicode.rs +0 -0
  1764. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/word_boundary.rs +0 -0
  1765. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/word_boundary_ascii.rs +0 -0
  1766. data/ext/cargo-vendor/{regex-1.7.0 → regex-1.7.1}/tests/word_boundary_unicode.rs +0 -0
  1767. data/ext/cargo-vendor/rustix-0.36.7/.cargo-checksum.json +1 -0
  1768. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/CODE_OF_CONDUCT.md +0 -0
  1769. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/CONTRIBUTING.md +0 -0
  1770. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/COPYRIGHT +0 -0
  1771. data/ext/cargo-vendor/rustix-0.36.7/Cargo.toml +236 -0
  1772. data/ext/cargo-vendor/{regex-1.7.0 → rustix-0.36.7}/LICENSE-APACHE +0 -0
  1773. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  1774. data/ext/cargo-vendor/{serde_derive-1.0.149 → rustix-0.36.7}/LICENSE-MIT +0 -0
  1775. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/ORG_CODE_OF_CONDUCT.md +0 -0
  1776. data/ext/cargo-vendor/rustix-0.36.7/README.md +159 -0
  1777. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/SECURITY.md +0 -0
  1778. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/benches/mod.rs +0 -0
  1779. data/ext/cargo-vendor/rustix-0.36.7/build.rs +225 -0
  1780. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/conv.rs +0 -0
  1781. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/fs/dir.rs +0 -0
  1782. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/fs/makedev.rs +0 -0
  1783. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/fs/mod.rs +0 -0
  1784. data/ext/cargo-vendor/rustix-0.36.7/src/backend/libc/fs/syscalls.rs +1807 -0
  1785. data/ext/cargo-vendor/rustix-0.36.7/src/backend/libc/fs/types.rs +1196 -0
  1786. data/ext/cargo-vendor/rustix-0.36.7/src/backend/libc/io/epoll.rs +422 -0
  1787. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io/errno.rs +0 -0
  1788. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io/io_slice.rs +0 -0
  1789. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io/mod.rs +0 -0
  1790. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io/poll_fd.rs +0 -0
  1791. data/ext/cargo-vendor/rustix-0.36.7/src/backend/libc/io/syscalls.rs +555 -0
  1792. data/ext/cargo-vendor/rustix-0.36.7/src/backend/libc/io/types.rs +159 -0
  1793. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io/windows_syscalls.rs +0 -0
  1794. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io_lifetimes.rs +0 -0
  1795. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io_uring/mod.rs +0 -0
  1796. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/io_uring/syscalls.rs +0 -0
  1797. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/mm/mod.rs +0 -0
  1798. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/mm/syscalls.rs +0 -0
  1799. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/mm/types.rs +0 -0
  1800. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/mod.rs +0 -0
  1801. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/net/addr.rs +0 -0
  1802. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/net/ext.rs +0 -0
  1803. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/net/mod.rs +0 -0
  1804. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/net/read_sockaddr.rs +0 -0
  1805. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/net/send_recv.rs +0 -0
  1806. data/ext/cargo-vendor/rustix-0.36.7/src/backend/libc/net/syscalls.rs +887 -0
  1807. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/net/types.rs +0 -0
  1808. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/net/write_sockaddr.rs +0 -0
  1809. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/offset.rs +0 -0
  1810. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/param/auxv.rs +0 -0
  1811. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/param/mod.rs +0 -0
  1812. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/process/cpu_set.rs +0 -0
  1813. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/process/mod.rs +0 -0
  1814. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/process/syscalls.rs +0 -0
  1815. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/process/types.rs +0 -0
  1816. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/process/wait.rs +0 -0
  1817. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/rand/mod.rs +0 -0
  1818. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/rand/syscalls.rs +0 -0
  1819. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/rand/types.rs +0 -0
  1820. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/termios/mod.rs +0 -0
  1821. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/termios/syscalls.rs +0 -0
  1822. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/termios/types.rs +0 -0
  1823. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/thread/mod.rs +0 -0
  1824. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/thread/syscalls.rs +0 -0
  1825. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/time/mod.rs +0 -0
  1826. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/time/syscalls.rs +0 -0
  1827. data/ext/cargo-vendor/rustix-0.36.7/src/backend/libc/time/types.rs +364 -0
  1828. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/weak.rs +0 -0
  1829. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/libc/winsock_c.rs +0 -0
  1830. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/aarch64.rs +0 -0
  1831. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/arm.rs +0 -0
  1832. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/mips.rs +0 -0
  1833. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/mips64.rs +0 -0
  1834. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/mod.rs +0 -0
  1835. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/powerpc64.rs +0 -0
  1836. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/riscv64.rs +0 -0
  1837. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/thumb.rs +0 -0
  1838. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/x86.rs +0 -0
  1839. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/inline/x86_64.rs +0 -0
  1840. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/mod.rs +0 -0
  1841. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/aarch64.s +0 -0
  1842. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/arm.s +0 -0
  1843. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_aarch64.a +0 -0
  1844. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_arm.a +0 -0
  1845. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_mips.a +0 -0
  1846. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_mips64.a +0 -0
  1847. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_powerpc64.a +0 -0
  1848. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_riscv64.a +0 -0
  1849. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_x86.a +0 -0
  1850. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/debug/librustix_outline_x86_64.a +0 -0
  1851. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/mips.s +0 -0
  1852. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/mips64.s +0 -0
  1853. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/mod.rs +0 -0
  1854. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/nr_last.rs +0 -0
  1855. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/powerpc64.s +0 -0
  1856. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_aarch64.a +0 -0
  1857. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_arm.a +0 -0
  1858. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_mips.a +0 -0
  1859. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_mips64.a +0 -0
  1860. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_powerpc64.a +0 -0
  1861. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_riscv64.a +0 -0
  1862. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_x86.a +0 -0
  1863. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/release/librustix_outline_x86_64.a +0 -0
  1864. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/riscv64.s +0 -0
  1865. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/x86.rs +0 -0
  1866. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/x86.s +0 -0
  1867. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/arch/outline/x86_64.s +0 -0
  1868. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/c.rs +0 -0
  1869. data/ext/cargo-vendor/rustix-0.36.7/src/backend/linux_raw/conv.rs +799 -0
  1870. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/elf.rs +0 -0
  1871. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/fs/dir.rs +0 -0
  1872. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/fs/makedev.rs +0 -0
  1873. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/fs/mod.rs +0 -0
  1874. data/ext/cargo-vendor/rustix-0.36.7/src/backend/linux_raw/fs/syscalls.rs +1415 -0
  1875. data/ext/cargo-vendor/rustix-0.36.7/src/backend/linux_raw/fs/types.rs +729 -0
  1876. data/ext/cargo-vendor/rustix-0.36.7/src/backend/linux_raw/io/epoll.rs +404 -0
  1877. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io/errno.rs +0 -0
  1878. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io/io_slice.rs +0 -0
  1879. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io/mod.rs +0 -0
  1880. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io/poll_fd.rs +0 -0
  1881. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io/syscalls.rs +0 -0
  1882. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io/types.rs +0 -0
  1883. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io_uring/mod.rs +0 -0
  1884. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/io_uring/syscalls.rs +0 -0
  1885. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/mm/mod.rs +0 -0
  1886. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/mm/syscalls.rs +0 -0
  1887. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/mm/types.rs +0 -0
  1888. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/mod.rs +0 -0
  1889. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/net/addr.rs +0 -0
  1890. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/net/mod.rs +0 -0
  1891. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/net/read_sockaddr.rs +0 -0
  1892. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/net/send_recv.rs +0 -0
  1893. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/net/syscalls.rs +0 -0
  1894. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/net/types.rs +0 -0
  1895. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/net/write_sockaddr.rs +0 -0
  1896. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/param/auxv.rs +0 -0
  1897. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/param/libc_auxv.rs +0 -0
  1898. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/param/mod.rs +0 -0
  1899. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/param/mustang_auxv.rs +0 -0
  1900. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/process/cpu_set.rs +0 -0
  1901. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/process/mod.rs +0 -0
  1902. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/process/syscalls.rs +0 -0
  1903. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/process/types.rs +0 -0
  1904. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/process/wait.rs +0 -0
  1905. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/rand/mod.rs +0 -0
  1906. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/rand/syscalls.rs +0 -0
  1907. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/rand/types.rs +0 -0
  1908. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/reg.rs +0 -0
  1909. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/runtime/mod.rs +0 -0
  1910. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/runtime/syscalls.rs +0 -0
  1911. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/runtime/tls.rs +0 -0
  1912. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/termios/mod.rs +0 -0
  1913. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/termios/syscalls.rs +0 -0
  1914. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/termios/types.rs +0 -0
  1915. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/thread/futex.rs +0 -0
  1916. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/thread/mod.rs +0 -0
  1917. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/thread/syscalls.rs +0 -0
  1918. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/time/mod.rs +0 -0
  1919. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/time/syscalls.rs +0 -0
  1920. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/time/types.rs +0 -0
  1921. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/vdso.rs +0 -0
  1922. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/backend/linux_raw/vdso_wrappers.rs +0 -0
  1923. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/const_assert.rs +0 -0
  1924. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/cstr.rs +0 -0
  1925. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/ffi/mod.rs +0 -0
  1926. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/abs.rs +0 -0
  1927. data/ext/cargo-vendor/rustix-0.36.7/src/fs/at.rs +388 -0
  1928. data/ext/cargo-vendor/rustix-0.36.7/src/fs/constants.rs +20 -0
  1929. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/copy_file_range.rs +0 -0
  1930. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/cwd.rs +0 -0
  1931. data/ext/cargo-vendor/rustix-0.36.7/src/fs/dir.rs +5 -0
  1932. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/fadvise.rs +0 -0
  1933. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/fcntl.rs +0 -0
  1934. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/fcntl_darwin.rs +0 -0
  1935. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/fcopyfile.rs +0 -0
  1936. data/ext/cargo-vendor/rustix-0.36.7/src/fs/fd.rs +350 -0
  1937. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/file_type.rs +0 -0
  1938. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/getpath.rs +0 -0
  1939. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/makedev.rs +0 -0
  1940. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/memfd_create.rs +0 -0
  1941. data/ext/cargo-vendor/rustix-0.36.7/src/fs/mod.rs +221 -0
  1942. data/ext/cargo-vendor/rustix-0.36.7/src/fs/mount.rs +150 -0
  1943. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/openat2.rs +0 -0
  1944. data/ext/cargo-vendor/rustix-0.36.7/src/fs/raw_dir.rs +204 -0
  1945. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/sendfile.rs +0 -0
  1946. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/fs/statx.rs +0 -0
  1947. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/close.rs +0 -0
  1948. data/ext/cargo-vendor/rustix-0.36.7/src/io/context.rs +163 -0
  1949. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/dup.rs +0 -0
  1950. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/errno.rs +0 -0
  1951. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/eventfd.rs +0 -0
  1952. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/fcntl.rs +0 -0
  1953. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/fd/mod.rs +0 -0
  1954. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/fd/owned.rs +0 -0
  1955. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/fd/raw.rs +0 -0
  1956. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/ioctl.rs +0 -0
  1957. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/is_read_write.rs +0 -0
  1958. data/ext/cargo-vendor/rustix-0.36.7/src/io/mod.rs +99 -0
  1959. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/pipe.rs +0 -0
  1960. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/poll.rs +0 -0
  1961. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/procfs.rs +0 -0
  1962. data/ext/cargo-vendor/rustix-0.36.7/src/io/read_write.rs +178 -0
  1963. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/seek_from.rs +0 -0
  1964. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io/stdio.rs +0 -0
  1965. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/io_uring.rs +0 -0
  1966. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/lib.rs +0 -0
  1967. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/mm/madvise.rs +0 -0
  1968. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/mm/mmap.rs +0 -0
  1969. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/mm/mod.rs +0 -0
  1970. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/mm/msync.rs +0 -0
  1971. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/mm/userfaultfd.rs +0 -0
  1972. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/net/addr.rs +0 -0
  1973. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/net/ip.rs +0 -0
  1974. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/net/mod.rs +0 -0
  1975. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/net/send_recv.rs +0 -0
  1976. data/ext/cargo-vendor/rustix-0.36.7/src/net/socket.rs +441 -0
  1977. data/ext/cargo-vendor/rustix-0.36.7/src/net/socket_addr_any.rs +103 -0
  1978. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/net/socketpair.rs +0 -0
  1979. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/net/sockopt.rs +0 -0
  1980. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/net/wsa.rs +0 -0
  1981. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/param/auxv.rs +0 -0
  1982. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/param/init.rs +0 -0
  1983. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/param/mod.rs +0 -0
  1984. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/path/arg.rs +0 -0
  1985. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/path/dec_int.rs +0 -0
  1986. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/path/mod.rs +0 -0
  1987. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/chdir.rs +0 -0
  1988. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/exit.rs +0 -0
  1989. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/id.rs +0 -0
  1990. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/kill.rs +0 -0
  1991. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/membarrier.rs +0 -0
  1992. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/mod.rs +0 -0
  1993. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/prctl.rs +0 -0
  1994. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/priority.rs +0 -0
  1995. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/procctl.rs +0 -0
  1996. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/rlimit.rs +0 -0
  1997. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/sched.rs +0 -0
  1998. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/sched_yield.rs +0 -0
  1999. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/uname.rs +0 -0
  2000. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/process/wait.rs +0 -0
  2001. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/rand/getrandom.rs +0 -0
  2002. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/rand/mod.rs +0 -0
  2003. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/runtime.rs +0 -0
  2004. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/termios/cf.rs +0 -0
  2005. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/termios/constants.rs +0 -0
  2006. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/termios/mod.rs +0 -0
  2007. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/termios/tc.rs +0 -0
  2008. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/termios/tty.rs +0 -0
  2009. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/thread/clock.rs +0 -0
  2010. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/thread/futex.rs +0 -0
  2011. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/thread/id.rs +0 -0
  2012. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/thread/mod.rs +0 -0
  2013. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/thread/prctl.rs +0 -0
  2014. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/thread/setns.rs +0 -0
  2015. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/time/clock.rs +0 -0
  2016. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/time/mod.rs +0 -0
  2017. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/time/timerfd.rs +0 -0
  2018. data/ext/cargo-vendor/{rustix-0.36.5 → rustix-0.36.7}/src/utils.rs +0 -0
  2019. data/ext/cargo-vendor/serde-1.0.152/.cargo-checksum.json +1 -0
  2020. data/ext/cargo-vendor/serde-1.0.152/Cargo.toml +70 -0
  2021. data/ext/cargo-vendor/{rustix-0.36.5 → serde-1.0.152}/LICENSE-APACHE +0 -0
  2022. data/ext/cargo-vendor/{syn-1.0.105 → serde-1.0.152}/LICENSE-MIT +0 -0
  2023. data/ext/cargo-vendor/serde-1.0.152/README.md +114 -0
  2024. data/ext/cargo-vendor/serde-1.0.152/build.rs +146 -0
  2025. data/ext/cargo-vendor/serde-1.0.152/crates-io.md +65 -0
  2026. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/de/format.rs +0 -0
  2027. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/de/ignored_any.rs +0 -0
  2028. data/ext/cargo-vendor/serde-1.0.152/src/de/impls.rs +2733 -0
  2029. data/ext/cargo-vendor/serde-1.0.152/src/de/mod.rs +2299 -0
  2030. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/de/seed.rs +0 -0
  2031. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/de/utf8.rs +0 -0
  2032. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/de/value.rs +0 -0
  2033. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/integer128.rs +0 -0
  2034. data/ext/cargo-vendor/serde-1.0.152/src/lib.rs +334 -0
  2035. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/macros.rs +0 -0
  2036. data/ext/cargo-vendor/serde-1.0.152/src/private/de.rs +2995 -0
  2037. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/private/doc.rs +0 -0
  2038. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/private/mod.rs +0 -0
  2039. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/private/ser.rs +0 -0
  2040. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/private/size_hint.rs +0 -0
  2041. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/ser/fmt.rs +0 -0
  2042. data/ext/cargo-vendor/serde-1.0.152/src/ser/impls.rs +983 -0
  2043. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/ser/impossible.rs +0 -0
  2044. data/ext/cargo-vendor/serde-1.0.152/src/ser/mod.rs +1988 -0
  2045. data/ext/cargo-vendor/{serde-1.0.149 → serde-1.0.152}/src/std_error.rs +0 -0
  2046. data/ext/cargo-vendor/serde_derive-1.0.152/.cargo-checksum.json +1 -0
  2047. data/ext/cargo-vendor/serde_derive-1.0.152/Cargo.toml +63 -0
  2048. data/ext/cargo-vendor/{serde-1.0.149 → serde_derive-1.0.152}/LICENSE-APACHE +0 -0
  2049. data/ext/cargo-vendor/{system-interface-0.25.0 → serde_derive-1.0.152}/LICENSE-MIT +0 -0
  2050. data/ext/cargo-vendor/serde_derive-1.0.152/README.md +114 -0
  2051. data/ext/cargo-vendor/serde_derive-1.0.152/build.rs +38 -0
  2052. data/ext/cargo-vendor/serde_derive-1.0.152/crates-io.md +65 -0
  2053. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/bound.rs +0 -0
  2054. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/de.rs +0 -0
  2055. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/dummy.rs +0 -0
  2056. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/fragment.rs +0 -0
  2057. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/ast.rs +0 -0
  2058. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/attr.rs +0 -0
  2059. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/case.rs +0 -0
  2060. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/check.rs +0 -0
  2061. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/ctxt.rs +0 -0
  2062. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/mod.rs +0 -0
  2063. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/receiver.rs +0 -0
  2064. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/respan.rs +0 -0
  2065. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/internals/symbol.rs +0 -0
  2066. data/ext/cargo-vendor/serde_derive-1.0.152/src/lib.rs +109 -0
  2067. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/pretend.rs +0 -0
  2068. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/ser.rs +0 -0
  2069. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/this.rs +0 -0
  2070. data/ext/cargo-vendor/{serde_derive-1.0.149 → serde_derive-1.0.152}/src/try.rs +0 -0
  2071. data/ext/cargo-vendor/syn-1.0.107/.cargo-checksum.json +1 -0
  2072. data/ext/cargo-vendor/syn-1.0.107/Cargo.toml +147 -0
  2073. data/ext/cargo-vendor/{serde_derive-1.0.149 → syn-1.0.107}/LICENSE-APACHE +0 -0
  2074. data/ext/cargo-vendor/{thiserror-1.0.37 → syn-1.0.107}/LICENSE-MIT +0 -0
  2075. data/ext/cargo-vendor/syn-1.0.107/README.md +285 -0
  2076. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/benches/file.rs +0 -0
  2077. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/benches/rust.rs +0 -0
  2078. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/build.rs +0 -0
  2079. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/attr.rs +0 -0
  2080. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/await.rs +0 -0
  2081. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/bigint.rs +0 -0
  2082. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/buffer.rs +0 -0
  2083. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/custom_keyword.rs +0 -0
  2084. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/custom_punctuation.rs +0 -0
  2085. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/data.rs +0 -0
  2086. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/derive.rs +0 -0
  2087. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/discouraged.rs +0 -0
  2088. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/drops.rs +0 -0
  2089. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/error.rs +0 -0
  2090. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/export.rs +0 -0
  2091. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/expr.rs +0 -0
  2092. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/ext.rs +0 -0
  2093. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/file.rs +0 -0
  2094. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen/clone.rs +0 -0
  2095. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen/debug.rs +0 -0
  2096. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen/eq.rs +0 -0
  2097. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen/fold.rs +0 -0
  2098. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen/hash.rs +0 -0
  2099. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen/visit.rs +0 -0
  2100. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen/visit_mut.rs +0 -0
  2101. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/gen_helper.rs +0 -0
  2102. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/generics.rs +0 -0
  2103. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/group.rs +0 -0
  2104. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/ident.rs +0 -0
  2105. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/item.rs +0 -0
  2106. data/ext/cargo-vendor/syn-1.0.107/src/lib.rs +984 -0
  2107. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/lifetime.rs +0 -0
  2108. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/lit.rs +0 -0
  2109. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/lookahead.rs +0 -0
  2110. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/mac.rs +0 -0
  2111. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/macros.rs +0 -0
  2112. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/op.rs +0 -0
  2113. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/parse.rs +0 -0
  2114. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/parse_macro_input.rs +0 -0
  2115. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/parse_quote.rs +0 -0
  2116. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/pat.rs +0 -0
  2117. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/path.rs +0 -0
  2118. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/print.rs +0 -0
  2119. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/punctuated.rs +0 -0
  2120. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/reserved.rs +0 -0
  2121. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/sealed.rs +0 -0
  2122. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/span.rs +0 -0
  2123. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/spanned.rs +0 -0
  2124. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/stmt.rs +0 -0
  2125. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/thread.rs +0 -0
  2126. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/token.rs +0 -0
  2127. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/tt.rs +0 -0
  2128. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/ty.rs +0 -0
  2129. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/verbatim.rs +0 -0
  2130. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/src/whitespace.rs +0 -0
  2131. data/ext/cargo-vendor/syn-1.0.107/tests/common/eq.rs +806 -0
  2132. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/common/mod.rs +0 -0
  2133. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/common/parse.rs +0 -0
  2134. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/debug/gen.rs +0 -0
  2135. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/debug/mod.rs +0 -0
  2136. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/macros/mod.rs +0 -0
  2137. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/regression/issue1108.rs +0 -0
  2138. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/regression/issue1235.rs +0 -0
  2139. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/regression.rs +0 -0
  2140. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/repo/mod.rs +0 -0
  2141. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/repo/progress.rs +0 -0
  2142. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_asyncness.rs +0 -0
  2143. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_attribute.rs +0 -0
  2144. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_derive_input.rs +0 -0
  2145. data/ext/cargo-vendor/syn-1.0.107/tests/test_expr.rs +306 -0
  2146. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_generics.rs +0 -0
  2147. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_grouping.rs +0 -0
  2148. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_ident.rs +0 -0
  2149. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_item.rs +0 -0
  2150. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_iterators.rs +0 -0
  2151. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_lit.rs +0 -0
  2152. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_meta.rs +0 -0
  2153. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_parse_buffer.rs +0 -0
  2154. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_parse_stream.rs +0 -0
  2155. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_pat.rs +0 -0
  2156. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_path.rs +0 -0
  2157. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_precedence.rs +0 -0
  2158. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_receiver.rs +0 -0
  2159. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_round_trip.rs +0 -0
  2160. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_shebang.rs +0 -0
  2161. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_should_parse.rs +0 -0
  2162. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_size.rs +0 -0
  2163. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_stmt.rs +0 -0
  2164. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_token_trees.rs +0 -0
  2165. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_ty.rs +0 -0
  2166. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/test_visibility.rs +0 -0
  2167. data/ext/cargo-vendor/{syn-1.0.105 → syn-1.0.107}/tests/zzz_stable.rs +0 -0
  2168. data/ext/cargo-vendor/system-interface-0.25.3/.cargo-checksum.json +1 -0
  2169. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/CODE_OF_CONDUCT.md +0 -0
  2170. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/COPYRIGHT +0 -0
  2171. data/ext/cargo-vendor/system-interface-0.25.3/Cargo.toml +105 -0
  2172. data/ext/cargo-vendor/{syn-1.0.105 → system-interface-0.25.3}/LICENSE-APACHE +0 -0
  2173. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/LICENSE-Apache-2.0_WITH_LLVM-exception +0 -0
  2174. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → system-interface-0.25.3}/LICENSE-MIT +0 -0
  2175. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/ORG_CODE_OF_CONDUCT.md +0 -0
  2176. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/README.md +0 -0
  2177. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/SECURITY.md +0 -0
  2178. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/build.rs +0 -0
  2179. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/src/fs/fd_flags.rs +0 -0
  2180. data/ext/cargo-vendor/system-interface-0.25.3/src/fs/file_io_ext.rs +1186 -0
  2181. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/src/fs/mod.rs +0 -0
  2182. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/src/io/io_ext.rs +0 -0
  2183. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/src/io/is_read_write.rs +0 -0
  2184. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/src/io/mod.rs +0 -0
  2185. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/src/io/peek.rs +0 -0
  2186. data/ext/cargo-vendor/system-interface-0.25.3/src/io/read_ready.rs +328 -0
  2187. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/src/lib.rs +0 -0
  2188. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/allocate.rs +0 -0
  2189. data/ext/cargo-vendor/system-interface-0.25.3/tests/append.rs +118 -0
  2190. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/fd_flags.rs +0 -0
  2191. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/is_read_write.rs +0 -0
  2192. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/live_rename.rs +0 -0
  2193. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/peek.rs +0 -0
  2194. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/read_to_end.rs +0 -0
  2195. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/sys_common/io.rs +0 -0
  2196. data/ext/cargo-vendor/{system-interface-0.25.0 → system-interface-0.25.3}/tests/sys_common/mod.rs +0 -0
  2197. data/ext/cargo-vendor/system-interface-0.25.3/tests/vectored_at.rs +627 -0
  2198. data/ext/cargo-vendor/termcolor-1.2.0/.cargo-checksum.json +1 -0
  2199. data/ext/cargo-vendor/{termcolor-1.1.3 → termcolor-1.2.0}/COPYING +0 -0
  2200. data/ext/cargo-vendor/termcolor-1.2.0/Cargo.toml +40 -0
  2201. data/ext/cargo-vendor/{termcolor-1.1.3 → termcolor-1.2.0}/LICENSE-MIT +0 -0
  2202. data/ext/cargo-vendor/{termcolor-1.1.3 → termcolor-1.2.0}/README.md +0 -0
  2203. data/ext/cargo-vendor/{termcolor-1.1.3 → termcolor-1.2.0}/UNLICENSE +0 -0
  2204. data/ext/cargo-vendor/{termcolor-1.1.3 → termcolor-1.2.0}/rustfmt.toml +0 -0
  2205. data/ext/cargo-vendor/termcolor-1.2.0/src/lib.rs +2350 -0
  2206. data/ext/cargo-vendor/thiserror-1.0.38/.cargo-checksum.json +1 -0
  2207. data/ext/cargo-vendor/thiserror-1.0.38/Cargo.toml +47 -0
  2208. data/ext/cargo-vendor/{system-interface-0.25.0 → thiserror-1.0.38}/LICENSE-APACHE +0 -0
  2209. data/ext/cargo-vendor/{unicode-ident-1.0.5 → thiserror-1.0.38}/LICENSE-MIT +0 -0
  2210. data/ext/cargo-vendor/thiserror-1.0.38/README.md +222 -0
  2211. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/build.rs +0 -0
  2212. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/rust-toolchain.toml +0 -0
  2213. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/src/aserror.rs +0 -0
  2214. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/src/display.rs +0 -0
  2215. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/src/lib.rs +0 -0
  2216. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/src/provide.rs +0 -0
  2217. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/compiletest.rs +0 -0
  2218. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_backtrace.rs +0 -0
  2219. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_deprecated.rs +0 -0
  2220. data/ext/cargo-vendor/thiserror-1.0.38/tests/test_display.rs +301 -0
  2221. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_error.rs +0 -0
  2222. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_expr.rs +0 -0
  2223. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_from.rs +0 -0
  2224. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_generics.rs +0 -0
  2225. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_lints.rs +0 -0
  2226. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_option.rs +0 -0
  2227. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_path.rs +0 -0
  2228. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_source.rs +0 -0
  2229. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/test_transparent.rs +0 -0
  2230. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/bad-field-attr.rs +0 -0
  2231. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/bad-field-attr.stderr +0 -0
  2232. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/concat-display.rs +0 -0
  2233. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/concat-display.stderr +0 -0
  2234. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-enum-source.rs +0 -0
  2235. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-enum-source.stderr +0 -0
  2236. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-fmt.rs +0 -0
  2237. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-fmt.stderr +0 -0
  2238. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-struct-source.rs +0 -0
  2239. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-struct-source.stderr +0 -0
  2240. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-transparent.rs +0 -0
  2241. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/duplicate-transparent.stderr +0 -0
  2242. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/from-backtrace-backtrace.rs +0 -0
  2243. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/from-backtrace-backtrace.stderr +0 -0
  2244. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/from-not-source.rs +0 -0
  2245. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/from-not-source.stderr +0 -0
  2246. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/lifetime.rs +0 -0
  2247. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/lifetime.stderr +0 -0
  2248. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/missing-fmt.rs +0 -0
  2249. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/missing-fmt.stderr +0 -0
  2250. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/no-display.rs +0 -0
  2251. data/ext/cargo-vendor/thiserror-1.0.38/tests/ui/no-display.stderr +17 -0
  2252. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/source-enum-not-error.rs +0 -0
  2253. data/ext/cargo-vendor/thiserror-1.0.38/tests/ui/source-enum-not-error.stderr +22 -0
  2254. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/source-struct-not-error.rs +0 -0
  2255. data/ext/cargo-vendor/thiserror-1.0.38/tests/ui/source-struct-not-error.stderr +21 -0
  2256. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-display.rs +0 -0
  2257. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-display.stderr +0 -0
  2258. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-enum-many.rs +0 -0
  2259. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-enum-many.stderr +0 -0
  2260. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-enum-source.rs +0 -0
  2261. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-enum-source.stderr +0 -0
  2262. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-struct-many.rs +0 -0
  2263. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-struct-many.stderr +0 -0
  2264. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-struct-source.rs +0 -0
  2265. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/transparent-struct-source.stderr +0 -0
  2266. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/unexpected-field-fmt.rs +0 -0
  2267. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/unexpected-field-fmt.stderr +0 -0
  2268. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/unexpected-struct-source.rs +0 -0
  2269. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/unexpected-struct-source.stderr +0 -0
  2270. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/union.rs +0 -0
  2271. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-1.0.38}/tests/ui/union.stderr +0 -0
  2272. data/ext/cargo-vendor/thiserror-impl-1.0.38/.cargo-checksum.json +1 -0
  2273. data/ext/cargo-vendor/thiserror-impl-1.0.38/Cargo.toml +35 -0
  2274. data/ext/cargo-vendor/{thiserror-1.0.37 → thiserror-impl-1.0.38}/LICENSE-APACHE +0 -0
  2275. data/ext/cargo-vendor/thiserror-impl-1.0.38/LICENSE-MIT +23 -0
  2276. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/ast.rs +0 -0
  2277. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/attr.rs +0 -0
  2278. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/expand.rs +0 -0
  2279. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/fmt.rs +0 -0
  2280. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/generics.rs +0 -0
  2281. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/lib.rs +0 -0
  2282. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/prop.rs +0 -0
  2283. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → thiserror-impl-1.0.38}/src/valid.rs +0 -0
  2284. data/ext/cargo-vendor/tokio-1.24.2/.cargo-checksum.json +1 -0
  2285. data/ext/cargo-vendor/tokio-1.24.2/CHANGELOG.md +2579 -0
  2286. data/ext/cargo-vendor/tokio-1.24.2/Cargo.toml +239 -0
  2287. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/LICENSE +0 -0
  2288. data/ext/cargo-vendor/tokio-1.24.2/README.md +229 -0
  2289. data/ext/cargo-vendor/tokio-1.24.2/build.rs +184 -0
  2290. data/ext/cargo-vendor/tokio-1.24.2/docs/reactor-refactor.md +276 -0
  2291. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/external-types.toml +0 -0
  2292. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/blocking.rs +0 -0
  2293. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/doc/mod.rs +0 -0
  2294. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/doc/os.rs +0 -0
  2295. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/canonicalize.rs +0 -0
  2296. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/copy.rs +0 -0
  2297. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/create_dir.rs +0 -0
  2298. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/create_dir_all.rs +0 -0
  2299. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/dir_builder.rs +0 -0
  2300. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/file/tests.rs +0 -0
  2301. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/file.rs +0 -0
  2302. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/hard_link.rs +0 -0
  2303. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/metadata.rs +0 -0
  2304. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/mocks.rs +0 -0
  2305. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/mod.rs +0 -0
  2306. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/open_options/mock_open_options.rs +0 -0
  2307. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/open_options.rs +0 -0
  2308. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/read.rs +0 -0
  2309. data/ext/cargo-vendor/tokio-1.24.2/src/fs/read_dir.rs +350 -0
  2310. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/read_link.rs +0 -0
  2311. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/read_to_string.rs +0 -0
  2312. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/remove_dir.rs +0 -0
  2313. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/remove_dir_all.rs +0 -0
  2314. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/remove_file.rs +0 -0
  2315. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/rename.rs +0 -0
  2316. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/set_permissions.rs +0 -0
  2317. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/symlink.rs +0 -0
  2318. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/symlink_dir.rs +0 -0
  2319. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/symlink_file.rs +0 -0
  2320. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/symlink_metadata.rs +0 -0
  2321. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/fs/write.rs +0 -0
  2322. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/future/block_on.rs +0 -0
  2323. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/future/maybe_done.rs +0 -0
  2324. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/future/mod.rs +0 -0
  2325. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/future/poll_fn.rs +0 -0
  2326. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/future/trace.rs +0 -0
  2327. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/future/try_join.rs +0 -0
  2328. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/async_buf_read.rs +0 -0
  2329. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/async_fd.rs +0 -0
  2330. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/async_read.rs +0 -0
  2331. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/async_seek.rs +0 -0
  2332. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/async_write.rs +0 -0
  2333. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/blocking.rs +0 -0
  2334. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/bsd/poll_aio.rs +0 -0
  2335. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/interest.rs +0 -0
  2336. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/mod.rs +0 -0
  2337. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/poll_evented.rs +0 -0
  2338. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/read_buf.rs +0 -0
  2339. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/ready.rs +0 -0
  2340. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/seek.rs +0 -0
  2341. data/ext/cargo-vendor/tokio-1.24.2/src/io/split.rs +184 -0
  2342. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/stderr.rs +0 -0
  2343. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/stdin.rs +0 -0
  2344. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/stdio_common.rs +0 -0
  2345. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/stdout.rs +0 -0
  2346. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/async_buf_read_ext.rs +0 -0
  2347. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/async_read_ext.rs +0 -0
  2348. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/async_seek_ext.rs +0 -0
  2349. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/async_write_ext.rs +0 -0
  2350. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/buf_reader.rs +0 -0
  2351. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/buf_stream.rs +0 -0
  2352. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/buf_writer.rs +0 -0
  2353. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/chain.rs +0 -0
  2354. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/copy.rs +0 -0
  2355. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/copy_bidirectional.rs +0 -0
  2356. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/copy_buf.rs +0 -0
  2357. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/empty.rs +0 -0
  2358. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/fill_buf.rs +0 -0
  2359. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/flush.rs +0 -0
  2360. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/lines.rs +0 -0
  2361. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/mem.rs +0 -0
  2362. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/mod.rs +0 -0
  2363. data/ext/cargo-vendor/tokio-1.24.2/src/io/util/read.rs +55 -0
  2364. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/read_buf.rs +0 -0
  2365. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/read_exact.rs +0 -0
  2366. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/read_int.rs +0 -0
  2367. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/read_line.rs +0 -0
  2368. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/read_to_end.rs +0 -0
  2369. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/read_to_string.rs +0 -0
  2370. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/read_until.rs +0 -0
  2371. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/repeat.rs +0 -0
  2372. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/shutdown.rs +0 -0
  2373. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/sink.rs +0 -0
  2374. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/split.rs +0 -0
  2375. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/take.rs +0 -0
  2376. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/vec_with_initialized.rs +0 -0
  2377. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/write.rs +0 -0
  2378. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/write_all.rs +0 -0
  2379. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/write_all_buf.rs +0 -0
  2380. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/write_buf.rs +0 -0
  2381. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/write_int.rs +0 -0
  2382. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/io/util/write_vectored.rs +0 -0
  2383. data/ext/cargo-vendor/tokio-1.24.2/src/lib.rs +633 -0
  2384. data/ext/cargo-vendor/tokio-1.24.2/src/loom/mocked.rs +52 -0
  2385. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/loom/mod.rs +0 -0
  2386. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/loom/std/atomic_u16.rs +0 -0
  2387. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/loom/std/atomic_u32.rs +0 -0
  2388. data/ext/cargo-vendor/tokio-1.24.2/src/loom/std/atomic_u64.rs +19 -0
  2389. data/ext/cargo-vendor/tokio-1.24.2/src/loom/std/atomic_u64_as_mutex.rs +76 -0
  2390. data/ext/cargo-vendor/tokio-1.24.2/src/loom/std/atomic_u64_native.rs +4 -0
  2391. data/ext/cargo-vendor/tokio-1.24.2/src/loom/std/atomic_u64_static_const_new.rs +12 -0
  2392. data/ext/cargo-vendor/tokio-1.24.2/src/loom/std/atomic_u64_static_once_cell.rs +57 -0
  2393. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/loom/std/atomic_usize.rs +0 -0
  2394. data/ext/cargo-vendor/tokio-1.24.2/src/loom/std/mod.rs +124 -0
  2395. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/loom/std/mutex.rs +0 -0
  2396. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/loom/std/parking_lot.rs +0 -0
  2397. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/loom/std/unsafe_cell.rs +0 -0
  2398. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/addr_of.rs +0 -0
  2399. data/ext/cargo-vendor/tokio-1.24.2/src/macros/cfg.rs +539 -0
  2400. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/join.rs +0 -0
  2401. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/loom.rs +0 -0
  2402. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/mod.rs +0 -0
  2403. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/pin.rs +0 -0
  2404. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/ready.rs +0 -0
  2405. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/scoped_tls.rs +0 -0
  2406. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/select.rs +0 -0
  2407. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/support.rs +0 -0
  2408. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/thread_local.rs +0 -0
  2409. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/trace.rs +0 -0
  2410. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/macros/try_join.rs +0 -0
  2411. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/addr.rs +0 -0
  2412. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/lookup_host.rs +0 -0
  2413. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/mod.rs +0 -0
  2414. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/tcp/listener.rs +0 -0
  2415. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/tcp/mod.rs +0 -0
  2416. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/tcp/socket.rs +0 -0
  2417. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/tcp/split.rs +0 -0
  2418. data/ext/cargo-vendor/tokio-1.24.2/src/net/tcp/split_owned.rs +501 -0
  2419. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/tcp/stream.rs +0 -0
  2420. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/udp.rs +0 -0
  2421. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/datagram/mod.rs +0 -0
  2422. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/datagram/socket.rs +0 -0
  2423. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/listener.rs +0 -0
  2424. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/mod.rs +0 -0
  2425. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/socketaddr.rs +0 -0
  2426. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/split.rs +0 -0
  2427. data/ext/cargo-vendor/tokio-1.24.2/src/net/unix/split_owned.rs +409 -0
  2428. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/stream.rs +0 -0
  2429. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/unix/ucred.rs +0 -0
  2430. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/net/windows/mod.rs +0 -0
  2431. data/ext/cargo-vendor/tokio-1.24.2/src/net/windows/named_pipe.rs +2600 -0
  2432. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/process/kill.rs +0 -0
  2433. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/process/mod.rs +0 -0
  2434. data/ext/cargo-vendor/tokio-1.24.2/src/process/unix/mod.rs +322 -0
  2435. data/ext/cargo-vendor/tokio-1.24.2/src/process/unix/orphan.rs +333 -0
  2436. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/process/unix/reap.rs +0 -0
  2437. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/process/windows.rs +0 -0
  2438. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/blocking/mod.rs +26 -0
  2439. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/blocking/pool.rs +600 -0
  2440. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/blocking/schedule.rs +56 -0
  2441. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/blocking/shutdown.rs +0 -0
  2442. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/blocking/task.rs +0 -0
  2443. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/builder.rs +1083 -0
  2444. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/config.rs +0 -0
  2445. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/context.rs +420 -0
  2446. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/coop.rs +0 -0
  2447. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/defer.rs +0 -0
  2448. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/driver.rs +344 -0
  2449. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/handle.rs +0 -0
  2450. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/io/metrics.rs +0 -0
  2451. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/io/mod.rs +344 -0
  2452. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/io/platform.rs +0 -0
  2453. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/io/registration.rs +251 -0
  2454. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/io/scheduled_io.rs +558 -0
  2455. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/metrics/batch.rs +0 -0
  2456. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/metrics/io.rs +0 -0
  2457. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/metrics/mock.rs +0 -0
  2458. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/metrics/mod.rs +0 -0
  2459. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/metrics/runtime.rs +0 -0
  2460. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/metrics/scheduler.rs +0 -0
  2461. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/metrics/worker.rs +0 -0
  2462. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/mod.rs +261 -0
  2463. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/park.rs +0 -0
  2464. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/process.rs +0 -0
  2465. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/runtime.rs +0 -0
  2466. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/scheduler/current_thread.rs +0 -0
  2467. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/scheduler/mod.rs +0 -0
  2468. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/scheduler/multi_thread/handle.rs +0 -0
  2469. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/scheduler/multi_thread/idle.rs +0 -0
  2470. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/scheduler/multi_thread/mod.rs +0 -0
  2471. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/scheduler/multi_thread/park.rs +0 -0
  2472. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/scheduler/multi_thread/queue.rs +532 -0
  2473. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/scheduler/multi_thread/worker.rs +0 -0
  2474. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/signal/mod.rs +0 -0
  2475. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/abort.rs +0 -0
  2476. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/core.rs +0 -0
  2477. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/error.rs +0 -0
  2478. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/task/harness.rs +501 -0
  2479. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/task/id.rs +87 -0
  2480. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/inject.rs +0 -0
  2481. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/join.rs +0 -0
  2482. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/list.rs +0 -0
  2483. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/task/mod.rs +491 -0
  2484. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/raw.rs +0 -0
  2485. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/task/state.rs +595 -0
  2486. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/task/waker.rs +0 -0
  2487. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/tests/loom_blocking.rs +102 -0
  2488. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/loom_current_thread_scheduler.rs +0 -0
  2489. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/loom_join_set.rs +0 -0
  2490. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/loom_local.rs +0 -0
  2491. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/loom_oneshot.rs +0 -0
  2492. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/loom_pool.rs +0 -0
  2493. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/tests/loom_queue.rs +209 -0
  2494. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/loom_shutdown_join.rs +0 -0
  2495. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/loom_yield.rs +0 -0
  2496. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/tests/mod.rs +73 -0
  2497. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/queue.rs +0 -0
  2498. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/tests/task.rs +332 -0
  2499. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/tests/task_combinations.rs +0 -0
  2500. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/thread_id.rs +31 -0
  2501. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/time/entry.rs +0 -0
  2502. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/time/handle.rs +0 -0
  2503. data/ext/cargo-vendor/tokio-1.24.2/src/runtime/time/mod.rs +422 -0
  2504. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/time/source.rs +0 -0
  2505. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/time/tests/mod.rs +0 -0
  2506. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/time/wheel/level.rs +0 -0
  2507. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/runtime/time/wheel/mod.rs +0 -0
  2508. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/signal/ctrl_c.rs +0 -0
  2509. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/signal/mod.rs +0 -0
  2510. data/ext/cargo-vendor/tokio-1.24.2/src/signal/registry.rs +283 -0
  2511. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/signal/reusable_box.rs +0 -0
  2512. data/ext/cargo-vendor/tokio-1.24.2/src/signal/unix.rs +526 -0
  2513. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/signal/windows/stub.rs +0 -0
  2514. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/signal/windows/sys.rs +0 -0
  2515. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/signal/windows.rs +0 -0
  2516. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/barrier.rs +0 -0
  2517. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/batch_semaphore.rs +0 -0
  2518. data/ext/cargo-vendor/tokio-1.24.2/src/sync/broadcast.rs +1163 -0
  2519. data/ext/cargo-vendor/tokio-1.24.2/src/sync/mod.rs +507 -0
  2520. data/ext/cargo-vendor/tokio-1.24.2/src/sync/mpsc/block.rs +448 -0
  2521. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/mpsc/bounded.rs +0 -0
  2522. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/mpsc/chan.rs +0 -0
  2523. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/mpsc/error.rs +0 -0
  2524. data/ext/cargo-vendor/tokio-1.24.2/src/sync/mpsc/list.rs +371 -0
  2525. data/ext/cargo-vendor/tokio-1.24.2/src/sync/mpsc/mod.rs +121 -0
  2526. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/mpsc/unbounded.rs +0 -0
  2527. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/mutex.rs +0 -0
  2528. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/notify.rs +0 -0
  2529. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/once_cell.rs +0 -0
  2530. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/oneshot.rs +0 -0
  2531. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/rwlock/owned_read_guard.rs +0 -0
  2532. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/rwlock/owned_write_guard.rs +0 -0
  2533. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/rwlock/owned_write_guard_mapped.rs +0 -0
  2534. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/rwlock/read_guard.rs +0 -0
  2535. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/rwlock/write_guard.rs +0 -0
  2536. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/rwlock/write_guard_mapped.rs +0 -0
  2537. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/rwlock.rs +0 -0
  2538. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/semaphore.rs +0 -0
  2539. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/task/atomic_waker.rs +0 -0
  2540. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/task/mod.rs +0 -0
  2541. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/atomic_waker.rs +0 -0
  2542. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_atomic_waker.rs +0 -0
  2543. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_broadcast.rs +0 -0
  2544. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_list.rs +0 -0
  2545. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_mpsc.rs +0 -0
  2546. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_notify.rs +0 -0
  2547. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_oneshot.rs +0 -0
  2548. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_rwlock.rs +0 -0
  2549. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_semaphore_batch.rs +0 -0
  2550. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/loom_watch.rs +0 -0
  2551. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/mod.rs +0 -0
  2552. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/notify.rs +0 -0
  2553. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/tests/semaphore_batch.rs +0 -0
  2554. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/sync/watch.rs +0 -0
  2555. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/blocking.rs +0 -0
  2556. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/builder.rs +0 -0
  2557. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/consume_budget.rs +0 -0
  2558. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/join_set.rs +0 -0
  2559. data/ext/cargo-vendor/tokio-1.24.2/src/task/local.rs +1176 -0
  2560. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/mod.rs +0 -0
  2561. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/spawn.rs +0 -0
  2562. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/task_local.rs +0 -0
  2563. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/unconstrained.rs +0 -0
  2564. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/task/yield_now.rs +0 -0
  2565. data/ext/cargo-vendor/tokio-1.24.2/src/time/clock.rs +258 -0
  2566. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/time/error.rs +0 -0
  2567. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/time/instant.rs +0 -0
  2568. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/time/interval.rs +0 -0
  2569. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/time/mod.rs +0 -0
  2570. data/ext/cargo-vendor/tokio-1.24.2/src/time/sleep.rs +438 -0
  2571. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/time/timeout.rs +0 -0
  2572. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/atomic_cell.rs +0 -0
  2573. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/bit.rs +0 -0
  2574. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/error.rs +0 -0
  2575. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/idle_notified_set.rs +0 -0
  2576. data/ext/cargo-vendor/tokio-1.24.2/src/util/linked_list.rs +694 -0
  2577. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/mod.rs +0 -0
  2578. data/ext/cargo-vendor/tokio-1.24.2/src/util/once_cell.rs +70 -0
  2579. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/pad.rs +0 -0
  2580. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/rand.rs +0 -0
  2581. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/rc_cell.rs +0 -0
  2582. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/slab.rs +0 -0
  2583. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/sync_wrapper.rs +0 -0
  2584. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/trace.rs +0 -0
  2585. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/try_lock.rs +0 -0
  2586. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/wake.rs +0 -0
  2587. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/src/util/wake_list.rs +0 -0
  2588. data/ext/cargo-vendor/tokio-1.24.2/tests/_require_full.rs +8 -0
  2589. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/async_send_sync.rs +0 -0
  2590. data/ext/cargo-vendor/tokio-1.24.2/tests/buffered.rs +50 -0
  2591. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/fs.rs +0 -0
  2592. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/fs_copy.rs +0 -0
  2593. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/fs_dir.rs +0 -0
  2594. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/fs_file.rs +0 -0
  2595. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/fs_link.rs +0 -0
  2596. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_async_fd.rs +0 -0
  2597. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_async_read.rs +0 -0
  2598. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_buf_reader.rs +0 -0
  2599. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_buf_writer.rs +0 -0
  2600. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_chain.rs +0 -0
  2601. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_copy.rs +0 -0
  2602. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_copy_bidirectional.rs +0 -0
  2603. data/ext/cargo-vendor/tokio-1.24.2/tests/io_driver.rs +100 -0
  2604. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_driver_drop.rs +0 -0
  2605. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_fill_buf.rs +0 -0
  2606. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_lines.rs +0 -0
  2607. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_mem_stream.rs +0 -0
  2608. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_panic.rs +0 -0
  2609. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_poll_aio.rs +0 -0
  2610. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_read.rs +0 -0
  2611. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_read_buf.rs +0 -0
  2612. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_read_exact.rs +0 -0
  2613. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_read_line.rs +0 -0
  2614. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_read_to_end.rs +0 -0
  2615. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_read_to_string.rs +0 -0
  2616. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_read_until.rs +0 -0
  2617. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_split.rs +0 -0
  2618. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_take.rs +0 -0
  2619. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_util_empty.rs +0 -0
  2620. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_write.rs +0 -0
  2621. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_write_all.rs +0 -0
  2622. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_write_all_buf.rs +0 -0
  2623. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_write_buf.rs +0 -0
  2624. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/io_write_int.rs +0 -0
  2625. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/join_handle_panic.rs +0 -0
  2626. data/ext/cargo-vendor/tokio-1.24.2/tests/macros_join.rs +155 -0
  2627. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/macros_pin.rs +0 -0
  2628. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/macros_rename_test.rs +0 -0
  2629. data/ext/cargo-vendor/tokio-1.24.2/tests/macros_select.rs +665 -0
  2630. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/macros_test.rs +0 -0
  2631. data/ext/cargo-vendor/tokio-1.24.2/tests/macros_try_join.rs +185 -0
  2632. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/net_bind_resource.rs +0 -0
  2633. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/net_lookup_host.rs +0 -0
  2634. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/net_named_pipe.rs +0 -0
  2635. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/net_panic.rs +0 -0
  2636. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/no_rt.rs +0 -0
  2637. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/process_arg0.rs +0 -0
  2638. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/process_issue_2174.rs +0 -0
  2639. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/process_issue_42.rs +0 -0
  2640. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/process_kill_on_drop.rs +0 -0
  2641. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/process_raw_handle.rs +0 -0
  2642. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/process_smoke.rs +0 -0
  2643. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/rt_basic.rs +0 -0
  2644. data/ext/cargo-vendor/tokio-1.24.2/tests/rt_common.rs +1279 -0
  2645. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/rt_handle_block_on.rs +0 -0
  2646. data/ext/cargo-vendor/tokio-1.24.2/tests/rt_metrics.rs +481 -0
  2647. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/rt_panic.rs +0 -0
  2648. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/rt_threaded.rs +0 -0
  2649. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_ctrl_c.rs +0 -0
  2650. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_drop_recv.rs +0 -0
  2651. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_drop_rt.rs +0 -0
  2652. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_drop_signal.rs +0 -0
  2653. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_multi_rt.rs +0 -0
  2654. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_no_rt.rs +0 -0
  2655. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_notify_both.rs +0 -0
  2656. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_panic.rs +0 -0
  2657. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_twice.rs +0 -0
  2658. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/signal_usr1.rs +0 -0
  2659. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/support/io_vec.rs +0 -0
  2660. data/ext/cargo-vendor/tokio-1.24.2/tests/support/leaked_buffers.rs +26 -0
  2661. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/support/mpsc_stream.rs +0 -0
  2662. data/ext/cargo-vendor/tokio-1.24.2/tests/support/panic.rs +34 -0
  2663. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/support/signal.rs +0 -0
  2664. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_barrier.rs +0 -0
  2665. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_broadcast.rs +0 -0
  2666. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_errors.rs +0 -0
  2667. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_mpsc.rs +0 -0
  2668. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_mpsc_weak.rs +0 -0
  2669. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_mutex.rs +0 -0
  2670. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_mutex_owned.rs +0 -0
  2671. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_notify.rs +0 -0
  2672. data/ext/cargo-vendor/tokio-1.24.2/tests/sync_once_cell.rs +285 -0
  2673. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_oneshot.rs +0 -0
  2674. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_panic.rs +0 -0
  2675. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_rwlock.rs +0 -0
  2676. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_semaphore.rs +0 -0
  2677. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_semaphore_owned.rs +0 -0
  2678. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/sync_watch.rs +0 -0
  2679. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/task_abort.rs +0 -0
  2680. data/ext/cargo-vendor/tokio-1.24.2/tests/task_blocking.rs +309 -0
  2681. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/task_builder.rs +0 -0
  2682. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/task_id.rs +0 -0
  2683. data/ext/cargo-vendor/tokio-1.24.2/tests/task_join_set.rs +235 -0
  2684. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/task_local.rs +0 -0
  2685. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/task_local_set.rs +0 -0
  2686. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/task_panic.rs +0 -0
  2687. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_accept.rs +0 -0
  2688. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_connect.rs +0 -0
  2689. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_echo.rs +0 -0
  2690. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_into_split.rs +0 -0
  2691. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_into_std.rs +0 -0
  2692. data/ext/cargo-vendor/tokio-1.24.2/tests/tcp_peek.rs +29 -0
  2693. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_shutdown.rs +0 -0
  2694. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_socket.rs +0 -0
  2695. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_split.rs +0 -0
  2696. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/tcp_stream.rs +0 -0
  2697. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/test_clock.rs +0 -0
  2698. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/time_interval.rs +0 -0
  2699. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/time_panic.rs +0 -0
  2700. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/time_pause.rs +0 -0
  2701. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/time_rt.rs +0 -0
  2702. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/time_sleep.rs +0 -0
  2703. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/time_timeout.rs +0 -0
  2704. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/udp.rs +0 -0
  2705. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/uds_cred.rs +0 -0
  2706. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/uds_datagram.rs +0 -0
  2707. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/uds_split.rs +0 -0
  2708. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/uds_stream.rs +0 -0
  2709. data/ext/cargo-vendor/{tokio-1.23.0 → tokio-1.24.2}/tests/unwindsafe.rs +0 -0
  2710. data/ext/cargo-vendor/toml-0.5.11/.cargo-checksum.json +1 -0
  2711. data/ext/cargo-vendor/toml-0.5.11/Cargo.lock +110 -0
  2712. data/ext/cargo-vendor/toml-0.5.11/Cargo.toml +98 -0
  2713. data/ext/cargo-vendor/{thiserror-impl-1.0.37 → toml-0.5.11}/LICENSE-APACHE +0 -0
  2714. data/ext/cargo-vendor/toml-0.5.11/LICENSE-MIT +25 -0
  2715. data/ext/cargo-vendor/toml-0.5.11/README.md +29 -0
  2716. data/ext/cargo-vendor/{toml-0.5.9 → toml-0.5.11}/examples/decode.rs +0 -0
  2717. data/ext/cargo-vendor/{toml-0.5.9 → toml-0.5.11}/examples/enum_external.rs +0 -0
  2718. data/ext/cargo-vendor/{toml-0.5.9 → toml-0.5.11}/examples/toml2json.rs +0 -0
  2719. data/ext/cargo-vendor/toml-0.5.11/src/datetime.rs +544 -0
  2720. data/ext/cargo-vendor/toml-0.5.11/src/de.rs +2246 -0
  2721. data/ext/cargo-vendor/toml-0.5.11/src/lib.rs +176 -0
  2722. data/ext/cargo-vendor/toml-0.5.11/src/macros.rs +459 -0
  2723. data/ext/cargo-vendor/{toml-0.5.9 → toml-0.5.11}/src/map.rs +0 -0
  2724. data/ext/cargo-vendor/toml-0.5.11/src/ser.rs +1853 -0
  2725. data/ext/cargo-vendor/toml-0.5.11/src/spanned.rs +166 -0
  2726. data/ext/cargo-vendor/toml-0.5.11/src/tokens.rs +742 -0
  2727. data/ext/cargo-vendor/{toml-0.5.9 → toml-0.5.11}/src/value.rs +0 -0
  2728. data/ext/cargo-vendor/{toml-0.5.9 → toml-0.5.11}/tests/enum_external_deserialize.rs +0 -0
  2729. data/ext/cargo-vendor/unicase-2.6.0/.cargo-checksum.json +1 -0
  2730. data/ext/cargo-vendor/unicase-2.6.0/Cargo.toml +30 -0
  2731. data/ext/cargo-vendor/{toml-0.5.9 → unicase-2.6.0}/LICENSE-APACHE +0 -0
  2732. data/ext/cargo-vendor/unicase-2.6.0/LICENSE-MIT +20 -0
  2733. data/ext/cargo-vendor/unicase-2.6.0/README.md +31 -0
  2734. data/ext/cargo-vendor/unicase-2.6.0/build.rs +23 -0
  2735. data/ext/cargo-vendor/unicase-2.6.0/src/ascii.rs +187 -0
  2736. data/ext/cargo-vendor/unicase-2.6.0/src/lib.rs +465 -0
  2737. data/ext/cargo-vendor/unicase-2.6.0/src/unicode/map.rs +1995 -0
  2738. data/ext/cargo-vendor/unicase-2.6.0/src/unicode/mod.rs +201 -0
  2739. data/ext/cargo-vendor/unicode-bidi-0.3.10/.cargo-checksum.json +1 -0
  2740. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/AUTHORS +0 -0
  2741. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/COPYRIGHT +0 -0
  2742. data/ext/cargo-vendor/unicode-bidi-0.3.10/Cargo.toml +83 -0
  2743. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/LICENSE-APACHE +0 -0
  2744. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/LICENSE-MIT +0 -0
  2745. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/README.md +0 -0
  2746. data/ext/cargo-vendor/unicode-bidi-0.3.10/src/char_data/mod.rs +173 -0
  2747. data/ext/cargo-vendor/unicode-bidi-0.3.10/src/char_data/tables.rs +543 -0
  2748. data/ext/cargo-vendor/unicode-bidi-0.3.10/src/data_source.rs +46 -0
  2749. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/src/deprecated.rs +0 -0
  2750. data/ext/cargo-vendor/unicode-bidi-0.3.10/src/explicit.rs +209 -0
  2751. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/src/format_chars.rs +0 -0
  2752. data/ext/cargo-vendor/unicode-bidi-0.3.10/src/implicit.rs +596 -0
  2753. data/ext/cargo-vendor/{unicode-bidi-0.3.8 → unicode-bidi-0.3.10}/src/level.rs +0 -0
  2754. data/ext/cargo-vendor/unicode-bidi-0.3.10/src/lib.rs +1147 -0
  2755. data/ext/cargo-vendor/unicode-bidi-0.3.10/src/prepare.rs +450 -0
  2756. data/ext/cargo-vendor/unicode-ident-1.0.6/.cargo-checksum.json +1 -0
  2757. data/ext/cargo-vendor/unicode-ident-1.0.6/Cargo.toml +58 -0
  2758. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/LICENSE-APACHE +0 -0
  2759. data/ext/cargo-vendor/unicode-ident-1.0.6/LICENSE-MIT +23 -0
  2760. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/LICENSE-UNICODE +0 -0
  2761. data/ext/cargo-vendor/unicode-ident-1.0.6/README.md +283 -0
  2762. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/benches/xid.rs +0 -0
  2763. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/src/lib.rs +0 -0
  2764. data/ext/cargo-vendor/unicode-ident-1.0.6/src/tables.rs +647 -0
  2765. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/tests/compare.rs +0 -0
  2766. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/tests/fst/mod.rs +0 -0
  2767. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/tests/fst/xid_continue.fst +0 -0
  2768. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/tests/fst/xid_start.fst +0 -0
  2769. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/tests/roaring/mod.rs +0 -0
  2770. data/ext/cargo-vendor/unicode-ident-1.0.6/tests/static_size.rs +95 -0
  2771. data/ext/cargo-vendor/unicode-ident-1.0.6/tests/tables/mod.rs +7 -0
  2772. data/ext/cargo-vendor/unicode-ident-1.0.6/tests/tables/tables.rs +347 -0
  2773. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/tests/trie/mod.rs +0 -0
  2774. data/ext/cargo-vendor/{unicode-ident-1.0.5 → unicode-ident-1.0.6}/tests/trie/trie.rs +0 -0
  2775. data/ext/cargo-vendor/unicode-xid-0.2.4/.cargo-checksum.json +1 -0
  2776. data/ext/cargo-vendor/unicode-xid-0.2.4/COPYRIGHT +7 -0
  2777. data/ext/cargo-vendor/unicode-xid-0.2.4/Cargo.toml +51 -0
  2778. data/ext/cargo-vendor/unicode-xid-0.2.4/LICENSE-APACHE +201 -0
  2779. data/ext/cargo-vendor/unicode-xid-0.2.4/LICENSE-MIT +25 -0
  2780. data/ext/cargo-vendor/unicode-xid-0.2.4/README.md +53 -0
  2781. data/ext/cargo-vendor/unicode-xid-0.2.4/benches/xid.rs +60 -0
  2782. data/ext/cargo-vendor/unicode-xid-0.2.4/src/lib.rs +92 -0
  2783. data/ext/cargo-vendor/unicode-xid-0.2.4/src/tables.rs +1494 -0
  2784. data/ext/cargo-vendor/unicode-xid-0.2.4/src/tests.rs +95 -0
  2785. data/ext/cargo-vendor/unicode-xid-0.2.4/tests/exhaustive_tests.rs +25 -0
  2786. data/ext/cargo-vendor/wasi-cap-std-sync-5.0.0/.cargo-checksum.json +1 -0
  2787. data/ext/cargo-vendor/wasi-cap-std-sync-5.0.0/Cargo.toml +89 -0
  2788. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/LICENSE +0 -0
  2789. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/README.md +0 -0
  2790. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/clocks.rs +0 -0
  2791. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/dir.rs +0 -0
  2792. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/file.rs +0 -0
  2793. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/lib.rs +0 -0
  2794. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/net.rs +0 -0
  2795. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/sched/unix.rs +0 -0
  2796. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/sched/windows.rs +0 -0
  2797. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/sched.rs +0 -0
  2798. data/ext/cargo-vendor/{wasi-cap-std-sync-4.0.0 → wasi-cap-std-sync-5.0.0}/src/stdio.rs +0 -0
  2799. data/ext/cargo-vendor/wasi-common-5.0.0/.cargo-checksum.json +1 -0
  2800. data/ext/cargo-vendor/wasi-common-5.0.0/Cargo.toml +85 -0
  2801. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/LICENSE +0 -0
  2802. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/README.md +0 -0
  2803. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/README.md +0 -0
  2804. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/docs/README.md +0 -0
  2805. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/README.md +0 -0
  2806. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/docs.md +0 -0
  2807. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/typenames.witx +0 -0
  2808. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_args.witx +0 -0
  2809. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_clock.witx +0 -0
  2810. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_environ.witx +0 -0
  2811. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_fd.witx +0 -0
  2812. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_path.witx +0 -0
  2813. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_poll.witx +0 -0
  2814. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_proc.witx +0 -0
  2815. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_random.witx +0 -0
  2816. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sched.witx +0 -0
  2817. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/ephemeral/witx/wasi_ephemeral_sock.witx +0 -0
  2818. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/old/snapshot_0/docs.md +0 -0
  2819. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/old/snapshot_0/witx/typenames.witx +0 -0
  2820. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/old/snapshot_0/witx/wasi_unstable.witx +0 -0
  2821. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/snapshot/docs.html +0 -0
  2822. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/snapshot/docs.md +0 -0
  2823. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/snapshot/witx/typenames.witx +0 -0
  2824. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/phases/snapshot/witx/wasi_snapshot_preview1.witx +0 -0
  2825. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/proposal-template/README.md +0 -0
  2826. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/proposals/README.md +0 -0
  2827. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/snapshots/README.md +0 -0
  2828. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/WASI/standard/README.md +0 -0
  2829. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/build.rs +0 -0
  2830. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/clocks.rs +0 -0
  2831. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/ctx.rs +0 -0
  2832. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/dir.rs +0 -0
  2833. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/error.rs +0 -0
  2834. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/file.rs +0 -0
  2835. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/lib.rs +0 -0
  2836. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/pipe.rs +0 -0
  2837. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/random.rs +0 -0
  2838. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/sched/subscription.rs +0 -0
  2839. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/sched.rs +0 -0
  2840. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/snapshots/mod.rs +0 -0
  2841. data/ext/cargo-vendor/wasi-common-5.0.0/src/snapshots/preview_0.rs +1169 -0
  2842. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/snapshots/preview_1/error.rs +0 -0
  2843. data/ext/cargo-vendor/wasi-common-5.0.0/src/snapshots/preview_1.rs +1711 -0
  2844. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/string_array.rs +0 -0
  2845. data/ext/cargo-vendor/{wasi-common-4.0.0 → wasi-common-5.0.0}/src/table.rs +0 -0
  2846. data/ext/cargo-vendor/wasm-encoder-0.22.0/.cargo-checksum.json +1 -0
  2847. data/ext/cargo-vendor/wasm-encoder-0.22.0/Cargo.toml +33 -0
  2848. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/LICENSE +0 -0
  2849. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/README.md +0 -0
  2850. data/ext/cargo-vendor/wasm-encoder-0.22.0/src/component/aliases.rs +160 -0
  2851. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/canonicals.rs +0 -0
  2852. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/components.rs +0 -0
  2853. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/exports.rs +0 -0
  2854. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/imports.rs +0 -0
  2855. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/instances.rs +0 -0
  2856. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/modules.rs +0 -0
  2857. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/names.rs +0 -0
  2858. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/component/start.rs +0 -0
  2859. data/ext/cargo-vendor/wasm-encoder-0.22.0/src/component/types.rs +736 -0
  2860. data/ext/cargo-vendor/wasm-encoder-0.22.0/src/component.rs +137 -0
  2861. data/ext/cargo-vendor/wasm-encoder-0.22.0/src/core/code.rs +2874 -0
  2862. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/custom.rs +0 -0
  2863. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/data.rs +0 -0
  2864. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/elements.rs +0 -0
  2865. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/exports.rs +0 -0
  2866. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/functions.rs +0 -0
  2867. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/globals.rs +0 -0
  2868. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/imports.rs +0 -0
  2869. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/linking.rs +0 -0
  2870. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/memories.rs +0 -0
  2871. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/names.rs +0 -0
  2872. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/start.rs +0 -0
  2873. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/tables.rs +0 -0
  2874. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/tags.rs +0 -0
  2875. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core/types.rs +0 -0
  2876. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/core.rs +0 -0
  2877. data/ext/cargo-vendor/wasm-encoder-0.22.0/src/lib.rs +188 -0
  2878. data/ext/cargo-vendor/{wasm-encoder-0.20.0 → wasm-encoder-0.22.0}/src/raw.rs +0 -0
  2879. data/ext/cargo-vendor/wasmparser-0.96.0/.cargo-checksum.json +1 -0
  2880. data/ext/cargo-vendor/wasmparser-0.96.0/Cargo.lock +682 -0
  2881. data/ext/cargo-vendor/wasmparser-0.96.0/Cargo.toml +51 -0
  2882. data/ext/cargo-vendor/{wasmparser-0.95.0 → wasmparser-0.96.0}/LICENSE +0 -0
  2883. data/ext/cargo-vendor/{wasmparser-0.95.0 → wasmparser-0.96.0}/README.md +0 -0
  2884. data/ext/cargo-vendor/wasmparser-0.96.0/benches/benchmark.rs +345 -0
  2885. data/ext/cargo-vendor/{wasmparser-0.95.0 → wasmparser-0.96.0}/examples/simple.rs +0 -0
  2886. data/ext/cargo-vendor/wasmparser-0.96.0/src/binary_reader.rs +1673 -0
  2887. data/ext/cargo-vendor/{wasmparser-0.95.0 → wasmparser-0.96.0}/src/lib.rs +0 -0
  2888. data/ext/cargo-vendor/wasmparser-0.96.0/src/limits.rs +57 -0
  2889. data/ext/cargo-vendor/wasmparser-0.96.0/src/parser.rs +1491 -0
  2890. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/aliases.rs +119 -0
  2891. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/canonicals.rs +95 -0
  2892. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/exports.rs +92 -0
  2893. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/imports.rs +95 -0
  2894. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/instances.rs +163 -0
  2895. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/names.rs +102 -0
  2896. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/start.rs +30 -0
  2897. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/component/types.rs +526 -0
  2898. data/ext/cargo-vendor/{wasmparser-0.95.0 → wasmparser-0.96.0}/src/readers/component.rs +0 -0
  2899. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/code.rs +146 -0
  2900. data/ext/cargo-vendor/{wasmparser-0.95.0 → wasmparser-0.96.0}/src/readers/core/custom.rs +0 -0
  2901. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/data.rs +96 -0
  2902. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/elements.rs +158 -0
  2903. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/exports.rs +65 -0
  2904. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/functions.rs +17 -0
  2905. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/globals.rs +49 -0
  2906. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/imports.rs +76 -0
  2907. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/init.rs +51 -0
  2908. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/memories.rs +56 -0
  2909. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/names.rs +153 -0
  2910. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/operators.rs +328 -0
  2911. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/producers.rs +78 -0
  2912. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/tables.rs +42 -0
  2913. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/tags.rs +32 -0
  2914. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core/types.rs +243 -0
  2915. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers/core.rs +33 -0
  2916. data/ext/cargo-vendor/wasmparser-0.96.0/src/readers.rs +307 -0
  2917. data/ext/cargo-vendor/{wasmparser-0.95.0 → wasmparser-0.96.0}/src/resources.rs +0 -0
  2918. data/ext/cargo-vendor/wasmparser-0.96.0/src/validator/component.rs +2046 -0
  2919. data/ext/cargo-vendor/wasmparser-0.96.0/src/validator/core.rs +1143 -0
  2920. data/ext/cargo-vendor/wasmparser-0.96.0/src/validator/func.rs +333 -0
  2921. data/ext/cargo-vendor/wasmparser-0.96.0/src/validator/operators.rs +3222 -0
  2922. data/ext/cargo-vendor/wasmparser-0.96.0/src/validator/types.rs +2179 -0
  2923. data/ext/cargo-vendor/wasmparser-0.96.0/src/validator.rs +1483 -0
  2924. data/ext/cargo-vendor/wasmtime-5.0.0/.cargo-checksum.json +1 -0
  2925. data/ext/cargo-vendor/wasmtime-5.0.0/Cargo.toml +168 -0
  2926. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/LICENSE +0 -0
  2927. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/README.md +0 -0
  2928. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/build.rs +0 -0
  2929. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/code.rs +0 -0
  2930. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/component.rs +0 -0
  2931. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/func/host.rs +0 -0
  2932. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/func/options.rs +0 -0
  2933. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/func/typed.rs +0 -0
  2934. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/func.rs +0 -0
  2935. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/instance.rs +0 -0
  2936. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/linker.rs +0 -0
  2937. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/matching.rs +0 -0
  2938. data/ext/cargo-vendor/wasmtime-5.0.0/src/component/mod.rs +44 -0
  2939. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/storage.rs +0 -0
  2940. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/store.rs +0 -0
  2941. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/component/types.rs +0 -0
  2942. data/ext/cargo-vendor/wasmtime-5.0.0/src/component/values.rs +1143 -0
  2943. data/ext/cargo-vendor/wasmtime-5.0.0/src/config.rs +1906 -0
  2944. data/ext/cargo-vendor/wasmtime-5.0.0/src/engine/serialization.rs +603 -0
  2945. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/engine.rs +0 -0
  2946. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/externals.rs +0 -0
  2947. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/func/typed.rs +0 -0
  2948. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/func.rs +0 -0
  2949. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/instance.rs +0 -0
  2950. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/lib.rs +0 -0
  2951. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/limits.rs +0 -0
  2952. data/ext/cargo-vendor/wasmtime-5.0.0/src/linker.rs +1337 -0
  2953. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/memory.rs +0 -0
  2954. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/module/registry.rs +0 -0
  2955. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/module.rs +0 -0
  2956. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/ref.rs +0 -0
  2957. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/signatures.rs +0 -0
  2958. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/store/context.rs +0 -0
  2959. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/store/data.rs +0 -0
  2960. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/store.rs +0 -0
  2961. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/trampoline/func.rs +0 -0
  2962. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/trampoline/global.rs +0 -0
  2963. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/trampoline/memory.rs +0 -0
  2964. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/trampoline/table.rs +0 -0
  2965. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/trampoline.rs +0 -0
  2966. data/ext/cargo-vendor/wasmtime-5.0.0/src/trap.rs +618 -0
  2967. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/types/matching.rs +0 -0
  2968. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/types.rs +0 -0
  2969. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/unix.rs +0 -0
  2970. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/values.rs +0 -0
  2971. data/ext/cargo-vendor/{wasmtime-4.0.0 → wasmtime-5.0.0}/src/windows.rs +0 -0
  2972. data/ext/cargo-vendor/wasmtime-asm-macros-5.0.0/.cargo-checksum.json +1 -0
  2973. data/ext/cargo-vendor/wasmtime-asm-macros-5.0.0/Cargo.toml +22 -0
  2974. data/ext/cargo-vendor/wasmtime-asm-macros-5.0.0/src/lib.rs +81 -0
  2975. data/ext/cargo-vendor/wasmtime-cache-5.0.0/.cargo-checksum.json +1 -0
  2976. data/ext/cargo-vendor/wasmtime-cache-5.0.0/Cargo.toml +73 -0
  2977. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/LICENSE +0 -0
  2978. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/build.rs +0 -0
  2979. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/src/config/tests.rs +0 -0
  2980. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/src/config.rs +0 -0
  2981. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/src/lib.rs +0 -0
  2982. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/src/tests.rs +0 -0
  2983. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/src/worker/tests/system_time_stub.rs +0 -0
  2984. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/src/worker/tests.rs +0 -0
  2985. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/src/worker.rs +0 -0
  2986. data/ext/cargo-vendor/{wasmtime-cache-4.0.0 → wasmtime-cache-5.0.0}/tests/cache_write_default_config.rs +0 -0
  2987. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/.cargo-checksum.json +1 -0
  2988. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/Cargo.toml +58 -0
  2989. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/src/bindgen.rs +158 -0
  2990. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/src/component.rs +1191 -0
  2991. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/src/lib.rs +48 -0
  2992. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/char.wit +12 -0
  2993. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/conventions.wit +39 -0
  2994. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/empty.wit +1 -0
  2995. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/flags.wit +54 -0
  2996. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/floats.wit +12 -0
  2997. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/integers.wit +39 -0
  2998. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/lists.wit +84 -0
  2999. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/many-arguments.wit +51 -0
  3000. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/multi-return.wit +13 -0
  3001. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/records.wit +60 -0
  3002. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/simple-functions.wit +16 -0
  3003. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/simple-lists.wit +13 -0
  3004. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/small-anonymous.wit +14 -0
  3005. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/smoke-default.wit +5 -0
  3006. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/smoke-export.wit +5 -0
  3007. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/smoke.wit +5 -0
  3008. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/strings.wit +11 -0
  3009. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/unions.wit +65 -0
  3010. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen/variants.wit +146 -0
  3011. data/ext/cargo-vendor/wasmtime-component-macro-5.0.0/tests/codegen.rs +24 -0
  3012. data/ext/cargo-vendor/wasmtime-component-util-5.0.0/.cargo-checksum.json +1 -0
  3013. data/ext/cargo-vendor/wasmtime-component-util-5.0.0/Cargo.toml +25 -0
  3014. data/ext/cargo-vendor/wasmtime-component-util-5.0.0/src/lib.rs +180 -0
  3015. data/ext/cargo-vendor/wasmtime-cranelift-5.0.0/.cargo-checksum.json +1 -0
  3016. data/ext/cargo-vendor/wasmtime-cranelift-5.0.0/Cargo.toml +84 -0
  3017. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/LICENSE +0 -0
  3018. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/SECURITY.md +0 -0
  3019. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/builder.rs +0 -0
  3020. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/compiler/component.rs +0 -0
  3021. data/ext/cargo-vendor/wasmtime-cranelift-5.0.0/src/compiler.rs +1052 -0
  3022. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/gc.rs +0 -0
  3023. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/address_transform.rs +0 -0
  3024. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/attr.rs +0 -0
  3025. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/expression.rs +0 -0
  3026. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/line_program.rs +0 -0
  3027. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/mod.rs +0 -0
  3028. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/range_info_builder.rs +0 -0
  3029. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/refs.rs +0 -0
  3030. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/simulate.rs +0 -0
  3031. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/unit.rs +0 -0
  3032. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/transform/utils.rs +0 -0
  3033. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug/write_debuginfo.rs +0 -0
  3034. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/debug.rs +0 -0
  3035. data/ext/cargo-vendor/wasmtime-cranelift-5.0.0/src/func_environ.rs +2127 -0
  3036. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/lib.rs +0 -0
  3037. data/ext/cargo-vendor/{wasmtime-cranelift-4.0.0 → wasmtime-cranelift-5.0.0}/src/obj.rs +0 -0
  3038. data/ext/cargo-vendor/wasmtime-environ-5.0.0/.cargo-checksum.json +1 -0
  3039. data/ext/cargo-vendor/wasmtime-environ-5.0.0/Cargo.lock +622 -0
  3040. data/ext/cargo-vendor/wasmtime-environ-5.0.0/Cargo.toml +118 -0
  3041. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/LICENSE +0 -0
  3042. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/examples/factc.rs +0 -0
  3043. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/address_map.rs +0 -0
  3044. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/builtin.rs +0 -0
  3045. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/compilation.rs +0 -0
  3046. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component/compiler.rs +0 -0
  3047. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component/dfg.rs +0 -0
  3048. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component/info.rs +0 -0
  3049. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component/translate/adapt.rs +0 -0
  3050. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component/translate/inline.rs +0 -0
  3051. data/ext/cargo-vendor/wasmtime-environ-5.0.0/src/component/translate.rs +1027 -0
  3052. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component/types.rs +0 -0
  3053. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component/vmcomponent_offsets.rs +0 -0
  3054. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/component.rs +0 -0
  3055. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/fact/core_types.rs +0 -0
  3056. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/fact/signature.rs +0 -0
  3057. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/fact/trampoline.rs +0 -0
  3058. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/fact/transcode.rs +0 -0
  3059. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/fact/traps.rs +0 -0
  3060. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/fact.rs +0 -0
  3061. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/lib.rs +0 -0
  3062. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/module.rs +0 -0
  3063. data/ext/cargo-vendor/wasmtime-environ-5.0.0/src/module_environ.rs +841 -0
  3064. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/module_types.rs +0 -0
  3065. data/ext/cargo-vendor/wasmtime-environ-5.0.0/src/obj.rs +130 -0
  3066. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/ref_bits.rs +0 -0
  3067. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/scopevec.rs +0 -0
  3068. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/stack_map.rs +0 -0
  3069. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/trap_encoding.rs +0 -0
  3070. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/tunables.rs +0 -0
  3071. data/ext/cargo-vendor/{wasmtime-environ-4.0.0 → wasmtime-environ-5.0.0}/src/vmoffsets.rs +0 -0
  3072. data/ext/cargo-vendor/wasmtime-fiber-5.0.0/.cargo-checksum.json +1 -0
  3073. data/ext/cargo-vendor/wasmtime-fiber-5.0.0/Cargo.toml +46 -0
  3074. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/LICENSE +0 -0
  3075. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/build.rs +0 -0
  3076. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/src/lib.rs +0 -0
  3077. data/ext/cargo-vendor/wasmtime-fiber-5.0.0/src/unix/aarch64.rs +184 -0
  3078. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/src/unix/arm.rs +0 -0
  3079. data/ext/cargo-vendor/wasmtime-fiber-5.0.0/src/unix/riscv64.rs +158 -0
  3080. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/src/unix/s390x.S +0 -0
  3081. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/src/unix/x86.rs +0 -0
  3082. data/ext/cargo-vendor/wasmtime-fiber-5.0.0/src/unix/x86_64.rs +160 -0
  3083. data/ext/cargo-vendor/wasmtime-fiber-5.0.0/src/unix.rs +199 -0
  3084. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/src/windows.c +0 -0
  3085. data/ext/cargo-vendor/{wasmtime-fiber-4.0.0 → wasmtime-fiber-5.0.0}/src/windows.rs +0 -0
  3086. data/ext/cargo-vendor/wasmtime-jit-5.0.0/.cargo-checksum.json +1 -0
  3087. data/ext/cargo-vendor/wasmtime-jit-5.0.0/Cargo.toml +103 -0
  3088. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/LICENSE +0 -0
  3089. data/ext/cargo-vendor/wasmtime-jit-5.0.0/src/code_memory.rs +258 -0
  3090. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/debug.rs +0 -0
  3091. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/demangling.rs +0 -0
  3092. data/ext/cargo-vendor/wasmtime-jit-5.0.0/src/instantiate.rs +698 -0
  3093. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/lib.rs +0 -0
  3094. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/profiling/jitdump_disabled.rs +0 -0
  3095. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/profiling/jitdump_linux.rs +0 -0
  3096. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/profiling/vtune.rs +0 -0
  3097. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/profiling/vtune_disabled.rs +0 -0
  3098. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/profiling.rs +0 -0
  3099. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/unwind/systemv.rs +0 -0
  3100. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/unwind/winx64.rs +0 -0
  3101. data/ext/cargo-vendor/{wasmtime-jit-4.0.0 → wasmtime-jit-5.0.0}/src/unwind.rs +0 -0
  3102. data/ext/cargo-vendor/wasmtime-jit-debug-5.0.0/.cargo-checksum.json +1 -0
  3103. data/ext/cargo-vendor/wasmtime-jit-debug-5.0.0/Cargo.toml +58 -0
  3104. data/ext/cargo-vendor/{wasmtime-jit-debug-4.0.0 → wasmtime-jit-debug-5.0.0}/README.md +0 -0
  3105. data/ext/cargo-vendor/{wasmtime-jit-debug-4.0.0 → wasmtime-jit-debug-5.0.0}/src/gdb_jit_int.rs +0 -0
  3106. data/ext/cargo-vendor/{wasmtime-jit-debug-4.0.0 → wasmtime-jit-debug-5.0.0}/src/lib.rs +0 -0
  3107. data/ext/cargo-vendor/{wasmtime-jit-debug-4.0.0 → wasmtime-jit-debug-5.0.0}/src/perf_jitdump.rs +0 -0
  3108. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-5.0.0/.cargo-checksum.json +1 -0
  3109. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-5.0.0/Cargo.toml +34 -0
  3110. data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-3.0.0 → wasmtime-jit-icache-coherence-5.0.0}/src/lib.rs +0 -0
  3111. data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-3.0.0 → wasmtime-jit-icache-coherence-5.0.0}/src/libc.rs +0 -0
  3112. data/ext/cargo-vendor/{wasmtime-jit-icache-coherence-3.0.0 → wasmtime-jit-icache-coherence-5.0.0}/src/win.rs +0 -0
  3113. data/ext/cargo-vendor/wasmtime-runtime-5.0.0/.cargo-checksum.json +1 -0
  3114. data/ext/cargo-vendor/wasmtime-runtime-5.0.0/Cargo.toml +110 -0
  3115. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/LICENSE +0 -0
  3116. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/build.rs +0 -0
  3117. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/component/transcode.rs +0 -0
  3118. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/component.rs +0 -0
  3119. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/cow.rs +0 -0
  3120. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/debug_builtins.rs +0 -0
  3121. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/export.rs +0 -0
  3122. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/externref.rs +0 -0
  3123. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/helpers.c +0 -0
  3124. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/imports.rs +0 -0
  3125. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/instance/allocator/pooling/index_allocator.rs +0 -0
  3126. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/instance/allocator/pooling/unix.rs +0 -0
  3127. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/instance/allocator/pooling/windows.rs +0 -0
  3128. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/instance/allocator/pooling.rs +0 -0
  3129. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/instance/allocator.rs +0 -0
  3130. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/instance.rs +0 -0
  3131. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/lib.rs +0 -0
  3132. data/ext/cargo-vendor/wasmtime-runtime-5.0.0/src/libcalls.rs +494 -0
  3133. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/memory.rs +0 -0
  3134. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/mmap.rs +0 -0
  3135. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/mmap_vec.rs +0 -0
  3136. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/module_id.rs +0 -0
  3137. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/parking_spot.rs +0 -0
  3138. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/table.rs +0 -0
  3139. data/ext/cargo-vendor/wasmtime-runtime-5.0.0/src/trampolines/aarch64.rs +122 -0
  3140. data/ext/cargo-vendor/wasmtime-runtime-5.0.0/src/trampolines/riscv64.rs +120 -0
  3141. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/trampolines/s390x.S +0 -0
  3142. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/trampolines/s390x.rs +0 -0
  3143. data/ext/cargo-vendor/wasmtime-runtime-5.0.0/src/trampolines/x86_64.rs +142 -0
  3144. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/trampolines.rs +0 -0
  3145. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/backtrace/aarch64.rs +0 -0
  3146. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/backtrace/riscv64.rs +0 -0
  3147. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/backtrace/s390x.rs +0 -0
  3148. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/backtrace/x86_64.rs +0 -0
  3149. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/backtrace.rs +0 -0
  3150. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/macos.rs +0 -0
  3151. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/unix.rs +0 -0
  3152. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers/windows.rs +0 -0
  3153. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/traphandlers.rs +0 -0
  3154. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/vmcontext/vm_host_func_context.rs +0 -0
  3155. data/ext/cargo-vendor/{wasmtime-runtime-4.0.0 → wasmtime-runtime-5.0.0}/src/vmcontext.rs +0 -0
  3156. data/ext/cargo-vendor/wasmtime-types-5.0.0/.cargo-checksum.json +1 -0
  3157. data/ext/cargo-vendor/wasmtime-types-5.0.0/Cargo.toml +34 -0
  3158. data/ext/cargo-vendor/{wasmtime-types-4.0.0 → wasmtime-types-5.0.0}/LICENSE +0 -0
  3159. data/ext/cargo-vendor/{wasmtime-types-4.0.0 → wasmtime-types-5.0.0}/src/error.rs +0 -0
  3160. data/ext/cargo-vendor/{wasmtime-types-4.0.0 → wasmtime-types-5.0.0}/src/lib.rs +0 -0
  3161. data/ext/cargo-vendor/wasmtime-wasi-5.0.0/.cargo-checksum.json +1 -0
  3162. data/ext/cargo-vendor/wasmtime-wasi-5.0.0/Cargo.toml +63 -0
  3163. data/ext/cargo-vendor/{wasmtime-wasi-4.0.0 → wasmtime-wasi-5.0.0}/LICENSE +0 -0
  3164. data/ext/cargo-vendor/{wasmtime-wasi-4.0.0 → wasmtime-wasi-5.0.0}/README.md +0 -0
  3165. data/ext/cargo-vendor/{wasmtime-wasi-4.0.0 → wasmtime-wasi-5.0.0}/build.rs +0 -0
  3166. data/ext/cargo-vendor/{wasmtime-wasi-4.0.0 → wasmtime-wasi-5.0.0}/src/lib.rs +0 -0
  3167. data/ext/cargo-vendor/wasmtime-wit-bindgen-5.0.0/.cargo-checksum.json +1 -0
  3168. data/ext/cargo-vendor/wasmtime-wit-bindgen-5.0.0/Cargo.toml +29 -0
  3169. data/ext/cargo-vendor/wasmtime-wit-bindgen-5.0.0/src/lib.rs +1182 -0
  3170. data/ext/cargo-vendor/wasmtime-wit-bindgen-5.0.0/src/rust.rs +412 -0
  3171. data/ext/cargo-vendor/wasmtime-wit-bindgen-5.0.0/src/source.rs +130 -0
  3172. data/ext/cargo-vendor/wasmtime-wit-bindgen-5.0.0/src/types.rs +207 -0
  3173. data/ext/cargo-vendor/wast-52.0.1/.cargo-checksum.json +1 -0
  3174. data/ext/cargo-vendor/wast-52.0.1/Cargo.toml +50 -0
  3175. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/LICENSE +0 -0
  3176. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/README.md +0 -0
  3177. data/ext/cargo-vendor/wast-52.0.1/src/component/alias.rs +253 -0
  3178. data/ext/cargo-vendor/wast-52.0.1/src/component/binary.rs +949 -0
  3179. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component/component.rs +0 -0
  3180. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component/custom.rs +0 -0
  3181. data/ext/cargo-vendor/wast-52.0.1/src/component/expand.rs +851 -0
  3182. data/ext/cargo-vendor/wast-52.0.1/src/component/export.rs +213 -0
  3183. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component/func.rs +0 -0
  3184. data/ext/cargo-vendor/wast-52.0.1/src/component/import.rs +176 -0
  3185. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component/instance.rs +0 -0
  3186. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component/item_ref.rs +0 -0
  3187. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component/module.rs +0 -0
  3188. data/ext/cargo-vendor/wast-52.0.1/src/component/resolve.rs +968 -0
  3189. data/ext/cargo-vendor/wast-52.0.1/src/component/types.rs +965 -0
  3190. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component/wast.rs +0 -0
  3191. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/component.rs +0 -0
  3192. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/binary.rs +0 -0
  3193. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/custom.rs +0 -0
  3194. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/export.rs +0 -0
  3195. data/ext/cargo-vendor/wast-52.0.1/src/core/expr.rs +1892 -0
  3196. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/func.rs +0 -0
  3197. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/global.rs +0 -0
  3198. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/import.rs +0 -0
  3199. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/memory.rs +0 -0
  3200. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/module.rs +0 -0
  3201. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/resolve/deinline_import_export.rs +0 -0
  3202. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/resolve/mod.rs +0 -0
  3203. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/resolve/names.rs +0 -0
  3204. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/resolve/types.rs +0 -0
  3205. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/table.rs +0 -0
  3206. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/tag.rs +0 -0
  3207. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/types.rs +0 -0
  3208. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core/wast.rs +0 -0
  3209. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/core.rs +0 -0
  3210. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/encode.rs +0 -0
  3211. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/error.rs +0 -0
  3212. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/gensym.rs +0 -0
  3213. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/lexer.rs +0 -0
  3214. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/lib.rs +0 -0
  3215. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/names.rs +0 -0
  3216. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/parser.rs +0 -0
  3217. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/token.rs +0 -0
  3218. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/wast.rs +0 -0
  3219. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/src/wat.rs +0 -0
  3220. data/ext/cargo-vendor/wast-52.0.1/tests/annotations.rs +200 -0
  3221. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/comments.rs +0 -0
  3222. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-index.wat +0 -0
  3223. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-index.wat.err +0 -0
  3224. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-name.wat +0 -0
  3225. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-name.wat.err +0 -0
  3226. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-name2.wat +0 -0
  3227. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-name2.wat.err +0 -0
  3228. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-name3.wat +0 -0
  3229. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/bad-name3.wat.err +0 -0
  3230. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/block1.wat +0 -0
  3231. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/block1.wat.err +0 -0
  3232. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/block2.wat +0 -0
  3233. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/block2.wat.err +0 -0
  3234. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/block3.wat +0 -0
  3235. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/block3.wat.err +0 -0
  3236. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment0.wat +0 -0
  3237. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment0.wat.err +0 -0
  3238. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment1.wat +0 -0
  3239. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment1.wat.err +0 -0
  3240. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment2.wat +0 -0
  3241. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment2.wat.err +0 -0
  3242. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment3.wat +0 -0
  3243. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment3.wat.err +0 -0
  3244. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment4.wat +0 -0
  3245. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment4.wat.err +0 -0
  3246. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment5.wat +0 -0
  3247. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment5.wat.err +0 -0
  3248. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment6.wat +0 -0
  3249. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment6.wat.err +0 -0
  3250. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment7.wat +0 -0
  3251. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment7.wat.err +0 -0
  3252. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment8.wat +0 -0
  3253. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-block-comment8.wat.err +0 -0
  3254. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment0.wat +0 -0
  3255. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment0.wat.err +0 -0
  3256. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment1.wat +0 -0
  3257. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment1.wat.err +0 -0
  3258. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment2.wat +0 -0
  3259. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment2.wat.err +0 -0
  3260. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment3.wat +0 -0
  3261. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment3.wat.err +0 -0
  3262. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment4.wat +0 -0
  3263. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment4.wat.err +0 -0
  3264. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment5.wat +0 -0
  3265. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment5.wat.err +0 -0
  3266. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment6.wat +0 -0
  3267. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment6.wat.err +0 -0
  3268. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment7.wat +0 -0
  3269. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment7.wat.err +0 -0
  3270. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment8.wat +0 -0
  3271. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-line-comment8.wat.err +0 -0
  3272. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string0.wat +0 -0
  3273. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string0.wat.err +0 -0
  3274. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string1.wat +0 -0
  3275. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string1.wat.err +0 -0
  3276. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string2.wat +0 -0
  3277. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string2.wat.err +0 -0
  3278. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string3.wat +0 -0
  3279. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string3.wat.err +0 -0
  3280. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string4.wat +0 -0
  3281. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string4.wat.err +0 -0
  3282. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string5.wat +0 -0
  3283. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string5.wat.err +0 -0
  3284. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string6.wat +0 -0
  3285. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string6.wat.err +0 -0
  3286. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string7.wat +0 -0
  3287. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string7.wat.err +0 -0
  3288. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string8.wat +0 -0
  3289. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/confusing-string8.wat.err +0 -0
  3290. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/inline1.wat +0 -0
  3291. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/inline1.wat.err +0 -0
  3292. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/newline-in-string.wat +0 -0
  3293. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/newline-in-string.wat.err +0 -0
  3294. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string1.wat +0 -0
  3295. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string1.wat.err +0 -0
  3296. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string10.wat +0 -0
  3297. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string10.wat.err +0 -0
  3298. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string11.wat +0 -0
  3299. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string11.wat.err +0 -0
  3300. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string12.wat +0 -0
  3301. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string12.wat.err +0 -0
  3302. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string13.wat +0 -0
  3303. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string13.wat.err +0 -0
  3304. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string14.wat +0 -0
  3305. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string14.wat.err +0 -0
  3306. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string15.wat +0 -0
  3307. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string15.wat.err +0 -0
  3308. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string16.wat +0 -0
  3309. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string16.wat.err +0 -0
  3310. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string2.wat +0 -0
  3311. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string2.wat.err +0 -0
  3312. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string3.wat +0 -0
  3313. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string3.wat.err +0 -0
  3314. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string4.wat +0 -0
  3315. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string4.wat.err +0 -0
  3316. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string5.wat +0 -0
  3317. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string5.wat.err +0 -0
  3318. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string6.wat +0 -0
  3319. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string6.wat.err +0 -0
  3320. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string7.wat +0 -0
  3321. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string7.wat.err +0 -0
  3322. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string8.wat +0 -0
  3323. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string8.wat.err +0 -0
  3324. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string9.wat +0 -0
  3325. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/string9.wat.err +0 -0
  3326. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/unbalanced.wat +0 -0
  3327. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail/unbalanced.wat.err +0 -0
  3328. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/parse-fail.rs +0 -0
  3329. data/ext/cargo-vendor/{wast-50.0.0 → wast-52.0.1}/tests/recursive.rs +0 -0
  3330. data/ext/cargo-vendor/wat-1.0.55/.cargo-checksum.json +1 -0
  3331. data/ext/cargo-vendor/wat-1.0.55/Cargo.toml +27 -0
  3332. data/ext/cargo-vendor/{wat-1.0.52 → wat-1.0.55}/LICENSE +0 -0
  3333. data/ext/cargo-vendor/{wat-1.0.52 → wat-1.0.55}/README.md +0 -0
  3334. data/ext/cargo-vendor/{wat-1.0.52 → wat-1.0.55}/src/lib.rs +0 -0
  3335. data/ext/cargo-vendor/wiggle-5.0.0/.cargo-checksum.json +1 -0
  3336. data/ext/cargo-vendor/wiggle-5.0.0/Cargo.toml +109 -0
  3337. data/ext/cargo-vendor/{wiggle-4.0.0 → wiggle-5.0.0}/LICENSE +0 -0
  3338. data/ext/cargo-vendor/{wiggle-4.0.0 → wiggle-5.0.0}/README.md +0 -0
  3339. data/ext/cargo-vendor/{wiggle-4.0.0 → wiggle-5.0.0}/src/borrow.rs +0 -0
  3340. data/ext/cargo-vendor/{wiggle-4.0.0 → wiggle-5.0.0}/src/error.rs +0 -0
  3341. data/ext/cargo-vendor/{wiggle-4.0.0 → wiggle-5.0.0}/src/guest_type.rs +0 -0
  3342. data/ext/cargo-vendor/wiggle-5.0.0/src/lib.rs +1186 -0
  3343. data/ext/cargo-vendor/{wiggle-4.0.0 → wiggle-5.0.0}/src/region.rs +0 -0
  3344. data/ext/cargo-vendor/{wiggle-4.0.0 → wiggle-5.0.0}/src/wasmtime.rs +0 -0
  3345. data/ext/cargo-vendor/wiggle-generate-5.0.0/.cargo-checksum.json +1 -0
  3346. data/ext/cargo-vendor/wiggle-generate-5.0.0/Cargo.toml +61 -0
  3347. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/LICENSE +0 -0
  3348. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/README.md +0 -0
  3349. data/ext/cargo-vendor/wiggle-generate-5.0.0/src/codegen_settings.rs +151 -0
  3350. data/ext/cargo-vendor/wiggle-generate-5.0.0/src/config.rs +696 -0
  3351. data/ext/cargo-vendor/wiggle-generate-5.0.0/src/funcs.rs +435 -0
  3352. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/lib.rs +0 -0
  3353. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/lifetimes.rs +0 -0
  3354. data/ext/cargo-vendor/wiggle-generate-5.0.0/src/module_trait.rs +102 -0
  3355. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/names.rs +0 -0
  3356. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/types/error.rs +0 -0
  3357. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/types/flags.rs +0 -0
  3358. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/types/handle.rs +0 -0
  3359. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/types/mod.rs +0 -0
  3360. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/types/record.rs +0 -0
  3361. data/ext/cargo-vendor/{wiggle-generate-4.0.0 → wiggle-generate-5.0.0}/src/types/variant.rs +0 -0
  3362. data/ext/cargo-vendor/wiggle-generate-5.0.0/src/wasmtime.rs +170 -0
  3363. data/ext/cargo-vendor/wiggle-macro-5.0.0/.cargo-checksum.json +1 -0
  3364. data/ext/cargo-vendor/wiggle-macro-5.0.0/Cargo.toml +55 -0
  3365. data/ext/cargo-vendor/{wiggle-macro-4.0.0 → wiggle-macro-5.0.0}/LICENSE +0 -0
  3366. data/ext/cargo-vendor/wiggle-macro-5.0.0/src/lib.rs +210 -0
  3367. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.1/.cargo-checksum.json +1 -0
  3368. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.1/Cargo.toml +23 -0
  3369. data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.42.0 → windows_aarch64_gnullvm-0.42.1}/build.rs +0 -0
  3370. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.1/lib/libwindows.a +0 -0
  3371. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.1/license-apache-2.0 +201 -0
  3372. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.1/license-mit +21 -0
  3373. data/ext/cargo-vendor/{windows_aarch64_gnullvm-0.42.0 → windows_aarch64_gnullvm-0.42.1}/src/lib.rs +0 -0
  3374. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.1/.cargo-checksum.json +1 -0
  3375. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.1/Cargo.toml +23 -0
  3376. data/ext/cargo-vendor/{windows_aarch64_msvc-0.42.0 → windows_aarch64_msvc-0.42.1}/build.rs +0 -0
  3377. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.1/lib/windows.lib +0 -0
  3378. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.1/license-apache-2.0 +201 -0
  3379. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.1/license-mit +21 -0
  3380. data/ext/cargo-vendor/{windows_aarch64_msvc-0.42.0 → windows_aarch64_msvc-0.42.1}/src/lib.rs +0 -0
  3381. data/ext/cargo-vendor/windows_i686_gnu-0.42.1/.cargo-checksum.json +1 -0
  3382. data/ext/cargo-vendor/windows_i686_gnu-0.42.1/Cargo.toml +23 -0
  3383. data/ext/cargo-vendor/{windows_i686_gnu-0.42.0 → windows_i686_gnu-0.42.1}/build.rs +0 -0
  3384. data/ext/cargo-vendor/windows_i686_gnu-0.42.1/lib/libwindows.a +0 -0
  3385. data/ext/cargo-vendor/windows_i686_gnu-0.42.1/license-apache-2.0 +201 -0
  3386. data/ext/cargo-vendor/windows_i686_gnu-0.42.1/license-mit +21 -0
  3387. data/ext/cargo-vendor/{windows_i686_gnu-0.42.0 → windows_i686_gnu-0.42.1}/src/lib.rs +0 -0
  3388. data/ext/cargo-vendor/windows_i686_msvc-0.42.1/.cargo-checksum.json +1 -0
  3389. data/ext/cargo-vendor/windows_i686_msvc-0.42.1/Cargo.toml +23 -0
  3390. data/ext/cargo-vendor/{windows_i686_msvc-0.42.0 → windows_i686_msvc-0.42.1}/build.rs +0 -0
  3391. data/ext/cargo-vendor/windows_i686_msvc-0.42.1/lib/windows.lib +0 -0
  3392. data/ext/cargo-vendor/windows_i686_msvc-0.42.1/license-apache-2.0 +201 -0
  3393. data/ext/cargo-vendor/windows_i686_msvc-0.42.1/license-mit +21 -0
  3394. data/ext/cargo-vendor/{windows_i686_msvc-0.42.0 → windows_i686_msvc-0.42.1}/src/lib.rs +0 -0
  3395. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.1/.cargo-checksum.json +1 -0
  3396. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.1/Cargo.toml +23 -0
  3397. data/ext/cargo-vendor/{windows_x86_64_gnu-0.42.0 → windows_x86_64_gnu-0.42.1}/build.rs +0 -0
  3398. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.1/lib/libwindows.a +0 -0
  3399. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.1/license-apache-2.0 +201 -0
  3400. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.1/license-mit +21 -0
  3401. data/ext/cargo-vendor/{windows_x86_64_gnu-0.42.0 → windows_x86_64_gnu-0.42.1}/src/lib.rs +0 -0
  3402. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.1/.cargo-checksum.json +1 -0
  3403. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.1/Cargo.toml +23 -0
  3404. data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.42.0 → windows_x86_64_gnullvm-0.42.1}/build.rs +0 -0
  3405. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.1/lib/libwindows.a +0 -0
  3406. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.1/license-apache-2.0 +201 -0
  3407. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.1/license-mit +21 -0
  3408. data/ext/cargo-vendor/{windows_x86_64_gnullvm-0.42.0 → windows_x86_64_gnullvm-0.42.1}/src/lib.rs +0 -0
  3409. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.1/.cargo-checksum.json +1 -0
  3410. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.1/Cargo.toml +23 -0
  3411. data/ext/cargo-vendor/{windows_x86_64_msvc-0.42.0 → windows_x86_64_msvc-0.42.1}/build.rs +0 -0
  3412. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.1/lib/windows.lib +0 -0
  3413. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.1/license-apache-2.0 +201 -0
  3414. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.1/license-mit +21 -0
  3415. data/ext/cargo-vendor/{windows_x86_64_msvc-0.42.0 → windows_x86_64_msvc-0.42.1}/src/lib.rs +0 -0
  3416. data/ext/cargo-vendor/wit-parser-0.3.1/.cargo-checksum.json +1 -0
  3417. data/ext/cargo-vendor/wit-parser-0.3.1/Cargo.toml +54 -0
  3418. data/ext/cargo-vendor/wit-parser-0.3.1/README.md +13 -0
  3419. data/ext/cargo-vendor/wit-parser-0.3.1/src/abi.rs +2140 -0
  3420. data/ext/cargo-vendor/wit-parser-0.3.1/src/ast/lex.rs +747 -0
  3421. data/ext/cargo-vendor/wit-parser-0.3.1/src/ast/resolve.rs +589 -0
  3422. data/ext/cargo-vendor/wit-parser-0.3.1/src/ast.rs +827 -0
  3423. data/ext/cargo-vendor/wit-parser-0.3.1/src/lib.rs +683 -0
  3424. data/ext/cargo-vendor/wit-parser-0.3.1/src/sizealign.rs +137 -0
  3425. data/ext/cargo-vendor/wit-parser-0.3.1/tests/all.rs +426 -0
  3426. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/comments.wit +23 -0
  3427. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/comments.wit.result +22 -0
  3428. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/embedded.wit.md +32 -0
  3429. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/embedded.wit.md.result +24 -0
  3430. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/empty.wit +0 -0
  3431. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/empty.wit.result +1 -0
  3432. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/functions.wit +12 -0
  3433. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/functions.wit.result +103 -0
  3434. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/alias-no-type.wit +4 -0
  3435. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/alias-no-type.wit.result +5 -0
  3436. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/async.wit.result +5 -0
  3437. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/async1.wit.result +5 -0
  3438. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/bad-list.wit +7 -0
  3439. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/bad-list.wit.result +5 -0
  3440. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle.wit +5 -0
  3441. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle.wit.result +5 -0
  3442. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle2.wit +6 -0
  3443. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle2.wit.result +5 -0
  3444. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle3.wit +6 -0
  3445. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle3.wit.result +5 -0
  3446. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle4.wit +6 -0
  3447. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle4.wit.result +5 -0
  3448. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle5.wit +6 -0
  3449. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/cycle5.wit.result +5 -0
  3450. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/dangling-type.wit +5 -0
  3451. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/dangling-type.wit.result +5 -0
  3452. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-functions.wit +6 -0
  3453. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-functions.wit.result +5 -0
  3454. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-interface.wit +4 -0
  3455. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-interface.wit.result +5 -0
  3456. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-type.wit +6 -0
  3457. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-type.wit.result +5 -0
  3458. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-value.wit +6 -0
  3459. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/duplicate-value.wit.result +5 -0
  3460. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/empty-enum.wit +5 -0
  3461. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/empty-enum.wit.result +5 -0
  3462. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/empty-union.wit +5 -0
  3463. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/empty-union.wit.result +5 -0
  3464. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/empty-variant1.wit +5 -0
  3465. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/empty-variant1.wit.result +5 -0
  3466. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/invalid-md.md +7 -0
  3467. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/invalid-md.wit.result +5 -0
  3468. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/invalid-toplevel.wit +5 -0
  3469. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/invalid-toplevel.wit.result +5 -0
  3470. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/keyword.wit +5 -0
  3471. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/keyword.wit.result +5 -0
  3472. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/undefined-typed.wit +5 -0
  3473. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/undefined-typed.wit.result +5 -0
  3474. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/unknown-interface.wit +5 -0
  3475. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/unknown-interface.wit.result +5 -0
  3476. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/unterminated-string.wit.result +5 -0
  3477. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-default1.wit +5 -0
  3478. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-default1.wit.result +5 -0
  3479. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-default2.wit +6 -0
  3480. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-default2.wit.result +5 -0
  3481. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-default3.wit +8 -0
  3482. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-default3.wit.result +5 -0
  3483. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-same-fields.wit +9 -0
  3484. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-same-fields.wit.result +5 -0
  3485. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-same-fields2.wit +6 -0
  3486. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/parse-fail/world-same-fields2.wit.result +5 -0
  3487. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/shared-types.wit +8 -0
  3488. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/shared-types.wit.result +56 -0
  3489. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/type-then-eof.wit +3 -0
  3490. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/type-then-eof.wit.result +16 -0
  3491. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/types.wit +59 -0
  3492. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/types.wit.result +474 -0
  3493. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/values.wit +6 -0
  3494. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/values.wit.result +45 -0
  3495. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/wasi.wit +176 -0
  3496. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/wasi.wit.result +109 -0
  3497. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/world-default.wit +7 -0
  3498. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/world-default.wit.result +29 -0
  3499. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/worlds.wit +18 -0
  3500. data/ext/cargo-vendor/wit-parser-0.3.1/tests/ui/worlds.wit.result +72 -0
  3501. data/ext/cargo-vendor/zstd-sys-2.0.5+zstd.1.5.2/.cargo-checksum.json +1 -0
  3502. data/ext/cargo-vendor/zstd-sys-2.0.5+zstd.1.5.2/.cargo_vcs_info.json +6 -0
  3503. data/ext/cargo-vendor/zstd-sys-2.0.5+zstd.1.5.2/Cargo.toml +84 -0
  3504. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/LICENSE +0 -0
  3505. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/LICENSE.Apache-2.0 +0 -0
  3506. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/LICENSE.BSD-3-Clause +0 -0
  3507. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/LICENSE.Mit +0 -0
  3508. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/Readme.md +0 -0
  3509. data/ext/cargo-vendor/zstd-sys-2.0.5+zstd.1.5.2/build.rs +259 -0
  3510. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zdict.rs +0 -0
  3511. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zdict_experimental.rs +0 -0
  3512. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zdict_std.rs +0 -0
  3513. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zdict_std_experimental.rs +0 -0
  3514. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zstd.rs +0 -0
  3515. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zstd_experimental.rs +0 -0
  3516. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zstd_std.rs +0 -0
  3517. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/bindings_zstd_std_experimental.rs +0 -0
  3518. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/lib.rs +0 -0
  3519. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/src/wasm_shim.rs +0 -0
  3520. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/test_it.sh +0 -0
  3521. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/update_bindings.sh +0 -0
  3522. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/update_zstd.sh +0 -0
  3523. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/wasm-shim/stdlib.h +0 -0
  3524. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/wasm-shim/string.h +0 -0
  3525. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zdict.h +0 -0
  3526. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/COPYING +0 -0
  3527. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/LICENSE +0 -0
  3528. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/bitstream.h +0 -0
  3529. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/compiler.h +0 -0
  3530. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/cpu.h +0 -0
  3531. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/debug.c +0 -0
  3532. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/debug.h +0 -0
  3533. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/entropy_common.c +0 -0
  3534. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/error_private.c +0 -0
  3535. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/error_private.h +0 -0
  3536. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/fse.h +0 -0
  3537. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/fse_decompress.c +0 -0
  3538. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/huf.h +0 -0
  3539. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/mem.h +0 -0
  3540. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/pool.c +0 -0
  3541. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/pool.h +0 -0
  3542. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/portability_macros.h +0 -0
  3543. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/threading.c +0 -0
  3544. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/threading.h +0 -0
  3545. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/xxhash.c +0 -0
  3546. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/xxhash.h +0 -0
  3547. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/zstd_common.c +0 -0
  3548. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/zstd_deps.h +0 -0
  3549. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/zstd_internal.h +0 -0
  3550. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/common/zstd_trace.h +0 -0
  3551. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/clevels.h +0 -0
  3552. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/fse_compress.c +0 -0
  3553. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/hist.c +0 -0
  3554. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/hist.h +0 -0
  3555. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/huf_compress.c +0 -0
  3556. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress.c +0 -0
  3557. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress_internal.h +0 -0
  3558. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress_literals.c +0 -0
  3559. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress_literals.h +0 -0
  3560. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress_sequences.c +0 -0
  3561. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress_sequences.h +0 -0
  3562. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress_superblock.c +0 -0
  3563. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_compress_superblock.h +0 -0
  3564. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_cwksp.h +0 -0
  3565. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_double_fast.c +0 -0
  3566. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_double_fast.h +0 -0
  3567. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_fast.c +0 -0
  3568. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_fast.h +0 -0
  3569. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_lazy.c +0 -0
  3570. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_lazy.h +0 -0
  3571. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_ldm.c +0 -0
  3572. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_ldm.h +0 -0
  3573. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_ldm_geartab.h +0 -0
  3574. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_opt.c +0 -0
  3575. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstd_opt.h +0 -0
  3576. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstdmt_compress.c +0 -0
  3577. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/compress/zstdmt_compress.h +0 -0
  3578. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/huf_decompress.c +0 -0
  3579. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/huf_decompress_amd64.S +0 -0
  3580. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/zstd_ddict.c +0 -0
  3581. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/zstd_ddict.h +0 -0
  3582. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/zstd_decompress.c +0 -0
  3583. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/zstd_decompress_block.c +0 -0
  3584. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/zstd_decompress_block.h +0 -0
  3585. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/decompress/zstd_decompress_internal.h +0 -0
  3586. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/deprecated/zbuff.h +0 -0
  3587. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/deprecated/zbuff_common.c +0 -0
  3588. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/deprecated/zbuff_compress.c +0 -0
  3589. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/deprecated/zbuff_decompress.c +0 -0
  3590. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/dictBuilder/cover.c +0 -0
  3591. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/dictBuilder/cover.h +0 -0
  3592. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/dictBuilder/divsufsort.c +0 -0
  3593. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/dictBuilder/divsufsort.h +0 -0
  3594. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/dictBuilder/fastcover.c +0 -0
  3595. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/dictBuilder/zdict.c +0 -0
  3596. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_legacy.h +0 -0
  3597. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v01.c +0 -0
  3598. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v01.h +0 -0
  3599. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v02.c +0 -0
  3600. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v02.h +0 -0
  3601. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v03.c +0 -0
  3602. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v03.h +0 -0
  3603. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v04.c +0 -0
  3604. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v04.h +0 -0
  3605. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v05.c +0 -0
  3606. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v05.h +0 -0
  3607. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v06.c +0 -0
  3608. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v06.h +0 -0
  3609. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v07.c +0 -0
  3610. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/legacy/zstd_v07.h +0 -0
  3611. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/zdict.h +0 -0
  3612. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/zstd.h +0 -0
  3613. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd/lib/zstd_errors.h +0 -0
  3614. data/ext/cargo-vendor/{zstd-sys-2.0.4+zstd.1.5.2 → zstd-sys-2.0.5+zstd.1.5.2}/zstd.h +0 -0
  3615. data/ext/src/helpers/macros.rs +15 -0
  3616. data/ext/src/ruby_api/caller.rs +2 -2
  3617. data/ext/src/ruby_api/externals.rs +2 -2
  3618. data/ext/src/ruby_api/func.rs +2 -2
  3619. data/ext/src/ruby_api/global.rs +2 -2
  3620. data/ext/src/ruby_api/memory/unsafe_slice.rs +197 -0
  3621. data/ext/src/ruby_api/memory.rs +66 -4
  3622. data/ext/src/ruby_api/store.rs +19 -4
  3623. data/ext/src/ruby_api/table.rs +2 -2
  3624. data/lib/wasmtime/version.rb +1 -1
  3625. metadata +3614 -3353
  3626. data/ext/cargo-vendor/async-trait-0.1.59/.cargo-checksum.json +0 -1
  3627. data/ext/cargo-vendor/async-trait-0.1.59/Cargo.toml +0 -62
  3628. data/ext/cargo-vendor/async-trait-0.1.59/README.md +0 -262
  3629. data/ext/cargo-vendor/async-trait-0.1.59/build.rs +0 -29
  3630. data/ext/cargo-vendor/async-trait-0.1.59/src/expand.rs +0 -473
  3631. data/ext/cargo-vendor/async-trait-0.1.59/src/lifetime.rs +0 -115
  3632. data/ext/cargo-vendor/async-trait-0.1.59/tests/test.rs +0 -1463
  3633. data/ext/cargo-vendor/atty-0.2.14/.cargo-checksum.json +0 -1
  3634. data/ext/cargo-vendor/atty-0.2.14/CHANGELOG.md +0 -73
  3635. data/ext/cargo-vendor/atty-0.2.14/Cargo.lock +0 -49
  3636. data/ext/cargo-vendor/atty-0.2.14/Cargo.toml +0 -34
  3637. data/ext/cargo-vendor/atty-0.2.14/LICENSE +0 -20
  3638. data/ext/cargo-vendor/atty-0.2.14/README.md +0 -74
  3639. data/ext/cargo-vendor/atty-0.2.14/examples/atty.rs +0 -9
  3640. data/ext/cargo-vendor/atty-0.2.14/rustfmt.toml +0 -4
  3641. data/ext/cargo-vendor/atty-0.2.14/src/lib.rs +0 -210
  3642. data/ext/cargo-vendor/bumpalo-3.11.1/.cargo-checksum.json +0 -1
  3643. data/ext/cargo-vendor/bumpalo-3.11.1/CHANGELOG.md +0 -637
  3644. data/ext/cargo-vendor/bumpalo-3.11.1/Cargo.toml +0 -67
  3645. data/ext/cargo-vendor/bumpalo-3.11.1/src/boxed.rs +0 -684
  3646. data/ext/cargo-vendor/bumpalo-3.11.1/src/collections/string.rs +0 -2123
  3647. data/ext/cargo-vendor/bumpalo-3.11.1/src/collections/vec.rs +0 -2594
  3648. data/ext/cargo-vendor/bumpalo-3.11.1/src/lib.rs +0 -2019
  3649. data/ext/cargo-vendor/cap-fs-ext-1.0.2/.cargo-checksum.json +0 -1
  3650. data/ext/cargo-vendor/cap-fs-ext-1.0.2/Cargo.toml +0 -63
  3651. data/ext/cargo-vendor/cap-primitives-1.0.2/.cargo-checksum.json +0 -1
  3652. data/ext/cargo-vendor/cap-primitives-1.0.2/Cargo.toml +0 -79
  3653. data/ext/cargo-vendor/cap-primitives-1.0.2/src/fs/via_parent/rename.rs +0 -31
  3654. data/ext/cargo-vendor/cap-primitives-1.0.2/src/rustix/fs/dir_utils.rs +0 -218
  3655. data/ext/cargo-vendor/cap-rand-1.0.2/.cargo-checksum.json +0 -1
  3656. data/ext/cargo-vendor/cap-rand-1.0.2/Cargo.toml +0 -38
  3657. data/ext/cargo-vendor/cap-std-1.0.2/.cargo-checksum.json +0 -1
  3658. data/ext/cargo-vendor/cap-std-1.0.2/Cargo.toml +0 -70
  3659. data/ext/cargo-vendor/cap-std-1.0.2/src/fs/dir.rs +0 -824
  3660. data/ext/cargo-vendor/cap-std-1.0.2/src/fs/file.rs +0 -576
  3661. data/ext/cargo-vendor/cap-std-1.0.2/src/fs_utf8/dir.rs +0 -745
  3662. data/ext/cargo-vendor/cap-std-1.0.2/src/fs_utf8/file.rs +0 -571
  3663. data/ext/cargo-vendor/cap-std-1.0.2/src/net/tcp_listener.rs +0 -229
  3664. data/ext/cargo-vendor/cap-std-1.0.2/src/net/tcp_stream.rs +0 -418
  3665. data/ext/cargo-vendor/cap-std-1.0.2/src/net/udp_socket.rs +0 -399
  3666. data/ext/cargo-vendor/cap-time-ext-1.0.2/.cargo-checksum.json +0 -1
  3667. data/ext/cargo-vendor/cap-time-ext-1.0.2/Cargo.toml +0 -42
  3668. data/ext/cargo-vendor/cc-1.0.77/.cargo-checksum.json +0 -1
  3669. data/ext/cargo-vendor/cc-1.0.77/Cargo.lock +0 -110
  3670. data/ext/cargo-vendor/cc-1.0.77/Cargo.toml +0 -39
  3671. data/ext/cargo-vendor/cc-1.0.77/src/lib.rs +0 -3509
  3672. data/ext/cargo-vendor/cranelift-bforest-0.91.0/.cargo-checksum.json +0 -1
  3673. data/ext/cargo-vendor/cranelift-bforest-0.91.0/Cargo.toml +0 -34
  3674. data/ext/cargo-vendor/cranelift-codegen-0.91.0/.cargo-checksum.json +0 -1
  3675. data/ext/cargo-vendor/cranelift-codegen-0.91.0/Cargo.toml +0 -148
  3676. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/alias_analysis.rs +0 -389
  3677. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/context.rs +0 -382
  3678. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/cursor.rs +0 -666
  3679. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/dce.rs +0 -36
  3680. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/egraph/elaborate.rs +0 -630
  3681. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/egraph/node.rs +0 -366
  3682. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/egraph/stores.rs +0 -293
  3683. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/egraph.rs +0 -429
  3684. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/inst_predicates.rs +0 -154
  3685. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/builder.rs +0 -279
  3686. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/dfg.rs +0 -1487
  3687. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/entities.rs +0 -625
  3688. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/function.rs +0 -541
  3689. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/heap.rs +0 -67
  3690. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/immediates.rs +0 -1628
  3691. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/instructions.rs +0 -865
  3692. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/layout.rs +0 -1345
  3693. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/mod.rs +0 -109
  3694. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/progpoint.rs +0 -164
  3695. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/sourceloc.rs +0 -121
  3696. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/ir/types.rs +0 -664
  3697. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/abi.rs +0 -1275
  3698. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/inst/mod.rs +0 -3095
  3699. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/inst.isle +0 -3749
  3700. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/lower/isle.rs +0 -736
  3701. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/lower.isle +0 -2530
  3702. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/lower.rs +0 -799
  3703. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/lower_inst.rs +0 -322
  3704. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/aarch64/mod.rs +0 -431
  3705. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/abi.rs +0 -717
  3706. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/inst/emit.rs +0 -2919
  3707. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/inst/emit_tests.rs +0 -2248
  3708. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/inst/mod.rs +0 -1743
  3709. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/inst.isle +0 -2140
  3710. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/lower/isle.rs +0 -518
  3711. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/lower.isle +0 -880
  3712. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/lower.rs +0 -62
  3713. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/lower_inst.rs +0 -36
  3714. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/riscv64/mod.rs +0 -257
  3715. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/abi.rs +0 -945
  3716. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/inst/emit.rs +0 -3669
  3717. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/inst/emit_tests.rs +0 -13419
  3718. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/inst/mod.rs +0 -3521
  3719. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/inst.isle +0 -5049
  3720. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/lower/isle.rs +0 -1052
  3721. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/lower.isle +0 -4016
  3722. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/s390x/lower.rs +0 -299
  3723. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/abi.rs +0 -974
  3724. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/inst/args.rs +0 -1846
  3725. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/inst/emit.rs +0 -3225
  3726. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/inst/emit_tests.rs +0 -5040
  3727. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/inst/mod.rs +0 -2616
  3728. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/inst.isle +0 -3914
  3729. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/lower/isle/generated_code.rs +0 -9
  3730. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/lower/isle.rs +0 -1087
  3731. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/lower.isle +0 -3785
  3732. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/lower.rs +0 -618
  3733. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isa/x64/mod.rs +0 -488
  3734. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/isle_prelude.rs +0 -589
  3735. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/legalizer/heap.rs +0 -489
  3736. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/legalizer/mod.rs +0 -343
  3737. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/lib.rs +0 -136
  3738. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/licm.rs +0 -243
  3739. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/loop_analysis.rs +0 -443
  3740. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/abi.rs +0 -2408
  3741. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/blockorder.rs +0 -704
  3742. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/buffer.rs +0 -2106
  3743. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/compile.rs +0 -92
  3744. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/helpers.rs +0 -43
  3745. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/inst_common.rs +0 -85
  3746. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/isle.rs +0 -843
  3747. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/lower.rs +0 -1378
  3748. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/mod.rs +0 -443
  3749. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/machinst/vcode.rs +0 -1571
  3750. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/nan_canonicalization.rs +0 -104
  3751. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/opts/algebraic.isle +0 -203
  3752. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/opts/cprop.isle +0 -134
  3753. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/opts.rs +0 -308
  3754. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/prelude.isle +0 -419
  3755. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/prelude_lower.isle +0 -745
  3756. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/prelude_opt.isle +0 -61
  3757. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/remove_constant_phis.rs +0 -425
  3758. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/settings.rs +0 -596
  3759. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/simple_gvn.rs +0 -150
  3760. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/simple_preopt.rs +0 -933
  3761. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/souper_harvest.rs +0 -576
  3762. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/timing.rs +0 -264
  3763. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/verifier/flags.rs +0 -161
  3764. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/verifier/mod.rs +0 -1937
  3765. data/ext/cargo-vendor/cranelift-codegen-0.91.0/src/write.rs +0 -709
  3766. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/.cargo-checksum.json +0 -1
  3767. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/Cargo.toml +0 -26
  3768. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/cdsl/formats.rs +0 -143
  3769. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/cdsl/instructions.rs +0 -473
  3770. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/cdsl/operands.rs +0 -182
  3771. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/cdsl/types.rs +0 -602
  3772. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/cdsl/typevar.rs +0 -995
  3773. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/gen_inst.rs +0 -1721
  3774. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/gen_types.rs +0 -80
  3775. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/isa/riscv64.rs +0 -27
  3776. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/shared/entities.rs +0 -90
  3777. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/shared/formats.rs +0 -240
  3778. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/shared/immediates.rs +0 -230
  3779. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/shared/instructions.rs +0 -3944
  3780. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/shared/settings.rs +0 -370
  3781. data/ext/cargo-vendor/cranelift-codegen-meta-0.91.0/src/shared/types.rs +0 -180
  3782. data/ext/cargo-vendor/cranelift-codegen-shared-0.91.0/.cargo-checksum.json +0 -1
  3783. data/ext/cargo-vendor/cranelift-codegen-shared-0.91.0/Cargo.toml +0 -22
  3784. data/ext/cargo-vendor/cranelift-egraph-0.91.0/.cargo-checksum.json +0 -1
  3785. data/ext/cargo-vendor/cranelift-egraph-0.91.0/Cargo.toml +0 -45
  3786. data/ext/cargo-vendor/cranelift-egraph-0.91.0/src/bumpvec.rs +0 -524
  3787. data/ext/cargo-vendor/cranelift-egraph-0.91.0/src/ctxhash.rs +0 -281
  3788. data/ext/cargo-vendor/cranelift-egraph-0.91.0/src/lib.rs +0 -666
  3789. data/ext/cargo-vendor/cranelift-egraph-0.91.0/src/unionfind.rs +0 -85
  3790. data/ext/cargo-vendor/cranelift-entity-0.91.0/.cargo-checksum.json +0 -1
  3791. data/ext/cargo-vendor/cranelift-entity-0.91.0/Cargo.toml +0 -38
  3792. data/ext/cargo-vendor/cranelift-frontend-0.91.0/.cargo-checksum.json +0 -1
  3793. data/ext/cargo-vendor/cranelift-frontend-0.91.0/Cargo.toml +0 -52
  3794. data/ext/cargo-vendor/cranelift-frontend-0.91.0/src/frontend.rs +0 -1841
  3795. data/ext/cargo-vendor/cranelift-frontend-0.91.0/src/ssa.rs +0 -1399
  3796. data/ext/cargo-vendor/cranelift-isle-0.91.0/.cargo-checksum.json +0 -1
  3797. data/ext/cargo-vendor/cranelift-isle-0.91.0/Cargo.toml +0 -37
  3798. data/ext/cargo-vendor/cranelift-isle-0.91.0/isle_examples/link/borrows.isle +0 -15
  3799. data/ext/cargo-vendor/cranelift-isle-0.91.0/isle_examples/link/iflets.isle +0 -29
  3800. data/ext/cargo-vendor/cranelift-isle-0.91.0/isle_examples/link/multi_constructor_main.rs +0 -57
  3801. data/ext/cargo-vendor/cranelift-isle-0.91.0/isle_examples/link/multi_extractor.isle +0 -14
  3802. data/ext/cargo-vendor/cranelift-isle-0.91.0/isle_examples/link/multi_extractor_main.rs +0 -46
  3803. data/ext/cargo-vendor/cranelift-isle-0.91.0/isle_examples/run/iconst.isle +0 -17
  3804. data/ext/cargo-vendor/cranelift-isle-0.91.0/isle_examples/run/let_shadowing_main.rs +0 -27
  3805. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/ast.rs +0 -419
  3806. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/codegen.rs +0 -1071
  3807. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/ir.rs +0 -424
  3808. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/lib.rs +0 -227
  3809. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/overlap.rs +0 -134
  3810. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/parser.rs +0 -579
  3811. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/sema.rs +0 -2404
  3812. data/ext/cargo-vendor/cranelift-isle-0.91.0/src/trie_again.rs +0 -629
  3813. data/ext/cargo-vendor/cranelift-native-0.91.0/.cargo-checksum.json +0 -1
  3814. data/ext/cargo-vendor/cranelift-native-0.91.0/Cargo.toml +0 -40
  3815. data/ext/cargo-vendor/cranelift-wasm-0.91.0/.cargo-checksum.json +0 -1
  3816. data/ext/cargo-vendor/cranelift-wasm-0.91.0/Cargo.toml +0 -87
  3817. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/code_translator.rs +0 -3094
  3818. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/environ/dummy.rs +0 -885
  3819. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/environ/mod.rs +0 -10
  3820. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/environ/spec.rs +0 -764
  3821. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/func_translator.rs +0 -417
  3822. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/lib.rs +0 -75
  3823. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/module_translator.rs +0 -129
  3824. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/sections_translator.rs +0 -426
  3825. data/ext/cargo-vendor/cranelift-wasm-0.91.0/src/state.rs +0 -540
  3826. data/ext/cargo-vendor/env_logger-0.9.3/.cargo-checksum.json +0 -1
  3827. data/ext/cargo-vendor/env_logger-0.9.3/CHANGELOG.md +0 -3
  3828. data/ext/cargo-vendor/env_logger-0.9.3/Cargo.toml +0 -85
  3829. data/ext/cargo-vendor/env_logger-0.9.3/src/filter/mod.rs +0 -868
  3830. data/ext/cargo-vendor/env_logger-0.9.3/src/fmt/mod.rs +0 -652
  3831. data/ext/cargo-vendor/env_logger-0.9.3/src/fmt/writer/atty.rs +0 -32
  3832. data/ext/cargo-vendor/env_logger-0.9.3/src/fmt/writer/mod.rs +0 -252
  3833. data/ext/cargo-vendor/env_logger-0.9.3/src/fmt/writer/termcolor/extern_impl.rs +0 -532
  3834. data/ext/cargo-vendor/env_logger-0.9.3/src/fmt/writer/termcolor/mod.rs +0 -12
  3835. data/ext/cargo-vendor/env_logger-0.9.3/src/lib.rs +0 -1311
  3836. data/ext/cargo-vendor/file-per-thread-logger-0.1.5/.cargo-checksum.json +0 -1
  3837. data/ext/cargo-vendor/file-per-thread-logger-0.1.5/Cargo.toml +0 -27
  3838. data/ext/cargo-vendor/glob-0.3.0/.cargo-checksum.json +0 -1
  3839. data/ext/cargo-vendor/glob-0.3.0/Cargo.toml +0 -24
  3840. data/ext/cargo-vendor/glob-0.3.0/README.md +0 -38
  3841. data/ext/cargo-vendor/glob-0.3.0/src/lib.rs +0 -1411
  3842. data/ext/cargo-vendor/hermit-abi-0.1.19/.cargo-checksum.json +0 -1
  3843. data/ext/cargo-vendor/hermit-abi-0.1.19/Cargo.toml +0 -44
  3844. data/ext/cargo-vendor/hermit-abi-0.1.19/README.md +0 -22
  3845. data/ext/cargo-vendor/hermit-abi-0.1.19/rust-toolchain +0 -1
  3846. data/ext/cargo-vendor/hermit-abi-0.1.19/src/lib.rs +0 -490
  3847. data/ext/cargo-vendor/hermit-abi-0.1.19/src/tcplistener.rs +0 -13
  3848. data/ext/cargo-vendor/hermit-abi-0.1.19/src/tcpstream.rs +0 -109
  3849. data/ext/cargo-vendor/io-extras-0.17.0/.cargo-checksum.json +0 -1
  3850. data/ext/cargo-vendor/io-extras-0.17.0/Cargo.toml +0 -108
  3851. data/ext/cargo-vendor/io-extras-0.17.0/src/borrowed.rs +0 -301
  3852. data/ext/cargo-vendor/io-extras-0.17.0/src/os/windows/types.rs +0 -229
  3853. data/ext/cargo-vendor/io-extras-0.17.0/src/read_write.rs +0 -802
  3854. data/ext/cargo-vendor/io-lifetimes-1.0.3/.cargo-checksum.json +0 -1
  3855. data/ext/cargo-vendor/io-lifetimes-1.0.3/Cargo.toml +0 -94
  3856. data/ext/cargo-vendor/io-lifetimes-1.0.3/build.rs +0 -114
  3857. data/ext/cargo-vendor/ipnet-2.5.1/.cargo-checksum.json +0 -1
  3858. data/ext/cargo-vendor/ipnet-2.5.1/Cargo.toml +0 -52
  3859. data/ext/cargo-vendor/ipnet-2.5.1/RELEASES.md +0 -65
  3860. data/ext/cargo-vendor/ipnet-2.5.1/src/ipnet.rs +0 -1806
  3861. data/ext/cargo-vendor/ipnet-2.5.1/src/lib.rs +0 -96
  3862. data/ext/cargo-vendor/itoa-1.0.4/.cargo-checksum.json +0 -1
  3863. data/ext/cargo-vendor/itoa-1.0.4/Cargo.toml +0 -38
  3864. data/ext/cargo-vendor/itoa-1.0.4/README.md +0 -59
  3865. data/ext/cargo-vendor/itoa-1.0.4/src/lib.rs +0 -290
  3866. data/ext/cargo-vendor/ittapi-0.3.2/.cargo-checksum.json +0 -1
  3867. data/ext/cargo-vendor/ittapi-0.3.2/Cargo.toml +0 -44
  3868. data/ext/cargo-vendor/ittapi-0.3.2/README.md +0 -47
  3869. data/ext/cargo-vendor/ittapi-sys-0.3.2/.cargo-checksum.json +0 -1
  3870. data/ext/cargo-vendor/ittapi-sys-0.3.2/Cargo.toml +0 -42
  3871. data/ext/cargo-vendor/ittapi-sys-0.3.2/README.md +0 -74
  3872. data/ext/cargo-vendor/ittapi-sys-0.3.2/c-library/CMakeLists.txt +0 -98
  3873. data/ext/cargo-vendor/ittapi-sys-0.3.2/c-library/buildall.py +0 -169
  3874. data/ext/cargo-vendor/ittapi-sys-0.3.2/c-library/include/ittnotify.h +0 -4459
  3875. data/ext/cargo-vendor/ittapi-sys-0.3.2/c-library/src/ittnotify/ittnotify_static.c +0 -1595
  3876. data/ext/cargo-vendor/ittapi-sys-0.3.2/c-library/src/ittnotify/ittnotify_static.h +0 -355
  3877. data/ext/cargo-vendor/ittapi-sys-0.3.2/c-library/src/ittnotify/jitprofiling.c +0 -253
  3878. data/ext/cargo-vendor/ittapi-sys-0.3.2/c-library/src/ittnotify_refcol/itt_refcol_impl.c +0 -309
  3879. data/ext/cargo-vendor/ittapi-sys-0.3.2/src/lib.rs +0 -34
  3880. data/ext/cargo-vendor/ittapi-sys-0.3.2/src/linux/ittnotify_bindings.rs +0 -1873
  3881. data/ext/cargo-vendor/ittapi-sys-0.3.2/src/macos/ittnotify_bindings.rs +0 -1873
  3882. data/ext/cargo-vendor/ittapi-sys-0.3.2/src/windows/ittnotify_bindings.rs +0 -2013
  3883. data/ext/cargo-vendor/ittapi-sys-0.3.2/tests/bindgen-up-to-date.rs +0 -101
  3884. data/ext/cargo-vendor/libc-0.2.138/.cargo-checksum.json +0 -1
  3885. data/ext/cargo-vendor/libc-0.2.138/Cargo.toml +0 -64
  3886. data/ext/cargo-vendor/libc-0.2.138/src/fuchsia/mod.rs +0 -4292
  3887. data/ext/cargo-vendor/libc-0.2.138/src/unix/bsd/mod.rs +0 -917
  3888. data/ext/cargo-vendor/libc-0.2.138/src/unix/haiku/mod.rs +0 -2038
  3889. data/ext/cargo-vendor/libc-0.2.138/src/unix/hermit/mod.rs +0 -1024
  3890. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/android/b32/arm.rs +0 -539
  3891. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/android/b32/x86/mod.rs +0 -611
  3892. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/android/b64/aarch64/mod.rs +0 -391
  3893. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/android/b64/x86_64/mod.rs +0 -791
  3894. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/android/mod.rs +0 -3588
  3895. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/emscripten/mod.rs +0 -1897
  3896. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/linux/mod.rs +0 -4492
  3897. data/ext/cargo-vendor/libc-0.2.138/src/unix/linux_like/mod.rs +0 -1829
  3898. data/ext/cargo-vendor/libc-0.2.138/src/unix/mod.rs +0 -1553
  3899. data/ext/cargo-vendor/libc-0.2.138/src/unix/newlib/mod.rs +0 -759
  3900. data/ext/cargo-vendor/libc-0.2.138/src/unix/solarish/mod.rs +0 -3283
  3901. data/ext/cargo-vendor/libc-0.2.138/src/vxworks/mod.rs +0 -1925
  3902. data/ext/cargo-vendor/libc-0.2.138/src/wasi.rs +0 -821
  3903. data/ext/cargo-vendor/libc-0.2.138/src/windows/mod.rs +0 -592
  3904. data/ext/cargo-vendor/linux-raw-sys-0.1.3/.cargo-checksum.json +0 -1
  3905. data/ext/cargo-vendor/linux-raw-sys-0.1.3/Cargo.toml +0 -75
  3906. data/ext/cargo-vendor/linux-raw-sys-0.1.3/src/lib.rs +0 -305
  3907. data/ext/cargo-vendor/magnus-0.4.3/.cargo-checksum.json +0 -1
  3908. data/ext/cargo-vendor/magnus-0.4.3/CHANGELOG.md +0 -224
  3909. data/ext/cargo-vendor/magnus-0.4.3/Cargo.lock +0 -263
  3910. data/ext/cargo-vendor/magnus-0.4.3/Cargo.toml +0 -60
  3911. data/ext/cargo-vendor/magnus-0.4.3/src/class.rs +0 -542
  3912. data/ext/cargo-vendor/magnus-0.4.3/src/lib.rs +0 -2091
  3913. data/ext/cargo-vendor/magnus-0.4.3/src/r_typed_data.rs +0 -530
  3914. data/ext/cargo-vendor/magnus-macros-0.2.0/.cargo-checksum.json +0 -1
  3915. data/ext/cargo-vendor/magnus-macros-0.2.0/Cargo.toml +0 -36
  3916. data/ext/cargo-vendor/magnus-macros-0.2.0/src/typed_data.rs +0 -147
  3917. data/ext/cargo-vendor/nom-7.1.1/.cargo-checksum.json +0 -1
  3918. data/ext/cargo-vendor/nom-7.1.1/CHANGELOG.md +0 -1482
  3919. data/ext/cargo-vendor/nom-7.1.1/Cargo.lock +0 -282
  3920. data/ext/cargo-vendor/nom-7.1.1/Cargo.toml +0 -129
  3921. data/ext/cargo-vendor/nom-7.1.1/README.md +0 -311
  3922. data/ext/cargo-vendor/nom-7.1.1/src/bits/complete.rs +0 -150
  3923. data/ext/cargo-vendor/nom-7.1.1/src/bits/mod.rs +0 -179
  3924. data/ext/cargo-vendor/nom-7.1.1/src/bits/streaming.rs +0 -129
  3925. data/ext/cargo-vendor/nom-7.1.1/src/branch/mod.rs +0 -291
  3926. data/ext/cargo-vendor/nom-7.1.1/src/character/complete.rs +0 -1227
  3927. data/ext/cargo-vendor/nom-7.1.1/src/combinator/mod.rs +0 -768
  3928. data/ext/cargo-vendor/nom-7.1.1/src/internal.rs +0 -487
  3929. data/ext/cargo-vendor/nom-7.1.1/src/lib.rs +0 -463
  3930. data/ext/cargo-vendor/nom-7.1.1/src/multi/mod.rs +0 -981
  3931. data/ext/cargo-vendor/nom-7.1.1/src/number/complete.rs +0 -2138
  3932. data/ext/cargo-vendor/nom-7.1.1/src/number/streaming.rs +0 -2218
  3933. data/ext/cargo-vendor/nom-7.1.1/src/sequence/mod.rs +0 -270
  3934. data/ext/cargo-vendor/nom-7.1.1/src/sequence/tests.rs +0 -274
  3935. data/ext/cargo-vendor/nom-7.1.1/src/traits.rs +0 -1437
  3936. data/ext/cargo-vendor/nom-7.1.1/tests/issues.rs +0 -216
  3937. data/ext/cargo-vendor/num_cpus-1.14.0/.cargo-checksum.json +0 -1
  3938. data/ext/cargo-vendor/num_cpus-1.14.0/CHANGELOG.md +0 -144
  3939. data/ext/cargo-vendor/num_cpus-1.14.0/Cargo.lock +0 -26
  3940. data/ext/cargo-vendor/num_cpus-1.14.0/Cargo.toml +0 -32
  3941. data/ext/cargo-vendor/once_cell-1.16.0/.cargo-checksum.json +0 -1
  3942. data/ext/cargo-vendor/once_cell-1.16.0/CHANGELOG.md +0 -208
  3943. data/ext/cargo-vendor/once_cell-1.16.0/Cargo.lock +0 -173
  3944. data/ext/cargo-vendor/once_cell-1.16.0/Cargo.toml +0 -109
  3945. data/ext/cargo-vendor/once_cell-1.16.0/README.md +0 -56
  3946. data/ext/cargo-vendor/once_cell-1.16.0/src/lib.rs +0 -1378
  3947. data/ext/cargo-vendor/once_cell-1.16.0/src/race.rs +0 -304
  3948. data/ext/cargo-vendor/paste-1.0.9/.cargo-checksum.json +0 -1
  3949. data/ext/cargo-vendor/paste-1.0.9/Cargo.toml +0 -42
  3950. data/ext/cargo-vendor/paste-1.0.9/LICENSE-MIT +0 -25
  3951. data/ext/cargo-vendor/paste-1.0.9/README.md +0 -157
  3952. data/ext/cargo-vendor/paste-1.0.9/src/lib.rs +0 -433
  3953. data/ext/cargo-vendor/paste-1.0.9/tests/test_expr.rs +0 -272
  3954. data/ext/cargo-vendor/paste-1.0.9/tests/ui/invalid-ident.stderr +0 -17
  3955. data/ext/cargo-vendor/proc-macro2-1.0.47/.cargo-checksum.json +0 -1
  3956. data/ext/cargo-vendor/proc-macro2-1.0.47/Cargo.toml +0 -60
  3957. data/ext/cargo-vendor/proc-macro2-1.0.47/README.md +0 -94
  3958. data/ext/cargo-vendor/proc-macro2-1.0.47/src/fallback.rs +0 -1002
  3959. data/ext/cargo-vendor/proc-macro2-1.0.47/src/lib.rs +0 -1339
  3960. data/ext/cargo-vendor/proc-macro2-1.0.47/src/wrapper.rs +0 -994
  3961. data/ext/cargo-vendor/quote-1.0.21/.cargo-checksum.json +0 -1
  3962. data/ext/cargo-vendor/quote-1.0.21/Cargo.toml +0 -46
  3963. data/ext/cargo-vendor/quote-1.0.21/LICENSE-MIT +0 -25
  3964. data/ext/cargo-vendor/quote-1.0.21/README.md +0 -261
  3965. data/ext/cargo-vendor/quote-1.0.21/src/lib.rs +0 -1434
  3966. data/ext/cargo-vendor/quote-1.0.21/tests/test.rs +0 -520
  3967. data/ext/cargo-vendor/quote-1.0.21/tests/ui/not-quotable.rs +0 -7
  3968. data/ext/cargo-vendor/quote-1.0.21/tests/ui/not-quotable.stderr +0 -17
  3969. data/ext/cargo-vendor/quote-1.0.21/tests/ui/not-repeatable.rs +0 -8
  3970. data/ext/cargo-vendor/quote-1.0.21/tests/ui/not-repeatable.stderr +0 -35
  3971. data/ext/cargo-vendor/rayon-1.6.0/.cargo-checksum.json +0 -1
  3972. data/ext/cargo-vendor/rayon-1.6.0/Cargo.toml +0 -58
  3973. data/ext/cargo-vendor/rayon-1.6.0/RELEASES.md +0 -831
  3974. data/ext/cargo-vendor/rayon-1.6.0/src/iter/par_bridge.rs +0 -217
  3975. data/ext/cargo-vendor/rb-sys-0.9.52/.cargo-checksum.json +0 -1
  3976. data/ext/cargo-vendor/rb-sys-0.9.52/Cargo.toml +0 -45
  3977. data/ext/cargo-vendor/rb-sys-0.9.52/build/ruby_macros.rs +0 -45
  3978. data/ext/cargo-vendor/rb-sys-0.9.52/src/macros/ruby_macros.c +0 -35
  3979. data/ext/cargo-vendor/rb-sys-build-0.9.52/.cargo-checksum.json +0 -1
  3980. data/ext/cargo-vendor/rb-sys-build-0.9.52/Cargo.toml +0 -40
  3981. data/ext/cargo-vendor/rb-sys-build-0.9.52/src/bindings.rs +0 -246
  3982. data/ext/cargo-vendor/rb-sys-build-0.9.52/src/lib.rs +0 -10
  3983. data/ext/cargo-vendor/rb-sys-build-0.9.52/src/rb_config.rs +0 -750
  3984. data/ext/cargo-vendor/rb-sys-build-0.9.52/src/utils.rs +0 -28
  3985. data/ext/cargo-vendor/rb-sys-env-0.1.1/.cargo-checksum.json +0 -1
  3986. data/ext/cargo-vendor/rb-sys-env-0.1.1/Cargo.toml +0 -24
  3987. data/ext/cargo-vendor/rb-sys-env-0.1.1/src/lib.rs +0 -181
  3988. data/ext/cargo-vendor/rb-sys-env-0.1.1/src/ruby_version.rs +0 -163
  3989. data/ext/cargo-vendor/regex-1.7.0/.cargo-checksum.json +0 -1
  3990. data/ext/cargo-vendor/regex-1.7.0/CHANGELOG.md +0 -1079
  3991. data/ext/cargo-vendor/regex-1.7.0/Cargo.lock +0 -98
  3992. data/ext/cargo-vendor/regex-1.7.0/Cargo.toml +0 -149
  3993. data/ext/cargo-vendor/regex-1.7.0/src/re_bytes.rs +0 -1260
  3994. data/ext/cargo-vendor/regex-1.7.0/src/re_unicode.rs +0 -1311
  3995. data/ext/cargo-vendor/regex-1.7.0/tests/replace.rs +0 -230
  3996. data/ext/cargo-vendor/rustix-0.36.5/.cargo-checksum.json +0 -1
  3997. data/ext/cargo-vendor/rustix-0.36.5/Cargo.toml +0 -236
  3998. data/ext/cargo-vendor/rustix-0.36.5/README.md +0 -159
  3999. data/ext/cargo-vendor/rustix-0.36.5/build.rs +0 -205
  4000. data/ext/cargo-vendor/rustix-0.36.5/src/backend/libc/fs/syscalls.rs +0 -1772
  4001. data/ext/cargo-vendor/rustix-0.36.5/src/backend/libc/fs/types.rs +0 -1116
  4002. data/ext/cargo-vendor/rustix-0.36.5/src/backend/libc/io/epoll.rs +0 -573
  4003. data/ext/cargo-vendor/rustix-0.36.5/src/backend/libc/io/syscalls.rs +0 -533
  4004. data/ext/cargo-vendor/rustix-0.36.5/src/backend/libc/io/types.rs +0 -164
  4005. data/ext/cargo-vendor/rustix-0.36.5/src/backend/libc/net/syscalls.rs +0 -886
  4006. data/ext/cargo-vendor/rustix-0.36.5/src/backend/libc/time/types.rs +0 -364
  4007. data/ext/cargo-vendor/rustix-0.36.5/src/backend/linux_raw/conv.rs +0 -790
  4008. data/ext/cargo-vendor/rustix-0.36.5/src/backend/linux_raw/fs/syscalls.rs +0 -1384
  4009. data/ext/cargo-vendor/rustix-0.36.5/src/backend/linux_raw/fs/types.rs +0 -646
  4010. data/ext/cargo-vendor/rustix-0.36.5/src/backend/linux_raw/io/epoll.rs +0 -555
  4011. data/ext/cargo-vendor/rustix-0.36.5/src/fs/at.rs +0 -387
  4012. data/ext/cargo-vendor/rustix-0.36.5/src/fs/constants.rs +0 -20
  4013. data/ext/cargo-vendor/rustix-0.36.5/src/fs/dir.rs +0 -5
  4014. data/ext/cargo-vendor/rustix-0.36.5/src/fs/fd.rs +0 -348
  4015. data/ext/cargo-vendor/rustix-0.36.5/src/fs/mod.rs +0 -215
  4016. data/ext/cargo-vendor/rustix-0.36.5/src/io/mod.rs +0 -97
  4017. data/ext/cargo-vendor/rustix-0.36.5/src/io/read_write.rs +0 -170
  4018. data/ext/cargo-vendor/rustix-0.36.5/src/net/socket.rs +0 -439
  4019. data/ext/cargo-vendor/rustix-0.36.5/src/net/socket_addr_any.rs +0 -81
  4020. data/ext/cargo-vendor/serde-1.0.149/.cargo-checksum.json +0 -1
  4021. data/ext/cargo-vendor/serde-1.0.149/Cargo.toml +0 -67
  4022. data/ext/cargo-vendor/serde-1.0.149/README.md +0 -114
  4023. data/ext/cargo-vendor/serde-1.0.149/build.rs +0 -141
  4024. data/ext/cargo-vendor/serde-1.0.149/crates-io.md +0 -65
  4025. data/ext/cargo-vendor/serde-1.0.149/src/de/impls.rs +0 -2725
  4026. data/ext/cargo-vendor/serde-1.0.149/src/de/mod.rs +0 -2300
  4027. data/ext/cargo-vendor/serde-1.0.149/src/lib.rs +0 -312
  4028. data/ext/cargo-vendor/serde-1.0.149/src/private/de.rs +0 -2995
  4029. data/ext/cargo-vendor/serde-1.0.149/src/ser/impls.rs +0 -956
  4030. data/ext/cargo-vendor/serde-1.0.149/src/ser/mod.rs +0 -1986
  4031. data/ext/cargo-vendor/serde_derive-1.0.149/.cargo-checksum.json +0 -1
  4032. data/ext/cargo-vendor/serde_derive-1.0.149/Cargo.toml +0 -63
  4033. data/ext/cargo-vendor/serde_derive-1.0.149/README.md +0 -114
  4034. data/ext/cargo-vendor/serde_derive-1.0.149/build.rs +0 -36
  4035. data/ext/cargo-vendor/serde_derive-1.0.149/crates-io.md +0 -65
  4036. data/ext/cargo-vendor/serde_derive-1.0.149/src/lib.rs +0 -109
  4037. data/ext/cargo-vendor/syn-1.0.105/.cargo-checksum.json +0 -1
  4038. data/ext/cargo-vendor/syn-1.0.105/Cargo.toml +0 -144
  4039. data/ext/cargo-vendor/syn-1.0.105/README.md +0 -285
  4040. data/ext/cargo-vendor/syn-1.0.105/src/lib.rs +0 -984
  4041. data/ext/cargo-vendor/syn-1.0.105/tests/common/eq.rs +0 -806
  4042. data/ext/cargo-vendor/syn-1.0.105/tests/test_expr.rs +0 -326
  4043. data/ext/cargo-vendor/system-interface-0.25.0/.cargo-checksum.json +0 -1
  4044. data/ext/cargo-vendor/system-interface-0.25.0/Cargo.toml +0 -102
  4045. data/ext/cargo-vendor/system-interface-0.25.0/src/fs/file_io_ext.rs +0 -878
  4046. data/ext/cargo-vendor/system-interface-0.25.0/src/io/read_ready.rs +0 -239
  4047. data/ext/cargo-vendor/system-interface-0.25.0/tests/vectored_at.rs +0 -493
  4048. data/ext/cargo-vendor/termcolor-1.1.3/.cargo-checksum.json +0 -1
  4049. data/ext/cargo-vendor/termcolor-1.1.3/Cargo.toml +0 -43
  4050. data/ext/cargo-vendor/termcolor-1.1.3/src/lib.rs +0 -2260
  4051. data/ext/cargo-vendor/thiserror-1.0.37/.cargo-checksum.json +0 -1
  4052. data/ext/cargo-vendor/thiserror-1.0.37/Cargo.toml +0 -47
  4053. data/ext/cargo-vendor/thiserror-1.0.37/README.md +0 -222
  4054. data/ext/cargo-vendor/thiserror-1.0.37/tests/test_display.rs +0 -272
  4055. data/ext/cargo-vendor/thiserror-1.0.37/tests/ui/no-display.stderr +0 -17
  4056. data/ext/cargo-vendor/thiserror-1.0.37/tests/ui/source-enum-not-error.stderr +0 -22
  4057. data/ext/cargo-vendor/thiserror-1.0.37/tests/ui/source-struct-not-error.stderr +0 -21
  4058. data/ext/cargo-vendor/thiserror-impl-1.0.37/.cargo-checksum.json +0 -1
  4059. data/ext/cargo-vendor/thiserror-impl-1.0.37/Cargo.toml +0 -35
  4060. data/ext/cargo-vendor/tokio-1.23.0/.cargo-checksum.json +0 -1
  4061. data/ext/cargo-vendor/tokio-1.23.0/CHANGELOG.md +0 -2487
  4062. data/ext/cargo-vendor/tokio-1.23.0/Cargo.toml +0 -239
  4063. data/ext/cargo-vendor/tokio-1.23.0/README.md +0 -229
  4064. data/ext/cargo-vendor/tokio-1.23.0/build.rs +0 -132
  4065. data/ext/cargo-vendor/tokio-1.23.0/docs/reactor-refactor.md +0 -276
  4066. data/ext/cargo-vendor/tokio-1.23.0/src/fs/read_dir.rs +0 -295
  4067. data/ext/cargo-vendor/tokio-1.23.0/src/io/split.rs +0 -181
  4068. data/ext/cargo-vendor/tokio-1.23.0/src/io/util/read.rs +0 -55
  4069. data/ext/cargo-vendor/tokio-1.23.0/src/lib.rs +0 -630
  4070. data/ext/cargo-vendor/tokio-1.23.0/src/loom/mocked.rs +0 -45
  4071. data/ext/cargo-vendor/tokio-1.23.0/src/loom/std/atomic_u64.rs +0 -18
  4072. data/ext/cargo-vendor/tokio-1.23.0/src/loom/std/atomic_u64_as_mutex.rs +0 -70
  4073. data/ext/cargo-vendor/tokio-1.23.0/src/loom/std/mod.rs +0 -104
  4074. data/ext/cargo-vendor/tokio-1.23.0/src/macros/cfg.rs +0 -539
  4075. data/ext/cargo-vendor/tokio-1.23.0/src/net/tcp/split_owned.rs +0 -501
  4076. data/ext/cargo-vendor/tokio-1.23.0/src/net/unix/split_owned.rs +0 -409
  4077. data/ext/cargo-vendor/tokio-1.23.0/src/net/windows/named_pipe.rs +0 -2556
  4078. data/ext/cargo-vendor/tokio-1.23.0/src/process/unix/mod.rs +0 -322
  4079. data/ext/cargo-vendor/tokio-1.23.0/src/process/unix/orphan.rs +0 -333
  4080. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/blocking/mod.rs +0 -28
  4081. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/blocking/pool.rs +0 -599
  4082. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/blocking/schedule.rs +0 -19
  4083. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/builder.rs +0 -1057
  4084. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/context.rs +0 -400
  4085. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/driver.rs +0 -343
  4086. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/io/mod.rs +0 -348
  4087. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/io/registration.rs +0 -257
  4088. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/io/scheduled_io.rs +0 -553
  4089. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/mod.rs +0 -258
  4090. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/scheduler/multi_thread/queue.rs +0 -532
  4091. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/task/harness.rs +0 -506
  4092. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/task/mod.rs +0 -619
  4093. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/task/state.rs +0 -595
  4094. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/tests/loom_blocking.rs +0 -81
  4095. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/tests/loom_queue.rs +0 -209
  4096. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/tests/mod.rs +0 -55
  4097. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/tests/task.rs +0 -332
  4098. data/ext/cargo-vendor/tokio-1.23.0/src/runtime/time/mod.rs +0 -422
  4099. data/ext/cargo-vendor/tokio-1.23.0/src/signal/registry.rs +0 -284
  4100. data/ext/cargo-vendor/tokio-1.23.0/src/signal/unix.rs +0 -527
  4101. data/ext/cargo-vendor/tokio-1.23.0/src/sync/broadcast.rs +0 -1160
  4102. data/ext/cargo-vendor/tokio-1.23.0/src/sync/mod.rs +0 -499
  4103. data/ext/cargo-vendor/tokio-1.23.0/src/sync/mpsc/block.rs +0 -385
  4104. data/ext/cargo-vendor/tokio-1.23.0/src/sync/mpsc/list.rs +0 -371
  4105. data/ext/cargo-vendor/tokio-1.23.0/src/sync/mpsc/mod.rs +0 -117
  4106. data/ext/cargo-vendor/tokio-1.23.0/src/task/local.rs +0 -1194
  4107. data/ext/cargo-vendor/tokio-1.23.0/src/time/clock.rs +0 -243
  4108. data/ext/cargo-vendor/tokio-1.23.0/src/time/sleep.rs +0 -438
  4109. data/ext/cargo-vendor/tokio-1.23.0/src/util/linked_list.rs +0 -694
  4110. data/ext/cargo-vendor/tokio-1.23.0/src/util/once_cell.rs +0 -70
  4111. data/ext/cargo-vendor/tokio-1.23.0/tests/_require_full.rs +0 -2
  4112. data/ext/cargo-vendor/tokio-1.23.0/tests/buffered.rs +0 -50
  4113. data/ext/cargo-vendor/tokio-1.23.0/tests/io_driver.rs +0 -100
  4114. data/ext/cargo-vendor/tokio-1.23.0/tests/macros_join.rs +0 -155
  4115. data/ext/cargo-vendor/tokio-1.23.0/tests/macros_select.rs +0 -665
  4116. data/ext/cargo-vendor/tokio-1.23.0/tests/macros_try_join.rs +0 -185
  4117. data/ext/cargo-vendor/tokio-1.23.0/tests/rt_common.rs +0 -1279
  4118. data/ext/cargo-vendor/tokio-1.23.0/tests/rt_metrics.rs +0 -468
  4119. data/ext/cargo-vendor/tokio-1.23.0/tests/support/leaked_buffers.rs +0 -26
  4120. data/ext/cargo-vendor/tokio-1.23.0/tests/support/panic.rs +0 -34
  4121. data/ext/cargo-vendor/tokio-1.23.0/tests/sync_once_cell.rs +0 -274
  4122. data/ext/cargo-vendor/tokio-1.23.0/tests/task_blocking.rs +0 -228
  4123. data/ext/cargo-vendor/tokio-1.23.0/tests/task_join_set.rs +0 -230
  4124. data/ext/cargo-vendor/tokio-1.23.0/tests/tcp_peek.rs +0 -29
  4125. data/ext/cargo-vendor/toml-0.5.9/.cargo-checksum.json +0 -1
  4126. data/ext/cargo-vendor/toml-0.5.9/Cargo.lock +0 -101
  4127. data/ext/cargo-vendor/toml-0.5.9/Cargo.toml +0 -49
  4128. data/ext/cargo-vendor/toml-0.5.9/README.md +0 -38
  4129. data/ext/cargo-vendor/toml-0.5.9/src/datetime.rs +0 -544
  4130. data/ext/cargo-vendor/toml-0.5.9/src/de.rs +0 -2262
  4131. data/ext/cargo-vendor/toml-0.5.9/src/lib.rs +0 -180
  4132. data/ext/cargo-vendor/toml-0.5.9/src/macros.rs +0 -462
  4133. data/ext/cargo-vendor/toml-0.5.9/src/ser.rs +0 -1859
  4134. data/ext/cargo-vendor/toml-0.5.9/src/spanned.rs +0 -168
  4135. data/ext/cargo-vendor/toml-0.5.9/src/tokens.rs +0 -740
  4136. data/ext/cargo-vendor/unicode-bidi-0.3.8/.cargo-checksum.json +0 -1
  4137. data/ext/cargo-vendor/unicode-bidi-0.3.8/Cargo.toml +0 -78
  4138. data/ext/cargo-vendor/unicode-bidi-0.3.8/src/char_data/mod.rs +0 -157
  4139. data/ext/cargo-vendor/unicode-bidi-0.3.8/src/char_data/tables.rs +0 -510
  4140. data/ext/cargo-vendor/unicode-bidi-0.3.8/src/data_source.rs +0 -16
  4141. data/ext/cargo-vendor/unicode-bidi-0.3.8/src/explicit.rs +0 -195
  4142. data/ext/cargo-vendor/unicode-bidi-0.3.8/src/implicit.rs +0 -239
  4143. data/ext/cargo-vendor/unicode-bidi-0.3.8/src/lib.rs +0 -1066
  4144. data/ext/cargo-vendor/unicode-bidi-0.3.8/src/prepare.rs +0 -368
  4145. data/ext/cargo-vendor/unicode-ident-1.0.5/.cargo-checksum.json +0 -1
  4146. data/ext/cargo-vendor/unicode-ident-1.0.5/Cargo.toml +0 -58
  4147. data/ext/cargo-vendor/unicode-ident-1.0.5/README.md +0 -283
  4148. data/ext/cargo-vendor/unicode-ident-1.0.5/src/tables.rs +0 -647
  4149. data/ext/cargo-vendor/unicode-ident-1.0.5/tests/static_size.rs +0 -96
  4150. data/ext/cargo-vendor/wasi-cap-std-sync-4.0.0/.cargo-checksum.json +0 -1
  4151. data/ext/cargo-vendor/wasi-cap-std-sync-4.0.0/Cargo.toml +0 -89
  4152. data/ext/cargo-vendor/wasi-common-4.0.0/.cargo-checksum.json +0 -1
  4153. data/ext/cargo-vendor/wasi-common-4.0.0/Cargo.toml +0 -85
  4154. data/ext/cargo-vendor/wasi-common-4.0.0/src/snapshots/preview_0.rs +0 -1082
  4155. data/ext/cargo-vendor/wasi-common-4.0.0/src/snapshots/preview_1.rs +0 -1568
  4156. data/ext/cargo-vendor/wasm-encoder-0.20.0/.cargo-checksum.json +0 -1
  4157. data/ext/cargo-vendor/wasm-encoder-0.20.0/Cargo.toml +0 -33
  4158. data/ext/cargo-vendor/wasm-encoder-0.20.0/src/component/aliases.rs +0 -129
  4159. data/ext/cargo-vendor/wasm-encoder-0.20.0/src/component/types.rs +0 -751
  4160. data/ext/cargo-vendor/wasm-encoder-0.20.0/src/component.rs +0 -137
  4161. data/ext/cargo-vendor/wasm-encoder-0.20.0/src/core/code.rs +0 -2868
  4162. data/ext/cargo-vendor/wasm-encoder-0.20.0/src/lib.rs +0 -188
  4163. data/ext/cargo-vendor/wasmparser-0.95.0/.cargo-checksum.json +0 -1
  4164. data/ext/cargo-vendor/wasmparser-0.95.0/Cargo.lock +0 -683
  4165. data/ext/cargo-vendor/wasmparser-0.95.0/Cargo.toml +0 -54
  4166. data/ext/cargo-vendor/wasmparser-0.95.0/benches/benchmark.rs +0 -336
  4167. data/ext/cargo-vendor/wasmparser-0.95.0/src/binary_reader.rs +0 -2333
  4168. data/ext/cargo-vendor/wasmparser-0.95.0/src/limits.rs +0 -57
  4169. data/ext/cargo-vendor/wasmparser-0.95.0/src/parser.rs +0 -1504
  4170. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/aliases.rs +0 -127
  4171. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/canonicals.rs +0 -124
  4172. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/exports.rs +0 -110
  4173. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/imports.rs +0 -127
  4174. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/instances.rs +0 -240
  4175. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/names.rs +0 -164
  4176. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/start.rs +0 -66
  4177. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/component/types.rs +0 -449
  4178. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/code.rs +0 -270
  4179. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/data.rs +0 -189
  4180. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/elements.rs +0 -333
  4181. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/exports.rs +0 -123
  4182. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/functions.rs +0 -95
  4183. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/globals.rs +0 -110
  4184. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/imports.rs +0 -129
  4185. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/init.rs +0 -46
  4186. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/linking.rs +0 -88
  4187. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/memories.rs +0 -93
  4188. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/names.rs +0 -308
  4189. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/operators.rs +0 -342
  4190. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/producers.rs +0 -211
  4191. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/relocs.rs +0 -198
  4192. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/tables.rs +0 -93
  4193. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/tags.rs +0 -92
  4194. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core/types.rs +0 -279
  4195. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers/core.rs +0 -37
  4196. data/ext/cargo-vendor/wasmparser-0.95.0/src/readers.rs +0 -181
  4197. data/ext/cargo-vendor/wasmparser-0.95.0/src/validator/component.rs +0 -2097
  4198. data/ext/cargo-vendor/wasmparser-0.95.0/src/validator/core.rs +0 -1140
  4199. data/ext/cargo-vendor/wasmparser-0.95.0/src/validator/func.rs +0 -333
  4200. data/ext/cargo-vendor/wasmparser-0.95.0/src/validator/operators.rs +0 -3223
  4201. data/ext/cargo-vendor/wasmparser-0.95.0/src/validator/types.rs +0 -2109
  4202. data/ext/cargo-vendor/wasmparser-0.95.0/src/validator.rs +0 -1476
  4203. data/ext/cargo-vendor/wasmtime-4.0.0/.cargo-checksum.json +0 -1
  4204. data/ext/cargo-vendor/wasmtime-4.0.0/Cargo.toml +0 -164
  4205. data/ext/cargo-vendor/wasmtime-4.0.0/src/component/mod.rs +0 -42
  4206. data/ext/cargo-vendor/wasmtime-4.0.0/src/component/values.rs +0 -1143
  4207. data/ext/cargo-vendor/wasmtime-4.0.0/src/config.rs +0 -1908
  4208. data/ext/cargo-vendor/wasmtime-4.0.0/src/engine/serialization.rs +0 -611
  4209. data/ext/cargo-vendor/wasmtime-4.0.0/src/linker.rs +0 -1296
  4210. data/ext/cargo-vendor/wasmtime-4.0.0/src/trap.rs +0 -616
  4211. data/ext/cargo-vendor/wasmtime-asm-macros-4.0.0/.cargo-checksum.json +0 -1
  4212. data/ext/cargo-vendor/wasmtime-asm-macros-4.0.0/Cargo.toml +0 -22
  4213. data/ext/cargo-vendor/wasmtime-asm-macros-4.0.0/src/lib.rs +0 -91
  4214. data/ext/cargo-vendor/wasmtime-cache-4.0.0/.cargo-checksum.json +0 -1
  4215. data/ext/cargo-vendor/wasmtime-cache-4.0.0/Cargo.toml +0 -73
  4216. data/ext/cargo-vendor/wasmtime-cranelift-4.0.0/.cargo-checksum.json +0 -1
  4217. data/ext/cargo-vendor/wasmtime-cranelift-4.0.0/Cargo.toml +0 -83
  4218. data/ext/cargo-vendor/wasmtime-cranelift-4.0.0/src/compiler.rs +0 -1047
  4219. data/ext/cargo-vendor/wasmtime-cranelift-4.0.0/src/func_environ.rs +0 -2104
  4220. data/ext/cargo-vendor/wasmtime-environ-4.0.0/.cargo-checksum.json +0 -1
  4221. data/ext/cargo-vendor/wasmtime-environ-4.0.0/Cargo.lock +0 -613
  4222. data/ext/cargo-vendor/wasmtime-environ-4.0.0/Cargo.toml +0 -117
  4223. data/ext/cargo-vendor/wasmtime-environ-4.0.0/src/component/translate.rs +0 -1027
  4224. data/ext/cargo-vendor/wasmtime-environ-4.0.0/src/module_environ.rs +0 -840
  4225. data/ext/cargo-vendor/wasmtime-environ-4.0.0/src/obj.rs +0 -121
  4226. data/ext/cargo-vendor/wasmtime-fiber-4.0.0/.cargo-checksum.json +0 -1
  4227. data/ext/cargo-vendor/wasmtime-fiber-4.0.0/Cargo.toml +0 -46
  4228. data/ext/cargo-vendor/wasmtime-fiber-4.0.0/src/unix/aarch64.rs +0 -178
  4229. data/ext/cargo-vendor/wasmtime-fiber-4.0.0/src/unix/riscv64.rs +0 -157
  4230. data/ext/cargo-vendor/wasmtime-fiber-4.0.0/src/unix/x86_64.rs +0 -159
  4231. data/ext/cargo-vendor/wasmtime-fiber-4.0.0/src/unix.rs +0 -197
  4232. data/ext/cargo-vendor/wasmtime-jit-4.0.0/.cargo-checksum.json +0 -1
  4233. data/ext/cargo-vendor/wasmtime-jit-4.0.0/Cargo.toml +0 -102
  4234. data/ext/cargo-vendor/wasmtime-jit-4.0.0/src/code_memory.rs +0 -301
  4235. data/ext/cargo-vendor/wasmtime-jit-4.0.0/src/instantiate.rs +0 -667
  4236. data/ext/cargo-vendor/wasmtime-jit-debug-4.0.0/.cargo-checksum.json +0 -1
  4237. data/ext/cargo-vendor/wasmtime-jit-debug-4.0.0/Cargo.toml +0 -58
  4238. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-3.0.0/.cargo-checksum.json +0 -1
  4239. data/ext/cargo-vendor/wasmtime-jit-icache-coherence-3.0.0/Cargo.toml +0 -34
  4240. data/ext/cargo-vendor/wasmtime-runtime-4.0.0/.cargo-checksum.json +0 -1
  4241. data/ext/cargo-vendor/wasmtime-runtime-4.0.0/Cargo.toml +0 -110
  4242. data/ext/cargo-vendor/wasmtime-runtime-4.0.0/src/libcalls.rs +0 -489
  4243. data/ext/cargo-vendor/wasmtime-runtime-4.0.0/src/trampolines/aarch64.rs +0 -121
  4244. data/ext/cargo-vendor/wasmtime-runtime-4.0.0/src/trampolines/riscv64.rs +0 -117
  4245. data/ext/cargo-vendor/wasmtime-runtime-4.0.0/src/trampolines/x86_64.rs +0 -135
  4246. data/ext/cargo-vendor/wasmtime-types-4.0.0/.cargo-checksum.json +0 -1
  4247. data/ext/cargo-vendor/wasmtime-types-4.0.0/Cargo.toml +0 -34
  4248. data/ext/cargo-vendor/wasmtime-wasi-4.0.0/.cargo-checksum.json +0 -1
  4249. data/ext/cargo-vendor/wasmtime-wasi-4.0.0/Cargo.toml +0 -63
  4250. data/ext/cargo-vendor/wast-50.0.0/.cargo-checksum.json +0 -1
  4251. data/ext/cargo-vendor/wast-50.0.0/Cargo.toml +0 -50
  4252. data/ext/cargo-vendor/wast-50.0.0/src/component/alias.rs +0 -256
  4253. data/ext/cargo-vendor/wast-50.0.0/src/component/binary.rs +0 -951
  4254. data/ext/cargo-vendor/wast-50.0.0/src/component/expand.rs +0 -832
  4255. data/ext/cargo-vendor/wast-50.0.0/src/component/export.rs +0 -197
  4256. data/ext/cargo-vendor/wast-50.0.0/src/component/import.rs +0 -163
  4257. data/ext/cargo-vendor/wast-50.0.0/src/component/resolve.rs +0 -954
  4258. data/ext/cargo-vendor/wast-50.0.0/src/component/types.rs +0 -958
  4259. data/ext/cargo-vendor/wast-50.0.0/src/core/expr.rs +0 -1889
  4260. data/ext/cargo-vendor/wast-50.0.0/tests/annotations.rs +0 -200
  4261. data/ext/cargo-vendor/wat-1.0.52/.cargo-checksum.json +0 -1
  4262. data/ext/cargo-vendor/wat-1.0.52/Cargo.toml +0 -27
  4263. data/ext/cargo-vendor/wiggle-4.0.0/.cargo-checksum.json +0 -1
  4264. data/ext/cargo-vendor/wiggle-4.0.0/Cargo.toml +0 -109
  4265. data/ext/cargo-vendor/wiggle-4.0.0/src/lib.rs +0 -1066
  4266. data/ext/cargo-vendor/wiggle-generate-4.0.0/.cargo-checksum.json +0 -1
  4267. data/ext/cargo-vendor/wiggle-generate-4.0.0/Cargo.toml +0 -61
  4268. data/ext/cargo-vendor/wiggle-generate-4.0.0/src/codegen_settings.rs +0 -146
  4269. data/ext/cargo-vendor/wiggle-generate-4.0.0/src/config.rs +0 -675
  4270. data/ext/cargo-vendor/wiggle-generate-4.0.0/src/funcs.rs +0 -430
  4271. data/ext/cargo-vendor/wiggle-generate-4.0.0/src/module_trait.rs +0 -97
  4272. data/ext/cargo-vendor/wiggle-generate-4.0.0/src/wasmtime.rs +0 -165
  4273. data/ext/cargo-vendor/wiggle-macro-4.0.0/.cargo-checksum.json +0 -1
  4274. data/ext/cargo-vendor/wiggle-macro-4.0.0/Cargo.toml +0 -55
  4275. data/ext/cargo-vendor/wiggle-macro-4.0.0/src/lib.rs +0 -208
  4276. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.0/.cargo-checksum.json +0 -1
  4277. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.0/Cargo.toml +0 -23
  4278. data/ext/cargo-vendor/windows_aarch64_gnullvm-0.42.0/lib/libwindows.a +0 -0
  4279. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.0/.cargo-checksum.json +0 -1
  4280. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.0/Cargo.toml +0 -23
  4281. data/ext/cargo-vendor/windows_aarch64_msvc-0.42.0/lib/windows.lib +0 -0
  4282. data/ext/cargo-vendor/windows_i686_gnu-0.42.0/.cargo-checksum.json +0 -1
  4283. data/ext/cargo-vendor/windows_i686_gnu-0.42.0/Cargo.toml +0 -23
  4284. data/ext/cargo-vendor/windows_i686_gnu-0.42.0/lib/libwindows.a +0 -0
  4285. data/ext/cargo-vendor/windows_i686_msvc-0.42.0/.cargo-checksum.json +0 -1
  4286. data/ext/cargo-vendor/windows_i686_msvc-0.42.0/Cargo.toml +0 -23
  4287. data/ext/cargo-vendor/windows_i686_msvc-0.42.0/lib/windows.lib +0 -0
  4288. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.0/.cargo-checksum.json +0 -1
  4289. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.0/Cargo.toml +0 -23
  4290. data/ext/cargo-vendor/windows_x86_64_gnu-0.42.0/lib/libwindows.a +0 -0
  4291. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.0/.cargo-checksum.json +0 -1
  4292. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.0/Cargo.toml +0 -23
  4293. data/ext/cargo-vendor/windows_x86_64_gnullvm-0.42.0/lib/libwindows.a +0 -0
  4294. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.0/.cargo-checksum.json +0 -1
  4295. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.0/Cargo.toml +0 -23
  4296. data/ext/cargo-vendor/windows_x86_64_msvc-0.42.0/lib/windows.lib +0 -0
  4297. data/ext/cargo-vendor/zstd-sys-2.0.4+zstd.1.5.2/.cargo-checksum.json +0 -1
  4298. data/ext/cargo-vendor/zstd-sys-2.0.4+zstd.1.5.2/.cargo_vcs_info.json +0 -6
  4299. data/ext/cargo-vendor/zstd-sys-2.0.4+zstd.1.5.2/Cargo.toml +0 -84
  4300. data/ext/cargo-vendor/zstd-sys-2.0.4+zstd.1.5.2/build.rs +0 -252
@@ -0,0 +1,3775 @@
1
+ ;; x86-64 instruction selection and CLIF-to-MachInst lowering.
2
+
3
+ ;; The main lowering constructor term: takes a clif `Inst` and returns the
4
+ ;; register(s) within which the lowered instruction's result values live.
5
+ (decl partial lower (Inst) InstOutput)
6
+
7
+ ;; A variant of the main lowering constructor term, used for branches.
8
+ ;; The only difference is that it gets an extra argument holding a vector
9
+ ;; of branch targets to be used.
10
+ (decl partial lower_branch (Inst MachLabelSlice) Unit)
11
+
12
+ ;;;; Rules for `iconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
13
+
14
+ ;; `i64` and smaller.
15
+ (rule (lower (has_type (fits_in_64 ty)
16
+ (iconst (u64_from_imm64 x))))
17
+ (imm ty x))
18
+
19
+ ;; `i128`
20
+ (rule 1 (lower (has_type $I128
21
+ (iconst (u64_from_imm64 x))))
22
+ (value_regs (imm $I64 x)
23
+ (imm $I64 0)))
24
+
25
+ ;;;; Rules for `f32const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26
+
27
+ (rule (lower (f32const (u64_from_ieee32 x)))
28
+ (imm $F32 x))
29
+
30
+ ;;;; Rules for `f64const` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
31
+
32
+ (rule (lower (f64const (u64_from_ieee64 x)))
33
+ (imm $F64 x))
34
+
35
+ ;;;; Rules for `null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
36
+
37
+ (rule (lower (has_type ty (null)))
38
+ (imm ty 0))
39
+
40
+ ;;;; Rules for `iadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
41
+
42
+ ;; `i64` and smaller.
43
+
44
+ ;; Add two registers.
45
+ (rule -5 (lower (has_type (fits_in_64 ty)
46
+ (iadd x y)))
47
+ (x64_add ty x y))
48
+
49
+ ;; Add a register and an immediate.
50
+
51
+ (rule -4 (lower (has_type (fits_in_64 ty)
52
+ (iadd x (simm32_from_value y))))
53
+ (x64_add ty x y))
54
+
55
+ (rule -3 (lower (has_type (fits_in_64 ty)
56
+ (iadd (simm32_from_value x) y)))
57
+ (x64_add ty y x))
58
+
59
+ ;; Add a register and memory.
60
+
61
+ (rule -2 (lower (has_type (fits_in_64 ty)
62
+ (iadd x (sinkable_load y))))
63
+ (x64_add ty
64
+ x
65
+ (sink_load_to_gpr_mem_imm y)))
66
+
67
+ (rule -1 (lower (has_type (fits_in_64 ty)
68
+ (iadd (sinkable_load x) y)))
69
+ (x64_add ty
70
+ y
71
+ (sink_load_to_gpr_mem_imm x)))
72
+
73
+ ;; SSE.
74
+
75
+ (rule (lower (has_type (multi_lane 8 16)
76
+ (iadd x y)))
77
+ (x64_paddb x y))
78
+
79
+ (rule (lower (has_type (multi_lane 16 8)
80
+ (iadd x y)))
81
+ (x64_paddw x y))
82
+
83
+ (rule (lower (has_type (multi_lane 32 4)
84
+ (iadd x y)))
85
+ (x64_paddd x y))
86
+
87
+ (rule (lower (has_type (multi_lane 64 2)
88
+ (iadd x y)))
89
+ (x64_paddq x y))
90
+
91
+ ;; `i128`
92
+ (rule 1 (lower (has_type $I128 (iadd x y)))
93
+ ;; Get the high/low registers for `x`.
94
+ (let ((x_regs ValueRegs x)
95
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
96
+ (x_hi Gpr (value_regs_get_gpr x_regs 1)))
97
+ ;; Get the high/low registers for `y`.
98
+ (let ((y_regs ValueRegs y)
99
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
100
+ (y_hi Gpr (value_regs_get_gpr y_regs 1)))
101
+ ;; Do an add followed by an add-with-carry.
102
+ (with_flags (x64_add_with_flags_paired $I64 x_lo y_lo)
103
+ (x64_adc_paired $I64 x_hi y_hi)))))
104
+
105
+ ;;;; Rules for `iadd_cout` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
106
+
107
+ ;; TODO: i8 and i16 support. Requires either learning how to encode ALU
108
+ ;; operations on values narrower than 32-bits (better code; big change) or doing
109
+ ;; the same extend-to-32-bits trick that aarch64 does (worse code; small
110
+ ;; change).
111
+
112
+ (rule (lower (iadd_cout x y @ (value_type (ty_32_or_64 ty))))
113
+ (let ((results ValueRegs (with_flags (x64_add_with_flags_paired ty x y)
114
+ (x64_setcc_paired (CC.O)))))
115
+ (output_pair (value_regs_get results 0)
116
+ (value_regs_get results 1))))
117
+
118
+ ;;;; Rules for `sadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
119
+
120
+ (rule (lower (has_type (multi_lane 8 16)
121
+ (sadd_sat x y)))
122
+ (x64_paddsb x y))
123
+
124
+ (rule (lower (has_type (multi_lane 16 8)
125
+ (sadd_sat x y)))
126
+ (x64_paddsw x y))
127
+
128
+ ;;;; Rules for `uadd_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
129
+
130
+ (rule (lower (has_type (multi_lane 8 16)
131
+ (uadd_sat x y)))
132
+ (x64_paddusb x y))
133
+
134
+ (rule (lower (has_type (multi_lane 16 8)
135
+ (uadd_sat x y)))
136
+ (x64_paddusw x y))
137
+
138
+ ;;;; Rules for `isub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
139
+
140
+ ;; `i64` and smaller.
141
+
142
+ ;; Sub two registers.
143
+ (rule -3 (lower (has_type (fits_in_64 ty)
144
+ (isub x y)))
145
+ (x64_sub ty x y))
146
+
147
+ ;; Sub a register and an immediate.
148
+ (rule -2 (lower (has_type (fits_in_64 ty)
149
+ (isub x (simm32_from_value y))))
150
+ (x64_sub ty x y))
151
+
152
+ ;; Sub a register and memory.
153
+ (rule -1 (lower (has_type (fits_in_64 ty)
154
+ (isub x (sinkable_load y))))
155
+ (x64_sub ty x
156
+ (sink_load_to_gpr_mem_imm y)))
157
+
158
+ ;; SSE.
159
+
160
+ (rule (lower (has_type (multi_lane 8 16)
161
+ (isub x y)))
162
+ (x64_psubb x y))
163
+
164
+ (rule (lower (has_type (multi_lane 16 8)
165
+ (isub x y)))
166
+ (x64_psubw x y))
167
+
168
+ (rule (lower (has_type (multi_lane 32 4)
169
+ (isub x y)))
170
+ (x64_psubd x y))
171
+
172
+ (rule (lower (has_type (multi_lane 64 2)
173
+ (isub x y)))
174
+ (x64_psubq x y))
175
+
176
+ ;; `i128`
177
+ (rule 1 (lower (has_type $I128 (isub x y)))
178
+ ;; Get the high/low registers for `x`.
179
+ (let ((x_regs ValueRegs x)
180
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
181
+ (x_hi Gpr (value_regs_get_gpr x_regs 1)))
182
+ ;; Get the high/low registers for `y`.
183
+ (let ((y_regs ValueRegs y)
184
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
185
+ (y_hi Gpr (value_regs_get_gpr y_regs 1)))
186
+ ;; Do a sub followed by an sub-with-borrow.
187
+ (with_flags (x64_sub_with_flags_paired $I64 x_lo y_lo)
188
+ (x64_sbb_paired $I64 x_hi y_hi)))))
189
+
190
+ ;;;; Rules for `ssub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
191
+
192
+ (rule (lower (has_type (multi_lane 8 16)
193
+ (ssub_sat x y)))
194
+ (x64_psubsb x y))
195
+
196
+ (rule (lower (has_type (multi_lane 16 8)
197
+ (ssub_sat x y)))
198
+ (x64_psubsw x y))
199
+
200
+ ;;;; Rules for `usub_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
201
+
202
+ (rule (lower (has_type (multi_lane 8 16)
203
+ (usub_sat x y)))
204
+ (x64_psubusb x y))
205
+
206
+ (rule (lower (has_type (multi_lane 16 8)
207
+ (usub_sat x y)))
208
+ (x64_psubusw x y))
209
+
210
+ ;;;; Rules for `band` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
211
+
212
+ ;; `{i,b}64` and smaller.
213
+
214
+ ;; And two registers.
215
+ (rule 0 (lower (has_type ty (band x y)))
216
+ (if (ty_int_ref_scalar_64 ty))
217
+ (x64_and ty x y))
218
+
219
+ ;; And with a memory operand.
220
+
221
+ (rule 1 (lower (has_type ty (band x (sinkable_load y))))
222
+ (if (ty_int_ref_scalar_64 ty))
223
+ (x64_and ty x
224
+ (sink_load_to_gpr_mem_imm y)))
225
+
226
+ (rule 2 (lower (has_type ty (band (sinkable_load x) y)))
227
+ (if (ty_int_ref_scalar_64 ty))
228
+ (x64_and ty
229
+ y
230
+ (sink_load_to_gpr_mem_imm x)))
231
+
232
+ ;; And with an immediate.
233
+
234
+ (rule 3 (lower (has_type ty (band x (simm32_from_value y))))
235
+ (if (ty_int_ref_scalar_64 ty))
236
+ (x64_and ty x y))
237
+
238
+ (rule 4 (lower (has_type ty (band (simm32_from_value x) y)))
239
+ (if (ty_int_ref_scalar_64 ty))
240
+ (x64_and ty y x))
241
+
242
+ ;; f32 and f64
243
+
244
+ (rule 5 (lower (has_type (ty_scalar_float ty) (band x y)))
245
+ (sse_and ty x y))
246
+
247
+ ;; SSE.
248
+
249
+ (decl sse_and (Type Xmm XmmMem) Xmm)
250
+ (rule (sse_and $F32X4 x y) (x64_andps x y))
251
+ (rule (sse_and $F64X2 x y) (x64_andpd x y))
252
+ (rule (sse_and $F32 x y) (x64_andps x y))
253
+ (rule (sse_and $F64 x y) (x64_andpd x y))
254
+ (rule -1 (sse_and (multi_lane _bits _lanes) x y) (x64_pand x y))
255
+
256
+ (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
257
+ (band x y)))
258
+ (sse_and ty x y))
259
+
260
+ ;; `i128`.
261
+
262
+ (rule 7 (lower (has_type $I128 (band x y)))
263
+ (let ((x_regs ValueRegs x)
264
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
265
+ (x_hi Gpr (value_regs_get_gpr x_regs 1))
266
+ (y_regs ValueRegs y)
267
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
268
+ (y_hi Gpr (value_regs_get_gpr y_regs 1)))
269
+ (value_gprs (x64_and $I64 x_lo y_lo)
270
+ (x64_and $I64 x_hi y_hi))))
271
+
272
+ ;;;; Rules for `bor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
273
+
274
+ ;; `{i,b}64` and smaller.
275
+
276
+ ;; Or two registers.
277
+ (rule 0 (lower (has_type ty (bor x y)))
278
+ (if (ty_int_ref_scalar_64 ty))
279
+ (x64_or ty x y))
280
+
281
+ ;; Or with a memory operand.
282
+
283
+ (rule 1 (lower (has_type ty (bor x (sinkable_load y))))
284
+ (if (ty_int_ref_scalar_64 ty))
285
+ (x64_or ty x
286
+ (sink_load_to_gpr_mem_imm y)))
287
+
288
+ (rule 2 (lower (has_type ty (bor (sinkable_load x) y)))
289
+ (if (ty_int_ref_scalar_64 ty))
290
+ (x64_or ty y
291
+ (sink_load_to_gpr_mem_imm x)))
292
+
293
+ ;; Or with an immediate.
294
+
295
+ (rule 3 (lower (has_type ty (bor x (simm32_from_value y))))
296
+ (if (ty_int_ref_scalar_64 ty))
297
+ (x64_or ty x y))
298
+
299
+ (rule 4 (lower (has_type ty (bor (simm32_from_value x) y)))
300
+ (if (ty_int_ref_scalar_64 ty))
301
+ (x64_or ty y x))
302
+
303
+ ;; f32 and f64
304
+
305
+ (rule 5 (lower (has_type (ty_scalar_float ty) (bor x y)))
306
+ (sse_or ty x y))
307
+
308
+ ;; SSE.
309
+
310
+ (decl sse_or (Type Xmm XmmMem) Xmm)
311
+ (rule (sse_or $F32X4 x y) (x64_orps x y))
312
+ (rule (sse_or $F64X2 x y) (x64_orpd x y))
313
+ (rule (sse_or $F32 x y) (x64_orps x y))
314
+ (rule (sse_or $F64 x y) (x64_orpd x y))
315
+ (rule -1 (sse_or (multi_lane _bits _lanes) x y) (x64_por x y))
316
+
317
+ (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes)
318
+ (bor x y)))
319
+ (sse_or ty x y))
320
+
321
+ ;; `{i,b}128`.
322
+
323
+ (decl or_i128 (ValueRegs ValueRegs) ValueRegs)
324
+ (rule (or_i128 x y)
325
+ (let ((x_lo Gpr (value_regs_get_gpr x 0))
326
+ (x_hi Gpr (value_regs_get_gpr x 1))
327
+ (y_lo Gpr (value_regs_get_gpr y 0))
328
+ (y_hi Gpr (value_regs_get_gpr y 1)))
329
+ (value_gprs (x64_or $I64 x_lo y_lo)
330
+ (x64_or $I64 x_hi y_hi))))
331
+
332
+ (rule 7 (lower (has_type $I128 (bor x y)))
333
+ (or_i128 x y))
334
+
335
+ ;;;; Rules for `bxor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
336
+
337
+ ;; `{i,b}64` and smaller.
338
+
339
+ ;; Xor two registers.
340
+ (rule 0 (lower (has_type ty (bxor x y)))
341
+ (if (ty_int_ref_scalar_64 ty))
342
+ (x64_xor ty x y))
343
+
344
+ ;; Xor with a memory operand.
345
+
346
+ (rule 1 (lower (has_type ty (bxor x (sinkable_load y))))
347
+ (if (ty_int_ref_scalar_64 ty))
348
+ (x64_xor ty x
349
+ (sink_load_to_gpr_mem_imm y)))
350
+
351
+ (rule 2 (lower (has_type ty (bxor (sinkable_load x) y)))
352
+ (if (ty_int_ref_scalar_64 ty))
353
+ (x64_xor ty y
354
+ (sink_load_to_gpr_mem_imm x)))
355
+
356
+ ;; Xor with an immediate.
357
+
358
+ (rule 3 (lower (has_type ty (bxor x (simm32_from_value y))))
359
+ (if (ty_int_ref_scalar_64 ty))
360
+ (x64_xor ty x y))
361
+
362
+ (rule 4 (lower (has_type ty (bxor (simm32_from_value x) y)))
363
+ (if (ty_int_ref_scalar_64 ty))
364
+ (x64_xor ty y x))
365
+
366
+ ;; f32 and f64
367
+
368
+ (rule 5 (lower (has_type (ty_scalar_float ty) (bxor x y)))
369
+ (sse_xor ty x y))
370
+
371
+ ;; SSE.
372
+
373
+ (rule 6 (lower (has_type ty @ (multi_lane _bits _lanes) (bxor x y)))
374
+ (sse_xor ty x y))
375
+
376
+ ;; `{i,b}128`.
377
+
378
+ (rule 7 (lower (has_type $I128 (bxor x y)))
379
+ (let ((x_regs ValueRegs x)
380
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
381
+ (x_hi Gpr (value_regs_get_gpr x_regs 1))
382
+ (y_regs ValueRegs y)
383
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
384
+ (y_hi Gpr (value_regs_get_gpr y_regs 1)))
385
+ (value_gprs (x64_xor $I64 x_lo y_lo)
386
+ (x64_xor $I64 x_hi y_hi))))
387
+
388
+ ;;;; Rules for `ishl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
389
+
390
+ ;; `i64` and smaller.
391
+
392
+ (rule -1 (lower (has_type (fits_in_64 ty) (ishl src amt)))
393
+ (x64_shl ty src (put_masked_in_imm8_gpr amt ty)))
394
+
395
+ ;; `i128`.
396
+
397
+ (decl shl_i128 (ValueRegs Gpr) ValueRegs)
398
+ (rule (shl_i128 src amt)
399
+ ;; Unpack the registers that make up the 128-bit value being shifted.
400
+ (let ((src_lo Gpr (value_regs_get_gpr src 0))
401
+ (src_hi Gpr (value_regs_get_gpr src 1))
402
+ ;; Do two 64-bit shifts.
403
+ (lo_shifted Gpr (x64_shl $I64 src_lo amt))
404
+ (hi_shifted Gpr (x64_shl $I64 src_hi amt))
405
+ ;; `src_lo >> (64 - amt)` are the bits to carry over from the lo
406
+ ;; into the hi.
407
+ (carry Gpr (x64_shr $I64
408
+ src_lo
409
+ (x64_sub $I64
410
+ (imm $I64 64)
411
+ amt)))
412
+ (zero Gpr (imm $I64 0))
413
+ ;; Nullify the carry if we are shifting in by a multiple of 128.
414
+ (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64)
415
+ (RegMemImm.Imm 127)
416
+ amt)
417
+ (cmove $I64
418
+ (CC.Z)
419
+ zero
420
+ carry)))
421
+ ;; Add the carry into the high half.
422
+ (hi_shifted_ Gpr (x64_or $I64 carry_ hi_shifted)))
423
+ ;; Combine the two shifted halves. However, if we are shifting by >= 64
424
+ ;; (modulo 128), then the low bits are zero and the high bits are our
425
+ ;; low bits.
426
+ (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
427
+ (consumes_flags_concat
428
+ (cmove $I64 (CC.Z) lo_shifted zero)
429
+ (cmove $I64 (CC.Z) hi_shifted_ lo_shifted)))))
430
+
431
+ (rule (lower (has_type $I128 (ishl src amt)))
432
+ ;; NB: Only the low bits of `amt` matter since we logically mask the shift
433
+ ;; amount to the value's bit width.
434
+ (let ((amt_ Gpr (lo_gpr amt)))
435
+ (shl_i128 src amt_)))
436
+
437
+ ;; SSE.
438
+
439
+ ;; Since the x86 instruction set does not have any 8x16 shift instructions (even
440
+ ;; in higher feature sets like AVX), we lower the `ishl.i8x16` to a sequence of
441
+ ;; instructions. The basic idea, whether the amount to shift by is an immediate
442
+ ;; or not, is to use a 16x8 shift and then mask off the incorrect bits to 0s.
443
+ (rule (lower (has_type ty @ $I8X16 (ishl src amt)))
444
+ (let (
445
+ ;; Mask the amount to ensure wrapping behaviour
446
+ (masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty))))
447
+ ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
448
+ ;; correct for half of the lanes; the others must be fixed up with
449
+ ;; the mask below.
450
+ (unmasked Xmm (x64_psllw src (mov_rmi_to_xmm masked_amt)))
451
+ (mask_addr SyntheticAmode (ishl_i8x16_mask masked_amt))
452
+ (mask Reg (x64_load $I8X16 mask_addr (ExtKind.None))))
453
+ (sse_and $I8X16 unmasked (RegMem.Reg mask))))
454
+
455
+ ;; Get the address of the mask to use when fixing up the lanes that weren't
456
+ ;; correctly generated by the 16x8 shift.
457
+ (decl ishl_i8x16_mask (RegMemImm) SyntheticAmode)
458
+
459
+ ;; When the shift amount is known, we can statically (i.e. at compile time)
460
+ ;; determine the mask to use and only emit that.
461
+ (decl ishl_i8x16_mask_for_const (u32) SyntheticAmode)
462
+ (extern constructor ishl_i8x16_mask_for_const ishl_i8x16_mask_for_const)
463
+ (rule (ishl_i8x16_mask (RegMemImm.Imm amt))
464
+ (ishl_i8x16_mask_for_const amt))
465
+
466
+ ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
467
+ ;; time) find the correct mask offset in the table. We use `lea` to find the
468
+ ;; base address of the mask table and then complex addressing to offset to the
469
+ ;; right mask: `base_address + amt << 4`
470
+ (decl ishl_i8x16_mask_table () SyntheticAmode)
471
+ (extern constructor ishl_i8x16_mask_table ishl_i8x16_mask_table)
472
+ (rule (ishl_i8x16_mask (RegMemImm.Reg amt))
473
+ (let ((mask_table SyntheticAmode (ishl_i8x16_mask_table))
474
+ (base_mask_addr Gpr (x64_lea mask_table))
475
+ (mask_offset Gpr (x64_shl $I64 amt
476
+ (imm8_to_imm8_gpr 4))))
477
+ (amode_imm_reg_reg_shift 0
478
+ base_mask_addr
479
+ mask_offset
480
+ 0)))
481
+
482
+ (rule (ishl_i8x16_mask (RegMemImm.Mem amt))
483
+ (ishl_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
484
+
485
+ ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
486
+
487
+ (rule (lower (has_type ty @ $I16X8 (ishl src amt)))
488
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
489
+ (x64_psllw src (mov_rmi_to_xmm masked_amt))))
490
+
491
+ (rule (lower (has_type ty @ $I32X4 (ishl src amt)))
492
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
493
+ (x64_pslld src (mov_rmi_to_xmm masked_amt))))
494
+
495
+ (rule (lower (has_type ty @ $I64X2 (ishl src amt)))
496
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
497
+ (x64_psllq src (mov_rmi_to_xmm masked_amt))))
498
+
499
+ ;;;; Rules for `ushr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
500
+
501
+ ;; `i64` and smaller.
502
+
503
+ (rule -1 (lower (has_type (fits_in_64 ty) (ushr src amt)))
504
+ (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Zero))))
505
+ (x64_shr ty src_ (put_masked_in_imm8_gpr amt ty))))
506
+
507
+ ;; `i128`.
508
+
509
+ (decl shr_i128 (ValueRegs Gpr) ValueRegs)
510
+ (rule (shr_i128 src amt)
511
+ ;; Unpack the lo/hi halves of `src`.
512
+ (let ((src_lo Gpr (value_regs_get_gpr src 0))
513
+ (src_hi Gpr (value_regs_get_gpr src 1))
514
+ ;; Do a shift on each half.
515
+ (lo_shifted Gpr (x64_shr $I64 src_lo amt))
516
+ (hi_shifted Gpr (x64_shr $I64 src_hi amt))
517
+ ;; `src_hi << (64 - amt)` are the bits to carry over from the hi
518
+ ;; into the lo.
519
+ (carry Gpr (x64_shl $I64
520
+ src_hi
521
+ (x64_sub $I64
522
+ (imm $I64 64)
523
+ amt)))
524
+ ;; Share the zero value to reduce register pressure
525
+ (zero Gpr (imm $I64 0))
526
+
527
+ ;; Nullify the carry if we are shifting by a multiple of 128.
528
+ (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
529
+ (cmove $I64 (CC.Z) zero carry)))
530
+ ;; Add the carry bits into the lo.
531
+ (lo_shifted_ Gpr (x64_or $I64 carry_ lo_shifted)))
532
+ ;; Combine the two shifted halves. However, if we are shifting by >= 64
533
+ ;; (modulo 128), then the hi bits are zero and the lo bits are what
534
+ ;; would otherwise be our hi bits.
535
+ (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
536
+ (consumes_flags_concat
537
+ (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
538
+ (cmove $I64 (CC.Z) hi_shifted zero)))))
539
+
540
+ (rule (lower (has_type $I128 (ushr src amt)))
541
+ ;; NB: Only the low bits of `amt` matter since we logically mask the shift
542
+ ;; amount to the value's bit width.
543
+ (let ((amt_ Gpr (lo_gpr amt)))
544
+ (shr_i128 src amt_)))
545
+
546
+ ;; SSE.
547
+
548
+ ;; There are no 8x16 shifts in x64. Do the same 16x8-shift-and-mask thing we do
549
+ ;; with 8x16 `ishl`.
550
+ (rule (lower (has_type ty @ $I8X16 (ushr src amt)))
551
+ (let (
552
+ ;; Mask the amount to ensure wrapping behaviour
553
+ (masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty))))
554
+ ;; Shift `src` using 16x8. Unfortunately, a 16x8 shift will only be
555
+ ;; correct for half of the lanes; the others must be fixed up with
556
+ ;; the mask below.
557
+ (unmasked Xmm (x64_psrlw src (mov_rmi_to_xmm masked_amt)))
558
+ (mask_addr SyntheticAmode (ushr_i8x16_mask masked_amt))
559
+ (mask Reg (x64_load $I8X16 mask_addr (ExtKind.None))))
560
+ (sse_and $I8X16
561
+ unmasked
562
+ (RegMem.Reg mask))))
563
+
564
+ ;; Get the address of the mask to use when fixing up the lanes that weren't
565
+ ;; correctly generated by the 16x8 shift.
566
+ (decl ushr_i8x16_mask (RegMemImm) SyntheticAmode)
567
+
568
+ ;; When the shift amount is known, we can statically (i.e. at compile time)
569
+ ;; determine the mask to use and only emit that.
570
+ (decl ushr_i8x16_mask_for_const (u32) SyntheticAmode)
571
+ (extern constructor ushr_i8x16_mask_for_const ushr_i8x16_mask_for_const)
572
+ (rule (ushr_i8x16_mask (RegMemImm.Imm amt))
573
+ (ushr_i8x16_mask_for_const amt))
574
+
575
+ ;; Otherwise, we must emit the entire mask table and dynamically (i.e. at run
576
+ ;; time) find the correct mask offset in the table. We use `lea` to find the
577
+ ;; base address of the mask table and then complex addressing to offset to the
578
+ ;; right mask: `base_address + amt << 4`
579
+ (decl ushr_i8x16_mask_table () SyntheticAmode)
580
+ (extern constructor ushr_i8x16_mask_table ushr_i8x16_mask_table)
581
+ (rule (ushr_i8x16_mask (RegMemImm.Reg amt))
582
+ (let ((mask_table SyntheticAmode (ushr_i8x16_mask_table))
583
+ (base_mask_addr Gpr (x64_lea mask_table))
584
+ (mask_offset Gpr (x64_shl $I64
585
+ amt
586
+ (imm8_to_imm8_gpr 4))))
587
+ (amode_imm_reg_reg_shift 0
588
+ base_mask_addr
589
+ mask_offset
590
+ 0)))
591
+
592
+ (rule (ushr_i8x16_mask (RegMemImm.Mem amt))
593
+ (ushr_i8x16_mask (RegMemImm.Reg (x64_load $I64 amt (ExtKind.None)))))
594
+
595
+ ;; 16x8, 32x4, and 64x2 shifts can each use a single instruction, once the shift amount is masked.
596
+
597
+ (rule (lower (has_type ty @ $I16X8 (ushr src amt)))
598
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
599
+ (x64_psrlw src (mov_rmi_to_xmm masked_amt))))
600
+
601
+ (rule (lower (has_type ty @ $I32X4 (ushr src amt)))
602
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
603
+ (x64_psrld src (mov_rmi_to_xmm masked_amt))))
604
+
605
+ (rule (lower (has_type ty @ $I64X2 (ushr src amt)))
606
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
607
+ (x64_psrlq src (mov_rmi_to_xmm masked_amt))))
608
+
609
+ ;;;; Rules for `sshr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
610
+
611
+ ;; `i64` and smaller.
612
+
613
+ (rule -1 (lower (has_type (fits_in_64 ty) (sshr src amt)))
614
+ (let ((src_ Gpr (extend_to_gpr src ty (ExtendKind.Sign))))
615
+ (x64_sar ty src_ (put_masked_in_imm8_gpr amt ty))))
616
+
617
+ ;; `i128`.
618
+
619
+ (decl sar_i128 (ValueRegs Gpr) ValueRegs)
620
+ (rule (sar_i128 src amt)
621
+ ;; Unpack the low/high halves of `src`.
622
+ (let ((src_lo Gpr (value_regs_get_gpr src 0))
623
+ (src_hi Gpr (value_regs_get_gpr src 1))
624
+ ;; Do a shift of each half. NB: the low half uses an unsigned shift
625
+ ;; because its MSB is not a sign bit.
626
+ (lo_shifted Gpr (x64_shr $I64 src_lo amt))
627
+ (hi_shifted Gpr (x64_sar $I64 src_hi amt))
628
+ ;; `src_hi << (64 - amt)` are the bits to carry over from the low
629
+ ;; half to the high half.
630
+ (carry Gpr (x64_shl $I64
631
+ src_hi
632
+ (x64_sub $I64
633
+ (imm $I64 64)
634
+ amt)))
635
+ ;; Nullify the carry if we are shifting by a multiple of 128.
636
+ (carry_ Gpr (with_flags_reg (x64_test (OperandSize.Size64) (RegMemImm.Imm 127) amt)
637
+ (cmove $I64 (CC.Z) (imm $I64 0) carry)))
638
+ ;; Add the carry into the low half.
639
+ (lo_shifted_ Gpr (x64_or $I64 lo_shifted carry_))
640
+ ;; Get all sign bits.
641
+ (sign_bits Gpr (x64_sar $I64 src_hi (imm8_to_imm8_gpr 63))))
642
+ ;; Combine the two shifted halves. However, if we are shifting by >= 64
643
+ ;; (modulo 128), then the hi bits are all sign bits and the lo bits are
644
+ ;; what would otherwise be our hi bits.
645
+ (with_flags (x64_test (OperandSize.Size64) (RegMemImm.Imm 64) amt)
646
+ (consumes_flags_concat
647
+ (cmove $I64 (CC.Z) lo_shifted_ hi_shifted)
648
+ (cmove $I64 (CC.Z) hi_shifted sign_bits)))))
649
+
650
+ (rule (lower (has_type $I128 (sshr src amt)))
651
+ ;; NB: Only the low bits of `amt` matter since we logically mask the shift
652
+ ;; amount to the value's bit width.
653
+ (let ((amt_ Gpr (lo_gpr amt)))
654
+ (sar_i128 src amt_)))
655
+
656
+ ;; SSE.
657
+
658
+ ;; Since the x86 instruction set does not have an 8x16 shift instruction and the
659
+ ;; approach used for `ishl` and `ushr` cannot be easily used (the masks do not
660
+ ;; preserve the sign), we use a different approach here: separate the low and
661
+ ;; high lanes, shift them separately, and merge them into the final result.
662
+ ;;
663
+ ;; Visually, this looks like the following, where `src.i8x16 = [s0, s1, ...,
664
+ ;; s15]:
665
+ ;;
666
+ ;; lo.i16x8 = [(s0, s0), (s1, s1), ..., (s7, s7)]
667
+ ;; shifted_lo.i16x8 = shift each lane of `low`
668
+ ;; hi.i16x8 = [(s8, s8), (s9, s9), ..., (s15, s15)]
669
+ ;; shifted_hi.i16x8 = shift each lane of `high`
670
+ ;; result = [s0'', s1'', ..., s15'']
671
+ (rule (lower (has_type ty @ $I8X16 (sshr src amt @ (value_type amt_ty))))
672
+ (let ((src_ Xmm (put_in_xmm src))
673
+ ;; Mask the amount to ensure wrapping behaviour
674
+ (masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty))))
675
+ ;; In order for `packsswb` later to only use the high byte of each
676
+ ;; 16x8 lane, we shift right an extra 8 bits, relying on `psraw` to
677
+ ;; fill in the upper bits appropriately.
678
+ (lo Xmm (x64_punpcklbw src_ src_))
679
+ (hi Xmm (x64_punpckhbw src_ src_))
680
+ (amt_ XmmMemImm (sshr_i8x16_bigger_shift amt_ty masked_amt))
681
+ (shifted_lo Xmm (x64_psraw lo amt_))
682
+ (shifted_hi Xmm (x64_psraw hi amt_)))
683
+ (x64_packsswb shifted_lo shifted_hi)))
684
+
685
+ (decl sshr_i8x16_bigger_shift (Type RegMemImm) XmmMemImm)
686
+ (rule (sshr_i8x16_bigger_shift _ty (RegMemImm.Imm i))
687
+ (xmm_mem_imm_new (RegMemImm.Imm (u32_add i 8))))
688
+ (rule (sshr_i8x16_bigger_shift ty (RegMemImm.Reg r))
689
+ (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
690
+ r
691
+ (RegMemImm.Imm 8)))))
692
+ (rule (sshr_i8x16_bigger_shift ty rmi @ (RegMemImm.Mem _m))
693
+ (mov_rmi_to_xmm (RegMemImm.Reg (x64_add ty
694
+ (imm ty 8)
695
+ rmi))))
696
+
697
+ ;; `sshr.{i16x8,i32x4}` can be a simple `psra{w,d}`, we just have to make sure
698
+ ;; that if the shift amount is in a register, it is in an XMM register.
699
+
700
+ (rule (lower (has_type ty @ $I16X8 (sshr src amt)))
701
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
702
+ (x64_psraw src (mov_rmi_to_xmm masked_amt))))
703
+
704
+ (rule (lower (has_type ty @ $I32X4 (sshr src amt)))
705
+ (let ((masked_amt Reg (x64_and $I64 amt (RegMemImm.Imm (shift_mask ty)))))
706
+ (x64_psrad src (mov_rmi_to_xmm masked_amt))))
707
+
708
+ ;; The `sshr.i64x2` CLIF instruction has no single x86 instruction in the older
709
+ ;; feature sets. Newer ones like AVX512VL + AVX512F include `vpsraq`, a 128-bit
710
+ ;; instruction that would fit here, but this backend does not currently have
711
+ ;; support for EVEX encodings. To remedy this, we extract each 64-bit lane to a
712
+ ;; GPR, shift each using a scalar instruction, and insert the shifted values
713
+ ;; back in the `dst` XMM register.
714
+ ;;
715
+ ;; (TODO: when EVEX support is available, add an alternate lowering here).
716
+ (rule (lower (has_type $I64X2 (sshr src amt)))
717
+ (let ((src_ Xmm (put_in_xmm src))
718
+ (lo Gpr (x64_pextrd $I64 src_ 0))
719
+ (hi Gpr (x64_pextrd $I64 src_ 1))
720
+ (amt_ Imm8Gpr (put_masked_in_imm8_gpr amt $I64))
721
+ (shifted_lo Gpr (x64_sar $I64 lo amt_))
722
+ (shifted_hi Gpr (x64_sar $I64 hi amt_)))
723
+ (make_i64x2_from_lanes shifted_lo
724
+ shifted_hi)))
725
+
726
+ ;;;; Rules for `rotl` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
727
+
728
+ ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
729
+ ;; we operate on the whole register. For const's we mask the constant.
730
+
731
+ (rule -1 (lower (has_type (fits_in_64 ty) (rotl src amt)))
732
+ (x64_rotl ty src (put_masked_in_imm8_gpr amt ty)))
733
+
734
+
735
+ ;; `i128`.
736
+
737
+ (rule (lower (has_type $I128 (rotl src amt)))
738
+ (let ((src_ ValueRegs src)
739
+ ;; NB: Only the low bits of `amt` matter since we logically mask the
740
+ ;; rotation amount to the value's bit width.
741
+ (amt_ Gpr (lo_gpr amt)))
742
+ (or_i128 (shl_i128 src_ amt_)
743
+ (shr_i128 src_ (x64_sub $I64
744
+ (imm $I64 128)
745
+ amt_)))))
746
+
747
+ ;;;; Rules for `rotr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
748
+
749
+ ;; `i64` and smaller: we can rely on x86's rotate-amount masking since
750
+ ;; we operate on the whole register. For const's we mask the constant.
751
+
752
+ (rule -1 (lower (has_type (fits_in_64 ty) (rotr src amt)))
753
+ (x64_rotr ty src (put_masked_in_imm8_gpr amt ty)))
754
+
755
+
756
+ ;; `i128`.
757
+
758
+ (rule (lower (has_type $I128 (rotr src amt)))
759
+ (let ((src_ ValueRegs src)
760
+ ;; NB: Only the low bits of `amt` matter since we logically mask the
761
+ ;; rotation amount to the value's bit width.
762
+ (amt_ Gpr (lo_gpr amt)))
763
+ (or_i128 (shr_i128 src_ amt_)
764
+ (shl_i128 src_ (x64_sub $I64
765
+ (imm $I64 128)
766
+ amt_)))))
767
+
768
+ ;;;; Rules for `ineg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
769
+
770
+ ;; `i64` and smaller.
771
+
772
+ (rule -1 (lower (has_type (fits_in_64 ty) (ineg x)))
773
+ (x64_neg ty x))
774
+
775
+ (rule -2 (lower (has_type $I128 (ineg x)))
776
+ ;; Get the high/low registers for `x`.
777
+ (let ((regs ValueRegs x)
778
+ (lo Gpr (value_regs_get_gpr regs 0))
779
+ (hi Gpr (value_regs_get_gpr regs 1)))
780
+ ;; Do a neg followed by an sub-with-borrow.
781
+ (with_flags (x64_neg_paired $I64 lo)
782
+ (x64_sbb_paired $I64 (imm $I64 0) hi))))
783
+
784
+ ;; SSE.
785
+
786
+ (rule (lower (has_type $I8X16 (ineg x)))
787
+ (x64_psubb (imm $I8X16 0) x))
788
+
789
+ (rule (lower (has_type $I16X8 (ineg x)))
790
+ (x64_psubw (imm $I16X8 0) x))
791
+
792
+ (rule (lower (has_type $I32X4 (ineg x)))
793
+ (x64_psubd (imm $I32X4 0) x))
794
+
795
+ (rule (lower (has_type $I64X2 (ineg x)))
796
+ (x64_psubq (imm $I64X2 0) x))
797
+
798
+ ;;;; Rules for `avg_round` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
799
+
800
+ (rule (lower (has_type (multi_lane 8 16)
801
+ (avg_round x y)))
802
+ (x64_pavgb x y))
803
+
804
+ (rule (lower (has_type (multi_lane 16 8)
805
+ (avg_round x y)))
806
+ (x64_pavgw x y))
807
+
808
+ ;;;; Rules for `imul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
809
+
810
+ ;; `i64` and smaller.
811
+
812
+ ;; Multiply two registers.
813
+ (rule -5 (lower (has_type (fits_in_64 ty) (imul x y)))
814
+ (x64_mul ty x y))
815
+
816
+ ;; Multiply a register and an immediate.
817
+
818
+ (rule -3 (lower (has_type (fits_in_64 ty)
819
+ (imul x (simm32_from_value y))))
820
+ (x64_mul ty x y))
821
+
822
+ (rule -4 (lower (has_type (fits_in_64 ty)
823
+ (imul (simm32_from_value x) y)))
824
+ (x64_mul ty y x))
825
+
826
+ ;; Multiply a register and a memory load.
827
+
828
+ (rule -2 (lower (has_type (fits_in_64 ty)
829
+ (imul x (sinkable_load y))))
830
+ (x64_mul ty
831
+ x
832
+ (sink_load_to_gpr_mem_imm y)))
833
+
834
+ (rule -1 (lower (has_type (fits_in_64 ty)
835
+ (imul (sinkable_load x) y)))
836
+ (x64_mul ty y
837
+ (sink_load_to_gpr_mem_imm x)))
838
+
839
+ ;; `i128`.
840
+
841
+ ;; mul:
842
+ ;; dst_lo = lhs_lo * rhs_lo
843
+ ;; dst_hi = umulhi(lhs_lo, rhs_lo) +
844
+ ;; lhs_lo * rhs_hi +
845
+ ;; lhs_hi * rhs_lo
846
+ ;;
847
+ ;; so we emit:
848
+ ;; lo_hi = mul x_lo, y_hi
849
+ ;; hi_lo = mul x_hi, y_lo
850
+ ;; hilo_hilo = add lo_hi, hi_lo
851
+ ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
852
+ ;; dst_hi = add hilo_hilo, hi_lolo
853
+ ;; return (dst_lo, dst_hi)
854
+ (rule 2 (lower (has_type $I128 (imul x y)))
855
+ ;; Put `x` into registers and unpack its hi/lo halves.
856
+ (let ((x_regs ValueRegs x)
857
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
858
+ (x_hi Gpr (value_regs_get_gpr x_regs 1))
859
+ ;; Put `y` into registers and unpack its hi/lo halves.
860
+ (y_regs ValueRegs y)
861
+ (y_lo Gpr (value_regs_get_gpr y_regs 0))
862
+ (y_hi Gpr (value_regs_get_gpr y_regs 1))
863
+ ;; lo_hi = mul x_lo, y_hi
864
+ (lo_hi Gpr (x64_mul $I64 x_lo y_hi))
865
+ ;; hi_lo = mul x_hi, y_lo
866
+ (hi_lo Gpr (x64_mul $I64 x_hi y_lo))
867
+ ;; hilo_hilo = add lo_hi, hi_lo
868
+ (hilo_hilo Gpr (x64_add $I64 lo_hi hi_lo))
869
+ ;; dst_lo:hi_lolo = mulhi_u x_lo, y_lo
870
+ (mul_regs ValueRegs (mulhi_u $I64 x_lo y_lo))
871
+ (dst_lo Gpr (value_regs_get_gpr mul_regs 0))
872
+ (hi_lolo Gpr (value_regs_get_gpr mul_regs 1))
873
+ ;; dst_hi = add hilo_hilo, hi_lolo
874
+ (dst_hi Gpr (x64_add $I64 hilo_hilo hi_lolo)))
875
+ (value_gprs dst_lo dst_hi)))
876
+
877
+ ;; SSE.
878
+
879
+ ;; (No i8x16 multiply.)
880
+
881
+ (rule (lower (has_type (multi_lane 16 8) (imul x y)))
882
+ (x64_pmullw x y))
883
+
884
+ (rule (lower (has_type (multi_lane 32 4) (imul x y)))
885
+ (x64_pmulld x y))
886
+
887
+ ;; With AVX-512 we can implement `i64x2` multiplication with a single
888
+ ;; instruction.
889
+ (rule 3 (lower (has_type (and (avx512vl_enabled $true)
890
+ (avx512dq_enabled $true)
891
+ (multi_lane 64 2))
892
+ (imul x y)))
893
+ (x64_vpmullq x y))
894
+
895
+ ;; Otherwise, for i64x2 multiplication we describe a lane A as being composed of
896
+ ;; a 32-bit upper half "Ah" and a 32-bit lower half "Al". The 32-bit long hand
897
+ ;; multiplication can then be written as:
898
+ ;;
899
+ ;; Ah Al
900
+ ;; * Bh Bl
901
+ ;; -----
902
+ ;; Al * Bl
903
+ ;; + (Ah * Bl) << 32
904
+ ;; + (Al * Bh) << 32
905
+ ;;
906
+ ;; So for each lane we will compute:
907
+ ;;
908
+ ;; A * B = (Al * Bl) + ((Ah * Bl) + (Al * Bh)) << 32
909
+ ;;
910
+ ;; Note, the algorithm will use `pmuldq` which operates directly on the lower
911
+ ;; 32-bit (`Al` or `Bl`) of a lane and writes the result to the full 64-bits of
912
+ ;; the lane of the destination. For this reason we don't need shifts to isolate
913
+ ;; the lower 32-bits, however, we will need to use shifts to isolate the high
914
+ ;; 32-bits when doing calculations, i.e., `Ah == A >> 32`.
915
+ (rule (lower (has_type (multi_lane 64 2)
916
+ (imul a b)))
917
+ (let ((a0 Xmm a)
918
+ (b0 Xmm b)
919
+ ;; a_hi = A >> 32
920
+ (a_hi Xmm (x64_psrlq a0 (RegMemImm.Imm 32)))
921
+ ;; ah_bl = Ah * Bl
922
+ (ah_bl Xmm (x64_pmuludq a_hi b0))
923
+ ;; b_hi = B >> 32
924
+ (b_hi Xmm (x64_psrlq b0 (RegMemImm.Imm 32)))
925
+ ;; al_bh = Al * Bh
926
+ (al_bh Xmm (x64_pmuludq a0 b_hi))
927
+ ;; aa_bb = ah_bl + al_bh
928
+ (aa_bb Xmm (x64_paddq ah_bl al_bh))
929
+ ;; aa_bb_shifted = aa_bb << 32
930
+ (aa_bb_shifted Xmm (x64_psllq aa_bb (RegMemImm.Imm 32)))
931
+ ;; al_bl = Al * Bl
932
+ (al_bl Xmm (x64_pmuludq a0 b0)))
933
+ ;; al_bl + aa_bb_shifted
934
+ (x64_paddq al_bl aa_bb_shifted)))
935
+
936
+ ;; Special case for `i16x8.extmul_high_i8x16_s`.
937
+ (rule 1 (lower (has_type (multi_lane 16 8)
938
+ (imul (swiden_high (and (value_type (multi_lane 8 16))
939
+ x))
940
+ (swiden_high (and (value_type (multi_lane 8 16))
941
+ y)))))
942
+ (let ((x1 Xmm x)
943
+ (x2 Xmm (x64_palignr x1 x1 8 (OperandSize.Size32)))
944
+ (x3 Xmm (x64_pmovsxbw x2))
945
+ (y1 Xmm y)
946
+ (y2 Xmm (x64_palignr y1 y1 8 (OperandSize.Size32)))
947
+ (y3 Xmm (x64_pmovsxbw y2)))
948
+ (x64_pmullw x3 y3)))
949
+
950
+ ;; Special case for `i32x4.extmul_high_i16x8_s`.
951
+ (rule 1 (lower (has_type (multi_lane 32 4)
952
+ (imul (swiden_high (and (value_type (multi_lane 16 8))
953
+ x))
954
+ (swiden_high (and (value_type (multi_lane 16 8))
955
+ y)))))
956
+ (let ((x2 Xmm x)
957
+ (y2 Xmm y)
958
+ (lo Xmm (x64_pmullw x2 y2))
959
+ (hi Xmm (x64_pmulhw x2 y2)))
960
+ (x64_punpckhwd lo hi)))
961
+
962
+ ;; Special case for `i64x2.extmul_high_i32x4_s`.
963
+ (rule 1 (lower (has_type (multi_lane 64 2)
964
+ (imul (swiden_high (and (value_type (multi_lane 32 4))
965
+ x))
966
+ (swiden_high (and (value_type (multi_lane 32 4))
967
+ y)))))
968
+ (let ((x2 Xmm (x64_pshufd x
969
+ 0xFA
970
+ (OperandSize.Size32)))
971
+ (y2 Xmm (x64_pshufd y
972
+ 0xFA
973
+ (OperandSize.Size32))))
974
+ (x64_pmuldq x2 y2)))
975
+
976
+ ;; Special case for `i16x8.extmul_low_i8x16_s`.
977
+ (rule 1 (lower (has_type (multi_lane 16 8)
978
+ (imul (swiden_low (and (value_type (multi_lane 8 16))
979
+ x))
980
+ (swiden_low (and (value_type (multi_lane 8 16))
981
+ y)))))
982
+ (let ((x2 Xmm (x64_pmovsxbw x))
983
+ (y2 Xmm (x64_pmovsxbw y)))
984
+ (x64_pmullw x2 y2)))
985
+
986
+ ;; Special case for `i32x4.extmul_low_i16x8_s`.
987
+ (rule 1 (lower (has_type (multi_lane 32 4)
988
+ (imul (swiden_low (and (value_type (multi_lane 16 8))
989
+ x))
990
+ (swiden_low (and (value_type (multi_lane 16 8))
991
+ y)))))
992
+ (let ((x2 Xmm x)
993
+ (y2 Xmm y)
994
+ (lo Xmm (x64_pmullw x2 y2))
995
+ (hi Xmm (x64_pmulhw x2 y2)))
996
+ (x64_punpcklwd lo hi)))
997
+
998
+ ;; Special case for `i64x2.extmul_low_i32x4_s`.
999
+ (rule 1 (lower (has_type (multi_lane 64 2)
1000
+ (imul (swiden_low (and (value_type (multi_lane 32 4))
1001
+ x))
1002
+ (swiden_low (and (value_type (multi_lane 32 4))
1003
+ y)))))
1004
+ (let ((x2 Xmm (x64_pshufd x
1005
+ 0x50
1006
+ (OperandSize.Size32)))
1007
+ (y2 Xmm (x64_pshufd y
1008
+ 0x50
1009
+ (OperandSize.Size32))))
1010
+ (x64_pmuldq x2 y2)))
1011
+
1012
+ ;; Special case for `i16x8.extmul_high_i8x16_u`.
1013
+ (rule 1 (lower (has_type (multi_lane 16 8)
1014
+ (imul (uwiden_high (and (value_type (multi_lane 8 16))
1015
+ x))
1016
+ (uwiden_high (and (value_type (multi_lane 8 16))
1017
+ y)))))
1018
+ (let ((x1 Xmm x)
1019
+ (x2 Xmm (x64_palignr x1 x1 8 (OperandSize.Size32)))
1020
+ (x3 Xmm (x64_pmovzxbw x2))
1021
+ (y1 Xmm y)
1022
+ (y2 Xmm (x64_palignr y1 y1 8 (OperandSize.Size32)))
1023
+ (y3 Xmm (x64_pmovzxbw y2)))
1024
+ (x64_pmullw x3 y3)))
1025
+
1026
+ ;; Special case for `i32x4.extmul_high_i16x8_u`.
1027
+ (rule 1 (lower (has_type (multi_lane 32 4)
1028
+ (imul (uwiden_high (and (value_type (multi_lane 16 8))
1029
+ x))
1030
+ (uwiden_high (and (value_type (multi_lane 16 8))
1031
+ y)))))
1032
+ (let ((x2 Xmm x)
1033
+ (y2 Xmm y)
1034
+ (lo Xmm (x64_pmullw x2 y2))
1035
+ (hi Xmm (x64_pmulhuw x2 y2)))
1036
+ (x64_punpckhwd lo hi)))
1037
+
1038
+ ;; Special case for `i64x2.extmul_high_i32x4_u`.
1039
+ (rule 1 (lower (has_type (multi_lane 64 2)
1040
+ (imul (uwiden_high (and (value_type (multi_lane 32 4))
1041
+ x))
1042
+ (uwiden_high (and (value_type (multi_lane 32 4))
1043
+ y)))))
1044
+ (let ((x2 Xmm (x64_pshufd x
1045
+ 0xFA
1046
+ (OperandSize.Size32)))
1047
+ (y2 Xmm (x64_pshufd y
1048
+ 0xFA
1049
+ (OperandSize.Size32))))
1050
+ (x64_pmuludq x2 y2)))
1051
+
1052
+ ;; Special case for `i16x8.extmul_low_i8x16_u`.
1053
+ (rule 1 (lower (has_type (multi_lane 16 8)
1054
+ (imul (uwiden_low (and (value_type (multi_lane 8 16))
1055
+ x))
1056
+ (uwiden_low (and (value_type (multi_lane 8 16))
1057
+ y)))))
1058
+ (let ((x2 Xmm (x64_pmovzxbw x))
1059
+ (y2 Xmm (x64_pmovzxbw y)))
1060
+ (x64_pmullw x2 y2)))
1061
+
1062
+ ;; Special case for `i32x4.extmul_low_i16x8_u`.
1063
+ (rule 1 (lower (has_type (multi_lane 32 4)
1064
+ (imul (uwiden_low (and (value_type (multi_lane 16 8))
1065
+ x))
1066
+ (uwiden_low (and (value_type (multi_lane 16 8))
1067
+ y)))))
1068
+ (let ((x2 Xmm x)
1069
+ (y2 Xmm y)
1070
+ (lo Xmm (x64_pmullw x2 y2))
1071
+ (hi Xmm (x64_pmulhuw x2 y2)))
1072
+ (x64_punpcklwd lo hi)))
1073
+
1074
+ ;; Special case for `i64x2.extmul_low_i32x4_u`.
1075
+ (rule 1 (lower (has_type (multi_lane 64 2)
1076
+ (imul (uwiden_low (and (value_type (multi_lane 32 4))
1077
+ x))
1078
+ (uwiden_low (and (value_type (multi_lane 32 4))
1079
+ y)))))
1080
+ (let ((x2 Xmm (x64_pshufd x
1081
+ 0x50
1082
+ (OperandSize.Size32)))
1083
+ (y2 Xmm (x64_pshufd y
1084
+ 0x50
1085
+ (OperandSize.Size32))))
1086
+ (x64_pmuludq x2 y2)))
1087
+
1088
+ ;;;; Rules for `band_not` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1089
+
1090
+ (decl sse_and_not (Type Xmm XmmMem) Xmm)
1091
+ (rule (sse_and_not $F32X4 x y) (x64_andnps x y))
1092
+ (rule (sse_and_not $F64X2 x y) (x64_andnpd x y))
1093
+ (rule -1 (sse_and_not (multi_lane _bits _lanes) x y) (x64_pandn x y))
1094
+
1095
+ ;; Note the flipping of operands below. CLIF specifies
1096
+ ;;
1097
+ ;; band_not(x, y) = and(x, not(y))
1098
+ ;;
1099
+ ;; while x86 does
1100
+ ;;
1101
+ ;; pandn(x, y) = and(not(x), y)
1102
+ (rule (lower (has_type ty (band_not x y)))
1103
+ (sse_and_not ty y x))
1104
+
1105
+ ;;;; Rules for `iabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1106
+
1107
+ (rule (lower (has_type $I8X16 (iabs x)))
1108
+ (x64_pabsb x))
1109
+
1110
+ (rule (lower (has_type $I16X8 (iabs x)))
1111
+ (x64_pabsw x))
1112
+
1113
+ (rule (lower (has_type $I32X4 (iabs x)))
1114
+ (x64_pabsd x))
1115
+
1116
+ ;; When AVX512 is available, we can use a single `vpabsq` instruction.
1117
+ (rule 1 (lower (has_type (and (avx512vl_enabled $true)
1118
+ (avx512f_enabled $true)
1119
+ $I64X2)
1120
+ (iabs x)))
1121
+ (x64_vpabsq x))
1122
+
1123
+ ;; Otherwise, we use a separate register, `neg`, to contain the results of `0 -
1124
+ ;; x` and then blend in those results with `blendvpd` if the MSB of `neg` was
1125
+ ;; set to 1 (i.e. if `neg` was negative or, conversely, if `x` was originally
1126
+ ;; positive).
1127
+ (rule (lower (has_type $I64X2 (iabs x)))
1128
+ (let ((rx Xmm x)
1129
+ (neg Xmm (x64_psubq (imm $I64X2 0) rx)))
1130
+ (x64_blendvpd neg rx neg)))
1131
+
1132
+ ;;;; Rules for `fabs` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1133
+
1134
+ (rule (lower (has_type $F32 (fabs x)))
1135
+ (x64_andps x (imm $F32 0x7fffffff)))
1136
+
1137
+ (rule (lower (has_type $F64 (fabs x)))
1138
+ (x64_andpd x (imm $F64 0x7fffffffffffffff)))
1139
+
1140
+ ;; Special case for `f32x4.abs`.
1141
+ (rule (lower (has_type $F32X4 (fabs x)))
1142
+ (x64_andps x
1143
+ (x64_psrld (vector_all_ones)
1144
+ (RegMemImm.Imm 1))))
1145
+
1146
+ ;; Special case for `f64x2.abs`.
1147
+ (rule (lower (has_type $F64X2 (fabs x)))
1148
+ (x64_andpd x
1149
+ (x64_psrlq (vector_all_ones)
1150
+ (RegMemImm.Imm 1))))
1151
+
1152
+ ;;;; Rules for `fneg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1153
+
1154
+ (rule (lower (has_type $F32 (fneg x)))
1155
+ (x64_xorps x (imm $F32 0x80000000)))
1156
+
1157
+ (rule (lower (has_type $F64 (fneg x)))
1158
+ (x64_xorpd x (imm $F64 0x8000000000000000)))
1159
+
1160
+ (rule (lower (has_type $F32X4 (fneg x)))
1161
+ (x64_xorps x
1162
+ (x64_pslld (vector_all_ones)
1163
+ (RegMemImm.Imm 31))))
1164
+
1165
+ (rule (lower (has_type $F64X2 (fneg x)))
1166
+ (x64_xorpd x
1167
+ (x64_psllq (vector_all_ones)
1168
+ (RegMemImm.Imm 63))))
1169
+
1170
+ ;;;; Rules for `bmask` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1171
+
1172
+ (decl lower_bmask (Type Type ValueRegs) ValueRegs)
1173
+
1174
+ ;; Values that fit in a register
1175
+ ;;
1176
+ ;; Use the neg instruction on the input which sets the CF (carry) flag
1177
+ ;; to 0 if the input is 0 or 1 otherwise.
1178
+ ;; We then subtract the output register with itself, which always gives a 0,
1179
+ ;; however use the carry flag from the previous negate to generate a -1 if it
1180
+ ;; was nonzero.
1181
+ ;;
1182
+ ;; neg in_reg
1183
+ ;; sbb out_reg, out_reg
1184
+ (rule 0
1185
+ (lower_bmask (fits_in_64 out_ty) (fits_in_64 in_ty) val)
1186
+ (let ((reg Gpr (value_regs_get_gpr val 0))
1187
+ (out ValueRegs (with_flags
1188
+ (x64_neg_paired in_ty reg)
1189
+ (x64_sbb_paired out_ty reg reg))))
1190
+ ;; Extract only the output of the sbb instruction
1191
+ (value_reg (value_regs_get out 1))))
1192
+
1193
+
1194
+ ;; If the input type is I128 we can `or` the registers, and recurse to the general case.
1195
+ (rule 1
1196
+ (lower_bmask (fits_in_64 out_ty) $I128 val)
1197
+ (let ((lo Gpr (value_regs_get_gpr val 0))
1198
+ (hi Gpr (value_regs_get_gpr val 1))
1199
+ (mixed Gpr (x64_or $I64 lo hi)))
1200
+ (lower_bmask out_ty $I64 (value_reg mixed))))
1201
+
1202
+ ;; If the output type is I128 we just duplicate the result of the I64 lowering
1203
+ (rule 2
1204
+ (lower_bmask $I128 in_ty val)
1205
+ (let ((res ValueRegs (lower_bmask $I64 in_ty val))
1206
+ (res Gpr (value_regs_get_gpr res 0)))
1207
+ (value_regs res res)))
1208
+
1209
+
1210
+ ;; Call the lower_bmask rule that does all the procssing
1211
+ (rule (lower (has_type out_ty (bmask x @ (value_type in_ty))))
1212
+ (lower_bmask out_ty in_ty x))
1213
+
1214
+ ;;;; Rules for `bnot` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1215
+
1216
+ ;; `i64` and smaller.
1217
+
1218
+ (rule -2 (lower (has_type ty (bnot x)))
1219
+ (if (ty_int_ref_scalar_64 ty))
1220
+ (x64_not ty x))
1221
+
1222
+
1223
+ ;; `i128`.
1224
+
1225
+ (decl i128_not (Value) ValueRegs)
1226
+ (rule (i128_not x)
1227
+ (let ((x_regs ValueRegs x)
1228
+ (x_lo Gpr (value_regs_get_gpr x_regs 0))
1229
+ (x_hi Gpr (value_regs_get_gpr x_regs 1)))
1230
+ (value_gprs (x64_not $I64 x_lo)
1231
+ (x64_not $I64 x_hi))))
1232
+
1233
+ (rule (lower (has_type $I128 (bnot x)))
1234
+ (i128_not x))
1235
+
1236
+ ;; f32 and f64
1237
+
1238
+ (rule -3 (lower (has_type (ty_scalar_float ty) (bnot x)))
1239
+ (sse_xor ty x (vector_all_ones)))
1240
+
1241
+ ;; Special case for vector-types where bit-negation is an xor against an
1242
+ ;; all-one value
1243
+ (rule -1 (lower (has_type ty @ (multi_lane _bits _lanes) (bnot x)))
1244
+ (sse_xor ty x (vector_all_ones)))
1245
+
1246
+ ;;;; Rules for `bitselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1247
+
1248
+ (rule (lower (has_type ty @ (multi_lane _bits _lanes)
1249
+ (bitselect condition
1250
+ if_true
1251
+ if_false)))
1252
+ ;; a = and if_true, condition
1253
+ ;; b = and_not condition, if_false
1254
+ ;; or b, a
1255
+ (let ((cond_xmm Xmm condition)
1256
+ (a Xmm (sse_and ty if_true cond_xmm))
1257
+ (b Xmm (sse_and_not ty cond_xmm if_false)))
1258
+ (sse_or ty b a)))
1259
+
1260
+ ;; If every byte of the condition is guaranteed to be all ones or all zeroes,
1261
+ ;; we can use x86_blend like vselect does.
1262
+ (rule 1 (lower (has_type ty @ (multi_lane _bits _lanes)
1263
+ (bitselect condition
1264
+ if_true
1265
+ if_false)))
1266
+ (if (all_ones_or_all_zeros condition))
1267
+ (x64_blend ty
1268
+ condition
1269
+ if_true
1270
+ if_false))
1271
+
1272
+ (decl pure partial all_ones_or_all_zeros (Value) bool)
1273
+ (rule (all_ones_or_all_zeros (and (icmp _ _ _) (value_type (multi_lane _ _)))) $true)
1274
+ (rule (all_ones_or_all_zeros (and (fcmp _ _ _) (value_type (multi_lane _ _)))) $true)
1275
+ (rule (all_ones_or_all_zeros (vconst (vconst_all_ones_or_all_zeros))) $true)
1276
+
1277
+ (decl pure vconst_all_ones_or_all_zeros () Constant)
1278
+ (extern extractor vconst_all_ones_or_all_zeros vconst_all_ones_or_all_zeros)
1279
+
1280
+ ;;;; Rules for `vselect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1281
+
1282
+ (rule (lower (has_type ty @ (multi_lane _bits _lanes)
1283
+ (vselect condition if_true if_false)))
1284
+ (x64_blend ty
1285
+ condition
1286
+ if_true
1287
+ if_false))
1288
+
1289
+ ;;;; Rules for `insertlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1290
+
1291
+ (rule (lower (insertlane vec @ (value_type ty) val (u8_from_uimm8 idx)))
1292
+ (vec_insert_lane ty vec val idx))
1293
+
1294
+ ;; Helper function used below for `insertlane` but also here for other
1295
+ ;; lowerings.
1296
+ ;;
1297
+ ;; Note that the `Type` used here is the type of vector the insertion is
1298
+ ;; happening into, or the type of the first `Reg` argument.
1299
+ (decl vec_insert_lane (Type Xmm RegMem u8) Xmm)
1300
+
1301
+ ;; i8x16.replace_lane
1302
+ (rule (vec_insert_lane $I8X16 vec val idx)
1303
+ (x64_pinsrb vec val idx))
1304
+
1305
+ ;; i16x8.replace_lane
1306
+ (rule (vec_insert_lane $I16X8 vec val idx)
1307
+ (x64_pinsrw vec val idx))
1308
+
1309
+ ;; i32x4.replace_lane
1310
+ (rule (vec_insert_lane $I32X4 vec val idx)
1311
+ (x64_pinsrd vec val idx (OperandSize.Size32)))
1312
+
1313
+ ;; i64x2.replace_lane
1314
+ (rule (vec_insert_lane $I64X2 vec val idx)
1315
+ (x64_pinsrd vec val idx (OperandSize.Size64)))
1316
+
1317
+ ;; f32x4.replace_lane
1318
+ (rule (vec_insert_lane $F32X4 vec val idx)
1319
+ (x64_insertps vec val (sse_insertps_lane_imm idx)))
1320
+
1321
+ ;; External rust code used to calculate the immediate value to `insertps`.
1322
+ (decl sse_insertps_lane_imm (u8) u8)
1323
+ (extern constructor sse_insertps_lane_imm sse_insertps_lane_imm)
1324
+
1325
+ ;; f64x2.replace_lane 0
1326
+ ;;
1327
+ ;; Here the `movsd` instruction is used specifically to specialize moving
1328
+ ;; into the fist lane where unlike above cases we're not using the lane
1329
+ ;; immediate as an immediate to the instruction itself.
1330
+ ;;
1331
+ ;; Note, though, the `movsd` has different behavior with respect to the second
1332
+ ;; lane of the f64x2 depending on whether the RegMem operand is a register or
1333
+ ;; memory. When loading from a register `movsd` preserves the upper bits, but
1334
+ ;; when loading from memory it zeros the upper bits. We specifically want to
1335
+ ;; preserve the upper bits so if a `RegMem.Mem` is passed in we need to emit
1336
+ ;; two `movsd` instructions. The first `movsd` (used as `xmm_unary_rm_r`) will
1337
+ ;; load from memory into a temp register and then the second `movsd` (modeled
1338
+ ;; internally as `xmm_rm_r` will merge the temp register into our `vec`
1339
+ ;; register.
1340
+ (rule 1 (vec_insert_lane $F64X2 vec (RegMem.Reg val) 0)
1341
+ (x64_movsd_regmove vec val))
1342
+ (rule (vec_insert_lane $F64X2 vec mem 0)
1343
+ (x64_movsd_regmove vec (x64_movsd_load mem)))
1344
+
1345
+ ;; f64x2.replace_lane 1
1346
+ ;;
1347
+ ;; Here the `movlhps` instruction is used specifically to specialize moving
1348
+ ;; into the second lane where unlike above cases we're not using the lane
1349
+ ;; immediate as an immediate to the instruction itself.
1350
+ (rule (vec_insert_lane $F64X2 vec val 1)
1351
+ (x64_movlhps vec (reg_mem_to_xmm_mem val)))
1352
+
1353
+ ;;;; Rules for `smin`, `smax`, `umin`, `umax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1354
+
1355
+ ;; `i64` and smaller.
1356
+
1357
+ (decl cmp_and_choose (Type CC Value Value) ValueRegs)
1358
+ (rule (cmp_and_choose (fits_in_64 ty) cc x y)
1359
+ (let ((size OperandSize (raw_operand_size_of_type ty))
1360
+ ;; We need to put x and y in registers explicitly because
1361
+ ;; we use the values more than once. Hence, even if these
1362
+ ;; are "unique uses" at the CLIF level and would otherwise
1363
+ ;; allow for load-op merging, here we cannot do that.
1364
+ (x_reg Reg x)
1365
+ (y_reg Reg y))
1366
+ (with_flags_reg (x64_cmp size x_reg y_reg)
1367
+ (cmove ty cc y_reg x_reg))))
1368
+
1369
+ (rule -1 (lower (has_type (fits_in_64 ty) (umin x y)))
1370
+ (cmp_and_choose ty (CC.B) x y))
1371
+
1372
+ (rule -1 (lower (has_type (fits_in_64 ty) (umax x y)))
1373
+ (cmp_and_choose ty (CC.NB) x y))
1374
+
1375
+ (rule -1 (lower (has_type (fits_in_64 ty) (smin x y)))
1376
+ (cmp_and_choose ty (CC.L) x y))
1377
+
1378
+ (rule -1 (lower (has_type (fits_in_64 ty) (smax x y)))
1379
+ (cmp_and_choose ty (CC.NL) x y))
1380
+
1381
+ ;; SSE `smax`.
1382
+
1383
+ (rule (lower (has_type $I8X16 (smax x y)))
1384
+ (x64_pmaxsb x y))
1385
+
1386
+ (rule (lower (has_type $I16X8 (smax x y)))
1387
+ (x64_pmaxsw x y))
1388
+
1389
+ (rule (lower (has_type $I32X4 (smax x y)))
1390
+ (x64_pmaxsd x y))
1391
+
1392
+ ;; SSE `smin`.
1393
+
1394
+ (rule (lower (has_type $I8X16 (smin x y)))
1395
+ (x64_pminsb x y))
1396
+
1397
+ (rule (lower (has_type $I16X8 (smin x y)))
1398
+ (x64_pminsw x y))
1399
+
1400
+ (rule (lower (has_type $I32X4 (smin x y)))
1401
+ (x64_pminsd x y))
1402
+
1403
+ ;; SSE `umax`.
1404
+
1405
+ (rule (lower (has_type $I8X16 (umax x y)))
1406
+ (x64_pmaxub x y))
1407
+
1408
+ (rule (lower (has_type $I16X8 (umax x y)))
1409
+ (x64_pmaxuw x y))
1410
+
1411
+ (rule (lower (has_type $I32X4 (umax x y)))
1412
+ (x64_pmaxud x y))
1413
+
1414
+ ;; SSE `umin`.
1415
+
1416
+ (rule (lower (has_type $I8X16 (umin x y)))
1417
+ (x64_pminub x y))
1418
+
1419
+ (rule (lower (has_type $I16X8 (umin x y)))
1420
+ (x64_pminuw x y))
1421
+
1422
+ (rule (lower (has_type $I32X4 (umin x y)))
1423
+ (x64_pminud x y))
1424
+
1425
+ ;;;; Rules for `trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1426
+
1427
+ (rule (lower (trap code))
1428
+ (side_effect (x64_ud2 code)))
1429
+
1430
+ ;;;; Rules for `uadd_overflow_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1431
+
1432
+ (rule (lower (has_type (fits_in_64 ty) (uadd_overflow_trap a b tc)))
1433
+ (with_flags
1434
+ (x64_add_with_flags_paired ty a b)
1435
+ (trap_if (CC.B) tc)))
1436
+
1437
+ ;; Add a register and an immediate.
1438
+
1439
+ (rule 1 (lower (has_type (fits_in_64 ty)
1440
+ (uadd_overflow_trap a (simm32_from_value b) tc)))
1441
+ (with_flags
1442
+ (x64_add_with_flags_paired ty a b)
1443
+ (trap_if (CC.B) tc)))
1444
+
1445
+ (rule 2 (lower (has_type (fits_in_64 ty)
1446
+ (uadd_overflow_trap (simm32_from_value a) b tc)))
1447
+ (with_flags
1448
+ (x64_add_with_flags_paired ty b a)
1449
+ (trap_if (CC.B) tc)))
1450
+
1451
+ ;; Add a register and memory.
1452
+
1453
+ (rule 3 (lower (has_type (fits_in_64 ty)
1454
+ (uadd_overflow_trap a (sinkable_load b) tc)))
1455
+ (with_flags
1456
+ (x64_add_with_flags_paired ty a (sink_load_to_gpr_mem_imm b))
1457
+ (trap_if (CC.B) tc)))
1458
+
1459
+ (rule 4 (lower (has_type (fits_in_64 ty)
1460
+ (uadd_overflow_trap (sinkable_load a) b tc)))
1461
+ (with_flags
1462
+ (x64_add_with_flags_paired ty b (sink_load_to_gpr_mem_imm a))
1463
+ (trap_if (CC.B) tc)))
1464
+
1465
+ ;;;; Rules for `resumable_trap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1466
+
1467
+ (rule (lower (resumable_trap code))
1468
+ (side_effect (x64_ud2 code)))
1469
+
1470
+ ;;;; Rules for `return` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1471
+
1472
+ ;; N.B.: the Ret itself is generated by the ABI.
1473
+ (rule (lower (return args))
1474
+ (lower_return (range 0 (value_slice_len args)) args))
1475
+
1476
+ ;;;; Rules for `icmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1477
+
1478
+ (rule -2 (lower (icmp cc a @ (value_type (fits_in_64 ty)) b))
1479
+ (lower_icmp_bool (emit_cmp cc a b)))
1480
+
1481
+ (rule -1 (lower (icmp cc a @ (value_type $I128) b))
1482
+ (lower_icmp_bool (emit_cmp cc a b)))
1483
+
1484
+ ;; Peephole optimization for `x < 0`, when x is a signed 64 bit value
1485
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I64) (u64_from_iconst 0))))
1486
+ (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1487
+
1488
+ ;; Peephole optimization for `0 > x`, when x is a signed 64 bit value
1489
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I64))))
1490
+ (x64_shr $I64 x (Imm8Reg.Imm8 63)))
1491
+
1492
+ ;; Peephole optimization for `0 <= x`, when x is a signed 64 bit value
1493
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I64))))
1494
+ (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1495
+
1496
+ ;; Peephole optimization for `x >= 0`, when x is a signed 64 bit value
1497
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I64) (u64_from_iconst 0))))
1498
+ (x64_shr $I64 (x64_not $I64 x) (Imm8Reg.Imm8 63)))
1499
+
1500
+ ;; Peephole optimization for `x < 0`, when x is a signed 32 bit value
1501
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThan) x @ (value_type $I32) (u64_from_iconst 0))))
1502
+ (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1503
+
1504
+ ;; Peephole optimization for `0 > x`, when x is a signed 32 bit value
1505
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThan) (u64_from_iconst 0) x @ (value_type $I32))))
1506
+ (x64_shr $I32 x (Imm8Reg.Imm8 31)))
1507
+
1508
+ ;; Peephole optimization for `0 <= x`, when x is a signed 32 bit value
1509
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedLessThanOrEqual) (u64_from_iconst 0) x @ (value_type $I32))))
1510
+ (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1511
+
1512
+ ;; Peephole optimization for `x >= 0`, when x is a signed 32 bit value
1513
+ (rule 2 (lower (has_type $I8 (icmp (IntCC.SignedGreaterThanOrEqual) x @ (value_type $I32) (u64_from_iconst 0))))
1514
+ (x64_shr $I32 (x64_not $I64 x) (Imm8Reg.Imm8 31)))
1515
+
1516
+ ;; For XMM-held values, we lower to `PCMP*` instructions, sometimes more than
1517
+ ;; one. To note: what is different here about the output values is that each
1518
+ ;; lane will be filled with all 1s or all 0s according to the comparison,
1519
+ ;; whereas for GPR-held values, the result will be simply 0 or 1 (upper bits
1520
+ ;; unset).
1521
+ (rule (lower (icmp (IntCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1522
+ (x64_pcmpeq ty a b))
1523
+
1524
+ ;; To lower a not-equals comparison, we perform an equality comparison
1525
+ ;; (PCMPEQ*) and then invert the bits (PXOR with all 1s).
1526
+ (rule (lower (icmp (IntCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1527
+ (let ((checked Xmm (x64_pcmpeq ty a b))
1528
+ (all_ones Xmm (vector_all_ones)))
1529
+ (x64_pxor checked all_ones)))
1530
+ ;; Signed comparisons have a single-instruction lowering, unlike their unsigned
1531
+ ;; counterparts. These latter instructions use the unsigned min/max
1532
+ ;; (PMINU*/PMAXU*) and negate the result (PXOR with all 1s).
1533
+ (rule (lower (icmp (IntCC.SignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1534
+ (x64_pcmpgt ty a b))
1535
+ (rule (lower (icmp (IntCC.SignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1536
+ (x64_pcmpgt ty b a))
1537
+ (rule (lower (icmp (IntCC.UnsignedGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1538
+ ;; N.B.: we must manually prevent load coalescing of these operands; the
1539
+ ;; register allocator gets confused otherwise. TODO:
1540
+ ;; https://github.com/bytecodealliance/wasmtime/issues/3953.
1541
+ (let ((xmm_a Xmm (put_in_xmm a))
1542
+ (xmm_b Xmm (put_in_xmm b))
1543
+ (max Xmm (x64_pmaxu ty xmm_a xmm_b))
1544
+ (eq Xmm (x64_pcmpeq ty max xmm_b))
1545
+ (all_ones Xmm (vector_all_ones)))
1546
+ (x64_pxor eq all_ones)))
1547
+ (rule (lower (icmp (IntCC.UnsignedLessThan) a @ (value_type (ty_vec128 ty)) b))
1548
+ ;; N.B.: see note above.
1549
+ (let ((xmm_a Xmm (put_in_xmm a))
1550
+ (xmm_b Xmm (put_in_xmm b))
1551
+ (min Xmm (x64_pminu ty xmm_a xmm_b))
1552
+ (eq Xmm (x64_pcmpeq ty min xmm_b))
1553
+ (all_ones Xmm (vector_all_ones)))
1554
+ (x64_pxor eq all_ones)))
1555
+ ;; To lower signed and unsigned *-or-equals comparisons, we find the minimum
1556
+ ;; number (PMIN[U|S]*) and compare that to one of the terms (PCMPEQ*). Note that
1557
+ ;; there is no 64x2 version of this lowering (see below).
1558
+ (rule (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1559
+ (let ((max Xmm (x64_pmaxs ty a b)))
1560
+ (x64_pcmpeq ty a max)))
1561
+ (rule (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1562
+ (let ((min Xmm (x64_pmins ty a b)))
1563
+ (x64_pcmpeq ty a min)))
1564
+ (rule (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1565
+ (let ((max Xmm (x64_pmaxu ty a b)))
1566
+ (x64_pcmpeq ty a max)))
1567
+ (rule (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1568
+ (let ((min Xmm (x64_pminu ty a b)))
1569
+ (x64_pcmpeq ty a min)))
1570
+ ;; The PMIN[S|U]Q instruction is only available in AVX512VL/F so we must instead
1571
+ ;; compare with flipped operands (PCMPGT*) and negate the result (PXOR with all
1572
+ ;; 1s), emitting one more instruction than the smaller-lane versions.
1573
+ (rule 1 (lower (icmp (IntCC.SignedGreaterThanOrEqual) a @ (value_type $I64X2) b))
1574
+ (let ((checked Xmm (x64_pcmpgt $I64X2 b a))
1575
+ (all_ones Xmm (vector_all_ones)))
1576
+ (x64_pxor checked all_ones)))
1577
+ (rule 1 (lower (icmp (IntCC.SignedLessThanOrEqual) a @ (value_type $I64X2) b))
1578
+ (let ((checked Xmm (x64_pcmpgt $I64X2 a b))
1579
+ (all_ones Xmm (vector_all_ones)))
1580
+ (x64_pxor checked all_ones)))
1581
+ ;; TODO: not used by WebAssembly translation
1582
+ ;; (rule (lower (icmp (IntCC.UnsignedGreaterThanOrEqual) a @ (value_type $I64X2) b))
1583
+ ;; TODO: not used by WebAssembly translation
1584
+ ;; (rule (lower (icmp (IntCC.UnsignedLessThanOrEqual) a @ (value_type $I64X2) b))
1585
+
1586
+
1587
+ ;;;; Rules for `fcmp` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1588
+
1589
+ ;; CLIF's `fcmp` instruction always operates on XMM registers--both scalar and
1590
+ ;; vector. For the scalar versions, we use the flag-setting behavior of the
1591
+ ;; `UCOMIS*` instruction to `SETcc` a 0 or 1 in a GPR register. Note that CLIF's
1592
+ ;; `select` uses the same kind of flag-setting behavior but chooses values other
1593
+ ;; than 0 or 1.
1594
+ ;;
1595
+ ;; Checking the result of `UCOMIS*` is unfortunately difficult in some cases
1596
+ ;; because we do not have `SETcc` instructions that explicitly check
1597
+ ;; simultaneously for the condition (i.e., `eq`, `le`, `gt`, etc.) *and*
1598
+ ;; orderedness. Instead, we must check the flags multiple times. The UCOMIS*
1599
+ ;; documentation (see Intel's Software Developer's Manual, volume 2, chapter 4)
1600
+ ;; is helpful:
1601
+ ;; - unordered assigns Z = 1, P = 1, C = 1
1602
+ ;; - greater than assigns Z = 0, P = 0, C = 0
1603
+ ;; - less than assigns Z = 0, P = 0, C = 1
1604
+ ;; - equal assigns Z = 1, P = 0, C = 0
1605
+
1606
+ (rule -1 (lower (fcmp cc a @ (value_type (ty_scalar_float ty)) b))
1607
+ (lower_fcmp_bool (emit_fcmp cc a b)))
1608
+
1609
+ ;; For vector lowerings, we use `CMPP*` instructions with a 3-bit operand that
1610
+ ;; determines the comparison to make. Note that comparisons that succeed will
1611
+ ;; fill the lane with 1s; comparisons that do not will fill the lane with 0s.
1612
+
1613
+ (rule (lower (fcmp (FloatCC.Equal) a @ (value_type (ty_vec128 ty)) b))
1614
+ (x64_cmpp ty a b (FcmpImm.Equal)))
1615
+ (rule (lower (fcmp (FloatCC.NotEqual) a @ (value_type (ty_vec128 ty)) b))
1616
+ (x64_cmpp ty a b (FcmpImm.NotEqual)))
1617
+ (rule (lower (fcmp (FloatCC.LessThan) a @ (value_type (ty_vec128 ty)) b))
1618
+ (x64_cmpp ty a b (FcmpImm.LessThan)))
1619
+ (rule (lower (fcmp (FloatCC.LessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1620
+ (x64_cmpp ty a b (FcmpImm.LessThanOrEqual)))
1621
+ (rule (lower (fcmp (FloatCC.Ordered) a @ (value_type (ty_vec128 ty)) b))
1622
+ (x64_cmpp ty a b (FcmpImm.Ordered)))
1623
+ (rule (lower (fcmp (FloatCC.Unordered) a @ (value_type (ty_vec128 ty)) b))
1624
+ (x64_cmpp ty a b (FcmpImm.Unordered)))
1625
+ (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThan) a @ (value_type (ty_vec128 ty)) b))
1626
+ (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThan)))
1627
+ (rule (lower (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1628
+ (x64_cmpp ty a b (FcmpImm.UnorderedOrGreaterThanOrEqual)))
1629
+
1630
+ ;; Some vector lowerings rely on flipping the operands and using a reversed
1631
+ ;; comparison code.
1632
+
1633
+ (rule (lower (fcmp (FloatCC.GreaterThan) a @ (value_type (ty_vec128 ty)) b))
1634
+ (x64_cmpp ty b a (FcmpImm.LessThan)))
1635
+ (rule (lower (fcmp (FloatCC.GreaterThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1636
+ (x64_cmpp ty b a (FcmpImm.LessThanOrEqual)))
1637
+ (rule (lower (fcmp (FloatCC.UnorderedOrLessThan) a @ (value_type (ty_vec128 ty)) b))
1638
+ (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThan)))
1639
+ (rule (lower (fcmp (FloatCC.UnorderedOrLessThanOrEqual) a @ (value_type (ty_vec128 ty)) b))
1640
+ (x64_cmpp ty b a (FcmpImm.UnorderedOrGreaterThanOrEqual)))
1641
+
1642
+ ;; Some vector lowerings are simply not supported for certain codes:
1643
+ ;; - FloatCC::OrderedNotEqual
1644
+ ;; - FloatCC::UnorderedOrEqual
1645
+
1646
+ ;;;; Rules for `select` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1647
+
1648
+ ;; CLIF `select` instructions receive a testable argument (i.e. boolean or
1649
+ ;; integer) that determines which of the other two arguments is selected as
1650
+ ;; output. Since Cranelift booleans are typically generated by a comparison, the
1651
+ ;; lowerings in this section "look upwards in the tree" to emit the proper
1652
+ ;; sequence of "selection" instructions.
1653
+ ;;
1654
+ ;; The following rules--for selecting on a floating-point comparison--emit a
1655
+ ;; `UCOMIS*` instruction and then a conditional move, `cmove`. Note that for
1656
+ ;; values contained in XMM registers, `cmove` and `cmove_or` may in fact emit a
1657
+ ;; jump sequence, not `CMOV`. The `cmove` instruction operates on the flags set
1658
+ ;; by `UCOMIS*`; the key to understanding these is the UCOMIS* documentation
1659
+ ;; (see Intel's Software Developer's Manual, volume 2, chapter 4):
1660
+ ;; - unordered assigns Z = 1, P = 1, C = 1
1661
+ ;; - greater than assigns Z = 0, P = 0, C = 0
1662
+ ;; - less than assigns Z = 0, P = 0, C = 1
1663
+ ;; - equal assigns Z = 1, P = 0, C = 0
1664
+ ;;
1665
+ ;; Note that prefixing the flag with `N` means "not," so that `CC.P -> P = 1`
1666
+ ;; and `CC.NP -> P = 0`. Also, x86 uses mnemonics for certain combinations of
1667
+ ;; flags; e.g.:
1668
+ ;; - `CC.B -> C = 1` (below)
1669
+ ;; - `CC.NB -> C = 0` (not below)
1670
+ ;; - `CC.BE -> C = 1 OR Z = 1` (below or equal)
1671
+ ;; - `CC.NBE -> C = 0 AND Z = 0` (not below or equal)
1672
+
1673
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.Ordered) a b)) x y)))
1674
+ (with_flags (x64_ucomis b a) (cmove_from_values ty (CC.NP) x y)))
1675
+
1676
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.Unordered) a b)) x y)))
1677
+ (with_flags (x64_ucomis b a) (cmove_from_values ty (CC.P) x y)))
1678
+
1679
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.GreaterThan) a b)) x y)))
1680
+ (with_flags (x64_ucomis b a) (cmove_from_values ty (CC.NBE) x y)))
1681
+
1682
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.GreaterThanOrEqual) a b)) x y)))
1683
+ (with_flags (x64_ucomis b a) (cmove_from_values ty (CC.NB) x y)))
1684
+
1685
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.UnorderedOrLessThan) a b)) x y)))
1686
+ (with_flags (x64_ucomis b a) (cmove_from_values ty (CC.B) x y)))
1687
+
1688
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.UnorderedOrLessThanOrEqual) a b)) x y)))
1689
+ (with_flags (x64_ucomis b a) (cmove_from_values ty (CC.BE) x y)))
1690
+
1691
+ ;; Certain FloatCC variants are implemented by flipping the operands of the
1692
+ ;; comparison (e.g., "greater than" is lowered the same as "less than" but the
1693
+ ;; comparison is reversed). This allows us to use a single flag for the `cmove`,
1694
+ ;; which involves fewer instructions than `cmove_or`.
1695
+ ;;
1696
+ ;; But why flip at all, you may ask? Can't we just use `CC.B` (i.e., below) for
1697
+ ;; `FloatCC.LessThan`? Recall that in these floating-point lowerings, values may
1698
+ ;; be unordered and we must we want to express that `FloatCC.LessThan` is `LT`,
1699
+ ;; not `LT | UNO`. By flipping the operands AND inverting the comparison (e.g.,
1700
+ ;; to `CC.NBE`), we also avoid these unordered cases.
1701
+
1702
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.LessThan) a b)) x y)))
1703
+ (with_flags (x64_ucomis a b) (cmove_from_values ty (CC.NBE) x y)))
1704
+
1705
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.LessThanOrEqual) a b)) x y)))
1706
+ (with_flags (x64_ucomis a b) (cmove_from_values ty (CC.NB) x y)))
1707
+
1708
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.UnorderedOrGreaterThan) a b)) x y)))
1709
+ (with_flags (x64_ucomis a b) (cmove_from_values ty (CC.B) x y)))
1710
+
1711
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.UnorderedOrGreaterThanOrEqual) a b)) x y)))
1712
+ (with_flags (x64_ucomis a b) (cmove_from_values ty (CC.BE) x y)))
1713
+
1714
+ ;; `FloatCC.Equal` and `FloatCC.NotEqual` can only be implemented with multiple
1715
+ ;; flag checks. Recall from the flag assignment chart above that equality, e.g.,
1716
+ ;; will assign `Z = 1`. But so does an unordered comparison: `Z = 1, P = 1, C =
1717
+ ;; 1`. In order to avoid semantics like `EQ | UNO` for equality, we must ensure
1718
+ ;; that the values are actually ordered, checking that `P = 0` (note that the
1719
+ ;; `C` flag is irrelevant here). Since we cannot find a single instruction that
1720
+ ;; implements a `Z = 1 AND P = 0` check, we invert the flag checks (i.e., `Z = 1
1721
+ ;; AND P = 0` becomes `Z = 0 OR P = 1`) and also flip the select operands, `x`
1722
+ ;; and `y`. The same argument applies to `FloatCC.NotEqual`.
1723
+ ;;
1724
+ ;; More details about the CLIF semantics for `fcmp` are available at
1725
+ ;; https://docs.rs/cranelift-codegen/latest/cranelift_codegen/ir/trait.InstBuilder.html#method.fcmp.
1726
+
1727
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.Equal) a b)) x y)))
1728
+ (with_flags (x64_ucomis a b) (cmove_or_from_values ty (CC.NZ) (CC.P) y x)))
1729
+
1730
+ (rule (lower (has_type ty (select (maybe_uextend (fcmp (FloatCC.NotEqual) a b)) x y)))
1731
+ (with_flags (x64_ucomis a b) (cmove_or_from_values ty (CC.NZ) (CC.P) x y)))
1732
+
1733
+ ;; We also can lower `select`s that depend on an `icmp` test, but more simply
1734
+ ;; than the `fcmp` variants above. In these cases, we lower to a `CMP`
1735
+ ;; instruction plus a `CMOV`; recall that `cmove_from_values` here may emit more
1736
+ ;; than one instruction for certain types (e.g., XMM-held, I128).
1737
+
1738
+ (rule (lower (has_type ty (select (maybe_uextend (icmp cc a @ (value_type (fits_in_64 a_ty)) b)) x y)))
1739
+ (let ((size OperandSize (raw_operand_size_of_type a_ty)))
1740
+ (with_flags (x64_cmp size b a) (cmove_from_values ty cc x y))))
1741
+
1742
+ ;; Finally, we lower `select` from a condition value `c`. These rules are meant
1743
+ ;; to be the final, default lowerings if no other patterns matched above.
1744
+
1745
+ (rule -1 (lower (has_type ty (select c @ (value_type (fits_in_64 a_ty)) x y)))
1746
+ (let ((size OperandSize (raw_operand_size_of_type a_ty))
1747
+ ;; N.B.: disallow load-op fusion, see above. TODO:
1748
+ ;; https://github.com/bytecodealliance/wasmtime/issues/3953.
1749
+ (gpr_c Gpr (put_in_gpr c)))
1750
+ (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
1751
+
1752
+ (rule -2 (lower (has_type ty (select c @ (value_type $I128) x y)))
1753
+ (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
1754
+ (select_icmp cond_result x y)))
1755
+
1756
+ ;; Rules for `clz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1757
+
1758
+ ;; If available, we can use a plain lzcnt instruction here. Note no
1759
+ ;; special handling is required for zero inputs, because the machine
1760
+ ;; instruction does what the CLIF expects for zero, i.e. it returns
1761
+ ;; zero.
1762
+ (rule 2 (lower
1763
+ (has_type (and
1764
+ (ty_32_or_64 ty)
1765
+ (use_lzcnt $true))
1766
+ (clz src)))
1767
+ (x64_lzcnt ty src))
1768
+
1769
+ (rule 2 (lower
1770
+ (has_type (and
1771
+ (ty_32_or_64 ty)
1772
+ (use_lzcnt $false))
1773
+ (clz src)))
1774
+ (do_clz ty ty src))
1775
+
1776
+ (rule 1 (lower
1777
+ (has_type (ty_8_or_16 ty)
1778
+ (clz src)))
1779
+ (do_clz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
1780
+
1781
+ (rule 0 (lower
1782
+ (has_type $I128
1783
+ (clz src)))
1784
+ (let ((upper Gpr (do_clz $I64 $I64 (value_regs_get_gpr src 1)))
1785
+ (lower Gpr (x64_add $I64
1786
+ (do_clz $I64 $I64 (value_regs_get_gpr src 0))
1787
+ (RegMemImm.Imm 64)))
1788
+ (result_lo Gpr
1789
+ (with_flags_reg
1790
+ (x64_cmp_imm (OperandSize.Size64) 64 upper)
1791
+ (cmove $I64 (CC.NZ) upper lower))))
1792
+ (value_regs result_lo (imm $I64 0))))
1793
+
1794
+ ;; Implementation helper for clz; operates on 32 or 64-bit units.
1795
+ (decl do_clz (Type Type Gpr) Gpr)
1796
+ (rule (do_clz ty orig_ty src)
1797
+ (let ((highest_bit_index Reg (bsr_or_else ty src (imm_i64 $I64 -1)))
1798
+ (bits_minus_1 Reg (imm ty (u64_sub (ty_bits_u64 orig_ty) 1))))
1799
+ (x64_sub ty bits_minus_1 highest_bit_index)))
1800
+
1801
+ ;; Rules for `ctz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1802
+
1803
+ ;; Analogous to `clz` cases above, but using mirror instructions
1804
+ ;; (tzcnt vs lzcnt, bsf vs bsr).
1805
+
1806
+ (rule 2 (lower
1807
+ (has_type (and
1808
+ (ty_32_or_64 ty)
1809
+ (use_bmi1 $true))
1810
+ (ctz src)))
1811
+ (x64_tzcnt ty src))
1812
+
1813
+ (rule 2 (lower
1814
+ (has_type (and
1815
+ (ty_32_or_64 ty)
1816
+ (use_bmi1 $false))
1817
+ (ctz src)))
1818
+ (do_ctz ty ty src))
1819
+
1820
+ (rule 1 (lower
1821
+ (has_type (ty_8_or_16 ty)
1822
+ (ctz src)))
1823
+ (do_ctz $I32 ty (extend_to_gpr src $I32 (ExtendKind.Zero))))
1824
+
1825
+ (rule 0 (lower
1826
+ (has_type $I128
1827
+ (ctz src)))
1828
+ (let ((lower Gpr (do_ctz $I64 $I64 (value_regs_get_gpr src 0)))
1829
+ (upper Gpr (x64_add $I64
1830
+ (do_ctz $I64 $I64 (value_regs_get_gpr src 1))
1831
+ (RegMemImm.Imm 64)))
1832
+ (result_lo Gpr
1833
+ (with_flags_reg
1834
+ (x64_cmp_imm (OperandSize.Size64) 64 lower)
1835
+ (cmove $I64 (CC.Z) upper lower))))
1836
+ (value_regs result_lo (imm $I64 0))))
1837
+
1838
+ (decl do_ctz (Type Type Gpr) Gpr)
1839
+ (rule (do_ctz ty orig_ty src)
1840
+ (bsf_or_else ty src (imm $I64 (ty_bits_u64 orig_ty))))
1841
+
1842
+ ;; Rules for `popcnt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1843
+
1844
+ (rule 3 (lower
1845
+ (has_type (and
1846
+ (ty_32_or_64 ty)
1847
+ (use_popcnt $true))
1848
+ (popcnt src)))
1849
+ (x64_popcnt ty src))
1850
+
1851
+ (rule 2 (lower
1852
+ (has_type (and
1853
+ (ty_8_or_16 ty)
1854
+ (use_popcnt $true))
1855
+ (popcnt src)))
1856
+ (x64_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
1857
+
1858
+ (rule 1 (lower
1859
+ (has_type (and
1860
+ $I128
1861
+ (use_popcnt $true))
1862
+ (popcnt src)))
1863
+ (let ((lo_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 0)))
1864
+ (hi_count Gpr (x64_popcnt $I64 (value_regs_get_gpr src 1))))
1865
+ (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
1866
+
1867
+ (rule -1 (lower
1868
+ (has_type (ty_32_or_64 ty)
1869
+ (popcnt src)))
1870
+ (do_popcnt ty src))
1871
+
1872
+ (rule -2 (lower
1873
+ (has_type (ty_8_or_16 ty)
1874
+ (popcnt src)))
1875
+ (do_popcnt $I32 (extend_to_gpr src $I32 (ExtendKind.Zero))))
1876
+
1877
+ (rule (lower
1878
+ (has_type $I128
1879
+ (popcnt src)))
1880
+ (let ((lo_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 0)))
1881
+ (hi_count Gpr (do_popcnt $I64 (value_regs_get_gpr src 1))))
1882
+ (value_regs (x64_add $I64 lo_count hi_count) (imm $I64 0))))
1883
+
1884
+ ;; Implementation of popcount when we don't nave a native popcount
1885
+ ;; instruction.
1886
+ (decl do_popcnt (Type Gpr) Gpr)
1887
+ (rule (do_popcnt $I64 src)
1888
+ (let ((shifted1 Gpr (x64_shr $I64 src (Imm8Reg.Imm8 1)))
1889
+ (sevens Gpr (imm $I64 0x7777777777777777))
1890
+ (masked1 Gpr (x64_and $I64 shifted1 sevens))
1891
+ ;; diff1 := src - ((src >> 1) & 0b0111_0111_0111...)
1892
+ (diff1 Gpr (x64_sub $I64 src masked1))
1893
+ (shifted2 Gpr (x64_shr $I64 masked1 (Imm8Reg.Imm8 1)))
1894
+ (masked2 Gpr (x64_and $I64 shifted2 sevens))
1895
+ ;; diff2 := diff1 - ((diff1 >> 1) & 0b0111_0111_0111...)
1896
+ (diff2 Gpr (x64_sub $I64 diff1 masked2))
1897
+ (shifted3 Gpr (x64_shr $I64 masked2 (Imm8Reg.Imm8 1)))
1898
+ (masked3 Gpr (x64_and $I64 shifted3 sevens))
1899
+ ;; diff3 := diff2 - ((diff2 >> 1) & 0b0111_0111_0111...)
1900
+ ;;
1901
+ ;; At this point, each nibble of diff3 is the popcount of
1902
+ ;; that nibble. This works because at each step above, we
1903
+ ;; are basically subtracting floor(value / 2) from the
1904
+ ;; running value; the leftover remainder is 1 if the LSB
1905
+ ;; was 1. After three steps, we have (nibble / 8) -- 0 or
1906
+ ;; 1 for the MSB of the nibble -- plus three possible
1907
+ ;; additions for the three other bits.
1908
+ (diff3 Gpr (x64_sub $I64 diff2 masked3))
1909
+ ;; Add the two nibbles of each byte together.
1910
+ (sum1 Gpr (x64_add $I64
1911
+ (x64_shr $I64 diff3 (Imm8Reg.Imm8 4))
1912
+ diff3))
1913
+ ;; Mask the above sum to have the popcount for each byte
1914
+ ;; in the lower nibble of that byte.
1915
+ (ofof Gpr (imm $I64 0x0f0f0f0f0f0f0f0f))
1916
+ (masked4 Gpr (x64_and $I64 sum1 ofof))
1917
+ (ones Gpr (imm $I64 0x0101010101010101))
1918
+ ;; Use a multiply to sum all of the bytes' popcounts into
1919
+ ;; the top byte. Consider the binomial expansion for the
1920
+ ;; top byte: it is the sum of the bytes (masked4 >> 56) *
1921
+ ;; 0x01 + (masked4 >> 48) * 0x01 + (masked4 >> 40) * 0x01
1922
+ ;; + ... + (masked4 >> 0).
1923
+ (mul Gpr (x64_mul $I64 masked4 ones))
1924
+ ;; Now take that top byte and return it as the popcount.
1925
+ (final Gpr (x64_shr $I64 mul (Imm8Reg.Imm8 56))))
1926
+ final))
1927
+
1928
+ ;; This is the 32-bit version of the above; the steps for each nibble
1929
+ ;; are the same, we just use constants half as wide.
1930
+ (rule (do_popcnt $I32 src)
1931
+ (let ((shifted1 Gpr (x64_shr $I32 src (Imm8Reg.Imm8 1)))
1932
+ (sevens Gpr (imm $I32 0x77777777))
1933
+ (masked1 Gpr (x64_and $I32 shifted1 sevens))
1934
+ (diff1 Gpr (x64_sub $I32 src masked1))
1935
+ (shifted2 Gpr (x64_shr $I32 masked1 (Imm8Reg.Imm8 1)))
1936
+ (masked2 Gpr (x64_and $I32 shifted2 sevens))
1937
+ (diff2 Gpr (x64_sub $I32 diff1 masked2))
1938
+ (shifted3 Gpr (x64_shr $I32 masked2 (Imm8Reg.Imm8 1)))
1939
+ (masked3 Gpr (x64_and $I32 shifted3 sevens))
1940
+ (diff3 Gpr (x64_sub $I32 diff2 masked3))
1941
+ (sum1 Gpr (x64_add $I32
1942
+ (x64_shr $I32 diff3 (Imm8Reg.Imm8 4))
1943
+ diff3))
1944
+ (masked4 Gpr (x64_and $I32 sum1 (RegMemImm.Imm 0x0f0f0f0f)))
1945
+ (mul Gpr (x64_mul $I32 masked4 (RegMemImm.Imm 0x01010101)))
1946
+ (final Gpr (x64_shr $I32 mul (Imm8Reg.Imm8 24))))
1947
+ final))
1948
+
1949
+
1950
+ (rule 1 (lower (has_type (and
1951
+ $I8X16
1952
+ (avx512vl_enabled $true)
1953
+ (avx512bitalg_enabled $true))
1954
+ (popcnt src)))
1955
+ (x64_vpopcntb src))
1956
+
1957
+
1958
+
1959
+ ;; For SSE 4.2 we use Mula's algorithm (https://arxiv.org/pdf/1611.07612.pdf):
1960
+ ;;
1961
+ ;; __m128i count_bytes ( __m128i v) {
1962
+ ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
1963
+ ;; __m128i low_mask = _mm_set1_epi8 (0x0f);
1964
+ ;; __m128i lo = _mm_and_si128 (v, low_mask);
1965
+ ;; __m128i hi = _mm_and_si128 (_mm_srli_epi16 (v, 4), low_mask);
1966
+ ;; __m128i cnt1 = _mm_shuffle_epi8 (lookup, lo);
1967
+ ;; __m128i cnt2 = _mm_shuffle_epi8 (lookup, hi);
1968
+ ;; return _mm_add_epi8 (cnt1, cnt2);
1969
+ ;; }
1970
+ ;;
1971
+ ;; Details of the above algorithm can be found in the reference noted above, but the basics
1972
+ ;; are to create a lookup table that pre populates the popcnt values for each number [0,15].
1973
+ ;; The algorithm uses shifts to isolate 4 bit sections of the vector, pshufb as part of the
1974
+ ;; lookup process, and adds together the results.
1975
+ ;;
1976
+ ;; __m128i lookup = _mm_setr_epi8(0, 1, 1, 2, 1, 2, 2, 3, 1, 2, 2, 3, 2, 3, 3, 4);
1977
+
1978
+ (decl popcount_4bit_table () VCodeConstant) ;; bits-per-nibble table `lookup` above
1979
+ (extern constructor popcount_4bit_table popcount_4bit_table)
1980
+
1981
+ (decl popcount_low_mask () VCodeConstant) ;; mask for low nibbles: 0x0f * 16
1982
+ (extern constructor popcount_low_mask popcount_low_mask)
1983
+
1984
+ (rule (lower (has_type $I8X16
1985
+ (popcnt src)))
1986
+ (let ((nibble_table_const VCodeConstant (popcount_4bit_table))
1987
+ (low_mask Xmm (x64_xmm_load_const $I8X16 (popcount_low_mask)))
1988
+ (low_nibbles Xmm (sse_and $I8X16 src low_mask))
1989
+ ;; Note that this is a 16x8 shift, but that's OK; we mask
1990
+ ;; off anything that traverses from one byte to the next
1991
+ ;; with the low_mask below.
1992
+ (shifted_src Xmm (x64_psrlw src (RegMemImm.Imm 4)))
1993
+ (high_nibbles Xmm (sse_and $I8X16 shifted_src low_mask))
1994
+ (lookup Xmm (x64_xmm_load_const $I8X16 (popcount_4bit_table)))
1995
+ (bit_counts_low Xmm (x64_pshufb lookup low_nibbles))
1996
+ (bit_counts_high Xmm (x64_pshufb lookup high_nibbles)))
1997
+ (x64_paddb bit_counts_low bit_counts_high)))
1998
+
1999
+ ;; Rules for `bitrev` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2000
+
2001
+ (rule (lower (has_type $I8 (bitrev src)))
2002
+ (do_bitrev8 $I32 src))
2003
+
2004
+ (rule (lower (has_type $I16 (bitrev src)))
2005
+ (do_bitrev16 $I32 src))
2006
+
2007
+ (rule (lower (has_type $I32 (bitrev src)))
2008
+ (do_bitrev32 $I32 src))
2009
+
2010
+ (rule (lower (has_type $I64 (bitrev src)))
2011
+ (do_bitrev64 $I64 src))
2012
+
2013
+ (rule (lower (has_type $I128 (bitrev src)))
2014
+ (value_regs
2015
+ (do_bitrev64 $I64 (value_regs_get_gpr src 1))
2016
+ (do_bitrev64 $I64 (value_regs_get_gpr src 0))))
2017
+
2018
+ (decl do_bitrev8 (Type Gpr) Gpr)
2019
+ (rule (do_bitrev8 ty src)
2020
+ (let ((tymask u64 (ty_mask ty))
2021
+ (mask1 Gpr (imm ty (u64_and tymask 0x5555555555555555)))
2022
+ (lo1 Gpr (x64_and ty src mask1))
2023
+ (hi1 Gpr (x64_and ty (x64_shr ty src (Imm8Reg.Imm8 1)) mask1))
2024
+ (swap1 Gpr (x64_or ty
2025
+ (x64_shl ty lo1 (Imm8Reg.Imm8 1))
2026
+ hi1))
2027
+ (mask2 Gpr (imm ty (u64_and tymask 0x3333333333333333)))
2028
+ (lo2 Gpr (x64_and ty swap1 mask2))
2029
+ (hi2 Gpr (x64_and ty (x64_shr ty swap1 (Imm8Reg.Imm8 2)) mask2))
2030
+ (swap2 Gpr (x64_or ty
2031
+ (x64_shl ty lo2 (Imm8Reg.Imm8 2))
2032
+ hi2))
2033
+ (mask4 Gpr (imm ty (u64_and tymask 0x0f0f0f0f0f0f0f0f)))
2034
+ (lo4 Gpr (x64_and ty swap2 mask4))
2035
+ (hi4 Gpr (x64_and ty (x64_shr ty swap2 (Imm8Reg.Imm8 4)) mask4))
2036
+ (swap4 Gpr (x64_or ty
2037
+ (x64_shl ty lo4 (Imm8Reg.Imm8 4))
2038
+ hi4)))
2039
+ swap4))
2040
+
2041
+ (decl do_bitrev16 (Type Gpr) Gpr)
2042
+ (rule (do_bitrev16 ty src)
2043
+ (let ((src_ Gpr (do_bitrev8 ty src))
2044
+ (tymask u64 (ty_mask ty))
2045
+ (mask8 Gpr (imm ty (u64_and tymask 0x00ff00ff00ff00ff)))
2046
+ (lo8 Gpr (x64_and ty src_ mask8))
2047
+ (hi8 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 8)) mask8))
2048
+ (swap8 Gpr (x64_or ty
2049
+ (x64_shl ty lo8 (Imm8Reg.Imm8 8))
2050
+ hi8)))
2051
+ swap8))
2052
+
2053
+ (decl do_bitrev32 (Type Gpr) Gpr)
2054
+ (rule (do_bitrev32 ty src)
2055
+ (let ((src_ Gpr (do_bitrev16 ty src))
2056
+ (tymask u64 (ty_mask ty))
2057
+ (mask16 Gpr (imm ty (u64_and tymask 0x0000ffff0000ffff)))
2058
+ (lo16 Gpr (x64_and ty src_ mask16))
2059
+ (hi16 Gpr (x64_and ty (x64_shr ty src_ (Imm8Reg.Imm8 16)) mask16))
2060
+ (swap16 Gpr (x64_or ty
2061
+ (x64_shl ty lo16 (Imm8Reg.Imm8 16))
2062
+ hi16)))
2063
+ swap16))
2064
+
2065
+ (decl do_bitrev64 (Type Gpr) Gpr)
2066
+ (rule (do_bitrev64 ty @ $I64 src)
2067
+ (let ((src_ Gpr (do_bitrev32 ty src))
2068
+ (mask32 Gpr (imm ty 0xffffffff))
2069
+ (lo32 Gpr (x64_and ty src_ mask32))
2070
+ (hi32 Gpr (x64_shr ty src_ (Imm8Reg.Imm8 32)))
2071
+ (swap32 Gpr (x64_or ty
2072
+ (x64_shl ty lo32 (Imm8Reg.Imm8 32))
2073
+ hi32)))
2074
+ swap32))
2075
+
2076
+ ;; Rules for `bswap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2077
+
2078
+ ;; x64 bswap instruction is only for 32- or 64-bit swaps
2079
+ ;; implement the 16-bit swap as a rotl by 8
2080
+ (rule (lower (has_type $I16 (bswap src)))
2081
+ (x64_rotl $I16 src (Imm8Reg.Imm8 8)))
2082
+
2083
+ (rule (lower (has_type $I32 (bswap src)))
2084
+ (x64_bswap $I32 src))
2085
+
2086
+ (rule (lower (has_type $I64 (bswap src)))
2087
+ (x64_bswap $I64 src))
2088
+
2089
+ (rule (lower (has_type $I128 (bswap src)))
2090
+ (value_regs
2091
+ (x64_bswap $I64 (value_regs_get_gpr src 1))
2092
+ (x64_bswap $I64 (value_regs_get_gpr src 0))))
2093
+
2094
+ ;; Rules for `is_null` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2095
+
2096
+ ;; Null references are represented by the constant value `0`.
2097
+ (rule (lower (is_null src @ (value_type $R64)))
2098
+ (with_flags
2099
+ (x64_cmp_imm (OperandSize.Size64) 0 src)
2100
+ (x64_setcc (CC.Z))))
2101
+
2102
+ ;; Rules for `is_invalid` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2103
+
2104
+ ;; Null references are represented by the constant value `-1`.
2105
+ (rule (lower (is_invalid src @ (value_type $R64)))
2106
+ (with_flags
2107
+ (x64_cmp_imm (OperandSize.Size64) 0xffffffff src) ;; simm32 0xffff_ffff is sign-extended to -1.
2108
+ (x64_setcc (CC.Z))))
2109
+
2110
+
2111
+ ;; Rules for `uextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2112
+
2113
+ ;; T -> T is a no-op.
2114
+ (rule 1 (lower (has_type ty (uextend src @ (value_type ty))))
2115
+ src)
2116
+
2117
+ ;; I64 -> I128.
2118
+ (rule -1 (lower (has_type $I128 (uextend src @ (value_type $I64))))
2119
+ (value_regs src (imm $I64 0)))
2120
+
2121
+ ;; I{8,16,32} -> I128.
2122
+ (rule (lower (has_type $I128 (uextend src @ (value_type (fits_in_32 src_ty)))))
2123
+ (value_regs (extend_to_gpr src $I64 (ExtendKind.Zero)) (imm $I64 0)))
2124
+
2125
+ ;; I{8,16,32} -> I64.
2126
+ (rule -1 (lower (has_type $I64 (uextend src @ (value_type (fits_in_32 src_ty)))))
2127
+ (extend_to_gpr src $I64 (ExtendKind.Zero)))
2128
+
2129
+ ;; I8 -> I{16,32}, I16 -> I32.
2130
+ (rule -2 (lower (has_type (fits_in_32 dst_ty) (uextend src @ (value_type (fits_in_32 src_ty)))))
2131
+ (extend_to_gpr src $I32 (ExtendKind.Zero)))
2132
+
2133
+ ;; I32 -> I64 with op that produces a zero-extended value in a register.
2134
+ ;;
2135
+ ;; As a particular x64 extra-pattern matching opportunity, all the ALU
2136
+ ;; opcodes on 32-bits will zero-extend the upper 32-bits, so we can
2137
+ ;; even not generate a zero-extended move in this case.
2138
+ ;;
2139
+ ;; (Note that we unfortunately can't factor out the
2140
+ ;; insts-that-zero-upper-32 pattern into a separate extractor until we
2141
+ ;; can write internal extractors with multiple rules; and we'd rather
2142
+ ;; keep these here than write an external extractor containing bits of
2143
+ ;; the instruction pattern.s)
2144
+ (rule (lower (has_type $I64
2145
+ (uextend src @ (has_type $I32 (iadd _ _)))))
2146
+ src)
2147
+ (rule (lower (has_type $I64
2148
+ (uextend src @ (has_type $I32 (isub _ _)))))
2149
+ src)
2150
+ (rule (lower (has_type $I64
2151
+ (uextend src @ (has_type $I32 (imul _ _)))))
2152
+ src)
2153
+ (rule (lower (has_type $I64
2154
+ (uextend src @ (has_type $I32 (band _ _)))))
2155
+ src)
2156
+ (rule (lower (has_type $I64
2157
+ (uextend src @ (has_type $I32 (bor _ _)))))
2158
+ src)
2159
+ (rule (lower (has_type $I64
2160
+ (uextend src @ (has_type $I32 (bxor _ _)))))
2161
+ src)
2162
+ (rule (lower (has_type $I64
2163
+ (uextend src @ (has_type $I32 (ishl _ _)))))
2164
+ src)
2165
+ (rule (lower (has_type $I64
2166
+ (uextend src @ (has_type $I32 (ushr _ _)))))
2167
+ src)
2168
+ (rule (lower (has_type $I64
2169
+ (uextend src @ (has_type $I32 (uload32 _ _ _)))))
2170
+ src)
2171
+
2172
+ ;; Rules for `sextend` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2173
+
2174
+ (decl generic_sextend (Value Type Type) InstOutput)
2175
+
2176
+ ;; T -> T is a no-op.
2177
+ (rule 4 (generic_sextend src ty ty)
2178
+ src)
2179
+
2180
+ ;; Produce upper 64 bits sign-extended from lower 64: shift right by
2181
+ ;; 63 bits to spread the sign bit across the result.
2182
+ (decl spread_sign_bit (Gpr) Gpr)
2183
+ (rule (spread_sign_bit src)
2184
+ (x64_sar $I64 src (Imm8Reg.Imm8 63)))
2185
+
2186
+ ;; I64 -> I128.
2187
+ (rule 3 (generic_sextend src $I64 $I128)
2188
+ (value_regs src (spread_sign_bit src)))
2189
+
2190
+ ;; I{8,16,32} -> I128.
2191
+ (rule 2 (generic_sextend src (fits_in_32 src_ty) $I128)
2192
+ (let ((lo Gpr (extend_to_gpr src $I64 (ExtendKind.Sign)))
2193
+ (hi Gpr (spread_sign_bit lo)))
2194
+ (value_regs lo hi)))
2195
+
2196
+ ;; I{8,16,32} -> I64.
2197
+ (rule 1 (generic_sextend src (fits_in_32 src_ty) $I64)
2198
+ (extend_to_gpr src $I64 (ExtendKind.Sign)))
2199
+
2200
+ ;; I8 -> I{16,32}, I16 -> I32.
2201
+ (rule 0 (generic_sextend src (fits_in_32 src_ty) (fits_in_32 dst_ty))
2202
+ (extend_to_gpr src $I32 (ExtendKind.Sign)))
2203
+
2204
+ (rule (lower
2205
+ (has_type dst_ty
2206
+ (sextend src @ (value_type src_ty))))
2207
+ (generic_sextend src src_ty dst_ty))
2208
+
2209
+ ;; Rules for `ireduce` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2210
+
2211
+ ;; T -> T is always a no-op, even I128 -> I128.
2212
+ (rule (lower (has_type ty (ireduce src @ (value_type ty))))
2213
+ src)
2214
+
2215
+ ;; T -> I{64,32,16,8}: We can simply pass through the value: values
2216
+ ;; are always stored with high bits undefined, so we can just leave
2217
+ ;; them be.
2218
+ (rule 1 (lower (has_type (fits_in_64 ty) (ireduce src)))
2219
+ (value_regs_get_gpr src 0))
2220
+
2221
+ ;; Rules for `debugtrap` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2222
+
2223
+ (rule (lower (debugtrap))
2224
+ (side_effect (x64_hlt)))
2225
+
2226
+ ;; Rules for `widening_pairwise_dot_product_s` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2227
+
2228
+ (rule (lower (has_type $I32X4
2229
+ (widening_pairwise_dot_product_s x y)))
2230
+ (x64_pmaddwd x y))
2231
+
2232
+ ;; Rules for `fadd` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2233
+
2234
+ ;; N.B.: there are no load-op merging rules here. We can't guarantee
2235
+ ;; the RHS (if a load) is 128-bit aligned, so we must avoid merging a
2236
+ ;; load. Likewise for other ops below.
2237
+
2238
+ (rule (lower (has_type $F32 (fadd x y)))
2239
+ (x64_addss x y))
2240
+ (rule (lower (has_type $F64 (fadd x y)))
2241
+ (x64_addsd x y))
2242
+ (rule (lower (has_type $F32X4 (fadd x y)))
2243
+ (x64_addps x y))
2244
+ (rule (lower (has_type $F64X2 (fadd x y)))
2245
+ (x64_addpd x y))
2246
+
2247
+ ;; Rules for `fsub` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2248
+
2249
+ (rule (lower (has_type $F32 (fsub x y)))
2250
+ (x64_subss x y))
2251
+ (rule (lower (has_type $F64 (fsub x y)))
2252
+ (x64_subsd x y))
2253
+ (rule (lower (has_type $F32X4 (fsub x y)))
2254
+ (x64_subps x y))
2255
+ (rule (lower (has_type $F64X2 (fsub x y)))
2256
+ (x64_subpd x y))
2257
+
2258
+ ;; Rules for `fmul` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2259
+
2260
+ (rule (lower (has_type $F32 (fmul x y)))
2261
+ (x64_mulss x y))
2262
+ (rule (lower (has_type $F64 (fmul x y)))
2263
+ (x64_mulsd x y))
2264
+ (rule (lower (has_type $F32X4 (fmul x y)))
2265
+ (x64_mulps x y))
2266
+ (rule (lower (has_type $F64X2 (fmul x y)))
2267
+ (x64_mulpd x y))
2268
+
2269
+ ;; Rules for `fdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2270
+
2271
+ (rule (lower (has_type $F32 (fdiv x y)))
2272
+ (x64_divss x y))
2273
+ (rule (lower (has_type $F64 (fdiv x y)))
2274
+ (x64_divsd x y))
2275
+ (rule (lower (has_type $F32X4 (fdiv x y)))
2276
+ (x64_divps x y))
2277
+ (rule (lower (has_type $F64X2 (fdiv x y)))
2278
+ (x64_divpd x y))
2279
+
2280
+ ;; Rules for `sqrt` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2281
+ (rule (lower (has_type $F32 (sqrt x)))
2282
+ (x64_sqrtss x))
2283
+ (rule (lower (has_type $F64 (sqrt x)))
2284
+ (x64_sqrtsd x))
2285
+ (rule (lower (has_type $F32X4 (sqrt x)))
2286
+ (x64_sqrtps x))
2287
+ (rule (lower (has_type $F64X2 (sqrt x)))
2288
+ (x64_sqrtpd x))
2289
+
2290
+ ;; Rules for `fpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2291
+ (rule (lower (has_type $F64 (fpromote x)))
2292
+ (x64_cvtss2sd x))
2293
+
2294
+ ;; Rules for `fvpromote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2295
+ (rule (lower (has_type $F64X2 (fvpromote_low x)))
2296
+ (x64_cvtps2pd (put_in_xmm x)))
2297
+
2298
+ ;; Rules for `fdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2299
+ (rule (lower (has_type $F32 (fdemote x)))
2300
+ (x64_cvtsd2ss x))
2301
+
2302
+ ;; Rules for `fvdemote` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2303
+ (rule (lower (has_type $F32X4 (fvdemote x)))
2304
+ (x64_cvtpd2ps x))
2305
+
2306
+ ;; Rules for `fmin` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2307
+
2308
+ (rule (lower (has_type $F32 (fmin x y)))
2309
+ (xmm_min_max_seq $F32 $true x y))
2310
+ (rule (lower (has_type $F64 (fmin x y)))
2311
+ (xmm_min_max_seq $F64 $true x y))
2312
+
2313
+ ;; Vector-typed version. We don't use single pseudoinstructions as
2314
+ ;; above, because we don't need to generate a mini-CFG. Instead, we
2315
+ ;; perform a branchless series of operations.
2316
+ ;;
2317
+ ;; We cannot simply use native min instructions (minps, minpd) because
2318
+ ;; NaN handling is different per CLIF semantics than on
2319
+ ;; x86. Specifically, if an argument is NaN, or the arguments are both
2320
+ ;; zero but of opposite signs, then the x86 instruction always
2321
+ ;; produces the second argument. However, per CLIF semantics, we
2322
+ ;; require that fmin(NaN, _) = fmin(_, NaN) = NaN, and fmin(+0, -0) =
2323
+ ;; fmin(-0, +0) = -0.
2324
+
2325
+ (rule (lower (has_type $F32X4 (fmin x y)))
2326
+ ;; Compute min(x, y) and min(y, x) with native
2327
+ ;; instructions. These will differ in one of the edge cases
2328
+ ;; above that we have to handle properly. (Conversely, if they
2329
+ ;; don't differ, then the native instruction's answer is the
2330
+ ;; right one per CLIF semantics.)
2331
+ (let ((min1 Xmm (x64_minps x y))
2332
+ (min2 Xmm (x64_minps y x))
2333
+ ;; Compute the OR of the two. Note that NaNs have an
2334
+ ;; exponent field of all-ones (0xFF for F32), so if either
2335
+ ;; result is a NaN, this OR will be. And if either is a
2336
+ ;; zero (which has an exponent of 0 and mantissa of 0),
2337
+ ;; this captures a sign-bit of 1 (negative) if either
2338
+ ;; input is negative.
2339
+ ;;
2340
+ ;; In the case where we don't have a +/-0 mismatch or
2341
+ ;; NaNs, then `min1` and `min2` are equal and `min_or` is
2342
+ ;; the correct minimum.
2343
+ (min_or Xmm (x64_orps min1 min2))
2344
+ ;; "compare unordered" produces a true mask (all ones) in
2345
+ ;; a given lane if the min is a NaN. We use this to
2346
+ ;; generate a mask to ensure quiet NaNs.
2347
+ (is_nan_mask Xmm (x64_cmpps min_or min2 (FcmpImm.Unordered)))
2348
+ ;; OR in the NaN mask.
2349
+ (min_or_2 Xmm (x64_orps min_or is_nan_mask))
2350
+ ;; Shift the NaN mask down so that it covers just the
2351
+ ;; fraction below the NaN signalling bit; we'll use this
2352
+ ;; to mask off non-canonical NaN payloads.
2353
+ ;;
2354
+ ;; All-ones for NaN, shifted down to leave 10 top bits (1
2355
+ ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2356
+ ;; cleared.
2357
+ (nan_fraction_mask Xmm (x64_psrld is_nan_mask (RegMemImm.Imm 10)))
2358
+ ;; Do a NAND, so that we retain every bit not set in
2359
+ ;; `nan_fraction_mask`. This mask will be all zeroes (so
2360
+ ;; we retain every bit) in non-NaN cases, and will have
2361
+ ;; ones (so we clear those bits) in NaN-payload bits
2362
+ ;; otherwise.
2363
+ (final Xmm (x64_andnps nan_fraction_mask min_or_2)))
2364
+ final))
2365
+
2366
+ ;; Likewise for F64 lanes, except that the right-shift is by 13 bits
2367
+ ;; (1 sign, 11 exponent, 1 QNaN bit).
2368
+ (rule (lower (has_type $F64X2 (fmin x y)))
2369
+ (let ((min1 Xmm (x64_minpd x y))
2370
+ (min2 Xmm (x64_minpd y x))
2371
+ (min_or Xmm (x64_orpd min1 min2))
2372
+ (is_nan_mask Xmm (x64_cmppd min1 min2 (FcmpImm.Unordered)))
2373
+ (min_or_2 Xmm (x64_orpd min_or is_nan_mask))
2374
+ (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (RegMemImm.Imm 13)))
2375
+ (final Xmm (x64_andnpd nan_fraction_mask min_or_2)))
2376
+ final))
2377
+
2378
+ ;; Rules for `fmax` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2379
+
2380
+ (rule (lower (has_type $F32 (fmax x y)))
2381
+ (xmm_min_max_seq $F32 $false x y))
2382
+ (rule (lower (has_type $F64 (fmax x y)))
2383
+ (xmm_min_max_seq $F64 $false x y))
2384
+
2385
+ ;; The vector version of fmax here is a dual to the fmin sequence
2386
+ ;; above, almost, with a few differences.
2387
+
2388
+ (rule (lower (has_type $F32X4 (fmax x y)))
2389
+ ;; Compute max(x, y) and max(y, x) with native
2390
+ ;; instructions. These will differ in one of the edge cases
2391
+ ;; above that we have to handle properly. (Conversely, if they
2392
+ ;; don't differ, then the native instruction's answer is the
2393
+ ;; right one per CLIF semantics.)
2394
+ (let ((max1 Xmm (x64_maxps x y))
2395
+ (max2 Xmm (x64_maxps y x))
2396
+ ;; Compute the XOR of the two maxima. In the case
2397
+ ;; where we don't have a +/-0 mismatch or NaNs, then
2398
+ ;; `min1` and `min2` are equal and this XOR is zero.
2399
+ (max_xor Xmm (x64_xorps max1 max2))
2400
+ ;; OR the XOR into one of the original maxima. If they are
2401
+ ;; equal, this does nothing. If max2 was NaN, its exponent
2402
+ ;; bits were all-ones, so the xor's exponent bits were the
2403
+ ;; complement of max1, and the OR of max1 and max_xor has
2404
+ ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2405
+ ;; its exponent bits were already all-ones, so the OR will
2406
+ ;; be a NaN as well.
2407
+ (max_blended_nan Xmm (x64_orps max1 max_xor))
2408
+ ;; Subtract the XOR. This ensures that if we had +0 and
2409
+ ;; -0, we end up with +0.
2410
+ (max_blended_nan_positive Xmm (x64_subps max_blended_nan max_xor))
2411
+ ;; "compare unordered" produces a true mask (all ones) in
2412
+ ;; a given lane if the min is a NaN. We use this to
2413
+ ;; generate a mask to ensure quiet NaNs.
2414
+ (is_nan_mask Xmm (x64_cmpps max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2415
+ ;; Shift the NaN mask down so that it covers just the
2416
+ ;; fraction below the NaN signalling bit; we'll use this
2417
+ ;; to mask off non-canonical NaN payloads.
2418
+ ;;
2419
+ ;; All-ones for NaN, shifted down to leave 10 top bits (1
2420
+ ;; sign, 8 exponent, 1 QNaN bit that must remain set)
2421
+ ;; cleared.
2422
+ (nan_fraction_mask Xmm (x64_psrld is_nan_mask (RegMemImm.Imm 10)))
2423
+ ;; Do a NAND, so that we retain every bit not set in
2424
+ ;; `nan_fraction_mask`. This mask will be all zeroes (so
2425
+ ;; we retain every bit) in non-NaN cases, and will have
2426
+ ;; ones (so we clear those bits) in NaN-payload bits
2427
+ ;; otherwise.
2428
+ (final Xmm (x64_andnps nan_fraction_mask max_blended_nan_positive)))
2429
+ final))
2430
+
2431
+ (rule (lower (has_type $F64X2 (fmax x y)))
2432
+ ;; Compute max(x, y) and max(y, x) with native
2433
+ ;; instructions. These will differ in one of the edge cases
2434
+ ;; above that we have to handle properly. (Conversely, if they
2435
+ ;; don't differ, then the native instruction's answer is the
2436
+ ;; right one per CLIF semantics.)
2437
+ (let ((max1 Xmm (x64_maxpd x y))
2438
+ (max2 Xmm (x64_maxpd y x))
2439
+ ;; Compute the XOR of the two maxima. In the case
2440
+ ;; where we don't have a +/-0 mismatch or NaNs, then
2441
+ ;; `min1` and `min2` are equal and this XOR is zero.
2442
+ (max_xor Xmm (x64_xorpd max1 max2))
2443
+ ;; OR the XOR into one of the original maxima. If they are
2444
+ ;; equal, this does nothing. If max2 was NaN, its exponent
2445
+ ;; bits were all-ones, so the xor's exponent bits were the
2446
+ ;; complement of max1, and the OR of max1 and max_xor has
2447
+ ;; an all-ones exponent (is a NaN). If max1 was NaN, then
2448
+ ;; its exponent bits were already all-ones, so the OR will
2449
+ ;; be a NaN as well.
2450
+ (max_blended_nan Xmm (x64_orpd max1 max_xor))
2451
+ ;; Subtract the XOR. This ensures that if we had +0 and
2452
+ ;; -0, we end up with +0.
2453
+ (max_blended_nan_positive Xmm (x64_subpd max_blended_nan max_xor))
2454
+ ;; `cmpps` with predicate index `3` is `cmpunordps`, or
2455
+ ;; "compare unordered": it produces a true mask (all ones)
2456
+ ;; in a given lane if the min is a NaN. We use this to
2457
+ ;; generate a mask to ensure quiet NaNs.
2458
+ (is_nan_mask Xmm (x64_cmppd max_blended_nan max_blended_nan (FcmpImm.Unordered)))
2459
+ ;; Shift the NaN mask down so that it covers just the
2460
+ ;; fraction below the NaN signalling bit; we'll use this
2461
+ ;; to mask off non-canonical NaN payloads.
2462
+ ;;
2463
+ ;; All-ones for NaN, shifted down to leave 13 top bits (1
2464
+ ;; sign, 11 exponent, 1 QNaN bit that must remain set)
2465
+ ;; cleared.
2466
+ (nan_fraction_mask Xmm (x64_psrlq is_nan_mask (RegMemImm.Imm 13)))
2467
+ ;; Do a NAND, so that we retain every bit not set in
2468
+ ;; `nan_fraction_mask`. This mask will be all zeroes (so
2469
+ ;; we retain every bit) in non-NaN cases, and will have
2470
+ ;; ones (so we clear those bits) in NaN-payload bits
2471
+ ;; otherwise.
2472
+ (final Xmm (x64_andnpd nan_fraction_mask max_blended_nan_positive)))
2473
+ final))
2474
+
2475
+ ;; Rules for `fmin_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2476
+
2477
+ (rule (lower (has_type $F32 (fmin_pseudo x y)))
2478
+ (x64_minss y x))
2479
+ (rule (lower (has_type $F64 (fmin_pseudo x y)))
2480
+ (x64_minsd y x))
2481
+ (rule (lower (has_type $F32X4 (fmin_pseudo x y)))
2482
+ (x64_minps y x))
2483
+ (rule (lower (has_type $F64X2 (fmin_pseudo x y)))
2484
+ (x64_minpd y x))
2485
+
2486
+ ;; Rules for `fmax_pseudo` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2487
+
2488
+ (rule (lower (has_type $F32 (fmax_pseudo x y)))
2489
+ (x64_maxss y x))
2490
+ (rule (lower (has_type $F64 (fmax_pseudo x y)))
2491
+ (x64_maxsd y x))
2492
+ (rule (lower (has_type $F32X4 (fmax_pseudo x y)))
2493
+ (x64_maxps y x))
2494
+ (rule (lower (has_type $F64X2 (fmax_pseudo x y)))
2495
+ (x64_maxpd y x))
2496
+
2497
+ ;; Rules for `fma` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2498
+
2499
+ (rule (lower (has_type $F32 (fma x y z)))
2500
+ (libcall_3 (LibCall.FmaF32) x y z))
2501
+ (rule (lower (has_type $F64 (fma x y z)))
2502
+ (libcall_3 (LibCall.FmaF64) x y z))
2503
+ (rule 1 (lower (has_type (and (use_fma $true) $F32) (fma x y z)))
2504
+ (x64_vfmadd213ss x y z))
2505
+ (rule 1 (lower (has_type (and (use_fma $true) $F64) (fma x y z)))
2506
+ (x64_vfmadd213sd x y z))
2507
+ (rule (lower (has_type (and (use_fma $true) $F32X4) (fma x y z)))
2508
+ (x64_vfmadd213ps x y z))
2509
+ (rule (lower (has_type (and (use_fma $true) $F64X2) (fma x y z)))
2510
+ (x64_vfmadd213pd x y z))
2511
+
2512
+ ;; Rules for `load*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2513
+
2514
+ ;; In order to load a value from memory to a GPR register, we may need to extend
2515
+ ;; the loaded value from 8-, 16-, or 32-bits to this backend's expected GPR
2516
+ ;; width: 64 bits. Note that `ext_mode` will load 1-bit types (booleans) as
2517
+ ;; 8-bit loads.
2518
+ ;;
2519
+ ;; By default, we zero-extend all sub-64-bit loads to a GPR.
2520
+ (rule -4 (lower (has_type (and (fits_in_32 ty) (is_gpr_type _)) (load flags address offset)))
2521
+ (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address offset)))
2522
+ ;; But if we know that both the `from` and `to` are 64 bits, we simply load with
2523
+ ;; no extension.
2524
+ (rule -1 (lower (has_type (ty_int_ref_64 ty) (load flags address offset)))
2525
+ (x64_mov (to_amode flags address offset)))
2526
+ ;; Also, certain scalar loads have a specific `from` width and extension kind
2527
+ ;; (signed -> `sx`, zeroed -> `zx`). We overwrite the high bits of the 64-bit
2528
+ ;; GPR even if the `to` type is smaller (e.g., 16-bits).
2529
+ (rule (lower (has_type (is_gpr_type ty) (uload8 flags address offset)))
2530
+ (x64_movzx (ExtMode.BQ) (to_amode flags address offset)))
2531
+ (rule (lower (has_type (is_gpr_type ty) (sload8 flags address offset)))
2532
+ (x64_movsx (ExtMode.BQ) (to_amode flags address offset)))
2533
+ (rule (lower (has_type (is_gpr_type ty) (uload16 flags address offset)))
2534
+ (x64_movzx (ExtMode.WQ) (to_amode flags address offset)))
2535
+ (rule (lower (has_type (is_gpr_type ty) (sload16 flags address offset)))
2536
+ (x64_movsx (ExtMode.WQ) (to_amode flags address offset)))
2537
+ (rule (lower (has_type (is_gpr_type ty) (uload32 flags address offset)))
2538
+ (x64_movzx (ExtMode.LQ) (to_amode flags address offset)))
2539
+ (rule (lower (has_type (is_gpr_type ty) (sload32 flags address offset)))
2540
+ (x64_movsx (ExtMode.LQ) (to_amode flags address offset)))
2541
+
2542
+ ;; To load to XMM registers, we use the x64-specific instructions for each type.
2543
+ ;; For `$F32` and `$F64` this is important--we only want to load 32 or 64 bits.
2544
+ ;; But for the 128-bit types, this is not strictly necessary for performance but
2545
+ ;; might help with clarity during disassembly.
2546
+ (rule (lower (has_type $F32 (load flags address offset)))
2547
+ (x64_movss_load (to_amode flags address offset)))
2548
+ (rule (lower (has_type $F64 (load flags address offset)))
2549
+ (x64_movsd_load (to_amode flags address offset)))
2550
+ (rule (lower (has_type $F32X4 (load flags address offset)))
2551
+ (x64_movups (to_amode flags address offset)))
2552
+ (rule (lower (has_type $F64X2 (load flags address offset)))
2553
+ (x64_movupd (to_amode flags address offset)))
2554
+ (rule -2 (lower (has_type (ty_vec128 ty) (load flags address offset)))
2555
+ (x64_movdqu (to_amode flags address offset)))
2556
+
2557
+ ;; We can load an I128 by doing two 64-bit loads.
2558
+ (rule -3 (lower (has_type $I128
2559
+ (load flags address offset)))
2560
+ (let ((addr_lo Amode (to_amode flags address offset))
2561
+ (addr_hi Amode (amode_offset addr_lo 8))
2562
+ (value_lo Reg (x64_mov addr_lo))
2563
+ (value_hi Reg (x64_mov addr_hi)))
2564
+ (value_regs value_lo value_hi)))
2565
+
2566
+ ;; We also include widening vector loads; these sign- or zero-extend each lane
2567
+ ;; to the next wider width (e.g., 16x4 -> 32x4).
2568
+ (rule (lower (has_type $I16X8 (sload8x8 flags address offset)))
2569
+ (x64_pmovsxbw (to_amode flags address offset)))
2570
+ (rule (lower (has_type $I16X8 (uload8x8 flags address offset)))
2571
+ (x64_pmovzxbw (to_amode flags address offset)))
2572
+ (rule (lower (has_type $I32X4 (sload16x4 flags address offset)))
2573
+ (x64_pmovsxwd (to_amode flags address offset)))
2574
+ (rule (lower (has_type $I32X4 (uload16x4 flags address offset)))
2575
+ (x64_pmovzxwd (to_amode flags address offset)))
2576
+ (rule (lower (has_type $I64X2 (sload32x2 flags address offset)))
2577
+ (x64_pmovsxdq (to_amode flags address offset)))
2578
+ (rule (lower (has_type $I64X2 (uload32x2 flags address offset)))
2579
+ (x64_pmovzxdq (to_amode flags address offset)))
2580
+
2581
+ ;; Rules for `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2582
+
2583
+ ;; 8-, 16-, 32- and 64-bit GPR stores.
2584
+ (rule -2 (lower (store flags
2585
+ value @ (value_type (is_gpr_type ty))
2586
+ address
2587
+ offset))
2588
+ (side_effect
2589
+ (x64_movrm ty (to_amode flags address offset) value)))
2590
+
2591
+ ;; Explicit 8/16/32-bit opcodes.
2592
+ (rule (lower (istore8 flags value address offset))
2593
+ (side_effect
2594
+ (x64_movrm $I8 (to_amode flags address offset) value)))
2595
+ (rule (lower (istore16 flags value address offset))
2596
+ (side_effect
2597
+ (x64_movrm $I16 (to_amode flags address offset) value)))
2598
+ (rule (lower (istore32 flags value address offset))
2599
+ (side_effect
2600
+ (x64_movrm $I32 (to_amode flags address offset) value)))
2601
+
2602
+ ;; F32 stores of values in XMM registers.
2603
+ (rule 1 (lower (store flags
2604
+ value @ (value_type $F32)
2605
+ address
2606
+ offset))
2607
+ (side_effect
2608
+ (x64_xmm_movrm (SseOpcode.Movss) (to_amode flags address offset) value)))
2609
+
2610
+ ;; F64 stores of values in XMM registers.
2611
+ (rule 1 (lower (store flags
2612
+ value @ (value_type $F64)
2613
+ address
2614
+ offset))
2615
+ (side_effect
2616
+ (x64_xmm_movrm (SseOpcode.Movsd) (to_amode flags address offset) value)))
2617
+
2618
+ ;; Stores of F32X4 vectors.
2619
+ (rule 1 (lower (store flags
2620
+ value @ (value_type $F32X4)
2621
+ address
2622
+ offset))
2623
+ (side_effect
2624
+ (x64_xmm_movrm (SseOpcode.Movups) (to_amode flags address offset) value)))
2625
+
2626
+ ;; Stores of F64X2 vectors.
2627
+ (rule 1 (lower (store flags
2628
+ value @ (value_type $F64X2)
2629
+ address
2630
+ offset))
2631
+ (side_effect
2632
+ (x64_xmm_movrm (SseOpcode.Movupd) (to_amode flags address offset) value)))
2633
+
2634
+ ;; Stores of all other 128-bit vector types with integer lanes.
2635
+ (rule -1 (lower (store flags
2636
+ value @ (value_type (ty_vec128_int _))
2637
+ address
2638
+ offset))
2639
+ (side_effect
2640
+ (x64_xmm_movrm (SseOpcode.Movdqu) (to_amode flags address offset) value)))
2641
+
2642
+ ;; Stores of I128 values: store the two 64-bit halves separately.
2643
+ (rule 0 (lower (store flags
2644
+ value @ (value_type $I128)
2645
+ address
2646
+ offset))
2647
+ (let ((value_reg ValueRegs value)
2648
+ (value_lo Gpr (value_regs_get_gpr value_reg 0))
2649
+ (value_hi Gpr (value_regs_get_gpr value_reg 1))
2650
+ (addr_lo Amode (to_amode flags address offset))
2651
+ (addr_hi Amode (amode_offset addr_lo 8)))
2652
+ (side_effect
2653
+ (side_effect_concat
2654
+ (x64_movrm $I64 addr_lo value_lo)
2655
+ (x64_movrm $I64 addr_hi value_hi)))))
2656
+
2657
+ ;; Rules for `load*` + ALU op + `store*` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2658
+
2659
+ ;; Add mem, reg
2660
+ (rule 3 (lower
2661
+ (store flags
2662
+ (has_type (ty_32_or_64 ty)
2663
+ (iadd (and
2664
+ (sinkable_load sink)
2665
+ (load flags addr offset))
2666
+ src2))
2667
+ addr
2668
+ offset))
2669
+ (let ((_ RegMemImm (sink_load sink)))
2670
+ (side_effect
2671
+ (x64_add_mem ty (to_amode flags addr offset) src2))))
2672
+
2673
+ ;; Add mem, reg with args swapped
2674
+ (rule 2 (lower
2675
+ (store flags
2676
+ (has_type (ty_32_or_64 ty)
2677
+ (iadd src2
2678
+ (and
2679
+ (sinkable_load sink)
2680
+ (load flags addr offset))))
2681
+ addr
2682
+ offset))
2683
+ (let ((_ RegMemImm (sink_load sink)))
2684
+ (side_effect
2685
+ (x64_add_mem ty (to_amode flags addr offset) src2))))
2686
+
2687
+ ;; Sub mem, reg
2688
+ (rule 2 (lower
2689
+ (store flags
2690
+ (has_type (ty_32_or_64 ty)
2691
+ (isub (and
2692
+ (sinkable_load sink)
2693
+ (load flags addr offset))
2694
+ src2))
2695
+ addr
2696
+ offset))
2697
+ (let ((_ RegMemImm (sink_load sink)))
2698
+ (side_effect
2699
+ (x64_sub_mem ty (to_amode flags addr offset) src2))))
2700
+
2701
+ ;; And mem, reg
2702
+ (rule 3 (lower
2703
+ (store flags
2704
+ (has_type (ty_32_or_64 ty)
2705
+ (band (and
2706
+ (sinkable_load sink)
2707
+ (load flags addr offset))
2708
+ src2))
2709
+ addr
2710
+ offset))
2711
+ (let ((_ RegMemImm (sink_load sink)))
2712
+ (side_effect
2713
+ (x64_and_mem ty (to_amode flags addr offset) src2))))
2714
+
2715
+ ;; And mem, reg with args swapped
2716
+ (rule 2 (lower
2717
+ (store flags
2718
+ (has_type (ty_32_or_64 ty)
2719
+ (band src2
2720
+ (and
2721
+ (sinkable_load sink)
2722
+ (load flags addr offset))))
2723
+ addr
2724
+ offset))
2725
+ (let ((_ RegMemImm (sink_load sink)))
2726
+ (side_effect
2727
+ (x64_and_mem ty (to_amode flags addr offset) src2))))
2728
+
2729
+ ;; Or mem, reg
2730
+ (rule 3 (lower
2731
+ (store flags
2732
+ (has_type (ty_32_or_64 ty)
2733
+ (bor (and
2734
+ (sinkable_load sink)
2735
+ (load flags addr offset))
2736
+ src2))
2737
+ addr
2738
+ offset))
2739
+ (let ((_ RegMemImm (sink_load sink)))
2740
+ (side_effect
2741
+ (x64_or_mem ty (to_amode flags addr offset) src2))))
2742
+
2743
+ ;; Or mem, reg with args swapped
2744
+ (rule 2 (lower
2745
+ (store flags
2746
+ (has_type (ty_32_or_64 ty)
2747
+ (bor src2
2748
+ (and
2749
+ (sinkable_load sink)
2750
+ (load flags addr offset))))
2751
+ addr
2752
+ offset))
2753
+ (let ((_ RegMemImm (sink_load sink)))
2754
+ (side_effect
2755
+ (x64_or_mem ty (to_amode flags addr offset) src2))))
2756
+
2757
+ ;; Xor mem, reg
2758
+ (rule 3 (lower
2759
+ (store flags
2760
+ (has_type (ty_32_or_64 ty)
2761
+ (bxor (and
2762
+ (sinkable_load sink)
2763
+ (load flags addr offset))
2764
+ src2))
2765
+ addr
2766
+ offset))
2767
+ (let ((_ RegMemImm (sink_load sink)))
2768
+ (side_effect
2769
+ (x64_xor_mem ty (to_amode flags addr offset) src2))))
2770
+
2771
+ ;; Xor mem, reg with args swapped
2772
+ (rule 2 (lower
2773
+ (store flags
2774
+ (has_type (ty_32_or_64 ty)
2775
+ (bxor src2
2776
+ (and
2777
+ (sinkable_load sink)
2778
+ (load flags addr offset))))
2779
+ addr
2780
+ offset))
2781
+ (let ((_ RegMemImm (sink_load sink)))
2782
+ (side_effect
2783
+ (x64_xor_mem ty (to_amode flags addr offset) src2))))
2784
+
2785
+ ;; Rules for `fence` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2786
+
2787
+ (rule (lower (fence))
2788
+ (side_effect (x64_mfence)))
2789
+
2790
+ ;; Rules for `func_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2791
+
2792
+ (rule (lower (func_addr (func_ref_data _ extname _)))
2793
+ (load_ext_name extname 0))
2794
+
2795
+ ;; Rules for `symbol_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2796
+
2797
+ (rule (lower (symbol_value (symbol_value_data extname _ offset)))
2798
+ (load_ext_name extname offset))
2799
+
2800
+ ;; Rules for `atomic_load` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2801
+
2802
+ ;; This is a normal load. The x86-TSO memory model provides sufficient
2803
+ ;; sequencing to satisfy the CLIF synchronisation requirements for `AtomicLoad`
2804
+ ;; without the need for any fence instructions.
2805
+ ;;
2806
+ ;; As described in the `atomic_load` documentation, this lowering is only valid
2807
+ ;; for I8, I16, I32, and I64. The sub-64-bit types are zero extended, as with a
2808
+ ;; normal load.
2809
+ (rule 1 (lower (has_type $I64 (atomic_load flags address)))
2810
+ (x64_mov (to_amode flags address (zero_offset))))
2811
+ (rule (lower (has_type (and (fits_in_32 ty) (ty_int _)) (atomic_load flags address)))
2812
+ (x64_movzx (ext_mode (ty_bits_u16 ty) 64) (to_amode flags address (zero_offset))))
2813
+
2814
+ ;; Rules for `atomic_store` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2815
+
2816
+ ;; This is a normal store followed by an `mfence` instruction. As described in
2817
+ ;; the `atomic_load` documentation, this lowering is only valid for I8, I16,
2818
+ ;; I32, and I64.
2819
+ (rule (lower (atomic_store flags
2820
+ value @ (value_type (and (fits_in_64 ty) (ty_int _)))
2821
+ address))
2822
+ (side_effect (side_effect_concat
2823
+ (x64_movrm ty (to_amode flags address (zero_offset)) value)
2824
+ (x64_mfence))))
2825
+
2826
+ ;; Rules for `atomic_cas` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2827
+
2828
+ (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
2829
+ (atomic_cas flags address expected replacement)))
2830
+ (x64_cmpxchg ty expected replacement (to_amode flags address (zero_offset))))
2831
+
2832
+ ;; Rules for `atomic_rmw` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2833
+
2834
+ ;; This is a simple, general-case atomic update, based on a loop involving
2835
+ ;; `cmpxchg`. Note that we could do much better than this in the case where the
2836
+ ;; old value at the location (that is to say, the SSA `Value` computed by this
2837
+ ;; CLIF instruction) is not required. In that case, we could instead implement
2838
+ ;; this using a single `lock`-prefixed x64 read-modify-write instruction. Also,
2839
+ ;; even in the case where the old value is required, for the `add` and `sub`
2840
+ ;; cases, we can use the single instruction `lock xadd`. However, those
2841
+ ;; improvements have been left for another day. TODO: filed as
2842
+ ;; https://github.com/bytecodealliance/wasmtime/issues/2153.
2843
+
2844
+ (rule (lower (has_type (and (fits_in_64 ty) (ty_int _))
2845
+ (atomic_rmw flags op address input)))
2846
+ (x64_atomic_rmw_seq ty op (to_amode flags address (zero_offset)) input))
2847
+
2848
+ ;; Rules for `call` and `call_indirect` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2849
+
2850
+ (rule (lower (call (func_ref_data sig_ref extname dist) inputs))
2851
+ (gen_call sig_ref extname dist inputs))
2852
+
2853
+ (rule (lower (call_indirect sig_ref val inputs))
2854
+ (gen_call_indirect sig_ref val inputs))
2855
+
2856
+ ;;;; Rules for `get_{frame,stack}_pointer` and `get_return_address` ;;;;;;;;;;;;
2857
+
2858
+ (rule (lower (get_frame_pointer))
2859
+ (x64_rbp))
2860
+
2861
+ (rule (lower (get_stack_pointer))
2862
+ (x64_rsp))
2863
+
2864
+ (rule (lower (get_return_address))
2865
+ (x64_load $I64
2866
+ (Amode.ImmReg 8 (x64_rbp) (mem_flags_trusted))
2867
+ (ExtKind.None)))
2868
+
2869
+ ;; Rules for `jump` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2870
+
2871
+ (rule (lower_branch (jump _ _) (single_target target))
2872
+ (emit_side_effect (jmp_known target)))
2873
+
2874
+ ;; Rules for `brz` and `brnz` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2875
+
2876
+ (rule 2 (lower_branch (brz (maybe_uextend (icmp cc a b)) _ _) (two_targets taken not_taken))
2877
+ (let ((cmp IcmpCondResult (invert_icmp_cond_result (emit_cmp cc a b))))
2878
+ (emit_side_effect (jmp_cond_icmp cmp taken not_taken))))
2879
+
2880
+ (rule 2 (lower_branch (brz (maybe_uextend (fcmp cc a b)) _ _) (two_targets taken not_taken))
2881
+ (let ((cmp FcmpCondResult (emit_fcmp (floatcc_inverse cc) a b)))
2882
+ (emit_side_effect (jmp_cond_fcmp cmp taken not_taken))))
2883
+
2884
+ (rule 1 (lower_branch (brz val @ (value_type $I128) _ _) (two_targets taken not_taken))
2885
+ (emit_side_effect (jmp_cond_icmp (cmp_zero_i128 (CC.NZ) val) taken not_taken)))
2886
+
2887
+ (rule 0 (lower_branch (brz val @ (value_type (ty_int_bool_or_ref)) _ _) (two_targets taken not_taken))
2888
+ (emit_side_effect
2889
+ (with_flags_side_effect (cmp_zero_int_bool_ref val)
2890
+ (jmp_cond (CC.Z) taken not_taken))))
2891
+
2892
+
2893
+ (rule 2 (lower_branch (brnz (icmp cc a b) _ _) (two_targets taken not_taken))
2894
+ (emit_side_effect (jmp_cond_icmp (emit_cmp cc a b) taken not_taken)))
2895
+
2896
+ (rule 2 (lower_branch (brnz (fcmp cc a b) _ _) (two_targets taken not_taken))
2897
+ (let ((cmp FcmpCondResult (emit_fcmp cc a b)))
2898
+ (emit_side_effect (jmp_cond_fcmp cmp taken not_taken))))
2899
+
2900
+ (rule 2 (lower_branch (brnz (uextend (icmp cc a b)) _ _) (two_targets taken not_taken))
2901
+ (emit_side_effect (jmp_cond_icmp (emit_cmp cc a b) taken not_taken)))
2902
+
2903
+ (rule 2 (lower_branch (brnz (uextend (fcmp cc a b)) _ _) (two_targets taken not_taken))
2904
+ (let ((cmp FcmpCondResult (emit_fcmp cc a b)))
2905
+ (emit_side_effect (jmp_cond_fcmp cmp taken not_taken))))
2906
+
2907
+ (rule 1 (lower_branch (brnz val @ (value_type $I128) _ _) (two_targets taken not_taken))
2908
+ (emit_side_effect (jmp_cond_icmp (cmp_zero_i128 (CC.Z) val) taken not_taken)))
2909
+
2910
+ (rule 0 (lower_branch (brnz val @ (value_type (ty_int_bool_or_ref)) _ _) (two_targets taken not_taken))
2911
+ (emit_side_effect
2912
+ (with_flags_side_effect (cmp_zero_int_bool_ref val)
2913
+ (jmp_cond (CC.NZ) taken not_taken))))
2914
+
2915
+
2916
+ ;; Compare an I128 value to zero, returning a flags result suitable for making a
2917
+ ;; jump decision. The comparison is implemented as `(hi == 0) && (low == 0)`,
2918
+ ;; and the result can be interpreted as follows
2919
+ ;; * CC.Z indicates that the value was non-zero, as one or both of the halves of
2920
+ ;; the value were non-zero
2921
+ ;; * CC.NZ indicates that both halves of the value were 0
2922
+ (decl cmp_zero_i128 (CC ValueRegs) IcmpCondResult)
2923
+ (rule (cmp_zero_i128 (cc_nz_or_z cc) val)
2924
+ (let ((lo Gpr (value_regs_get_gpr val 0))
2925
+ (hi Gpr (value_regs_get_gpr val 1))
2926
+ (lo_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) lo)
2927
+ (x64_setcc (CC.Z))))
2928
+ (hi_z Gpr (with_flags_reg (x64_cmp (OperandSize.Size64) (RegMemImm.Imm 0) hi)
2929
+ (x64_setcc (CC.Z)))))
2930
+ (icmp_cond_result (x64_test (OperandSize.Size8) lo_z hi_z) cc)))
2931
+
2932
+
2933
+ (decl cmp_zero_int_bool_ref (Value) ProducesFlags)
2934
+ (rule (cmp_zero_int_bool_ref val @ (value_type ty))
2935
+ (let ((size OperandSize (raw_operand_size_of_type ty))
2936
+ (src Gpr val))
2937
+ (x64_test size src src)))
2938
+
2939
+ ;; Rules for `br_table` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2940
+
2941
+ (rule (lower_branch (br_table idx @ (value_type ty) _ _) (jump_table_targets default_target jt_targets))
2942
+ (emit_side_effect (jmp_table_seq ty idx default_target jt_targets)))
2943
+
2944
+ ;; Rules for `select_spectre_guard` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2945
+
2946
+ (rule (lower (select_spectre_guard (icmp cc a b) x y))
2947
+ (select_icmp (emit_cmp cc a b) x y))
2948
+
2949
+ (rule -1 (lower (has_type ty (select_spectre_guard c @ (value_type (fits_in_64 a_ty)) x y)))
2950
+ (let ((size OperandSize (raw_operand_size_of_type a_ty))
2951
+ (gpr_c Gpr (put_in_gpr c)))
2952
+ (with_flags (x64_test size gpr_c gpr_c) (cmove_from_values ty (CC.NZ) x y))))
2953
+
2954
+ (rule -2 (lower (has_type ty (select_spectre_guard c @ (value_type $I128) x y)))
2955
+ (let ((cond_result IcmpCondResult (cmp_zero_i128 (CC.Z) c)))
2956
+ (select_icmp cond_result x y)))
2957
+
2958
+ ;; Rules for `fcvt_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2959
+
2960
+ (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I8))))
2961
+ (x64_cvtsi2ss $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
2962
+
2963
+ (rule 2 (lower (has_type $F32 (fcvt_from_sint a @ (value_type $I16))))
2964
+ (x64_cvtsi2ss $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
2965
+
2966
+ (rule 1 (lower (has_type $F32 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
2967
+ (x64_cvtsi2ss ty a))
2968
+
2969
+ (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I8))))
2970
+ (x64_cvtsi2sd $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
2971
+
2972
+ (rule 2 (lower (has_type $F64 (fcvt_from_sint a @ (value_type $I16))))
2973
+ (x64_cvtsi2sd $I32 (extend_to_gpr a $I32 (ExtendKind.Sign))))
2974
+
2975
+ (rule 1 (lower (has_type $F64 (fcvt_from_sint a @ (value_type (ty_int (fits_in_64 ty))))))
2976
+ (x64_cvtsi2sd ty a))
2977
+
2978
+ (rule 0 (lower (fcvt_from_sint a @ (value_type $I32X4)))
2979
+ (x64_cvtdq2ps a))
2980
+
2981
+ ;; Rules for `fcvt_low_from_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2982
+
2983
+ (rule (lower (fcvt_low_from_sint a @ (value_type ty)))
2984
+ (x64_cvtdq2pd ty a))
2985
+
2986
+ ;; Rules for `fcvt_from_uint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2987
+
2988
+ (rule 1 (lower (has_type $F32 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
2989
+ (x64_cvtsi2ss $I64 (extend_to_gpr val $I64 (ExtendKind.Zero))))
2990
+
2991
+ (rule 1 (lower (has_type $F64 (fcvt_from_uint val @ (value_type (fits_in_32 (ty_int ty))))))
2992
+ (x64_cvtsi2sd $I64 (extend_to_gpr val $I64 (ExtendKind.Zero))))
2993
+
2994
+ (rule (lower (has_type ty (fcvt_from_uint val @ (value_type $I64))))
2995
+ (cvt_u64_to_float_seq ty val))
2996
+
2997
+ ;; Algorithm uses unpcklps to help create a float that is equivalent
2998
+ ;; 0x1.0p52 + double(src). 0x1.0p52 is unique because at this exponent
2999
+ ;; every value of the mantissa represents a corresponding uint32 number.
3000
+ ;; When we subtract 0x1.0p52 we are left with double(src).
3001
+ (rule 1 (lower (has_type $F64X2 (fcvt_from_uint (uwiden_low val @ (value_type $I32X4)))))
3002
+ (let ((uint_mask Xmm (x64_xmm_load_const $I32X4 (fcvt_uint_mask_const)))
3003
+ (res Xmm (x64_unpcklps val uint_mask))
3004
+ (uint_mask_high Xmm (x64_xmm_load_const $I32X4 (fcvt_uint_mask_high_const))))
3005
+ (x64_subpd res uint_mask_high)))
3006
+
3007
+ ;; When AVX512VL and AVX512F are available,
3008
+ ;; `fcvt_from_uint` can be lowered to a single instruction.
3009
+ (rule 2 (lower (has_type (and (avx512vl_enabled $true) (avx512f_enabled $true) $F32X4)
3010
+ (fcvt_from_uint src)))
3011
+ (x64_vcvtudq2ps src))
3012
+
3013
+ ;; Converting packed unsigned integers to packed floats
3014
+ ;; requires a few steps. There is no single instruction
3015
+ ;; lowering for converting unsigned floats but there is for
3016
+ ;; converting packed signed integers to float (cvtdq2ps). In
3017
+ ;; the steps below we isolate the upper half (16 bits) and
3018
+ ;; lower half (16 bits) of each lane and then we convert
3019
+ ;; each half separately using cvtdq2ps meant for signed
3020
+ ;; integers. In order for this to work for the upper half
3021
+ ;; bits we must shift right by 1 (divide by 2) these bits in
3022
+ ;; order to ensure the most significant bit is 0 not signed,
3023
+ ;; and then after the conversion we double the value.
3024
+ ;; Finally we add the converted values where addition will
3025
+ ;; correctly round.
3026
+ ;;
3027
+ ;; Sequence:
3028
+ ;; -> A = 0xffffffff
3029
+ ;; -> Ah = 0xffff0000
3030
+ ;; -> Al = 0x0000ffff
3031
+ ;; -> Convert(Al) // Convert int to float
3032
+ ;; -> Ah = Ah >> 1 // Shift right 1 to assure Ah conversion isn't treated as signed
3033
+ ;; -> Convert(Ah) // Convert .. with no loss of significant digits from previous shift
3034
+ ;; -> Ah = Ah + Ah // Double Ah to account for shift right before the conversion.
3035
+ ;; -> dst = Ah + Al // Add the two floats together
3036
+ (rule 1 (lower (has_type $F32X4 (fcvt_from_uint val)))
3037
+ (let ((a Xmm val)
3038
+
3039
+ ;; get the low 16 bits
3040
+ (a_lo Xmm (x64_pslld a (RegMemImm.Imm 16)))
3041
+ (a_lo Xmm (x64_psrld a_lo (RegMemImm.Imm 16)))
3042
+
3043
+ ;; get the high 16 bits
3044
+ (a_hi Xmm (x64_psubd a a_lo))
3045
+
3046
+ ;; convert the low 16 bits
3047
+ (a_lo Xmm (x64_cvtdq2ps a_lo))
3048
+
3049
+ ;; shift the high bits by 1, convert, and double to get the correct
3050
+ ;; value
3051
+ (a_hi Xmm (x64_psrld a_hi (RegMemImm.Imm 1)))
3052
+ (a_hi Xmm (x64_cvtdq2ps a_hi))
3053
+ (a_hi Xmm (x64_addps a_hi a_hi)))
3054
+
3055
+ ;; add together the two converted values
3056
+ (x64_addps a_hi a_lo)))
3057
+
3058
+ ;; Rules for `fcvt_to_uint` and `fcvt_to_sint` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3059
+
3060
+ (rule (lower (has_type out_ty (fcvt_to_uint val @ (value_type (ty_scalar_float _)))))
3061
+ (cvt_float_to_uint_seq out_ty val $false))
3062
+
3063
+ (rule (lower (has_type out_ty (fcvt_to_uint_sat val @ (value_type (ty_scalar_float _)))))
3064
+ (cvt_float_to_uint_seq out_ty val $true))
3065
+
3066
+ (rule (lower (has_type out_ty (fcvt_to_sint val @ (value_type (ty_scalar_float _)))))
3067
+ (cvt_float_to_sint_seq out_ty val $false))
3068
+
3069
+ (rule (lower (has_type out_ty (fcvt_to_sint_sat val @ (value_type (ty_scalar_float _)))))
3070
+ (cvt_float_to_sint_seq out_ty val $true))
3071
+
3072
+ ;; The x64 backend currently only supports these two type combinations.
3073
+ (rule 1 (lower (has_type $I32X4 (fcvt_to_sint_sat val @ (value_type $F32X4))))
3074
+ (let ((src Xmm val)
3075
+
3076
+ ;; Sets tmp to zero if float is NaN
3077
+ (tmp Xmm (x64_cmpps src src (FcmpImm.Equal)))
3078
+ (dst Xmm (x64_andps src tmp))
3079
+
3080
+ ;; Sets top bit of tmp if float is positive
3081
+ ;; Setting up to set top bit on negative float values
3082
+ (tmp Xmm (x64_pxor tmp dst))
3083
+
3084
+ ;; Convert the packed float to packed doubleword.
3085
+ (dst Xmm (x64_cvttps2dq $F32X4 dst))
3086
+
3087
+ ;; Set top bit only if < 0
3088
+ (tmp Xmm (x64_pand dst tmp))
3089
+ (tmp Xmm (x64_psrad tmp (RegMemImm.Imm 31))))
3090
+
3091
+ ;; On overflow 0x80000000 is returned to a lane.
3092
+ ;; Below sets positive overflow lanes to 0x7FFFFFFF
3093
+ ;; Keeps negative overflow lanes as is.
3094
+ (x64_pxor tmp dst)))
3095
+
3096
+ ;; The algorithm for converting floats to unsigned ints is a little tricky. The
3097
+ ;; complication arises because we are converting from a signed 64-bit int with a positive
3098
+ ;; integer range from 1..INT_MAX (0x1..0x7FFFFFFF) to an unsigned integer with an extended
3099
+ ;; range from (INT_MAX+1)..UINT_MAX. It's this range from (INT_MAX+1)..UINT_MAX
3100
+ ;; (0x80000000..0xFFFFFFFF) that needs to be accounted for as a special case since our
3101
+ ;; conversion instruction (cvttps2dq) only converts as high as INT_MAX (0x7FFFFFFF), but
3102
+ ;; which conveniently setting underflows and overflows (smaller than MIN_INT or larger than
3103
+ ;; MAX_INT) to be INT_MAX+1 (0x80000000). Nothing that the range (INT_MAX+1)..UINT_MAX includes
3104
+ ;; precisely INT_MAX values we can correctly account for and convert every value in this range
3105
+ ;; if we simply subtract INT_MAX+1 before doing the cvttps2dq conversion. After the subtraction
3106
+ ;; every value originally (INT_MAX+1)..UINT_MAX is now the range (0..INT_MAX).
3107
+ ;; After the conversion we add INT_MAX+1 back to this converted value, noting again that
3108
+ ;; values we are trying to account for were already set to INT_MAX+1 during the original conversion.
3109
+ ;; We simply have to create a mask and make sure we are adding together only the lanes that need
3110
+ ;; to be accounted for. Digesting it all the steps then are:
3111
+ ;;
3112
+ ;; Step 1 - Account for NaN and negative floats by setting these src values to zero.
3113
+ ;; Step 2 - Make a copy (tmp1) of the src value since we need to convert twice for
3114
+ ;; reasons described above.
3115
+ ;; Step 3 - Convert the original src values. This will convert properly all floats up to INT_MAX
3116
+ ;; Step 4 - Subtract INT_MAX from the copy set (tmp1). Note, all zero and negative values are those
3117
+ ;; values that were originally in the range (0..INT_MAX). This will come in handy during
3118
+ ;; step 7 when we zero negative lanes.
3119
+ ;; Step 5 - Create a bit mask for tmp1 that will correspond to all lanes originally less than
3120
+ ;; UINT_MAX that are now less than INT_MAX thanks to the subtraction.
3121
+ ;; Step 6 - Convert the second set of values (tmp1)
3122
+ ;; Step 7 - Prep the converted second set by zeroing out negative lanes (these have already been
3123
+ ;; converted correctly with the first set) and by setting overflow lanes to 0x7FFFFFFF
3124
+ ;; as this will allow us to properly saturate overflow lanes when adding to 0x80000000
3125
+ ;; Step 8 - Add the orginal converted src and the converted tmp1 where float values originally less
3126
+ ;; than and equal to INT_MAX will be unchanged, float values originally between INT_MAX+1 and
3127
+ ;; UINT_MAX will add together (INT_MAX) + (SRC - INT_MAX), and float values originally
3128
+ ;; greater than UINT_MAX will be saturated to UINT_MAX (0xFFFFFFFF) after adding (0x8000000 + 0x7FFFFFFF).
3129
+ ;;
3130
+ ;;
3131
+ ;; The table below illustrates the result after each step where it matters for the converted set.
3132
+ ;; Note the original value range (original src set) is the final dst in Step 8:
3133
+ ;;
3134
+ ;; Original src set:
3135
+ ;; | Original Value Range | Step 1 | Step 3 | Step 8 |
3136
+ ;; | -FLT_MIN..FLT_MAX | 0.0..FLT_MAX | 0..INT_MAX(w/overflow) | 0..UINT_MAX(w/saturation) |
3137
+ ;;
3138
+ ;; Copied src set (tmp1):
3139
+ ;; | Step 2 | Step 4 |
3140
+ ;; | 0.0..FLT_MAX | (0.0-(INT_MAX+1))..(FLT_MAX-(INT_MAX+1)) |
3141
+ ;;
3142
+ ;; | Step 6 | Step 7 |
3143
+ ;; | (0-(INT_MAX+1))..(UINT_MAX-(INT_MAX+1))(w/overflow) | ((INT_MAX+1)-(INT_MAX+1))..(INT_MAX+1) |
3144
+ (rule 1 (lower (has_type $I32X4 (fcvt_to_uint_sat val @ (value_type $F32X4))))
3145
+ (let ((src Xmm val)
3146
+
3147
+ ;; Converting to unsigned int so if float src is negative or NaN
3148
+ ;; will first set to zero.
3149
+ (tmp2 Xmm (x64_pxor src src)) ;; make a zero
3150
+ (dst Xmm (x64_maxps src tmp2))
3151
+
3152
+ ;; Set tmp2 to INT_MAX+1. It is important to note here that after it looks
3153
+ ;; like we are only converting INT_MAX (0x7FFFFFFF) but in fact because
3154
+ ;; single precision IEEE-754 floats can only accurately represent contingous
3155
+ ;; integers up to 2^23 and outside of this range it rounds to the closest
3156
+ ;; integer that it can represent. In the case of INT_MAX, this value gets
3157
+ ;; represented as 0x4f000000 which is the integer value (INT_MAX+1).
3158
+ (tmp2 Xmm (x64_pcmpeqd tmp2 tmp2))
3159
+ (tmp2 Xmm (x64_psrld tmp2 (RegMemImm.Imm 1)))
3160
+ (tmp2 Xmm (x64_cvtdq2ps tmp2))
3161
+
3162
+ ;; Make a copy of these lanes and then do the first conversion.
3163
+ ;; Overflow lanes greater than the maximum allowed signed value will
3164
+ ;; set to 0x80000000. Negative and NaN lanes will be 0x0
3165
+ (tmp1 Xmm dst)
3166
+ (dst Xmm (x64_cvttps2dq $F32X4 dst))
3167
+
3168
+ ;; Set lanes to src - max_signed_int
3169
+ (tmp1 Xmm (x64_subps tmp1 tmp2))
3170
+
3171
+ ;; Create mask for all positive lanes to saturate (i.e. greater than
3172
+ ;; or equal to the maxmimum allowable unsigned int).
3173
+ (tmp2 Xmm (x64_cmpps tmp2 tmp1 (FcmpImm.LessThanOrEqual)))
3174
+
3175
+ ;; Convert those set of lanes that have the max_signed_int factored out.
3176
+ (tmp1 Xmm (x64_cvttps2dq $F32X4 tmp1))
3177
+
3178
+ ;; Prepare converted lanes by zeroing negative lanes and prepping lanes
3179
+ ;; that have positive overflow (based on the mask) by setting these lanes
3180
+ ;; to 0x7FFFFFFF
3181
+ (tmp1 Xmm (x64_pxor tmp1 tmp2))
3182
+ (tmp2 Xmm (x64_pxor tmp2 tmp2)) ;; make another zero
3183
+ (tmp1 Xmm (x64_pmaxsd tmp1 tmp2)))
3184
+
3185
+ ;; Add this second set of converted lanes to the original to properly handle
3186
+ ;; values greater than max signed int.
3187
+ (x64_paddd tmp1 dst)))
3188
+
3189
+ ;; Rules for `iadd_pairwise` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3190
+
3191
+ (rule (lower
3192
+ (has_type $I16X8 (iadd_pairwise
3193
+ (swiden_low val @ (value_type $I8X16))
3194
+ (swiden_high val))))
3195
+ (let ((mul_const Xmm (x64_xmm_load_const $I8X16 (iadd_pairwise_mul_const_16))))
3196
+ (x64_pmaddubsw mul_const val)))
3197
+
3198
+ (rule (lower
3199
+ (has_type $I32X4 (iadd_pairwise
3200
+ (swiden_low val @ (value_type $I16X8))
3201
+ (swiden_high val))))
3202
+ (let ((mul_const Xmm (x64_xmm_load_const $I16X8 (iadd_pairwise_mul_const_32))))
3203
+ (x64_pmaddwd val mul_const)))
3204
+
3205
+ (rule (lower
3206
+ (has_type $I16X8 (iadd_pairwise
3207
+ (uwiden_low val @ (value_type $I8X16))
3208
+ (uwiden_high val))))
3209
+ (let ((mul_const Xmm (x64_xmm_load_const $I8X16 (iadd_pairwise_mul_const_16))))
3210
+ (x64_pmaddubsw val mul_const)))
3211
+
3212
+ (rule (lower
3213
+ (has_type $I32X4 (iadd_pairwise
3214
+ (uwiden_low val @ (value_type $I16X8))
3215
+ (uwiden_high val))))
3216
+ (let ((xor_const Xmm (x64_xmm_load_const $I16X8 (iadd_pairwise_xor_const_32)))
3217
+ (dst Xmm (x64_pxor val xor_const))
3218
+
3219
+ (madd_const Xmm (x64_xmm_load_const $I16X8 (iadd_pairwise_mul_const_32)))
3220
+ (dst Xmm (x64_pmaddwd dst madd_const))
3221
+
3222
+ (addd_const Xmm (x64_xmm_load_const $I16X8 (iadd_pairwise_addd_const_32))))
3223
+ (x64_paddd dst addd_const)))
3224
+
3225
+ ;; Rules for `swiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3226
+
3227
+ (rule (lower (has_type $I16X8 (swiden_low val @ (value_type $I8X16))))
3228
+ (x64_pmovsxbw val))
3229
+
3230
+ (rule (lower (has_type $I32X4 (swiden_low val @ (value_type $I16X8))))
3231
+ (x64_pmovsxwd val))
3232
+
3233
+ (rule (lower (has_type $I64X2 (swiden_low val @ (value_type $I32X4))))
3234
+ (x64_pmovsxdq val))
3235
+
3236
+ ;; Rules for `swiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3237
+
3238
+ (rule (lower (has_type $I16X8 (swiden_high val @ (value_type $I8X16))))
3239
+ (let ((x Xmm val))
3240
+ (x64_pmovsxbw (x64_palignr x x 8 (OperandSize.Size32)))))
3241
+
3242
+ (rule (lower (has_type $I32X4 (swiden_high val @ (value_type $I16X8))))
3243
+ (let ((x Xmm val))
3244
+ (x64_pmovsxwd (x64_palignr x x 8 (OperandSize.Size32)))))
3245
+
3246
+ (rule (lower (has_type $I64X2 (swiden_high val @ (value_type $I32X4))))
3247
+ (x64_pmovsxdq (x64_pshufd val 0xEE (OperandSize.Size32))))
3248
+
3249
+ ;; Rules for `uwiden_low` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3250
+
3251
+ (rule (lower (has_type $I16X8 (uwiden_low val @ (value_type $I8X16))))
3252
+ (x64_pmovzxbw val))
3253
+
3254
+ (rule (lower (has_type $I32X4 (uwiden_low val @ (value_type $I16X8))))
3255
+ (x64_pmovzxwd val))
3256
+
3257
+ (rule (lower (has_type $I64X2 (uwiden_low val @ (value_type $I32X4))))
3258
+ (x64_pmovzxdq val))
3259
+
3260
+ ;; Rules for `uwiden_high` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3261
+
3262
+ (rule (lower (has_type $I16X8 (uwiden_high val @ (value_type $I8X16))))
3263
+ (let ((x Xmm val))
3264
+ (x64_pmovzxbw (x64_palignr x x 8 (OperandSize.Size32)))))
3265
+
3266
+ (rule (lower (has_type $I32X4 (uwiden_high val @ (value_type $I16X8))))
3267
+ (let ((x Xmm val))
3268
+ (x64_pmovzxwd (x64_palignr x x 8 (OperandSize.Size32)))))
3269
+
3270
+ (rule (lower (has_type $I64X2 (uwiden_high val @ (value_type $I32X4))))
3271
+ (x64_pmovzxdq (x64_pshufd val 0xEE (OperandSize.Size32))))
3272
+
3273
+ ;; Rules for `snarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3274
+
3275
+ (rule (lower (has_type $I8X16 (snarrow a @ (value_type $I16X8) b)))
3276
+ (x64_packsswb a b))
3277
+
3278
+ (rule (lower (has_type $I16X8 (snarrow a @ (value_type $I32X4) b)))
3279
+ (x64_packssdw a b))
3280
+
3281
+ ;; We're missing a `snarrow` case for $I64X2
3282
+ ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3283
+
3284
+ ;; This rule is a special case for handling the translation of the wasm op
3285
+ ;; `i32x4.trunc_sat_f64x2_s_zero`. It can be removed once we have an
3286
+ ;; implementation of `snarrow` for `I64X2`.
3287
+ (rule (lower (has_type $I32X4 (snarrow (has_type $I64X2 (fcvt_to_sint_sat val))
3288
+ (vconst (u128_from_constant 0)))))
3289
+ (let ((a Xmm val)
3290
+
3291
+ ;; y = i32x4.trunc_sat_f64x2_s_zero(x) is lowered to:
3292
+ ;; MOVE xmm_tmp, xmm_x
3293
+ ;; CMPEQPD xmm_tmp, xmm_x
3294
+ ;; MOVE xmm_y, xmm_x
3295
+ ;; ANDPS xmm_tmp, [wasm_f64x2_splat(2147483647.0)]
3296
+ ;; MINPD xmm_y, xmm_tmp
3297
+ ;; CVTTPD2DQ xmm_y, xmm_y
3298
+
3299
+ (tmp1 Xmm (x64_cmppd a a (FcmpImm.Equal)))
3300
+ (umax_mask Xmm (x64_xmm_load_const $F64X2 (snarrow_umax_mask)))
3301
+
3302
+ ;; ANDPD xmm_y, [wasm_f64x2_splat(2147483647.0)]
3303
+ (tmp1 Xmm (x64_andps tmp1 umax_mask))
3304
+ (dst Xmm (x64_minpd a tmp1)))
3305
+ (x64_cvttpd2dq dst)))
3306
+
3307
+ ;; Rules for `unarrow` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3308
+
3309
+ (rule (lower (has_type $I8X16 (unarrow a @ (value_type $I16X8) b)))
3310
+ (x64_packuswb a b))
3311
+
3312
+ (rule (lower (has_type $I16X8 (unarrow a @ (value_type $I32X4) b)))
3313
+ (x64_packusdw a b))
3314
+
3315
+ ;; We're missing a `unarrow` case for $I64X2
3316
+ ;; https://github.com/bytecodealliance/wasmtime/issues/4734
3317
+
3318
+ ;; Rules for `bitcast` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3319
+
3320
+ (rule (lower (has_type $I32 (bitcast _ src @ (value_type $F32))))
3321
+ (bitcast_xmm_to_gpr $F32 src))
3322
+
3323
+ (rule (lower (has_type $F32 (bitcast _ src @ (value_type $I32))))
3324
+ (bitcast_gpr_to_xmm $I32 src))
3325
+
3326
+ (rule (lower (has_type $I64 (bitcast _ src @ (value_type $F64))))
3327
+ (bitcast_xmm_to_gpr $F64 src))
3328
+
3329
+ (rule (lower (has_type $F64 (bitcast _ src @ (value_type $I64))))
3330
+ (bitcast_gpr_to_xmm $I64 src))
3331
+
3332
+ ;; Bitcast between types residing in GPR registers is a no-op.
3333
+ (rule 1 (lower (has_type (is_gpr_type _)
3334
+ (bitcast _ x @ (value_type (is_gpr_type _))))) x)
3335
+
3336
+ ;; Bitcast between types residing in XMM registers is a no-op.
3337
+ (rule 2 (lower (has_type (is_xmm_type _)
3338
+ (bitcast _ x @ (value_type (is_xmm_type _))))) x)
3339
+
3340
+ ;; Rules for `fcopysign` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3341
+
3342
+ (rule (lower (has_type $F32 (fcopysign a @ (value_type $F32) b)))
3343
+ (let ((sign_bit Xmm (imm $F32 0x80000000)))
3344
+ (x64_orps
3345
+ (x64_andnps sign_bit a)
3346
+ (x64_andps sign_bit b))))
3347
+
3348
+ (rule (lower (has_type $F64 (fcopysign a @ (value_type $F64) b)))
3349
+ (let ((sign_bit Xmm (imm $F64 0x8000000000000000)))
3350
+ (x64_orpd
3351
+ (x64_andnpd sign_bit a)
3352
+ (x64_andpd sign_bit b))))
3353
+
3354
+ ;; Rules for `ceil` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3355
+
3356
+ (rule (lower (has_type (use_sse41 $true) (ceil a @ (value_type $F32))))
3357
+ (x64_roundss a (RoundImm.RoundUp)))
3358
+
3359
+ (rule (lower (has_type (use_sse41 $false) (ceil a @ (value_type $F32))))
3360
+ (libcall_1 (LibCall.CeilF32) a))
3361
+
3362
+ (rule (lower (has_type (use_sse41 $true) (ceil a @ (value_type $F64))))
3363
+ (x64_roundsd a (RoundImm.RoundUp)))
3364
+
3365
+ (rule (lower (has_type (use_sse41 $false) (ceil a @ (value_type $F64))))
3366
+ (libcall_1 (LibCall.CeilF64) a))
3367
+
3368
+ (rule (lower (has_type (use_sse41 $true) (ceil a @ (value_type $F32X4))))
3369
+ (x64_roundps a (RoundImm.RoundUp)))
3370
+
3371
+ (rule (lower (has_type (use_sse41 $true) (ceil a @ (value_type $F64X2))))
3372
+ (x64_roundpd a (RoundImm.RoundUp)))
3373
+
3374
+ ;; Rules for `floor` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3375
+
3376
+ (rule (lower (has_type (use_sse41 $true) (floor a @ (value_type $F32))))
3377
+ (x64_roundss a (RoundImm.RoundDown)))
3378
+
3379
+ (rule (lower (has_type (use_sse41 $false) (floor a @ (value_type $F32))))
3380
+ (libcall_1 (LibCall.FloorF32) a))
3381
+
3382
+ (rule (lower (has_type (use_sse41 $true) (floor a @ (value_type $F64))))
3383
+ (x64_roundsd a (RoundImm.RoundDown)))
3384
+
3385
+ (rule (lower (has_type (use_sse41 $false) (floor a @ (value_type $F64))))
3386
+ (libcall_1 (LibCall.FloorF64) a))
3387
+
3388
+ (rule (lower (has_type (use_sse41 $true) (floor a @ (value_type $F32X4))))
3389
+ (x64_roundps a (RoundImm.RoundDown)))
3390
+
3391
+ (rule (lower (has_type (use_sse41 $true) (floor a @ (value_type $F64X2))))
3392
+ (x64_roundpd a (RoundImm.RoundDown)))
3393
+
3394
+ ;; Rules for `nearest` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3395
+
3396
+ (rule (lower (has_type (use_sse41 $true) (nearest a @ (value_type $F32))))
3397
+ (x64_roundss a (RoundImm.RoundNearest)))
3398
+
3399
+ (rule (lower (has_type (use_sse41 $false) (nearest a @ (value_type $F32))))
3400
+ (libcall_1 (LibCall.NearestF32) a))
3401
+
3402
+ (rule (lower (has_type (use_sse41 $true) (nearest a @ (value_type $F64))))
3403
+ (x64_roundsd a (RoundImm.RoundNearest)))
3404
+
3405
+ (rule (lower (has_type (use_sse41 $false) (nearest a @ (value_type $F64))))
3406
+ (libcall_1 (LibCall.NearestF64) a))
3407
+
3408
+ (rule (lower (has_type (use_sse41 $true) (nearest a @ (value_type $F32X4))))
3409
+ (x64_roundps a (RoundImm.RoundNearest)))
3410
+
3411
+ (rule (lower (has_type (use_sse41 $true) (nearest a @ (value_type $F64X2))))
3412
+ (x64_roundpd a (RoundImm.RoundNearest)))
3413
+
3414
+ ;; Rules for `trunc` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3415
+
3416
+ (rule (lower (has_type (use_sse41 $true) (trunc a @ (value_type $F32))))
3417
+ (x64_roundss a (RoundImm.RoundZero)))
3418
+
3419
+ (rule (lower (has_type (use_sse41 $false) (trunc a @ (value_type $F32))))
3420
+ (libcall_1 (LibCall.TruncF32) a))
3421
+
3422
+ (rule (lower (has_type (use_sse41 $true) (trunc a @ (value_type $F64))))
3423
+ (x64_roundsd a (RoundImm.RoundZero)))
3424
+
3425
+ (rule (lower (has_type (use_sse41 $false) (trunc a @ (value_type $F64))))
3426
+ (libcall_1 (LibCall.TruncF64) a))
3427
+
3428
+ (rule (lower (has_type (use_sse41 $true) (trunc a @ (value_type $F32X4))))
3429
+ (x64_roundps a (RoundImm.RoundZero)))
3430
+
3431
+ (rule (lower (has_type (use_sse41 $true) (trunc a @ (value_type $F64X2))))
3432
+ (x64_roundpd a (RoundImm.RoundZero)))
3433
+
3434
+ ;; Rules for `stack_addr` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3435
+
3436
+ (rule (lower (stack_addr stack_slot offset))
3437
+ (stack_addr_impl stack_slot offset))
3438
+
3439
+ ;; Rules for `udiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3440
+
3441
+ (rule (lower (udiv a @ (value_type ty) b))
3442
+ (div_or_rem (DivOrRemKind.UnsignedDiv) a b))
3443
+
3444
+ ;; Rules for `sdiv` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3445
+
3446
+ (rule (lower (sdiv a @ (value_type ty) b))
3447
+ (div_or_rem (DivOrRemKind.SignedDiv) a b))
3448
+
3449
+ ;; Rules for `urem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3450
+
3451
+ (rule (lower (urem a @ (value_type ty) b))
3452
+ (div_or_rem (DivOrRemKind.UnsignedRem) a b))
3453
+
3454
+ ;; Rules for `srem` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3455
+
3456
+ (rule (lower (srem a @ (value_type ty) b))
3457
+ (div_or_rem (DivOrRemKind.SignedRem) a b))
3458
+
3459
+ ;; Rules for `umulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3460
+
3461
+ (rule (lower (umulhi a @ (value_type $I16) b))
3462
+ (let ((res ValueRegs (mul_hi $I16 $false a b))
3463
+ (hi Gpr (value_regs_get_gpr res 1)))
3464
+ hi))
3465
+
3466
+ (rule (lower (umulhi a @ (value_type $I32) b))
3467
+ (let ((res ValueRegs (mul_hi $I32 $false a b))
3468
+ (hi Gpr (value_regs_get_gpr res 1)))
3469
+ hi))
3470
+
3471
+ (rule (lower (umulhi a @ (value_type $I64) b))
3472
+ (let ((res ValueRegs (mul_hi $I64 $false a b))
3473
+ (hi Gpr (value_regs_get_gpr res 1)))
3474
+ hi))
3475
+
3476
+ ;; Rules for `smulhi` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3477
+
3478
+ (rule (lower (smulhi a @ (value_type $I16) b))
3479
+ (let ((res ValueRegs (mul_hi $I16 $true a b))
3480
+ (hi Gpr (value_regs_get_gpr res 1)))
3481
+ hi))
3482
+
3483
+ (rule (lower (smulhi a @ (value_type $I32) b))
3484
+ (let ((res ValueRegs (mul_hi $I32 $true a b))
3485
+ (hi Gpr (value_regs_get_gpr res 1)))
3486
+ hi))
3487
+
3488
+ (rule (lower (smulhi a @ (value_type $I64) b))
3489
+ (let ((res ValueRegs (mul_hi $I64 $true a b))
3490
+ (hi Gpr (value_regs_get_gpr res 1)))
3491
+ hi))
3492
+
3493
+ ;; Rules for `get_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3494
+
3495
+ (rule (lower (get_pinned_reg))
3496
+ (read_pinned_gpr))
3497
+
3498
+ ;; Rules for `set_pinned_reg` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3499
+
3500
+ (rule (lower (set_pinned_reg a @ (value_type ty)))
3501
+ (side_effect (write_pinned_gpr a)))
3502
+
3503
+ ;; Rules for `vconst` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3504
+
3505
+ (rule (lower (has_type ty (vconst const)))
3506
+ ;; TODO use Inst::gen_constant() instead.
3507
+ (x64_xmm_load_const ty (const_to_vconst const)))
3508
+
3509
+ ;; Rules for `shuffle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3510
+
3511
+ ;; If `lhs` and `rhs` are the same we can use a single PSHUFB to shuffle the XMM
3512
+ ;; register. We statically build `constructed_mask` to zero out any unknown lane
3513
+ ;; indices (may not be completely necessary: verification could fail incorrect
3514
+ ;; mask values) and fix the indexes to all point to the `dst` vector.
3515
+ (rule 3 (lower (shuffle a a (vec_mask_from_immediate mask)))
3516
+ (x64_pshufb a (x64_xmm_load_const $I8X16 (shuffle_0_31_mask mask))))
3517
+
3518
+ ;; For the case where the shuffle mask contains out-of-bounds values (values
3519
+ ;; greater than 31) we must mask off those resulting values in the result of
3520
+ ;; `vpermi2b`.
3521
+ (rule 2 (lower (has_type (and (avx512vl_enabled $true) (avx512vbmi_enabled $true))
3522
+ (shuffle a b (vec_mask_from_immediate
3523
+ (perm_from_mask_with_zeros mask zeros)))))
3524
+ (x64_andps
3525
+ (x64_xmm_load_const $I8X16 zeros)
3526
+ (x64_vpermi2b b a (x64_xmm_load_const $I8X16 mask))))
3527
+
3528
+ ;; However, if the shuffle mask contains no out-of-bounds values, we can use
3529
+ ;; `vpermi2b` without any masking.
3530
+ (rule 1 (lower (has_type (and (avx512vl_enabled $true) (avx512vbmi_enabled $true))
3531
+ (shuffle a b (vec_mask_from_immediate mask))))
3532
+ (x64_vpermi2b b a (x64_xmm_load_const $I8X16 (perm_from_mask mask))))
3533
+
3534
+ ;; If `lhs` and `rhs` are different, we must shuffle each separately and then OR
3535
+ ;; them together. This is necessary due to PSHUFB semantics. As in the case
3536
+ ;; above, we build the `constructed_mask` for each case statically.
3537
+ (rule (lower (shuffle a b (vec_mask_from_immediate mask)))
3538
+ (x64_por
3539
+ (x64_pshufb a (x64_xmm_load_const $I8X16 (shuffle_0_15_mask mask)))
3540
+ (x64_pshufb b (x64_xmm_load_const $I8X16 (shuffle_16_31_mask mask)))))
3541
+
3542
+ ;; Rules for `swizzle` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3543
+
3544
+ ;; SIMD swizzle; the following inefficient implementation is due to the Wasm
3545
+ ;; SIMD spec requiring mask indexes greater than 15 to have the same semantics
3546
+ ;; as a 0 index. For the spec discussion, see
3547
+ ;; https://github.com/WebAssembly/simd/issues/93. The CLIF semantics match the
3548
+ ;; Wasm SIMD semantics for this instruction. The instruction format maps to
3549
+ ;; variables like: %dst = swizzle %src, %mask
3550
+ (rule (lower (swizzle src mask))
3551
+ (let ((mask Xmm (x64_paddusb
3552
+ mask
3553
+ (x64_xmm_load_const $I8X16 (swizzle_zero_mask)))))
3554
+ (x64_pshufb src mask)))
3555
+
3556
+ ;; Rules for `extractlane` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3557
+
3558
+ ;; Remove the extractlane instruction, leaving the float where it is. The upper
3559
+ ;; bits will remain unchanged; for correctness, this relies on Cranelift type
3560
+ ;; checking to avoid using those bits.
3561
+ (rule 2 (lower (has_type (ty_scalar_float _) (extractlane val (u8_from_uimm8 0))))
3562
+ val)
3563
+
3564
+ ;; Cases 2-4 for an F32X4
3565
+ (rule 1 (lower (has_type $F32 (extractlane val @ (value_type (ty_vec128 ty))
3566
+ (u8_from_uimm8 lane))))
3567
+ (x64_pshufd val lane (OperandSize.Size32)))
3568
+
3569
+ ;; This is the only remaining case for F64X2
3570
+ (rule 1 (lower (has_type $F64 (extractlane val @ (value_type (ty_vec128 ty))
3571
+ (u8_from_uimm8 1))))
3572
+ ;; 0xee == 0b11_10_11_10
3573
+ (x64_pshufd val 0xee (OperandSize.Size32)))
3574
+
3575
+ (rule 0 (lower (extractlane val @ (value_type ty @ (multi_lane 8 16)) (u8_from_uimm8 lane)))
3576
+ (x64_pextrb ty val lane))
3577
+
3578
+ (rule 0 (lower (extractlane val @ (value_type ty @ (multi_lane 16 8)) (u8_from_uimm8 lane)))
3579
+ (x64_pextrw ty val lane))
3580
+
3581
+ (rule 0 (lower (extractlane val @ (value_type ty @ (multi_lane 32 4)) (u8_from_uimm8 lane)))
3582
+ (x64_pextrd ty val lane))
3583
+
3584
+ (rule 0 (lower (extractlane val @ (value_type ty @ (multi_lane 64 2)) (u8_from_uimm8 lane)))
3585
+ (x64_pextrd ty val lane))
3586
+
3587
+ ;; Rules for `scalar_to_vector` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3588
+
3589
+ ;; Case 1: when moving a scalar float, we simply move from one XMM register
3590
+ ;; to another, expecting the register allocator to elide this. Here we
3591
+ ;; assume that the upper bits of a scalar float have not been munged with
3592
+ ;; (the same assumption the old backend makes).
3593
+ (rule 1 (lower (scalar_to_vector src @ (value_type (ty_scalar_float _))))
3594
+ src)
3595
+
3596
+ ;; Case 2: when moving a scalar value of any other type, use MOVD to zero
3597
+ ;; the upper lanes.
3598
+ (rule (lower (scalar_to_vector src @ (value_type ty)))
3599
+ (bitcast_gpr_to_xmm ty src))
3600
+
3601
+ ;; Case 3: when presented with `load + scalar_to_vector`, coalesce into a single
3602
+ ;; MOVSS/MOVSD instruction.
3603
+ (rule 2 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_32 _)))))
3604
+ (x64_movss_load (sink_load_to_xmm_mem src)))
3605
+ (rule 3 (lower (scalar_to_vector (and (sinkable_load src) (value_type (ty_64 _)))))
3606
+ (x64_movsd_load (sink_load_to_xmm_mem src)))
3607
+
3608
+ ;; Rules for `splat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3609
+
3610
+ (rule (lower (has_type (multi_lane 8 16) (splat src)))
3611
+ (let ((vec Xmm (vec_insert_lane $I8X16 (xmm_uninit_value) src 0))
3612
+ (zeros Xmm (x64_pxor vec vec)))
3613
+ ;; Shuffle the lowest byte lane to all other lanes.
3614
+ (x64_pshufb vec zeros)))
3615
+
3616
+ (rule (lower (has_type (multi_lane 16 8) (splat src)))
3617
+ (let (;; Force the input into a register so that we don't create a
3618
+ ;; VCodeConstant.
3619
+ (src RegMem (RegMem.Reg src))
3620
+ (vec Xmm (vec_insert_lane $I16X8 (xmm_uninit_value) src 0))
3621
+ (vec Xmm (vec_insert_lane $I16X8 vec src 1)))
3622
+ ;; Shuffle the lowest two lanes to all other lanes.
3623
+ (x64_pshufd vec 0 (OperandSize.Size32))))
3624
+
3625
+ (rule 1 (lower (has_type (multi_lane 32 4) (splat src @ (value_type (ty_scalar_float _)))))
3626
+ (lower_splat_32x4 $F32X4 src))
3627
+
3628
+ (rule (lower (has_type (multi_lane 32 4) (splat src)))
3629
+ (lower_splat_32x4 $I32X4 src))
3630
+
3631
+ (decl lower_splat_32x4 (Type Value) Xmm)
3632
+ (rule (lower_splat_32x4 ty src)
3633
+ (let ((src RegMem src)
3634
+ (vec Xmm (vec_insert_lane ty (xmm_uninit_value) src 0)))
3635
+ ;; Shuffle the lowest lane to all other lanes.
3636
+ (x64_pshufd vec 0 (OperandSize.Size32))))
3637
+
3638
+ (rule 1 (lower (has_type (multi_lane 64 2) (splat src @ (value_type (ty_scalar_float _)))))
3639
+ (lower_splat_64x2 $F64X2 src))
3640
+
3641
+ (rule (lower (has_type (multi_lane 64 2) (splat src)))
3642
+ (lower_splat_64x2 $I64X2 src))
3643
+
3644
+ (decl lower_splat_64x2 (Type Value) Xmm)
3645
+ (rule (lower_splat_64x2 ty src)
3646
+ (let (;; Force the input into a register so that we don't create a
3647
+ ;; VCodeConstant.
3648
+ (src RegMem (RegMem.Reg src))
3649
+ (vec Xmm (vec_insert_lane ty (xmm_uninit_value) src 0)))
3650
+ (vec_insert_lane ty vec src 1)))
3651
+
3652
+ ;; Rules for `vany_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3653
+
3654
+ (rule (lower (vany_true val))
3655
+ (let ((val Xmm val))
3656
+ (with_flags (x64_ptest val val) (x64_setcc (CC.NZ)))))
3657
+
3658
+ ;; Rules for `vall_true` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3659
+
3660
+ (rule (lower (vall_true val @ (value_type ty)))
3661
+ (let ((src Xmm val)
3662
+ (zeros Xmm (x64_pxor src src))
3663
+ (cmp Xmm (x64_pcmpeq (vec_int_type ty) src zeros)))
3664
+ (with_flags (x64_ptest cmp cmp) (x64_setcc (CC.Z)))))
3665
+
3666
+ ;; Rules for `vhigh_bits` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3667
+
3668
+ ;; The Intel specification allows using both 32-bit and 64-bit GPRs as
3669
+ ;; destination for the "move mask" instructions. This is controlled by the REX.R
3670
+ ;; bit: "In 64-bit mode, the instruction can access additional registers when
3671
+ ;; used with a REX.R prefix. The default operand size is 64-bit in 64-bit mode"
3672
+ ;; (PMOVMSKB in IA Software Development Manual, vol. 2). This being the case, we
3673
+ ;; will always clear REX.W since its use is unnecessary (`OperandSize` is used
3674
+ ;; for setting/clearing REX.W) as we need at most 16 bits of output for
3675
+ ;; `vhigh_bits`.
3676
+
3677
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 8 16))))
3678
+ (x64_pmovmskb (OperandSize.Size32) val))
3679
+
3680
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 32 4))))
3681
+ (x64_movmskps (OperandSize.Size32) val))
3682
+
3683
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 64 2))))
3684
+ (x64_movmskpd (OperandSize.Size32) val))
3685
+
3686
+ ;; There is no x86 instruction for extracting the high bit of 16-bit lanes so
3687
+ ;; here we:
3688
+ ;; - duplicate the 16-bit lanes of `src` into 8-bit lanes:
3689
+ ;; PACKSSWB([x1, x2, ...], [x1, x2, ...]) = [x1', x2', ..., x1', x2', ...]
3690
+ ;; - use PMOVMSKB to gather the high bits; now we have duplicates, though
3691
+ ;; - shift away the bottom 8 high bits to remove the duplicates.
3692
+ (rule (lower (vhigh_bits val @ (value_type (multi_lane 16 8))))
3693
+ (let ((src Xmm val)
3694
+ (tmp Xmm (x64_packsswb src src))
3695
+ (tmp Gpr (x64_pmovmskb (OperandSize.Size32) tmp)))
3696
+ (x64_shr $I64 tmp (Imm8Reg.Imm8 8))))
3697
+
3698
+ ;; Rules for `iconcat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3699
+
3700
+ (rule (lower (iconcat lo @ (value_type $I64) hi))
3701
+ (value_regs lo hi))
3702
+
3703
+ ;; Rules for `isplit` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3704
+
3705
+ (rule (lower (isplit val @ (value_type $I128)))
3706
+ (let ((regs ValueRegs val)
3707
+ (lo Reg (value_regs_get regs 0))
3708
+ (hi Reg (value_regs_get regs 1)))
3709
+ (output_pair lo hi)))
3710
+
3711
+ ;; Rules for `tls_value` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3712
+
3713
+ (rule (lower (has_type (tls_model (TlsModel.ElfGd)) (tls_value (symbol_value_data name _ _))))
3714
+ (elf_tls_get_addr name))
3715
+
3716
+ (rule (lower (has_type (tls_model (TlsModel.Macho)) (tls_value (symbol_value_data name _ _))))
3717
+ (macho_tls_get_addr name))
3718
+
3719
+ (rule (lower (has_type (tls_model (TlsModel.Coff)) (tls_value (symbol_value_data name _ _))))
3720
+ (coff_tls_get_addr name))
3721
+
3722
+ ;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3723
+
3724
+ (rule (lower (sqmul_round_sat qx @ (value_type $I16X8) qy))
3725
+ (let ((src1 Xmm qx)
3726
+ (src2 Xmm qy)
3727
+
3728
+ (mask Xmm (x64_xmm_load_const $I16X8 (sqmul_round_sat_mask)))
3729
+ (dst Xmm (x64_pmulhrsw src1 src2))
3730
+ (cmp Xmm (x64_pcmpeqw mask dst)))
3731
+ (x64_pxor dst cmp)))
3732
+
3733
+ ;; Rules for `sqmul_round_sat` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3734
+
3735
+ ;; TODO: currently we only lower a special case of `uunarrow` needed to support
3736
+ ;; the translation of wasm's i32x4.trunc_sat_f64x2_u_zero operation.
3737
+ ;; https://github.com/bytecodealliance/wasmtime/issues/4791
3738
+ ;;
3739
+ ;; y = i32x4.trunc_sat_f64x2_u_zero(x) is lowered to:
3740
+ ;; MOVAPD xmm_y, xmm_x
3741
+ ;; XORPD xmm_tmp, xmm_tmp
3742
+ ;; MAXPD xmm_y, xmm_tmp
3743
+ ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
3744
+ ;; ROUNDPD xmm_y, xmm_y, 0x0B
3745
+ ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
3746
+ ;; SHUFPS xmm_y, xmm_xmp, 0x88
3747
+ (rule (lower (uunarrow (fcvt_to_uint_sat src @ (value_type $F64X2))
3748
+ (vconst (u128_from_constant 0))))
3749
+ (let ((src Xmm src)
3750
+
3751
+ ;; MOVAPD xmm_y, xmm_x
3752
+ ;; XORPD xmm_tmp, xmm_tmp
3753
+ (zeros Xmm (x64_xorpd src src))
3754
+ (dst Xmm (x64_maxpd src zeros))
3755
+
3756
+ (umax_mask Xmm (x64_xmm_load_const $F64X2 (uunarrow_umax_mask)))
3757
+
3758
+ ;; MINPD xmm_y, [wasm_f64x2_splat(4294967295.0)]
3759
+ (dst Xmm (x64_minpd dst umax_mask))
3760
+
3761
+ ;; ROUNDPD xmm_y, xmm_y, 0x0B
3762
+ (dst Xmm (x64_roundpd dst (RoundImm.RoundZero)))
3763
+
3764
+ ;; ADDPD xmm_y, [wasm_f64x2_splat(0x1.0p+52)]
3765
+ (uint_mask Xmm (x64_xmm_load_const $F64X2 (uunarrow_uint_mask)))
3766
+ (dst Xmm (x64_addpd dst uint_mask)))
3767
+
3768
+ ;; SHUFPS xmm_y, xmm_xmp, 0x88
3769
+ (x64_shufps dst zeros 0x88)))
3770
+
3771
+ ;; Rules for `nop` ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
3772
+
3773
+ (rule (lower (nop))
3774
+ (invalid_reg))
3775
+