The LIT test cases were migrated with the script provided by Nikita Popov. No manual changes were made. Committed without review since no functional changes, after consultation with uweigand.
96 lines
2.1 KiB
LLVM
96 lines
2.1 KiB
LLVM
; Test all condition-code masks that are relevant for signed integer
|
|
; comparisons, in cases where a separate branch is better than COMPARE
|
|
; AND BRANCH.
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu | FileCheck %s
|
|
|
|
define void @f1(ptr %src, i32 %target) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: .cfi_startproc
|
|
; CHECK: .L[[LABEL:.*]]:
|
|
; CHECK: c %r3, 0(%r2)
|
|
; CHECK-NEXT: je .L[[LABEL]]
|
|
br label %loop
|
|
loop:
|
|
%val = load volatile i32, ptr %src
|
|
%cond = icmp eq i32 %target, %val
|
|
br i1 %cond, label %loop, label %exit
|
|
exit:
|
|
ret void
|
|
}
|
|
|
|
define void @f2(ptr %src, i32 %target) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: .cfi_startproc
|
|
; CHECK: .L[[LABEL:.*]]:
|
|
; CHECK: c %r3, 0(%r2)
|
|
; CHECK-NEXT: jlh .L[[LABEL]]
|
|
br label %loop
|
|
loop:
|
|
%val = load volatile i32, ptr %src
|
|
%cond = icmp ne i32 %target, %val
|
|
br i1 %cond, label %loop, label %exit
|
|
exit:
|
|
ret void
|
|
}
|
|
|
|
define void @f3(ptr %src, i32 %target) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: .cfi_startproc
|
|
; CHECK: .L[[LABEL:.*]]:
|
|
; CHECK: c %r3, 0(%r2)
|
|
; CHECK-NEXT: jle .L[[LABEL]]
|
|
br label %loop
|
|
loop:
|
|
%val = load volatile i32, ptr %src
|
|
%cond = icmp sle i32 %target, %val
|
|
br i1 %cond, label %loop, label %exit
|
|
exit:
|
|
ret void
|
|
}
|
|
|
|
define void @f4(ptr %src, i32 %target) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: .cfi_startproc
|
|
; CHECK: .L[[LABEL:.*]]:
|
|
; CHECK: c %r3, 0(%r2)
|
|
; CHECK-NEXT: jl .L[[LABEL]]
|
|
br label %loop
|
|
loop:
|
|
%val = load volatile i32, ptr %src
|
|
%cond = icmp slt i32 %target, %val
|
|
br i1 %cond, label %loop, label %exit
|
|
exit:
|
|
ret void
|
|
}
|
|
|
|
define void @f5(ptr %src, i32 %target) {
|
|
; CHECK-LABEL: f5:
|
|
; CHECK: .cfi_startproc
|
|
; CHECK: .L[[LABEL:.*]]:
|
|
; CHECK: c %r3, 0(%r2)
|
|
; CHECK-NEXT: jh .L[[LABEL]]
|
|
br label %loop
|
|
loop:
|
|
%val = load volatile i32, ptr %src
|
|
%cond = icmp sgt i32 %target, %val
|
|
br i1 %cond, label %loop, label %exit
|
|
exit:
|
|
ret void
|
|
}
|
|
|
|
define void @f6(ptr %src, i32 %target) {
|
|
; CHECK-LABEL: f6:
|
|
; CHECK: .cfi_startproc
|
|
; CHECK: .L[[LABEL:.*]]:
|
|
; CHECK: c %r3, 0(%r2)
|
|
; CHECK-NEXT: jhe .L[[LABEL]]
|
|
br label %loop
|
|
loop:
|
|
%val = load volatile i32, ptr %src
|
|
%cond = icmp sge i32 %target, %val
|
|
br i1 %cond, label %loop, label %exit
|
|
exit:
|
|
ret void
|
|
}
|