about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/dep_graph/serialized.rs
AgeCommit message (Expand)AuthorLines
2025-05-14Handle `rustc_query_system` cases of `rustc::potential_query_instability` lintismailarilik-0/+2
2025-05-06Use the portable `AtomicU64`John Kåre Alsaker-2/+2
2025-05-05Add some comments about thread local indicesJohn Kåre Alsaker-1/+5
2025-05-05Tweak index chunk allocationJohn Kåre Alsaker-5/+9
2025-05-01Add some commentsJohn Kåre Alsaker-0/+1
2025-05-01Use thread local dep graph encodingJohn Kåre Alsaker-135/+232
2025-04-22Make sure there's no duplicate indices in the dep graphJohn Kåre Alsaker-1/+5
2025-04-22Tweak edgesJohn Kåre Alsaker-8/+5
2025-04-22Use `IndexVec::from_elem_n`John Kåre Alsaker-10/+7
2025-04-22Add index to the dep graph format and encode via `MemEncoder`John Kåre Alsaker-39/+83
2025-04-17Rollup merge of #139236 - Zoxc:anon-counter, r=davidtwcoMatthias Krüger-1/+14
2025-04-13Rollup merge of #139636 - Zoxc:graph-edges-len-u32, r=compiler-errorsJacob Pratt-8/+10
2025-04-10Encode dep node edge count as u32 instead of usizeJohn Kåre Alsaker-8/+10
2025-04-05Reuse the index from promoted nodes when coloring executed tasksJohn Kåre Alsaker-3/+38
2025-04-02Use a session counter to make anon dep nodes uniqueJohn Kåre Alsaker-1/+14
2025-03-24Remove `prev_index_to_index` field from `CurrentDepGraph`John Kåre Alsaker-12/+26
2025-03-19Allow duplicates for side effect nodesJohn Kåre Alsaker-2/+5
2025-03-19Pass in dep kind names to the duplicate dep node checkJohn Kåre Alsaker-3/+4
2025-03-19Check for duplicate dep nodes when creating the indexJohn Kåre Alsaker-1/+8
2025-03-07compiler: Use size_of from the prelude instead of importedThalia Archibald-6/+5
2025-02-22Greatly simplify lifetime captures in edition 2024Michael Goulet-1/+1
2024-08-29Add `warn(unreachable_pub)` to `rustc_query_system`.Nicholas Nethercote-3/+3
2024-08-20fix: simple typo in compiler directoryc8ef-1/+1
2024-07-29Reformat `use` declarations.Nicholas Nethercote-8/+9
2024-05-21Add a footer in FileEncoder and check for it in MemDecoderBen Kimock-7/+3
2024-04-30Remove `extern crate tracing` from numerous crates.Nicholas Nethercote-0/+1
2024-04-11remove some things that do not need to beMatthias Krüger-6/+1
2024-03-23Add some comments and do some renamesJohn Kåre Alsaker-3/+21
2024-03-23Encode dep graph edges directly from the previous graph when promotingJohn Kåre Alsaker-32/+148
2024-03-12Rollup merge of #122245 - saethlin:check-dep-graph-size, r=petrochenkovJubilee-3/+7
2024-03-09Detect truncated incr comp filesBen Kimock-3/+7
2024-03-06Avoid the double lock around `EncoderState`John Kåre Alsaker-7/+9
2024-03-06Add a profiler reference to `GraphEncoder`John Kåre Alsaker-6/+7
2024-02-22Fix typo in serialized.rsIkko Eltociear Ashimine-1/+1
2024-01-14Inline 2 functions that appear in dep-graph profiles.Camille GILLOT-0/+1
2023-12-12clippy::complexity fixesMatthias Krüger-13/+1
2023-11-22Replace `custom_encodable` with `encodable`.Nicholas Nethercote-0/+1
2023-11-16Reduce exposure of things.Nicholas Nethercote-1/+1
2023-09-21Move `DepKind` to `rustc_query_system` and define it as `u16`John Kåre Alsaker-50/+57
2023-09-20Auto merge of #115542 - saethlin:fileencoder-is-bufwriter, r=WaffleLapkinbors-3/+5
2023-09-20PR feedbackBen Kimock-4/+1
2023-09-12Use `UnhashMap` for the indexJohn Kåre Alsaker-2/+3
2023-09-12Encode the number of dep kinds encountered in the dep graphJohn Kåre Alsaker-3/+15
2023-09-12Store a index per dep node kindJohn Kåre Alsaker-7/+14
2023-09-10Reimplement FileEncoder with a small-write optimizationBen Kimock-3/+8
2023-09-06Add comments with the same level of detail as the PR descriptionBen Kimock-7/+40
2023-09-04Use a specialized varint + bitpacking scheme for DepGraph encodingBen Kimock-28/+256
2023-04-26Auto merge of #110634 - saethlin:pointy-decoder, r=cjgillotbors-9/+7
2023-04-24Split `{Idx, IndexVec, IndexSlice}` into their own modulesMaybe Waffle-1/+1
2023-04-23Rewrite MemDecoder around pointers not a sliceBen Kimock-9/+7