@@ -4,6 +4,7 @@ use crate::hir::def::Def;
4
4
use crate :: hir:: def_id:: DefId ;
5
5
use crate :: hir:: map:: DefPathData ;
6
6
use crate :: hir:: { self , Node } ;
7
+ use crate :: mir:: interpret:: { sign_extend, truncate} ;
7
8
use crate :: ich:: NodeIdHashingMode ;
8
9
use crate :: traits:: { self , ObligationCause } ;
9
10
use crate :: ty:: { self , Ty , TyCtxt , GenericParamDefKind , TypeFoldable } ;
@@ -32,12 +33,12 @@ impl<'tcx> fmt::Display for Discr<'tcx> {
32
33
fn fmt ( & self , fmt : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
33
34
match self . ty . sty {
34
35
ty:: Int ( ity) => {
35
- let bits = ty:: tls:: with ( |tcx| {
36
- Integer :: from_attr ( & tcx, SignedInt ( ity) ) . size ( ) . bits ( )
36
+ let size = ty:: tls:: with ( |tcx| {
37
+ Integer :: from_attr ( & tcx, SignedInt ( ity) ) . size ( )
37
38
} ) ;
38
- let x = self . val as i128 ;
39
+ let x = self . val ;
39
40
// sign extend the raw representation to be an i128
40
- let x = ( x << ( 128 - bits ) ) >> ( 128 - bits ) ;
41
+ let x = sign_extend ( x , size ) as i128 ;
41
42
write ! ( fmt, "{}" , x)
42
43
} ,
43
44
_ => write ! ( fmt, "{}" , self . val) ,
@@ -57,12 +58,12 @@ impl<'tcx> Discr<'tcx> {
57
58
_ => bug ! ( "non integer discriminant" ) ,
58
59
} ;
59
60
61
+ let size = int. size ( ) ;
60
62
let bit_size = int. size ( ) . bits ( ) ;
61
63
let shift = 128 - bit_size;
62
64
if signed {
63
65
let sext = |u| {
64
- let i = u as i128 ;
65
- ( i << shift) >> shift
66
+ sign_extend ( u, size) as i128
66
67
} ;
67
68
let min = sext ( 1_u128 << ( bit_size - 1 ) ) ;
68
69
let max = i128:: max_value ( ) >> shift;
@@ -77,7 +78,7 @@ impl<'tcx> Discr<'tcx> {
77
78
} ;
78
79
// zero the upper bits
79
80
let val = val as u128 ;
80
- let val = ( val << shift ) >> shift ;
81
+ let val = truncate ( val, size ) ;
81
82
( Self {
82
83
val : val as u128 ,
83
84
ty : self . ty ,
0 commit comments