@@ -935,9 +935,10 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
935
935
}
936
936
937
937
macro_rules! require_simd {
938
- ( $ty: expr, $diag: expr) => {
939
- require!( $ty. is_simd( ) , $diag)
940
- } ;
938
+ ( $ty: expr, $variant: ident) => { {
939
+ require!( $ty. is_simd( ) , InvalidMonomorphization :: $variant { span, name, ty: $ty } ) ;
940
+ $ty. simd_size_and_type( bx. tcx( ) )
941
+ } } ;
941
942
}
942
943
943
944
let tcx = bx. tcx ( ) ;
@@ -946,12 +947,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
946
947
let arg_tys = sig. inputs ( ) ;
947
948
948
949
if name == sym:: simd_select_bitmask {
949
- require_simd ! (
950
- arg_tys[ 1 ] ,
951
- InvalidMonomorphization :: SimdArgument { span, name, ty: arg_tys[ 1 ] }
952
- ) ;
953
-
954
- let ( len, _) = arg_tys[ 1 ] . simd_size_and_type ( bx. tcx ( ) ) ;
950
+ let ( len, _) = require_simd ! ( arg_tys[ 1 ] , SimdArgument ) ;
955
951
956
952
let expected_int_bits = ( len. max ( 8 ) - 1 ) . next_power_of_two ( ) ;
957
953
let expected_bytes = len / 8 + ( ( len % 8 > 0 ) as u64 ) ;
@@ -988,7 +984,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
988
984
}
989
985
990
986
// every intrinsic below takes a SIMD vector as its first argument
991
- require_simd ! ( arg_tys [ 0 ] , InvalidMonomorphization :: SimdInput { span , name , ty : arg_tys[ 0 ] } ) ;
987
+ let ( in_len , in_elem ) = require_simd ! ( arg_tys[ 0 ] , SimdInput ) ;
992
988
let in_ty = arg_tys[ 0 ] ;
993
989
994
990
let comparison = match name {
@@ -1001,11 +997,8 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1001
997
_ => None ,
1002
998
} ;
1003
999
1004
- let ( in_len, in_elem) = arg_tys[ 0 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1005
1000
if let Some ( cmp_op) = comparison {
1006
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1007
-
1008
- let ( out_len, out_ty) = ret_ty. simd_size_and_type ( bx. tcx ( ) ) ;
1001
+ let ( out_len, out_ty) = require_simd ! ( ret_ty, SimdReturn ) ;
1009
1002
1010
1003
require ! (
1011
1004
in_len == out_len,
@@ -1041,8 +1034,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1041
1034
. unwrap_branch ( ) ;
1042
1035
let n = idx. len ( ) as u64 ;
1043
1036
1044
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1045
- let ( out_len, out_ty) = ret_ty. simd_size_and_type ( bx. tcx ( ) ) ;
1037
+ let ( out_len, out_ty) = require_simd ! ( ret_ty, SimdReturn ) ;
1046
1038
require ! (
1047
1039
out_len == n,
1048
1040
InvalidMonomorphization :: ReturnLength { span, name, in_len: n, ret_ty, out_len }
@@ -1099,8 +1091,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1099
1091
} ) ,
1100
1092
} ;
1101
1093
1102
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1103
- let ( out_len, out_ty) = ret_ty. simd_size_and_type ( bx. tcx ( ) ) ;
1094
+ let ( out_len, out_ty) = require_simd ! ( ret_ty, SimdReturn ) ;
1104
1095
require ! (
1105
1096
out_len == n,
1106
1097
InvalidMonomorphization :: ReturnLength { span, name, in_len: n, ret_ty, out_len }
@@ -1179,11 +1170,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1179
1170
if name == sym:: simd_select {
1180
1171
let m_elem_ty = in_elem;
1181
1172
let m_len = in_len;
1182
- require_simd ! (
1183
- arg_tys[ 1 ] ,
1184
- InvalidMonomorphization :: SimdArgument { span, name, ty: arg_tys[ 1 ] }
1185
- ) ;
1186
- let ( v_len, _) = arg_tys[ 1 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1173
+ let ( v_len, _) = require_simd ! ( arg_tys[ 1 ] , SimdArgument ) ;
1187
1174
require ! (
1188
1175
m_len == v_len,
1189
1176
InvalidMonomorphization :: MismatchedLengths { span, name, m_len, v_len }
@@ -1401,20 +1388,16 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1401
1388
// * M: any integer width is supported, will be truncated to i1
1402
1389
1403
1390
// All types must be simd vector types
1404
- require_simd ! ( in_ty, InvalidMonomorphization :: SimdFirst { span, name, ty: in_ty } ) ;
1405
- require_simd ! (
1406
- arg_tys[ 1 ] ,
1407
- InvalidMonomorphization :: SimdSecond { span, name, ty: arg_tys[ 1 ] }
1408
- ) ;
1409
- require_simd ! (
1410
- arg_tys[ 2 ] ,
1411
- InvalidMonomorphization :: SimdThird { span, name, ty: arg_tys[ 2 ] }
1412
- ) ;
1413
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1391
+
1392
+ // The second argument must be a simd vector with an element type that's a pointer
1393
+ // to the element type of the first argument
1394
+ let ( _, element_ty0) = require_simd ! ( in_ty, SimdFirst ) ;
1395
+ let ( out_len, element_ty1) = require_simd ! ( arg_tys[ 1 ] , SimdSecond ) ;
1396
+ // The element type of the third argument must be a signed integer type of any width:
1397
+ let ( out_len2, element_ty2) = require_simd ! ( arg_tys[ 2 ] , SimdThird ) ;
1398
+ require_simd ! ( ret_ty, SimdReturn ) ;
1414
1399
1415
1400
// Of the same length:
1416
- let ( out_len, _) = arg_tys[ 1 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1417
- let ( out_len2, _) = arg_tys[ 2 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1418
1401
require ! (
1419
1402
in_len == out_len,
1420
1403
InvalidMonomorphization :: SecondArgumentLength {
@@ -1444,11 +1427,6 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1444
1427
InvalidMonomorphization :: ExpectedReturnType { span, name, in_ty, ret_ty }
1445
1428
) ;
1446
1429
1447
- // The second argument must be a simd vector with an element type that's a pointer
1448
- // to the element type of the first argument
1449
- let ( _, element_ty0) = arg_tys[ 0 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1450
- let ( _, element_ty1) = arg_tys[ 1 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1451
-
1452
1430
require ! (
1453
1431
matches!(
1454
1432
element_ty1. kind( ) ,
@@ -1465,20 +1443,15 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1465
1443
}
1466
1444
) ;
1467
1445
1468
- // The element type of the third argument must be a signed integer type of any width:
1469
- let ( _, element_ty2) = arg_tys[ 2 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1470
1446
match element_ty2. kind ( ) {
1471
1447
ty:: Int ( _) => ( ) ,
1472
1448
_ => {
1473
- require ! (
1474
- false ,
1475
- InvalidMonomorphization :: ThirdArgElementType {
1476
- span,
1477
- name,
1478
- expected_element: element_ty2,
1479
- third_arg: arg_tys[ 2 ]
1480
- }
1481
- ) ;
1449
+ return_error ! ( InvalidMonomorphization :: ThirdArgElementType {
1450
+ span,
1451
+ name,
1452
+ expected_element: element_ty2,
1453
+ third_arg: arg_tys[ 2 ]
1454
+ } ) ;
1482
1455
}
1483
1456
}
1484
1457
@@ -1527,19 +1500,13 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1527
1500
// * M: any integer width is supported, will be truncated to i1
1528
1501
1529
1502
// All types must be simd vector types
1530
- require_simd ! ( in_ty, InvalidMonomorphization :: SimdFirst { span, name, ty: in_ty } ) ;
1531
- require_simd ! (
1532
- arg_tys[ 1 ] ,
1533
- InvalidMonomorphization :: SimdSecond { span, name, ty: arg_tys[ 1 ] }
1534
- ) ;
1535
- require_simd ! (
1536
- arg_tys[ 2 ] ,
1537
- InvalidMonomorphization :: SimdThird { span, name, ty: arg_tys[ 2 ] }
1538
- ) ;
1503
+ // The second argument must be a simd vector with an element type that's a pointer
1504
+ // to the element type of the first argument
1505
+ let ( _, element_ty0) = require_simd ! ( in_ty, SimdFirst ) ;
1506
+ let ( element_len1, element_ty1) = require_simd ! ( arg_tys[ 1 ] , SimdSecond ) ;
1507
+ let ( element_len2, element_ty2) = require_simd ! ( arg_tys[ 2 ] , SimdThird ) ;
1539
1508
1540
1509
// Of the same length:
1541
- let ( element_len1, _) = arg_tys[ 1 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1542
- let ( element_len2, _) = arg_tys[ 2 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1543
1510
require ! (
1544
1511
in_len == element_len1,
1545
1512
InvalidMonomorphization :: SecondArgumentLength {
@@ -1563,12 +1530,6 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1563
1530
}
1564
1531
) ;
1565
1532
1566
- // The second argument must be a simd vector with an element type that's a pointer
1567
- // to the element type of the first argument
1568
- let ( _, element_ty0) = arg_tys[ 0 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1569
- let ( _, element_ty1) = arg_tys[ 1 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1570
- let ( _, element_ty2) = arg_tys[ 2 ] . simd_size_and_type ( bx. tcx ( ) ) ;
1571
-
1572
1533
require ! (
1573
1534
matches!(
1574
1535
element_ty1. kind( ) ,
@@ -1590,15 +1551,12 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1590
1551
match element_ty2. kind ( ) {
1591
1552
ty:: Int ( _) => ( ) ,
1592
1553
_ => {
1593
- require ! (
1594
- false ,
1595
- InvalidMonomorphization :: ThirdArgElementType {
1596
- span,
1597
- name,
1598
- expected_element: element_ty2,
1599
- third_arg: arg_tys[ 2 ]
1600
- }
1601
- ) ;
1554
+ return_error ! ( InvalidMonomorphization :: ThirdArgElementType {
1555
+ span,
1556
+ name,
1557
+ expected_element: element_ty2,
1558
+ third_arg: arg_tys[ 2 ]
1559
+ } ) ;
1602
1560
}
1603
1561
}
1604
1562
@@ -1794,8 +1752,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1794
1752
bitwise_red ! ( simd_reduce_any: vector_reduce_or, true ) ;
1795
1753
1796
1754
if name == sym:: simd_cast_ptr {
1797
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1798
- let ( out_len, out_elem) = ret_ty. simd_size_and_type ( bx. tcx ( ) ) ;
1755
+ let ( out_len, out_elem) = require_simd ! ( ret_ty, SimdReturn ) ;
1799
1756
require ! (
1800
1757
in_len == out_len,
1801
1758
InvalidMonomorphization :: ReturnLengthInputType {
@@ -1843,8 +1800,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1843
1800
}
1844
1801
1845
1802
if name == sym:: simd_expose_addr {
1846
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1847
- let ( out_len, out_elem) = ret_ty. simd_size_and_type ( bx. tcx ( ) ) ;
1803
+ let ( out_len, out_elem) = require_simd ! ( ret_ty, SimdReturn ) ;
1848
1804
require ! (
1849
1805
in_len == out_len,
1850
1806
InvalidMonomorphization :: ReturnLengthInputType {
@@ -1872,8 +1828,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1872
1828
}
1873
1829
1874
1830
if name == sym:: simd_from_exposed_addr {
1875
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1876
- let ( out_len, out_elem) = ret_ty. simd_size_and_type ( bx. tcx ( ) ) ;
1831
+ let ( out_len, out_elem) = require_simd ! ( ret_ty, SimdReturn ) ;
1877
1832
require ! (
1878
1833
in_len == out_len,
1879
1834
InvalidMonomorphization :: ReturnLengthInputType {
@@ -1901,8 +1856,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1901
1856
}
1902
1857
1903
1858
if name == sym:: simd_cast || name == sym:: simd_as {
1904
- require_simd ! ( ret_ty, InvalidMonomorphization :: SimdReturn { span, name, ty: ret_ty } ) ;
1905
- let ( out_len, out_elem) = ret_ty. simd_size_and_type ( bx. tcx ( ) ) ;
1859
+ let ( out_len, out_elem) = require_simd ! ( ret_ty, SimdReturn ) ;
1906
1860
require ! (
1907
1861
in_len == out_len,
1908
1862
InvalidMonomorphization :: ReturnLengthInputType {
@@ -1989,17 +1943,14 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
1989
1943
}
1990
1944
_ => { /* Unsupported. Fallthrough. */ }
1991
1945
}
1992
- require ! (
1993
- false ,
1994
- InvalidMonomorphization :: UnsupportedCast {
1995
- span,
1996
- name,
1997
- in_ty,
1998
- in_elem,
1999
- ret_ty,
2000
- out_elem
2001
- }
2002
- ) ;
1946
+ return_error ! ( InvalidMonomorphization :: UnsupportedCast {
1947
+ span,
1948
+ name,
1949
+ in_ty,
1950
+ in_elem,
1951
+ ret_ty,
1952
+ out_elem
1953
+ } ) ;
2003
1954
}
2004
1955
macro_rules! arith_binary {
2005
1956
( $( $name: ident: $( $( $p: ident) ,* => $call: ident) ,* ; ) * ) => {
@@ -2010,8 +1961,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
2010
1961
} ) *
2011
1962
_ => { } ,
2012
1963
}
2013
- require!(
2014
- false ,
1964
+ return_error!(
2015
1965
InvalidMonomorphization :: UnsupportedOperation { span, name, in_ty, in_elem }
2016
1966
) ;
2017
1967
} ) *
@@ -2041,8 +1991,7 @@ fn generic_simd_intrinsic<'ll, 'tcx>(
2041
1991
} ) *
2042
1992
_ => { } ,
2043
1993
}
2044
- require!(
2045
- false ,
1994
+ return_error!(
2046
1995
InvalidMonomorphization :: UnsupportedOperation { span, name, in_ty, in_elem }
2047
1996
) ;
2048
1997
} ) *
0 commit comments