42
42
//! taken to it, implementing them for Rust seems difficult.
43
43
44
44
pub use self :: Repr :: * ;
45
+ use super :: Disr ;
45
46
46
47
use std;
47
48
use std:: rc:: Rc ;
@@ -50,7 +51,6 @@ use llvm::{ValueRef, True, IntEQ, IntNE};
50
51
use back:: abi:: FAT_PTR_ADDR ;
51
52
use middle:: subst;
52
53
use middle:: ty:: { self , Ty } ;
53
- use middle:: ty:: Disr ;
54
54
use syntax:: ast;
55
55
use syntax:: attr;
56
56
use syntax:: attr:: IntType ;
@@ -308,20 +308,20 @@ fn represent_type_uncached<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
308
308
309
309
if !dtor && cases. iter ( ) . all ( |c| c. tys . is_empty ( ) ) {
310
310
// All bodies empty -> intlike
311
- let discrs: Vec < u64 > = cases. iter ( ) . map ( |c| c. discr ) . collect ( ) ;
311
+ let discrs: Vec < _ > = cases. iter ( ) . map ( |c| Disr :: from ( c. discr ) ) . collect ( ) ;
312
312
let bounds = IntBounds {
313
- ulo : * discrs. iter ( ) . min ( ) . unwrap ( ) ,
314
- uhi : * discrs. iter ( ) . max ( ) . unwrap ( ) ,
315
- slo : discrs. iter ( ) . map ( |n| * n as i64 ) . min ( ) . unwrap ( ) ,
316
- shi : discrs. iter ( ) . map ( |n| * n as i64 ) . max ( ) . unwrap ( )
313
+ ulo : discrs. iter ( ) . min ( ) . unwrap ( ) . 0 ,
314
+ uhi : discrs. iter ( ) . max ( ) . unwrap ( ) . 0 ,
315
+ slo : discrs. iter ( ) . map ( |n| n . 0 as i64 ) . min ( ) . unwrap ( ) ,
316
+ shi : discrs. iter ( ) . map ( |n| n . 0 as i64 ) . max ( ) . unwrap ( )
317
317
} ;
318
318
return mk_cenum ( cx, hint, & bounds) ;
319
319
}
320
320
321
321
// Since there's at least one
322
322
// non-empty body, explicit discriminants should have
323
323
// been rejected by a checker before this point.
324
- if !cases. iter ( ) . enumerate ( ) . all ( |( i, c) | c. discr == ( i as Disr ) ) {
324
+ if !cases. iter ( ) . enumerate ( ) . all ( |( i, c) | c. discr == Disr :: from ( i ) ) {
325
325
cx. sess ( ) . bug ( & format ! ( "non-C-like enum {} with specified \
326
326
discriminants",
327
327
cx. tcx( ) . item_path_str( def. did) ) ) ;
@@ -347,7 +347,7 @@ fn represent_type_uncached<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
347
347
match cases[ discr] . find_ptr ( cx) {
348
348
Some ( ref df) if df. len ( ) == 1 && st. fields . len ( ) == 1 => {
349
349
return RawNullablePointer {
350
- nndiscr : discr as Disr ,
350
+ nndiscr : Disr :: from ( discr ) ,
351
351
nnty : st. fields [ 0 ] ,
352
352
nullfields : cases[ 1 - discr] . tys . clone ( )
353
353
} ;
@@ -356,7 +356,7 @@ fn represent_type_uncached<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
356
356
discrfield. push ( 0 ) ;
357
357
discrfield. reverse ( ) ;
358
358
return StructWrappedNullablePointer {
359
- nndiscr : discr as Disr ,
359
+ nndiscr : Disr :: from ( discr ) ,
360
360
nonnull : st,
361
361
discrfield : discrfield,
362
362
nullfields : cases[ 1 - discr] . tys . clone ( )
@@ -564,7 +564,7 @@ fn get_cases<'tcx>(tcx: &ty::ctxt<'tcx>,
564
564
let field_tys = vi. fields . iter ( ) . map ( |field| {
565
565
monomorphize:: field_ty ( tcx, substs, field)
566
566
} ) . collect ( ) ;
567
- Case { discr : vi. disr_val , tys : field_tys }
567
+ Case { discr : Disr :: from ( vi. disr_val ) , tys : field_tys }
568
568
} ) . collect ( )
569
569
}
570
570
@@ -605,8 +605,8 @@ fn mk_cenum<'a, 'tcx>(cx: &CrateContext<'a, 'tcx>,
605
605
-> Repr < ' tcx > {
606
606
let it = range_to_inttype ( cx, hint, bounds) ;
607
607
match it {
608
- attr:: SignedInt ( _) => CEnum ( it, bounds. slo as Disr , bounds. shi as Disr ) ,
609
- attr:: UnsignedInt ( _) => CEnum ( it, bounds. ulo , bounds. uhi )
608
+ attr:: SignedInt ( _) => CEnum ( it, Disr ( bounds. slo as u64 ) , Disr ( bounds. shi as u64 ) ) ,
609
+ attr:: UnsignedInt ( _) => CEnum ( it, Disr ( bounds. ulo ) , Disr ( bounds. uhi ) )
610
610
}
611
611
}
612
612
@@ -923,11 +923,11 @@ pub fn trans_get_discr<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, r: &Repr<'tcx>,
923
923
CEnum ( ity, min, max) => load_discr ( bcx, ity, scrutinee, min, max) ,
924
924
General ( ity, ref cases, _) => {
925
925
let ptr = StructGEP ( bcx, scrutinee, 0 ) ;
926
- load_discr ( bcx, ity, ptr, 0 , ( cases. len ( ) - 1 ) as Disr )
926
+ load_discr ( bcx, ity, ptr, Disr ( 0 ) , Disr ( cases. len ( ) as u64 - 1 ) )
927
927
}
928
928
Univariant ( ..) => C_u8 ( bcx. ccx ( ) , 0 ) ,
929
929
RawNullablePointer { nndiscr, nnty, .. } => {
930
- let cmp = if nndiscr == 0 { IntEQ } else { IntNE } ;
930
+ let cmp = if nndiscr == Disr ( 0 ) { IntEQ } else { IntNE } ;
931
931
let llptrty = type_of:: sizing_type_of ( bcx. ccx ( ) , nnty) ;
932
932
ICmp ( bcx, cmp, Load ( bcx, scrutinee) , C_null ( llptrty) , DebugLoc :: None )
933
933
}
@@ -945,7 +945,7 @@ fn struct_wrapped_nullable_bitdiscr(bcx: Block, nndiscr: Disr, discrfield: &Disc
945
945
scrutinee : ValueRef ) -> ValueRef {
946
946
let llptrptr = GEPi ( bcx, scrutinee, & discrfield[ ..] ) ;
947
947
let llptr = Load ( bcx, llptrptr) ;
948
- let cmp = if nndiscr == 0 { IntEQ } else { IntNE } ;
948
+ let cmp = if nndiscr == Disr ( 0 ) { IntEQ } else { IntNE } ;
949
949
ICmp ( bcx, cmp, llptr, C_null ( val_ty ( llptr) ) , DebugLoc :: None )
950
950
}
951
951
@@ -957,10 +957,10 @@ fn load_discr(bcx: Block, ity: IntType, ptr: ValueRef, min: Disr, max: Disr)
957
957
let bits = machine:: llbitsize_of_real ( bcx. ccx ( ) , llty) ;
958
958
assert ! ( bits <= 64 ) ;
959
959
let bits = bits as usize ;
960
- let mask = ( !0u64 >> ( 64 - bits) ) as Disr ;
960
+ let mask = Disr ( !0u64 >> ( 64 - bits) ) ;
961
961
// For a (max) discr of -1, max will be `-1 as usize`, which overflows.
962
962
// However, that is fine here (it would still represent the full range),
963
- if ( max. wrapping_add ( 1 ) ) & mask == min & mask {
963
+ if max. wrapping_add ( Disr ( 1 ) ) & mask == min & mask {
964
964
// i.e., if the range is everything. The lo==hi case would be
965
965
// rejected by the LLVM verifier (it would mean either an
966
966
// empty set, which is impossible, or the entire range of the
@@ -969,7 +969,7 @@ fn load_discr(bcx: Block, ity: IntType, ptr: ValueRef, min: Disr, max: Disr)
969
969
} else {
970
970
// llvm::ConstantRange can deal with ranges that wrap around,
971
971
// so an overflow on (max + 1) is fine.
972
- LoadRangeAssert ( bcx, ptr, min, ( max. wrapping_add ( 1 ) ) , /* signed: */ True )
972
+ LoadRangeAssert ( bcx, ptr, min, max. wrapping_add ( Disr ( 1 ) ) , /* signed: */ True )
973
973
}
974
974
}
975
975
@@ -981,18 +981,18 @@ pub fn trans_case<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, r: &Repr, discr: Disr)
981
981
-> ValueRef {
982
982
match * r {
983
983
CEnum ( ity, _, _) => {
984
- C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr as u64 , true )
984
+ C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr. 0 , true )
985
985
}
986
986
General ( ity, _, _) => {
987
- C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr as u64 , true )
987
+ C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr. 0 , true )
988
988
}
989
989
Univariant ( ..) => {
990
990
bcx. ccx ( ) . sess ( ) . bug ( "no cases for univariants or structs" )
991
991
}
992
992
RawNullablePointer { .. } |
993
993
StructWrappedNullablePointer { .. } => {
994
- assert ! ( discr == 0 || discr == 1 ) ;
995
- C_bool ( bcx. ccx ( ) , discr != 0 )
994
+ assert ! ( discr == Disr ( 0 ) || discr == Disr ( 1 ) ) ;
995
+ C_bool ( bcx. ccx ( ) , discr != Disr ( 0 ) )
996
996
}
997
997
}
998
998
}
@@ -1004,20 +1004,20 @@ pub fn trans_set_discr<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, r: &Repr<'tcx>,
1004
1004
match * r {
1005
1005
CEnum ( ity, min, max) => {
1006
1006
assert_discr_in_range ( ity, min, max, discr) ;
1007
- Store ( bcx, C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr as u64 , true ) ,
1007
+ Store ( bcx, C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr. 0 , true ) ,
1008
1008
val) ;
1009
1009
}
1010
1010
General ( ity, ref cases, dtor) => {
1011
1011
if dtor_active ( dtor) {
1012
1012
let ptr = trans_field_ptr ( bcx, r, MaybeSizedValue :: sized ( val) , discr,
1013
- cases[ discr as usize ] . fields . len ( ) - 2 ) ;
1013
+ cases[ discr. 0 as usize ] . fields . len ( ) - 2 ) ;
1014
1014
Store ( bcx, C_u8 ( bcx. ccx ( ) , DTOR_NEEDED ) , ptr) ;
1015
1015
}
1016
- Store ( bcx, C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr as u64 , true ) ,
1016
+ Store ( bcx, C_integral ( ll_inttype ( bcx. ccx ( ) , ity) , discr. 0 , true ) ,
1017
1017
StructGEP ( bcx, val, 0 ) ) ;
1018
1018
}
1019
1019
Univariant ( ref st, dtor) => {
1020
- assert_eq ! ( discr, 0 ) ;
1020
+ assert_eq ! ( discr, Disr ( 0 ) ) ;
1021
1021
if dtor_active ( dtor) {
1022
1022
Store ( bcx, C_u8 ( bcx. ccx ( ) , DTOR_NEEDED ) ,
1023
1023
StructGEP ( bcx, val, st. fields . len ( ) - 1 ) ) ;
@@ -1041,8 +1041,14 @@ pub fn trans_set_discr<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, r: &Repr<'tcx>,
1041
1041
1042
1042
fn assert_discr_in_range ( ity : IntType , min : Disr , max : Disr , discr : Disr ) {
1043
1043
match ity {
1044
- attr:: UnsignedInt ( _) => assert ! ( min <= discr && discr <= max) ,
1045
- attr:: SignedInt ( _) => assert ! ( min as i64 <= discr as i64 && discr as i64 <= max as i64 )
1044
+ attr:: UnsignedInt ( _) => {
1045
+ assert ! ( min <= discr) ;
1046
+ assert ! ( discr <= max)
1047
+ } ,
1048
+ attr:: SignedInt ( _) => {
1049
+ assert ! ( min. 0 as i64 <= discr. 0 as i64 ) ;
1050
+ assert ! ( discr. 0 as i64 <= max. 0 as i64 ) ;
1051
+ } ,
1046
1052
}
1047
1053
}
1048
1054
@@ -1052,11 +1058,11 @@ pub fn num_args(r: &Repr, discr: Disr) -> usize {
1052
1058
match * r {
1053
1059
CEnum ( ..) => 0 ,
1054
1060
Univariant ( ref st, dtor) => {
1055
- assert_eq ! ( discr, 0 ) ;
1061
+ assert_eq ! ( discr, Disr ( 0 ) ) ;
1056
1062
st. fields . len ( ) - ( if dtor_active ( dtor) { 1 } else { 0 } )
1057
1063
}
1058
1064
General ( _, ref cases, dtor) => {
1059
- cases[ discr as usize ] . fields . len ( ) - 1 - ( if dtor_active ( dtor) { 1 } else { 0 } )
1065
+ cases[ discr. 0 as usize ] . fields . len ( ) - 1 - ( if dtor_active ( dtor) { 1 } else { 0 } )
1060
1066
}
1061
1067
RawNullablePointer { nndiscr, ref nullfields, .. } => {
1062
1068
if discr == nndiscr { 1 } else { nullfields. len ( ) }
@@ -1079,11 +1085,11 @@ pub fn trans_field_ptr<'blk, 'tcx>(bcx: Block<'blk, 'tcx>, r: &Repr<'tcx>,
1079
1085
bcx. ccx ( ) . sess ( ) . bug ( "element access in C-like enum" )
1080
1086
}
1081
1087
Univariant ( ref st, _dtor) => {
1082
- assert_eq ! ( discr, 0 ) ;
1088
+ assert_eq ! ( discr, Disr ( 0 ) ) ;
1083
1089
struct_field_ptr ( bcx, st, val, ix, false )
1084
1090
}
1085
1091
General ( _, ref cases, _) => {
1086
- struct_field_ptr ( bcx, & cases[ discr as usize ] , val, ix + 1 , true )
1092
+ struct_field_ptr ( bcx, & cases[ discr. 0 as usize ] , val, ix + 1 , true )
1087
1093
}
1088
1094
RawNullablePointer { nndiscr, ref nullfields, .. } |
1089
1095
StructWrappedNullablePointer { nndiscr, ref nullfields, .. } if discr != nndiscr => {
@@ -1326,20 +1332,20 @@ pub fn trans_const<'a, 'tcx>(ccx: &CrateContext<'a, 'tcx>, r: &Repr<'tcx>, discr
1326
1332
CEnum ( ity, min, max) => {
1327
1333
assert_eq ! ( vals. len( ) , 0 ) ;
1328
1334
assert_discr_in_range ( ity, min, max, discr) ;
1329
- C_integral ( ll_inttype ( ccx, ity) , discr as u64 , true )
1335
+ C_integral ( ll_inttype ( ccx, ity) , discr. 0 , true )
1330
1336
}
1331
1337
General ( ity, ref cases, _) => {
1332
- let case = & cases[ discr as usize ] ;
1338
+ let case = & cases[ discr. 0 as usize ] ;
1333
1339
let ( max_sz, _) = union_size_and_align ( & cases[ ..] ) ;
1334
- let lldiscr = C_integral ( ll_inttype ( ccx, ity) , discr as u64 , true ) ;
1340
+ let lldiscr = C_integral ( ll_inttype ( ccx, ity) , discr. 0 as u64 , true ) ;
1335
1341
let mut f = vec ! [ lldiscr] ;
1336
1342
f. extend_from_slice ( vals) ;
1337
1343
let mut contents = build_const_struct ( ccx, case, & f[ ..] ) ;
1338
1344
contents. extend_from_slice ( & [ padding ( ccx, max_sz - case. size ) ] ) ;
1339
1345
C_struct ( ccx, & contents[ ..] , false )
1340
1346
}
1341
1347
Univariant ( ref st, _dro) => {
1342
- assert ! ( discr == 0 ) ;
1348
+ assert_eq ! ( discr, Disr ( 0 ) ) ;
1343
1349
let contents = build_const_struct ( ccx, st, vals) ;
1344
1350
C_struct ( ccx, & contents[ ..] , st. packed )
1345
1351
}
@@ -1444,17 +1450,17 @@ pub fn const_get_discrim(ccx: &CrateContext, r: &Repr, val: ValueRef) -> Disr {
1444
1450
match * r {
1445
1451
CEnum ( ity, _, _) => {
1446
1452
match ity {
1447
- attr:: SignedInt ( ..) => const_to_int ( val) as Disr ,
1448
- attr:: UnsignedInt ( ..) => const_to_uint ( val) as Disr
1453
+ attr:: SignedInt ( ..) => Disr ( const_to_int ( val) as u64 ) ,
1454
+ attr:: UnsignedInt ( ..) => Disr ( const_to_uint ( val) ) ,
1449
1455
}
1450
1456
}
1451
1457
General ( ity, _, _) => {
1452
1458
match ity {
1453
- attr:: SignedInt ( ..) => const_to_int ( const_get_elt ( ccx, val, & [ 0 ] ) ) as Disr ,
1454
- attr:: UnsignedInt ( ..) => const_to_uint ( const_get_elt ( ccx, val, & [ 0 ] ) ) as Disr
1459
+ attr:: SignedInt ( ..) => Disr ( const_to_int ( const_get_elt ( ccx, val, & [ 0 ] ) ) as u64 ) ,
1460
+ attr:: UnsignedInt ( ..) => Disr ( const_to_uint ( const_get_elt ( ccx, val, & [ 0 ] ) ) )
1455
1461
}
1456
1462
}
1457
- Univariant ( ..) => 0 ,
1463
+ Univariant ( ..) => Disr ( 0 ) ,
1458
1464
RawNullablePointer { .. } | StructWrappedNullablePointer { .. } => {
1459
1465
ccx. sess ( ) . bug ( "const discrim access of non c-like enum" )
1460
1466
}
0 commit comments