mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ revisions: REGULAR LLVM21
 | 
						|
//@ min-llvm-version: 20
 | 
						|
//@ compile-flags: -Copt-level=3 -Zmerge-functions=disabled
 | 
						|
//@ [LLVM21] min-llvm-version: 21
 | 
						|
#![crate_type = "lib"]
 | 
						|
 | 
						|
extern crate core;
 | 
						|
use core::cmp::Ordering;
 | 
						|
use core::num::NonZero;
 | 
						|
use core::ptr::NonNull;
 | 
						|
 | 
						|
// CHECK-LABEL: @non_zero_eq
 | 
						|
#[no_mangle]
 | 
						|
pub fn non_zero_eq(l: Option<NonZero<u32>>, r: Option<NonZero<u32>>) -> bool {
 | 
						|
    // CHECK: start:
 | 
						|
    // CHECK-NEXT: icmp eq i32
 | 
						|
    // CHECK-NEXT: ret i1
 | 
						|
    l == r
 | 
						|
}
 | 
						|
 | 
						|
// CHECK-LABEL: @non_zero_signed_eq
 | 
						|
#[no_mangle]
 | 
						|
pub fn non_zero_signed_eq(l: Option<NonZero<i64>>, r: Option<NonZero<i64>>) -> bool {
 | 
						|
    // CHECK: start:
 | 
						|
    // CHECK-NEXT: icmp eq i64
 | 
						|
    // CHECK-NEXT: ret i1
 | 
						|
    l == r
 | 
						|
}
 | 
						|
 | 
						|
// FIXME(#49892)
 | 
						|
// This currently relies on a manual implementation of `PartialOrd`/`Ord` for `Option`
 | 
						|
// Once LLVM is better able to optimize this pattern, we can return to using a derive.
 | 
						|
// CHECK-LABEL: @non_zero_ord
 | 
						|
#[no_mangle]
 | 
						|
pub fn non_zero_ord(a: Option<NonZero<u32>>, b: Option<NonZero<u32>>) -> bool {
 | 
						|
    // CHECK: start:
 | 
						|
    // CHECK-NEXT: icmp ult i32
 | 
						|
    // CHECK-NEXT: ret i1
 | 
						|
    a < b
 | 
						|
}
 | 
						|
 | 
						|
// CHECK-LABEL: @non_null_eq
 | 
						|
#[no_mangle]
 | 
						|
pub fn non_null_eq(l: Option<NonNull<u8>>, r: Option<NonNull<u8>>) -> bool {
 | 
						|
    // CHECK: start:
 | 
						|
    // CHECK-NEXT: icmp eq ptr
 | 
						|
    // CHECK-NEXT: ret i1
 | 
						|
    l == r
 | 
						|
}
 | 
						|
 | 
						|
// CHECK-LABEL: @ordering_eq
 | 
						|
#[no_mangle]
 | 
						|
pub fn ordering_eq(l: Option<Ordering>, r: Option<Ordering>) -> bool {
 | 
						|
    // CHECK: start:
 | 
						|
    // CHECK-NEXT: icmp eq i8
 | 
						|
    // CHECK-NEXT: ret i1
 | 
						|
    l == r
 | 
						|
}
 | 
						|
 | 
						|
#[derive(PartialEq)]
 | 
						|
pub enum EnumWithNiche {
 | 
						|
    A,
 | 
						|
    B,
 | 
						|
    C,
 | 
						|
    D,
 | 
						|
    E,
 | 
						|
    F,
 | 
						|
    G,
 | 
						|
}
 | 
						|
 | 
						|
// CHECK-LABEL: @niche_eq
 | 
						|
#[no_mangle]
 | 
						|
pub fn niche_eq(l: Option<EnumWithNiche>, r: Option<EnumWithNiche>) -> bool {
 | 
						|
    // CHECK: start:
 | 
						|
    // CHECK-NEXT: icmp eq i8
 | 
						|
    // CHECK-NEXT: ret i1
 | 
						|
    l == r
 | 
						|
}
 | 
						|
 | 
						|
// LLVM21-LABEL: @bool_eq
 | 
						|
#[no_mangle]
 | 
						|
pub fn bool_eq(l: Option<bool>, r: Option<bool>) -> bool {
 | 
						|
    // LLVM21: start:
 | 
						|
    // LLVM21-NEXT: icmp eq i8
 | 
						|
    // LLVM21-NEXT: ret i1
 | 
						|
    l == r
 | 
						|
}
 |