Commit 8ad7c34
committed
Auto merge of #46564 - Zoxc:rayon-queries, r=<try>
WIP: Parallelize passes using rayon
This builds on #46193 and #45912 and actually makes code run in parallel. This is not quite ready yet since `rustc` is not yet completely thread safe. It also uses a rough fork of rayon which uses fibers/stackful coroutines.160 files changed
Lines changed: 3858 additions & 2408 deletions
File tree
- src
- bootstrap
- bin
- libarena
- libproc_macro
- librustc_borrowck
- borrowck
- librustc_const_eval
- librustc_data_structures
- librustc_driver
- librustc_errors
- librustc_metadata
- librustc_mir
- dataflow/impls
- hair/cx
- transform
- librustc_passes
- librustc_privacy
- librustc_resolve
- librustc_trans_utils
- librustc_trans
- back
- librustc_typeck
- check
- method
- coherence
- outlives
- variance
- librustc
- dep_graph
- hir
- map
- ich
- infer
- lint
- middle
- mir
- session
- traits
- specialize
- ty
- maps
- util
- librustdoc
- clean
- libserialize
- libsyntax_ext
- deriving
- libsyntax_pos
- libsyntax
- diagnostics
- ext
- tt
- parse
- lexer
- print
- util
- test
- run-fail-fulldeps
- run-make/issue-19371
- run-pass-fulldeps
- tools/error_index_generator
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
262 | 262 | | |
263 | 263 | | |
264 | 264 | | |
| 265 | + | |
| 266 | + | |
| 267 | + | |
| 268 | + | |
265 | 269 | | |
266 | 270 | | |
267 | 271 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
561 | 561 | | |
562 | 562 | | |
563 | 563 | | |
| 564 | + | |
| 565 | + | |
| 566 | + | |
564 | 567 | | |
565 | 568 | | |
566 | 569 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
87 | 87 | | |
88 | 88 | | |
89 | 89 | | |
| 90 | + | |
90 | 91 | | |
91 | 92 | | |
92 | 93 | | |
| |||
266 | 267 | | |
267 | 268 | | |
268 | 269 | | |
| 270 | + | |
269 | 271 | | |
270 | 272 | | |
271 | 273 | | |
| |||
474 | 476 | | |
475 | 477 | | |
476 | 478 | | |
| 479 | + | |
477 | 480 | | |
478 | 481 | | |
479 | 482 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
126 | 126 | | |
127 | 127 | | |
128 | 128 | | |
129 | | - | |
130 | | - | |
| 129 | + | |
| 130 | + | |
131 | 131 | | |
132 | 132 | | |
133 | 133 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
| 10 | + | |
| 11 | + | |
| 12 | + | |
0 commit comments