mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
3f9ad6b478
This re-commits everything that was pulled in r314244. The transformation is off by default (patch to enable it to follow). The code is refactored to have a single entry-point and provide fine-grained control over patterns that it selects. This patch also fixes the bugs in the original code. Everything that failed with the original patch has been re-tested with this patch (with the transformation turned on). So the patch to turn this on is soon to follow. Differential Revision: https://reviews.llvm.org/D38575 llvm-svn: 319434
116 lines
3.2 KiB
LLVM
116 lines
3.2 KiB
LLVM
; RUN: llc -verify-machineinstrs -mtriple=powerpc64-unknown-linux-gnu -O2 \
|
|
; RUN: -ppc-gpr-icmps=all -ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s \
|
|
; RUN: --implicit-check-not cmpw --implicit-check-not cmpd --implicit-check-not cmpl
|
|
; RUN: llc -verify-machineinstrs -mtriple=powerpc64le-unknown-linux-gnu -O2 \
|
|
; RUN: -ppc-gpr-icmps=all -ppc-asm-full-reg-names -mcpu=pwr8 < %s | FileCheck %s \
|
|
; RUN: --implicit-check-not cmpw --implicit-check-not cmpd --implicit-check-not cmpl
|
|
|
|
@glob = common local_unnamed_addr global i64 0, align 8
|
|
|
|
; Function Attrs: norecurse nounwind readnone
|
|
define i64 @test_llleull(i64 %a, i64 %b) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, %b
|
|
%conv1 = zext i1 %cmp to i64
|
|
ret i64 %conv1
|
|
; CHECK-LABEL: test_llleull:
|
|
; CHECK: subfc {{r[0-9]+}}, r3, r4
|
|
; CHECK-NEXT: subfe [[REG1:r[0-9]+]], r3, r3
|
|
; CHECK-NEXT: addi r3, [[REG1]], 1
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind readnone
|
|
define i64 @test_llleull_sext(i64 %a, i64 %b) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, %b
|
|
%conv1 = sext i1 %cmp to i64
|
|
ret i64 %conv1
|
|
; CHECK-LABEL: @test_llleull_sext
|
|
; CHECK: subfc [[REG1:r[0-9]+]], r3, r4
|
|
; CHECK: subfe [[REG2:r[0-9]+]], {{r[0-9]+}}, {{r[0-9]+}}
|
|
; CHECK: not [[REG3:r[0-9]+]], [[REG2]]
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind readnone
|
|
define i64 @test_llleull_z(i64 %a) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, 0
|
|
%conv1 = zext i1 %cmp to i64
|
|
ret i64 %conv1
|
|
; CHECK-LABEL: test_llleull_z
|
|
; CHECK: cntlzd [[REG1:r[0-9]+]], r3
|
|
; CHECK-NEXT: rldicl r3, [[REG1]], 58, 63
|
|
; CHECK-NEXT: blr
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind readnone
|
|
define i64 @test_llleull_sext_z(i64 %a) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, 0
|
|
%conv1 = sext i1 %cmp to i64
|
|
ret i64 %conv1
|
|
; CHECK-LABEL: @test_llleull_sext_z
|
|
; CHECK: addic [[REG1:r[0-9]+]], r3, -1
|
|
; CHECK: subfe r3, [[REG1]]
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind
|
|
define void @test_llleull_store(i64 %a, i64 %b) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, %b
|
|
%conv1 = zext i1 %cmp to i64
|
|
store i64 %conv1, i64* @glob
|
|
ret void
|
|
; CHECK-LABEL: test_llleull_store:
|
|
; CHECK: subfc {{r[0-9]+}}, r3, r4
|
|
; CHECK: subfe [[REG1:r[0-9]+]], r3, r3
|
|
; CHECK: addi r3, [[REG1]], 1
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind
|
|
define void @test_llleull_sext_store(i64 %a, i64 %b) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, %b
|
|
%conv1 = sext i1 %cmp to i64
|
|
store i64 %conv1, i64* @glob
|
|
ret void
|
|
; CHECK-LABEL: @test_llleull_sext_store
|
|
; CHECK: subfc [[REG1:r[0-9]+]], r3, r4
|
|
; CHECK: subfe [[REG2:r[0-9]+]], {{r[0-9]+}}, {{r[0-9]+}}
|
|
; CHECK: not [[REG3:r[0-9]+]], [[REG2]]
|
|
; CHECK: std [[REG3]]
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind
|
|
define void @test_llleull_z_store(i64 %a) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, 0
|
|
%conv1 = zext i1 %cmp to i64
|
|
store i64 %conv1, i64* @glob
|
|
ret void
|
|
; CHECK-LABEL: test_llleull_z_store:
|
|
; CHECK: cntlzd [[REG1:r[0-9]+]], r3
|
|
; CHECK: rldicl {{r[0-9]+}}, [[REG1]], 58, 63
|
|
; CHECK: blr
|
|
}
|
|
|
|
; Function Attrs: norecurse nounwind
|
|
define void @test_llleull_sext_z_store(i64 %a) {
|
|
entry:
|
|
%cmp = icmp ule i64 %a, 0
|
|
%conv1 = sext i1 %cmp to i64
|
|
store i64 %conv1, i64* @glob
|
|
ret void
|
|
; CHECK-LABEL: @test_llleull_sext_z_store
|
|
; CHECK: addic [[REG1:r[0-9]+]], r3, -1
|
|
; CHECK: subfe [[REG2:r[0-9]+]], {{r[0-9]+}}, {{r[0-9]+}}
|
|
; CHECK: std [[REG2]]
|
|
; CHECK: blr
|
|
}
|
|
|