blob: fe7ece153bd60ab1a62a8b5825af9014d909a32d [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";
51 default : return NULL;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000052 }
53}
54
55MipsTargetLowering::
56MipsTargetLowering(MipsTargetMachine &TM): TargetLowering(TM)
57{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000058 Subtarget = &TM.getSubtarget<MipsSubtarget>();
59
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000060 // Mips does not have i1 type, so use i32 for
61 // setcc operations results (slt, sgt, ...).
Duncan Sands03228082008-11-23 15:47:28 +000062 setBooleanContents(ZeroOrOneBooleanContent);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000063
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +000064 // JumpTable targets must use GOT when using PIC_
65 setUsesGlobalOffsetTable(true);
66
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000067 // Set up the register classes
68 addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass);
69
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000070 // When dealing with single precision only, use libcalls
71 if (!Subtarget->isSingleFloat()) {
72 addRegisterClass(MVT::f32, Mips::AFGR32RegisterClass);
73 if (!Subtarget->isFP64bit())
74 addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass);
75 } else
76 addRegisterClass(MVT::f32, Mips::FGR32RegisterClass);
77
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +000078 // Legal fp constants
79 addLegalFPImmediate(APFloat(+0.0f));
80
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000081 // Load extented operations for i1 types must be promoted
Evan Cheng03294662008-10-14 21:26:46 +000082 setLoadExtAction(ISD::EXTLOAD, MVT::i1, Promote);
83 setLoadExtAction(ISD::ZEXTLOAD, MVT::i1, Promote);
84 setLoadExtAction(ISD::SEXTLOAD, MVT::i1, Promote);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000085
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000086 // Used by legalize types to correctly generate the setcc result.
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +000087 // Without this, every float setcc comes with a AND/OR with the result,
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000088 // we don't want this, since the fpcmp result goes to a flag register,
89 // which is used implicitly by brcond and select operations.
90 AddPromotedToType(ISD::SETCC, MVT::i1, MVT::i32);
91
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +000092 // Mips Custom Operations
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +000093 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
94 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
95 setOperationAction(ISD::RET, MVT::Other, Custom);
96 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
97 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
98 setOperationAction(ISD::SELECT, MVT::f32, Custom);
99 setOperationAction(ISD::SELECT, MVT::i32, Custom);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000100 setOperationAction(ISD::SETCC, MVT::f32, Custom);
101 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
102 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000103
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000104 // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors'
105 // with operands comming from setcc fp comparions. This is necessary since
106 // the result from these setcc are in a flag registers (FCR31).
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000107 setOperationAction(ISD::AND, MVT::i32, Custom);
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000108 setOperationAction(ISD::OR, MVT::i32, Custom);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000109
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000110 // Operations not directly supported by Mips.
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000111 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
112 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
113 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000114 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
115 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
116 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000117 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
118 setOperationAction(ISD::CTTZ, MVT::i32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000119 setOperationAction(ISD::ROTL, MVT::i32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000120 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
121 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
122 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Bruno Cardoso Lopes7bd71822008-07-31 18:50:54 +0000123 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000124
125 // We don't have line number support yet.
126 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
127 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
128 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
129 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
130
131 // Use the default for now
132 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
133 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
134 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000135
Bruno Cardoso Lopesea9d4d62008-08-04 06:44:31 +0000136 if (Subtarget->isSingleFloat())
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000137 setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000138
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +0000139 if (!Subtarget->hasSEInReg()) {
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000140 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000141 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
142 }
143
Bruno Cardoso Lopes65ad4522008-08-08 06:16:31 +0000144 if (!Subtarget->hasBitCount())
145 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
146
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000147 if (!Subtarget->hasSwap())
148 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
149
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000150 setStackPointerRegisterToSaveRestore(Mips::SP);
151 computeRegisterProperties();
152}
153
154
Duncan Sands5480c042009-01-01 15:52:00 +0000155MVT MipsTargetLowering::getSetCCResultType(MVT VT) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000156 return MVT::i32;
157}
158
159
Dan Gohman475871a2008-07-27 21:46:04 +0000160SDValue MipsTargetLowering::
161LowerOperation(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000162{
163 switch (Op.getOpcode())
164 {
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000165 case ISD::AND: return LowerANDOR(Op, DAG);
166 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
167 case ISD::CALL: return LowerCALL(Op, DAG);
168 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
169 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
170 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
171 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
172 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
173 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
174 case ISD::OR: return LowerANDOR(Op, DAG);
175 case ISD::RET: return LowerRET(Op, DAG);
176 case ISD::SELECT: return LowerSELECT(Op, DAG);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000177 case ISD::SETCC: return LowerSETCC(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000178 }
Dan Gohman475871a2008-07-27 21:46:04 +0000179 return SDValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000180}
181
182//===----------------------------------------------------------------------===//
183// Lower helper functions
184//===----------------------------------------------------------------------===//
185
186// AddLiveIn - This helper function adds the specified physical register to the
187// MachineFunction as a live in value. It also creates a corresponding
188// virtual register for it.
189static unsigned
190AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
191{
192 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +0000193 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
194 MF.getRegInfo().addLiveIn(PReg, VReg);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000195 return VReg;
196}
197
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000198// A address must be loaded from a small section if its size is less than the
199// small section size threshold. Data in this section must be addressed using
200// gp_rel operator.
201bool MipsTargetLowering::IsInSmallSection(unsigned Size) {
202 return (Size > 0 && (Size <= Subtarget->getSSectionThreshold()));
203}
204
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000205// Discover if this global address can be placed into small data/bss section.
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000206bool MipsTargetLowering::IsGlobalInSmallSection(GlobalValue *GV)
207{
208 const TargetData *TD = getTargetData();
Bruno Cardoso Lopesfeb95cc2008-07-22 15:34:27 +0000209 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
210
211 if (!GVA)
212 return false;
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000213
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000214 const Type *Ty = GV->getType()->getElementType();
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000215 unsigned Size = TD->getTypePaddedSize(Ty);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000216
217 // if this is a internal constant string, there is a special
218 // section for it, but not in small data/bss.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000219 if (GVA->hasInitializer() && GV->hasLocalLinkage()) {
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000220 Constant *C = GVA->getInitializer();
221 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
222 if (CVA && CVA->isCString())
223 return false;
224 }
225
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000226 return IsInSmallSection(Size);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000227}
228
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000229// Get fp branch code (not opcode) from condition code.
230static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
231 if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
232 return Mips::BRANCH_T;
233
234 if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
235 return Mips::BRANCH_F;
236
237 return Mips::BRANCH_INVALID;
238}
239
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000240static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
241 switch(BC) {
242 default:
243 assert(0 && "Unknown branch code");
244 case Mips::BRANCH_T : return Mips::BC1T;
245 case Mips::BRANCH_F : return Mips::BC1F;
246 case Mips::BRANCH_TL : return Mips::BC1TL;
247 case Mips::BRANCH_FL : return Mips::BC1FL;
248 }
249}
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000250
251static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
252 switch (CC) {
253 default: assert(0 && "Unknown fp condition code!");
254 case ISD::SETEQ:
255 case ISD::SETOEQ: return Mips::FCOND_EQ;
256 case ISD::SETUNE: return Mips::FCOND_OGL;
257 case ISD::SETLT:
258 case ISD::SETOLT: return Mips::FCOND_OLT;
259 case ISD::SETGT:
260 case ISD::SETOGT: return Mips::FCOND_OGT;
261 case ISD::SETLE:
262 case ISD::SETOLE: return Mips::FCOND_OLE;
263 case ISD::SETGE:
264 case ISD::SETOGE: return Mips::FCOND_OGE;
265 case ISD::SETULT: return Mips::FCOND_ULT;
266 case ISD::SETULE: return Mips::FCOND_ULE;
267 case ISD::SETUGT: return Mips::FCOND_UGT;
268 case ISD::SETUGE: return Mips::FCOND_UGE;
269 case ISD::SETUO: return Mips::FCOND_UN;
270 case ISD::SETO: return Mips::FCOND_OR;
271 case ISD::SETNE:
272 case ISD::SETONE: return Mips::FCOND_NEQ;
273 case ISD::SETUEQ: return Mips::FCOND_UEQ;
274 }
275}
276
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000277MachineBasicBlock *
278MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
279 MachineBasicBlock *BB)
280{
281 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
282 bool isFPCmp = false;
283
284 switch (MI->getOpcode()) {
285 default: assert(false && "Unexpected instr type to insert");
286 case Mips::Select_FCC:
287 case Mips::Select_FCC_SO32:
288 case Mips::Select_FCC_AS32:
289 case Mips::Select_FCC_D32:
290 isFPCmp = true; // FALL THROUGH
291 case Mips::Select_CC:
292 case Mips::Select_CC_SO32:
293 case Mips::Select_CC_AS32:
294 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));
320 BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
321 } else
322 BuildMI(BB, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg())
323 .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;
351 BuildMI(BB, TII->get(Mips::PHI), MI->getOperand(0).getReg())
352 .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 Lopes7da151c2008-08-07 19:08:11 +0000366LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG)
367{
368 SDValue Chain = Op.getOperand(0);
369 SDValue Size = Op.getOperand(1);
Dale Johannesena05dca42009-02-04 23:02:30 +0000370 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000371
372 // Get a reference from Mips stack pointer
Dale Johannesena05dca42009-02-04 23:02:30 +0000373 SDValue StackPointer = DAG.getCopyFromReg(Chain, dl, Mips::SP, MVT::i32);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000374
375 // Subtract the dynamic size from the actual stack size to
376 // obtain the new stack size.
Dale Johannesena05dca42009-02-04 23:02:30 +0000377 SDValue Sub = DAG.getNode(ISD::SUB, dl, MVT::i32, StackPointer, Size);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000378
379 // The Sub result contains the new stack start address, so it
380 // must be placed in the stack pointer register.
Dale Johannesena05dca42009-02-04 23:02:30 +0000381 Chain = DAG.getCopyToReg(StackPointer.getValue(1), dl, Mips::SP, Sub);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000382
383 // This node always has two return values: a new stack pointer
384 // value and a chain
385 SDValue Ops[2] = { Sub, Chain };
Dale Johannesena05dca42009-02-04 23:02:30 +0000386 return DAG.getMergeValues(Ops, 2, dl);
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000387}
388
389SDValue MipsTargetLowering::
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000390LowerANDOR(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000391{
392 SDValue LHS = Op.getOperand(0);
393 SDValue RHS = Op.getOperand(1);
Dale Johannesende064702009-02-06 21:50:26 +0000394 DebugLoc dl = Op.getDebugLoc();
395
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000396 if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp)
397 return Op;
398
399 SDValue True = DAG.getConstant(1, MVT::i32);
400 SDValue False = DAG.getConstant(0, MVT::i32);
401
Dale Johannesende064702009-02-06 21:50:26 +0000402 SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000403 LHS, True, False, LHS.getOperand(2));
Dale Johannesende064702009-02-06 21:50:26 +0000404 SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000405 RHS, True, False, RHS.getOperand(2));
406
Dale Johannesende064702009-02-06 21:50:26 +0000407 return DAG.getNode(Op.getOpcode(), dl, MVT::i32, LSEL, RSEL);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000408}
409
410SDValue MipsTargetLowering::
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000411LowerBRCOND(SDValue Op, SelectionDAG &DAG)
412{
413 // The first operand is the chain, the second is the condition, the third is
414 // the block to branch to if the condition is true.
415 SDValue Chain = Op.getOperand(0);
416 SDValue Dest = Op.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000417 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000418
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000419 if (Op.getOperand(1).getOpcode() != MipsISD::FPCmp)
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000420 return Op;
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000421
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000422 SDValue CondRes = Op.getOperand(1);
423 SDValue CCNode = CondRes.getOperand(2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000424 Mips::CondCode CC =
425 (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getZExtValue();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000426 SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32);
427
Dale Johannesende064702009-02-06 21:50:26 +0000428 return DAG.getNode(MipsISD::FPBrcond, dl, Op.getValueType(), Chain, BrCode,
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000429 Dest, CondRes);
430}
431
432SDValue MipsTargetLowering::
433LowerSETCC(SDValue Op, SelectionDAG &DAG)
434{
435 // The operands to this are the left and right operands to compare (ops #0,
436 // and #1) and the condition code to compare them with (op #2) as a
437 // CondCodeSDNode.
438 SDValue LHS = Op.getOperand(0);
Dale Johannesende064702009-02-06 21:50:26 +0000439 SDValue RHS = Op.getOperand(1);
440 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000441
442 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
443
Dale Johannesende064702009-02-06 21:50:26 +0000444 return DAG.getNode(MipsISD::FPCmp, dl, Op.getValueType(), LHS, RHS,
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000445 DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
446}
447
448SDValue MipsTargetLowering::
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000449LowerSELECT(SDValue Op, SelectionDAG &DAG)
450{
451 SDValue Cond = Op.getOperand(0);
452 SDValue True = Op.getOperand(1);
453 SDValue False = Op.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000454 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000455
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000456 // if the incomming condition comes from a integer compare, the select
457 // operation must be SelectCC or a conditional move if the subtarget
458 // supports it.
459 if (Cond.getOpcode() != MipsISD::FPCmp) {
460 if (Subtarget->hasCondMov() && !True.getValueType().isFloatingPoint())
461 return Op;
Dale Johannesende064702009-02-06 21:50:26 +0000462 return DAG.getNode(MipsISD::SelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000463 Cond, True, False);
Bruno Cardoso Lopes739e4412008-08-13 07:13:40 +0000464 }
465
466 // if the incomming condition comes from fpcmp, the select
467 // operation must use FPSelectCC.
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000468 SDValue CCNode = Cond.getOperand(2);
Dale Johannesende064702009-02-06 21:50:26 +0000469 return DAG.getNode(MipsISD::FPSelectCC, dl, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000470 Cond, True, False, CCNode);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000471}
472
473SDValue MipsTargetLowering::
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000474LowerGlobalAddress(SDValue Op, SelectionDAG &DAG)
475{
Dale Johannesende064702009-02-06 21:50:26 +0000476 // FIXME there isn't actually debug info here
Dale Johannesen33c960f2009-02-04 20:06:27 +0000477 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000478 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
479 SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
480
481 if (!Subtarget->hasABICall()) {
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000482 const MVT *VTs = DAG.getNodeValueTypes(MVT::i32);
483 SDValue Ops[] = { GA };
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000484 // %gp_rel relocation
485 if (!isa<Function>(GV) && IsGlobalInSmallSection(GV)) {
Dale Johannesende064702009-02-06 21:50:26 +0000486 SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, dl, VTs, 1, Ops, 1);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000487 SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000488 return DAG.getNode(ISD::ADD, dl, MVT::i32, GOT, GPRelNode);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000489 }
490 // %hi/%lo relocation
Dale Johannesen33c960f2009-02-04 20:06:27 +0000491 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, 1, Ops, 1);
492 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
493 return DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000494
495 } else { // Abicall relocations, TODO: make this cleaner.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000496 SDValue ResNode = DAG.getLoad(MVT::i32, dl,
497 DAG.getEntryNode(), GA, NULL, 0);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000498 // On functions and global targets not internal linked only
499 // a load from got/GP is necessary for PIC to work.
Rafael Espindolabb46f522009-01-15 20:18:42 +0000500 if (!GV->hasLocalLinkage() || isa<Function>(GV))
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000501 return ResNode;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000502 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, GA);
503 return DAG.getNode(ISD::ADD, dl, MVT::i32, ResNode, Lo);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000504 }
505
506 assert(0 && "Dont know how to handle GlobalAddress");
507 return SDValue(0,0);
508}
509
510SDValue MipsTargetLowering::
511LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
512{
513 assert(0 && "TLS not implemented for MIPS.");
514 return SDValue(); // Not reached
515}
516
517SDValue MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000518LowerJumpTable(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000519{
Dan Gohman475871a2008-07-27 21:46:04 +0000520 SDValue ResNode;
521 SDValue HiPart;
Dale Johannesende064702009-02-06 21:50:26 +0000522 // FIXME there isn't actually debug info here
Dale Johannesen33c960f2009-02-04 20:06:27 +0000523 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000524
Duncan Sands83ec4b62008-06-06 12:08:01 +0000525 MVT PtrVT = Op.getValueType();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000526 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +0000527 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000528
529 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000530 const MVT *VTs = DAG.getNodeValueTypes(MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000531 SDValue Ops[] = { JTI };
Dale Johannesen33c960f2009-02-04 20:06:27 +0000532 HiPart = DAG.getNode(MipsISD::Hi, dl, VTs, 1, Ops, 1);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000533 } else // Emit Load from Global Pointer
Dale Johannesen33c960f2009-02-04 20:06:27 +0000534 HiPart = DAG.getLoad(MVT::i32, dl, DAG.getEntryNode(), JTI, NULL, 0);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000535
Dale Johannesen33c960f2009-02-04 20:06:27 +0000536 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, JTI);
537 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000538
539 return ResNode;
540}
541
Dan Gohman475871a2008-07-27 21:46:04 +0000542SDValue MipsTargetLowering::
543LowerConstantPool(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000544{
Dan Gohman475871a2008-07-27 21:46:04 +0000545 SDValue ResNode;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000546 ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
547 Constant *C = N->getConstVal();
Dan Gohman475871a2008-07-27 21:46:04 +0000548 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment());
Dale Johannesende064702009-02-06 21:50:26 +0000549 // FIXME there isn't actually debug info here
550 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000551
552 // gp_rel relocation
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000553 // FIXME: we should reference the constant pool using small data sections,
554 // but the asm printer currently doens't support this feature without
555 // hacking it. This feature should come soon so we can uncomment the
556 // stuff below.
557 //if (!Subtarget->hasABICall() &&
Duncan Sandsceb4d1a2009-01-12 20:38:59 +0000558 // IsInSmallSection(getTargetData()->getTypePaddedSize(C->getType()))) {
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000559 // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
560 // SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
561 // ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
562 //} else { // %hi/%lo relocation
Dale Johannesende064702009-02-06 21:50:26 +0000563 SDValue HiPart = DAG.getNode(MipsISD::Hi, dl, MVT::i32, CP);
564 SDValue Lo = DAG.getNode(MipsISD::Lo, dl, MVT::i32, CP);
565 ResNode = DAG.getNode(ISD::ADD, dl, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000566 //}
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000567
568 return ResNode;
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000569}
570
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000571//===----------------------------------------------------------------------===//
572// Calling Convention Implementation
573//
574// The lower operations present on calling convention works on this order:
575// LowerCALL (virt regs --> phys regs, virt regs --> stack)
576// LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs)
577// LowerRET (virt regs --> phys regs)
578// LowerCALL (phys regs --> virt regs)
579//
580//===----------------------------------------------------------------------===//
581
582#include "MipsGenCallingConv.inc"
583
584//===----------------------------------------------------------------------===//
585// CALL Calling Convention Implementation
586//===----------------------------------------------------------------------===//
587
Nate Begeman5bf4b752009-01-26 03:15:54 +0000588/// LowerCALL - functions arguments are copied from virtual regs to
589/// (physical regs)/(stack frame), CALLSEQ_START and CALLSEQ_END are emitted.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000590/// TODO: isVarArg, isTailCall.
Dan Gohman475871a2008-07-27 21:46:04 +0000591SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000592LowerCALL(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000593{
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000594 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000595
Dan Gohman095cc292008-09-13 01:54:27 +0000596 CallSDNode *TheCall = cast<CallSDNode>(Op.getNode());
597 SDValue Chain = TheCall->getChain();
598 SDValue Callee = TheCall->getCallee();
599 bool isVarArg = TheCall->isVarArg();
600 unsigned CC = TheCall->getCallingConv();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000601 DebugLoc dl = TheCall->getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000602
603 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000604
605 // Analyze operands of the call, assigning locations to each operand.
606 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000607 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
608
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000609 // To meet O32 ABI, Mips must always allocate 16 bytes on
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000610 // the stack (even if less than 4 are used as arguments)
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000611 if (Subtarget->isABI_O32()) {
612 int VTsize = MVT(MVT::i32).getSizeInBits()/8;
613 MFI->CreateFixedObject(VTsize, (VTsize*3));
614 }
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000615
Dan Gohman095cc292008-09-13 01:54:27 +0000616 CCInfo.AnalyzeCallOperands(TheCall, CC_Mips);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000617
618 // Get a count of how many bytes are to be pushed on the stack.
619 unsigned NumBytes = CCInfo.getNextStackOffset();
Chris Lattnere563bbc2008-10-11 22:08:30 +0000620 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(NumBytes, true));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000621
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000622 // With EABI is it possible to have 16 args on registers.
Dan Gohman475871a2008-07-27 21:46:04 +0000623 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
624 SmallVector<SDValue, 8> MemOpChains;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000625
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000626 // First/LastArgStackLoc contains the first/last
627 // "at stack" argument location.
628 int LastArgStackLoc = 0;
629 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000630
631 // Walk the register/memloc assignments, inserting copies/loads.
632 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
633 CCValAssign &VA = ArgLocs[i];
634
635 // Arguments start after the 5 first operands of ISD::CALL
Dan Gohman095cc292008-09-13 01:54:27 +0000636 SDValue Arg = TheCall->getArg(i);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000637
638 // Promote the value if needed.
639 switch (VA.getLocInfo()) {
Chris Lattnere0b12152008-03-17 06:57:02 +0000640 default: assert(0 && "Unknown loc info!");
641 case CCValAssign::Full: break;
642 case CCValAssign::SExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000643 Arg = DAG.getNode(ISD::SIGN_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000644 break;
645 case CCValAssign::ZExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000646 Arg = DAG.getNode(ISD::ZERO_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000647 break;
648 case CCValAssign::AExt:
Dale Johannesen33c960f2009-02-04 20:06:27 +0000649 Arg = DAG.getNode(ISD::ANY_EXTEND, dl, VA.getLocVT(), Arg);
Chris Lattnere0b12152008-03-17 06:57:02 +0000650 break;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000651 }
652
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000653 // Arguments that can be passed on register must be kept at
654 // RegsToPass vector
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000655 if (VA.isRegLoc()) {
656 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Chris Lattnere0b12152008-03-17 06:57:02 +0000657 continue;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000658 }
Chris Lattnere0b12152008-03-17 06:57:02 +0000659
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000660 // Register cant get to this point...
Chris Lattnere0b12152008-03-17 06:57:02 +0000661 assert(VA.isMemLoc());
662
663 // Create the frame index object for this incoming parameter
664 // This guarantees that when allocating Local Area the firsts
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000665 // 16 bytes which are alwayes reserved won't be overwritten
666 // if O32 ABI is used. For EABI the first address is zero.
667 LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000668 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000669 LastArgStackLoc);
Chris Lattnere0b12152008-03-17 06:57:02 +0000670
Dan Gohman475871a2008-07-27 21:46:04 +0000671 SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
Chris Lattnere0b12152008-03-17 06:57:02 +0000672
673 // emit ISD::STORE whichs stores the
674 // parameter value to a stack Location
Dale Johannesen33c960f2009-02-04 20:06:27 +0000675 MemOpChains.push_back(DAG.getStore(Chain, dl, Arg, PtrOff, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000676 }
677
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000678 // Transform all store nodes into one single node because all store
679 // nodes are independent of each other.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000680 if (!MemOpChains.empty())
Dale Johannesen33c960f2009-02-04 20:06:27 +0000681 Chain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000682 &MemOpChains[0], MemOpChains.size());
683
684 // Build a sequence of copy-to-reg nodes chained together with token
685 // chain and flag operands which copy the outgoing args into registers.
686 // The InFlag in necessary since all emited instructions must be
687 // stuck together.
Dan Gohman475871a2008-07-27 21:46:04 +0000688 SDValue InFlag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000689 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
Dale Johannesen33c960f2009-02-04 20:06:27 +0000690 Chain = DAG.getCopyToReg(Chain, dl, RegsToPass[i].first,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000691 RegsToPass[i].second, InFlag);
692 InFlag = Chain.getValue(1);
693 }
694
Bill Wendling056292f2008-09-16 21:48:12 +0000695 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
696 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
697 // node so that legalize doesn't hack it.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000698 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000699 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
Bill Wendling056292f2008-09-16 21:48:12 +0000700 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
701 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
702
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000703
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000704 // MipsJmpLink = #chain, #target_address, #opt_in_flags...
705 // = Chain, Callee, Reg#1, Reg#2, ...
706 //
707 // Returns a chain & a flag for retval copy to use.
708 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +0000709 SmallVector<SDValue, 8> Ops;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000710 Ops.push_back(Chain);
711 Ops.push_back(Callee);
712
713 // Add argument registers to the end of the list so that they are
714 // known live into the call.
715 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
716 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
717 RegsToPass[i].second.getValueType()));
718
Gabor Greifba36cb52008-08-28 21:40:38 +0000719 if (InFlag.getNode())
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000720 Ops.push_back(InFlag);
721
Dale Johannesen33c960f2009-02-04 20:06:27 +0000722 Chain = DAG.getNode(MipsISD::JmpLink, dl, NodeTys, &Ops[0], Ops.size());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000723 InFlag = Chain.getValue(1);
724
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000725 // Create the CALLSEQ_END node.
Chris Lattnere563bbc2008-10-11 22:08:30 +0000726 Chain = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(NumBytes, true),
727 DAG.getIntPtrConstant(0, true), InFlag);
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000728 InFlag = Chain.getValue(1);
729
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000730 // Create a stack location to hold GP when PIC is used. This stack
731 // location is used on function prologue to save GP and also after all
732 // emited CALL's to restore GP.
733 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000734 // Function can have an arbitrary number of calls, so
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000735 // hold the LastArgStackLoc with the biggest offset.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000736 int FI;
737 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000738 if (LastArgStackLoc >= MipsFI->getGPStackOffset()) {
739 LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000740 // Create the frame index only once. SPOffset here can be anything
741 // (this will be fixed on processFunctionBeforeFrameFinalized)
742 if (MipsFI->getGPStackOffset() == -1) {
743 FI = MFI->CreateFixedObject(4, 0);
744 MipsFI->setGPFI(FI);
745 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000746 MipsFI->setGPStackOffset(LastArgStackLoc);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000747 }
748
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000749 // Reload GP value.
750 FI = MipsFI->getGPFI();
Dan Gohman475871a2008-07-27 21:46:04 +0000751 SDValue FIN = DAG.getFrameIndex(FI,getPointerTy());
Dale Johannesen33c960f2009-02-04 20:06:27 +0000752 SDValue GPLoad = DAG.getLoad(MVT::i32, dl, Chain, FIN, NULL, 0);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000753 Chain = GPLoad.getValue(1);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000754 Chain = DAG.getCopyToReg(Chain, dl, DAG.getRegister(Mips::GP, MVT::i32),
Dan Gohman475871a2008-07-27 21:46:04 +0000755 GPLoad, SDValue(0,0));
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000756 InFlag = Chain.getValue(1);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000757 }
758
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000759 // Handle result values, copying them out of physregs into vregs that we
760 // return.
Dan Gohman095cc292008-09-13 01:54:27 +0000761 return SDValue(LowerCallResult(Chain, InFlag, TheCall, CC, DAG), Op.getResNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000762}
763
764/// LowerCallResult - Lower the result values of an ISD::CALL into the
765/// appropriate copies out of appropriate physical registers. This assumes that
766/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
767/// being lowered. Returns a SDNode with the same number of values as the
768/// ISD::CALL.
769SDNode *MipsTargetLowering::
Dan Gohman095cc292008-09-13 01:54:27 +0000770LowerCallResult(SDValue Chain, SDValue InFlag, CallSDNode *TheCall,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000771 unsigned CallingConv, SelectionDAG &DAG) {
772
Dan Gohman095cc292008-09-13 01:54:27 +0000773 bool isVarArg = TheCall->isVarArg();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000774 DebugLoc dl = TheCall->getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000775
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000776 // Assign locations to each value returned by this call.
777 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000778 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
779
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000780 CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips);
Dan Gohman475871a2008-07-27 21:46:04 +0000781 SmallVector<SDValue, 8> ResultVals;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000782
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000783 // Copy all of the result registers out of their specified physreg.
784 for (unsigned i = 0; i != RVLocs.size(); ++i) {
Dale Johannesen33c960f2009-02-04 20:06:27 +0000785 Chain = DAG.getCopyFromReg(Chain, dl, RVLocs[i].getLocReg(),
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000786 RVLocs[i].getValVT(), InFlag).getValue(1);
787 InFlag = Chain.getValue(2);
788 ResultVals.push_back(Chain.getValue(0));
789 }
790
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000791 ResultVals.push_back(Chain);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000792
793 // Merge everything together with a MERGE_VALUES node.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000794 return DAG.getNode(ISD::MERGE_VALUES, dl, TheCall->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +0000795 &ResultVals[0], ResultVals.size()).getNode();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000796}
797
798//===----------------------------------------------------------------------===//
799// FORMAL_ARGUMENTS Calling Convention Implementation
800//===----------------------------------------------------------------------===//
801
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000802/// LowerFORMAL_ARGUMENTS - transform physical registers into
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000803/// virtual registers and generate load operations for
804/// arguments places on the stack.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000805/// TODO: isVarArg
Dan Gohman475871a2008-07-27 21:46:04 +0000806SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000807LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000808{
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000809 SDValue Root = Op.getOperand(0);
810 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000811 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000812 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Dale Johannesen33c960f2009-02-04 20:06:27 +0000813 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000814
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000815 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getZExtValue() != 0;
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000816 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000817
818 unsigned StackReg = MF.getTarget().getRegisterInfo()->getFrameRegister(MF);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000819
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000820 // GP must be live into PIC and non-PIC call target.
821 AddLiveIn(MF, Mips::GP, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000822
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000823 // Assign locations to all of the incoming arguments.
824 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000825 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
826
Gabor Greifba36cb52008-08-28 21:40:38 +0000827 CCInfo.AnalyzeFormalArguments(Op.getNode(), CC_Mips);
Dan Gohman475871a2008-07-27 21:46:04 +0000828 SmallVector<SDValue, 16> ArgValues;
829 SDValue StackPtr;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000830
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000831 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
832
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000833 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
834
835 CCValAssign &VA = ArgLocs[i];
836
837 // Arguments stored on registers
838 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000839 MVT RegVT = VA.getLocVT();
Bill Wendling06b8c192008-07-09 05:55:53 +0000840 TargetRegisterClass *RC = 0;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000841
842 if (RegVT == MVT::i32)
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000843 RC = Mips::CPURegsRegisterClass;
844 else if (RegVT == MVT::f32) {
845 if (Subtarget->isSingleFloat())
846 RC = Mips::FGR32RegisterClass;
847 else
848 RC = Mips::AFGR32RegisterClass;
849 } else if (RegVT == MVT::f64) {
850 if (!Subtarget->isSingleFloat())
851 RC = Mips::AFGR64RegisterClass;
852 } else
853 assert(0 && "RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000854
855 // Transform the arguments stored on
856 // physical registers into virtual ones
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000857 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000858 SDValue ArgValue = DAG.getCopyFromReg(Root, dl, Reg, RegVT);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000859
860 // If this is an 8 or 16-bit value, it is really passed promoted
861 // to 32 bits. Insert an assert[sz]ext to capture this, then
862 // truncate to the right size.
863 if (VA.getLocInfo() == CCValAssign::SExt)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000864 ArgValue = DAG.getNode(ISD::AssertSext, dl, RegVT, ArgValue,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000865 DAG.getValueType(VA.getValVT()));
866 else if (VA.getLocInfo() == CCValAssign::ZExt)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000867 ArgValue = DAG.getNode(ISD::AssertZext, dl, RegVT, ArgValue,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000868 DAG.getValueType(VA.getValVT()));
869
870 if (VA.getLocInfo() != CCValAssign::Full)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000871 ArgValue = DAG.getNode(ISD::TRUNCATE, dl, VA.getValVT(), ArgValue);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000872
873 ArgValues.push_back(ArgValue);
874
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000875 // To meet ABI, when VARARGS are passed on registers, the registers
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000876 // must have their values written to the caller stack frame.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000877 if ((isVarArg) && (Subtarget->isABI_O32())) {
Gabor Greifba36cb52008-08-28 21:40:38 +0000878 if (StackPtr.getNode() == 0)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000879 StackPtr = DAG.getRegister(StackReg, getPointerTy());
880
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000881 // The stack pointer offset is relative to the caller stack frame.
882 // Since the real stack size is unknown here, a negative SPOffset
883 // is used so there's a way to adjust these offsets when the stack
884 // size get known (on EliminateFrameIndex). A dummy SPOffset is
885 // used instead of a direct negative address (which is recorded to
886 // be used on emitPrologue) to avoid mis-calc of the first stack
887 // offset on PEI::calculateFrameObjectOffsets.
888 // Arguments are always 32-bit.
889 int FI = MFI->CreateFixedObject(4, 0);
890 MipsFI->recordStoreVarArgsFI(FI, -(4+(i*4)));
Dan Gohman475871a2008-07-27 21:46:04 +0000891 SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy());
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000892
893 // emit ISD::STORE whichs stores the
894 // parameter value to a stack Location
Dale Johannesen33c960f2009-02-04 20:06:27 +0000895 ArgValues.push_back(DAG.getStore(Root, dl, ArgValue, PtrOff, NULL, 0));
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000896 }
897
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000898 } else { // VA.isRegLoc()
899
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000900 // sanity check
901 assert(VA.isMemLoc());
902
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000903 // The stack pointer offset is relative to the caller stack frame.
904 // Since the real stack size is unknown here, a negative SPOffset
905 // is used so there's a way to adjust these offsets when the stack
906 // size get known (on EliminateFrameIndex). A dummy SPOffset is
907 // used instead of a direct negative address (which is recorded to
908 // be used on emitPrologue) to avoid mis-calc of the first stack
909 // offset on PEI::calculateFrameObjectOffsets.
910 // Arguments are always 32-bit.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000911 unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
912 int FI = MFI->CreateFixedObject(ArgSize, 0);
913 MipsFI->recordLoadArgsFI(FI, -(ArgSize+
914 (FirstStackArgLoc + VA.getLocMemOffset())));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000915
916 // Create load nodes to retrieve arguments from the stack
Dan Gohman475871a2008-07-27 21:46:04 +0000917 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Dale Johannesen33c960f2009-02-04 20:06:27 +0000918 ArgValues.push_back(DAG.getLoad(VA.getValVT(), dl, Root, FIN, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000919 }
920 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000921
922 // The mips ABIs for returning structs by value requires that we copy
923 // the sret argument into $v0 for the return. Save the argument into
924 // a virtual register so that we can access it from the return points.
925 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
926 unsigned Reg = MipsFI->getSRetReturnReg();
927 if (!Reg) {
928 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32));
929 MipsFI->setSRetReturnReg(Reg);
930 }
Dale Johannesen33c960f2009-02-04 20:06:27 +0000931 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), dl, Reg, ArgValues[0]);
932 Root = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Copy, Root);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000933 }
934
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000935 ArgValues.push_back(Root);
936
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000937 // Return the new list of results.
Dale Johannesen33c960f2009-02-04 20:06:27 +0000938 return DAG.getNode(ISD::MERGE_VALUES, dl, Op.getNode()->getVTList(),
Duncan Sandsaaffa052008-12-01 11:41:29 +0000939 &ArgValues[0], ArgValues.size()).getValue(Op.getResNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000940}
941
942//===----------------------------------------------------------------------===//
943// Return Value Calling Convention Implementation
944//===----------------------------------------------------------------------===//
945
Dan Gohman475871a2008-07-27 21:46:04 +0000946SDValue MipsTargetLowering::
947LowerRET(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000948{
949 // CCValAssign - represent the assignment of
950 // the return value to a location
951 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000952 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
953 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Dale Johannesena05dca42009-02-04 23:02:30 +0000954 DebugLoc dl = Op.getDebugLoc();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000955
956 // CCState - Info about the registers and stack slot.
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000957 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000958
959 // Analize return values of ISD::RET
Gabor Greifba36cb52008-08-28 21:40:38 +0000960 CCInfo.AnalyzeReturn(Op.getNode(), RetCC_Mips);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000961
962 // If this is the first return lowered for this function, add
963 // the regs to the liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +0000964 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000965 for (unsigned i = 0; i != RVLocs.size(); ++i)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000966 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +0000967 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000968 }
969
970 // The chain is always operand #0
Dan Gohman475871a2008-07-27 21:46:04 +0000971 SDValue Chain = Op.getOperand(0);
972 SDValue Flag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000973
974 // Copy the result values into the output registers.
975 for (unsigned i = 0; i != RVLocs.size(); ++i) {
976 CCValAssign &VA = RVLocs[i];
977 assert(VA.isRegLoc() && "Can only return in registers!");
978
979 // ISD::RET => ret chain, (regnum1,val1), ...
980 // So i*2+1 index only the regnums
Dale Johannesena05dca42009-02-04 23:02:30 +0000981 Chain = DAG.getCopyToReg(Chain, dl, VA.getLocReg(),
982 Op.getOperand(i*2+1), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000983
984 // guarantee that all emitted copies are
985 // stuck together, avoiding something bad
986 Flag = Chain.getValue(1);
987 }
988
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000989 // The mips ABIs for returning structs by value requires that we copy
990 // the sret argument into $v0 for the return. We saved the argument into
991 // a virtual register in the entry block, so now we copy the value out
992 // and into $v0.
993 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
994 MachineFunction &MF = DAG.getMachineFunction();
995 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
996 unsigned Reg = MipsFI->getSRetReturnReg();
997
998 if (!Reg)
999 assert(0 && "sret virtual register not created in the entry block");
Dale Johannesena05dca42009-02-04 23:02:30 +00001000 SDValue Val = DAG.getCopyFromReg(Chain, dl, Reg, getPointerTy());
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001001
Dale Johannesena05dca42009-02-04 23:02:30 +00001002 Chain = DAG.getCopyToReg(Chain, dl, Mips::V0, Val, Flag);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001003 Flag = Chain.getValue(1);
1004 }
1005
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001006 // Return on Mips is always a "jr $ra"
Gabor Greifba36cb52008-08-28 21:40:38 +00001007 if (Flag.getNode())
Dale Johannesena05dca42009-02-04 23:02:30 +00001008 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001009 Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001010 else // Return Void
Dale Johannesena05dca42009-02-04 23:02:30 +00001011 return DAG.getNode(MipsISD::Ret, dl, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001012 Chain, DAG.getRegister(Mips::RA, MVT::i32));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001013}
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001014
1015//===----------------------------------------------------------------------===//
1016// Mips Inline Assembly Support
1017//===----------------------------------------------------------------------===//
1018
1019/// getConstraintType - Given a constraint letter, return the type of
1020/// constraint it is for this target.
1021MipsTargetLowering::ConstraintType MipsTargetLowering::
1022getConstraintType(const std::string &Constraint) const
1023{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001024 // Mips specific constrainy
1025 // GCC config/mips/constraints.md
1026 //
1027 // 'd' : An address register. Equivalent to r
1028 // unless generating MIPS16 code.
1029 // 'y' : Equivalent to r; retained for
1030 // backwards compatibility.
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +00001031 // 'f' : Floating Point registers.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001032 if (Constraint.size() == 1) {
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001033 switch (Constraint[0]) {
1034 default : break;
1035 case 'd':
1036 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001037 case 'f':
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001038 return C_RegisterClass;
1039 break;
1040 }
1041 }
1042 return TargetLowering::getConstraintType(Constraint);
1043}
1044
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001045/// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1046/// return a list of registers that can be used to satisfy the constraint.
1047/// This should only be used for C_RegisterClass constraints.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001048std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00001049getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001050{
1051 if (Constraint.size() == 1) {
1052 switch (Constraint[0]) {
1053 case 'r':
1054 return std::make_pair(0U, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001055 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001056 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001057 if (Subtarget->isSingleFloat())
1058 return std::make_pair(0U, Mips::FGR32RegisterClass);
1059 else
1060 return std::make_pair(0U, Mips::AFGR32RegisterClass);
Duncan Sands15126422008-07-08 09:33:14 +00001061 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001062 if (VT == MVT::f64)
1063 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1064 return std::make_pair(0U, Mips::AFGR64RegisterClass);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001065 }
1066 }
1067 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1068}
1069
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001070/// Given a register class constraint, like 'r', if this corresponds directly
1071/// to an LLVM register class, return a register of 0 and the register class
1072/// pointer.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001073std::vector<unsigned> MipsTargetLowering::
1074getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001075 MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001076{
1077 if (Constraint.size() != 1)
1078 return std::vector<unsigned>();
1079
1080 switch (Constraint[0]) {
1081 default : break;
1082 case 'r':
1083 // GCC Mips Constraint Letters
1084 case 'd':
1085 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001086 return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3,
1087 Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1,
1088 Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7,
1089 Mips::T8, 0);
1090
1091 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001092 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001093 if (Subtarget->isSingleFloat())
1094 return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1095 Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1096 Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1097 Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1098 Mips::F30, Mips::F31, 0);
1099 else
1100 return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8,
1101 Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26,
1102 Mips::F28, Mips::F30, 0);
Duncan Sands15126422008-07-08 09:33:14 +00001103 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001104
1105 if (VT == MVT::f64)
1106 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1107 return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4,
1108 Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13,
1109 Mips::D14, Mips::D15, 0);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001110 }
1111 return std::vector<unsigned>();
1112}
Dan Gohman6520e202008-10-18 02:06:02 +00001113
1114bool
1115MipsTargetLowering::isOffsetFoldingLegal(const GlobalAddressSDNode *GA) const {
1116 // The Mips target isn't yet aware of offsets.
1117 return false;
1118}