blob: 0b513dac5037830e2d42b9b30ebd3c21b3d4345c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
 | use rustc_middle::mir::coverage::CoverageKind;
use rustc_middle::ty::Instance;
pub trait CoverageInfoBuilderMethods<'tcx> {
    /// Performs any start-of-function codegen needed for coverage instrumentation.
    ///
    /// Can be a no-op in backends that don't support coverage instrumentation.
    fn init_coverage(&mut self, _instance: Instance<'tcx>) {}
    /// Handle the MIR coverage info in a backend-specific way.
    ///
    /// This can potentially be a no-op in backends that don't support
    /// coverage instrumentation.
    fn add_coverage(&mut self, instance: Instance<'tcx>, kind: &CoverageKind);
}
 |