mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-14 07:31:53 +00:00
[ARM] Expand v1i64 and v2i64 ctpop.
The default is legal, which results in 'Cannot select' errors. This is triggered during selfhost due to a recent cost model change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265040 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4d88edd42f
commit
df691476c5
@ -577,6 +577,8 @@ ARMTargetLowering::ARMTargetLowering(const TargetMachine &TM,
|
||||
setOperationAction(ISD::CTPOP, MVT::v4i32, Custom);
|
||||
setOperationAction(ISD::CTPOP, MVT::v4i16, Custom);
|
||||
setOperationAction(ISD::CTPOP, MVT::v8i16, Custom);
|
||||
setOperationAction(ISD::CTPOP, MVT::v1i64, Expand);
|
||||
setOperationAction(ISD::CTPOP, MVT::v2i64, Expand);
|
||||
|
||||
// NEON does not have single instruction CTTZ for vectors.
|
||||
setOperationAction(ISD::CTTZ, MVT::v8i8, Custom);
|
||||
|
@ -71,12 +71,28 @@ define <4 x i32> @vcntQ32(<4 x i32>* %A) nounwind {
|
||||
ret <4 x i32> %tmp2
|
||||
}
|
||||
|
||||
define <1 x i64> @vcnt64(<1 x i64>* %A) nounwind {
|
||||
; CHECK-LABEL: vcnt64:
|
||||
%tmp1 = load <1 x i64>, <1 x i64>* %A
|
||||
%tmp2 = call <1 x i64> @llvm.ctpop.v1i64(<1 x i64> %tmp1)
|
||||
ret <1 x i64> %tmp2
|
||||
}
|
||||
|
||||
define <2 x i64> @vcntQ64(<2 x i64>* %A) nounwind {
|
||||
; CHECK-LABEL: vcntQ64:
|
||||
%tmp1 = load <2 x i64>, <2 x i64>* %A
|
||||
%tmp2 = call <2 x i64> @llvm.ctpop.v2i64(<2 x i64> %tmp1)
|
||||
ret <2 x i64> %tmp2
|
||||
}
|
||||
|
||||
declare <8 x i8> @llvm.ctpop.v8i8(<8 x i8>) nounwind readnone
|
||||
declare <16 x i8> @llvm.ctpop.v16i8(<16 x i8>) nounwind readnone
|
||||
declare <4 x i16> @llvm.ctpop.v4i16(<4 x i16>) nounwind readnone
|
||||
declare <8 x i16> @llvm.ctpop.v8i16(<8 x i16>) nounwind readnone
|
||||
declare <2 x i32> @llvm.ctpop.v2i32(<2 x i32>) nounwind readnone
|
||||
declare <4 x i32> @llvm.ctpop.v4i32(<4 x i32>) nounwind readnone
|
||||
declare <1 x i64> @llvm.ctpop.v1i64(<1 x i64>) nounwind readnone
|
||||
declare <2 x i64> @llvm.ctpop.v2i64(<2 x i64>) nounwind readnone
|
||||
|
||||
define <8 x i8> @vclz8(<8 x i8>* %A) nounwind {
|
||||
;CHECK-LABEL: vclz8:
|
||||
|
Loading…
Reference in New Issue
Block a user