Skip to content

Commit 5dac6b3

Browse files
committedJul 5, 2023
Auto merge of #113370 - compiler-errors:rollup-8gvyy8e, r=compiler-errors
Rollup of 8 pull requests Successful merges: - #113010 (rust-installer & rls: remove exclusion from rustfmt & tidy ) - #113317 ( -Ztrait-solver=next: stop depending on old solver) - #113319 (`TypeParameterDefinition` always require a `DefId`) - #113320 (Add some extra information to opaque type cycle errors) - #113321 (Move `ty::ConstKind` to `rustc_type_ir`) - #113337 (Winnow specialized impls during selection in new solver) - #113355 (Move most coverage code out of `rustc_codegen_ssa`) - #113356 (Add support for NetBSD/riscv64 aka. riscv64gc-unknown-netbsd.) r? `@ghost` `@rustbot` modify labels: rollup
2 parents e4cd161 + 560136f commit 5dac6b3

File tree

84 files changed

+2035
-1459
lines changed

Some content is hidden

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

84 files changed

+2035
-1459
lines changed
 

‎compiler/rustc_codegen_cranelift/src/base.rs

-1
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,6 @@ fn codegen_stmt<'tcx>(
706706
let times = fx
707707
.monomorphize(times)
708708
.eval(fx.tcx, ParamEnv::reveal_all())
709-
.kind()
710709
.try_to_bits(fx.tcx.data_layout.pointer_size)
711710
.unwrap();
712711
if operand.layout().size.bytes() == 0 {
Original file line numberDiff line numberDiff line change
@@ -1,69 +1,11 @@
1-
use gccjit::RValue;
2-
use rustc_codegen_ssa::traits::{CoverageInfoBuilderMethods, CoverageInfoMethods};
3-
use rustc_hir::def_id::DefId;
4-
use rustc_middle::mir::coverage::{
5-
CodeRegion,
6-
CounterValueReference,
7-
ExpressionOperandId,
8-
InjectedExpressionId,
9-
Op,
10-
};
1+
use rustc_codegen_ssa::traits::CoverageInfoBuilderMethods;
2+
use rustc_middle::mir::Coverage;
113
use rustc_middle::ty::Instance;
124

135
use crate::builder::Builder;
14-
use crate::context::CodegenCx;
156

167
impl<'a, 'gcc, 'tcx> CoverageInfoBuilderMethods<'tcx> for Builder<'a, 'gcc, 'tcx> {
17-
fn set_function_source_hash(
18-
&mut self,
19-
_instance: Instance<'tcx>,
20-
_function_source_hash: u64,
21-
) -> bool {
22-
unimplemented!();
23-
}
24-
25-
fn add_coverage_counter(&mut self, _instance: Instance<'tcx>, _id: CounterValueReference, _region: CodeRegion) -> bool {
26-
// TODO(antoyo)
27-
false
28-
}
29-
30-
fn add_coverage_counter_expression(&mut self, _instance: Instance<'tcx>, _id: InjectedExpressionId, _lhs: ExpressionOperandId, _op: Op, _rhs: ExpressionOperandId, _region: Option<CodeRegion>) -> bool {
31-
// TODO(antoyo)
32-
false
33-
}
34-
35-
fn add_coverage_unreachable(&mut self, _instance: Instance<'tcx>, _region: CodeRegion) -> bool {
8+
fn add_coverage(&mut self, _instance: Instance<'tcx>, _coverage: &Coverage) {
369
// TODO(antoyo)
37-
false
38-
}
39-
}
40-
41-
impl<'gcc, 'tcx> CoverageInfoMethods<'tcx> for CodegenCx<'gcc, 'tcx> {
42-
fn coverageinfo_finalize(&self) {
43-
// TODO(antoyo)
44-
}
45-
46-
fn get_pgo_func_name_var(&self, _instance: Instance<'tcx>) -> RValue<'gcc> {
47-
unimplemented!();
48-
}
49-
50-
/// Functions with MIR-based coverage are normally codegenned _only_ if
51-
/// called. LLVM coverage tools typically expect every function to be
52-
/// defined (even if unused), with at least one call to LLVM intrinsic
53-
/// `instrprof.increment`.
54-
///
55-
/// Codegen a small function that will never be called, with one counter
56-
/// that will never be incremented.
57-
///
58-
/// For used/called functions, the coverageinfo was already added to the
59-
/// `function_coverage_map` (keyed by function `Instance`) during codegen.
60-
/// But in this case, since the unused function was _not_ previously
61-
/// codegenned, collect the coverage `CodeRegion`s from the MIR and add
62-
/// them. The first `CodeRegion` is used to add a single counter, with the
63-
/// same counter ID used in the injected `instrprof.increment` intrinsic
64-
/// call. Since the function is never called, all other `CodeRegion`s can be
65-
/// added as `unreachable_region`s.
66-
fn define_unused_fn(&self, _def_id: DefId) {
67-
unimplemented!();
6810
}
6911
}

0 commit comments

Comments
 (0)