From 9d27514a21364e1d1ff307d3998bc4533ade8f87 Mon Sep 17 00:00:00 2001 From: "Vikram S. Adve" Date: Tue, 12 Aug 2003 03:04:05 +0000 Subject: [PATCH] Fix va_arg to generate LDDFi for floating point values, instead of LDXi. All non-FP cases use LDXi as before. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7765 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/SparcV9/SparcV9InstrSelection.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/Target/SparcV9/SparcV9InstrSelection.cpp b/lib/Target/SparcV9/SparcV9InstrSelection.cpp index 2bc9f835868..970c5fdcf0a 100644 --- a/lib/Target/SparcV9/SparcV9InstrSelection.cpp +++ b/lib/Target/SparcV9/SparcV9InstrSelection.cpp @@ -2807,13 +2807,15 @@ GetInstructionsByRule(InstructionNode* subtreeRoot, case 64: // reg: Phi(reg,reg) break; // don't forward the value - case 65: // reg: VaArg(reg) + case 65: // reg: VaArg(reg): the va_arg instruction { // Use value initialized by va_start as pointer to args on the stack. // Load argument via current pointer value, then increment pointer. int argSize = target.getFrameInfo().getSizeOfEachArgOnStack(); Instruction* vaArgI = subtreeRoot->getInstruction(); - mvec.push_back(BuildMI(V9::LDXi, 3).addReg(vaArgI->getOperand(0)). + MachineOpCode loadOp = vaArgI->getType()->isFloatingPoint()? V9::LDDFi + : V9::LDXi; + mvec.push_back(BuildMI(loadOp, 3).addReg(vaArgI->getOperand(0)). addSImm(0).addRegDef(vaArgI)); mvec.push_back(BuildMI(V9::ADDi, 3).addReg(vaArgI->getOperand(0)). addSImm(argSize).addRegDef(vaArgI->getOperand(0))); -- 2.34.1