@@ -22,13 +22,7 @@ use rustc_span::{BytePos, Pos, Span, Symbol};
22
22
use rustc_trait_selection:: traits:: SelectionContext ;
23
23
24
24
use super :: ConstCx ;
25
- use crate :: errors:: {
26
- InteriorMutabilityBorrow , InteriorMutableDataRefer , MutDerefErr , NonConstFmtMacroCall ,
27
- NonConstFnCall , NonConstOpErr , PanicNonStrErr , RawPtrToIntErr , StaticAccessErr ,
28
- TransientMutBorrowErr , TransientMutBorrowErrRaw , UnallowedFnPointerCall ,
29
- UnallowedHeapAllocations , UnallowedInlineAsm , UnallowedMutableRefs , UnallowedMutableRefsRaw ,
30
- UnallowedOpInConstContext , UnstableConstFn ,
31
- } ;
25
+ use crate :: errors;
32
26
use crate :: util:: { call_kind, CallDesugaringKind , CallKind } ;
33
27
34
28
#[ derive( Clone , Copy , Debug , PartialEq , Eq ) ]
@@ -99,7 +93,7 @@ impl<'tcx> NonConstOp<'tcx> for FnCallIndirect {
99
93
ccx : & ConstCx < ' _ , ' tcx > ,
100
94
span : Span ,
101
95
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
102
- ccx. tcx . sess . create_err ( UnallowedFnPointerCall { span, kind : ccx. const_kind ( ) } )
96
+ ccx. tcx . sess . create_err ( errors :: UnallowedFnPointerCall { span, kind : ccx. const_kind ( ) } )
103
97
}
104
98
}
105
99
@@ -303,10 +297,11 @@ impl<'tcx> NonConstOp<'tcx> for FnCallNonConst<'tcx> {
303
297
diag_trait ( & mut err, self_ty, tcx. require_lang_item ( LangItem :: Deref , Some ( span) ) ) ;
304
298
err
305
299
}
306
- _ if tcx. opt_parent ( callee) == tcx. get_diagnostic_item ( sym:: ArgumentV1Methods ) => {
307
- ccx. tcx . sess . create_err ( NonConstFmtMacroCall { span, kind : ccx. const_kind ( ) } )
308
- }
309
- _ => ccx. tcx . sess . create_err ( NonConstFnCall {
300
+ _ if tcx. opt_parent ( callee) == tcx. get_diagnostic_item ( sym:: ArgumentV1Methods ) => ccx
301
+ . tcx
302
+ . sess
303
+ . create_err ( errors:: NonConstFmtMacroCall { span, kind : ccx. const_kind ( ) } ) ,
304
+ _ => ccx. tcx . sess . create_err ( errors:: NonConstFnCall {
310
305
span,
311
306
def_path_str : ccx. tcx . def_path_str_with_substs ( callee, substs) ,
312
307
kind : ccx. const_kind ( ) ,
@@ -351,7 +346,7 @@ impl<'tcx> NonConstOp<'tcx> for FnCallUnstable {
351
346
let mut err = ccx
352
347
. tcx
353
348
. sess
354
- . create_err ( UnstableConstFn { span, def_path : ccx. tcx . def_path_str ( def_id) } ) ;
349
+ . create_err ( errors :: UnstableConstFn { span, def_path : ccx. tcx . def_path_str ( def_id) } ) ;
355
350
356
351
if ccx. is_const_stable_const_fn ( ) {
357
352
err. help ( "const-stable functions can only call other const-stable functions" ) ;
@@ -387,11 +382,11 @@ impl<'tcx> NonConstOp<'tcx> for Generator {
387
382
let msg = format ! ( "{}s are not allowed in {}s" , self . 0 . descr( ) , ccx. const_kind( ) ) ;
388
383
if let hir:: GeneratorKind :: Async ( hir:: AsyncGeneratorKind :: Block ) = self . 0 {
389
384
ccx. tcx . sess . create_feature_err (
390
- UnallowedOpInConstContext { span, msg } ,
385
+ errors :: UnallowedOpInConstContext { span, msg } ,
391
386
sym:: const_async_blocks,
392
387
)
393
388
} else {
394
- ccx. tcx . sess . create_err ( UnallowedOpInConstContext { span, msg } )
389
+ ccx. tcx . sess . create_err ( errors :: UnallowedOpInConstContext { span, msg } )
395
390
}
396
391
}
397
392
}
@@ -404,7 +399,7 @@ impl<'tcx> NonConstOp<'tcx> for HeapAllocation {
404
399
ccx : & ConstCx < ' _ , ' tcx > ,
405
400
span : Span ,
406
401
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
407
- ccx. tcx . sess . create_err ( UnallowedHeapAllocations {
402
+ ccx. tcx . sess . create_err ( errors :: UnallowedHeapAllocations {
408
403
span,
409
404
kind : ccx. const_kind ( ) ,
410
405
teach : ccx. tcx . sess . teach ( & error_code ! ( E0010 ) ) . then_some ( ( ) ) ,
@@ -420,7 +415,7 @@ impl<'tcx> NonConstOp<'tcx> for InlineAsm {
420
415
ccx : & ConstCx < ' _ , ' tcx > ,
421
416
span : Span ,
422
417
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
423
- ccx. tcx . sess . create_err ( UnallowedInlineAsm { span, kind : ccx. const_kind ( ) } )
418
+ ccx. tcx . sess . create_err ( errors :: UnallowedInlineAsm { span, kind : ccx. const_kind ( ) } )
424
419
}
425
420
}
426
421
@@ -471,7 +466,9 @@ impl<'tcx> NonConstOp<'tcx> for TransientCellBorrow {
471
466
ccx : & ConstCx < ' _ , ' tcx > ,
472
467
span : Span ,
473
468
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
474
- ccx. tcx . sess . create_feature_err ( InteriorMutabilityBorrow { span } , sym:: const_refs_to_cell)
469
+ ccx. tcx
470
+ . sess
471
+ . create_feature_err ( errors:: InteriorMutabilityBorrow { span } , sym:: const_refs_to_cell)
475
472
}
476
473
}
477
474
@@ -488,14 +485,14 @@ impl<'tcx> NonConstOp<'tcx> for CellBorrow {
488
485
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
489
486
// FIXME: Maybe a more elegant solution to this if else case
490
487
if let hir:: ConstContext :: Static ( _) = ccx. const_kind ( ) {
491
- ccx. tcx . sess . create_err ( InteriorMutableDataRefer {
488
+ ccx. tcx . sess . create_err ( errors :: InteriorMutableDataRefer {
492
489
span,
493
490
opt_help : Some ( ( ) ) ,
494
491
kind : ccx. const_kind ( ) ,
495
492
teach : ccx. tcx . sess . teach ( & error_code ! ( E0492 ) ) . then_some ( ( ) ) ,
496
493
} )
497
494
} else {
498
- ccx. tcx . sess . create_err ( InteriorMutableDataRefer {
495
+ ccx. tcx . sess . create_err ( errors :: InteriorMutableDataRefer {
499
496
span,
500
497
opt_help : None ,
501
498
kind : ccx. const_kind ( ) ,
@@ -528,12 +525,12 @@ impl<'tcx> NonConstOp<'tcx> for MutBorrow {
528
525
span : Span ,
529
526
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
530
527
match self . 0 {
531
- hir:: BorrowKind :: Raw => ccx. tcx . sess . create_err ( UnallowedMutableRefsRaw {
528
+ hir:: BorrowKind :: Raw => ccx. tcx . sess . create_err ( errors :: UnallowedMutableRefsRaw {
532
529
span,
533
530
kind : ccx. const_kind ( ) ,
534
531
teach : ccx. tcx . sess . teach ( & error_code ! ( E0764 ) ) . then_some ( ( ) ) ,
535
532
} ) ,
536
- hir:: BorrowKind :: Ref => ccx. tcx . sess . create_err ( UnallowedMutableRefs {
533
+ hir:: BorrowKind :: Ref => ccx. tcx . sess . create_err ( errors :: UnallowedMutableRefs {
537
534
span,
538
535
kind : ccx. const_kind ( ) ,
539
536
teach : ccx. tcx . sess . teach ( & error_code ! ( E0764 ) ) . then_some ( ( ) ) ,
@@ -557,14 +554,14 @@ impl<'tcx> NonConstOp<'tcx> for TransientMutBorrow {
557
554
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
558
555
let kind = ccx. const_kind ( ) ;
559
556
match self . 0 {
560
- hir:: BorrowKind :: Raw => ccx
561
- . tcx
562
- . sess
563
- . create_feature_err ( TransientMutBorrowErrRaw { span , kind } , sym :: const_mut_refs ) ,
564
- hir:: BorrowKind :: Ref => ccx
565
- . tcx
566
- . sess
567
- . create_feature_err ( TransientMutBorrowErr { span , kind } , sym :: const_mut_refs ) ,
557
+ hir:: BorrowKind :: Raw => ccx. tcx . sess . create_feature_err (
558
+ errors :: TransientMutBorrowErrRaw { span , kind } ,
559
+ sym :: const_mut_refs ,
560
+ ) ,
561
+ hir:: BorrowKind :: Ref => ccx. tcx . sess . create_feature_err (
562
+ errors :: TransientMutBorrowErr { span , kind } ,
563
+ sym :: const_mut_refs ,
564
+ ) ,
568
565
}
569
566
}
570
567
}
@@ -586,9 +583,10 @@ impl<'tcx> NonConstOp<'tcx> for MutDeref {
586
583
ccx : & ConstCx < ' _ , ' tcx > ,
587
584
span : Span ,
588
585
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
589
- ccx. tcx
590
- . sess
591
- . create_feature_err ( MutDerefErr { span, kind : ccx. const_kind ( ) } , sym:: const_mut_refs)
586
+ ccx. tcx . sess . create_feature_err (
587
+ errors:: MutDerefErr { span, kind : ccx. const_kind ( ) } ,
588
+ sym:: const_mut_refs,
589
+ )
592
590
}
593
591
}
594
592
@@ -601,7 +599,7 @@ impl<'tcx> NonConstOp<'tcx> for PanicNonStr {
601
599
ccx : & ConstCx < ' _ , ' tcx > ,
602
600
span : Span ,
603
601
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
604
- ccx. tcx . sess . create_err ( PanicNonStrErr { span } )
602
+ ccx. tcx . sess . create_err ( errors :: PanicNonStrErr { span } )
605
603
}
606
604
}
607
605
@@ -652,7 +650,7 @@ impl<'tcx> NonConstOp<'tcx> for RawPtrToIntCast {
652
650
ccx : & ConstCx < ' _ , ' tcx > ,
653
651
span : Span ,
654
652
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
655
- ccx. tcx . sess . create_err ( RawPtrToIntErr { span } )
653
+ ccx. tcx . sess . create_err ( errors :: RawPtrToIntErr { span } )
656
654
}
657
655
}
658
656
@@ -673,7 +671,7 @@ impl<'tcx> NonConstOp<'tcx> for StaticAccess {
673
671
ccx : & ConstCx < ' _ , ' tcx > ,
674
672
span : Span ,
675
673
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
676
- ccx. tcx . sess . create_err ( StaticAccessErr {
674
+ ccx. tcx . sess . create_err ( errors :: StaticAccessErr {
677
675
span,
678
676
kind : ccx. const_kind ( ) ,
679
677
teach : ccx. tcx . sess . teach ( & error_code ! ( E0013 ) ) . then_some ( ( ) ) ,
@@ -690,7 +688,7 @@ impl<'tcx> NonConstOp<'tcx> for ThreadLocalAccess {
690
688
ccx : & ConstCx < ' _ , ' tcx > ,
691
689
span : Span ,
692
690
) -> DiagnosticBuilder < ' tcx , ErrorGuaranteed > {
693
- ccx. tcx . sess . create_err ( NonConstOpErr { span } )
691
+ ccx. tcx . sess . create_err ( errors :: NonConstOpErr { span } )
694
692
}
695
693
}
696
694
0 commit comments