File: knownbits-select-from-cond.ll

package info (click to toggle)
llvm-toolchain-19 1%3A19.1.4-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,998,488 kB
  • sloc: cpp: 6,951,470; ansic: 1,486,052; asm: 913,550; python: 232,020; f90: 80,126; objc: 75,349; lisp: 37,276; pascal: 16,990; sh: 9,935; ml: 5,058; perl: 4,724; awk: 3,523; makefile: 3,164; javascript: 2,504; xml: 892; fortran: 664; cs: 573
file content (81 lines) | stat: -rw-r--r-- 3,016 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
; NOTE: Assertions have been autogenerated by utils/update_test_checks.py
; RUN: opt -passes=instcombine -S < %s | FileCheck %s

define i8 @select_condition_implies_highbits_op1(i8 %xx, i8 noundef %y) {
; CHECK-LABEL: @select_condition_implies_highbits_op1(
; CHECK-NEXT:    [[X:%.*]] = and i8 [[XX:%.*]], 15
; CHECK-NEXT:    [[COND:%.*]] = icmp ult i8 [[Y:%.*]], 3
; CHECK-NEXT:    [[SEL:%.*]] = select i1 [[COND]], i8 [[Y]], i8 [[X]]
; CHECK-NEXT:    [[R:%.*]] = or disjoint i8 [[SEL]], 32
; CHECK-NEXT:    ret i8 [[R]]
;
  %x = and i8 %xx, 15
  %cond = icmp ult i8 %y, 3
  %sel = select i1 %cond, i8 %y, i8 %x
  %r = add i8 %sel, 32
  ret i8 %r
}

define i8 @select_condition_implies_highbits_op1_maybe_undef_fail(i8 %xx, i8 %y) {
; CHECK-LABEL: @select_condition_implies_highbits_op1_maybe_undef_fail(
; CHECK-NEXT:    [[X:%.*]] = and i8 [[XX:%.*]], 15
; CHECK-NEXT:    [[COND:%.*]] = icmp ult i8 [[Y:%.*]], 3
; CHECK-NEXT:    [[SEL:%.*]] = select i1 [[COND]], i8 [[Y]], i8 [[X]]
; CHECK-NEXT:    [[R:%.*]] = add i8 [[SEL]], 32
; CHECK-NEXT:    ret i8 [[R]]
;
  %x = and i8 %xx, 15
  %cond = icmp ult i8 %y, 3
  %sel = select i1 %cond, i8 %y, i8 %x
  %r = add i8 %sel, 32
  ret i8 %r
}

define i8 @select_condition_implies_highbits_op2(i8 %xx, i8 noundef %y) {
; CHECK-LABEL: @select_condition_implies_highbits_op2(
; CHECK-NEXT:    [[X:%.*]] = and i8 [[XX:%.*]], 15
; CHECK-NEXT:    [[COND:%.*]] = icmp ugt i8 [[Y:%.*]], 3
; CHECK-NEXT:    [[SEL:%.*]] = select i1 [[COND]], i8 [[X]], i8 [[Y]]
; CHECK-NEXT:    [[R:%.*]] = or disjoint i8 [[SEL]], 32
; CHECK-NEXT:    ret i8 [[R]]
;
  %x = and i8 %xx, 15
  %cond = icmp ugt i8 %y, 3
  %sel = select i1 %cond, i8 %x, i8 %y
  %r = add i8 %sel, 32
  ret i8 %r
}

define i8 @select_condition_implies_highbits_op1_and(i8 %xx, i8 noundef %y, i1 %other_cond) {
; CHECK-LABEL: @select_condition_implies_highbits_op1_and(
; CHECK-NEXT:    [[X:%.*]] = and i8 [[XX:%.*]], 15
; CHECK-NEXT:    [[COND0:%.*]] = icmp ult i8 [[Y:%.*]], 3
; CHECK-NEXT:    [[COND:%.*]] = and i1 [[COND0]], [[OTHER_COND:%.*]]
; CHECK-NEXT:    [[SEL:%.*]] = select i1 [[COND]], i8 [[Y]], i8 [[X]]
; CHECK-NEXT:    [[R:%.*]] = or disjoint i8 [[SEL]], 32
; CHECK-NEXT:    ret i8 [[R]]
;
  %x = and i8 %xx, 15
  %cond0 = icmp ult i8 %y, 3
  %cond = and i1 %cond0, %other_cond
  %sel = select i1 %cond, i8 %y, i8 %x
  %r = add i8 %sel, 32
  ret i8 %r
}

define i8 @select_condition_implies_highbits_op2_or(i8 %xx, i8 noundef %y, i1 %other_cond) {
; CHECK-LABEL: @select_condition_implies_highbits_op2_or(
; CHECK-NEXT:    [[X:%.*]] = and i8 [[XX:%.*]], 15
; CHECK-NEXT:    [[COND0:%.*]] = icmp ugt i8 [[Y:%.*]], 3
; CHECK-NEXT:    [[COND:%.*]] = or i1 [[COND0]], [[OTHER_COND:%.*]]
; CHECK-NEXT:    [[SEL:%.*]] = select i1 [[COND]], i8 [[X]], i8 [[Y]]
; CHECK-NEXT:    [[R:%.*]] = or disjoint i8 [[SEL]], 32
; CHECK-NEXT:    ret i8 [[R]]
;
  %x = and i8 %xx, 15
  %cond0 = icmp ugt i8 %y, 3
  %cond = or i1 %cond0, %other_cond
  %sel = select i1 %cond, i8 %x, i8 %y
  %r = add i8 %sel, 32
  ret i8 %r
}