about summary refs log tree commit diff
path: root/compiler/rustc_query_system/src/dep_graph/serialized.rs
AgeCommit message (Expand)AuthorLines
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
2023-03-25Optimize `incremental_verify_ich`John Kåre Alsaker-5/+0
2023-02-16`if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)`Maybe Waffle-2/+1
2023-01-17Remove double spaces after dots in commentsMaybe Waffle-2/+2
2023-01-05Fix `uninlined_format_args` for some compiler cratesnils-8/+5
2022-12-18A few small cleanups for `newtype_index`Nilstrieb-2/+1
2022-12-18Make `#[max]` an attribute in `newtype_index`Nilstrieb-1/+1
2022-12-10compiler: remove unnecessary imports and qualified pathsKaDiWa-1/+0
2022-06-16Move `finish` out of the `Encoder` trait.Nicholas Nethercote-1/+1
2022-06-14Rename rustc_serialize::opaque::Encoder as MemEncoder.Nicholas Nethercote-3/+3
2022-06-10Revert dc08bc51f2c58a0f5f815a07f9bb3d671153b5a1.Nicholas Nethercote-1/+1
2022-06-10Revert b983e42936feab29f6333e9835913afc6b4a394e.Nicholas Nethercote-3/+3
2022-06-08Rename `rustc_serialize::opaque::Encoder` as `MemEncoder`.Nicholas Nethercote-3/+3
2022-06-08Move `finish` out of the `Encoder` trait.Nicholas Nethercote-1/+1
2022-06-08Use delayed error handling for `Encodable` and `Encoder` infallible.Nicholas Nethercote-14/+11
2022-03-30Spellchecking compiler commentsYuri Astrakhan-1/+1
2022-03-28Revert "Auto merge of #93893 - oli-obk:sad_revert, r=oli-obk"Oli Scherer-2/+0
2022-02-20Delete Decoder::read_seqMark Rousskov-10/+10
2022-02-20Delete Decoder::read_seq_eltMark Rousskov-1/+1
2022-02-20Delete Decoder::read_struct_fieldMark Rousskov-13/+11
2022-02-20Delete Decoder::read_structMark Rousskov-22/+19
2022-02-11Revert "Auto merge of #92007 - oli-obk:lazy_tait2, r=nikomatsakis"Oli Scherer-0/+2
2022-02-07Auto merge of #92007 - oli-obk:lazy_tait2, r=nikomatsakisbors-2/+0
2022-02-02Lazily resolve type-alias-impl-trait defining usesOli Scherer-2/+0
2022-02-02Use Option::then in two placesest31-1/+1
2022-01-22Address review comments.Nicholas Nethercote-1/+0
2022-01-22Make `Decodable` and `Decoder` infallible.Nicholas Nethercote-9/+9
2021-10-07Add support for artifact size profilingRyan Levick-3/+7
2021-09-15Use explicit log level in tracing instrument macroTomasz Miąsko-2/+2
2021-06-01Remove unused functions and arguments from rustc_serializebjorn3-6/+6
2021-05-22Get rid of PreviousDepGraph.Camille GILLOT-5/+35
2021-03-31Enable debugging the dep-graph without debug-assertions.Camille GILLOT-9/+5
2021-03-30Also profile finishing the encoding.Camille GILLOT-1/+2
2021-03-30Adjust profiling.Camille GILLOT-0/+3
2021-03-30Address review.Camille GILLOT-8/+9
2021-03-30Add documentation.Camille GILLOT-0/+12
2021-03-30Simplify tracking the encoder state.Camille GILLOT-80/+72
2021-03-30Remove the parallel version.Camille GILLOT-135/+13
2021-03-30Fix parallel compiler.Camille GILLOT-1/+3
2021-03-30Fix tests.Camille GILLOT-1/+8
2021-03-30Do not allocate in decoder.Camille GILLOT-24/+34
2021-03-30Stream the dep-graph to a file.Camille GILLOT-74/+352
2021-01-12Serialize dependency graph directly from DepGraphTyson Nottingham-1/+78
2020-12-22rustc_query_system: share previous graph edges with current graphTyson Nottingham-1/+6
2020-08-30mv compiler to compiler/mark-0/+45