@@ -24,8 +24,8 @@ use crate::fluent_generated as fluent;
24
24
use crate :: interpret:: {
25
25
self , AllocId , AllocRange , ConstAllocation , CtfeProvenance , FnArg , Frame , GlobalAlloc , ImmTy ,
26
26
InterpCx , InterpResult , MPlaceTy , OpTy , Pointer , PointerArithmetic , RangeSet , Scalar ,
27
- StackPopCleanup , compile_time_machine, err_ub , throw_exhaust, throw_inval, throw_ub_custom ,
28
- throw_unsup, throw_unsup_format,
27
+ StackPopCleanup , compile_time_machine, interp_ok , throw_exhaust, throw_inval, throw_ub ,
28
+ throw_ub_custom , throw_unsup, throw_unsup_format,
29
29
} ;
30
30
31
31
/// When hitting this many interpreted terminators we emit a deny by default lint
@@ -247,7 +247,7 @@ impl<'tcx> CompileTimeInterpCx<'tcx> {
247
247
let msg = Symbol :: intern ( self . read_str ( & msg_place) ?) ;
248
248
let span = self . find_closest_untracked_caller_location ( ) ;
249
249
let ( file, line, col) = self . location_triple_for_span ( span) ;
250
- return Err ( ConstEvalErrKind :: Panic { msg, file, line, col } . into ( ) ) ;
250
+ return Err ( ConstEvalErrKind :: Panic { msg, file, line, col } ) . into ( ) ;
251
251
} else if self . tcx . is_lang_item ( def_id, LangItem :: PanicFmt ) {
252
252
// For panic_fmt, call const_panic_fmt instead.
253
253
let const_def_id = self . tcx . require_lang_item ( LangItem :: ConstPanicFmt , None ) ;
@@ -259,16 +259,16 @@ impl<'tcx> CompileTimeInterpCx<'tcx> {
259
259
self . cur_span ( ) ,
260
260
) ;
261
261
262
- return Ok ( Some ( new_instance) ) ;
262
+ return interp_ok ( Some ( new_instance) ) ;
263
263
} else if self . tcx . is_lang_item ( def_id, LangItem :: AlignOffset ) {
264
264
let args = self . copy_fn_args ( args) ;
265
265
// For align_offset, we replace the function call if the pointer has no address.
266
266
match self . align_offset ( instance, & args, dest, ret) ? {
267
- ControlFlow :: Continue ( ( ) ) => return Ok ( Some ( instance) ) ,
268
- ControlFlow :: Break ( ( ) ) => return Ok ( None ) ,
267
+ ControlFlow :: Continue ( ( ) ) => return interp_ok ( Some ( instance) ) ,
268
+ ControlFlow :: Break ( ( ) ) => return interp_ok ( None ) ,
269
269
}
270
270
}
271
- Ok ( Some ( instance) )
271
+ interp_ok ( Some ( instance) )
272
272
}
273
273
274
274
/// `align_offset(ptr, target_align)` needs special handling in const eval, because the pointer
@@ -323,25 +323,25 @@ impl<'tcx> CompileTimeInterpCx<'tcx> {
323
323
dest,
324
324
StackPopCleanup :: Goto { ret, unwind : mir:: UnwindAction :: Unreachable } ,
325
325
) ?;
326
- Ok ( ControlFlow :: Break ( ( ) ) )
326
+ interp_ok ( ControlFlow :: Break ( ( ) ) )
327
327
} else {
328
328
// Not alignable in const, return `usize::MAX`.
329
329
let usize_max = Scalar :: from_target_usize ( self . target_usize_max ( ) , self ) ;
330
330
self . write_scalar ( usize_max, dest) ?;
331
331
self . return_to_block ( ret) ?;
332
- Ok ( ControlFlow :: Break ( ( ) ) )
332
+ interp_ok ( ControlFlow :: Break ( ( ) ) )
333
333
}
334
334
}
335
335
Err ( _addr) => {
336
336
// The pointer has an address, continue with function call.
337
- Ok ( ControlFlow :: Continue ( ( ) ) )
337
+ interp_ok ( ControlFlow :: Continue ( ( ) ) )
338
338
}
339
339
}
340
340
}
341
341
342
342
/// See documentation on the `ptr_guaranteed_cmp` intrinsic.
343
343
fn guaranteed_cmp ( & mut self , a : Scalar , b : Scalar ) -> InterpResult < ' tcx , u8 > {
344
- Ok ( match ( a, b) {
344
+ interp_ok ( match ( a, b) {
345
345
// Comparisons between integers are always known.
346
346
( Scalar :: Int { .. } , Scalar :: Int { .. } ) => {
347
347
if a == b {
@@ -403,8 +403,8 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
403
403
instance : ty:: InstanceKind < ' tcx > ,
404
404
) -> InterpResult < ' tcx , & ' tcx mir:: Body < ' tcx > > {
405
405
match instance {
406
- ty:: InstanceKind :: Item ( def) => Ok ( ecx. tcx . mir_for_ctfe ( def) ) ,
407
- _ => Ok ( ecx. tcx . instance_mir ( instance) ) ,
406
+ ty:: InstanceKind :: Item ( def) => interp_ok ( ecx. tcx . mir_for_ctfe ( def) ) ,
407
+ _ => interp_ok ( ecx. tcx . instance_mir ( instance) ) ,
408
408
}
409
409
}
410
410
@@ -422,7 +422,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
422
422
// Replace some functions.
423
423
let Some ( instance) = ecx. hook_special_const_fn ( orig_instance, args, dest, ret) ? else {
424
424
// Call has already been handled.
425
- return Ok ( None ) ;
425
+ return interp_ok ( None ) ;
426
426
} ;
427
427
428
428
// Only check non-glue functions
@@ -444,14 +444,14 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
444
444
// This is a const fn. Call it.
445
445
// In case of replacement, we return the *original* instance to make backtraces work out
446
446
// (and we hope this does not confuse the FnAbi checks too much).
447
- Ok ( Some ( ( ecx. load_mir ( instance. def , None ) ?, orig_instance) ) )
447
+ interp_ok ( Some ( ( ecx. load_mir ( instance. def , None ) ?, orig_instance) ) )
448
448
}
449
449
450
450
fn panic_nounwind ( ecx : & mut InterpCx < ' tcx , Self > , msg : & str ) -> InterpResult < ' tcx > {
451
451
let msg = Symbol :: intern ( msg) ;
452
452
let span = ecx. find_closest_untracked_caller_location ( ) ;
453
453
let ( file, line, col) = ecx. location_triple_for_span ( span) ;
454
- Err ( ConstEvalErrKind :: Panic { msg, file, line, col } . into ( ) )
454
+ Err ( ConstEvalErrKind :: Panic { msg, file, line, col } ) . into ( )
455
455
}
456
456
457
457
fn call_intrinsic (
@@ -464,7 +464,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
464
464
) -> InterpResult < ' tcx , Option < ty:: Instance < ' tcx > > > {
465
465
// Shared intrinsics.
466
466
if ecx. eval_intrinsic ( instance, args, dest, target) ? {
467
- return Ok ( None ) ;
467
+ return interp_ok ( None ) ;
468
468
}
469
469
let intrinsic_name = ecx. tcx . item_name ( instance. def_id ( ) ) ;
470
470
@@ -541,7 +541,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
541
541
"intrinsic `{intrinsic_name}` is not supported at compile-time"
542
542
) ;
543
543
}
544
- return Ok ( Some ( ty:: Instance {
544
+ return interp_ok ( Some ( ty:: Instance {
545
545
def : ty:: InstanceKind :: Item ( instance. def_id ( ) ) ,
546
546
args : instance. args ,
547
547
} ) ) ;
@@ -550,7 +550,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
550
550
551
551
// Intrinsic is done, jump to next block.
552
552
ecx. return_to_block ( target) ?;
553
- Ok ( None )
553
+ interp_ok ( None )
554
554
}
555
555
556
556
fn assert_panic (
@@ -581,7 +581,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
581
581
}
582
582
}
583
583
} ;
584
- Err ( ConstEvalErrKind :: AssertFailure ( err) . into ( ) )
584
+ Err ( ConstEvalErrKind :: AssertFailure ( err) ) . into ( )
585
585
}
586
586
587
587
fn binary_ptr_op (
@@ -652,7 +652,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
652
652
}
653
653
}
654
654
655
- Ok ( ( ) )
655
+ interp_ok ( ( ) )
656
656
}
657
657
658
658
#[ inline( always) ]
@@ -670,7 +670,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
670
670
if !ecx. recursion_limit . value_within_limit ( ecx. stack ( ) . len ( ) + 1 ) {
671
671
throw_exhaust ! ( StackFrameLimitReached )
672
672
} else {
673
- Ok ( frame)
673
+ interp_ok ( frame)
674
674
}
675
675
}
676
676
@@ -700,22 +700,22 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
700
700
if is_write {
701
701
// Write access. These are never allowed, but we give a targeted error message.
702
702
match alloc. mutability {
703
- Mutability :: Not => Err ( err_ub ! ( WriteToReadOnly ( alloc_id) ) . into ( ) ) ,
704
- Mutability :: Mut => Err ( ConstEvalErrKind :: ModifiedGlobal . into ( ) ) ,
703
+ Mutability :: Not => throw_ub ! ( WriteToReadOnly ( alloc_id) ) ,
704
+ Mutability :: Mut => Err ( ConstEvalErrKind :: ModifiedGlobal ) . into ( ) ,
705
705
}
706
706
} else {
707
707
// Read access. These are usually allowed, with some exceptions.
708
708
if machine. can_access_mut_global == CanAccessMutGlobal :: Yes {
709
709
// Machine configuration allows us read from anything (e.g., `static` initializer).
710
- Ok ( ( ) )
710
+ interp_ok ( ( ) )
711
711
} else if alloc. mutability == Mutability :: Mut {
712
712
// Machine configuration does not allow us to read statics (e.g., `const`
713
713
// initializer).
714
- Err ( ConstEvalErrKind :: ConstAccessesMutGlobal . into ( ) )
714
+ Err ( ConstEvalErrKind :: ConstAccessesMutGlobal ) . into ( )
715
715
} else {
716
716
// Immutable global, this read is fine.
717
717
assert_eq ! ( alloc. mutability, Mutability :: Not ) ;
718
- Ok ( ( ) )
718
+ interp_ok ( ( ) )
719
719
}
720
720
}
721
721
}
@@ -748,9 +748,9 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
748
748
// even when there is interior mutability.)
749
749
place. map_provenance ( CtfeProvenance :: as_shared_ref)
750
750
} ;
751
- Ok ( ImmTy :: from_immediate ( new_place. to_ref ( ecx) , val. layout ) )
751
+ interp_ok ( ImmTy :: from_immediate ( new_place. to_ref ( ecx) , val. layout ) )
752
752
} else {
753
- Ok ( val. clone ( ) )
753
+ interp_ok ( val. clone ( ) )
754
754
}
755
755
}
756
756
@@ -763,20 +763,20 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
763
763
) -> InterpResult < ' tcx > {
764
764
if range. size == Size :: ZERO {
765
765
// Nothing to check.
766
- return Ok ( ( ) ) ;
766
+ return interp_ok ( ( ) ) ;
767
767
}
768
768
// Reject writes through immutable pointers.
769
769
if immutable {
770
- return Err ( ConstEvalErrKind :: WriteThroughImmutablePointer . into ( ) ) ;
770
+ return Err ( ConstEvalErrKind :: WriteThroughImmutablePointer ) . into ( ) ;
771
771
}
772
772
// Everything else is fine.
773
- Ok ( ( ) )
773
+ interp_ok ( ( ) )
774
774
}
775
775
776
776
fn before_alloc_read ( ecx : & InterpCx < ' tcx , Self > , alloc_id : AllocId ) -> InterpResult < ' tcx > {
777
777
// Check if this is the currently evaluated static.
778
778
if Some ( alloc_id) == ecx. machine . static_root_ids . map ( |( id, _) | id) {
779
- return Err ( ConstEvalErrKind :: RecursiveStatic . into ( ) ) ;
779
+ return Err ( ConstEvalErrKind :: RecursiveStatic ) . into ( ) ;
780
780
}
781
781
// If this is another static, make sure we fire off the query to detect cycles.
782
782
// But only do that when checks for static recursion are enabled.
@@ -788,7 +788,7 @@ impl<'tcx> interpret::Machine<'tcx> for CompileTimeMachine<'tcx> {
788
788
ecx. ctfe_query ( |tcx| tcx. eval_static_initializer ( def_id) ) ?;
789
789
}
790
790
}
791
- Ok ( ( ) )
791
+ interp_ok ( ( ) )
792
792
}
793
793
794
794
fn cached_union_data_range < ' e > (
0 commit comments