Skip to content

Commit 7bd7126

Browse files
committed
param_env debugs are instrumental to rustc's success
1 parent a419e11 commit 7bd7126

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

compiler/rustc_infer/src/infer/combine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,14 +221,14 @@ impl<'infcx, 'tcx> InferCtxt<'infcx, 'tcx> {
221221
/// As `3 + 4` contains `N` in its substs, this must not succeed.
222222
///
223223
/// See `src/test/ui/const-generics/occurs-check/` for more examples where this is relevant.
224+
#[instrument(level = "debug", skip(self))]
224225
fn unify_const_variable(
225226
&self,
226227
param_env: ty::ParamEnv<'tcx>,
227228
target_vid: ty::ConstVid<'tcx>,
228229
ct: &'tcx ty::Const<'tcx>,
229230
vid_is_expected: bool,
230231
) -> RelateResult<'tcx, &'tcx ty::Const<'tcx>> {
231-
debug!("unify_const_variable: param_env={:?}", param_env);
232232
let (for_universe, span) = {
233233
let mut inner = self.inner.borrow_mut();
234234
let variable_table = &mut inner.const_unification_table();

compiler/rustc_middle/src/mir/interpret/queries.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ impl<'tcx> TyCtxt<'tcx> {
3131
/// constant `bar::<T>()` requires a substitution for `T`, if the substitution for `T` is still
3232
/// too generic for the constant to be evaluated then `Err(ErrorHandled::TooGeneric)` is
3333
/// returned.
34+
#[instrument(level = "debug", skip(self))]
3435
pub fn const_eval_resolve(
3536
self,
3637
param_env: ty::ParamEnv<'tcx>,
@@ -39,7 +40,6 @@ impl<'tcx> TyCtxt<'tcx> {
3940
promoted: Option<mir::Promoted>,
4041
span: Option<Span>,
4142
) -> EvalToConstValueResult<'tcx> {
42-
debug!("const_eval_resolve: param_env={:?}", param_env);
4343
match ty::Instance::resolve_opt_const_arg(self, param_env, def, substs) {
4444
Ok(Some(instance)) => {
4545
let cid = GlobalId { instance, promoted };

compiler/rustc_middle/src/ty/instance.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -347,13 +347,13 @@ impl<'tcx> Instance<'tcx> {
347347
}
348348

349349
// This should be kept up to date with `resolve`.
350+
#[instrument(level = "debug", skip(tcx))]
350351
pub fn resolve_opt_const_arg(
351352
tcx: TyCtxt<'tcx>,
352353
param_env: ty::ParamEnv<'tcx>,
353354
def: ty::WithOptConstParam<DefId>,
354355
substs: SubstsRef<'tcx>,
355356
) -> Result<Option<Instance<'tcx>>, ErrorReported> {
356-
debug!("resolve_opt_const_arg: param_env={:?},substs={:?}", param_env, substs);
357357
// All regions in the result of this query are erased, so it's
358358
// fine to erase all of the input regions.
359359

compiler/rustc_ty_utils/src/instance.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ use traits::{translate_substs, Reveal};
1010

1111
use tracing::debug;
1212

13+
#[instrument(level = "debug", skip(tcx))]
1314
fn resolve_instance<'tcx>(
1415
tcx: TyCtxt<'tcx>,
1516
key: ty::ParamEnvAnd<'tcx, (DefId, SubstsRef<'tcx>)>,
1617
) -> Result<Option<Instance<'tcx>>, ErrorReported> {
17-
debug!("resolve_instance: key = {:?}", key);
1818
let (param_env, (did, substs)) = key.into_parts();
1919
if let Some(did) = did.as_local() {
2020
if let Some(param_did) = tcx.opt_const_param_of(did) {
@@ -39,13 +39,13 @@ fn resolve_instance_of_const_arg<'tcx>(
3939
)
4040
}
4141

42+
#[instrument(level = "debug", skip(tcx))]
4243
fn inner_resolve_instance<'tcx>(
4344
tcx: TyCtxt<'tcx>,
4445
key: ty::ParamEnvAnd<'tcx, (ty::WithOptConstParam<DefId>, SubstsRef<'tcx>)>,
4546
) -> Result<Option<Instance<'tcx>>, ErrorReported> {
4647
let (param_env, (def, substs)) = key.into_parts();
4748

48-
debug!("inner_resolve_instance: key={:?}", key);
4949
let result = if let Some(trait_def_id) = tcx.trait_of_item(def.did) {
5050
debug!(" => associated item, attempting to find impl in param_env {:#?}", param_env);
5151
let item = tcx.associated_item(def.did);
@@ -94,10 +94,7 @@ fn inner_resolve_instance<'tcx>(
9494
};
9595
Ok(Some(Instance { def, substs }))
9696
};
97-
debug!(
98-
"inner_resolve_instance: resolve(def.did={:?}, substs={:?}) = {:?}",
99-
def.did, substs, result
100-
);
97+
debug!("inner_resolve_instance: result={:?}", result);
10198
result
10299
}
103100

0 commit comments

Comments
 (0)