@@ -17,7 +17,6 @@ use rustc::ty::subst::{Kind, Subst, UserSubsts, UserSelfTy};
17
17
use rustc:: ty:: {
18
18
FnSig , Lift , ParamEnv , ParamEnvAnd , PolyFnSig , Predicate , Ty , TyCtxt , TypeFoldable , Variance ,
19
19
} ;
20
- use rustc_data_structures:: sync:: Lrc ;
21
20
use std:: fmt;
22
21
use syntax_pos:: DUMMY_SP ;
23
22
@@ -38,7 +37,7 @@ crate fn provide(p: &mut Providers<'_>) {
38
37
fn type_op_ascribe_user_type < ' tcx > (
39
38
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
40
39
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , AscribeUserType < ' tcx > > > ,
41
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > > , NoSolution > {
40
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > , NoSolution > {
42
41
tcx. infer_ctxt ( )
43
42
. enter_canonical_trait_query ( & canonicalized, |infcx, fulfill_cx, key| {
44
43
let (
@@ -170,7 +169,7 @@ impl AscribeUserTypeCx<'me, 'gcx, 'tcx> {
170
169
fn type_op_eq < ' tcx > (
171
170
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
172
171
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , Eq < ' tcx > > > ,
173
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > > , NoSolution > {
172
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > , NoSolution > {
174
173
tcx. infer_ctxt ( )
175
174
. enter_canonical_trait_query ( & canonicalized, |infcx, fulfill_cx, key| {
176
175
let ( param_env, Eq { a, b } ) = key. into_parts ( ) ;
@@ -200,39 +199,39 @@ where
200
199
fn type_op_normalize_ty (
201
200
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
202
201
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , Normalize < Ty < ' tcx > > > > ,
203
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , Ty < ' tcx > > > > , NoSolution > {
202
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , Ty < ' tcx > > > , NoSolution > {
204
203
tcx. infer_ctxt ( )
205
204
. enter_canonical_trait_query ( & canonicalized, type_op_normalize)
206
205
}
207
206
208
207
fn type_op_normalize_predicate (
209
208
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
210
209
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , Normalize < Predicate < ' tcx > > > > ,
211
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , Predicate < ' tcx > > > > , NoSolution > {
210
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , Predicate < ' tcx > > > , NoSolution > {
212
211
tcx. infer_ctxt ( )
213
212
. enter_canonical_trait_query ( & canonicalized, type_op_normalize)
214
213
}
215
214
216
215
fn type_op_normalize_fn_sig (
217
216
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
218
217
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , Normalize < FnSig < ' tcx > > > > ,
219
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , FnSig < ' tcx > > > > , NoSolution > {
218
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , FnSig < ' tcx > > > , NoSolution > {
220
219
tcx. infer_ctxt ( )
221
220
. enter_canonical_trait_query ( & canonicalized, type_op_normalize)
222
221
}
223
222
224
223
fn type_op_normalize_poly_fn_sig (
225
224
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
226
225
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , Normalize < PolyFnSig < ' tcx > > > > ,
227
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , PolyFnSig < ' tcx > > > > , NoSolution > {
226
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , PolyFnSig < ' tcx > > > , NoSolution > {
228
227
tcx. infer_ctxt ( )
229
228
. enter_canonical_trait_query ( & canonicalized, type_op_normalize)
230
229
}
231
230
232
231
fn type_op_subtype < ' tcx > (
233
232
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
234
233
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , Subtype < ' tcx > > > ,
235
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > > , NoSolution > {
234
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > , NoSolution > {
236
235
tcx. infer_ctxt ( )
237
236
. enter_canonical_trait_query ( & canonicalized, |infcx, fulfill_cx, key| {
238
237
let ( param_env, Subtype { sub, sup } ) = key. into_parts ( ) ;
@@ -246,7 +245,7 @@ fn type_op_subtype<'tcx>(
246
245
fn type_op_prove_predicate < ' tcx > (
247
246
tcx : TyCtxt < ' _ , ' tcx , ' tcx > ,
248
247
canonicalized : Canonical < ' tcx , ParamEnvAnd < ' tcx , ProvePredicate < ' tcx > > > ,
249
- ) -> Result < Lrc < Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > > , NoSolution > {
248
+ ) -> Result < & ' tcx Canonical < ' tcx , QueryResponse < ' tcx , ( ) > > , NoSolution > {
250
249
tcx. infer_ctxt ( )
251
250
. enter_canonical_trait_query ( & canonicalized, |infcx, fulfill_cx, key| {
252
251
let ( param_env, ProvePredicate { predicate } ) = key. into_parts ( ) ;
0 commit comments