|
| 1 | +// compile-flags: -C opt-level=1 -Z merge-functions=disabled |
| 2 | +// min-llvm-version: 15.0 |
| 3 | +// only-x86_64 |
| 4 | + |
| 5 | +#![crate_type = "lib"] |
| 6 | + |
| 7 | +use std::cmp::Ordering; |
| 8 | + |
| 9 | +type TwoTuple = (i16, u16); |
| 10 | + |
| 11 | +// |
| 12 | +// The operators are all overridden directly, so should optimize easily. |
| 13 | +// |
| 14 | +// Yes, the `s[lg]t` is correct for the `[lg]e` version because it's only used |
| 15 | +// in the side of the select where we know the values are *not* equal. |
| 16 | +// |
| 17 | + |
| 18 | +// CHECK-LABEL: @check_lt_direct |
| 19 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 20 | +#[no_mangle] |
| 21 | +pub fn check_lt_direct(a: TwoTuple, b: TwoTuple) -> bool { |
| 22 | + // CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 23 | + // CHECK-DAG: %[[CMP0:.+]] = icmp slt i16 %[[A0]], %[[B0]] |
| 24 | + // CHECK-DAG: %[[CMP1:.+]] = icmp ult i16 %[[A1]], %[[B1]] |
| 25 | + // CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 26 | + // CHECK: ret i1 %[[R]] |
| 27 | + a < b |
| 28 | +} |
| 29 | + |
| 30 | +// CHECK-LABEL: @check_le_direct |
| 31 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 32 | +#[no_mangle] |
| 33 | +pub fn check_le_direct(a: TwoTuple, b: TwoTuple) -> bool { |
| 34 | + // CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 35 | + // CHECK-DAG: %[[CMP0:.+]] = icmp slt i16 %[[A0]], %[[B0]] |
| 36 | + // CHECK-DAG: %[[CMP1:.+]] = icmp ule i16 %[[A1]], %[[B1]] |
| 37 | + // CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 38 | + // CHECK: ret i1 %[[R]] |
| 39 | + a <= b |
| 40 | +} |
| 41 | + |
| 42 | +// CHECK-LABEL: @check_gt_direct |
| 43 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 44 | +#[no_mangle] |
| 45 | +pub fn check_gt_direct(a: TwoTuple, b: TwoTuple) -> bool { |
| 46 | + // CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 47 | + // CHECK-DAG: %[[CMP0:.+]] = icmp sgt i16 %[[A0]], %[[B0]] |
| 48 | + // CHECK-DAG: %[[CMP1:.+]] = icmp ugt i16 %[[A1]], %[[B1]] |
| 49 | + // CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 50 | + // CHECK: ret i1 %[[R]] |
| 51 | + a > b |
| 52 | +} |
| 53 | + |
| 54 | +// CHECK-LABEL: @check_ge_direct |
| 55 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 56 | +#[no_mangle] |
| 57 | +pub fn check_ge_direct(a: TwoTuple, b: TwoTuple) -> bool { |
| 58 | + // CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 59 | + // CHECK-DAG: %[[CMP0:.+]] = icmp sgt i16 %[[A0]], %[[B0]] |
| 60 | + // CHECK-DAG: %[[CMP1:.+]] = icmp uge i16 %[[A1]], %[[B1]] |
| 61 | + // CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 62 | + // CHECK: ret i1 %[[R]] |
| 63 | + a >= b |
| 64 | +} |
| 65 | + |
| 66 | +// |
| 67 | +// These ones are harder, since there are more intermediate values to remove. |
| 68 | +// |
| 69 | +// `<` seems to be getting lucky right now, so test that doesn't regress. |
| 70 | +// |
| 71 | +// The others, however, aren't managing to optimize away the extra `select`s yet. |
| 72 | +// See <https://github.com/rust-lang/rust/issues/106107> for more about this. |
| 73 | +// |
| 74 | + |
| 75 | +// CHECK-LABEL: @check_lt_via_cmp |
| 76 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 77 | +#[no_mangle] |
| 78 | +pub fn check_lt_via_cmp(a: TwoTuple, b: TwoTuple) -> bool { |
| 79 | + // CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 80 | + // CHECK-DAG: %[[CMP0:.+]] = icmp slt i16 %[[A0]], %[[B0]] |
| 81 | + // CHECK-DAG: %[[CMP1:.+]] = icmp ult i16 %[[A1]], %[[B1]] |
| 82 | + // CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 83 | + // CHECK: ret i1 %[[R]] |
| 84 | + Ord::cmp(&a, &b).is_lt() |
| 85 | +} |
| 86 | + |
| 87 | +// CHECK-LABEL: @check_le_via_cmp |
| 88 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 89 | +#[no_mangle] |
| 90 | +pub fn check_le_via_cmp(a: TwoTuple, b: TwoTuple) -> bool { |
| 91 | + // FIXME-CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 92 | + // FIXME-CHECK-DAG: %[[CMP0:.+]] = icmp sle i16 %[[A0]], %[[B0]] |
| 93 | + // FIXME-CHECK-DAG: %[[CMP1:.+]] = icmp ule i16 %[[A1]], %[[B1]] |
| 94 | + // FIXME-CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 95 | + // FIXME-CHECK: ret i1 %[[R]] |
| 96 | + Ord::cmp(&a, &b).is_le() |
| 97 | +} |
| 98 | + |
| 99 | +// CHECK-LABEL: @check_gt_via_cmp |
| 100 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 101 | +#[no_mangle] |
| 102 | +pub fn check_gt_via_cmp(a: TwoTuple, b: TwoTuple) -> bool { |
| 103 | + // FIXME-CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 104 | + // FIXME-CHECK-DAG: %[[CMP0:.+]] = icmp sgt i16 %[[A0]], %[[B0]] |
| 105 | + // FIXME-CHECK-DAG: %[[CMP1:.+]] = icmp ugt i16 %[[A1]], %[[B1]] |
| 106 | + // FIXME-CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 107 | + // FIXME-CHECK: ret i1 %[[R]] |
| 108 | + Ord::cmp(&a, &b).is_gt() |
| 109 | +} |
| 110 | + |
| 111 | +// CHECK-LABEL: @check_ge_via_cmp |
| 112 | +// CHECK-SAME: (i16 noundef %[[A0:.+]], i16 noundef %[[A1:.+]], i16 noundef %[[B0:.+]], i16 noundef %[[B1:.+]]) |
| 113 | +#[no_mangle] |
| 114 | +pub fn check_ge_via_cmp(a: TwoTuple, b: TwoTuple) -> bool { |
| 115 | + // FIXME-CHECK-DAG: %[[EQ:.+]] = icmp eq i16 %[[A0]], %[[B0]] |
| 116 | + // FIXME-CHECK-DAG: %[[CMP0:.+]] = icmp sge i16 %[[A0]], %[[B0]] |
| 117 | + // FIXME-CHECK-DAG: %[[CMP1:.+]] = icmp uge i16 %[[A1]], %[[B1]] |
| 118 | + // FIXME-CHECK: %[[R:.+]] = select i1 %[[EQ]], i1 %[[CMP1]], i1 %[[CMP0]] |
| 119 | + // FIXME-CHECK: ret i1 %[[R]] |
| 120 | + Ord::cmp(&a, &b).is_ge() |
| 121 | +} |
0 commit comments