@@ -441,7 +441,7 @@ where
441
441
442
442
/// Take an operand, representing a pointer, and dereference it to a place.
443
443
/// Corresponds to the `*` operator in Rust.
444
- #[ instrument( skip( self ) , level = "debug " ) ]
444
+ #[ instrument( skip( self ) , level = "trace " ) ]
445
445
pub fn deref_pointer (
446
446
& self ,
447
447
src : & impl Readable < ' tcx , M :: Provenance > ,
@@ -533,7 +533,7 @@ where
533
533
534
534
/// Computes a place. You should only use this if you intend to write into this
535
535
/// place; for reading, a more efficient alternative is `eval_place_to_op`.
536
- #[ instrument( skip( self ) , level = "debug " ) ]
536
+ #[ instrument( skip( self ) , level = "trace " ) ]
537
537
pub fn eval_place (
538
538
& self ,
539
539
mir_place : mir:: Place < ' tcx > ,
@@ -570,7 +570,7 @@ where
570
570
571
571
/// Write an immediate to a place
572
572
#[ inline( always) ]
573
- #[ instrument( skip( self ) , level = "debug " ) ]
573
+ #[ instrument( skip( self ) , level = "trace " ) ]
574
574
pub fn write_immediate (
575
575
& mut self ,
576
576
src : Immediate < M :: Provenance > ,
@@ -808,7 +808,7 @@ where
808
808
/// Copies the data from an operand to a place.
809
809
/// `allow_transmute` indicates whether the layouts may disagree.
810
810
#[ inline( always) ]
811
- #[ instrument( skip( self ) , level = "debug " ) ]
811
+ #[ instrument( skip( self ) , level = "trace " ) ]
812
812
fn copy_op_inner (
813
813
& mut self ,
814
814
src : & impl Readable < ' tcx , M :: Provenance > ,
@@ -837,7 +837,7 @@ where
837
837
/// `allow_transmute` indicates whether the layouts may disagree.
838
838
/// Also, if you use this you are responsible for validating that things get copied at the
839
839
/// right type.
840
- #[ instrument( skip( self ) , level = "debug " ) ]
840
+ #[ instrument( skip( self ) , level = "trace " ) ]
841
841
fn copy_op_no_validate (
842
842
& mut self ,
843
843
src : & impl Readable < ' tcx , M :: Provenance > ,
@@ -914,7 +914,7 @@ where
914
914
/// If the place currently refers to a local that doesn't yet have a matching allocation,
915
915
/// create such an allocation.
916
916
/// This is essentially `force_to_memplace`.
917
- #[ instrument( skip( self ) , level = "debug " ) ]
917
+ #[ instrument( skip( self ) , level = "trace " ) ]
918
918
pub fn force_allocation (
919
919
& mut self ,
920
920
place : & PlaceTy < ' tcx , M :: Provenance > ,
0 commit comments