mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-23 03:02:36 +01:00
13d4242b40
The isBarrier/isTerminator flags have been removed from the SystemZ trap instructions, so that tests do not fail with EXPENSIVE_CHECKS. This was just an issue at -O0 and did not affect code output on benchmarks. (Like Eli pointed out: "targets are split over whether they consider their "trap" a terminator; x86, AArch64, and NVPTX don't, but ARM, MIPS, PPC, and SystemZ do. We should probably try to be consistent here.". This is still the case, although SystemZ has switched sides). SystemZ now returns true in isMachineVerifierClean() :-) These Generic tests have been modified so that they can be run with or without EXPENSIVE_CHECKS: CodeGen/Generic/llc-start-stop.ll and CodeGen/Generic/print-machineinstrs.ll Review: Ulrich Weigand, Simon Pilgrim, Eli Friedman https://bugs.llvm.org/show_bug.cgi?id=33047 https://reviews.llvm.org/D34143 llvm-svn: 306106
91 lines
2.3 KiB
LLVM
91 lines
2.3 KiB
LLVM
; Test zE12 conditional traps
|
|
;
|
|
; RUN: llc < %s -mtriple=s390x-linux-gnu -mcpu=zEC12 | FileCheck %s
|
|
|
|
declare void @llvm.trap()
|
|
|
|
; Check conditional compare logical and trap
|
|
define i32 @f1(i32 zeroext %a, i32 *%ptr) {
|
|
; CHECK-LABEL: f1:
|
|
; CHECK: clth %r2, 0(%r3)
|
|
; CHECK: lhi %r2, 0
|
|
; CHECK: br %r14
|
|
entry:
|
|
%b = load i32, i32 *%ptr
|
|
%cmp = icmp ugt i32 %a, %b
|
|
br i1 %cmp, label %if.then, label %if.end
|
|
|
|
if.then: ; preds = %entry
|
|
tail call void @llvm.trap()
|
|
unreachable
|
|
|
|
if.end: ; preds = %entry
|
|
ret i32 0
|
|
}
|
|
|
|
; Check conditional compare logical grande and trap
|
|
define i64 @f2(i64 zeroext %a, i64 *%ptr) {
|
|
; CHECK-LABEL: f2:
|
|
; CHECK: clgtl %r2, 0(%r3)
|
|
; CHECK: lghi %r2, 0
|
|
; CHECK: br %r14
|
|
entry:
|
|
%b = load i64, i64 *%ptr
|
|
%cmp = icmp ult i64 %a, %b
|
|
br i1 %cmp, label %if.then, label %if.end
|
|
|
|
if.then: ; preds = %entry
|
|
tail call void @llvm.trap()
|
|
unreachable
|
|
|
|
if.end: ; preds = %entry
|
|
ret i64 0
|
|
}
|
|
|
|
; Verify that we don't attempt to use the compare and trap
|
|
; instruction with an index operand.
|
|
define i32 @f3(i32 zeroext %a, i32 *%base, i64 %offset) {
|
|
; CHECK-LABEL: f3:
|
|
; CHECK: cl %r2, 0(%r{{[0-5]}},%r3)
|
|
; CHECK: lhi %r2, 0
|
|
; CHECK-LABEL: .Ltmp0
|
|
; CHECK: jh .Ltmp0+2
|
|
; CHECK: br %r14
|
|
entry:
|
|
%ptr = getelementptr i32, i32 *%base, i64 %offset
|
|
%b = load i32, i32 *%ptr
|
|
%cmp = icmp ugt i32 %a, %b
|
|
br i1 %cmp, label %if.then, label %if.end
|
|
|
|
if.then: ; preds = %entry
|
|
tail call void @llvm.trap()
|
|
unreachable
|
|
|
|
if.end: ; preds = %entry
|
|
ret i32 0
|
|
}
|
|
|
|
; Verify that we don't attempt to use the compare and trap grande
|
|
; instruction with an index operand.
|
|
define i64 @f4(i64 %a, i64 *%base, i64 %offset) {
|
|
; CHECK-LABEL: f4:
|
|
; CHECK: clg %r2, 0(%r{{[0-5]}},%r3)
|
|
; CHECK: lghi %r2, 0
|
|
; CHECK-LABEL: .Ltmp1
|
|
; CHECK: jh .Ltmp1+2
|
|
; CHECK: br %r14
|
|
entry:
|
|
%ptr = getelementptr i64, i64 *%base, i64 %offset
|
|
%b = load i64, i64 *%ptr
|
|
%cmp = icmp ugt i64 %a, %b
|
|
br i1 %cmp, label %if.then, label %if.end
|
|
|
|
if.then: ; preds = %entry
|
|
tail call void @llvm.trap()
|
|
unreachable
|
|
|
|
if.end: ; preds = %entry
|
|
ret i64 0
|
|
}
|
|
|