blob: 00f8cdbc83aac84249430d403f5d92690b7ddded [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
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +000095 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);
99 setOperationAction(ISD::ConstantPool, MVT::i32, Custom);
100 setOperationAction(ISD::SELECT, MVT::f32, Custom);
101 setOperationAction(ISD::SELECT, MVT::i32, Custom);
102 setOperationAction(ISD::SELECT_CC, MVT::i32, Custom);
103 setOperationAction(ISD::SETCC, MVT::f32, Custom);
104 setOperationAction(ISD::BRCOND, MVT::Other, Custom);
105 setOperationAction(ISD::DYNAMIC_STACKALLOC, MVT::i32, Custom);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000106
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000107 // We custom lower AND/OR to handle the case where the DAG contain 'ands/ors'
108 // with operands comming from setcc fp comparions. This is necessary since
109 // the result from these setcc are in a flag registers (FCR31).
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000110 setOperationAction(ISD::AND, MVT::i32, Custom);
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000111 setOperationAction(ISD::OR, MVT::i32, Custom);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000112
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000113 // Operations not directly supported by Mips.
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000114 setOperationAction(ISD::BR_JT, MVT::Other, Expand);
115 setOperationAction(ISD::BR_CC, MVT::Other, Expand);
116 setOperationAction(ISD::SELECT_CC, MVT::Other, Expand);
Bruno Cardoso Lopes85e92122008-07-07 19:11:24 +0000117 setOperationAction(ISD::UINT_TO_FP, MVT::i32, Expand);
118 setOperationAction(ISD::FP_TO_UINT, MVT::i32, Expand);
119 setOperationAction(ISD::SIGN_EXTEND_INREG, MVT::i1, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000120 setOperationAction(ISD::CTPOP, MVT::i32, Expand);
121 setOperationAction(ISD::CTTZ, MVT::i32, Expand);
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000122 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 Lopes65ad4522008-08-08 06:16:31 +0000149 if (!Subtarget->hasBitCount())
150 setOperationAction(ISD::CTLZ, MVT::i32, Expand);
151
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000152 setStackPointerRegisterToSaveRestore(Mips::SP);
153 computeRegisterProperties();
154}
155
156
Dan Gohman475871a2008-07-27 21:46:04 +0000157MVT MipsTargetLowering::getSetCCResultType(const SDValue &) const {
Scott Michel5b8f82e2008-03-10 15:42:14 +0000158 return MVT::i32;
159}
160
161
Dan Gohman475871a2008-07-27 21:46:04 +0000162SDValue MipsTargetLowering::
163LowerOperation(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000164{
165 switch (Op.getOpcode())
166 {
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000167 case ISD::AND: return LowerANDOR(Op, DAG);
168 case ISD::BRCOND: return LowerBRCOND(Op, DAG);
169 case ISD::CALL: return LowerCALL(Op, DAG);
170 case ISD::ConstantPool: return LowerConstantPool(Op, DAG);
171 case ISD::DYNAMIC_STACKALLOC: return LowerDYNAMIC_STACKALLOC(Op, DAG);
172 case ISD::FORMAL_ARGUMENTS: return LowerFORMAL_ARGUMENTS(Op, DAG);
173 case ISD::GlobalAddress: return LowerGlobalAddress(Op, DAG);
174 case ISD::GlobalTLSAddress: return LowerGlobalTLSAddress(Op, DAG);
175 case ISD::JumpTable: return LowerJumpTable(Op, DAG);
176 case ISD::OR: return LowerANDOR(Op, DAG);
177 case ISD::RET: return LowerRET(Op, DAG);
178 case ISD::SELECT: return LowerSELECT(Op, DAG);
179 case ISD::SELECT_CC: return LowerSELECT_CC(Op, DAG);
180 case ISD::SETCC: return LowerSETCC(Op, DAG);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000181 }
Dan Gohman475871a2008-07-27 21:46:04 +0000182 return SDValue();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000183}
184
185//===----------------------------------------------------------------------===//
186// Lower helper functions
187//===----------------------------------------------------------------------===//
188
189// AddLiveIn - This helper function adds the specified physical register to the
190// MachineFunction as a live in value. It also creates a corresponding
191// virtual register for it.
192static unsigned
193AddLiveIn(MachineFunction &MF, unsigned PReg, TargetRegisterClass *RC)
194{
195 assert(RC->contains(PReg) && "Not the correct regclass!");
Chris Lattner84bc5422007-12-31 04:13:23 +0000196 unsigned VReg = MF.getRegInfo().createVirtualRegister(RC);
197 MF.getRegInfo().addLiveIn(PReg, VReg);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000198 return VReg;
199}
200
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000201// A address must be loaded from a small section if its size is less than the
202// small section size threshold. Data in this section must be addressed using
203// gp_rel operator.
204bool MipsTargetLowering::IsInSmallSection(unsigned Size) {
205 return (Size > 0 && (Size <= Subtarget->getSSectionThreshold()));
206}
207
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000208// Discover if this global address can be placed into small data/bss section.
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000209bool MipsTargetLowering::IsGlobalInSmallSection(GlobalValue *GV)
210{
211 const TargetData *TD = getTargetData();
Bruno Cardoso Lopesfeb95cc2008-07-22 15:34:27 +0000212 const GlobalVariable *GVA = dyn_cast<GlobalVariable>(GV);
213
214 if (!GVA)
215 return false;
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000216
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000217 const Type *Ty = GV->getType()->getElementType();
218 unsigned Size = TD->getABITypeSize(Ty);
219
220 // if this is a internal constant string, there is a special
221 // section for it, but not in small data/bss.
222 if (GVA->hasInitializer() && GV->hasInternalLinkage()) {
223 Constant *C = GVA->getInitializer();
224 const ConstantArray *CVA = dyn_cast<ConstantArray>(C);
225 if (CVA && CVA->isCString())
226 return false;
227 }
228
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000229 return IsInSmallSection(Size);
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000230}
231
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000232// Get fp branch code (not opcode) from condition code.
233static Mips::FPBranchCode GetFPBranchCodeFromCond(Mips::CondCode CC) {
234 if (CC >= Mips::FCOND_F && CC <= Mips::FCOND_NGT)
235 return Mips::BRANCH_T;
236
237 if (CC >= Mips::FCOND_T && CC <= Mips::FCOND_GT)
238 return Mips::BRANCH_F;
239
240 return Mips::BRANCH_INVALID;
241}
242
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000243static unsigned FPBranchCodeToOpc(Mips::FPBranchCode BC) {
244 switch(BC) {
245 default:
246 assert(0 && "Unknown branch code");
247 case Mips::BRANCH_T : return Mips::BC1T;
248 case Mips::BRANCH_F : return Mips::BC1F;
249 case Mips::BRANCH_TL : return Mips::BC1TL;
250 case Mips::BRANCH_FL : return Mips::BC1FL;
251 }
252}
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000253
254static Mips::CondCode FPCondCCodeToFCC(ISD::CondCode CC) {
255 switch (CC) {
256 default: assert(0 && "Unknown fp condition code!");
257 case ISD::SETEQ:
258 case ISD::SETOEQ: return Mips::FCOND_EQ;
259 case ISD::SETUNE: return Mips::FCOND_OGL;
260 case ISD::SETLT:
261 case ISD::SETOLT: return Mips::FCOND_OLT;
262 case ISD::SETGT:
263 case ISD::SETOGT: return Mips::FCOND_OGT;
264 case ISD::SETLE:
265 case ISD::SETOLE: return Mips::FCOND_OLE;
266 case ISD::SETGE:
267 case ISD::SETOGE: return Mips::FCOND_OGE;
268 case ISD::SETULT: return Mips::FCOND_ULT;
269 case ISD::SETULE: return Mips::FCOND_ULE;
270 case ISD::SETUGT: return Mips::FCOND_UGT;
271 case ISD::SETUGE: return Mips::FCOND_UGE;
272 case ISD::SETUO: return Mips::FCOND_UN;
273 case ISD::SETO: return Mips::FCOND_OR;
274 case ISD::SETNE:
275 case ISD::SETONE: return Mips::FCOND_NEQ;
276 case ISD::SETUEQ: return Mips::FCOND_UEQ;
277 }
278}
279
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000280MachineBasicBlock *
281MipsTargetLowering::EmitInstrWithCustomInserter(MachineInstr *MI,
282 MachineBasicBlock *BB)
283{
284 const TargetInstrInfo *TII = getTargetMachine().getInstrInfo();
285 bool isFPCmp = false;
286
287 switch (MI->getOpcode()) {
288 default: assert(false && "Unexpected instr type to insert");
289 case Mips::Select_FCC:
290 case Mips::Select_FCC_SO32:
291 case Mips::Select_FCC_AS32:
292 case Mips::Select_FCC_D32:
293 isFPCmp = true; // FALL THROUGH
294 case Mips::Select_CC:
295 case Mips::Select_CC_SO32:
296 case Mips::Select_CC_AS32:
297 case Mips::Select_CC_D32: {
298 // To "insert" a SELECT_CC instruction, we actually have to insert the
299 // diamond control-flow pattern. The incoming instruction knows the
300 // destination vreg to set, the condition code register to branch on, the
301 // true/false values to select between, and a branch opcode to use.
302 const BasicBlock *LLVM_BB = BB->getBasicBlock();
303 MachineFunction::iterator It = BB;
304 ++It;
305
306 // thisMBB:
307 // ...
308 // TrueVal = ...
309 // setcc r1, r2, r3
310 // bNE r1, r0, copy1MBB
311 // fallthrough --> copy0MBB
312 MachineBasicBlock *thisMBB = BB;
313 MachineFunction *F = BB->getParent();
314 MachineBasicBlock *copy0MBB = F->CreateMachineBasicBlock(LLVM_BB);
315 MachineBasicBlock *sinkMBB = F->CreateMachineBasicBlock(LLVM_BB);
316
317 // Emit the right instruction according to the type of the operands compared
318 if (isFPCmp) {
319 // Find the condiction code present in the setcc operation.
320 Mips::CondCode CC = (Mips::CondCode)MI->getOperand(4).getImm();
321 // Get the branch opcode from the branch code.
322 unsigned Opc = FPBranchCodeToOpc(GetFPBranchCodeFromCond(CC));
323 BuildMI(BB, TII->get(Opc)).addMBB(sinkMBB);
324 } else
325 BuildMI(BB, TII->get(Mips::BNE)).addReg(MI->getOperand(1).getReg())
326 .addReg(Mips::ZERO).addMBB(sinkMBB);
327
328 F->insert(It, copy0MBB);
329 F->insert(It, sinkMBB);
330 // Update machine-CFG edges by first adding all successors of the current
331 // block to the new block which will contain the Phi node for the select.
332 for(MachineBasicBlock::succ_iterator i = BB->succ_begin(),
333 e = BB->succ_end(); i != e; ++i)
334 sinkMBB->addSuccessor(*i);
335 // Next, remove all successors of the current block, and add the true
336 // and fallthrough blocks as its successors.
337 while(!BB->succ_empty())
338 BB->removeSuccessor(BB->succ_begin());
339 BB->addSuccessor(copy0MBB);
340 BB->addSuccessor(sinkMBB);
341
342 // copy0MBB:
343 // %FalseValue = ...
344 // # fallthrough to sinkMBB
345 BB = copy0MBB;
346
347 // Update machine-CFG edges
348 BB->addSuccessor(sinkMBB);
349
350 // sinkMBB:
351 // %Result = phi [ %FalseValue, copy0MBB ], [ %TrueValue, thisMBB ]
352 // ...
353 BB = sinkMBB;
354 BuildMI(BB, TII->get(Mips::PHI), MI->getOperand(0).getReg())
355 .addReg(MI->getOperand(2).getReg()).addMBB(copy0MBB)
356 .addReg(MI->getOperand(3).getReg()).addMBB(thisMBB);
357
358 F->DeleteMachineInstr(MI); // The pseudo instruction is gone now.
359 return BB;
360 }
361 }
362}
363
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000364//===----------------------------------------------------------------------===//
365// Misc Lower Operation implementation
366//===----------------------------------------------------------------------===//
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000367
Dan Gohman475871a2008-07-27 21:46:04 +0000368SDValue MipsTargetLowering::
Bruno Cardoso Lopes7da151c2008-08-07 19:08:11 +0000369LowerDYNAMIC_STACKALLOC(SDValue Op, SelectionDAG &DAG)
370{
371 SDValue Chain = Op.getOperand(0);
372 SDValue Size = Op.getOperand(1);
373
374 // Get a reference from Mips stack pointer
375 SDValue StackPointer = DAG.getCopyFromReg(Chain, Mips::SP, MVT::i32);
376
377 // Subtract the dynamic size from the actual stack size to
378 // obtain the new stack size.
379 SDValue Sub = DAG.getNode(ISD::SUB, MVT::i32, StackPointer, Size);
380
381 // The Sub result contains the new stack start address, so it
382 // must be placed in the stack pointer register.
383 Chain = DAG.getCopyToReg(StackPointer.getValue(1), Mips::SP, Sub);
384
385 // This node always has two return values: a new stack pointer
386 // value and a chain
387 SDValue Ops[2] = { Sub, Chain };
388 return DAG.getMergeValues(Ops, 2);
389}
390
391SDValue MipsTargetLowering::
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000392LowerANDOR(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000393{
394 SDValue LHS = Op.getOperand(0);
395 SDValue RHS = Op.getOperand(1);
396
397 if (LHS.getOpcode() != MipsISD::FPCmp || RHS.getOpcode() != MipsISD::FPCmp)
398 return Op;
399
400 SDValue True = DAG.getConstant(1, MVT::i32);
401 SDValue False = DAG.getConstant(0, MVT::i32);
402
403 SDValue LSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(),
404 LHS, True, False, LHS.getOperand(2));
405 SDValue RSEL = DAG.getNode(MipsISD::FPSelectCC, True.getValueType(),
406 RHS, True, False, RHS.getOperand(2));
407
Bruno Cardoso Lopes1906c5a2008-08-02 19:37:33 +0000408 return DAG.getNode(Op.getOpcode(), MVT::i32, LSEL, RSEL);
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000409}
410
411SDValue MipsTargetLowering::
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000412LowerBRCOND(SDValue Op, SelectionDAG &DAG)
413{
414 // The first operand is the chain, the second is the condition, the third is
415 // the block to branch to if the condition is true.
416 SDValue Chain = Op.getOperand(0);
417 SDValue Dest = Op.getOperand(2);
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);
Bruno Cardoso Lopes85e31e32008-07-28 19:11:24 +0000424 Mips::CondCode CC = (Mips::CondCode)cast<ConstantSDNode>(CCNode)->getValue();
425 SDValue BrCode = DAG.getConstant(GetFPBranchCodeFromCond(CC), MVT::i32);
426
427 return DAG.getNode(MipsISD::FPBrcond, Op.getValueType(), Chain, BrCode,
428 Dest, CondRes);
429}
430
431SDValue MipsTargetLowering::
432LowerSETCC(SDValue Op, SelectionDAG &DAG)
433{
434 // The operands to this are the left and right operands to compare (ops #0,
435 // and #1) and the condition code to compare them with (op #2) as a
436 // CondCodeSDNode.
437 SDValue LHS = Op.getOperand(0);
438 SDValue RHS = Op.getOperand(1);
439
440 ISD::CondCode CC = cast<CondCodeSDNode>(Op.getOperand(2))->get();
441
442 return DAG.getNode(MipsISD::FPCmp, Op.getValueType(), LHS, RHS,
443 DAG.getConstant(FPCondCCodeToFCC(CC), MVT::i32));
444}
445
446SDValue MipsTargetLowering::
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000447LowerSELECT(SDValue Op, SelectionDAG &DAG)
448{
449 SDValue Cond = Op.getOperand(0);
450 SDValue True = Op.getOperand(1);
451 SDValue False = Op.getOperand(2);
452
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000453 // if the incomming condition comes from fpcmp, the select
454 // operation must use FPSelectCC, otherwise SelectCC.
455 if (Cond.getOpcode() != MipsISD::FPCmp)
456 return DAG.getNode(MipsISD::SelectCC, True.getValueType(),
457 Cond, True, False);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000458
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000459 SDValue CCNode = Cond.getOperand(2);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000460 return DAG.getNode(MipsISD::FPSelectCC, True.getValueType(),
Bruno Cardoso Lopes77283772008-07-31 18:31:28 +0000461 Cond, True, False, CCNode);
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000462}
463
464SDValue MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000465LowerSELECT_CC(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000466{
Dan Gohman475871a2008-07-27 21:46:04 +0000467 SDValue LHS = Op.getOperand(0);
468 SDValue RHS = Op.getOperand(1);
469 SDValue True = Op.getOperand(2);
470 SDValue False = Op.getOperand(3);
471 SDValue CC = Op.getOperand(4);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000472
Bruno Cardoso Lopes6d399bd2008-07-29 19:05:28 +0000473 SDValue SetCCRes = DAG.getNode(ISD::SETCC, LHS.getValueType(), LHS, RHS, CC);
Bruno Cardoso Lopes07cec752008-06-06 00:58:26 +0000474 return DAG.getNode(MipsISD::SelectCC, True.getValueType(),
475 SetCCRes, True, False);
476}
477
Dan Gohman475871a2008-07-27 21:46:04 +0000478SDValue MipsTargetLowering::
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000479LowerGlobalAddress(SDValue Op, SelectionDAG &DAG)
480{
481 GlobalValue *GV = cast<GlobalAddressSDNode>(Op)->getGlobal();
482 SDValue GA = DAG.getTargetGlobalAddress(GV, MVT::i32);
483
484 if (!Subtarget->hasABICall()) {
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000485 const MVT *VTs = DAG.getNodeValueTypes(MVT::i32);
486 SDValue Ops[] = { GA };
Bruno Cardoso Lopes4b877ca2008-07-30 17:06:13 +0000487 // %gp_rel relocation
488 if (!isa<Function>(GV) && IsGlobalInSmallSection(GV)) {
Bruno Cardoso Lopes97843cd2008-07-29 19:29:50 +0000489 SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, VTs, 1, Ops, 1);
490 SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
491 return DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
492 }
493 // %hi/%lo relocation
494 SDValue HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1);
495 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA);
496 return DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
497
498 } else { // Abicall relocations, TODO: make this cleaner.
499 SDValue ResNode = DAG.getLoad(MVT::i32, DAG.getEntryNode(), GA, NULL, 0);
500 // On functions and global targets not internal linked only
501 // a load from got/GP is necessary for PIC to work.
502 if (!GV->hasInternalLinkage() || isa<Function>(GV))
503 return ResNode;
504 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, GA);
505 return DAG.getNode(ISD::ADD, MVT::i32, ResNode, Lo);
506 }
507
508 assert(0 && "Dont know how to handle GlobalAddress");
509 return SDValue(0,0);
510}
511
512SDValue MipsTargetLowering::
513LowerGlobalTLSAddress(SDValue Op, SelectionDAG &DAG)
514{
515 assert(0 && "TLS not implemented for MIPS.");
516 return SDValue(); // Not reached
517}
518
519SDValue MipsTargetLowering::
Dan Gohman475871a2008-07-27 21:46:04 +0000520LowerJumpTable(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000521{
Dan Gohman475871a2008-07-27 21:46:04 +0000522 SDValue ResNode;
523 SDValue HiPart;
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 };
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000532 HiPart = DAG.getNode(MipsISD::Hi, VTs, 1, Ops, 1);
533 } else // Emit Load from Global Pointer
534 HiPart = DAG.getLoad(MVT::i32, DAG.getEntryNode(), JTI, NULL, 0);
535
Dan Gohman475871a2008-07-27 21:46:04 +0000536 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, JTI);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000537 ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
538
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());
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000549
550 // gp_rel relocation
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000551 // FIXME: we should reference the constant pool using small data sections,
552 // but the asm printer currently doens't support this feature without
553 // hacking it. This feature should come soon so we can uncomment the
554 // stuff below.
555 //if (!Subtarget->hasABICall() &&
556 // IsInSmallSection(getTargetData()->getABITypeSize(C->getType()))) {
557 // SDValue GPRelNode = DAG.getNode(MipsISD::GPRel, MVT::i32, CP);
558 // SDValue GOT = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, MVT::i32);
559 // ResNode = DAG.getNode(ISD::ADD, MVT::i32, GOT, GPRelNode);
560 //} else { // %hi/%lo relocation
Dan Gohman475871a2008-07-27 21:46:04 +0000561 SDValue HiPart = DAG.getNode(MipsISD::Hi, MVT::i32, CP);
562 SDValue Lo = DAG.getNode(MipsISD::Lo, MVT::i32, CP);
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000563 ResNode = DAG.getNode(ISD::ADD, MVT::i32, HiPart, Lo);
Bruno Cardoso Lopesf33bc432008-07-28 19:26:25 +0000564 //}
Bruno Cardoso Lopes92e87f22008-07-23 16:01:50 +0000565
566 return ResNode;
Bruno Cardoso Lopes97c25372008-07-09 04:15:08 +0000567}
568
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000569//===----------------------------------------------------------------------===//
570// Calling Convention Implementation
571//
572// The lower operations present on calling convention works on this order:
573// LowerCALL (virt regs --> phys regs, virt regs --> stack)
574// LowerFORMAL_ARGUMENTS (phys --> virt regs, stack --> virt regs)
575// LowerRET (virt regs --> phys regs)
576// LowerCALL (phys regs --> virt regs)
577//
578//===----------------------------------------------------------------------===//
579
580#include "MipsGenCallingConv.inc"
581
582//===----------------------------------------------------------------------===//
583// CALL Calling Convention Implementation
584//===----------------------------------------------------------------------===//
585
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000586/// LowerCCCCallTo - functions arguments are copied from virtual
587/// regs to (physical regs)/(stack frame), CALLSEQ_START and
588/// CALLSEQ_END are emitted.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000589/// TODO: isVarArg, isTailCall.
Dan Gohman475871a2008-07-27 21:46:04 +0000590SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000591LowerCALL(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000592{
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000593 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000594
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000595 SDValue Chain = Op.getOperand(0);
Dan Gohman475871a2008-07-27 21:46:04 +0000596 SDValue Callee = Op.getOperand(4);
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000597 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
598 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000599
600 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000601
602 // Analyze operands of the call, assigning locations to each operand.
603 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000604 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
605
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000606 // To meet O32 ABI, Mips must always allocate 16 bytes on
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000607 // the stack (even if less than 4 are used as arguments)
Bruno Cardoso Lopesb27cb552008-07-15 02:03:36 +0000608 if (Subtarget->isABI_O32()) {
609 int VTsize = MVT(MVT::i32).getSizeInBits()/8;
610 MFI->CreateFixedObject(VTsize, (VTsize*3));
611 }
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000612
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000613 CCInfo.AnalyzeCallOperands(Op.Val, CC_Mips);
614
615 // Get a count of how many bytes are to be pushed on the stack.
616 unsigned NumBytes = CCInfo.getNextStackOffset();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000617 Chain = DAG.getCALLSEQ_START(Chain,DAG.getConstant(NumBytes,
618 getPointerTy()));
619
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000620 // With EABI is it possible to have 16 args on registers.
Dan Gohman475871a2008-07-27 21:46:04 +0000621 SmallVector<std::pair<unsigned, SDValue>, 16> RegsToPass;
622 SmallVector<SDValue, 8> MemOpChains;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000623
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000624 // First/LastArgStackLoc contains the first/last
625 // "at stack" argument location.
626 int LastArgStackLoc = 0;
627 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000628
629 // Walk the register/memloc assignments, inserting copies/loads.
630 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
631 CCValAssign &VA = ArgLocs[i];
632
633 // Arguments start after the 5 first operands of ISD::CALL
Dan Gohman475871a2008-07-27 21:46:04 +0000634 SDValue Arg = Op.getOperand(5+2*VA.getValNo());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000635
636 // Promote the value if needed.
637 switch (VA.getLocInfo()) {
Chris Lattnere0b12152008-03-17 06:57:02 +0000638 default: assert(0 && "Unknown loc info!");
639 case CCValAssign::Full: break;
640 case CCValAssign::SExt:
641 Arg = DAG.getNode(ISD::SIGN_EXTEND, VA.getLocVT(), Arg);
642 break;
643 case CCValAssign::ZExt:
644 Arg = DAG.getNode(ISD::ZERO_EXTEND, VA.getLocVT(), Arg);
645 break;
646 case CCValAssign::AExt:
647 Arg = DAG.getNode(ISD::ANY_EXTEND, VA.getLocVT(), Arg);
648 break;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000649 }
650
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000651 // Arguments that can be passed on register must be kept at
652 // RegsToPass vector
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000653 if (VA.isRegLoc()) {
654 RegsToPass.push_back(std::make_pair(VA.getLocReg(), Arg));
Chris Lattnere0b12152008-03-17 06:57:02 +0000655 continue;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000656 }
Chris Lattnere0b12152008-03-17 06:57:02 +0000657
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000658 // Register cant get to this point...
Chris Lattnere0b12152008-03-17 06:57:02 +0000659 assert(VA.isMemLoc());
660
661 // Create the frame index object for this incoming parameter
662 // This guarantees that when allocating Local Area the firsts
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000663 // 16 bytes which are alwayes reserved won't be overwritten
664 // if O32 ABI is used. For EABI the first address is zero.
665 LastArgStackLoc = (FirstStackArgLoc + VA.getLocMemOffset());
Duncan Sands83ec4b62008-06-06 12:08:01 +0000666 int FI = MFI->CreateFixedObject(VA.getValVT().getSizeInBits()/8,
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000667 LastArgStackLoc);
Chris Lattnere0b12152008-03-17 06:57:02 +0000668
Dan Gohman475871a2008-07-27 21:46:04 +0000669 SDValue PtrOff = DAG.getFrameIndex(FI,getPointerTy());
Chris Lattnere0b12152008-03-17 06:57:02 +0000670
671 // emit ISD::STORE whichs stores the
672 // parameter value to a stack Location
673 MemOpChains.push_back(DAG.getStore(Chain, Arg, PtrOff, NULL, 0));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000674 }
675
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000676 // Transform all store nodes into one single node because all store
677 // nodes are independent of each other.
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000678 if (!MemOpChains.empty())
679 Chain = DAG.getNode(ISD::TokenFactor, MVT::Other,
680 &MemOpChains[0], MemOpChains.size());
681
682 // Build a sequence of copy-to-reg nodes chained together with token
683 // chain and flag operands which copy the outgoing args into registers.
684 // The InFlag in necessary since all emited instructions must be
685 // stuck together.
Dan Gohman475871a2008-07-27 21:46:04 +0000686 SDValue InFlag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000687 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i) {
688 Chain = DAG.getCopyToReg(Chain, RegsToPass[i].first,
689 RegsToPass[i].second, InFlag);
690 InFlag = Chain.getValue(1);
691 }
692
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +0000693 // If the callee is a GlobalAddress/ExternalSymbol node (quite common, every
694 // direct call is) turn it into a TargetGlobalAddress/TargetExternalSymbol
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000695 // node so that legalize doesn't hack it.
696 if (GlobalAddressSDNode *G = dyn_cast<GlobalAddressSDNode>(Callee))
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000697 Callee = DAG.getTargetGlobalAddress(G->getGlobal(), getPointerTy());
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +0000698 else if (ExternalSymbolSDNode *S = dyn_cast<ExternalSymbolSDNode>(Callee))
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000699 Callee = DAG.getTargetExternalSymbol(S->getSymbol(), getPointerTy());
700
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000701
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000702 // MipsJmpLink = #chain, #target_address, #opt_in_flags...
703 // = Chain, Callee, Reg#1, Reg#2, ...
704 //
705 // Returns a chain & a flag for retval copy to use.
706 SDVTList NodeTys = DAG.getVTList(MVT::Other, MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +0000707 SmallVector<SDValue, 8> Ops;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000708 Ops.push_back(Chain);
709 Ops.push_back(Callee);
710
711 // Add argument registers to the end of the list so that they are
712 // known live into the call.
713 for (unsigned i = 0, e = RegsToPass.size(); i != e; ++i)
714 Ops.push_back(DAG.getRegister(RegsToPass[i].first,
715 RegsToPass[i].second.getValueType()));
716
717 if (InFlag.Val)
718 Ops.push_back(InFlag);
719
720 Chain = DAG.getNode(MipsISD::JmpLink, NodeTys, &Ops[0], Ops.size());
721 InFlag = Chain.getValue(1);
722
Bruno Cardoso Lopesd2947ee2008-06-04 01:45:25 +0000723 // Create the CALLSEQ_END node.
Bruno Cardoso Lopesbdbb7502008-06-01 03:49:39 +0000724 Chain = DAG.getCALLSEQ_END(Chain,
725 DAG.getConstant(NumBytes, getPointerTy()),
726 DAG.getConstant(0, getPointerTy()),
727 InFlag);
728 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());
752 SDValue GPLoad = DAG.getLoad(MVT::i32, Chain, FIN, NULL, 0);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000753 Chain = GPLoad.getValue(1);
754 Chain = DAG.getCopyToReg(Chain, 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 Gohman475871a2008-07-27 21:46:04 +0000761 return SDValue(LowerCallResult(Chain, InFlag, Op.Val, CC, DAG), Op.ResNo);
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 Gohman475871a2008-07-27 21:46:04 +0000770LowerCallResult(SDValue Chain, SDValue InFlag, SDNode *TheCall,
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000771 unsigned CallingConv, SelectionDAG &DAG) {
772
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000773 bool isVarArg = cast<ConstantSDNode>(TheCall->getOperand(2))->getValue() != 0;
774
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000775 // Assign locations to each value returned by this call.
776 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000777 CCState CCInfo(CallingConv, isVarArg, getTargetMachine(), RVLocs);
778
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000779 CCInfo.AnalyzeCallResult(TheCall, RetCC_Mips);
Dan Gohman475871a2008-07-27 21:46:04 +0000780 SmallVector<SDValue, 8> ResultVals;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000781
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000782 // Copy all of the result registers out of their specified physreg.
783 for (unsigned i = 0; i != RVLocs.size(); ++i) {
784 Chain = DAG.getCopyFromReg(Chain, RVLocs[i].getLocReg(),
785 RVLocs[i].getValVT(), InFlag).getValue(1);
786 InFlag = Chain.getValue(2);
787 ResultVals.push_back(Chain.getValue(0));
788 }
789
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000790 ResultVals.push_back(Chain);
Bruno Cardoso Lopesc7db5612007-11-05 03:02:32 +0000791
792 // Merge everything together with a MERGE_VALUES node.
Duncan Sandsf9516202008-06-30 10:19:09 +0000793 return DAG.getMergeValues(TheCall->getVTList(), &ResultVals[0],
794 ResultVals.size()).Val;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000795}
796
797//===----------------------------------------------------------------------===//
798// FORMAL_ARGUMENTS Calling Convention Implementation
799//===----------------------------------------------------------------------===//
800
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000801/// LowerFORMAL_ARGUMENTS - transform physical registers into
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000802/// virtual registers and generate load operations for
803/// arguments places on the stack.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000804/// TODO: isVarArg
Dan Gohman475871a2008-07-27 21:46:04 +0000805SDValue MipsTargetLowering::
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000806LowerFORMAL_ARGUMENTS(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000807{
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000808 SDValue Root = Op.getOperand(0);
809 MachineFunction &MF = DAG.getMachineFunction();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000810 MachineFrameInfo *MFI = MF.getFrameInfo();
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000811 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000812
813 bool isVarArg = cast<ConstantSDNode>(Op.getOperand(2))->getValue() != 0;
Bruno Cardoso Lopesf7f3b502008-08-04 07:12:52 +0000814 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000815
816 unsigned StackReg = MF.getTarget().getRegisterInfo()->getFrameRegister(MF);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000817
Bruno Cardoso Lopes91fd5322008-07-21 18:52:34 +0000818 // GP must be live into PIC and non-PIC call target.
819 AddLiveIn(MF, Mips::GP, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes753a9872007-11-12 19:49:57 +0000820
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000821 // Assign locations to all of the incoming arguments.
822 SmallVector<CCValAssign, 16> ArgLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000823 CCState CCInfo(CC, isVarArg, getTargetMachine(), ArgLocs);
824
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000825 CCInfo.AnalyzeFormalArguments(Op.Val, CC_Mips);
Dan Gohman475871a2008-07-27 21:46:04 +0000826 SmallVector<SDValue, 16> ArgValues;
827 SDValue StackPtr;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000828
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000829 unsigned FirstStackArgLoc = (Subtarget->isABI_EABI() ? 0 : 16);
830
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000831 for (unsigned i = 0, e = ArgLocs.size(); i != e; ++i) {
832
833 CCValAssign &VA = ArgLocs[i];
834
835 // Arguments stored on registers
836 if (VA.isRegLoc()) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000837 MVT RegVT = VA.getLocVT();
Bill Wendling06b8c192008-07-09 05:55:53 +0000838 TargetRegisterClass *RC = 0;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000839
840 if (RegVT == MVT::i32)
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000841 RC = Mips::CPURegsRegisterClass;
842 else if (RegVT == MVT::f32) {
843 if (Subtarget->isSingleFloat())
844 RC = Mips::FGR32RegisterClass;
845 else
846 RC = Mips::AFGR32RegisterClass;
847 } else if (RegVT == MVT::f64) {
848 if (!Subtarget->isSingleFloat())
849 RC = Mips::AFGR64RegisterClass;
850 } else
851 assert(0 && "RegVT not supported by FORMAL_ARGUMENTS Lowering");
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000852
853 // Transform the arguments stored on
854 // physical registers into virtual ones
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000855 unsigned Reg = AddLiveIn(DAG.getMachineFunction(), VA.getLocReg(), RC);
Dan Gohman475871a2008-07-27 21:46:04 +0000856 SDValue ArgValue = DAG.getCopyFromReg(Root, Reg, RegVT);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000857
858 // If this is an 8 or 16-bit value, it is really passed promoted
859 // to 32 bits. Insert an assert[sz]ext to capture this, then
860 // truncate to the right size.
861 if (VA.getLocInfo() == CCValAssign::SExt)
862 ArgValue = DAG.getNode(ISD::AssertSext, RegVT, ArgValue,
863 DAG.getValueType(VA.getValVT()));
864 else if (VA.getLocInfo() == CCValAssign::ZExt)
865 ArgValue = DAG.getNode(ISD::AssertZext, RegVT, ArgValue,
866 DAG.getValueType(VA.getValVT()));
867
868 if (VA.getLocInfo() != CCValAssign::Full)
869 ArgValue = DAG.getNode(ISD::TRUNCATE, VA.getValVT(), ArgValue);
870
871 ArgValues.push_back(ArgValue);
872
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000873 // To meet ABI, when VARARGS are passed on registers, the registers
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000874 // must have their values written to the caller stack frame.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000875 if ((isVarArg) && (Subtarget->isABI_O32())) {
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000876 if (StackPtr.Val == 0)
877 StackPtr = DAG.getRegister(StackReg, getPointerTy());
878
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000879 // The stack pointer offset is relative to the caller stack frame.
880 // Since the real stack size is unknown here, a negative SPOffset
881 // is used so there's a way to adjust these offsets when the stack
882 // size get known (on EliminateFrameIndex). A dummy SPOffset is
883 // used instead of a direct negative address (which is recorded to
884 // be used on emitPrologue) to avoid mis-calc of the first stack
885 // offset on PEI::calculateFrameObjectOffsets.
886 // Arguments are always 32-bit.
887 int FI = MFI->CreateFixedObject(4, 0);
888 MipsFI->recordStoreVarArgsFI(FI, -(4+(i*4)));
Dan Gohman475871a2008-07-27 21:46:04 +0000889 SDValue PtrOff = DAG.getFrameIndex(FI, getPointerTy());
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000890
891 // emit ISD::STORE whichs stores the
892 // parameter value to a stack Location
893 ArgValues.push_back(DAG.getStore(Root, ArgValue, PtrOff, NULL, 0));
894 }
895
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000896 } else { // VA.isRegLoc()
897
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000898 // sanity check
899 assert(VA.isMemLoc());
900
Bruno Cardoso Lopesa2b1bb52007-08-28 05:08:16 +0000901 // The stack pointer offset is relative to the caller stack frame.
902 // Since the real stack size is unknown here, a negative SPOffset
903 // is used so there's a way to adjust these offsets when the stack
904 // size get known (on EliminateFrameIndex). A dummy SPOffset is
905 // used instead of a direct negative address (which is recorded to
906 // be used on emitPrologue) to avoid mis-calc of the first stack
907 // offset on PEI::calculateFrameObjectOffsets.
908 // Arguments are always 32-bit.
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000909 unsigned ArgSize = VA.getLocVT().getSizeInBits()/8;
910 int FI = MFI->CreateFixedObject(ArgSize, 0);
911 MipsFI->recordLoadArgsFI(FI, -(ArgSize+
912 (FirstStackArgLoc + VA.getLocMemOffset())));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000913
914 // Create load nodes to retrieve arguments from the stack
Dan Gohman475871a2008-07-27 21:46:04 +0000915 SDValue FIN = DAG.getFrameIndex(FI, getPointerTy());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000916 ArgValues.push_back(DAG.getLoad(VA.getValVT(), Root, FIN, NULL, 0));
917 }
918 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000919
920 // The mips ABIs for returning structs by value requires that we copy
921 // the sret argument into $v0 for the return. Save the argument into
922 // a virtual register so that we can access it from the return points.
923 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
924 unsigned Reg = MipsFI->getSRetReturnReg();
925 if (!Reg) {
926 Reg = MF.getRegInfo().createVirtualRegister(getRegClassFor(MVT::i32));
927 MipsFI->setSRetReturnReg(Reg);
928 }
Dan Gohman475871a2008-07-27 21:46:04 +0000929 SDValue Copy = DAG.getCopyToReg(DAG.getEntryNode(), Reg, ArgValues[0]);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000930 Root = DAG.getNode(ISD::TokenFactor, MVT::Other, Copy, Root);
931 }
932
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000933 ArgValues.push_back(Root);
934
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000935 // Return the new list of results.
Duncan Sandsf9516202008-06-30 10:19:09 +0000936 return DAG.getMergeValues(Op.Val->getVTList(), &ArgValues[0],
937 ArgValues.size()).getValue(Op.ResNo);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000938}
939
940//===----------------------------------------------------------------------===//
941// Return Value Calling Convention Implementation
942//===----------------------------------------------------------------------===//
943
Dan Gohman475871a2008-07-27 21:46:04 +0000944SDValue MipsTargetLowering::
945LowerRET(SDValue Op, SelectionDAG &DAG)
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000946{
947 // CCValAssign - represent the assignment of
948 // the return value to a location
949 SmallVector<CCValAssign, 16> RVLocs;
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000950 unsigned CC = DAG.getMachineFunction().getFunction()->getCallingConv();
951 bool isVarArg = DAG.getMachineFunction().getFunction()->isVarArg();
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000952
953 // CCState - Info about the registers and stack slot.
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000954 CCState CCInfo(CC, isVarArg, getTargetMachine(), RVLocs);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000955
956 // Analize return values of ISD::RET
957 CCInfo.AnalyzeReturn(Op.Val, RetCC_Mips);
958
959 // If this is the first return lowered for this function, add
960 // the regs to the liveout set for the function.
Chris Lattner84bc5422007-12-31 04:13:23 +0000961 if (DAG.getMachineFunction().getRegInfo().liveout_empty()) {
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000962 for (unsigned i = 0; i != RVLocs.size(); ++i)
Bruno Cardoso Lopes2ab22d12007-07-11 23:16:16 +0000963 if (RVLocs[i].isRegLoc())
Chris Lattner84bc5422007-12-31 04:13:23 +0000964 DAG.getMachineFunction().getRegInfo().addLiveOut(RVLocs[i].getLocReg());
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000965 }
966
967 // The chain is always operand #0
Dan Gohman475871a2008-07-27 21:46:04 +0000968 SDValue Chain = Op.getOperand(0);
969 SDValue Flag;
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000970
971 // Copy the result values into the output registers.
972 for (unsigned i = 0; i != RVLocs.size(); ++i) {
973 CCValAssign &VA = RVLocs[i];
974 assert(VA.isRegLoc() && "Can only return in registers!");
975
976 // ISD::RET => ret chain, (regnum1,val1), ...
977 // So i*2+1 index only the regnums
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +0000978 Chain = DAG.getCopyToReg(Chain, VA.getLocReg(), Op.getOperand(i*2+1), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +0000979
980 // guarantee that all emitted copies are
981 // stuck together, avoiding something bad
982 Flag = Chain.getValue(1);
983 }
984
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000985 // The mips ABIs for returning structs by value requires that we copy
986 // the sret argument into $v0 for the return. We saved the argument into
987 // a virtual register in the entry block, so now we copy the value out
988 // and into $v0.
989 if (DAG.getMachineFunction().getFunction()->hasStructRetAttr()) {
990 MachineFunction &MF = DAG.getMachineFunction();
991 MipsFunctionInfo *MipsFI = MF.getInfo<MipsFunctionInfo>();
992 unsigned Reg = MipsFI->getSRetReturnReg();
993
994 if (!Reg)
995 assert(0 && "sret virtual register not created in the entry block");
Dan Gohman475871a2008-07-27 21:46:04 +0000996 SDValue Val = DAG.getCopyFromReg(Chain, Reg, getPointerTy());
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +0000997
998 Chain = DAG.getCopyToReg(Chain, Mips::V0, Val, Flag);
999 Flag = Chain.getValue(1);
1000 }
1001
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001002 // Return on Mips is always a "jr $ra"
1003 if (Flag.Val)
1004 return DAG.getNode(MipsISD::Ret, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001005 Chain, DAG.getRegister(Mips::RA, MVT::i32), Flag);
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001006 else // Return Void
1007 return DAG.getNode(MipsISD::Ret, MVT::Other,
Bruno Cardoso Lopes8262df32007-10-09 03:15:11 +00001008 Chain, DAG.getRegister(Mips::RA, MVT::i32));
Bruno Cardoso Lopes972f5892007-06-06 07:42:06 +00001009}
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001010
1011//===----------------------------------------------------------------------===//
1012// Mips Inline Assembly Support
1013//===----------------------------------------------------------------------===//
1014
1015/// getConstraintType - Given a constraint letter, return the type of
1016/// constraint it is for this target.
1017MipsTargetLowering::ConstraintType MipsTargetLowering::
1018getConstraintType(const std::string &Constraint) const
1019{
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001020 // Mips specific constrainy
1021 // GCC config/mips/constraints.md
1022 //
1023 // 'd' : An address register. Equivalent to r
1024 // unless generating MIPS16 code.
1025 // 'y' : Equivalent to r; retained for
1026 // backwards compatibility.
Bruno Cardoso Lopes7b76da12008-07-09 04:45:36 +00001027 // 'f' : Floating Point registers.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001028 if (Constraint.size() == 1) {
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001029 switch (Constraint[0]) {
1030 default : break;
1031 case 'd':
1032 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001033 case 'f':
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001034 return C_RegisterClass;
1035 break;
1036 }
1037 }
1038 return TargetLowering::getConstraintType(Constraint);
1039}
1040
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001041/// getRegClassForInlineAsmConstraint - Given a constraint letter (e.g. "r"),
1042/// return a list of registers that can be used to satisfy the constraint.
1043/// This should only be used for C_RegisterClass constraints.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001044std::pair<unsigned, const TargetRegisterClass*> MipsTargetLowering::
Duncan Sands83ec4b62008-06-06 12:08:01 +00001045getRegForInlineAsmConstraint(const std::string &Constraint, MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001046{
1047 if (Constraint.size() == 1) {
1048 switch (Constraint[0]) {
1049 case 'r':
1050 return std::make_pair(0U, Mips::CPURegsRegisterClass);
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001051 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001052 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001053 if (Subtarget->isSingleFloat())
1054 return std::make_pair(0U, Mips::FGR32RegisterClass);
1055 else
1056 return std::make_pair(0U, Mips::AFGR32RegisterClass);
Duncan Sands15126422008-07-08 09:33:14 +00001057 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001058 if (VT == MVT::f64)
1059 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1060 return std::make_pair(0U, Mips::AFGR64RegisterClass);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001061 }
1062 }
1063 return TargetLowering::getRegForInlineAsmConstraint(Constraint, VT);
1064}
1065
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001066/// Given a register class constraint, like 'r', if this corresponds directly
1067/// to an LLVM register class, return a register of 0 and the register class
1068/// pointer.
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001069std::vector<unsigned> MipsTargetLowering::
1070getRegClassForInlineAsmConstraint(const std::string &Constraint,
Duncan Sands83ec4b62008-06-06 12:08:01 +00001071 MVT VT) const
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001072{
1073 if (Constraint.size() != 1)
1074 return std::vector<unsigned>();
1075
1076 switch (Constraint[0]) {
1077 default : break;
1078 case 'r':
1079 // GCC Mips Constraint Letters
1080 case 'd':
1081 case 'y':
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001082 return make_vector<unsigned>(Mips::T0, Mips::T1, Mips::T2, Mips::T3,
1083 Mips::T4, Mips::T5, Mips::T6, Mips::T7, Mips::S0, Mips::S1,
1084 Mips::S2, Mips::S3, Mips::S4, Mips::S5, Mips::S6, Mips::S7,
1085 Mips::T8, 0);
1086
1087 case 'f':
Duncan Sands15126422008-07-08 09:33:14 +00001088 if (VT == MVT::f32) {
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001089 if (Subtarget->isSingleFloat())
1090 return make_vector<unsigned>(Mips::F2, Mips::F3, Mips::F4, Mips::F5,
1091 Mips::F6, Mips::F7, Mips::F8, Mips::F9, Mips::F10, Mips::F11,
1092 Mips::F20, Mips::F21, Mips::F22, Mips::F23, Mips::F24,
1093 Mips::F25, Mips::F26, Mips::F27, Mips::F28, Mips::F29,
1094 Mips::F30, Mips::F31, 0);
1095 else
1096 return make_vector<unsigned>(Mips::F2, Mips::F4, Mips::F6, Mips::F8,
1097 Mips::F10, Mips::F20, Mips::F22, Mips::F24, Mips::F26,
1098 Mips::F28, Mips::F30, 0);
Duncan Sands15126422008-07-08 09:33:14 +00001099 }
Bruno Cardoso Lopes225ca9c2008-07-05 19:05:21 +00001100
1101 if (VT == MVT::f64)
1102 if ((!Subtarget->isSingleFloat()) && (!Subtarget->isFP64bit()))
1103 return make_vector<unsigned>(Mips::D1, Mips::D2, Mips::D3, Mips::D4,
1104 Mips::D5, Mips::D10, Mips::D11, Mips::D12, Mips::D13,
1105 Mips::D14, Mips::D15, 0);
Bruno Cardoso Lopes84f47c52007-08-21 16:09:25 +00001106 }
1107 return std::vector<unsigned>();
1108}