@@ -18,7 +18,6 @@ use rustc_middle::mir::display_allocation;
18
18
use rustc_middle:: ty:: { self , Instance , ParamEnv , Ty , TyCtxt } ;
19
19
use rustc_target:: abi:: { Align , HasDataLayout , Size } ;
20
20
21
- use crate :: const_eval:: CheckAlignment ;
22
21
use crate :: fluent_generated as fluent;
23
22
24
23
use super :: {
@@ -373,8 +372,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
373
372
self . check_and_deref_ptr (
374
373
ptr,
375
374
size,
376
- align,
377
- M :: enforce_alignment ( self ) ,
375
+ M :: enforce_alignment ( self ) . then_some ( align) ,
378
376
CheckInAllocMsg :: MemoryAccessTest ,
379
377
|alloc_id, offset, prov| {
380
378
let ( size, align) = self
@@ -395,17 +393,10 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
395
393
align : Align ,
396
394
msg : CheckInAllocMsg ,
397
395
) -> InterpResult < ' tcx > {
398
- self . check_and_deref_ptr (
399
- ptr,
400
- size,
401
- align,
402
- CheckAlignment :: Error ,
403
- msg,
404
- |alloc_id, _, _| {
405
- let ( size, align) = self . get_live_alloc_size_and_align ( alloc_id, msg) ?;
406
- Ok ( ( size, align, ( ) ) )
407
- } ,
408
- ) ?;
396
+ self . check_and_deref_ptr ( ptr, size, Some ( align) , msg, |alloc_id, _, _| {
397
+ let ( size, align) = self . get_live_alloc_size_and_align ( alloc_id, msg) ?;
398
+ Ok ( ( size, align, ( ) ) )
399
+ } ) ?;
409
400
Ok ( ( ) )
410
401
}
411
402
@@ -419,8 +410,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
419
410
& self ,
420
411
ptr : Pointer < Option < M :: Provenance > > ,
421
412
size : Size ,
422
- align : Align ,
423
- check : CheckAlignment ,
413
+ align : Option < Align > ,
424
414
msg : CheckInAllocMsg ,
425
415
alloc_size : impl FnOnce (
426
416
AllocId ,
@@ -436,8 +426,8 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
436
426
throw_ub ! ( DanglingIntPointer ( addr, msg) ) ;
437
427
}
438
428
// Must be aligned.
439
- if check . should_check ( ) {
440
- self . check_offset_align ( addr, align, check ) ?;
429
+ if let Some ( align ) = align {
430
+ self . check_offset_align ( addr, align) ?;
441
431
}
442
432
None
443
433
}
@@ -460,16 +450,16 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
460
450
}
461
451
// Test align. Check this last; if both bounds and alignment are violated
462
452
// we want the error to be about the bounds.
463
- if check . should_check ( ) {
453
+ if let Some ( align ) = align {
464
454
if M :: use_addr_for_alignment_check ( self ) {
465
455
// `use_addr_for_alignment_check` can only be true if `OFFSET_IS_ADDR` is true.
466
- self . check_offset_align ( ptr. addr ( ) . bytes ( ) , align, check ) ?;
456
+ self . check_offset_align ( ptr. addr ( ) . bytes ( ) , align) ?;
467
457
} else {
468
458
// Check allocation alignment and offset alignment.
469
459
if alloc_align. bytes ( ) < align. bytes ( ) {
470
- M :: alignment_check_failed ( self , alloc_align, align, check ) ? ;
460
+ throw_ub ! ( AlignmentCheckFailed { has : alloc_align, required : align } ) ;
471
461
}
472
- self . check_offset_align ( offset. bytes ( ) , align, check ) ?;
462
+ self . check_offset_align ( offset. bytes ( ) , align) ?;
473
463
}
474
464
}
475
465
@@ -480,18 +470,16 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
480
470
} )
481
471
}
482
472
483
- fn check_offset_align (
484
- & self ,
485
- offset : u64 ,
486
- align : Align ,
487
- check : CheckAlignment ,
488
- ) -> InterpResult < ' tcx > {
473
+ fn check_offset_align ( & self , offset : u64 , align : Align ) -> InterpResult < ' tcx > {
489
474
if offset % align. bytes ( ) == 0 {
490
475
Ok ( ( ) )
491
476
} else {
492
477
// The biggest power of two through which `offset` is divisible.
493
478
let offset_pow2 = 1 << offset. trailing_zeros ( ) ;
494
- M :: alignment_check_failed ( self , Align :: from_bytes ( offset_pow2) . unwrap ( ) , align, check)
479
+ throw_ub ! ( AlignmentCheckFailed {
480
+ has: Align :: from_bytes( offset_pow2) . unwrap( ) ,
481
+ required: align
482
+ } ) ;
495
483
}
496
484
}
497
485
}
@@ -609,8 +597,7 @@ impl<'mir, 'tcx: 'mir, M: Machine<'mir, 'tcx>> InterpCx<'mir, 'tcx, M> {
609
597
let ptr_and_alloc = self . check_and_deref_ptr (
610
598
ptr,
611
599
size,
612
- align,
613
- M :: enforce_alignment ( self ) ,
600
+ M :: enforce_alignment ( self ) . then_some ( align) ,
614
601
CheckInAllocMsg :: MemoryAccessTest ,
615
602
|alloc_id, offset, prov| {
616
603
let alloc = self . get_alloc_raw ( alloc_id) ?;
0 commit comments