| Age | Commit message (Expand) | Author | Lines |
| 2023-10-10 | Rollup merge of #116589 - Zalathar:successors, r=oli-obk | Matthias Krüger | -80/+38 |
| 2023-10-10 | coverage: Unbox and simplify `bcb_filtered_successors` | Zalathar | -28/+24 |
| 2023-10-10 | coverage: Replace `ShortCircuitPreorder` with a single function | Zalathar | -55/+17 |
| 2023-10-10 | coverage: Remove enum `CoverageStatement` | Zalathar | -46/+17 |
| 2023-10-10 | coverage: Disconnect span extraction from `CoverageSpansGenerator` | Zalathar | -87/+85 |
| 2023-10-10 | coverage: Move initial MIR span extraction into a submodule | Zalathar | -185/+194 |
| 2023-10-03 | coverage: Remove `next_id` methods from counter/expression IDs | Zalathar | -2/+2 |
| 2023-10-03 | coverage: Remove code for making expression copies of BCB counters | Zalathar | -14/+2 |
| 2023-10-03 | coverage: Store each BCB's code regions in one coverage statement | Zalathar | -21/+28 |
| 2023-10-03 | coverage: Let each coverage statement hold a vector of code regions | Zalathar | -14/+11 |
| 2023-10-03 | coverage: Update comments/logs that referred to `CoverageSpan` | Zalathar | -20/+20 |
| 2023-10-03 | coverage: Encapsulate coverage spans | Zalathar | -54/+63 |
| 2023-09-27 | fix clippy::{redundant_guards, useless_format} | Matthias Krüger | -1/+1 |
| 2023-09-20 | coverage: Remove vestigial counter/expression debug labels | Zalathar | -22/+5 |
| 2023-09-20 | coverage: Remove vestigial `format_counter` methods | Zalathar | -40/+20 |
| 2023-09-20 | coverage: Remove debug code from the instrumentor | Zalathar | -986/+16 |
| 2023-09-18 | coverage: Simplify sorting of coverage spans extracted from MIR | Zalathar | -33/+16 |
| 2023-09-18 | coverage: Fix an unstable-sort inconsistency in coverage spans | Zalathar | -1/+4 |
| 2023-09-16 | coverage: Replace an unnecessary map with a set | Zalathar | -7/+7 |
| 2023-09-16 | coverage: Simplify internal representation of debug types | Zalathar | -135/+131 |
| 2023-09-16 | coverage: Update log module names in debug docs | Zalathar | -2/+2 |
| 2023-09-16 | coverage: Arrange imports in `rustc_mir_transform::coverage::debug` | Zalathar | -9/+8 |
| 2023-09-07 | coverage: In the visitor, track max counter/expression IDs without +1 | Zalathar | -25/+25 |
| 2023-09-07 | coverage: Simplify the `coverageinfo` query to a single pass | Zalathar | -30/+13 |
| 2023-09-07 | coverage: Extract a common iterator over a function's coverage statements | Zalathar | -23/+19 |
| 2023-09-03 | Use relative positions inside a SourceFile. | Camille GILLOT | -19/+14 |
| 2023-08-24 | when terminating during unwinding, show the reason why | Ralf Jung | -2/+2 |
| 2023-08-20 | Auto merge of #114993 - RalfJung:panic-nounwind, r=fee1-dead | bors | -4/+4 |
| 2023-08-20 | give some unwind-related terminators a more clear name | Ralf Jung | -4/+4 |
| 2023-08-20 | coverage: Don't store `function_source_hash` in `BcbCounter::Counter` | Zalathar | -12/+9 |
| 2023-08-20 | coverage: Give the instrumentor its own counter type, separate from MIR | Zalathar | -70/+129 |
| 2023-08-20 | coverage: Move a debug print into `make_code_region` | Zalathar | -8/+11 |
| 2023-08-20 | coverage: Remove a useless `let () =` | Zalathar | -1/+1 |
| 2023-08-19 | use static arrays instead of vectors | Matthias Krüger | -2/+2 |
| 2023-08-13 | Store BCB counters externally, not directly in the BCB graph | Zalathar | -158/+157 |
| 2023-08-13 | Accumulate intermediate expressions into `CoverageCounters` | Zalathar | -95/+63 |
| 2023-08-13 | Rename helper struct `BcbCounters` to `MakeBcbCounters` | Zalathar | -4/+3 |
| 2023-08-01 | Make coverage counter IDs count up from 0, not 1 | Zalathar | -13/+10 |
| 2023-08-01 | Make coverage expression IDs count up from 0, not down from `u32::MAX` | Zalathar | -17/+13 |
| 2023-08-01 | Replace `ExpressionOperandId` with enum `Operand` | Zalathar | -67/+44 |
| 2023-07-30 | inline format!() args up to and including rustc_middle | Matthias Krüger | -1/+1 |
| 2023-07-28 | Replace a lazy `RefCell<Option<T>>` with `OnceCell<T>` | Zalathar | -4/+3 |
| 2023-07-25 | inline format!() args from rustc_codegen_llvm to the end (4) | Matthias Krüger | -15/+12 |
| 2023-06-27 | Auto merge of #113105 - matthiaskrgr:rollup-rci0uym, r=matthiaskrgr | bors | -4/+5 |
| 2023-06-27 | Simplify some conditions | Maybe Waffle | -4/+5 |
| 2023-06-27 | Use `CoverageKind::as_operand_id` instead of manually reimplementing it | Zalathar | -15/+2 |
| 2023-06-18 | Better error for non const `PartialEq` call generated by `match` | Deadbeef | -1/+1 |
| 2023-05-24 | Rollup merge of #111121 - Zalathar:ra-false-positive, r=jackh726 | Matthias Krüger | -2/+2 |
| 2023-05-24 | Auto merge of #111673 - cjgillot:dominator-preprocess, r=cjgillot,tmiasko | bors | -23/+8 |
| 2023-05-17 | Drive-by cleanup: `debug::term_type` => `TerminatorKind::name` | Maybe Waffle | -32/+9 |