blob: 40924d4dc7c06d44086c6062cce90eb7ceb54bf1 [file] [log] [blame]
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
; RUN: llc -mtriple=aarch64-none-none-eabi -verify-machineinstrs %s -o - | FileCheck %s --check-prefixes=CHECK,SDISEL
; RUN: llc -mtriple=aarch64-none-none-eabi -global-isel -verify-machineinstrs %s -o - | FileCheck %s --check-prefixes=CHECK,GISEL
define i32 @and_eq_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, eq
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, eq
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, eq
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, eq
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, eq
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, eq
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, eq
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, eq
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, eq
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_eq_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_eq_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, eq
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_eq_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, eq
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp eq i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ne
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, ne
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, ne
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, ne
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ne
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ne
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ne
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ne
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, ne
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ne_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ne_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, ne
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ne_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ne
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ne i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lo
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, lo
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, lo
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, lo
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lo
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lo
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lo
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lo
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, lo
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ult_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ult_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, lo
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ult_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lo
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ult i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ls
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, ls
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, ls
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, ls
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ls
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ls
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ls
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ls
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, ls
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ule_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ule_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, ls
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ule_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ls
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ule i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hi
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, hi
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, hi
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, hi
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hi
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hi
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hi
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hi
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, hi
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_ugt_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_ugt_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, hi
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_ugt_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hi
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp ugt i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hs
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, hs
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, hs
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, hs
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hs
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hs
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hs
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, hs
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, hs
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_uge_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_uge_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, hs
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_uge_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, hs
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp uge i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lt
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, lt
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, lt
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, lt
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lt
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lt
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lt
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, lt
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, lt
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_slt_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_slt_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, lt
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_slt_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, lt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp slt i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, le
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, le
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, le
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, le
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, le
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, le
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, le
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, le
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, le
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sle_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sle_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, le
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sle_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, le
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sle i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, gt
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, gt
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, gt
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, gt
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, gt
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, gt
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, gt
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, gt
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, gt
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sgt_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sgt_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, gt
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sgt_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, gt
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sgt i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_eq(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_eq:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ge
; SDISEL-NEXT: cset w0, eq
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_eq:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, eq
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp eq i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_ne(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_ne:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, ge
; SDISEL-NEXT: cset w0, ne
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_ne:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ne
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp ne i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_ult(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_ult:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, ge
; SDISEL-NEXT: cset w0, lo
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_ult:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lo
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp ult i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_ule(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_ule:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #2, ge
; SDISEL-NEXT: cset w0, ls
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_ule:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ls
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp ule i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_ugt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_ugt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ge
; SDISEL-NEXT: cset w0, hi
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_ugt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hi
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp ugt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_uge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_uge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ge
; SDISEL-NEXT: cset w0, hs
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_uge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, hs
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp uge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_slt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_slt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ge
; SDISEL-NEXT: cset w0, lt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_slt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, lt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp slt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_sle(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_sle:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #0, ge
; SDISEL-NEXT: cset w0, le
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_sle:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, le
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp sle i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_sgt(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_sgt:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #4, ge
; SDISEL-NEXT: cset w0, gt
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_sgt:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, gt
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp sgt i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
define i32 @and_sge_sge(i32 %s0, i32 %s1, i32 %s2, i32 %s3) {
; SDISEL-LABEL: and_sge_sge:
; SDISEL: // %bb.0: // %entry
; SDISEL-NEXT: cmp w0, w1
; SDISEL-NEXT: ccmp w2, w3, #8, ge
; SDISEL-NEXT: cset w0, ge
; SDISEL-NEXT: ret
;
; GISEL-LABEL: and_sge_sge:
; GISEL: // %bb.0: // %entry
; GISEL-NEXT: cmp w0, w1
; GISEL-NEXT: cset w8, ge
; GISEL-NEXT: cmp w2, w3
; GISEL-NEXT: cset w9, ge
; GISEL-NEXT: and w0, w8, w9
; GISEL-NEXT: ret
entry:
%c0 = icmp sge i32 %s0, %s1
%c1 = icmp sge i32 %s2, %s3
%a = and i1 %c0, %c1
%z = zext i1 %a to i32
ret i32 %z
}
;; NOTE: These prefixes are unused and the list is autogenerated. Do not add tests below this line:
; CHECK: {{.*}}