Skip to content

Commit 8c04e39

Browse files
committed
Auto merge of rust-lang#136809 - workingjubilee:rollup-jk0pew1, r=workingjubilee
Rollup of 12 pull requests Successful merges: - rust-lang#136053 (coverage: Defer part of counter-creation until codegen) - rust-lang#136201 (Removed dependency on the field-offset crate, alternate approach) - rust-lang#136228 (Simplify Rc::as_ptr docs + typo fix) - rust-lang#136353 (fix(libtest): Enable Instant on Emscripten targets) - rust-lang#136472 ([`compiletest`-related cleanups 2/7] Feed stage number to compiletest directly) - rust-lang#136487 (ci: stop mysql before removing it) - rust-lang#136552 (Use an `Option` for `FindNextFileHandle` in `ReadDir` instead of `INVALID_FILE_HANDLE` sentinel value) - rust-lang#136705 (Some miscellaneous edition-related library tweaks) - rust-lang#136707 (Bump `cc` to v1.2.13 for the compiler workspace) - rust-lang#136790 (Git blame ignore recent formatting commit) - rust-lang#136792 (Don't apply editorconfig to llvm) - rust-lang#136805 (ignore win_delete_self test in Miri) r? `@ghost` `@rustbot` modify labels: rollup
2 parents 80c0919 + ffa8a96 commit 8c04e39

File tree

123 files changed

+596
-908
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

123 files changed

+596
-908
lines changed

.editorconfig

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ end_of_line = lf
99
charset = utf-8
1010
trim_trailing_whitespace = true
1111
insert_final_newline = true
12+
13+
[!src/llvm-project]
1214
indent_style = space
1315
indent_size = 4
1416

.git-blame-ignore-revs

+2
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ ec2cc761bc7067712ecc7734502f703fe3b024c8
2929
99cb0c6bc399fb94a0ddde7e9b38e9c00d523bad
3030
# reformat with rustfmt edition 2024
3131
c682aa162b0d41e21cc6748f4fecfe01efb69d1f
32+
# reformat with updated edition 2024
33+
1fcae03369abb4c2cc180cd5a49e1f4440a81300

Cargo.lock

+2-23
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,9 @@ version = "0.1.0"
420420

421421
[[package]]
422422
name = "cc"
423-
version = "1.2.7"
423+
version = "1.2.13"
424424
source = "registry+https://github.com/rust-lang/crates.io-index"
425-
checksum = "a012a0df96dd6d06ba9a1b29d6402d1a5d77c6befd2566afdc26e10603dc93d7"
425+
checksum = "c7777341816418c02e033934a09f20dc0ccaf65a5201ef8a450ae0105a573fda"
426426
dependencies = [
427427
"shlex",
428428
]
@@ -1209,16 +1209,6 @@ dependencies = [
12091209
"tidy",
12101210
]
12111211

1212-
[[package]]
1213-
name = "field-offset"
1214-
version = "0.3.6"
1215-
source = "registry+https://github.com/rust-lang/crates.io-index"
1216-
checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f"
1217-
dependencies = [
1218-
"memoffset",
1219-
"rustc_version",
1220-
]
1221-
12221212
[[package]]
12231213
name = "filetime"
12241214
version = "0.2.25"
@@ -2295,15 +2285,6 @@ dependencies = [
22952285
"libc",
22962286
]
22972287

2298-
[[package]]
2299-
name = "memoffset"
2300-
version = "0.9.1"
2301-
source = "registry+https://github.com/rust-lang/crates.io-index"
2302-
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2303-
dependencies = [
2304-
"autocfg",
2305-
]
2306-
23072288
[[package]]
23082289
name = "mime"
23092290
version = "0.3.17"
@@ -4173,7 +4154,6 @@ version = "0.0.0"
41734154
dependencies = [
41744155
"bitflags",
41754156
"either",
4176-
"field-offset",
41774157
"gsgdt",
41784158
"polonius-engine",
41794159
"rustc-rayon-core",
@@ -4421,7 +4401,6 @@ dependencies = [
44214401
name = "rustc_query_impl"
44224402
version = "0.0.0"
44234403
dependencies = [
4424-
"field-offset",
44254404
"measureme",
44264405
"rustc_data_structures",
44274406
"rustc_errors",

compiler/rustc_codegen_llvm/src/coverageinfo/mapgen/covfun.rs

+24-31
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ use rustc_codegen_ssa::traits::{
1111
BaseTypeCodegenMethods, ConstCodegenMethods, StaticCodegenMethods,
1212
};
1313
use rustc_middle::mir::coverage::{
14-
CovTerm, CoverageIdsInfo, Expression, FunctionCoverageInfo, Mapping, MappingKind, Op,
14+
BasicCoverageBlock, CovTerm, CoverageIdsInfo, Expression, FunctionCoverageInfo, Mapping,
15+
MappingKind, Op,
1516
};
1617
use rustc_middle::ty::{Instance, TyCtxt};
1718
use rustc_span::Span;
@@ -53,7 +54,7 @@ pub(crate) fn prepare_covfun_record<'tcx>(
5354
let fn_cov_info = tcx.instance_mir(instance.def).function_coverage_info.as_deref()?;
5455
let ids_info = tcx.coverage_ids_info(instance.def)?;
5556

56-
let expressions = prepare_expressions(fn_cov_info, ids_info, is_used);
57+
let expressions = prepare_expressions(ids_info);
5758

5859
let mut covfun = CovfunRecord {
5960
mangled_function_name: tcx.symbol_name(instance).name,
@@ -75,26 +76,14 @@ pub(crate) fn prepare_covfun_record<'tcx>(
7576
}
7677

7778
/// Convert the function's coverage-counter expressions into a form suitable for FFI.
78-
fn prepare_expressions(
79-
fn_cov_info: &FunctionCoverageInfo,
80-
ids_info: &CoverageIdsInfo,
81-
is_used: bool,
82-
) -> Vec<ffi::CounterExpression> {
83-
// If any counters or expressions were removed by MIR opts, replace their
84-
// terms with zero.
85-
let counter_for_term = |term| {
86-
if !is_used || ids_info.is_zero_term(term) {
87-
ffi::Counter::ZERO
88-
} else {
89-
ffi::Counter::from_term(term)
90-
}
91-
};
79+
fn prepare_expressions(ids_info: &CoverageIdsInfo) -> Vec<ffi::CounterExpression> {
80+
let counter_for_term = ffi::Counter::from_term;
9281

9382
// We know that LLVM will optimize out any unused expressions before
9483
// producing the final coverage map, so there's no need to do the same
9584
// thing on the Rust side unless we're confident we can do much better.
9685
// (See `CounterExpressionsMinimizer` in `CoverageMappingWriter.cpp`.)
97-
fn_cov_info
86+
ids_info
9887
.expressions
9988
.iter()
10089
.map(move |&Expression { lhs, op, rhs }| ffi::CounterExpression {
@@ -136,11 +125,16 @@ fn fill_region_tables<'tcx>(
136125

137126
// For each counter/region pair in this function+file, convert it to a
138127
// form suitable for FFI.
139-
let is_zero_term = |term| !covfun.is_used || ids_info.is_zero_term(term);
140128
for &Mapping { ref kind, span } in &fn_cov_info.mappings {
141-
// If the mapping refers to counters/expressions that were removed by
142-
// MIR opts, replace those occurrences with zero.
143-
let kind = kind.map_terms(|term| if is_zero_term(term) { CovTerm::Zero } else { term });
129+
// If this function is unused, replace all counters with zero.
130+
let counter_for_bcb = |bcb: BasicCoverageBlock| -> ffi::Counter {
131+
let term = if covfun.is_used {
132+
ids_info.term_for_bcb[bcb].expect("every BCB in a mapping was given a term")
133+
} else {
134+
CovTerm::Zero
135+
};
136+
ffi::Counter::from_term(term)
137+
};
144138

145139
// Convert the `Span` into coordinates that we can pass to LLVM, or
146140
// discard the span if conversion fails. In rare, cases _all_ of a
@@ -154,23 +148,22 @@ fn fill_region_tables<'tcx>(
154148
continue;
155149
}
156150

157-
match kind {
158-
MappingKind::Code(term) => {
159-
code_regions
160-
.push(ffi::CodeRegion { cov_span, counter: ffi::Counter::from_term(term) });
151+
match *kind {
152+
MappingKind::Code { bcb } => {
153+
code_regions.push(ffi::CodeRegion { cov_span, counter: counter_for_bcb(bcb) });
161154
}
162-
MappingKind::Branch { true_term, false_term } => {
155+
MappingKind::Branch { true_bcb, false_bcb } => {
163156
branch_regions.push(ffi::BranchRegion {
164157
cov_span,
165-
true_counter: ffi::Counter::from_term(true_term),
166-
false_counter: ffi::Counter::from_term(false_term),
158+
true_counter: counter_for_bcb(true_bcb),
159+
false_counter: counter_for_bcb(false_bcb),
167160
});
168161
}
169-
MappingKind::MCDCBranch { true_term, false_term, mcdc_params } => {
162+
MappingKind::MCDCBranch { true_bcb, false_bcb, mcdc_params } => {
170163
mcdc_branch_regions.push(ffi::MCDCBranchRegion {
171164
cov_span,
172-
true_counter: ffi::Counter::from_term(true_term),
173-
false_counter: ffi::Counter::from_term(false_term),
165+
true_counter: counter_for_bcb(true_bcb),
166+
false_counter: counter_for_bcb(false_bcb),
174167
mcdc_branch_params: ffi::mcdc::BranchParameters::from(mcdc_params),
175168
});
176169
}

compiler/rustc_codegen_llvm/src/coverageinfo/mod.rs

+6-17
Original file line numberDiff line numberDiff line change
@@ -160,32 +160,21 @@ impl<'tcx> CoverageInfoBuilderMethods<'tcx> for Builder<'_, '_, 'tcx> {
160160
CoverageKind::SpanMarker | CoverageKind::BlockMarker { .. } => unreachable!(
161161
"marker statement {kind:?} should have been removed by CleanupPostBorrowck"
162162
),
163-
CoverageKind::CounterIncrement { id } => {
164-
// The number of counters passed to `llvm.instrprof.increment` might
165-
// be smaller than the number originally inserted by the instrumentor,
166-
// if some high-numbered counters were removed by MIR optimizations.
167-
// If so, LLVM's profiler runtime will use fewer physical counters.
168-
let num_counters = ids_info.num_counters_after_mir_opts();
169-
assert!(
170-
num_counters as usize <= function_coverage_info.num_counters,
171-
"num_counters disagreement: query says {num_counters} but function info only has {}",
172-
function_coverage_info.num_counters
173-
);
174-
163+
CoverageKind::VirtualCounter { bcb }
164+
if let Some(&id) = ids_info.phys_counter_for_node.get(&bcb) =>
165+
{
175166
let fn_name = bx.get_pgo_func_name_var(instance);
176167
let hash = bx.const_u64(function_coverage_info.function_source_hash);
177-
let num_counters = bx.const_u32(num_counters);
168+
let num_counters = bx.const_u32(ids_info.num_counters);
178169
let index = bx.const_u32(id.as_u32());
179170
debug!(
180171
"codegen intrinsic instrprof.increment(fn_name={:?}, hash={:?}, num_counters={:?}, index={:?})",
181172
fn_name, hash, num_counters, index,
182173
);
183174
bx.instrprof_increment(fn_name, hash, num_counters, index);
184175
}
185-
CoverageKind::ExpressionUsed { id: _ } => {
186-
// Expression-used statements are markers that are handled by
187-
// `coverage_ids_info`, so there's nothing to codegen here.
188-
}
176+
// If a BCB doesn't have an associated physical counter, there's nothing to codegen.
177+
CoverageKind::VirtualCounter { .. } => {}
189178
CoverageKind::CondBitmapUpdate { index, decision_depth } => {
190179
let cond_bitmap = coverage_cx
191180
.try_get_mcdc_condition_bitmap(&instance, decision_depth)

compiler/rustc_codegen_llvm/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#![feature(extern_types)]
1414
#![feature(file_buffered)]
1515
#![feature(hash_raw_entry)]
16+
#![feature(if_let_guard)]
1617
#![feature(impl_trait_in_assoc_type)]
1718
#![feature(iter_intersperse)]
1819
#![feature(let_chains)]

compiler/rustc_codegen_ssa/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ bitflags = "2.4.1"
1111
bstr = "1.11.3"
1212
# Pinned so `cargo update` bumps don't cause breakage. Please also update the
1313
# `cc` in `rustc_llvm` if you update the `cc` here.
14-
cc = "=1.2.7"
14+
cc = "=1.2.13"
1515
either = "1.5.0"
1616
itertools = "0.12"
1717
pathdiff = "0.2.0"

compiler/rustc_llvm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ libc = "0.2.73"
1212
# tidy-alphabetical-start
1313
# Pinned so `cargo update` bumps don't cause breakage. Please also update the
1414
# pinned `cc` in `rustc_codegen_ssa` if you update `cc` here.
15-
cc = "=1.2.7"
15+
cc = "=1.2.13"
1616
# tidy-alphabetical-end

compiler/rustc_middle/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ edition = "2021"
77
# tidy-alphabetical-start
88
bitflags = "2.4.1"
99
either = "1.5.0"
10-
field-offset = "0.3.5"
1110
gsgdt = "0.1.2"
1211
polonius-engine = "0.13.0"
1312
rustc-rayon-core = { version = "0.5.0" }

0 commit comments

Comments
 (0)