You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.167
Former-commit-id: 289509151e0fee68a1b591a20c9f109c3c789d3a
This commit is contained in:
parent
e19d552987
commit
b084638f15
@ -1,99 +0,0 @@
|
||||
; 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
|
||||
; NOTE: Assertions have been autogenerated by utils/update_llc_test_checks.py
|
||||
|
||||
@glob = common local_unnamed_addr global i64 0, align 8
|
||||
|
||||
; Function Attrs: norecurse nounwind readnone
|
||||
define signext i32 @test_iltsll(i64 %a, i64 %b) {
|
||||
; CHECK-LABEL: test_iltsll:
|
||||
; CHECK: # %bb.0: # %entry
|
||||
; CHECK-NEXT: sradi [[REG1:r[0-9]+]], r3, 63
|
||||
; CHECK-NEXT: rldicl [[REG2:r[0-9]+]], r4, 1, 63
|
||||
; CHECK-NEXT: subfc [[REG3:r[0-9]+]], r4, r3
|
||||
; CHECK-NEXT: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
|
||||
; CHECK-NEXT: xori r3, [[REG4]], 1
|
||||
; CHECK-NEXT: blr
|
||||
entry:
|
||||
%cmp = icmp slt i64 %a, %b
|
||||
%conv = zext i1 %cmp to i32
|
||||
ret i32 %conv
|
||||
}
|
||||
|
||||
; Function Attrs: norecurse nounwind readnone
|
||||
define signext i32 @test_iltsll_sext(i64 %a, i64 %b) {
|
||||
; CHECK-LABEL: test_iltsll_sext:
|
||||
; CHECK: # %bb.0: # %entry
|
||||
; CHECK-NEXT: sradi [[REG1:r[0-9]+]], r3, 63
|
||||
; CHECK-NEXT: rldicl [[REG2:r[0-9]+]], r4, 1, 63
|
||||
; CHECK-NEXT: subfc [[REG3:r[0-9]+]], r4, r3
|
||||
; CHECK-NEXT: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
|
||||
; CHECK-NEXT: xori [[REG5:r[0-9]+]], [[REG4]], 1
|
||||
; CHECK-NEXT: neg r3, [[REG5]]
|
||||
; CHECK-NEXT: blr
|
||||
entry:
|
||||
%cmp = icmp slt i64 %a, %b
|
||||
%sub = sext i1 %cmp to i32
|
||||
ret i32 %sub
|
||||
}
|
||||
|
||||
; Function Attrs: norecurse nounwind readnone
|
||||
define signext i32 @test_iltsll_sext_z(i64 %a) {
|
||||
; CHECK-LABEL: test_iltsll_sext_z:
|
||||
; CHECK: # %bb.0: # %entry
|
||||
; CHECK-NEXT: sradi r3, r3, 63
|
||||
; CHECK-NEXT: blr
|
||||
entry:
|
||||
%cmp = icmp slt i64 %a, 0
|
||||
%sub = sext i1 %cmp to i32
|
||||
ret i32 %sub
|
||||
}
|
||||
|
||||
; Function Attrs: norecurse nounwind
|
||||
define void @test_iltsll_store(i64 %a, i64 %b) {
|
||||
; CHECK-LABEL: test_iltsll_store:
|
||||
; CHECK: # %bb.0: # %entry
|
||||
; CHECK: sradi [[REG1:r[0-9]+]], r3, 63
|
||||
; CHECK: rldicl [[REG2:r[0-9]+]], r4, 1, 63
|
||||
; CHECK-DIAG: subfc [[REG3:r[0-9]+]], r4, r3
|
||||
; CHECK: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
|
||||
; CHECK: xori [[REG5:r[0-9]+]], [[REG4]], 1
|
||||
; CHECK-NOT: neg {{r[0-9]+}}, [[REG5]]
|
||||
entry:
|
||||
%cmp = icmp slt i64 %a, %b
|
||||
%conv1 = zext i1 %cmp to i64
|
||||
store i64 %conv1, i64* @glob, align 8
|
||||
ret void
|
||||
}
|
||||
|
||||
; Function Attrs: norecurse nounwind
|
||||
define void @test_iltsll_sext_store(i64 %a, i64 %b) {
|
||||
; CHECK-LABEL: test_iltsll_sext_store:
|
||||
; CHECK: # %bb.0: # %entry
|
||||
; CHECK: sradi [[REG1:r[0-9]+]], r3, 63
|
||||
; CHECK: rldicl [[REG2:r[0-9]+]], r4, 1, 63
|
||||
; CHECK-DIAG: subfc [[REG3:r[0-9]+]], r4, r3
|
||||
; CHECK: adde [[REG4:r[0-9]+]], [[REG2]], [[REG1]]
|
||||
; CHECK: xori [[REG5:r[0-9]+]], [[REG4]], 1
|
||||
; CHECK: neg {{r[0-9]+}}, [[REG5]]
|
||||
entry:
|
||||
%cmp = icmp slt i64 %a, %b
|
||||
%conv1 = sext i1 %cmp to i64
|
||||
store i64 %conv1, i64* @glob, align 8
|
||||
ret void
|
||||
}
|
||||
|
||||
; Function Attrs: norecurse nounwind
|
||||
define void @test_iltsll_sext_z_store(i64 %a) {
|
||||
; CHECK-LABEL: test_iltsll_sext_z_store:
|
||||
; CHECK: sradi r3, r3, 63
|
||||
entry:
|
||||
%cmp = icmp slt i64 %a, 0
|
||||
%conv2 = sext i1 %cmp to i64
|
||||
store i64 %conv2, i64* @glob, align 8
|
||||
ret void
|
||||
}
|
Reference in New Issue
Block a user