2022-10-24 00:02:50 +00:00
|
|
|
// compile-flags: -O
|
2022-11-16 23:58:43 +00:00
|
|
|
// ignore-debug (because unchecked is checked in debug)
|
2022-10-24 00:02:50 +00:00
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
2023-09-07 03:24:23 +00:00
|
|
|
#![feature(unchecked_shifts)]
|
2022-10-24 00:02:50 +00:00
|
|
|
|
|
|
|
// CHECK-LABEL: @unchecked_shl_unsigned_same
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn unchecked_shl_unsigned_same(a: u32, b: u32) -> u32 {
|
2023-06-16 22:21:34 +00:00
|
|
|
// CHECK-NOT: assume
|
2022-10-24 00:02:50 +00:00
|
|
|
// CHECK-NOT: and i32
|
|
|
|
// CHECK: shl i32 %a, %b
|
|
|
|
// CHECK-NOT: and i32
|
|
|
|
a.unchecked_shl(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @unchecked_shl_unsigned_smaller
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn unchecked_shl_unsigned_smaller(a: u16, b: u32) -> u16 {
|
|
|
|
// This uses -DAG to avoid failing on irrelevant reorderings,
|
|
|
|
// like emitting the truncation earlier.
|
|
|
|
|
|
|
|
// CHECK-DAG: %[[INRANGE:.+]] = icmp ult i32 %b, 65536
|
|
|
|
// CHECK-DAG: tail call void @llvm.assume(i1 %[[INRANGE]])
|
|
|
|
// CHECK-DAG: %[[TRUNC:.+]] = trunc i32 %b to i16
|
|
|
|
// CHECK-DAG: shl i16 %a, %[[TRUNC]]
|
|
|
|
a.unchecked_shl(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @unchecked_shl_unsigned_bigger
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn unchecked_shl_unsigned_bigger(a: u64, b: u32) -> u64 {
|
2023-06-16 22:21:34 +00:00
|
|
|
// CHECK-NOT: assume
|
2023-11-13 15:43:33 +00:00
|
|
|
// CHECK: %[[EXT:.+]] = zext{{( nneg)?}} i32 %b to i64
|
2022-10-24 00:02:50 +00:00
|
|
|
// CHECK: shl i64 %a, %[[EXT]]
|
|
|
|
a.unchecked_shl(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @unchecked_shr_signed_same
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn unchecked_shr_signed_same(a: i32, b: u32) -> i32 {
|
2023-06-16 22:21:34 +00:00
|
|
|
// CHECK-NOT: assume
|
2022-10-24 00:02:50 +00:00
|
|
|
// CHECK-NOT: and i32
|
|
|
|
// CHECK: ashr i32 %a, %b
|
|
|
|
// CHECK-NOT: and i32
|
|
|
|
a.unchecked_shr(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @unchecked_shr_signed_smaller
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn unchecked_shr_signed_smaller(a: i16, b: u32) -> i16 {
|
|
|
|
// This uses -DAG to avoid failing on irrelevant reorderings,
|
|
|
|
// like emitting the truncation earlier.
|
|
|
|
|
|
|
|
// CHECK-DAG: %[[INRANGE:.+]] = icmp ult i32 %b, 32768
|
|
|
|
// CHECK-DAG: tail call void @llvm.assume(i1 %[[INRANGE]])
|
|
|
|
// CHECK-DAG: %[[TRUNC:.+]] = trunc i32 %b to i16
|
|
|
|
// CHECK-DAG: ashr i16 %a, %[[TRUNC]]
|
|
|
|
a.unchecked_shr(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK-LABEL: @unchecked_shr_signed_bigger
|
|
|
|
#[no_mangle]
|
|
|
|
pub unsafe fn unchecked_shr_signed_bigger(a: i64, b: u32) -> i64 {
|
2023-06-16 22:21:34 +00:00
|
|
|
// CHECK-NOT: assume
|
2023-11-13 15:43:33 +00:00
|
|
|
// CHECK: %[[EXT:.+]] = zext{{( nneg)?}} i32 %b to i64
|
2022-10-24 00:02:50 +00:00
|
|
|
// CHECK: ashr i64 %a, %[[EXT]]
|
|
|
|
a.unchecked_shr(b)
|
|
|
|
}
|