blob: 04ef9588a6b3b2f855e1866ca0f4c95c1061822a [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"
34#include <queue>
35#include <set>
36
37using namespace llvm;
38
39const char *MipsTargetLowering::
40getTargetNodeName(unsigned Opcode) const
41{
42 switch (Opcode)
43 {
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +000044 case MipsISD::JmpLink : return "MipsISD::JmpLink";
45 case MipsISD::Hi : return "MipsISD::Hi";
46 case MipsISD::Lo : return "MipsISD::Lo";
47 case MipsISD::GPRel : return "MipsISD::GPRel";
48 case MipsISD::Ret : return "MipsISD::Ret";
49 case MipsISD::SelectCC : return "MipsISD::SelectCC";
50 case MipsISD::FPSelectCC : return "MipsISD::FPSelectCC";
51 case MipsISD::FPBrcond : return "MipsISD::FPBrcond";
52 case MipsISD::FPCmp : return "MipsISD::FPCmp";
53 default : return NULL;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000054 }
55}
56
57MipsTargetLowering::
58MipsTargetLowering(MipsTargetMachine &TM): TargetLowering(TM)
59{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000060 Subtarget = &TM.getSubtarget<MipsSubtarget>();
61
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000062 // Mips does not have i1 type, so use i32 for
63 // setcc operations results (slt, sgt, ...).
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000064 setSetCCResultContents(ZeroOrOneSetCCResult);
65
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +000066 // JumpTable targets must use GOT when using PIC_
67 setUsesGlobalOffsetTable(true);
68
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000069 // Set up the register classes
70 addRegisterClass(MVT::i32, Mips::CPURegsRegisterClass);
71
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +000072 // When dealing with single precision only, use libcalls
73 if (!Subtarget->isSingleFloat()) {
74 addRegisterClass(MVT::f32, Mips::AFGR32RegisterClass);
75 if (!Subtarget->isFP64bit())
76 addRegisterClass(MVT::f64, Mips::AFGR64RegisterClass);
77 } else
78 addRegisterClass(MVT::f32, Mips::FGR32RegisterClass);
79
Bruno Cardoso Lopes7030ae72008-07-30 19:00:31 +000080 // Legal fp constants
81 addLegalFPImmediate(APFloat(+0.0f));
82
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +000083 // Load extented operations for i1 types must be promoted
84 setLoadXAction(ISD::EXTLOAD, MVT::i1, Promote);
85 setLoadXAction(ISD::ZEXTLOAD, MVT::i1, Promote);
86 setLoadXAction(ISD::SEXTLOAD, MVT::i1, Promote);
87
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000088 // Used by legalize types to correctly generate the setcc result.
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +000089 // Without this, every float setcc comes with a AND/OR with the result,
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +000090 // we don't want this, since the fpcmp result goes to a flag register,
91 // which is used implicitly by brcond and select operations.
92 AddPromotedToType(ISD::SETCC, MVT::i1, MVT::i32);
93
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +000094 // Mips Custom Operations
95 setOperationAction(ISD::GlobalAddress, MVT::i32, Custom);
96 setOperationAction(ISD::GlobalTLSAddress, MVT::i32, Custom);
97 setOperationAction(ISD::RET, MVT::Other, Custom);
98 setOperationAction(ISD::JumpTable, MVT::i32, Custom);
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +000099 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000100 setOperationAction(ISD::SELECT, MVT::f32, Custom);
101 setOperationAction(ISD::SELECT, MVT::i32, Custom);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000102 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000103 setOperationAction(ISD::SETCC, MVT::f32, Custom);
104 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000105
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000106 // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors'
107 // with operands comming from setcc fp comparions. This is necessary since
108 // the result from these setcc are in a flag registers (FCR31).
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000109 setOperationAction(ISD::AND, MVT::i32, Custom);
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000110 setOperationAction(ISD::OR, MVT::i32, Custom);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000111
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000112 // Operations not directly supported by Mips.
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000113 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
114 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
115 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000116 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
117 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
118 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000119 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
120 setOperationAction(ISD::CTTZ, MVT::i32, Expand);
121 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
122 setOperationAction(ISD::ROTL, MVT::i32, Expand);
123 setOperationAction(ISD::ROTR, MVT::i32, Expand);
124 setOperationAction(ISD::BSWAP, MVT::i32, Expand);
125 setOperationAction(ISD::SHL_PARTS, MVT::i32, Expand);
126 setOperationAction(ISD::SRA_PARTS, MVT::i32, Expand);
127 setOperationAction(ISD::SRL_PARTS, MVT::i32, Expand);
Bruno Cardoso Lopes7bd71822008-07-31 18:50:54 +0000128 setOperationAction(ISD::FCOPYSIGN, MVT::f32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000129
130 // We don't have line number support yet.
131 setOperationAction(ISD::DBG_STOPPOINT, MVT::Other, Expand);
132 setOperationAction(ISD::DEBUG_LOC, MVT::Other, Expand);
133 setOperationAction(ISD::DBG_LABEL, MVT::Other, Expand);
134 setOperationAction(ISD::EH_LABEL, MVT::Other, Expand);
135
136 // Use the default for now
137 setOperationAction(ISD::STACKSAVE, MVT::Other, Expand);
138 setOperationAction(ISD::STACKRESTORE, MVT::Other, Expand);
139 setOperationAction(ISD::MEMBARRIER, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000140
Bruno Cardoso Lopesea9d4d62008-08-04 06:44:31 +0000141 if (Subtarget->isSingleFloat())
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000142 setOperationAction(ISD::SELECT_CC, MVT::f64, Expand);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000143
Bruno Cardoso Lopes7728f7e2008-07-09 05:32:22 +0000144 if (!Subtarget->hasSEInReg()) {
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000145 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i8, Expand);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000146 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i16, Expand);
147 }
148
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000149 setStackPointerRegisterToSaveRestore(Mips::SP);
150 computeRegisterProperties();
151}
152
153
Dan Gohman475871a2008-07-27 21:46:04 +0000154MVT MipsTargetLowering::getSetCCResultType(const SDValue &) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000155 return MVT::i32;
156}
157
158
Dan Gohman475871a2008-07-27 21:46:04 +0000159SDValue MipsTargetLowering::
160LowerOperation(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000161{
162 switch (Op.getOpcode())
163 {
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000164 case ISD::AND: return LowerANDOR(Op, DAG);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000165 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000166 case ISD::CALL: return LowerCALL(Op, DAG);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000167 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000168 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000169 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
Lauro Ramos Venancio75ce0102007-07-11 17:19:51 +0000170 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000171 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000172 case ISD::OR: return LowerANDOR(Op, DAG);
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000173 case ISD::RET: return LowerRET(Op, DAG);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000174 case ISD::SELECT: return LowerSELECT(Op, DAG);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000175 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000176 case ISD::SETCC: return LowerSETCC(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000177 }
Dan Gohman475871a2008-07-27 21:46:04 +0000178 return SDValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000179}
180
181//===----------------------------------------------------------------------===//
182// Lower helper functions
183//===----------------------------------------------------------------------===//
184
185// AddLiveIn - This helper function adds the specified physical register to the
186// MachineFunction as a live in value. It also creates a corresponding
187// virtual register for it.
188static unsigned
189AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
190{
191 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +0000192 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
193 MF.getRegInfo().addLiveIn(PReg, VReg);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000194 return VReg;
195}
196
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000197// A address must be loaded from a small section if its size is less than the
198// small section size threshold. Data in this section must be addressed using
199// gp_rel operator.
200bool MipsTargetLowering::IsInSmallSection(unsigned Size) {
201 return (Size > 0 && (Size <= Subtarget->getSSectionThreshold()));
202}
203
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000204// Discover if this global address can be placed into small data/bss section.
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000205bool MipsTargetLowering::IsGlobalInSmallSection(GlobalValue *GV)
206{
207 const TargetData *TD = getTargetData();
Bruno Cardoso Lopesfeb95cc2008-07-22 15:34:27 +0000208 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
209
210 if (!GVA)
211 return false;
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000212
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000213 const Type *Ty = GV->getType()->getElementType();
214 unsigned Size = TD->getABITypeSize(Ty);
215
216 // if this is a internal constant string, there is a special
217 // section for it, but not in small data/bss.
218 if (GVA->hasInitializer() && GV->hasInternalLinkage()) {
219 Constant *C = GVA->getInitializer();
220 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
221 if (CVA && CVA->isCString())
222 return false;
223 }
224
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000225 return IsInSmallSection(Size);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000226}
227
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000228// Get fp branch code (not opcode) from condition code.
229static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
230 if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
231 return Mips::BRANCH_T;
232
233 if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
234 return Mips::BRANCH_F;
235
236 return Mips::BRANCH_INVALID;
237}
238
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000239static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
240 switch(BC) {
241 default:
242 assert(0 && "Unknown branch code");
243 case Mips::BRANCH_T : return Mips::BC1T;
244 case Mips::BRANCH_F : return Mips::BC1F;
245 case Mips::BRANCH_TL : return Mips::BC1TL;
246 case Mips::BRANCH_FL : return Mips::BC1FL;
247 }
248}
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000249
250static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
251 switch (CC) {
252 default: assert(0 && "Unknown fp condition code!");
253 case ISD::SETEQ:
254 case ISD::SETOEQ: return Mips::FCOND_EQ;
255 case ISD::SETUNE: return Mips::FCOND_OGL;
256 case ISD::SETLT:
257 case ISD::SETOLT: return Mips::FCOND_OLT;
258 case ISD::SETGT:
259 case ISD::SETOGT: return Mips::FCOND_OGT;
260 case ISD::SETLE:
261 case ISD::SETOLE: return Mips::FCOND_OLE;
262 case ISD::SETGE:
263 case ISD::SETOGE: return Mips::FCOND_OGE;
264 case ISD::SETULT: return Mips::FCOND_ULT;
265 case ISD::SETULE: return Mips::FCOND_ULE;
266 case ISD::SETUGT: return Mips::FCOND_UGT;
267 case ISD::SETUGE: return Mips::FCOND_UGE;
268 case ISD::SETUO: return Mips::FCOND_UN;
269 case ISD::SETO: return Mips::FCOND_OR;
270 case ISD::SETNE:
271 case ISD::SETONE: return Mips::FCOND_NEQ;
272 case ISD::SETUEQ: return Mips::FCOND_UEQ;
273 }
274}
275
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000276MachineBasicBlock *
277MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
278 MachineBasicBlock *BB)
279{
280 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
281 bool isFPCmp = false;
282
283 switch (MI->getOpcode()) {
284 default: assert(false && "Unexpected instr type to insert");
285 case Mips::Select_FCC:
286 case Mips::Select_FCC_SO32:
287 case Mips::Select_FCC_AS32:
288 case Mips::Select_FCC_D32:
289 isFPCmp = true; // FALL THROUGH
290 case Mips::Select_CC:
291 case Mips::Select_CC_SO32:
292 case Mips::Select_CC_AS32:
293 case Mips::Select_CC_D32: {
294 // To "insert" a SELECT_CC instruction, we actually have to insert the
295 // diamond control-flow pattern. The incoming instruction knows the
296 // destination vreg to set, the condition code register to branch on, the
297 // true/false values to select between, and a branch opcode to use.
298 const BasicBlock *LLVM_BB = BB->getBasicBlock();
299 MachineFunction::iterator It = BB;
300 ++It;
301
302 // thisMBB:
303 // ...
304 // TrueVal = ...
305 // setcc r1, r2, r3
306 // bNE r1, r0, copy1MBB
307 // fallthrough --> copy0MBB
308 MachineBasicBlock *thisMBB = BB;
309 MachineFunction *F = BB->getParent();
310 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
311 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
312
313 // Emit the right instruction according to the type of the operands compared
314 if (isFPCmp) {
315 // Find the condiction code present in the setcc operation.
316 Mips::CondCode CC = (Mips::CondCode)MI->getOperand(4).getImm();
317 // Get the branch opcode from the branch code.
318 unsigned Opc = FPBranchCodeToOpc(GetFPBranchCodeFromCond(CC));
319 BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
320 } else
321 BuildMI(BB, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg())
322 .addReg(Mips::ZERO).addMBB(sinkMBB);
323
324 F->insert(It, copy0MBB);
325 F->insert(It, sinkMBB);
326 // Update machine-CFG edges by first adding all successors of the current
327 // block to the new block which will contain the Phi node for the select.
328 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
329 e = BB->succ_end(); i != e; ++i)
330 sinkMBB->addSuccessor(*i);
331 // Next, remove all successors of the current block, and add the true
332 // and fallthrough blocks as its successors.
333 while(!BB->succ_empty())
334 BB->removeSuccessor(BB->succ_begin());
335 BB->addSuccessor(copy0MBB);
336 BB->addSuccessor(sinkMBB);
337
338 // copy0MBB:
339 // %FalseValue = ...
340 // # fallthrough to sinkMBB
341 BB = copy0MBB;
342
343 // Update machine-CFG edges
344 BB->addSuccessor(sinkMBB);
345
346 // sinkMBB:
347 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
348 // ...
349 BB = sinkMBB;
350 BuildMI(BB, TII->get(Mips::PHI), MI->getOperand(0).getReg())
351 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
352 .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB);
353
354 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
355 return BB;
356 }
357 }
358}
359
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000360//===----------------------------------------------------------------------===//
361// Misc Lower Operation implementation
362//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000363
Dan Gohman475871a2008-07-27 21:46:04 +0000364SDValue MipsTargetLowering::
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000365LowerANDOR(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000366{
367 SDValue LHS = Op.getOperand(0);
368 SDValue RHS = Op.getOperand(1);
369
370 if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp)
371 return Op;
372
373 SDValue True = DAG.getConstant(1, MVT::i32);
374 SDValue False = DAG.getConstant(0, MVT::i32);
375
376 SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(),
377 LHS, True, False, LHS.getOperand(2));
378 SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(),
379 RHS, True, False, RHS.getOperand(2));
380
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000381 return DAG.getNode(Op.getOpcode(), MVT::i32, LSEL, RSEL);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000382}
383
384SDValue MipsTargetLowering::
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000385LowerBRCOND(SDValue Op, SelectionDAG &DAG)
386{
387 // The first operand is the chain, the second is the condition, the third is
388 // the block to branch to if the condition is true.
389 SDValue Chain = Op.getOperand(0);
390 SDValue Dest = Op.getOperand(2);
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000391
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000392 if (Op.getOperand(1).getOpcode() != MipsISD::FPCmp)
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000393 return Op;
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000394
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000395 SDValue CondRes = Op.getOperand(1);
396 SDValue CCNode = CondRes.getOperand(2);
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000397 Mips::CondCode CC = (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getValue();
398 SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32);
399
400 return DAG.getNode(MipsISD::FPBrcond, Op.getValueType(), Chain, BrCode,
401 Dest, CondRes);
402}
403
404SDValue MipsTargetLowering::
405LowerSETCC(SDValue Op, SelectionDAG &DAG)
406{
407 // The operands to this are the left and right operands to compare (ops #0,
408 // and #1) and the condition code to compare them with (op #2) as a
409 // CondCodeSDNode.
410 SDValue LHS = Op.getOperand(0);
411 SDValue RHS = Op.getOperand(1);
412
413 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
414
415 return DAG.getNode(MipsISD::FPCmp, Op.getValueType(), LHS, RHS,
416 DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
417}
418
419SDValue MipsTargetLowering::
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000420LowerSELECT(SDValue Op, SelectionDAG &DAG)
421{
422 SDValue Cond = Op.getOperand(0);
423 SDValue True = Op.getOperand(1);
424 SDValue False = Op.getOperand(2);
425
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000426 // if the incomming condition comes from fpcmp, the select
427 // operation must use FPSelectCC, otherwise SelectCC.
428 if (Cond.getOpcode() != MipsISD::FPCmp)
429 return DAG.getNode(MipsISD::SelectCC, True.getValueType(),
430 Cond, True, False);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000431
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000432 SDValue CCNode = Cond.getOperand(2);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000433 return DAG.getNode(MipsISD::FPSelectCC, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000434 Cond, True, False, CCNode);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000435}
436
437SDValue MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000438LowerSELECT_CC(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000439{
Dan Gohman475871a2008-07-27 21:46:04 +0000440 SDValue LHS = Op.getOperand(0);
441 SDValue RHS = Op.getOperand(1);
442 SDValue True = Op.getOperand(2);
443 SDValue False = Op.getOperand(3);
444 SDValue CC = Op.getOperand(4);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000445
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000446 SDValue SetCCRes = DAG.getNode(ISD::SETCC, LHS.getValueType(), LHS, RHS, CC);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000447 return DAG.getNode(MipsISD::SelectCC, True.getValueType(),
448 SetCCRes, True, False);
449}
450
Dan Gohman475871a2008-07-27 21:46:04 +0000451SDValue MipsTargetLowering::
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000452LowerGlobalAddress(SDValue Op, SelectionDAG &DAG)
453{
454 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
455 SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
456
457 if (!Subtarget->hasABICall()) {
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000458 const MVT *VTs = DAG.getNodeValueTypes(MVT::i32);
459 SDValue Ops[] = { GA };
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000460 // %gp_rel relocation
461 if (!isa<Function>(GV) && IsGlobalInSmallSection(GV)) {
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000462 SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, VTs, 1, Ops, 1);
463 SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
464 return DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
465 }
466 // %hi/%lo relocation
467 SDValue HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1);
468 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA);
469 return DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
470
471 } else { // Abicall relocations, TODO: make this cleaner.
472 SDValue ResNode = DAG.getLoad(MVT::i32, DAG.getEntryNode(), GA, NULL, 0);
473 // On functions and global targets not internal linked only
474 // a load from got/GP is necessary for PIC to work.
475 if (!GV->hasInternalLinkage() || isa<Function>(GV))
476 return ResNode;
477 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA);
478 return DAG.getNode(ISD::ADD, MVT::i32, ResNode, Lo);
479 }
480
481 assert(0 && "Dont know how to handle GlobalAddress");
482 return SDValue(0,0);
483}
484
485SDValue MipsTargetLowering::
486LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
487{
488 assert(0 && "TLS not implemented for MIPS.");
489 return SDValue(); // Not reached
490}
491
492SDValue MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000493LowerJumpTable(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000494{
Dan Gohman475871a2008-07-27 21:46:04 +0000495 SDValue ResNode;
496 SDValue HiPart;
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000497
Duncan Sands83ec4b62008-06-06 12:08:01 +0000498 MVT PtrVT = Op.getValueType();
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000499 JumpTableSDNode *JT = cast<JumpTableSDNode>(Op);
Dan Gohman475871a2008-07-27 21:46:04 +0000500 SDValue JTI = DAG.getTargetJumpTable(JT->getIndex(), PtrVT);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000501
502 if (getTargetMachine().getRelocationModel() != Reloc::PIC_) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000503 const MVT *VTs = DAG.getNodeValueTypes(MVT::i32);
Dan Gohman475871a2008-07-27 21:46:04 +0000504 SDValue Ops[] = { JTI };
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000505 HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1);
506 } else // Emit Load from Global Pointer
507 HiPart = DAG.getLoad(MVT::i32, DAG.getEntryNode(), JTI, NULL, 0);
508
Dan Gohman475871a2008-07-27 21:46:04 +0000509 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, JTI);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000510 ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
511
512 return ResNode;
513}
514
Dan Gohman475871a2008-07-27 21:46:04 +0000515SDValue MipsTargetLowering::
516LowerConstantPool(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000517{
Dan Gohman475871a2008-07-27 21:46:04 +0000518 SDValue ResNode;
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000519 ConstantPoolSDNode *N = cast<ConstantPoolSDNode>(Op);
520 Constant *C = N->getConstVal();
Dan Gohman475871a2008-07-27 21:46:04 +0000521 SDValue CP = DAG.getTargetConstantPool(C, MVT::i32, N->getAlignment());
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000522
523 // gp_rel relocation
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000524 // FIXME: we should reference the constant pool using small data sections,
525 // but the asm printer currently doens't support this feature without
526 // hacking it. This feature should come soon so we can uncomment the
527 // stuff below.
528 //if (!Subtarget->hasABICall() &&
529 // IsInSmallSection(getTargetData()->getABITypeSize(C->getType()))) {
530 // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
531 // SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
532 // ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
533 //} else { // %hi/%lo relocation
Dan Gohman475871a2008-07-27 21:46:04 +0000534 SDValue HiPart = DAG.getNode(MipsISD::Hi, MVT::i32, CP);
535 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, CP);
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000536 ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000537 //}
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000538
539 return ResNode;
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000540}
541
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000542//===----------------------------------------------------------------------===//
543// Calling Convention Implementation
544//
545// The lower operations present on calling convention works on this order:
546// LowerCALL (virt regs --> phys regs, virt regs --> stack)
547// LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs)
548// LowerRET (virt regs --> phys regs)
549// LowerCALL (phys regs --> virt regs)
550//
551//===----------------------------------------------------------------------===//
552
553#include "MipsGenCallingConv.inc"
554
555//===----------------------------------------------------------------------===//
556// CALL Calling Convention Implementation
557//===----------------------------------------------------------------------===//
558
559/// Mips custom CALL implementation
Dan Gohman475871a2008-07-27 21:46:04 +0000560SDValue MipsTargetLowering::
561LowerCALL(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000562{
Chris Lattnere0b12152008-03-17 06:57:02 +0000563 unsigned CallingConv = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000564
565 // By now, only CallingConv::C implemented
Chris Lattnere0b12152008-03-17 06:57:02 +0000566 switch (CallingConv) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000567 default:
568 assert(0 && "Unsupported calling convention");
569 case CallingConv::Fast:
570 case CallingConv::C:
571 return LowerCCCCallTo(Op, DAG, CallingConv);
572 }
573}
574
575/// LowerCCCCallTo - functions arguments are copied from virtual
576/// regs to (physical regs)/(stack frame), CALLSEQ_START and
577/// CALLSEQ_END are emitted.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000578/// TODO: isVarArg, isTailCall.
Dan Gohman475871a2008-07-27 21:46:04 +0000579SDValue MipsTargetLowering::
580LowerCCCCallTo(SDValue Op, SelectionDAG &DAG, unsigned CC)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000581{
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000582 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000583
Dan Gohman475871a2008-07-27 21:46:04 +0000584 SDValue Chain = Op.getOperand(0);
585 SDValue Callee = Op.getOperand(4);
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000586 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
587
588 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000589
590 // Analyze operands of the call, assigning locations to each operand.
591 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000592 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
593
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000594 // To meet O32 ABI, Mips must always allocate 16 bytes on
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000595 // the stack (even if less than 4 are used as arguments)
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000596 if (Subtarget->isABI_O32()) {
597 int VTsize = MVT(MVT::i32).getSizeInBits()/8;
598 MFI->CreateFixedObject(VTsize, (VTsize*3));
599 }
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000600
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000601 CCInfo.AnalyzeCallOperands(Op.Val, CC_Mips);
602
603 // Get a count of how many bytes are to be pushed on the stack.
604 unsigned NumBytes = CCInfo.getNextStackOffset();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000605 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes,
606 getPointerTy()));
607
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000608 // With EABI is it possible to have 16 args on registers.
Dan Gohman475871a2008-07-27 21:46:04 +0000609 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
610 SmallVector<SDValue, 8> MemOpChains;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000611
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000612 // First/LastArgStackLoc contains the first/last
613 // "at stack" argument location.
614 int LastArgStackLoc = 0;
615 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000616
617 // Walk the register/memloc assignments, inserting copies/loads.
618 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
619 CCValAssign &VA = ArgLocs[i];
620
621 // Arguments start after the 5 first operands of ISD::CALL
Dan Gohman475871a2008-07-27 21:46:04 +0000622 SDValue Arg = Op.getOperand(5+2*VA.getValNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000623
624 // Promote the value if needed.
625 switch (VA.getLocInfo()) {
Chris Lattnere0b12152008-03-17 06:57:02 +0000626 default: assert(0 && "Unknown loc info!");
627 case CCValAssign::Full: break;
628 case CCValAssign::SExt:
629 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
630 break;
631 case CCValAssign::ZExt:
632 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
633 break;
634 case CCValAssign::AExt:
635 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
636 break;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000637 }
638
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000639 // Arguments that can be passed on register must be kept at
640 // RegsToPass vector
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000641 if (VA.isRegLoc()) {
642 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Chris Lattnere0b12152008-03-17 06:57:02 +0000643 continue;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000644 }
Chris Lattnere0b12152008-03-17 06:57:02 +0000645
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000646 // Register cant get to this point...
Chris Lattnere0b12152008-03-17 06:57:02 +0000647 assert(VA.isMemLoc());
648
649 // Create the frame index object for this incoming parameter
650 // This guarantees that when allocating Local Area the firsts
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000651 // 16 bytes which are alwayes reserved won't be overwritten
652 // if O32 ABI is used. For EABI the first address is zero.
653 LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000654 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000655 LastArgStackLoc);
Chris Lattnere0b12152008-03-17 06:57:02 +0000656
Dan Gohman475871a2008-07-27 21:46:04 +0000657 SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
Chris Lattnere0b12152008-03-17 06:57:02 +0000658
659 // emit ISD::STORE whichs stores the
660 // parameter value to a stack Location
661 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000662 }
663
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000664 // Transform all store nodes into one single node because all store
665 // nodes are independent of each other.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000666 if (!MemOpChains.empty())
667 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
668 &MemOpChains[0], MemOpChains.size());
669
670 // Build a sequence of copy-to-reg nodes chained together with token
671 // chain and flag operands which copy the outgoing args into registers.
672 // The InFlag in necessary since all emited instructions must be
673 // stuck together.
Dan Gohman475871a2008-07-27 21:46:04 +0000674 SDValue InFlag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000675 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
676 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first,
677 RegsToPass[i].second, InFlag);
678 InFlag = Chain.getValue(1);
679 }
680
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +0000681 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
682 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000683 // node so that legalize doesn't hack it.
684 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000685 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +0000686 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000687 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
688
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000689
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000690 // MipsJmpLink = #chain, #target_address, #opt_in_flags...
691 // = Chain, Callee, Reg#1, Reg#2, ...
692 //
693 // Returns a chain & a flag for retval copy to use.
694 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +0000695 SmallVector<SDValue, 8> Ops;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000696 Ops.push_back(Chain);
697 Ops.push_back(Callee);
698
699 // Add argument registers to the end of the list so that they are
700 // known live into the call.
701 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
702 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
703 RegsToPass[i].second.getValueType()));
704
705 if (InFlag.Val)
706 Ops.push_back(InFlag);
707
708 Chain = DAG.getNode(MipsISD::JmpLink, NodeTys, &Ops[0], Ops.size());
709 InFlag = Chain.getValue(1);
710
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000711 // Create the CALLSEQ_END node.
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000712 Chain = DAG.getCALLSEQ_END(Chain,
713 DAG.getConstant(NumBytes, getPointerTy()),
714 DAG.getConstant(0, getPointerTy()),
715 InFlag);
716 InFlag = Chain.getValue(1);
717
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000718 // Create a stack location to hold GP when PIC is used. This stack
719 // location is used on function prologue to save GP and also after all
720 // emited CALL's to restore GP.
721 if (getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000722 // Function can have an arbitrary number of calls, so
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000723 // hold the LastArgStackLoc with the biggest offset.
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000724 int FI;
725 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000726 if (LastArgStackLoc >= MipsFI->getGPStackOffset()) {
727 LastArgStackLoc = (!LastArgStackLoc) ? (16) : (LastArgStackLoc+4);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000728 // Create the frame index only once. SPOffset here can be anything
729 // (this will be fixed on processFunctionBeforeFrameFinalized)
730 if (MipsFI->getGPStackOffset() == -1) {
731 FI = MFI->CreateFixedObject(4, 0);
732 MipsFI->setGPFI(FI);
733 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000734 MipsFI->setGPStackOffset(LastArgStackLoc);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000735 }
736
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000737 // Reload GP value.
738 FI = MipsFI->getGPFI();
Dan Gohman475871a2008-07-27 21:46:04 +0000739 SDValue FIN = DAG.getFrameIndex(FI,getPointerTy());
740 SDValue GPLoad = DAG.getLoad(MVT::i32, Chain, FIN, NULL, 0);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000741 Chain = GPLoad.getValue(1);
742 Chain = DAG.getCopyToReg(Chain, DAG.getRegister(Mips::GP, MVT::i32),
Dan Gohman475871a2008-07-27 21:46:04 +0000743 GPLoad, SDValue(0,0));
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000744 InFlag = Chain.getValue(1);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000745 }
746
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000747 // Handle result values, copying them out of physregs into vregs that we
748 // return.
Dan Gohman475871a2008-07-27 21:46:04 +0000749 return SDValue(LowerCallResult(Chain, InFlag, Op.Val, CC, DAG), Op.ResNo);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000750}
751
752/// LowerCallResult - Lower the result values of an ISD::CALL into the
753/// appropriate copies out of appropriate physical registers. This assumes that
754/// Chain/InFlag are the input chain/flag to use, and that TheCall is the call
755/// being lowered. Returns a SDNode with the same number of values as the
756/// ISD::CALL.
757SDNode *MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000758LowerCallResult(SDValue Chain, SDValue InFlag, SDNode *TheCall,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000759 unsigned CallingConv, SelectionDAG &DAG) {
760
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000761 bool isVarArg = cast<ConstantSDNode>(TheCall->getOperand(2))->getValue() != 0;
762
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000763 // Assign locations to each value returned by this call.
764 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000765 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
766
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000767 CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips);
Dan Gohman475871a2008-07-27 21:46:04 +0000768 SmallVector<SDValue, 8> ResultVals;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000769
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000770 // Copy all of the result registers out of their specified physreg.
771 for (unsigned i = 0; i != RVLocs.size(); ++i) {
772 Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(),
773 RVLocs[i].getValVT(), InFlag).getValue(1);
774 InFlag = Chain.getValue(2);
775 ResultVals.push_back(Chain.getValue(0));
776 }
777
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000778 ResultVals.push_back(Chain);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000779
780 // Merge everything together with a MERGE_VALUES node.
Duncan Sandsf9516202008-06-30 10:19:09 +0000781 return DAG.getMergeValues(TheCall->getVTList(), &ResultVals[0],
782 ResultVals.size()).Val;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000783}
784
785//===----------------------------------------------------------------------===//
786// FORMAL_ARGUMENTS Calling Convention Implementation
787//===----------------------------------------------------------------------===//
788
789/// Mips custom FORMAL_ARGUMENTS implementation
Dan Gohman475871a2008-07-27 21:46:04 +0000790SDValue MipsTargetLowering::
791LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000792{
793 unsigned CC = cast<ConstantSDNode>(Op.getOperand(1))->getValue();
794 switch(CC)
795 {
796 default:
797 assert(0 && "Unsupported calling convention");
798 case CallingConv::C:
799 return LowerCCCArguments(Op, DAG);
800 }
801}
802
803/// LowerCCCArguments - transform physical registers into
804/// virtual registers and generate load operations for
805/// arguments places on the stack.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000806/// TODO: isVarArg
Dan Gohman475871a2008-07-27 21:46:04 +0000807SDValue MipsTargetLowering::
808LowerCCCArguments(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000809{
Dan Gohman475871a2008-07-27 21:46:04 +0000810 SDValue Root = Op.getOperand(0);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000811 MachineFunction &MF = DAG.getMachineFunction();
812 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000813 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000814
815 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
816 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
817
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
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000827 CCInfo.AnalyzeFormalArguments(Op.Val, 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);
Dan Gohman475871a2008-07-27 21:46:04 +0000858 SDValue ArgValue = DAG.getCopyFromReg(Root, 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)
864 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
865 DAG.getValueType(VA.getValVT()));
866 else if (VA.getLocInfo() == CCValAssign::ZExt)
867 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
868 DAG.getValueType(VA.getValVT()));
869
870 if (VA.getLocInfo() != CCValAssign::Full)
871 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
872
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())) {
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000878 if (StackPtr.Val == 0)
879 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
895 ArgValues.push_back(DAG.getStore(Root, ArgValue, PtrOff, NULL, 0));
896 }
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());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000918 ArgValues.push_back(DAG.getLoad(VA.getValVT(), Root, FIN, NULL, 0));
919 }
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 }
Dan Gohman475871a2008-07-27 21:46:04 +0000931 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), Reg, ArgValues[0]);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000932 Root = DAG.getNode(ISD::TokenFactor, MVT::Other, Copy, Root);
933 }
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.
Duncan Sandsf9516202008-06-30 10:19:09 +0000938 return DAG.getMergeValues(Op.Val->getVTList(), &ArgValues[0],
939 ArgValues.size()).getValue(Op.ResNo);
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();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000954
955 // CCState - Info about the registers and stack slot.
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000956 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000957
958 // Analize return values of ISD::RET
959 CCInfo.AnalyzeReturn(Op.Val, RetCC_Mips);
960
961 // If this is the first return lowered for this function, add
962 // the regs to the liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +0000963 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000964 for (unsigned i = 0; i != RVLocs.size(); ++i)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000965 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +0000966 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000967 }
968
969 // The chain is always operand #0
Dan Gohman475871a2008-07-27 21:46:04 +0000970 SDValue Chain = Op.getOperand(0);
971 SDValue Flag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000972
973 // Copy the result values into the output registers.
974 for (unsigned i = 0; i != RVLocs.size(); ++i) {
975 CCValAssign &VA = RVLocs[i];
976 assert(VA.isRegLoc() && "Can only return in registers!");
977
978 // ISD::RET => ret chain, (regnum1,val1), ...
979 // So i*2+1 index only the regnums
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +0000980 Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), Op.getOperand(i*2+1), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000981
982 // guarantee that all emitted copies are
983 // stuck together, avoiding something bad
984 Flag = Chain.getValue(1);
985 }
986
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000987 // The mips ABIs for returning structs by value requires that we copy
988 // the sret argument into $v0 for the return. We saved the argument into
989 // a virtual register in the entry block, so now we copy the value out
990 // and into $v0.
991 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
992 MachineFunction &MF = DAG.getMachineFunction();
993 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
994 unsigned Reg = MipsFI->getSRetReturnReg();
995
996 if (!Reg)
997 assert(0 && "sret virtual register not created in the entry block");
Dan Gohman475871a2008-07-27 21:46:04 +0000998 SDValue Val = DAG.getCopyFromReg(Chain, Reg, getPointerTy());
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000999
1000 Chain = DAG.getCopyToReg(Chain, Mips::V0, Val, Flag);
1001 Flag = Chain.getValue(1);
1002 }
1003
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001004 // Return on Mips is always a "jr $ra"
1005 if (Flag.Val)
1006 return DAG.getNode(MipsISD::Ret, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001007 Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001008 else // Return Void
1009 return DAG.getNode(MipsISD::Ret, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001010 Chain, DAG.getRegister(Mips::RA, MVT::i32));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001011}
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001012
1013//===----------------------------------------------------------------------===//
1014// Mips Inline Assembly Support
1015//===----------------------------------------------------------------------===//
1016
1017/// getConstraintType - Given a constraint letter, return the type of
1018/// constraint it is for this target.
1019MipsTargetLowering::ConstraintType MipsTargetLowering::
1020getConstraintType(const std::string &Constraint) const
1021{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001022 // Mips specific constrainy
1023 // GCC config/mips/constraints.md
1024 //
1025 // 'd' : An address register. Equivalent to r
1026 // unless generating MIPS16 code.
1027 // 'y' : Equivalent to r; retained for
1028 // backwards compatibility.
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +00001029 // 'f' : Floating Point registers.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001030 if (Constraint.size() == 1) {
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001031 switch (Constraint[0]) {
1032 default : break;
1033 case 'd':
1034 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001035 case 'f':
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001036 return C_RegisterClass;
1037 break;
1038 }
1039 }
1040 return TargetLowering::getConstraintType(Constraint);
1041}
1042
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001043/// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1044/// return a list of registers that can be used to satisfy the constraint.
1045/// This should only be used for C_RegisterClass constraints.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001046std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00001047getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001048{
1049 if (Constraint.size() == 1) {
1050 switch (Constraint[0]) {
1051 case 'r':
1052 return std::make_pair(0U, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001053 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001054 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001055 if (Subtarget->isSingleFloat())
1056 return std::make_pair(0U, Mips::FGR32RegisterClass);
1057 else
1058 return std::make_pair(0U, Mips::AFGR32RegisterClass);
Duncan Sands15126422008-07-08 09:33:14 +00001059 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001060 if (VT == MVT::f64)
1061 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1062 return std::make_pair(0U, Mips::AFGR64RegisterClass);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001063 }
1064 }
1065 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1066}
1067
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001068/// Given a register class constraint, like 'r', if this corresponds directly
1069/// to an LLVM register class, return a register of 0 and the register class
1070/// pointer.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001071std::vector<unsigned> MipsTargetLowering::
1072getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001073 MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001074{
1075 if (Constraint.size() != 1)
1076 return std::vector<unsigned>();
1077
1078 switch (Constraint[0]) {
1079 default : break;
1080 case 'r':
1081 // GCC Mips Constraint Letters
1082 case 'd':
1083 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001084 return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3,
1085 Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1,
1086 Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7,
1087 Mips::T8, 0);
1088
1089 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001090 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001091 if (Subtarget->isSingleFloat())
1092 return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1093 Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1094 Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1095 Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1096 Mips::F30, Mips::F31, 0);
1097 else
1098 return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8,
1099 Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26,
1100 Mips::F28, Mips::F30, 0);
Duncan Sands15126422008-07-08 09:33:14 +00001101 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001102
1103 if (VT == MVT::f64)
1104 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1105 return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4,
1106 Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13,
1107 Mips::D14, Mips::D15, 0);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001108 }
1109 return std::vector<unsigned>();
1110}