mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
Custom lower f64 args passed in integer registers.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116977 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
6e56b18e57
commit
2d8f6fe610
@ -1356,6 +1356,21 @@ bool ARMFastISel::ProcessCallArgs(SmallVectorImpl<Value*> &Args,
|
||||
VA.getLocReg())
|
||||
.addReg(Arg);
|
||||
RegArgs.push_back(VA.getLocReg());
|
||||
} else if (VA.needsCustom()) {
|
||||
// TODO: We need custom lowering for vector (v2f64) args.
|
||||
if (VA.getLocVT() != MVT::f64) return false;
|
||||
|
||||
CCValAssign &NextVA = ArgLocs[++i];
|
||||
|
||||
// TODO: Only handle register args for now.
|
||||
if(!(VA.isRegLoc() && NextVA.isRegLoc())) return false;
|
||||
|
||||
AddOptionalDefs(BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DL,
|
||||
TII.get(ARM::VMOVRRD), VA.getLocReg())
|
||||
.addReg(NextVA.getLocReg(), RegState::Define)
|
||||
.addReg(Arg));
|
||||
RegArgs.push_back(VA.getLocReg());
|
||||
RegArgs.push_back(NextVA.getLocReg());
|
||||
} else {
|
||||
// Need to store
|
||||
return false;
|
||||
|
Loading…
x
Reference in New Issue
Block a user