-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
always use
align_offset
in is_aligned_to
+ add assembly test
- Loading branch information
Lukas Markeffsky
committed
Nov 19, 2022
1 parent
4696e89
commit daccb8c
Showing
3 changed files
with
70 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
// assembly-output: emit-asm | ||
// min-llvm-version: 14.0 | ||
// only-x86_64 | ||
// revisions: opt-speed opt-size | ||
// [opt-speed] compile-flags: -Copt-level=1 | ||
// [opt-size] compile-flags: -Copt-level=s | ||
#![crate_type="rlib"] | ||
|
||
#![feature(core_intrinsics)] | ||
#![feature(pointer_is_aligned)] | ||
|
||
// CHECK-LABEL: is_aligned_to_unchecked | ||
// CHECK: decq %rsi | ||
// CHECK-NEXT: testq %rdi, %rsi | ||
// CHECK-NEXT: sete %al | ||
// CHECK-NEXT: retq | ||
#[no_mangle] | ||
pub unsafe fn is_aligned_to_unchecked(ptr: *const u8, align: usize) -> bool { | ||
unsafe { | ||
std::intrinsics::assume(align.is_power_of_two()) | ||
} | ||
ptr.is_aligned_to(align) | ||
} | ||
|
||
// CHECK-LABEL: is_aligned_1 | ||
// CHECK: movb $1, %al | ||
// CHECK-NEXT: retq | ||
#[no_mangle] | ||
pub fn is_aligned_1(ptr: *const u8) -> bool { | ||
ptr.is_aligned() | ||
} | ||
|
||
// CHECK-LABEL: is_aligned_2 | ||
// CHECK: testb $1, %dil | ||
// CHECK-NEXT: sete %al | ||
// CHECK-NEXT: retq | ||
#[no_mangle] | ||
pub fn is_aligned_2(ptr: *const u16) -> bool { | ||
ptr.is_aligned() | ||
} | ||
|
||
// CHECK-LABEL: is_aligned_4 | ||
// CHECK: testb $3, %dil | ||
// CHECK-NEXT: sete %al | ||
// CHECK-NEXT: retq | ||
#[no_mangle] | ||
pub fn is_aligned_4(ptr: *const u32) -> bool { | ||
ptr.is_aligned() | ||
} | ||
|
||
// CHECK-LABEL: is_aligned_8 | ||
// CHECK: testb $7, %dil | ||
// CHECK-NEXT: sete %al | ||
// CHECK-NEXT: retq | ||
#[no_mangle] | ||
pub fn is_aligned_8(ptr: *const u64) -> bool { | ||
ptr.is_aligned() | ||
} |