index
:
rust
this commit
auto
automation/bors/try
automation/bors/try-merge
beta
cargo_update
lcnr/rustc-dev-guide
master
perf-tmp
stable
try
try-perf
https://github.com/rust-lang/rust
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
compiler
/
rustc_mir_transform
/
src
/
coverage
Age
Commit message (
Expand
)
Author
Lines
2024-07-08
coverage: Extract hole spans from HIR instead of MIR
Zalathar
-41
/
+87
2024-07-08
Auto merge of #113128 - WaffleLapkin:become_trully_unuwuable, r=oli-obk,RalfJung
bors
-4
/
+8
2024-07-07
Support tail calls in mir via `TerminatorKind::TailCall`
Maybe Waffle
-4
/
+8
2024-07-05
coverage: Rename `mir::coverage::BranchInfo` to `CoverageInfoHi`
Zalathar
-10
/
+12
2024-06-30
coverage: Avoid getting extra unexpansion info when we don't need it
Zalathar
-16
/
+21
2024-06-30
coverage: Move span unexpansion into its own submodule
Zalathar
-62
/
+59
2024-06-26
coverage: Apply `#[coverage(..)]` recursively to nested functions
Zalathar
-3
/
+9
2024-06-26
coverage: Detach `#[coverage(..)]` from codegen attribute handling
Zalathar
-1
/
+26
2024-06-21
Save 2 pointers in `TerminatorKind` (96 → 80 bytes)
Scott McMurray
-1
/
+1
2024-06-18
Rollup merge of #126587 - Zalathar:no-mir-spans, r=oli-obk
Guillaume Gomez
-16
/
+25
2024-06-17
Rollup merge of #126567 - compiler-errors:instance-kind, r=oli-obk,lcnr
Matthias Krüger
-1
/
+1
2024-06-17
coverage: Add debugging flag `-Zcoverage-options=no-mir-spans`
Zalathar
-16
/
+25
2024-06-17
Rollup merge of #126538 - Zalathar:graph, r=nnethercote
许杰友 Jieyou Xu (Joe)
-154
/
+46
2024-06-16
Rename InstanceDef -> InstanceKind
Michael Goulet
-1
/
+1
2024-06-16
coverage: Prefer `Iterator::copied`
Zalathar
-1
/
+1
2024-06-16
coverage: Flatten some graph code with let-else
Zalathar
-18
/
+17
2024-06-16
coverage: Reduce/simplify visibility in `coverage::graph`
Zalathar
-24
/
+28
2024-06-16
coverage: Remove some old low-value unit tests for graph traversal
Zalathar
-111
/
+0
2024-06-16
coverage: Split span refinement into two separate steps
Zalathar
-10
/
+12
2024-06-16
coverage: Split out a function for dividing coverage spans into buckets
Zalathar
-34
/
+52
2024-06-16
coverage: Eagerly convert coverage spans to a simpler form
Zalathar
-49
/
+55
2024-06-16
coverage: Move most span processing back into `coverage::spans`
Zalathar
-155
/
+157
2024-06-16
coverage: More consistent variable names for span processing
Zalathar
-25
/
+25
2024-06-12
coverage: Replace the old span refiner with a single function
Zalathar
-203
/
+36
2024-06-04
coverage: Remove hole-carving code from the main span refiner
Zalathar
-80
/
+19
2024-06-04
coverage: Use hole spans to carve up coverage spans into separate buckets
Zalathar
-55
/
+146
2024-06-04
coverage: Build up initial spans by appending to a vector
Zalathar
-18
/
+21
2024-06-04
coverage: Return a nested vector from initial span extraction
Zalathar
-8
/
+11
2024-05-30
coverage: Rename MC/DC `conditions_num` to `num_conditions`
Zalathar
-6
/
+6
2024-05-20
Rollup merge of #125106 - Zalathar:expressions, r=davidtwco
Matthias Krüger
-5
/
+80
2024-05-14
coverage: `CoverageIdsInfo::mcdc_bitmap_bytes` is never needed
Zalathar
-11
/
+1
2024-05-14
coverage: Simplify counter expressions using simple algebra
Zalathar
-0
/
+37
2024-05-14
coverage: Memoize newly-created counter expressions
Zalathar
-3
/
+21
2024-05-14
coverage: Store expression operands as `BcbCounter`
Zalathar
-4
/
+24
2024-05-13
Remove `extern crate rustc_middle` from `rustc_mir_transform`.
Nicholas Nethercote
-0
/
+5
2024-05-06
coverage: Tidy imports in `rustc_mir_transform::coverage`
Zalathar
-7
/
+8
2024-05-06
coverage: Rename `CoverageSpans` to `ExtractedMappings`
Zalathar
-21
/
+27
2024-05-06
coverage: Destructure the mappings struct to make sure we don't miss any
Zalathar
-4
/
+13
2024-05-06
coverage: Don't recompute the number of test vector bitmap bytes
Zalathar
-33
/
+12
2024-05-06
coverage: Make the special case for async functions exit early
Zalathar
-18
/
+21
2024-05-06
coverage: Separately compute the set of BCBs with counter mappings
Zalathar
-46
/
+59
2024-05-04
coverage: Rename `BcbBranchPair` to `mappings::BranchPair`
Zalathar
-7
/
+7
2024-05-04
coverage: Flatten `BcbMappingKind` into `mappings::CodeMapping`
Zalathar
-32
/
+20
2024-05-04
coverage: Extract helper `region_for_span`
Zalathar
-4
/
+5
2024-05-04
coverage: Split out MC/DC branches from `BcbMappingKind`
Zalathar
-80
/
+72
2024-05-04
coverage: Split out MC/DC decisions from `BcbMappingKind`
Zalathar
-51
/
+71
2024-05-01
coverage: Replace `max_decision_depth` with `num_condition_bitmaps`
Zalathar
-3
/
+3
2024-04-30
coverage: Split off `mappings.rs` from `spans.rs` and `from_mir.rs`
Zalathar
-275
/
+283
2024-04-30
coverage: Prepare to split `spans.rs` into two files
Zalathar
-26
/
+30
2024-04-29
mcdc-coverage: Get decision_depth from THIR lowering
Dorian Péron
-0
/
+11
[next]