Skip to content

Commit 13e2400

Browse files
committed
Add ctlz_nonzero & cttz_nonzero intrinsics
LLVM currently doesn't remove the "bypass if argument is zero" assembly inside branches where the value is known to be non-zero, pessimizing code that uses uN::leading_zeros
1 parent 9454dd5 commit 13e2400

File tree

4 files changed

+80
-2
lines changed

4 files changed

+80
-2
lines changed

src/libcore/intrinsics.rs

+34
Original file line numberDiff line numberDiff line change
@@ -1229,6 +1229,23 @@ extern "rust-intrinsic" {
12291229
/// ```
12301230
pub fn ctlz<T>(x: T) -> T;
12311231

1232+
/// Like `ctlz`, but extra-unsafe as it returns `undef` when
1233+
/// given an `x` with value `0`.
1234+
///
1235+
/// # Examples
1236+
///
1237+
/// ```
1238+
/// #![feature(core_intrinsics)]
1239+
///
1240+
/// use std::intrinsics::ctlz_nonzero;
1241+
///
1242+
/// let x = 0b0001_1100_u8;
1243+
/// let num_leading = unsafe { ctlz_nonzero(x) };
1244+
/// assert_eq!(num_leading, 3);
1245+
/// ```
1246+
#[cfg(not(stage0))]
1247+
pub fn ctlz_nonzero<T>(x: T) -> T;
1248+
12321249
/// Returns the number of trailing unset bits (zeroes) in an integer type `T`.
12331250
///
12341251
/// # Examples
@@ -1256,6 +1273,23 @@ extern "rust-intrinsic" {
12561273
/// ```
12571274
pub fn cttz<T>(x: T) -> T;
12581275

1276+
/// Like `cttz`, but extra-unsafe as it returns `undef` when
1277+
/// given an `x` with value `0`.
1278+
///
1279+
/// # Examples
1280+
///
1281+
/// ```
1282+
/// #![feature(core_intrinsics)]
1283+
///
1284+
/// use std::intrinsics::cttz_nonzero;
1285+
///
1286+
/// let x = 0b0011_1000_u8;
1287+
/// let num_trailing = unsafe { cttz_nonzero(x) };
1288+
/// assert_eq!(num_trailing, 3);
1289+
/// ```
1290+
#[cfg(not(stage0))]
1291+
pub fn cttz_nonzero<T>(x: T) -> T;
1292+
12591293
/// Reverses the bytes in an integer type `T`.
12601294
pub fn bswap<T>(x: T) -> T;
12611295

src/librustc_trans/intrinsic.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ pub fn trans_intrinsic_call<'a, 'tcx>(bcx: &Builder<'a, 'tcx>,
267267
};
268268
bcx.call(expect, &[llargs[0], C_i32(ccx, rw), llargs[1], C_i32(ccx, cache_type)], None)
269269
},
270-
"ctlz" | "cttz" | "ctpop" | "bswap" |
270+
"ctlz" | "ctlz_nonzero" | "cttz" | "cttz_nonzero" | "ctpop" | "bswap" |
271271
"add_with_overflow" | "sub_with_overflow" | "mul_with_overflow" |
272272
"overflowing_add" | "overflowing_sub" | "overflowing_mul" |
273273
"unchecked_div" | "unchecked_rem" | "unchecked_shl" | "unchecked_shr" => {
@@ -280,6 +280,12 @@ pub fn trans_intrinsic_call<'a, 'tcx>(bcx: &Builder<'a, 'tcx>,
280280
let llfn = ccx.get_intrinsic(&format!("llvm.{}.i{}", name, width));
281281
bcx.call(llfn, &[llargs[0], y], None)
282282
}
283+
"ctlz_nonzero" | "cttz_nonzero" => {
284+
let y = C_bool(bcx.ccx, true);
285+
let llvm_name = &format!("llvm.{}.i{}", &name[..4], width);
286+
let llfn = ccx.get_intrinsic(llvm_name);
287+
bcx.call(llfn, &[llargs[0], y], None)
288+
}
283289
"ctpop" => bcx.call(ccx.get_intrinsic(&format!("llvm.ctpop.i{}", width)),
284290
&llargs, None),
285291
"bswap" => {

src/librustc_typeck/check/intrinsic.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,8 @@ pub fn check_intrinsic_type<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
272272
"volatile_store" =>
273273
(1, vec![ tcx.mk_mut_ptr(param(0)), param(0) ], tcx.mk_nil()),
274274

275-
"ctpop" | "ctlz" | "cttz" | "bswap" => (1, vec![param(0)], param(0)),
275+
"ctpop" | "ctlz" | "ctlz_nonzero" | "cttz" | "cttz_nonzero" | "bswap" =>
276+
(1, vec![param(0)], param(0)),
276277

277278
"add_with_overflow" | "sub_with_overflow" | "mul_with_overflow" =>
278279
(1, vec![param(0), param(0)],

src/test/run-pass/intrinsics-integer.rs

+37
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ mod rusti {
1414
extern "rust-intrinsic" {
1515
pub fn ctpop<T>(x: T) -> T;
1616
pub fn ctlz<T>(x: T) -> T;
17+
pub fn ctlz_nonzero<T>(x: T) -> T;
1718
pub fn cttz<T>(x: T) -> T;
19+
pub fn cttz_nonzero<T>(x: T) -> T;
1820
pub fn bswap<T>(x: T) -> T;
1921
}
2022
}
@@ -68,6 +70,21 @@ pub fn main() {
6870
assert_eq!(ctlz(100u32), 25); assert_eq!(ctlz(100i32), 25);
6971
assert_eq!(ctlz(100u64), 57); assert_eq!(ctlz(100i64), 57);
7072

73+
assert_eq!(ctlz_nonzero(1u8), 7); assert_eq!(ctlz_nonzero(1i8), 7);
74+
assert_eq!(ctlz_nonzero(1u16), 15); assert_eq!(ctlz_nonzero(1i16), 15);
75+
assert_eq!(ctlz_nonzero(1u32), 31); assert_eq!(ctlz_nonzero(1i32), 31);
76+
assert_eq!(ctlz_nonzero(1u64), 63); assert_eq!(ctlz_nonzero(1i64), 63);
77+
78+
assert_eq!(ctlz_nonzero(10u8), 4); assert_eq!(ctlz_nonzero(10i8), 4);
79+
assert_eq!(ctlz_nonzero(10u16), 12); assert_eq!(ctlz_nonzero(10i16), 12);
80+
assert_eq!(ctlz_nonzero(10u32), 28); assert_eq!(ctlz_nonzero(10i32), 28);
81+
assert_eq!(ctlz_nonzero(10u64), 60); assert_eq!(ctlz_nonzero(10i64), 60);
82+
83+
assert_eq!(ctlz_nonzero(100u8), 1); assert_eq!(ctlz_nonzero(100i8), 1);
84+
assert_eq!(ctlz_nonzero(100u16), 9); assert_eq!(ctlz_nonzero(100i16), 9);
85+
assert_eq!(ctlz_nonzero(100u32), 25); assert_eq!(ctlz_nonzero(100i32), 25);
86+
assert_eq!(ctlz_nonzero(100u64), 57); assert_eq!(ctlz_nonzero(100i64), 57);
87+
7188
assert_eq!(cttz(-1i8 as u8), 0); assert_eq!(cttz(-1i8), 0);
7289
assert_eq!(cttz(-1i16 as u16), 0); assert_eq!(cttz(-1i16), 0);
7390
assert_eq!(cttz(-1i32 as u32), 0); assert_eq!(cttz(-1i32), 0);
@@ -93,6 +110,26 @@ pub fn main() {
93110
assert_eq!(cttz(100u32), 2); assert_eq!(cttz(100i32), 2);
94111
assert_eq!(cttz(100u64), 2); assert_eq!(cttz(100i64), 2);
95112

113+
assert_eq!(cttz_nonzero(-1i8 as u8), 0); assert_eq!(cttz_nonzero(-1i8), 0);
114+
assert_eq!(cttz_nonzero(-1i16 as u16), 0); assert_eq!(cttz_nonzero(-1i16), 0);
115+
assert_eq!(cttz_nonzero(-1i32 as u32), 0); assert_eq!(cttz_nonzero(-1i32), 0);
116+
assert_eq!(cttz_nonzero(-1i64 as u64), 0); assert_eq!(cttz_nonzero(-1i64), 0);
117+
118+
assert_eq!(cttz_nonzero(1u8), 0); assert_eq!(cttz_nonzero(1i8), 0);
119+
assert_eq!(cttz_nonzero(1u16), 0); assert_eq!(cttz_nonzero(1i16), 0);
120+
assert_eq!(cttz_nonzero(1u32), 0); assert_eq!(cttz_nonzero(1i32), 0);
121+
assert_eq!(cttz_nonzero(1u64), 0); assert_eq!(cttz_nonzero(1i64), 0);
122+
123+
assert_eq!(cttz_nonzero(10u8), 1); assert_eq!(cttz_nonzero(10i8), 1);
124+
assert_eq!(cttz_nonzero(10u16), 1); assert_eq!(cttz_nonzero(10i16), 1);
125+
assert_eq!(cttz_nonzero(10u32), 1); assert_eq!(cttz_nonzero(10i32), 1);
126+
assert_eq!(cttz_nonzero(10u64), 1); assert_eq!(cttz_nonzero(10i64), 1);
127+
128+
assert_eq!(cttz_nonzero(100u8), 2); assert_eq!(cttz_nonzero(100i8), 2);
129+
assert_eq!(cttz_nonzero(100u16), 2); assert_eq!(cttz_nonzero(100i16), 2);
130+
assert_eq!(cttz_nonzero(100u32), 2); assert_eq!(cttz_nonzero(100i32), 2);
131+
assert_eq!(cttz_nonzero(100u64), 2); assert_eq!(cttz_nonzero(100i64), 2);
132+
96133
assert_eq!(bswap(0x0Au8), 0x0A); // no-op
97134
assert_eq!(bswap(0x0Ai8), 0x0A); // no-op
98135
assert_eq!(bswap(0x0A0Bu16), 0x0B0A);

0 commit comments

Comments
 (0)