blob: 9281940019a943c23b188f6b5ef19d84a7998621 [file] [log] [blame]
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001//===-- MipsISelLowering.cpp - Mips DAG Lowering Implementation -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00007//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that Mips uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#define DEBUG_TYPE "mips-lower"
16
17#include "MipsISelLowering.h"
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +000018#include "MipsMachineFunction.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000019#include "MipsTargetMachine.h"
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000020#include "MipsSubtarget.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000021#include "llvm/DerivedTypes.h"
22#include "llvm/Function.h"
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +000023#include "llvm/GlobalVariable.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000024#include "llvm/Intrinsics.h"
25#include "llvm/CallingConv.h"
26#include "llvm/CodeGen/CallingConvLower.h"
27#include "llvm/CodeGen/MachineFrameInfo.h"
28#include "llvm/CodeGen/MachineFunction.h"
29#include "llvm/CodeGen/MachineInstrBuilder.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000030#include "llvm/CodeGen/MachineRegisterInfo.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000031#include "llvm/CodeGen/SelectionDAGISel.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000032#include "llvm/CodeGen/ValueTypes.h"
33#include "llvm/Support/Debug.h"
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000034using namespace llvm;
35
36const char *MipsTargetLowering::
37getTargetNodeName(unsigned Opcode) const
38{
39 switch (Opcode)
40 {
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000041 case MipsISD::JmpLink : return "MipsISD::JmpLink";
42 case MipsISD::Hi : return "MipsISD::Hi";
43 case MipsISD::Lo : return "MipsISD::Lo";
44 case MipsISD::GPRel : return "MipsISD::GPRel";
45 case MipsISD::Ret : return "MipsISD::Ret";
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +000046 case MipsISD::CMov : return "MipsISD::CMov";
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000047 case MipsISD::SelectCC : return "MipsISD::SelectCC";
48 case MipsISD::FPSelectCC : return "MipsISD::FPSelectCC";
49 case MipsISD::FPBrcond : return "MipsISD::FPBrcond";
50 case MipsISD::FPCmp : return "MipsISD::FPCmp";
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +000051 case MipsISD::FPRound : return "MipsISD::FPRound";
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000052 default : return NULL;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000053 }
54}
55
56MipsTargetLowering::
57MipsTargetLowering(MipsTargetMachine &TM): TargetLowering(TM)
58{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000059 Subtarget = &TM.getSubtarget<MipsSubtarget>();
60
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000061 // Mips does not have i1 type, so use i32 for
62 // setcc operations results (slt, sgt, ...).
Duncan Sands03228082008-11-23 15:47:28 +000063 setBooleanContents(ZeroOrOneBooleanContent);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000064
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +000065 // JumpTable targets must use GOT when using PIC_
66 setUsesGlobalOffsetTable(true);
67
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000068 // Set up the register classes
69 addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000070 addRegisterClass(MVT::f32, Mips::FGR32RegisterClass);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000071
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000072 // When dealing with single precision only, use libcalls
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +000073 if (!Subtarget->isSingleFloat())
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000074 if (!Subtarget->isFP64bit())
75 addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000076
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +000077 // Legal fp constants
78 addLegalFPImmediate(APFloat(+0.0f));
79
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000080 // Load extented operations for i1 types must be promoted
Evan Cheng03294662008-10-14 21:26:46 +000081 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
82 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
83 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000084
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000085 // Used by legalize types to correctly generate the setcc result.
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +000086 // Without this, every float setcc comes with a AND/OR with the result,
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000087 // we don't want this, since the fpcmp result goes to a flag register,
88 // which is used implicitly by brcond and select operations.
89 AddPromotedToType(ISD::SETCC, MVT::i1, MVT::i32);
90
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +000091 // Mips Custom Operations
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +000092 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
93 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
94 setOperationAction(ISD::RET, MVT::Other, Custom);
95 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
96 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
97 setOperationAction(ISD::SELECT, MVT::f32, Custom);
98 setOperationAction(ISD::SELECT, MVT::i32, Custom);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +000099 setOperationAction(ISD::SETCC, MVT::f32, Custom);
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000100 setOperationAction(ISD::SETCC, MVT::f64, Custom);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000101 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
102 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000103 setOperationAction(ISD::FP_TO_SINT, MVT::i32, Custom);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000104
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000105 // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors'
106 // with operands comming from setcc fp comparions. This is necessary since
107 // the result from these setcc are in a flag registers (FCR31).
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000108 setOperationAction(ISD::AND, MVT::i32, Custom);
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000109 setOperationAction(ISD::OR, MVT::i32, Custom);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000110
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000111 // Operations not directly supported by Mips.
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000112 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
113 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
114 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000115 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
116 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
117 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000118 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
119 setOperationAction(ISD::CTTZ, MVT::i32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000120 setOperationAction(ISD::ROTL, MVT::i32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000121 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
122 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
123 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Bruno Cardoso Lopes7bd71822008-07-31 18:50:54 +0000124 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000125
126 // We don't have line number support yet.
127 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
128 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
129 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
130 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
131
132 // Use the default for now
133 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
134 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
135 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000136
Bruno Cardoso Lopesea9d4d62008-08-04 06:44:31 +0000137 if (Subtarget->isSingleFloat())
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000138 setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000139
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +0000140 if (!Subtarget->hasSEInReg()) {
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000141 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000142 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
143 }
144
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000145 if (!Subtarget->hasBitCount())
146 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
147
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000148 if (!Subtarget->hasSwap())
149 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
150
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000151 setStackPointerRegisterToSaveRestore(Mips::SP);
152 computeRegisterProperties();
153}
154
155
Duncan Sands5480c042009-01-01 15:52:00 +0000156MVT MipsTargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000157 return MVT::i32;
158}
159
160
Dan Gohman475871a2008-07-27 21:46:04 +0000161SDValue MipsTargetLowering::
162LowerOperation(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000163{
164 switch (Op.getOpcode())
165 {
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000166 case ISD::AND: return LowerANDOR(Op, DAG);
167 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
168 case ISD::CALL: return LowerCALL(Op, DAG);
169 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
170 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
171 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000172 case ISD::FP_TO_SINT: return LowerFP_TO_SINT(Op, DAG);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000173 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
174 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
175 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
176 case ISD::OR: return LowerANDOR(Op, DAG);
177 case ISD::RET: return LowerRET(Op, DAG);
178 case ISD::SELECT: return LowerSELECT(Op, DAG);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000179 case ISD::SETCC: return LowerSETCC(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000180 }
Dan Gohman475871a2008-07-27 21:46:04 +0000181 return SDValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000182}
183
184//===----------------------------------------------------------------------===//
185// Lower helper functions
186//===----------------------------------------------------------------------===//
187
188// AddLiveIn - This helper function adds the specified physical register to the
189// MachineFunction as a live in value. It also creates a corresponding
190// virtual register for it.
191static unsigned
192AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
193{
194 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +0000195 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
196 MF.getRegInfo().addLiveIn(PReg, VReg);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000197 return VReg;
198}
199
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000200// A address must be loaded from a small section if its size is less than the
201// small section size threshold. Data in this section must be addressed using
202// gp_rel operator.
203bool MipsTargetLowering::IsInSmallSection(unsigned Size) {
204 return (Size > 0 && (Size <= Subtarget->getSSectionThreshold()));
205}
206
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000207// Discover if this global address can be placed into small data/bss section.
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000208bool MipsTargetLowering::IsGlobalInSmallSection(GlobalValue *GV)
209{
210 const TargetData *TD = getTargetData();
Bruno Cardoso Lopesfeb95cc2008-07-22 15:34:27 +0000211 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
212
213 if (!GVA)
214 return false;
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000215
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000216 const Type *Ty = GV->getType()->getElementType();
Duncan Sands777d2302009-05-09 07:06:46 +0000217 unsigned Size = TD->getTypeAllocSize(Ty);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000218
219 // if this is a internal constant string, there is a special
220 // section for it, but not in small data/bss.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000221 if (GVA->hasInitializer() && GV->hasLocalLinkage()) {
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000222 Constant *C = GVA->getInitializer();
223 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
224 if (CVA && CVA->isCString())
225 return false;
226 }
227
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000228 return IsInSmallSection(Size);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000229}
230
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000231// Get fp branch code (not opcode) from condition code.
232static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
233 if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
234 return Mips::BRANCH_T;
235
236 if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
237 return Mips::BRANCH_F;
238
239 return Mips::BRANCH_INVALID;
240}
241
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000242static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
243 switch(BC) {
244 default:
245 assert(0 && "Unknown branch code");
246 case Mips::BRANCH_T : return Mips::BC1T;
247 case Mips::BRANCH_F : return Mips::BC1F;
248 case Mips::BRANCH_TL : return Mips::BC1TL;
249 case Mips::BRANCH_FL : return Mips::BC1FL;
250 }
251}
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000252
253static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
254 switch (CC) {
255 default: assert(0 && "Unknown fp condition code!");
256 case ISD::SETEQ:
257 case ISD::SETOEQ: return Mips::FCOND_EQ;
258 case ISD::SETUNE: return Mips::FCOND_OGL;
259 case ISD::SETLT:
260 case ISD::SETOLT: return Mips::FCOND_OLT;
261 case ISD::SETGT:
262 case ISD::SETOGT: return Mips::FCOND_OGT;
263 case ISD::SETLE:
264 case ISD::SETOLE: return Mips::FCOND_OLE;
265 case ISD::SETGE:
266 case ISD::SETOGE: return Mips::FCOND_OGE;
267 case ISD::SETULT: return Mips::FCOND_ULT;
268 case ISD::SETULE: return Mips::FCOND_ULE;
269 case ISD::SETUGT: return Mips::FCOND_UGT;
270 case ISD::SETUGE: return Mips::FCOND_UGE;
271 case ISD::SETUO: return Mips::FCOND_UN;
272 case ISD::SETO: return Mips::FCOND_OR;
273 case ISD::SETNE:
274 case ISD::SETONE: return Mips::FCOND_NEQ;
275 case ISD::SETUEQ: return Mips::FCOND_UEQ;
276 }
277}
278
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000279MachineBasicBlock *
280MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
Dan Gohman1fdbc1d2009-02-07 16:15:20 +0000281 MachineBasicBlock *BB) const {
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000282 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
283 bool isFPCmp = false;
Dale Johannesen94817572009-02-13 02:34:39 +0000284 DebugLoc dl = MI->getDebugLoc();
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000285
286 switch (MI->getOpcode()) {
287 default: assert(false && "Unexpected instr type to insert");
288 case Mips::Select_FCC:
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000289 case Mips::Select_FCC_S32:
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000290 case Mips::Select_FCC_D32:
291 isFPCmp = true; // FALL THROUGH
292 case Mips::Select_CC:
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000293 case Mips::Select_CC_S32:
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000294 case Mips::Select_CC_D32: {
295 // To "insert" a SELECT_CC instruction, we actually have to insert the
296 // diamond control-flow pattern. The incoming instruction knows the
297 // destination vreg to set, the condition code register to branch on, the
298 // true/false values to select between, and a branch opcode to use.
299 const BasicBlock *LLVM_BB = BB->getBasicBlock();
300 MachineFunction::iterator It = BB;
301 ++It;
302
303 // thisMBB:
304 // ...
305 // TrueVal = ...
306 // setcc r1, r2, r3
307 // bNE r1, r0, copy1MBB
308 // fallthrough --> copy0MBB
309 MachineBasicBlock *thisMBB = BB;
310 MachineFunction *F = BB->getParent();
311 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
312 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
313
314 // Emit the right instruction according to the type of the operands compared
315 if (isFPCmp) {
316 // Find the condiction code present in the setcc operation.
317 Mips::CondCode CC = (Mips::CondCode)MI->getOperand(4).getImm();
318 // Get the branch opcode from the branch code.
319 unsigned Opc = FPBranchCodeToOpc(GetFPBranchCodeFromCond(CC));
Dale Johannesen94817572009-02-13 02:34:39 +0000320 BuildMI(BB, dl, TII->get(Opc)).addMBB(sinkMBB);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000321 } else
Dale Johannesen94817572009-02-13 02:34:39 +0000322 BuildMI(BB, dl, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg())
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000323 .addReg(Mips::ZERO).addMBB(sinkMBB);
324
325 F->insert(It, copy0MBB);
326 F->insert(It, sinkMBB);
327 // Update machine-CFG edges by first adding all successors of the current
328 // block to the new block which will contain the Phi node for the select.
329 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
330 e = BB->succ_end(); i != e; ++i)
331 sinkMBB->addSuccessor(*i);
332 // Next, remove all successors of the current block, and add the true
333 // and fallthrough blocks as its successors.
334 while(!BB->succ_empty())
335 BB->removeSuccessor(BB->succ_begin());
336 BB->addSuccessor(copy0MBB);
337 BB->addSuccessor(sinkMBB);
338
339 // copy0MBB:
340 // %FalseValue = ...
341 // # fallthrough to sinkMBB
342 BB = copy0MBB;
343
344 // Update machine-CFG edges
345 BB->addSuccessor(sinkMBB);
346
347 // sinkMBB:
348 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
349 // ...
350 BB = sinkMBB;
Dale Johannesen94817572009-02-13 02:34:39 +0000351 BuildMI(BB, dl, TII->get(Mips::PHI), MI->getOperand(0).getReg())
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000352 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
353 .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB);
354
355 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
356 return BB;
357 }
358 }
359}
360
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000361//===----------------------------------------------------------------------===//
362// Misc Lower Operation implementation
363//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000364
Dan Gohman475871a2008-07-27 21:46:04 +0000365SDValue MipsTargetLowering::
Bruno Cardoso Lopesd3bdf192009-05-27 17:23:44 +0000366LowerFP_TO_SINT(SDValue Op, SelectionDAG &DAG)
367{
368 if (!Subtarget->isMips1())
369 return Op;
370
371 MachineFunction &MF = DAG.getMachineFunction();
372 unsigned CCReg = AddLiveIn(MF, Mips::FCR31, Mips::CCRRegisterClass);
373
374 SDValue Chain = DAG.getEntryNode();
375 DebugLoc dl = Op.getDebugLoc();
376 SDValue Src = Op.getOperand(0);
377
378 // Set the condition register
379 SDValue CondReg = DAG.getCopyFromReg(Chain, dl, CCReg, MVT::i32);
380 CondReg = DAG.getCopyToReg(Chain, dl, Mips::AT, CondReg);
381 CondReg = DAG.getCopyFromReg(CondReg, dl, Mips::AT, MVT::i32);
382
383 SDValue Cst = DAG.getConstant(3, MVT::i32);
384 SDValue Or = DAG.getNode(ISD::OR, dl, MVT::i32, CondReg, Cst);
385 Cst = DAG.getConstant(2, MVT::i32);
386 SDValue Xor = DAG.getNode(ISD::XOR, dl, MVT::i32, Or, Cst);
387
388 SDValue InFlag(0, 0);
389 CondReg = DAG.getCopyToReg(Chain, dl, Mips::FCR31, Xor, InFlag);
390
391 // Emit the round instruction and bit convert to integer
392 SDValue Trunc = DAG.getNode(MipsISD::FPRound, dl, MVT::f32,
393 Src, CondReg.getValue(1));
394 SDValue BitCvt = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Trunc);
395 return BitCvt;
396}
397
398SDValue MipsTargetLowering::
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000399LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG)
400{
401 SDValue Chain = Op.getOperand(0);
402 SDValue Size = Op.getOperand(1);
Dale Johannesena05dca42009-02-04 23:02:30 +0000403 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000404
405 // Get a reference from Mips stack pointer
Dale Johannesena05dca42009-02-04 23:02:30 +0000406 SDValue StackPointer = DAG.getCopyFromReg(Chain, dl, Mips::SP, MVT::i32);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000407
408 // Subtract the dynamic size from the actual stack size to
409 // obtain the new stack size.
Dale Johannesena05dca42009-02-04 23:02:30 +0000410 SDValue Sub = DAG.getNode(ISD::SUB, dl, MVT::i32, StackPointer, Size);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000411
412 // The Sub result contains the new stack start address, so it
413 // must be placed in the stack pointer register.
Dale Johannesena05dca42009-02-04 23:02:30 +0000414 Chain = DAG.getCopyToReg(StackPointer.getValue(1), dl, Mips::SP, Sub);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000415
416 // This node always has two return values: a new stack pointer
417 // value and a chain
418 SDValue Ops[2] = { Sub, Chain };
Dale Johannesena05dca42009-02-04 23:02:30 +0000419 return DAG.getMergeValues(Ops, 2, dl);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000420}
421
422SDValue MipsTargetLowering::
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000423LowerANDOR(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000424{
425 SDValue LHS = Op.getOperand(0);
426 SDValue RHS = Op.getOperand(1);
Dale Johannesende064702009-02-06 21:50:26 +0000427 DebugLoc dl = Op.getDebugLoc();
428
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000429 if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp)
430 return Op;
431
432 SDValue True = DAG.getConstant(1, MVT::i32);
433 SDValue False = DAG.getConstant(0, MVT::i32);
434
Dale Johannesende064702009-02-06 21:50:26 +0000435 SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000436 LHS, True, False, LHS.getOperand(2));
Dale Johannesende064702009-02-06 21:50:26 +0000437 SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000438 RHS, True, False, RHS.getOperand(2));
439
Dale Johannesende064702009-02-06 21:50:26 +0000440 return DAG.getNode(Op.getOpcode(), dl, MVT::i32, LSEL, RSEL);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000441}
442
443SDValue MipsTargetLowering::
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000444LowerBRCOND(SDValue Op, SelectionDAG &DAG)
445{
446 // The first operand is the chain, the second is the condition, the third is
447 // the block to branch to if the condition is true.
448 SDValue Chain = Op.getOperand(0);
449 SDValue Dest = Op.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000450 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000451
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000452 if (Op.getOperand(1).getOpcode() != MipsISD::FPCmp)
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000453 return Op;
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000454
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000455 SDValue CondRes = Op.getOperand(1);
456 SDValue CCNode = CondRes.getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000457 Mips::CondCode CC =
458 (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getZExtValue();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000459 SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32);
460
Dale Johannesende064702009-02-06 21:50:26 +0000461 return DAG.getNode(MipsISD::FPBrcond, dl, Op.getValueType(), Chain, BrCode,
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000462 Dest, CondRes);
463}
464
465SDValue MipsTargetLowering::
466LowerSETCC(SDValue Op, SelectionDAG &DAG)
467{
468 // The operands to this are the left and right operands to compare (ops #0,
469 // and #1) and the condition code to compare them with (op #2) as a
470 // CondCodeSDNode.
471 SDValue LHS = Op.getOperand(0);
Dale Johannesende064702009-02-06 21:50:26 +0000472 SDValue RHS = Op.getOperand(1);
473 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000474
475 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
476
Dale Johannesende064702009-02-06 21:50:26 +0000477 return DAG.getNode(MipsISD::FPCmp, dl, Op.getValueType(), LHS, RHS,
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000478 DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
479}
480
481SDValue MipsTargetLowering::
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000482LowerSELECT(SDValue Op, SelectionDAG &DAG)
483{
484 SDValue Cond = Op.getOperand(0);
485 SDValue True = Op.getOperand(1);
486 SDValue False = Op.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000487 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000488
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000489 // if the incomming condition comes from a integer compare, the select
490 // operation must be SelectCC or a conditional move if the subtarget
491 // supports it.
492 if (Cond.getOpcode() != MipsISD::FPCmp) {
493 if (Subtarget->hasCondMov() && !True.getValueType().isFloatingPoint())
494 return Op;
Dale Johannesende064702009-02-06 21:50:26 +0000495 return DAG.getNode(MipsISD::SelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000496 Cond, True, False);
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000497 }
498
499 // if the incomming condition comes from fpcmp, the select
500 // operation must use FPSelectCC.
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000501 SDValue CCNode = Cond.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000502 return DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000503 Cond, True, False, CCNode);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000504}
505
506SDValue MipsTargetLowering::
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000507LowerGlobalAddress(SDValue Op, SelectionDAG &DAG)
508{
Dale Johannesende064702009-02-06 21:50:26 +0000509 // FIXME there isn't actually debug info here
Dale Johannesen33c960f2009-02-04 20:06:27 +0000510 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000511 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
512 SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
513
514 if (!Subtarget->hasABICall()) {
Dan Gohmanfc166572009-04-09 23:54:40 +0000515 SDVTList VTs = DAG.getVTList(MVT::i32);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000516 SDValue Ops[] = { GA };
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000517 // %gp_rel relocation
518 if (!isa<Function>(GV) && IsGlobalInSmallSection(GV)) {
Dan Gohmanfc166572009-04-09 23:54:40 +0000519 SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, dl, VTs, Ops, 1);
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000520 SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000521 return DAG.getNode(ISD::ADD, dl, MVT::i32, GOT, GPRelNode);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000522 }
523 // %hi/%lo relocation
Dan Gohmanfc166572009-04-09 23:54:40 +0000524 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, Ops, 1);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000525 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
526 return DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000527
528 } else { // Abicall relocations, TODO: make this cleaner.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000529 SDValue ResNode = DAG.getLoad(MVT::i32, dl,
530 DAG.getEntryNode(), GA, NULL, 0);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000531 // On functions and global targets not internal linked only
532 // a load from got/GP is necessary for PIC to work.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000533 if (!GV->hasLocalLinkage() || isa<Function>(GV))
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000534 return ResNode;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000535 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
536 return DAG.getNode(ISD::ADD, dl, MVT::i32, ResNode, Lo);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000537 }
538
539 assert(0 && "Dont know how to handle GlobalAddress");
540 return SDValue(0,0);
541}
542
543SDValue MipsTargetLowering::
544LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
545{
546 assert(0 && "TLS not implemented for MIPS.");
547 return SDValue(); // Not reached
548}
549
550SDValue MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000551LowerJumpTable(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000552{
Dan Gohman475871a2008-07-27 21:46:04 +0000553 SDValue ResNode;
554 SDValue HiPart;
Dale Johannesende064702009-02-06 21:50:26 +0000555 // FIXME there isn't actually debug info here
Dale Johannesen33c960f2009-02-04 20:06:27 +0000556 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000557
Duncan Sands83ec4b62008-06-06 12:08:01 +0000558 MVT PtrVT = Op.getValueType();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000559 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +0000560 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000561
562 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Dan Gohmanfc166572009-04-09 23:54:40 +0000563 SDVTList VTs = DAG.getVTList(MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000564 SDValue Ops[] = { JTI };
Dan Gohmanfc166572009-04-09 23:54:40 +0000565 HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, Ops, 1);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000566 } else // Emit Load from Global Pointer
Dale Johannesen33c960f2009-02-04 20:06:27 +0000567 HiPart = DAG.getLoad(MVT::i32, dl, DAG.getEntryNode(), JTI, NULL, 0);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000568
Dale Johannesen33c960f2009-02-04 20:06:27 +0000569 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, JTI);
570 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000571
572 return ResNode;
573}
574
Dan Gohman475871a2008-07-27 21:46:04 +0000575SDValue MipsTargetLowering::
576LowerConstantPool(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000577{
Dan Gohman475871a2008-07-27 21:46:04 +0000578 SDValue ResNode;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000579 ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
580 Constant *C = N->getConstVal();
Dan Gohman475871a2008-07-27 21:46:04 +0000581 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment());
Dale Johannesende064702009-02-06 21:50:26 +0000582 // FIXME there isn't actually debug info here
583 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000584
585 // gp_rel relocation
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000586 // FIXME: we should reference the constant pool using small data sections,
587 // but the asm printer currently doens't support this feature without
588 // hacking it. This feature should come soon so we can uncomment the
589 // stuff below.
590 //if (!Subtarget->hasABICall() &&
Duncan Sands777d2302009-05-09 07:06:46 +0000591 // IsInSmallSection(getTargetData()->getTypeAllocSize(C->getType()))) {
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000592 // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
Dale Johannesenb300d2a2009-02-07 00:55:49 +0000593 // SDValue GOT = DAG.getGLOBAL_OFFSET_TABLE(MVT::i32);
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000594 // ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
595 //} else { // %hi/%lo relocation
Dale Johannesende064702009-02-06 21:50:26 +0000596 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, MVT::i32, CP);
597 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, CP);
598 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000599 //}
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000600
601 return ResNode;
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000602}
603
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000604//===----------------------------------------------------------------------===//
605// Calling Convention Implementation
606//
607// The lower operations present on calling convention works on this order:
608// LowerCALL (virt regs --> phys regs, virt regs --> stack)
609// LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs)
610// LowerRET (virt regs --> phys regs)
611// LowerCALL (phys regs --> virt regs)
612//
613//===----------------------------------------------------------------------===//
614
615#include "MipsGenCallingConv.inc"
616
617//===----------------------------------------------------------------------===//
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000618// TODO: Implement a generic logic using tblgen that can support this.
619// Mips O32 ABI rules:
620// ---
621// i32 - Passed in A0, A1, A2, A3 and stack
622// f32 - Only passed in f32 registers if no int reg has been used yet to hold
623// an argument. Otherwise, passed in A1, A2, A3 and stack.
624// f64 - Only passed in two aliased f32 registers if no int reg has been used
625// yet to hold an argument. Otherwise, use A2, A3 and stack. If A1 is
626// not used, it must be shadowed. If only A3 is avaiable, shadow it and
627// go to stack.
628//===----------------------------------------------------------------------===//
629
630static bool CC_MipsO32(unsigned ValNo, MVT ValVT,
631 MVT LocVT, CCValAssign::LocInfo LocInfo,
632 ISD::ArgFlagsTy ArgFlags, CCState &State) {
633
634 static const unsigned IntRegsSize=4, FloatRegsSize=2;
635
636 static const unsigned IntRegs[] = {
637 Mips::A0, Mips::A1, Mips::A2, Mips::A3
638 };
639 static const unsigned F32Regs[] = {
640 Mips::F12, Mips::F14
641 };
642 static const unsigned F64Regs[] = {
643 Mips::D6, Mips::D7
644 };
645
646 unsigned Reg=0;
647 unsigned UnallocIntReg = State.getFirstUnallocated(IntRegs, IntRegsSize);
648 bool IntRegUsed = (IntRegs[UnallocIntReg] != (unsigned (Mips::A0)));
649
650 // Promote i8 and i16
651 if (LocVT == MVT::i8 || LocVT == MVT::i16) {
652 LocVT = MVT::i32;
653 if (ArgFlags.isSExt())
654 LocInfo = CCValAssign::SExt;
655 else if (ArgFlags.isZExt())
656 LocInfo = CCValAssign::ZExt;
657 else
658 LocInfo = CCValAssign::AExt;
659 }
660
661 if (ValVT == MVT::i32 || (ValVT == MVT::f32 && IntRegUsed)) {
662 Reg = State.AllocateReg(IntRegs, IntRegsSize);
663 IntRegUsed = true;
664 LocVT = MVT::i32;
665 }
666
667 if (ValVT.isFloatingPoint() && !IntRegUsed) {
668 if (ValVT == MVT::f32)
669 Reg = State.AllocateReg(F32Regs, FloatRegsSize);
670 else
671 Reg = State.AllocateReg(F64Regs, FloatRegsSize);
672 }
673
674 if (ValVT == MVT::f64 && IntRegUsed) {
675 if (UnallocIntReg != IntRegsSize) {
676 // If we hit register A3 as the first not allocated, we must
677 // mark it as allocated (shadow) and use the stack instead.
678 if (IntRegs[UnallocIntReg] != (unsigned (Mips::A3)))
679 Reg = Mips::A2;
680 for (;UnallocIntReg < IntRegsSize; ++UnallocIntReg)
681 State.AllocateReg(UnallocIntReg);
682 }
683 LocVT = MVT::i32;
684 }
685
686 if (!Reg) {
687 unsigned SizeInBytes = ValVT.getSizeInBits() >> 3;
688 unsigned Offset = State.AllocateStack(SizeInBytes, SizeInBytes);
689 State.addLoc(CCValAssign::getMem(ValNo, ValVT, Offset, LocVT, LocInfo));
690 } else
691 State.addLoc(CCValAssign::getReg(ValNo, ValVT, Reg, LocVT, LocInfo));
692
693 return false; // CC must always match
694}
695
696//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000697// CALL Calling Convention Implementation
698//===----------------------------------------------------------------------===//
699
Nate Begeman5bf4b752009-01-26 03:15:54 +0000700/// LowerCALL - functions arguments are copied from virtual regs to
701/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000702/// TODO: isVarArg, isTailCall.
Dan Gohman475871a2008-07-27 21:46:04 +0000703SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000704LowerCALL(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000705{
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000706 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000707
Dan Gohman095cc292008-09-13 01:54:27 +0000708 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
709 SDValue Chain = TheCall->getChain();
710 SDValue Callee = TheCall->getCallee();
711 bool isVarArg = TheCall->isVarArg();
712 unsigned CC = TheCall->getCallingConv();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000713 DebugLoc dl = TheCall->getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000714
715 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000716
717 // Analyze operands of the call, assigning locations to each operand.
718 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000719 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
720
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000721 // To meet O32 ABI, Mips must always allocate 16 bytes on
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000722 // the stack (even if less than 4 are used as arguments)
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000723 if (Subtarget->isABI_O32()) {
724 int VTsize = MVT(MVT::i32).getSizeInBits()/8;
725 MFI->CreateFixedObject(VTsize, (VTsize*3));
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000726 CCInfo.AnalyzeCallOperands(TheCall, CC_MipsO32);
727 } else
728 CCInfo.AnalyzeCallOperands(TheCall, CC_Mips);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000729
730 // Get a count of how many bytes are to be pushed on the stack.
731 unsigned NumBytes = CCInfo.getNextStackOffset();
Chris Lattnere563bbc2008-10-11 22:08:30 +0000732 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000733
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000734 // With EABI is it possible to have 16 args on registers.
Dan Gohman475871a2008-07-27 21:46:04 +0000735 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
736 SmallVector<SDValue, 8> MemOpChains;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000737
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000738 // First/LastArgStackLoc contains the first/last
739 // "at stack" argument location.
740 int LastArgStackLoc = 0;
741 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000742
743 // Walk the register/memloc assignments, inserting copies/loads.
744 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000745 SDValue Arg = TheCall->getArg(i);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000746 CCValAssign &VA = ArgLocs[i];
747
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000748 // Promote the value if needed.
749 switch (VA.getLocInfo()) {
Chris Lattnere0b12152008-03-17 06:57:02 +0000750 default: assert(0 && "Unknown loc info!");
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000751 case CCValAssign::Full:
752 if (Subtarget->isABI_O32() && VA.isRegLoc()) {
753 if (VA.getValVT() == MVT::f32 && VA.getLocVT() == MVT::i32)
754 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i32, Arg);
755 if (VA.getValVT() == MVT::f64 && VA.getLocVT() == MVT::i32) {
756 Arg = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::i64, Arg);
757 SDValue Lo = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Arg,
758 DAG.getConstant(0, getPointerTy()));
759 SDValue Hi = DAG.getNode(ISD::EXTRACT_ELEMENT, dl, MVT::i32, Arg,
760 DAG.getConstant(1, getPointerTy()));
761 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Lo));
762 RegsToPass.push_back(std::make_pair(VA.getLocReg()+1, Hi));
763 continue;
764 }
765 }
766 break;
Chris Lattnere0b12152008-03-17 06:57:02 +0000767 case CCValAssign::SExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000768 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000769 break;
770 case CCValAssign::ZExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000771 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000772 break;
773 case CCValAssign::AExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000774 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000775 break;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000776 }
777
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000778 // Arguments that can be passed on register must be kept at
779 // RegsToPass vector
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000780 if (VA.isRegLoc()) {
781 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Chris Lattnere0b12152008-03-17 06:57:02 +0000782 continue;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000783 }
Chris Lattnere0b12152008-03-17 06:57:02 +0000784
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000785 // Register can't get to this point...
Chris Lattnere0b12152008-03-17 06:57:02 +0000786 assert(VA.isMemLoc());
787
788 // Create the frame index object for this incoming parameter
789 // This guarantees that when allocating Local Area the firsts
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000790 // 16 bytes which are alwayes reserved won't be overwritten
791 // if O32 ABI is used. For EABI the first address is zero.
792 LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000793 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000794 LastArgStackLoc);
Chris Lattnere0b12152008-03-17 06:57:02 +0000795
Dan Gohman475871a2008-07-27 21:46:04 +0000796 SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
Chris Lattnere0b12152008-03-17 06:57:02 +0000797
798 // emit ISD::STORE whichs stores the
799 // parameter value to a stack Location
Dale Johannesen33c960f2009-02-04 20:06:27 +0000800 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000801 }
802
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000803 // Transform all store nodes into one single node because all store
804 // nodes are independent of each other.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000805 if (!MemOpChains.empty())
Dale Johannesen33c960f2009-02-04 20:06:27 +0000806 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000807 &MemOpChains[0], MemOpChains.size());
808
809 // Build a sequence of copy-to-reg nodes chained together with token
810 // chain and flag operands which copy the outgoing args into registers.
811 // The InFlag in necessary since all emited instructions must be
812 // stuck together.
Dan Gohman475871a2008-07-27 21:46:04 +0000813 SDValue InFlag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000814 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Dale Johannesen33c960f2009-02-04 20:06:27 +0000815 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000816 RegsToPass[i].second, InFlag);
817 InFlag = Chain.getValue(1);
818 }
819
Bill Wendling056292f2008-09-16 21:48:12 +0000820 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
821 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
822 // node so that legalize doesn't hack it.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000823 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000824 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
Bill Wendling056292f2008-09-16 21:48:12 +0000825 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
826 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
827
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000828 // MipsJmpLink = #chain, #target_address, #opt_in_flags...
829 // = Chain, Callee, Reg#1, Reg#2, ...
830 //
831 // Returns a chain & a flag for retval copy to use.
832 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +0000833 SmallVector<SDValue, 8> Ops;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000834 Ops.push_back(Chain);
835 Ops.push_back(Callee);
836
837 // Add argument registers to the end of the list so that they are
838 // known live into the call.
839 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
840 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
841 RegsToPass[i].second.getValueType()));
842
Gabor Greifba36cb52008-08-28 21:40:38 +0000843 if (InFlag.getNode())
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000844 Ops.push_back(InFlag);
845
Dale Johannesen33c960f2009-02-04 20:06:27 +0000846 Chain = DAG.getNode(MipsISD::JmpLink, dl, NodeTys, &Ops[0], Ops.size());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000847 InFlag = Chain.getValue(1);
848
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000849 // Create the CALLSEQ_END node.
Chris Lattnere563bbc2008-10-11 22:08:30 +0000850 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
851 DAG.getIntPtrConstant(0, true), InFlag);
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000852 InFlag = Chain.getValue(1);
853
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000854 // Create a stack location to hold GP when PIC is used. This stack
855 // location is used on function prologue to save GP and also after all
856 // emited CALL's to restore GP.
857 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000858 // Function can have an arbitrary number of calls, so
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000859 // hold the LastArgStackLoc with the biggest offset.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000860 int FI;
861 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000862 if (LastArgStackLoc >= MipsFI->getGPStackOffset()) {
863 LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000864 // Create the frame index only once. SPOffset here can be anything
865 // (this will be fixed on processFunctionBeforeFrameFinalized)
866 if (MipsFI->getGPStackOffset() == -1) {
867 FI = MFI->CreateFixedObject(4, 0);
868 MipsFI->setGPFI(FI);
869 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000870 MipsFI->setGPStackOffset(LastArgStackLoc);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000871 }
872
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000873 // Reload GP value.
874 FI = MipsFI->getGPFI();
Dan Gohman475871a2008-07-27 21:46:04 +0000875 SDValue FIN = DAG.getFrameIndex(FI,getPointerTy());
Dale Johannesen33c960f2009-02-04 20:06:27 +0000876 SDValue GPLoad = DAG.getLoad(MVT::i32, dl, Chain, FIN, NULL, 0);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000877 Chain = GPLoad.getValue(1);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000878 Chain = DAG.getCopyToReg(Chain, dl, DAG.getRegister(Mips::GP, MVT::i32),
Dan Gohman475871a2008-07-27 21:46:04 +0000879 GPLoad, SDValue(0,0));
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000880 InFlag = Chain.getValue(1);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000881 }
882
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000883 // Handle result values, copying them out of physregs into vregs that we
884 // return.
Dan Gohman095cc292008-09-13 01:54:27 +0000885 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG), Op.getResNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000886}
887
888/// LowerCallResult - Lower the result values of an ISD::CALL into the
889/// appropriate copies out of appropriate physical registers. This assumes that
890/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
891/// being lowered. Returns a SDNode with the same number of values as the
892/// ISD::CALL.
893SDNode *MipsTargetLowering::
Dan Gohman095cc292008-09-13 01:54:27 +0000894LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000895 unsigned CallingConv, SelectionDAG &DAG) {
896
Dan Gohman095cc292008-09-13 01:54:27 +0000897 bool isVarArg = TheCall->isVarArg();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000898 DebugLoc dl = TheCall->getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000899
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000900 // Assign locations to each value returned by this call.
901 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000902 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
903
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000904 CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips);
Dan Gohman475871a2008-07-27 21:46:04 +0000905 SmallVector<SDValue, 8> ResultVals;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000906
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000907 // Copy all of the result registers out of their specified physreg.
908 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dale Johannesen33c960f2009-02-04 20:06:27 +0000909 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000910 RVLocs[i].getValVT(), InFlag).getValue(1);
911 InFlag = Chain.getValue(2);
912 ResultVals.push_back(Chain.getValue(0));
913 }
914
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000915 ResultVals.push_back(Chain);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000916
917 // Merge everything together with a MERGE_VALUES node.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000918 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +0000919 &ResultVals[0], ResultVals.size()).getNode();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000920}
921
922//===----------------------------------------------------------------------===//
923// FORMAL_ARGUMENTS Calling Convention Implementation
924//===----------------------------------------------------------------------===//
925
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000926/// LowerFORMAL_ARGUMENTS - transform physical registers into
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000927/// virtual registers and generate load operations for
928/// arguments places on the stack.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000929/// TODO: isVarArg
Dan Gohman475871a2008-07-27 21:46:04 +0000930SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000931LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000932{
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000933 SDValue Root = Op.getOperand(0);
934 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000935 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000936 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000937 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000938
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000939 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000940 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000941
942 unsigned StackReg = MF.getTarget().getRegisterInfo()->getFrameRegister(MF);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000943
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000944 // GP must be live into PIC and non-PIC call target.
945 AddLiveIn(MF, Mips::GP, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000946
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000947 // Assign locations to all of the incoming arguments.
948 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000949 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
950
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000951 if (Subtarget->isABI_O32())
952 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_MipsO32);
953 else
954 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_Mips);
955
Dan Gohman475871a2008-07-27 21:46:04 +0000956 SmallVector<SDValue, 16> ArgValues;
957 SDValue StackPtr;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000958
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000959 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
960
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000961 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000962 CCValAssign &VA = ArgLocs[i];
963
964 // Arguments stored on registers
965 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000966 MVT RegVT = VA.getLocVT();
Bill Wendling06b8c192008-07-09 05:55:53 +0000967 TargetRegisterClass *RC = 0;
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000968
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000969 if (RegVT == MVT::i32)
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000970 RC = Mips::CPURegsRegisterClass;
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +0000971 else if (RegVT == MVT::f32)
972 RC = Mips::FGR32RegisterClass;
973 else if (RegVT == MVT::f64) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000974 if (!Subtarget->isSingleFloat())
975 RC = Mips::AFGR64RegisterClass;
976 } else
977 assert(0 && "RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000978
979 // Transform the arguments stored on
980 // physical registers into virtual ones
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000981 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000982 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000983
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000984 // If this is an 8 or 16-bit value, it has been passed promoted
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000985 // to 32 bits. Insert an assert[sz]ext to capture this, then
986 // truncate to the right size.
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000987 if (VA.getLocInfo() != CCValAssign::Full) {
Chris Lattnerd4015072009-03-26 05:28:14 +0000988 unsigned Opcode = 0;
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000989 if (VA.getLocInfo() == CCValAssign::SExt)
990 Opcode = ISD::AssertSext;
991 else if (VA.getLocInfo() == CCValAssign::ZExt)
992 Opcode = ISD::AssertZext;
Chris Lattnerd4015072009-03-26 05:28:14 +0000993 if (Opcode)
994 ArgValue = DAG.getNode(Opcode, dl, RegVT, ArgValue,
995 DAG.getValueType(VA.getValVT()));
Dale Johannesen33c960f2009-02-04 20:06:27 +0000996 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Bruno Cardoso Lopesb53db4f2009-03-19 02:12:28 +0000997 }
998
999 // Handle O32 ABI cases: i32->f32 and (i32,i32)->f64
1000 if (Subtarget->isABI_O32()) {
1001 if (RegVT == MVT::i32 && VA.getValVT() == MVT::f32)
1002 ArgValue = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue);
1003 if (RegVT == MVT::i32 && VA.getValVT() == MVT::f64) {
1004 unsigned Reg2 = AddLiveIn(DAG.getMachineFunction(),
1005 VA.getLocReg()+1, RC);
1006 SDValue ArgValue2 = DAG.getCopyFromReg(Root, dl, Reg2, RegVT);
1007 SDValue Hi = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue);
1008 SDValue Lo = DAG.getNode(ISD::BIT_CONVERT, dl, MVT::f32, ArgValue2);
1009 ArgValue = DAG.getNode(ISD::BUILD_PAIR, dl, MVT::f64, Lo, Hi);
1010 }
1011 }
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001012
1013 ArgValues.push_back(ArgValue);
1014
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001015 // To meet ABI, when VARARGS are passed on registers, the registers
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +00001016 // must have their values written to the caller stack frame.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001017 if ((isVarArg) && (Subtarget->isABI_O32())) {
Gabor Greifba36cb52008-08-28 21:40:38 +00001018 if (StackPtr.getNode() == 0)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001019 StackPtr = DAG.getRegister(StackReg, getPointerTy());
1020
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +00001021 // The stack pointer offset is relative to the caller stack frame.
1022 // Since the real stack size is unknown here, a negative SPOffset
1023 // is used so there's a way to adjust these offsets when the stack
1024 // size get known (on EliminateFrameIndex). A dummy SPOffset is
1025 // used instead of a direct negative address (which is recorded to
1026 // be used on emitPrologue) to avoid mis-calc of the first stack
1027 // offset on PEI::calculateFrameObjectOffsets.
1028 // Arguments are always 32-bit.
1029 int FI = MFI->CreateFixedObject(4, 0);
1030 MipsFI->recordStoreVarArgsFI(FI, -(4+(i*4)));
Dan Gohman475871a2008-07-27 21:46:04 +00001031 SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy());
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001032
1033 // emit ISD::STORE whichs stores the
1034 // parameter value to a stack Location
Dale Johannesen33c960f2009-02-04 20:06:27 +00001035 ArgValues.push_back(DAG.getStore(Root, dl, ArgValue, PtrOff, NULL, 0));
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001036 }
1037
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001038 } else { // VA.isRegLoc()
1039
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001040 // sanity check
1041 assert(VA.isMemLoc());
1042
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +00001043 // The stack pointer offset is relative to the caller stack frame.
1044 // Since the real stack size is unknown here, a negative SPOffset
1045 // is used so there's a way to adjust these offsets when the stack
1046 // size get known (on EliminateFrameIndex). A dummy SPOffset is
1047 // used instead of a direct negative address (which is recorded to
1048 // be used on emitPrologue) to avoid mis-calc of the first stack
1049 // offset on PEI::calculateFrameObjectOffsets.
1050 // Arguments are always 32-bit.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001051 unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
1052 int FI = MFI->CreateFixedObject(ArgSize, 0);
1053 MipsFI->recordLoadArgsFI(FI, -(ArgSize+
1054 (FirstStackArgLoc + VA.getLocMemOffset())));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001055
1056 // Create load nodes to retrieve arguments from the stack
Dan Gohman475871a2008-07-27 21:46:04 +00001057 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Dale Johannesen33c960f2009-02-04 20:06:27 +00001058 ArgValues.push_back(DAG.getLoad(VA.getValVT(), dl, Root, FIN, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001059 }
1060 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001061
1062 // The mips ABIs for returning structs by value requires that we copy
1063 // the sret argument into $v0 for the return. Save the argument into
1064 // a virtual register so that we can access it from the return points.
1065 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1066 unsigned Reg = MipsFI->getSRetReturnReg();
1067 if (!Reg) {
1068 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32));
1069 MipsFI->setSRetReturnReg(Reg);
1070 }
Dale Johannesen33c960f2009-02-04 20:06:27 +00001071 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
1072 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001073 }
1074
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001075 ArgValues.push_back(Root);
1076
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001077 // Return the new list of results.
Dale Johannesen33c960f2009-02-04 20:06:27 +00001078 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +00001079 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001080}
1081
1082//===----------------------------------------------------------------------===//
1083// Return Value Calling Convention Implementation
1084//===----------------------------------------------------------------------===//
1085
Dan Gohman475871a2008-07-27 21:46:04 +00001086SDValue MipsTargetLowering::
1087LowerRET(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001088{
1089 // CCValAssign - represent the assignment of
1090 // the return value to a location
1091 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001092 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
1093 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Dale Johannesena05dca42009-02-04 23:02:30 +00001094 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001095
1096 // CCState - Info about the registers and stack slot.
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001097 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001098
1099 // Analize return values of ISD::RET
Gabor Greifba36cb52008-08-28 21:40:38 +00001100 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_Mips);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001101
1102 // If this is the first return lowered for this function, add
1103 // the regs to the liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +00001104 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001105 for (unsigned i = 0; i != RVLocs.size(); ++i)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +00001106 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +00001107 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001108 }
1109
1110 // The chain is always operand #0
Dan Gohman475871a2008-07-27 21:46:04 +00001111 SDValue Chain = Op.getOperand(0);
1112 SDValue Flag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001113
1114 // Copy the result values into the output registers.
1115 for (unsigned i = 0; i != RVLocs.size(); ++i) {
1116 CCValAssign &VA = RVLocs[i];
1117 assert(VA.isRegLoc() && "Can only return in registers!");
1118
1119 // ISD::RET => ret chain, (regnum1,val1), ...
1120 // So i*2+1 index only the regnums
Dale Johannesena05dca42009-02-04 23:02:30 +00001121 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
1122 Op.getOperand(i*2+1), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001123
1124 // guarantee that all emitted copies are
1125 // stuck together, avoiding something bad
1126 Flag = Chain.getValue(1);
1127 }
1128
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001129 // The mips ABIs for returning structs by value requires that we copy
1130 // the sret argument into $v0 for the return. We saved the argument into
1131 // a virtual register in the entry block, so now we copy the value out
1132 // and into $v0.
1133 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
1134 MachineFunction &MF = DAG.getMachineFunction();
1135 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
1136 unsigned Reg = MipsFI->getSRetReturnReg();
1137
1138 if (!Reg)
1139 assert(0 && "sret virtual register not created in the entry block");
Dale Johannesena05dca42009-02-04 23:02:30 +00001140 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001141
Dale Johannesena05dca42009-02-04 23:02:30 +00001142 Chain = DAG.getCopyToReg(Chain, dl, Mips::V0, Val, Flag);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001143 Flag = Chain.getValue(1);
1144 }
1145
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001146 // Return on Mips is always a "jr $ra"
Gabor Greifba36cb52008-08-28 21:40:38 +00001147 if (Flag.getNode())
Dale Johannesena05dca42009-02-04 23:02:30 +00001148 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001149 Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001150 else // Return Void
Dale Johannesena05dca42009-02-04 23:02:30 +00001151 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001152 Chain, DAG.getRegister(Mips::RA, MVT::i32));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001153}
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001154
1155//===----------------------------------------------------------------------===//
1156// Mips Inline Assembly Support
1157//===----------------------------------------------------------------------===//
1158
1159/// getConstraintType - Given a constraint letter, return the type of
1160/// constraint it is for this target.
1161MipsTargetLowering::ConstraintType MipsTargetLowering::
1162getConstraintType(const std::string &Constraint) const
1163{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001164 // Mips specific constrainy
1165 // GCC config/mips/constraints.md
1166 //
1167 // 'd' : An address register. Equivalent to r
1168 // unless generating MIPS16 code.
1169 // 'y' : Equivalent to r; retained for
1170 // backwards compatibility.
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +00001171 // 'f' : Floating Point registers.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001172 if (Constraint.size() == 1) {
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001173 switch (Constraint[0]) {
1174 default : break;
1175 case 'd':
1176 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001177 case 'f':
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001178 return C_RegisterClass;
1179 break;
1180 }
1181 }
1182 return TargetLowering::getConstraintType(Constraint);
1183}
1184
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001185/// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1186/// return a list of registers that can be used to satisfy the constraint.
1187/// This should only be used for C_RegisterClass constraints.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001188std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00001189getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001190{
1191 if (Constraint.size() == 1) {
1192 switch (Constraint[0]) {
1193 case 'r':
1194 return std::make_pair(0U, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001195 case 'f':
Bruno Cardoso Lopesbdfbb742009-03-21 00:05:07 +00001196 if (VT == MVT::f32)
1197 return std::make_pair(0U, Mips::FGR32RegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001198 if (VT == MVT::f64)
1199 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1200 return std::make_pair(0U, Mips::AFGR64RegisterClass);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001201 }
1202 }
1203 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1204}
1205
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001206/// Given a register class constraint, like 'r', if this corresponds directly
1207/// to an LLVM register class, return a register of 0 and the register class
1208/// pointer.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001209std::vector<unsigned> MipsTargetLowering::
1210getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001211 MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001212{
1213 if (Constraint.size() != 1)
1214 return std::vector<unsigned>();
1215
1216 switch (Constraint[0]) {
1217 default : break;
1218 case 'r':
1219 // GCC Mips Constraint Letters
1220 case 'd':
1221 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001222 return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3,
1223 Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1,
1224 Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7,
1225 Mips::T8, 0);
1226
1227 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001228 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001229 if (Subtarget->isSingleFloat())
1230 return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1231 Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1232 Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1233 Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1234 Mips::F30, Mips::F31, 0);
1235 else
1236 return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8,
1237 Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26,
1238 Mips::F28, Mips::F30, 0);
Duncan Sands15126422008-07-08 09:33:14 +00001239 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001240
1241 if (VT == MVT::f64)
1242 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1243 return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4,
1244 Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13,
1245 Mips::D14, Mips::D15, 0);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001246 }
1247 return std::vector<unsigned>();
1248}
Dan Gohman6520e202008-10-18 02:06:02 +00001249
1250bool
1251MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1252 // The Mips target isn't yet aware of offsets.
1253 return false;
1254}