mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-12 13:30:51 +00:00
AArch64: fall back to generic code for out of range extract/insert.
rdar://problem/17624784 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@213059 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
218f127b63
commit
fbb631183a
@ -5584,11 +5584,12 @@ SDValue AArch64TargetLowering::LowerINSERT_VECTOR_ELT(SDValue Op,
|
||||
SelectionDAG &DAG) const {
|
||||
assert(Op.getOpcode() == ISD::INSERT_VECTOR_ELT && "Unknown opcode!");
|
||||
|
||||
// Check for non-constant lane.
|
||||
if (!isa<ConstantSDNode>(Op.getOperand(2)))
|
||||
// Check for non-constant or out of range lane.
|
||||
EVT VT = Op.getOperand(0).getValueType();
|
||||
ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(2));
|
||||
if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
|
||||
return SDValue();
|
||||
|
||||
EVT VT = Op.getOperand(0).getValueType();
|
||||
|
||||
// Insertion/extraction are legal for V128 types.
|
||||
if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
|
||||
@ -5616,11 +5617,12 @@ AArch64TargetLowering::LowerEXTRACT_VECTOR_ELT(SDValue Op,
|
||||
SelectionDAG &DAG) const {
|
||||
assert(Op.getOpcode() == ISD::EXTRACT_VECTOR_ELT && "Unknown opcode!");
|
||||
|
||||
// Check for non-constant lane.
|
||||
if (!isa<ConstantSDNode>(Op.getOperand(1)))
|
||||
// Check for non-constant or out of range lane.
|
||||
EVT VT = Op.getOperand(0).getValueType();
|
||||
ConstantSDNode *CI = dyn_cast<ConstantSDNode>(Op.getOperand(1));
|
||||
if (!CI || CI->getZExtValue() >= VT.getVectorNumElements())
|
||||
return SDValue();
|
||||
|
||||
EVT VT = Op.getOperand(0).getValueType();
|
||||
|
||||
// Insertion/extraction are legal for V128 types.
|
||||
if (VT == MVT::v16i8 || VT == MVT::v8i16 || VT == MVT::v4i32 ||
|
||||
|
@ -101,3 +101,20 @@ define <1 x i64> @test_vector_copy_dup_dv2D(<1 x i64> %a, <2 x i64> %c) {
|
||||
ret <1 x i64> %vset_lane
|
||||
}
|
||||
|
||||
; Undefined behaviour, so we really don't care what actually gets emitted, just
|
||||
; as long as we don't crash (since it could be dynamically unreachable).
|
||||
define i32 @test_out_of_range_extract(<4 x i32> %vec) {
|
||||
; CHECK-LABEL: test_out_of_range_extract:
|
||||
; CHECK: ret
|
||||
%elt = extractelement <4 x i32> %vec, i32 4
|
||||
ret i32 %elt
|
||||
}
|
||||
|
||||
; Undefined behaviour, so we really don't care what actually gets emitted, just
|
||||
; as long as we don't crash (since it could be dynamically unreachable).
|
||||
define void @test_out_of_range_insert(<4 x i32> %vec, i32 %elt) {
|
||||
; CHECK-LABEL: test_out_of_range_insert:
|
||||
; CHECK: ret
|
||||
insertelement <4 x i32> %vec, i32 %elt, i32 4
|
||||
ret void
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user