rust/tests/assembly/is_aligned.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.2 KiB
Rust
Raw Permalink Normal View History

//@ assembly-output: emit-asm
//@ only-x86_64
//@ ignore-sgx
//@ revisions: opt-speed opt-size
2024-02-07 09:30:39 -06:00
//@ [opt-speed] compile-flags: -Copt-level=2 -Cdebug-assertions=no
//@ [opt-size] compile-flags: -Copt-level=s -Cdebug-assertions=no
2024-05-28 22:57:23 -05:00
#![crate_type = "rlib"]
#![feature(core_intrinsics)]
#![feature(pointer_is_aligned_to)]
// CHECK-LABEL: is_aligned_to_unchecked
2022-11-11 08:52:49 -06:00
// CHECK: decq
// CHECK-NEXT: testq
// CHECK-NEXT: sete
2022-11-16 14:07:51 -06:00
// CHECK: retq
#[no_mangle]
pub unsafe fn is_aligned_to_unchecked(ptr: *const u8, align: usize) -> bool {
2024-05-28 22:57:23 -05:00
unsafe { std::intrinsics::assume(align.is_power_of_two()) }
ptr.is_aligned_to(align)
}
// CHECK-LABEL: is_aligned_1
2022-11-11 08:52:49 -06:00
// CHECK: movb $1
2022-11-16 14:07:51 -06:00
// CHECK: retq
#[no_mangle]
pub fn is_aligned_1(ptr: *const u8) -> bool {
ptr.is_aligned()
}
// CHECK-LABEL: is_aligned_2
2022-11-11 08:52:49 -06:00
// CHECK: testb $1
// CHECK-NEXT: sete
2022-11-16 14:07:51 -06:00
// CHECK: retq
#[no_mangle]
pub fn is_aligned_2(ptr: *const u16) -> bool {
ptr.is_aligned()
}
// CHECK-LABEL: is_aligned_4
2022-11-11 08:52:49 -06:00
// CHECK: testb $3
// CHECK-NEXT: sete
2022-11-16 14:07:51 -06:00
// CHECK: retq
#[no_mangle]
pub fn is_aligned_4(ptr: *const u32) -> bool {
ptr.is_aligned()
}
// CHECK-LABEL: is_aligned_8
2022-11-11 08:52:49 -06:00
// CHECK: testb $7
// CHECK-NEXT: sete
2022-11-16 14:07:51 -06:00
// CHECK: retq
#[no_mangle]
pub fn is_aligned_8(ptr: *const u64) -> bool {
ptr.is_aligned()
}