@@ -7,8 +7,8 @@ use rustc_middle::bug;
7
7
use rustc_middle:: mir:: * ;
8
8
use rustc_middle:: ty:: layout:: ValidityRequirement ;
9
9
use rustc_middle:: ty:: { self , GenericArgsRef , Ty , TyCtxt , layout} ;
10
- use rustc_span:: sym;
11
10
use rustc_span:: symbol:: Symbol ;
11
+ use rustc_span:: { DUMMY_SP , sym} ;
12
12
13
13
use crate :: simplify:: simplify_duplicate_switch_targets;
14
14
use crate :: take_array;
@@ -43,12 +43,12 @@ impl<'tcx> crate::MirPass<'tcx> for InstSimplify {
43
43
match statement. kind {
44
44
StatementKind :: Assign ( box ( _place, ref mut rvalue) ) => {
45
45
if !preserve_ub_checks {
46
- ctx. simplify_ub_check ( & statement . source_info , rvalue) ;
46
+ ctx. simplify_ub_check ( rvalue) ;
47
47
}
48
- ctx. simplify_bool_cmp ( & statement . source_info , rvalue) ;
49
- ctx. simplify_ref_deref ( & statement . source_info , rvalue) ;
50
- ctx. simplify_len ( & statement . source_info , rvalue) ;
51
- ctx. simplify_ptr_aggregate ( & statement . source_info , rvalue) ;
48
+ ctx. simplify_bool_cmp ( rvalue) ;
49
+ ctx. simplify_ref_deref ( rvalue) ;
50
+ ctx. simplify_len ( rvalue) ;
51
+ ctx. simplify_ptr_aggregate ( rvalue) ;
52
52
ctx. simplify_cast ( rvalue) ;
53
53
}
54
54
_ => { }
@@ -70,23 +70,8 @@ struct InstSimplifyContext<'a, 'tcx> {
70
70
}
71
71
72
72
impl < ' tcx > InstSimplifyContext < ' _ , ' tcx > {
73
- fn should_simplify ( & self , source_info : & SourceInfo , rvalue : & Rvalue < ' tcx > ) -> bool {
74
- self . should_simplify_custom ( source_info, "Rvalue" , rvalue)
75
- }
76
-
77
- fn should_simplify_custom (
78
- & self ,
79
- source_info : & SourceInfo ,
80
- label : & str ,
81
- value : impl std:: fmt:: Debug ,
82
- ) -> bool {
83
- self . tcx . consider_optimizing ( || {
84
- format ! ( "InstSimplify - {label}: {value:?} SourceInfo: {source_info:?}" )
85
- } )
86
- }
87
-
88
73
/// Transform boolean comparisons into logical operations.
89
- fn simplify_bool_cmp ( & self , source_info : & SourceInfo , rvalue : & mut Rvalue < ' tcx > ) {
74
+ fn simplify_bool_cmp ( & self , rvalue : & mut Rvalue < ' tcx > ) {
90
75
match rvalue {
91
76
Rvalue :: BinaryOp ( op @ ( BinOp :: Eq | BinOp :: Ne ) , box ( a, b) ) => {
92
77
let new = match ( op, self . try_eval_bool ( a) , self . try_eval_bool ( b) ) {
@@ -117,9 +102,7 @@ impl<'tcx> InstSimplifyContext<'_, 'tcx> {
117
102
_ => None ,
118
103
} ;
119
104
120
- if let Some ( new) = new
121
- && self . should_simplify ( source_info, rvalue)
122
- {
105
+ if let Some ( new) = new {
123
106
* rvalue = new;
124
107
}
125
108
}
@@ -134,17 +117,13 @@ impl<'tcx> InstSimplifyContext<'_, 'tcx> {
134
117
}
135
118
136
119
/// Transform `&(*a)` ==> `a`.
137
- fn simplify_ref_deref ( & self , source_info : & SourceInfo , rvalue : & mut Rvalue < ' tcx > ) {
120
+ fn simplify_ref_deref ( & self , rvalue : & mut Rvalue < ' tcx > ) {
138
121
if let Rvalue :: Ref ( _, _, place) | Rvalue :: RawPtr ( _, place) = rvalue {
139
122
if let Some ( ( base, ProjectionElem :: Deref ) ) = place. as_ref ( ) . last_projection ( ) {
140
123
if rvalue. ty ( self . local_decls , self . tcx ) != base. ty ( self . local_decls , self . tcx ) . ty {
141
124
return ;
142
125
}
143
126
144
- if !self . should_simplify ( source_info, rvalue) {
145
- return ;
146
- }
147
-
148
127
* rvalue = Rvalue :: Use ( Operand :: Copy ( Place {
149
128
local : base. local ,
150
129
projection : self . tcx . mk_place_elems ( base. projection ) ,
@@ -154,36 +133,24 @@ impl<'tcx> InstSimplifyContext<'_, 'tcx> {
154
133
}
155
134
156
135
/// Transform `Len([_; N])` ==> `N`.
157
- fn simplify_len ( & self , source_info : & SourceInfo , rvalue : & mut Rvalue < ' tcx > ) {
136
+ fn simplify_len ( & self , rvalue : & mut Rvalue < ' tcx > ) {
158
137
if let Rvalue :: Len ( ref place) = * rvalue {
159
138
let place_ty = place. ty ( self . local_decls , self . tcx ) . ty ;
160
139
if let ty:: Array ( _, len) = * place_ty. kind ( ) {
161
- if !self . should_simplify ( source_info, rvalue) {
162
- return ;
163
- }
164
-
165
140
let const_ = Const :: from_ty_const ( len, self . tcx . types . usize , self . tcx ) ;
166
- let constant = ConstOperand { span : source_info . span , const_, user_ty : None } ;
141
+ let constant = ConstOperand { span : DUMMY_SP , const_, user_ty : None } ;
167
142
* rvalue = Rvalue :: Use ( Operand :: Constant ( Box :: new ( constant) ) ) ;
168
143
}
169
144
}
170
145
}
171
146
172
147
/// Transform `Aggregate(RawPtr, [p, ()])` ==> `Cast(PtrToPtr, p)`.
173
- fn simplify_ptr_aggregate ( & self , source_info : & SourceInfo , rvalue : & mut Rvalue < ' tcx > ) {
148
+ fn simplify_ptr_aggregate ( & self , rvalue : & mut Rvalue < ' tcx > ) {
174
149
if let Rvalue :: Aggregate ( box AggregateKind :: RawPtr ( pointee_ty, mutability) , fields) = rvalue
175
150
{
176
151
let meta_ty = fields. raw [ 1 ] . ty ( self . local_decls , self . tcx ) ;
177
152
if meta_ty. is_unit ( ) {
178
153
// The mutable borrows we're holding prevent printing `rvalue` here
179
- if !self . should_simplify_custom (
180
- source_info,
181
- "Aggregate::RawPtr" ,
182
- ( & pointee_ty, * mutability, & fields) ,
183
- ) {
184
- return ;
185
- }
186
-
187
154
let mut fields = std:: mem:: take ( fields) ;
188
155
let _meta = fields. pop ( ) . unwrap ( ) ;
189
156
let data = fields. pop ( ) . unwrap ( ) ;
@@ -193,10 +160,10 @@ impl<'tcx> InstSimplifyContext<'_, 'tcx> {
193
160
}
194
161
}
195
162
196
- fn simplify_ub_check ( & self , source_info : & SourceInfo , rvalue : & mut Rvalue < ' tcx > ) {
163
+ fn simplify_ub_check ( & self , rvalue : & mut Rvalue < ' tcx > ) {
197
164
if let Rvalue :: NullaryOp ( NullOp :: UbChecks , _) = * rvalue {
198
165
let const_ = Const :: from_bool ( self . tcx , self . tcx . sess . ub_checks ( ) ) ;
199
- let constant = ConstOperand { span : source_info . span , const_, user_ty : None } ;
166
+ let constant = ConstOperand { span : DUMMY_SP , const_, user_ty : None } ;
200
167
* rvalue = Rvalue :: Use ( Operand :: Constant ( Box :: new ( constant) ) ) ;
201
168
}
202
169
}
@@ -284,16 +251,6 @@ impl<'tcx> InstSimplifyContext<'_, 'tcx> {
284
251
return ;
285
252
}
286
253
287
- if !self . tcx . consider_optimizing ( || {
288
- format ! (
289
- "InstSimplify - Call: {:?} SourceInfo: {:?}" ,
290
- ( fn_def_id, fn_args) ,
291
- terminator. source_info
292
- )
293
- } ) {
294
- return ;
295
- }
296
-
297
254
let Ok ( [ arg] ) = take_array ( args) else { return } ;
298
255
let Some ( arg_place) = arg. node . place ( ) else { return } ;
299
256
0 commit comments