[ARM] More MVE compare vector splat combines for ANDs
[llvm-complete.git] / test / CodeGen / SystemZ / trap-02.ll
blobfed419f373ec852fd5fbe5b4a3caccd83feddf85
1 ; Test zE12 conditional traps
3 ; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=zEC12 | FileCheck %s
5 declare void @llvm.trap()
7 ; Check conditional compare logical and trap
8 define i32 @f1(i32 zeroext %a, i32 *%ptr) {
9 ; CHECK-LABEL: f1:
10 ; CHECK: clth %r2, 0(%r3)
11 ; CHECK: lhi %r2, 0
12 ; CHECK: br %r14
13 entry:
14   %b = load i32, i32 *%ptr
15   %cmp = icmp ugt i32 %a, %b
16   br i1 %cmp, label %if.then, label %if.end
18 if.then:                                          ; preds = %entry
19   tail call void @llvm.trap()
20   unreachable
22 if.end:                                           ; preds = %entry
23   ret i32 0
26 ; Check conditional compare logical grande and trap
27 define i64 @f2(i64 zeroext %a, i64 *%ptr) {
28 ; CHECK-LABEL: f2:
29 ; CHECK: clgtl %r2, 0(%r3)
30 ; CHECK: lghi %r2, 0
31 ; CHECK: br %r14
32 entry:
33   %b = load i64, i64 *%ptr
34   %cmp = icmp ult i64 %a, %b
35   br i1 %cmp, label %if.then, label %if.end
37 if.then:                                          ; preds = %entry
38   tail call void @llvm.trap()
39   unreachable
41 if.end:                                           ; preds = %entry
42   ret i64 0
45 ; Verify that we don't attempt to use the compare and trap
46 ; instruction with an index operand.
47 define i32 @f3(i32 zeroext %a, i32 *%base, i64 %offset) {
48 ; CHECK-LABEL: f3:
49 ; CHECK: cl %r2, 0(%r{{[0-5]}},%r3)
50 ; CHECK: lhi %r2, 0
51 ; CHECK-LABEL: .Ltmp0
52 ; CHECK: jh .Ltmp0+2
53 ; CHECK: br %r14
54 entry:
55   %ptr = getelementptr i32, i32 *%base, i64 %offset
56   %b = load i32, i32 *%ptr
57   %cmp = icmp ugt i32 %a, %b
58   br i1 %cmp, label %if.then, label %if.end
60 if.then:                                          ; preds = %entry
61   tail call void @llvm.trap()
62   unreachable
64 if.end:                                           ; preds = %entry
65   ret i32 0
68 ; Verify that we don't attempt to use the compare and trap grande
69 ; instruction with an index operand.
70 define i64 @f4(i64 %a, i64 *%base, i64 %offset) {
71 ; CHECK-LABEL: f4:
72 ; CHECK: clg %r2, 0(%r{{[0-5]}},%r3)
73 ; CHECK: lghi %r2, 0
74 ; CHECK-LABEL: .Ltmp1
75 ; CHECK: jh .Ltmp1+2
76 ; CHECK: br %r14
77 entry:
78   %ptr = getelementptr i64, i64 *%base, i64 %offset
79   %b = load i64, i64 *%ptr
80   %cmp = icmp ugt i64 %a, %b
81   br i1 %cmp, label %if.then, label %if.end
83 if.then:                                          ; preds = %entry
84   tail call void @llvm.trap()
85   unreachable
87 if.end:                                           ; preds = %entry
88   ret i64 0