forked from OSchip/llvm-project
Handle a v2f64 formal parameter that is split between registers and memory
such that the entire second half is in memory. Radar 7855014. llvm-svn: 101181
This commit is contained in:
parent
9b6772c43a
commit
699bdf7adf
|
@ -1613,10 +1613,8 @@ ARMTargetLowering::GetF64FormalArgument(CCValAssign &VA, CCValAssign &NextVA,
|
||||||
|
|
||||||
SDValue ArgValue2;
|
SDValue ArgValue2;
|
||||||
if (NextVA.isMemLoc()) {
|
if (NextVA.isMemLoc()) {
|
||||||
unsigned ArgSize = NextVA.getLocVT().getSizeInBits()/8;
|
|
||||||
MachineFrameInfo *MFI = MF.getFrameInfo();
|
MachineFrameInfo *MFI = MF.getFrameInfo();
|
||||||
int FI = MFI->CreateFixedObject(ArgSize, NextVA.getLocMemOffset(),
|
int FI = MFI->CreateFixedObject(4, NextVA.getLocMemOffset(), true, false);
|
||||||
true, false);
|
|
||||||
|
|
||||||
// Create load node to retrieve arguments from the stack.
|
// Create load node to retrieve arguments from the stack.
|
||||||
SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
|
SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
|
||||||
|
@ -1665,14 +1663,22 @@ ARMTargetLowering::LowerFormalArguments(SDValue Chain,
|
||||||
if (VA.needsCustom()) {
|
if (VA.needsCustom()) {
|
||||||
// f64 and vector types are split up into multiple registers or
|
// f64 and vector types are split up into multiple registers or
|
||||||
// combinations of registers and stack slots.
|
// combinations of registers and stack slots.
|
||||||
RegVT = MVT::i32;
|
|
||||||
|
|
||||||
if (VA.getLocVT() == MVT::v2f64) {
|
if (VA.getLocVT() == MVT::v2f64) {
|
||||||
SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
|
SDValue ArgValue1 = GetF64FormalArgument(VA, ArgLocs[++i],
|
||||||
Chain, DAG, dl);
|
Chain, DAG, dl);
|
||||||
VA = ArgLocs[++i]; // skip ahead to next loc
|
VA = ArgLocs[++i]; // skip ahead to next loc
|
||||||
SDValue ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
|
SDValue ArgValue2;
|
||||||
Chain, DAG, dl);
|
if (VA.isMemLoc()) {
|
||||||
|
int FI = MFI->CreateFixedObject(8, VA.getLocMemOffset(),
|
||||||
|
true, false);
|
||||||
|
SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
|
||||||
|
ArgValue2 = DAG.getLoad(MVT::f64, dl, Chain, FIN,
|
||||||
|
PseudoSourceValue::getFixedStack(FI), 0,
|
||||||
|
false, false, 0);
|
||||||
|
} else {
|
||||||
|
ArgValue2 = GetF64FormalArgument(VA, ArgLocs[++i],
|
||||||
|
Chain, DAG, dl);
|
||||||
|
}
|
||||||
ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
|
ArgValue = DAG.getNode(ISD::UNDEF, dl, MVT::v2f64);
|
||||||
ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
|
ArgValue = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, MVT::v2f64,
|
||||||
ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
|
ArgValue, ArgValue1, DAG.getIntPtrConstant(0));
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
; RUN: llc < %s -mtriple=arm-apple-darwin -mcpu=cortex-a8
|
||||||
|
; Radar 7855014
|
||||||
|
|
||||||
|
define arm_apcscc void @test1(i32 %f0, i32 %f1, i32 %f2, <4 x i32> %f3) nounwind {
|
||||||
|
entry:
|
||||||
|
unreachable
|
||||||
|
}
|
Loading…
Reference in New Issue