Lines Matching refs:i16
6 ; CHECK: add nsw i16 %a, %b
7 define i16 @oppositesign(i16 %x, i16 %y) {
9 %a = or i16 %x, 32768
10 %b = and i16 %y, 32767
11 %c = add i16 %a, %b
12 ret i16 %c
15 define i16 @zero_sign_bit(i16 %a) {
20 %1 = and i16 %a, 32767
21 %2 = add i16 %1, 512
22 ret i16 %2
25 define i16 @zero_sign_bit2(i16 %a, i16 %b) {
31 %1 = and i16 %a, 32767
32 %2 = and i16 %b, 32767
33 %3 = add i16 %1, %2
34 ret i16 %3
37 declare i16 @bounded(i16 %input);
39 !0 = !{i16 0, i16 32768} ; [0, 32767]
40 !1 = !{i16 0, i16 32769} ; [0, 32768]
42 define i16 @add_bounded_values(i16 %a, i16 %b) personality i8* bitcast (i32 (...)* @__gxx_personali…
45 %c = call i16 @bounded(i16 %a), !range !0
46 %d = invoke i16 @bounded(i16 %b) to label %cont unwind label %lpad, !range !0
49 %e = add i16 %c, %d
50 ; CHECK: add nuw i16 %c, %d
51 ret i16 %e
55 ret i16 42
58 define i16 @add_bounded_values_2(i16 %a, i16 %b) personality i8* bitcast (i32 (...)* @__gxx_persona…
61 %c = call i16 @bounded(i16 %a), !range !1
62 %d = invoke i16 @bounded(i16 %b) to label %cont unwind label %lpad, !range !1
66 %e = add i16 %c, %d
67 ; CHECK: add i16 %c, %d
68 ret i16 %e
72 ret i16 42
76 ; CHECK: add nsw i16 %a, %b
77 define i16 @ripple_nsw1(i16 %x, i16 %y) {
79 %a = and i16 %y, 1
82 %b = and i16 %x, 49151
84 %c = add i16 %a, %b
85 ret i16 %c
90 ; CHECK: add nsw i16 %b, %a
91 define i16 @ripple_nsw2(i16 %x, i16 %y) {
92 %a = and i16 %y, 1
93 %b = and i16 %x, 49151
94 %c = add i16 %b, %a
95 ret i16 %c
108 ; CHECK: add nuw i16 %a, %b
109 define i16 @ripple_no_nsw2(i16 %x, i16 %y) {
111 %a = and i16 %y, 1
114 %b = and i16 %x, 32767
116 %c = add i16 %a, %b
117 ret i16 %c